:: RESS [nobr]

/* This is one of several files that contains and organizes many different events.	*/
/*	genericPlotEvents.tw															*/
/*	PESS.tw: Player Event, Single Slave												*/
/*	PETS.tw: Player Event, Two Slaves												*/
/*	RECI.tw: Random Event, Check In													*/
/*	REFI.tw: Random Event, Fetish Interest											*/
/*	REFS.tw: Random Event, Future Societies											*/
/*	RESS.tw: Random Event, Single Slave												*/
/*	RESSTR.tw: Random Event, Single Slave (Test Realm, for debugging events)		*/
/*	RETS.tw: Random Event, Two Slaves												*/
/*																					*/
/* Events can also be in a dedicated *.tw file, formatted as follows:				*/
/*	jeXXXXX.tw: Justice Event														*/
/*	pXXXXXX.tw: Player event														*/
/*	peXXXXX.tw: Player Event focused on a slave										*/
/*	reXXXXX.tw: Random Event														*/
/*	resXXXX.tw: Random Event, School												*/
/*	seXXXXX.tw: Slave Event, focuses on slaves coming or going						*/
/*	securityForceXXXXX.tw: Special (Security) Force event							*/
/*																					*/
/* Some scenes are also stored in useGuard.tw, walkPast.tw, and toychest.tw			*/

<<if Array.isArray($RESSevent)>>
	<<set $activeSlave = $eventSlave>>
	<<if $cheatMode == 1>>
		<<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */
		''A random single slave event would have been selected from the following:''
		<br>
		<<for _i = 0; _i < $RESSevent.length; _i++>>
			<<print "[[$RESSevent[_i]|RESS][$RESSevent = $RESSevent[" + _i + "]]]">>
			<br>
		<</for>>
		<br><br>[[Go Back to Random Individual Event|Random Individual Event][$activeSlave = 0]]
	<<else>>
		<<set $RESSevent = $RESSevent.random()>>
		<<goto "RESS">>
	<</if>>
<<else>>

<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Next Week", _didAnal = 0, _didVaginal = 0>>

<<set _clothesTemp = $activeSlave.clothes>>
<<switch $RESSevent>>
/*Some events start with the slave naked (any event that starts with the daily inspection, for example). Here we switch their clothing just for the image to load, then switch it back quickly so the player's choice is not messed up.*/
<<case "age implant" "ara ara" "back stretch" "bad dream" "bed snuggle" "bondage gear" "bonded love" "breast expansion blues" "confident tanning" "devoted exhibition" "devoted lotion" "desperate null" "devoted nympho" "extreme aphrodisiacs" "fearful balls" "fucktoy tribbing" "gaped asshole" "happy dance" "heavy piercing" "huge naturals" "huge tits" "hugely pregnant" "ignorant horny" "implant inspection" "language lesson" "mindbroken morning" "modest clothes" "mods please" "old PC age difference" "orchiectomy please" "PA flirting" "penitent" "permitted masturbation" "plimb help" "rebellious arrogant" "resistant gelding" "resistant shower" "resting amp" "restricted profession" "restricted smart" "sexy succubus" "shaped areolae" "shift masturbation" "shift sleep" "shower slip" "slave dick huge" "sleeping ambivalent" "sore shoulders" "spa boobs" "subjugation blues" "tendon fall" "terrified inspection" "tittymonster inspection" "torpedo squeeze" "transition anxiety" "trusting HG" "unhappy virgin" "used whore" "vocal disobedience" "young PC age difference">>
	<<set $activeSlave.clothes = "no clothing">>
<<case "whore rebellious">>
	/* this scene states they are wearing "thick, durable latex with temperature regulation and anchor points for restraint" no matter what they are assigned to wear. */
	<<set $activeSlave.clothes = "restrictive latex">>
<<case "inconvenient labia">>
	/* "pulling down the compression shorts $he was wearing" */
	<<if isItemAccessible.entry("sport shorts", "clothes")>>
		<<if $activeSlave.boobs >= 650>>
			<<set $activeSlave.clothes = "sport shorts and a sports bra">>
		<<else>>
			<<set $activeSlave.clothes = "sport shorts">>
		<</if>>
	<<else>>
		<<set $activeSlave.clothes = "spats and a tank top">>
	<</if>>
<</switch>>

<<if $RESSevent == "mean girls">>
	<<set _newSlaves = []>>
	<<for _ress = 0; _ress < 3; _ress++>>
		<<if $arcologies[0].FSSupremacistLawME == 1>>
			<<set _race = $arcologies[0].FSSupremacistRace>>
		<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
			<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
			<<set _race = _races.random()>>
		<</if>>
		<<set _meanGirl = GenerateNewSlave("XX", {minAge: 16, maxAge: 19, ageOverridesPedoMode: 1, nationality: "American", race: _race, disableDisability: 1})>>
		<<set _meanGirl.origin = "You enslaved $him for abusing " + $eventSlave.slaveName + " while " + getPronouns($eventSlave).pronoun + " was serving the public.">>
		<<set _meanGirl.career = "a student">>
		<<set _meanGirl.markings = "none", _meanGirl.weight = -20>>
		<<set _meanGirl.devotion = random(-80,-60)>>
		<<set _meanGirl.trust = random(-20,-10)>>
		<<set _meanGirl.muscles = random(0,15)>>
		<<set _meanGirl.boobsImplant = 200*random(0,3)>>
		<<set _meanGirl.boobs += _meanGirl.boobsImplant>>
		<<set _meanGirl.boobsImplantType = "normal">>
		<<set _meanGirl.buttImplant = random(0,2)>>
		<<set _meanGirl.butt += _meanGirl.buttImplant>>
		<<set _meanGirl.buttImplantType = "normal">>
		<<set _meanGirl.butt += 1>>
		<<set _meanGirl.vagina = random(1,2)>>
		<<set _meanGirl.anus = 1>>
		<<set _meanGirl.face = random(20,60)>>
		<<run setHealth(_meanGirl, jsRandom(30, 50), 0, 0, 0, 0)>>
		<<set _meanGirl.attrXY = random(60,90)>>
		<<set _meanGirl.attrXX = random(10,20)>>
		<<set _meanGirl.behavioralFlaw = either("arrogant", "bitchy")>>
		<<set _meanGirl.clothes = either("a mini dress", "a t-shirt and jeans", "conservative clothing", "sport shorts and a t-shirt")>>
		<<set _newSlaves.push(_meanGirl)>>
	<</for>>
	<span id="art-frame">
		/* 000-250-006 */
		<<if $seeImages == 1>>
			<div class="imageColumn">
				<div class="imageRef medImg">
					<<= SlaveArt($activeSlave, 2, 0)>>
				</div>
				<div class="imageRef medImg">
					<<= SlaveArt(_newSlaves[0], 2, 0)>>
				</div>
				<div class="imageRef medImg">
					<<= SlaveArt(_newSlaves[1], 2, 0)>>
				</div>
				<div class="imageRef medImg">
					<<= SlaveArt(_newSlaves[2], 2, 0)>>
				</div>
			</div>
		<</if>>
		/* 000-250-006 */
	</span>
<<elseif $RESSevent == "PA flirting">>
	<span id="art-frame">
		/* 000-250-006 */
		<<if $seeImages == 1>>
			<div class="imageColumn">
				<div class="imageRef medImg">
					<<= SlaveArt($activeSlave, 2, 0)>>
				</div>
				<<= assistantArt(2)>>
			</div>
		<</if>>
		/* 000-250-006 */
	</span>
<<else>>
	<span id="art-frame">
		/* 000-250-006 */
		<<if $seeImages == 1>>
			<<if $imageChoice == 1>>
				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<<else>>
				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<</if>>
		<</if>>
		/* 000-250-006 */
	</span>
<</if>>
<<set $activeSlave.clothes = _clothesTemp>>

<<set $desc = SlaveTitle($activeSlave)>>
<<run Enunciate($activeSlave)>>
<<set _belly = bellyAdjective($activeSlave)>>
<<run App.Utils.setLocalPronouns($activeSlave)>>
<<setPlayerPronouns>>
<<setAssistantPronouns>>

<<switch $RESSevent>>

<<case "first period">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> appears in the door of your office, uncertain if $he should disturb you. $He stumbles through the doorway, hands on $his <<if $activeSlave.weight >= 95>>fat belly<<elseif $activeSlave.belly >= 2000>>bloated belly<<elseif $activeSlave.weight >= 30>>chubby belly<<else>>flat belly<</if>>, before stepping forward to stand in front of your desk. $His chest is rising and falling with panicked hyperventilation. The poor $girl is terrified for some reason.
<br><br>
You press $him on why $he is acting this way.
<<if !canTalk($activeSlave)>>
	$He uses gestures to point to $his stomach, and explains that $he is feeling an unusual pain.
<<else>>
	"My belly, <<Master>>," $he <<say>>s apologetically. "It hurt<<s>> and I don't know why. It ju<<s>>t <<s>>tarted re<<c>>ently."
<</if>>
You check $his records and discover $he has very likely just become a woman.
<<set $activeSlave.pubertyXX = 1>>

<<case "wet dreams">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> appears in the door of your office early in the morning, hesitating before stepping in. You question why $he has come to see you and $he gingerly approaches your desk.
<br><br>
<<if !canTalk($activeSlave)>>
	$He uses gestures to point to $his crotch, and explains that $he has accidentally started wetting $his bed.
<<else>>
	"I'm <<s>>orry, <<Master>>," $he <<say>>s apologetically. "I keep wetting my bed at night, and it feel<<s>> <<s>>o good too."
<</if>>
You check $his records for any potential health issues that could be causing this annoyance when it dawns on you. $activeSlave.slaveName is likely becoming potent, and now is the perfect time to cement $his sexuality.
<<set $activeSlave.pubertyXY = 1>>

<<case "surprising wakeup">>

You are awakened from a sound sleep by someone eagerly <<if $PC.dick != 0>>sucking your dick<<else>>eating you out<</if>>. Your slaves know better than to disturb you, let alone take the initiative, but you are shocked when you pull back the sheets and reveal the smiling <<= App.UI.slaveDescriptionDialog($activeSlave)>>.
<<if !canTalk($activeSlave)>>
	$He promptly stops, flashes you an appreciative smile and goes right back to pleasing you.
<<else>>
	$He pulls off you with a frown. "I'm <<s>>orry, <<Master>>," $he <<say>>s apologetically. "It'<<s>> ju<<s>>t, you've been <<s>>o nice to me. Thi<<s>> felt like the right thing to do." $He lowers $his head back to your crotch.
<</if>>
<br><br>
$He was mindbroken, but seems to have snapped out of it due to a deep love of you.

<<case "mutinery attempt">>

<<set $mutinery = 1>>
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, <<= App.UI.slaveDescriptionDialog($activeSlave)>> 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 hand<<if hasBothArms($activeSlave)>>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 == "street urchin")>>
	but you slash at $him with your trusted knife, catching $him off guard and leaving a nasty gash. Before $he recovers $his senses, you make sure to have your knife to $his throat.
	<<set $mutinery = 0>>
	/* add scar somewhere */
<<elseif ($PC.career == "mercenary" || $PC.career == "recruit")>>
	<<if ($personalArms != 0)>>
		but you quickly draw the weapon you always keep close at hand, forcing the slave to put $his hand<<if hasBothArms($activeSlave)>>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>>
	<<set $mutinery = 0>>
<<elseif ($PC.career == "escort" || PC.career == "prostitute" || PC.career == "child prostitute")>>
	but you simply give $him a kick to the groin; $he wouldn't be the first person to try this shit on you.
	<<set $mutinery = 0>>
<<elseif ($PC.career == "slaver" || $PC.career == "slave overseer") || $PC.skill.slaving >= 20>>
	but you simply give $him a kick to the groin, a little trick you remember from your early days on how to deal with rebellious slaves.
	<<set $mutinery = 0>>
<<elseif ($PC.skill.warfare >= 20)>>
	but you have no problem grabbing $him and pushing $him to the ground, grabbing<<if hasBothArms($activeSlave)>> both of<</if>> $his arm<<if hasBothArms($activeSlave)>>s<</if>> to make sure $he doesn't try to step up.
	<<set $mutinery = 0>>
<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
	but you are far stronger, easily lifting $him into the air and slamming $him back to the ground.
	<<set $mutinery = 0>>
<<else>>
	and despite your attempts at fighting $him off, $he manages to get a hold on your body.
<</if>>
<br><br>
<<if $mutinery == 1>>
	$He doesn't seem to understand what $he is getting $himself into
	<<if $PC.boobs >= 300>>
		as $he gropes your chest
	<<else>>
		as $he runs $his hand<<if hasBothArms($activeSlave)>>s<</if>> over your body
	<</if>>
	in a desperate attempt at taking control.
	<<if $HeadGirlID != 0>>
		<<setLocalPronouns _S.HeadGirl 2>>
		<<setSpokenLocalPronouns $activeSlave _S.HeadGirl>>
		<<run Enunciate(_S.HeadGirl)>>
		You jump in surprise as _S.HeadGirl.slaveName tackles $him off you and to the floor
		<<if _S.HeadGirl.skill.combat > 0>>
			where _he2 twists $his arm in an arm hold until the rebellious slave stops struggling.
		<<else>>
			where _he2 settles _his2 weight on the struggling rebel, lacking any better idea of what to do.
		<</if>>
		I'm <<s>>orry, <<Master>>, <<he>> tried to knock me out on <<his>> way here. But a<<s>> <<s>>oon as I got up, I came running. I promi<<s>>e I <<s>>aw nothing, but what <<sh>>ould we do about $him?
		<<set $mutinery = 0>>
	<<else>>
		You try to fight $him off, but $his grip is stronger than you expected, so you will just have to bear with it, at least until an opening arises. If this gets out of the penthouse, your reputation as both arcology owner and as a slaver will be devastated.
	<</if>>
<</if>>

<<case "breeding bull">>

You are awakened from a sound sleep by a pair of strong hands pinning your shoulders. Struggling to get your bearings, you come face to face with the drooling <<= App.UI.slaveDescriptionDialog($activeSlave)>>. You had nothing planned this morning, so you've been allowed to sleep in undisturbed, and try as you might, you cannot slip your arms from under $his weight. $He hastily shifts $his weight around, almost giving you the chance to break free, but you freeze when something big, heavy and wet slaps against your stomach.
<br><br>
$He is fully erect and dripping precum: $he is going to breed you!

<<case "devoted lotion">>

Your slaves are required to take very good care of themselves, and your best ones spend several hours a day maintaining every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of their bodies. You notice <<= App.UI.slaveDescriptionDialog($activeSlave)>> standing naked in front of a mirror outside the bathroom, carefully applying moisturizing lotion to every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his $activeSlave.skin skin. $He's clearly feeling well, and $his <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face <= 40>>attractive<<elseif $activeSlave.face <= 10>>pretty<<elseif $activeSlave.face < -10>>plain<<else>>homely<</if>> face bears a smile of simple enjoyment as $he basks in the warmth of the slave quarters, calibrated to make nudity comfortable. $He straightens $his <<if $activeSlave.height >= 185>>wonderfully long<<elseif $activeSlave.height >= 170>>long<<elseif $activeSlave.height >= 160>>nice<<elseif $activeSlave.height >= 150>>short<<else>>short little<</if>> legs and bends at the waist,
<<if $activeSlave.belly >= 600000>>
	$his _belly belly coming to rest on the floor as $he spreads $his legs around it,
<<elseif $activeSlave.belly >= 400000>>
	$his _belly belly forcing $him to really spread $his legs,
<<elseif $activeSlave.belly >= 100000>>
	$his _belly belly forcing $his legs wide as $he goes,
<<elseif $activeSlave.belly >= 10000>>
	$his <<if $activeSlave.bellyPreg >= 3000>> hugely gravid<<elseif $activeSlave.bellyImplant >= 3000>>_belly protruding<<else>>heavy, <<print $activeSlave.inflationType>>-filled<</if>> belly parting $his legs as $he goes,
<<elseif $activeSlave.belly >= 5000>>
	$his <<if $activeSlave.bellyPreg >= 3000>>gravid<<elseif $activeSlave.bellyImplant >= 3000>>protruding<<else>>sloshing<</if>> belly parting $his legs as $he goes,
<</if>>
moaning at the pleasurable feeling of a good stretch. $He sets the lotion bottle on the ground next to $him, dispenses a little, and carefully rubs it into the tops of $his feet. When $he reaches $his ankles, still bent almost double, $he <<if canSee($activeSlave)>>catches sight of you watching $him from between $his legs<<elseif canHear($activeSlave)>>picks up the sound of your breathing<<else>>realizes that you're there watching $him<</if>>. $He smiles at you and keeps working.
<br><br>
$He shifts $his
<<if $activeSlave.hips > 2>>
	broodmother
<<elseif $activeSlave.hips > 1>>
	broad
<<elseif $activeSlave.hips >= 0>>
	curvy
<<else>>
	trim
<</if>>
hips innocently and moves up to $his lower legs. But then, as $he slowly massages the lotion into $his <<if $activeSlave.muscles > 30>>muscled<<elseif $activeSlave.weight > 10>>plush<<else>>cute<</if>> calves, $he arches $his back and cocks $his hips a little. This causes
<<if ($activeSlave.chastityPenis == 1)>>
	the bottom of $his chastity cage to become visible, a reminder that
	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
		only $his holes are to be used.
	<<elseif canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
		$he's a butthole slave.
	<<elseif canDoVaginal($activeSlave)>>
		the focus is $his pussy, not dick.
	<<else>>
		with $his ass in chastity, $he's forbidden from release.
	<</if>>
<<elseif $activeSlave.belly >= 100000>>
	the underside of $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> and
	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
		$his flushed, glistening pussy and <<if $activeSlave.anus == 0>>virgin<<else>>hungry<</if>> anus to become visible.
	<<elseif canDoVaginal($activeSlave)>>
		$his flushed pussy to become visible, glistening with moisture.
	<<else>>
		$his <<if $activeSlave.anus == 0>>virgin<<else>>hungry<</if>> anus to become visible.
	<</if>>
<<elseif $activeSlave.belly >= 5000>>
	the underside of $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> and
	<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
		$his flushed, glistening pussy and <<if $activeSlave.anus == 0>>virgin<<else>>hungry<</if>> anus to become visible, before $he hugs $his thighs together, sighing as $he flexes them a little to put gentle pressure on $his womanhood.
	<<elseif canDoVaginal($activeSlave)>>
		$his flushed pussy to appear for a moment, glistening with moisture, before $he hugs $his thighs together, sighing as $he flexes them a little to put gentle pressure on $his womanhood.
	<<else>>
		$his <<if $activeSlave.anus == 0>>virgin<<else>>hungry<</if>> anus to become visible.
	<</if>>
<<elseif !canAchieveErection($activeSlave) && $activeSlave.dick > 10>>
	$his giant, soft dick to swing back between $his legs; $he hugs $his thighs together again and traps it back behind $him, enjoying the sensation along its length.
<<elseif !canAchieveErection($activeSlave) && $activeSlave.dick > 0>>
	$his thighs to come tightly together, hiding $his soft dick.
<<elseif $activeSlave.dick > 0>>
	$his stiff dick to swing back between $his legs; $he hugs $his thighs together again and traps it back behind $him, showing off how hard $he is.
<<elseif canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
	$his flushed, glistening pussy and <<if $activeSlave.anus == 0>>virgin<<else>>hungry<</if>> anus to become visible, before $he hugs $his thighs together, sighing as $he flexes them a little to put gentle pressure on $his womanhood.
<<elseif canDoVaginal($activeSlave)>>
	$his flushed pussy to appear for a moment, glistening with moisture, before $he hugs $his thighs together, sighing as $he flexes them a little to put gentle pressure on $his womanhood.
<<else>>
	it to become apparent that $his hungry asspussy serves as $his only genitalia.
<</if>>
With $his back arched and $his thighs together $his <<if $activeSlave.butt > 5>>massive buttocks part a little, showing a hint of<<elseif $activeSlave.butt > 2>>big buttocks part, revealing<<else>>cute buttocks are spread wide apart, displaying<</if>> $his <<if $activeSlave.anus > 2>>lewd anal slit<<elseif $activeSlave.anus == 2>>big butthole<<else>>tight anus<</if>>.
<<if canSee($activeSlave)>>
	<<if $activeSlave.belly >= 50000>>
		$His _belly stomach is far too large to see around, but given $his held pose, $he's waiting to see what you do.
	<<elseif $activeSlave.belly >= 5000>>
		$He peeks around the edge of $his belly, checking your crotch to see if you are watching.
	<<else>>
		$He peeks between $his legs again, checking to see if you're watching.
	<</if>>
<<elseif canHear($activeSlave)>>
	$His ears perk up, listening to see if you are still there.
<<else>>
	$He stays as still as $he can, clearly waiting for you to make a move.
<</if>>

<<case "sore shoulders">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> comes before you for a routine inspection. The <<if $activeSlave.muscles > 95>>heavily muscled<<elseif $activeSlave.muscles > 30>>ripped<<else>>toned<</if>><<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>> and heavily pregnant<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>pregnant<</if>> $desc is looking good, but as $he raises $his arm<<if hasBothArms($activeSlave)>>s<</if>> over $his head to spin $his nude torso under your gaze, $he winces slightly.
<<if canSee($activeSlave)>>
	$His <<= App.Desc.eyesColor($activeSlave)>> flick up to see if you noticed, and $his face falls a little when $he sees that you did. You raise one eyebrow, and the obedient slave explains $himself
<<elseif canHear($activeSlave)>>
	$His ears perk up to hear if you noticed. You clear your throat, startling $him and making $him explain $himself
<<else>>
	$He tries to affect a stoic expression, but when you tentatively touch one of $his shoulders, $he grimaces slightly and quickly opts to explain $himself
<</if>>.
<<if !canTalk($activeSlave)>>
	$He uses gestures to beg your pardon, and explains that yesterday was arm day for $him, and $he went out a little hard. $His shoulders are a little sore, but $he gestures that $he's all right.
<<else>>
	"<<S>>orry, <<Master>>," $he <<say>>s apologetically. "I'm okay. Ye<<s>>terday wa<<s>> arm day for me, and I went out a little too hard. My <<sh>>oulder<<s>> are kinda <<s>>ore, but I'm alright."
<</if>>

<<case "bed snuggle">>

<<= capFirstChar($assistant.name)>> wakes you in the morning,
<<if $assistant.personality == 0>>
	_hisA voice
<<else>>
	<<switch $assistant.appearance>>
	<<case "monstergirl">>
		_hisA monster<<= _girlA>> avatar's sultry voice
	<<case "shemale">>
		_hisA shemale avatar's syrupy voice
	<<case "amazon">>
		_hisA amazon avatar's powerful voice
	<<case "businesswoman">>
		_hisA business<<= _womanA>> avatar's confident voice
	<<case "fairy" "pregnant fairy">>
		_hisA fairy avatar's adorable voice
	<<case "schoolgirl">>
		_hisA school<<= _girlA>> avatar's bubbly voice
	<<case "loli" "preggololi">>
		_hisA _loliA avatar's childish voice
	<<case "angel">>
		_hisA angel avatar's heavenly voice
	<<case "cherub">>
		_hisA cherub avatar's cheerful voice
	<<case "incubus">>
		_hisA incubus avatar's forceful voice
	<<case "succubus">>
		_hisA succubus avatar's sultry voice
	<<case "imp">>
		_hisA imp avatar's mischievous voice
	<<case "witch">>
		_hisA witch avatar's cocky voice
	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
		_hisA avatar's piecemeal voice
	<<default>>
		_hisA voice
	<</switch>>
<</if>>
gently calling your name. As you regain consciousness, you become aware of a weight on your chest<<if $PC.boobs >= 1400>> other than your heavy tits<</if>>. <<= App.UI.slaveDescriptionDialog($activeSlave)>> has snuggled up against you in $his sleep. $He's nude, and so are you; everyone sleeps naked in your penthouse. The sheet is down at your hips, leaving your upper bodies bare. <<if !hasAnyArms($activeSlave)>>$He's wormed $his <<if isAmputee($activeSlave)>>limbless<<else>>armless<</if>> torso under your arm,<<else>>$He has one arm across your <<if $PC.boobs >= 300>>chest, just below your breasts,<<elseif $PC.title == 1>>manly chest<<else>>flat chest,<</if>><</if>> and is using your shoulder as a pillow. You can feel $his warm breath across <<if $PC.boobs >= 300 || $PC.title == 0>>your nipple on that side, and it hardens slowly under your gaze<<else>>your well-developed pectorals<</if>>. $His <<if $activeSlave.boobs > 4000>>incredible tits are resting to either side of your ribcage, with one of them a heavy mass on your chest and the other trapped under $his<<elseif $activeSlave.boobs > 1200>>big boobs form a warm, soft mass between you<<else>>soft chest rests warmly against your ribcage<</if>><<if $activeSlave.belly >= 10000>>, beneath them, $his _belly <<if $activeSlave.bellyPreg >= 8000>>pregnant <</if>>belly rests <<if $PC.belly >= 1500>>against your own baby bump<<else>>upon your flat stomach<</if>><</if>>, and farther down, there's another source of warmth where $he's <<if !hasAnyLegs($activeSlave)>>got $his legless pelvis resting against your hip<<else>>straddling your thigh<</if>>.
<br><br>
"<<= properTitle()>>," $assistant.name calls again, "you <<if $assistant.personality == 0>>set a wake up for this time<<else>>asked me to wake you at this time<</if>>. You have a business meeting that starts shortly." You begin to slide out from under $activeSlave.slaveName, but the
<<if $activeSlave.physicalAge > 30>>
	$woman
<<elseif $activeSlave.physicalAge > 18>>
	$girl
<<elseif $activeSlave.physicalAge > 12>>
	teen
<<else>>
	kid
<</if>>
clings to you in $his sleep as the warmth of your body begins to move away from $him.

<<case "confident tanning">>

It's an unusually nice day, with mild sunshine, light breezes, and nothing offensive or dangerous in the atmosphere. In the middle of the afternoon, you take a break from your busy schedule of sex and business and stroll out onto one of your penthouse balconies. It seems <<= App.UI.slaveDescriptionDialog($activeSlave)>> was struck by a similar impulse. <<if $activeSlave.assignment == "rest">>$He's assigned to do little but rest<<else>>This is one of $his rest periods<</if>>, so $he's come out here to lay naked on a towel and enjoy the sun.
<<if (skinToneLevel($activeSlave.skin) > 20)>>
	$His $activeSlave.skin doesn't tan much, so $he's just out here to bask in its warmth. $His body shines with lotion from a bottle lying next to $him, but it's just general-purpose stuff.
<<elseif ($activeSlave.skin == "sun tanned")>>
	$His tanned skin shines with lotion from a bottle lying next to $him.
<<elseif ($activeSlave.skin == "spray tanned")>>
	Since $his fake tan would otherwise be (rather ironically) ruined by the sun, $his skin shines with sunblock lotion from a bottle lying next to $him.
<<else>>
	$His skin shines with sunblock lotion from a bottle lying next to $him. It would be foolish of $him to let the sun ruin $his $activeSlave.skin skin.
<</if>>
<br><br>
$He's lying on $his back with $his arm<<if hasBothArms($activeSlave)>>s<</if>> outstretched, $his
<<if ($activeSlave.boobs > 5000)>>
	titanic breasts resting to either side. They're so enormous they touch the ground on either side of $him.
<<elseif ($activeSlave.boobs > 800) && ($activeSlave.boobsImplant == 0)>>
	heavy, natural breasts resting to either side.
<<elseif ($activeSlave.boobsImplant / $activeSlave.boobs >= 0.50)>>
	fake tits maintaining their proud shape regardless.
<<else>>
	modest breasts resting a little to either side as $his chest rises and falls with $his breath.
<</if>>
$He's relaxed and breathing slowly, and it isn't immediately clear if $he's asleep or not. $He's not aroused, and $his
<<switch $activeSlave.nipples>>
<<case "tiny">>
	tiny little nipples soft against $his breasts.
<<case "flat">>
	nipples blend seamlessly into $his sunlit areolae.
<<case "puffy">>
	puffy nipples are soft under the sunlight.
<<case "partially inverted">>
	partially inverted nipples are withdrawn against $his soft breastflesh.
<<case "inverted">>
	fully inverted nipples are completely hidden from the sun's rays.
<<case "huge">>
	huge nipples are as soft as you've seen them.
<<case "fuckable">>
	fuckable nipples look warm and inviting in the sun.
<<default>>
	nipples look pleasantly soft and warm in the sun.
<</switch>>
As you consider $his radiant body, $he senses your presence, either realizing you're there through $his closed eyes or coming out of a light sleep at your proximity. $He opens $his <<= App.Desc.eyesColor($activeSlave)>> a slit and stretches deliciously, arching $his back luxuriantly, and murmurs, "Hi <<Master>>."

<<case "devoted nympho">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is on the inspection schedule for the first slot of the day. When $he walks clumsily through the door of your office, it's obvious the poor nympho slut hasn't found release since waking up. $His incredible sex drive has $his arousal at a fever pitch.
<br><br>
$He's walking awkwardly because of how painfully horny $he is. $His
<<switch $activeSlave.nipples>>
<<case "tiny">>
	tiny little nipples are rock hard.
<<case "flat">>
	stretched nipples, which normally rest flush with $his areolae, are hard and prominent.
<<case "puffy">>
	puffy nipples are flushed and stiff.
<<case "partially inverted">>
	nipples, which normally rest flush with $his areolae, are fully erect.
<<case "inverted">>
	nipples, which are normally fully inverted, are all the way out; that must have been a painful process.
<<case "huge">>
	massive nipples are so big and hard $he could probably penetrate someone with them.
<<case "fuckable">>
	fuckable nipples are practically swollen shut.
<<default>>
	nipples are standing out with uncomfortable hardness.
<</switch>>
<<if ($activeSlave.dick > 4) && canAchieveErection($activeSlave)>>
	$His gigantic erection waves around in front of $him as $he moves, its head describing a long arc in the air with each step.
<<elseif ($activeSlave.dick > 2) && canAchieveErection($activeSlave)>>
	$His erection waves around in front of $him as $he moves, its head bobbing lewdly up and down with each step.
<<elseif canAchieveErection($activeSlave)>>
	$His erection is so pathetically small that it stands out straight and stiff as $he moves.
<<elseif ($activeSlave.dick > 6)>>
	$His oversized dick is as engorged as $his body can manage.
<<elseif ($activeSlave.dick > 0)>>
	$He's actually partway erect despite $his impotence, a remarkable testament to $his need.
<<elseif ($activeSlave.labia > 1)>>
	$His normally-large pussylips are even more prominent than usual, swollen with need.
<<elseif ($activeSlave.clit > 3)>>
	$His dick-like clit stands out straight and stiff as $he moves.
<<elseif ($activeSlave.clit > 1)>>
	$His huge, sensitive clit positively tortures $him as $he moves.
<<elseif $activeSlave.vagina == -1>>
	$He has no genitals to get hard or wet, but $his posture leaves no doubt that there's nothing $he wants more than to get $his ass reamed.
<<else>>
	$His pussy is soaking wet, and streaks of female arousal are shining on $his inner thighs.
<</if>>
As $he staggers to a halt in front of your desk,
<<if ($activeSlave.dick > 4) && canAchieveErection($activeSlave)>>
	the movement of $his huge penis through the air
<<elseif ($activeSlave.dick > 2) && canAchieveErection($activeSlave)>>
	$his cock slaps up against $his stomach, which
<<elseif canAchieveErection($activeSlave)>>
	$his tiny dick is momentarily trapped between $his thighs, which
<<elseif ($activeSlave.dick > 6)>>
	$his motion of $his gigantic cock against $his body.
<<elseif ($activeSlave.dick > 0)>>
	$his floppy cock hits $his thighs, which
<<elseif ($activeSlave.labia > 1)>>
	which brings $his thighs together enough that this
<<elseif ($activeSlave.clit > 3)>>
	the movement of $his huge clit through the air
<<elseif ($activeSlave.clit > 1)>>
	stimulating $his clit enough that it
<<elseif $activeSlave.vagina == -1>>
	$his motion flexes $his buttocks together just enough to clench $his sensitive asspussy, and
<<else>>
	$his motion
<</if>>
provides just enough stimulation that $he climaxes. $His <<if hasAnyArms($activeSlave)>><<if hasBothArms($activeSlave)>>hands ball into fists at $his sides<<else>>hand balls into a fist at $his side<</if>> and $his<</if>> 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>>
		and onto the floor.
	<<else>>
		of the tiny hole on $his featureless crotch.
	<</if>>
<<elseif canAchieveErection($activeSlave)>>
	a strong jet of cum shooting out and onto the floor.
<<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
	dribbling a little fluid out of the tiny hole in $his otherwise featureless groin.
<<elseif ($activeSlave.balls > 0) && ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
	$his soft cock twitching upward and shooting out quite a lot of cum.
<<elseif ($activeSlave.dick > 0)>>
	<<if $activeSlave.prostate > 1>>
		a large spurt of
	<<else>>
		a few drops
	<</if>>
	watery ejaculate scattering from $his dickhead.
<<elseif ($activeSlave.vagina > 1)>>
	the strong muscles around $his big cunt visibly contracting with the force as $he squirts a jet of girlcum out onto $his legs and the floor.
<<elseif ($activeSlave.lactation > 1)>>
	a surprising <<if $activeSlave.nipples != "fuckable">>jet<<else>>gush<</if>> of milk issuing from both of $his nipples.
	<<set $activeSlave.lactationDuration = 2>>
	<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
<<elseif ($activeSlave.lactation > 0)>>
	drops of milk <<if $activeSlave.nipples != "fuckable">>appearing at each of $his motherly nipples only to be flung onto the floor<<else>>running from each of $his nipples and down $his breasts<</if>>.
	<<set $activeSlave.lactationDuration = 2>>
	<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
<<elseif ($activeSlave.belly >= 2000)>>
	<<if $activeSlave.bellyFluid >= 2000>>
		forcing a grunt out of $him as $he bends against $his _belly <<print $activeSlave.inflationType>>-filled belly
		<<if $activeSlave.vagina > -1>>
			squirting a
			<<if $activeSlave.prostate > 0>>
				a large spurt of
			<<else>>
				little jet
			<</if>>
			of girlcum<<if $activeSlave.inflationMethod == 2>> from $his pussy and a dribble of $activeSlave.inflationType from $his ass<<else>> down $his legs and<</if>> onto the floor.
		<<else>>
			as the muscles in $his lower body visibly contract with the force<<if $activeSlave.inflationMethod == 2>>, squirting out a little jet of $activeSlave.inflationType from $his ass<</if>>.
		<</if>>
	<<else>>
		forcing a grunt out of $him as $he bends against $his _belly <<if $activeSlave.bellyPreg >= 2000>>pregnant <</if>>belly
		<<if $activeSlave.vagina > -1>>
			squirting a
			<<if $activeSlave.prostate > 0>>
				a large spurt of
			<<else>>
				little jet
			<</if>>
			of girlcum out onto $his legs and the floor.
		<<else>>
			as the muscles in $his lower body visibly contract with the force.
		<</if>>
	<</if>>
<<elseif $activeSlave.vagina < 0>>
	the muscles in $his lower body visibly contracting with the force.
<<else>>
	squirting a
	<<if $activeSlave.prostate > 0>>
		a large spurt of
	<<else>>
		little jet
	<</if>>
	of girlcum out onto $his legs and the floor.
<</if>>
$He stands up straight, but this brings $his <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>> up to gaze straight into yours<<else>>face to face with you<</if>>, and the mixed release, humiliation, and naughtiness of having climaxed prematurely right in front of $his <<= getWrittenTitle($activeSlave)>> produces an aftershock, adding to the mess on the floor.

<<case "devoted exhibition">>

You make a habit of circulating through the arcology's public spaces when you can, to maintain your reputation for hands-on control and to keep a personal eye on the atmosphere. Citizens high and low avail themselves of the opportunity to greet you, introduce themselves, or bring small matters to your attention. Today, one of your prominent citizens brought up an unusually important subject, so you performed a walk and talk with him, ending out on a balcony. He goes away satisfied, but you spent longer than you intended away from the penthouse. As such, you missed the start of <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s weekly inspection. $He finds you out on the balcony, directed to you by $assistant.name,
<<if ($activeSlave.weight > 160)>>
	breathing hard from the effort of hauling $his fat ass
<<elseif ($activeSlave.belly >= 100000)>>
	utterly exhausted from waddling with $his very heavy _belly belly
<<elseif ($activeSlave.boobs >= 10000)>>
	breathing hard from the effort of hauling $his gigantic tits in $his rush
<<elseif ($activeSlave.belly >= 10000)>>
	breathing hard from the effort of hauling $his heavy belly in $his rush
<<elseif ($activeSlave.muscles > 5)>>
	breathing easily despite $his rush
<<elseif ($activeSlave.muscles < -95)>>
	barely conscious from the effort of coming
<<elseif ($activeSlave.muscles < -30)>>
	utterly exhausted from $his rush
<<else>>
	panting a little from $his rush
<</if>>
down to meet you. $He's nude, having stripped in your office, and meets your gaze <<if ($activeSlave.trust > 60)>>confidently, trusting<<else>>somewhat hesitantly, not sure<</if>> that $he did the right thing by coming to you rather than waiting.

<<case "permitted masturbation">>

Strolling through the penthouse late at night, thinking over a business problem, you pass <<if ($activeSlave.ID == $HeadGirlID) && ($HGSuite > 0)>>the door of your Head Girl's suite<<elseif ($activeSlave.rules.living == "luxurious")>>the door to one of the cozy little slave bedrooms<<else>>through the cavernous slave dormitory<</if>> and see <<= App.UI.slaveDescriptionDialog($activeSlave)>>, alone in bed tonight. $He's nude, of course, and has not pulled the sheets up over $himself. $He's lying face-down,
<<if ($activeSlave.boobs > 10000)>>
	though $his titanic tits prop $his torso up awkwardly,
<<elseif ($activeSlave.boobs > 1600)>>
	with $his huge boobs squashed out to either side of $his $activeSlave.skin torso,
<</if>>
humping the sheets
<<if ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
	and using a hand to rub $his perineum and asspussy.
<<elseif $activeSlave.belly >= 10000>>
	as best $he can with $his _belly belly in the way.
<<elseif ($activeSlave.chastityVagina)>>
	uselessly through $his chastity belt.
<<elseif ($activeSlave.chastityPenis == 1)>>
	uselessly with $his caged dick.
<<elseif $activeSlave.dick > 15 && !canAchieveErection($activeSlave)>>
	with $his soft python of a cock.
<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave)>>
	with $his giant dick as engorged as $he can manage.
<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
	with $his sad, soft cock.
<<elseif $activeSlave.dick > 3>>
	with the huge up and down pumps $his impressive cock requires.
<<elseif $activeSlave.dick > 0>>
	with $his stiff dick.
<<else>>
	with $his needy pussy.
<</if>>
$He's using $his right arm to <<if ($activeSlave.anus > 2)>>pound $himself in the ass with a big dildo<<elseif ($activeSlave.anus > 1)>>fuck $his own ass with a dildo<<else>>fuck $his own anus with two fingers<</if>>, and
<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown)>>
	is giving two fingers of $his left hand a blowjob.
<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown)>>
	has $his left hand trapped under $his chest to cruelly <<if $activeSlave.nipples != "fuckable">>twist<<else>>finger<</if>> $his own nipples.
<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown) && ($activeSlave.bellyPreg >= 1500)>>
	is using $his left hand to massage $his _belly gravid belly.
<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown)>>
	is using $his left hand to massage that buttock sensually, pulling it to the side to stimulate $his anus even more.
<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown)>>
	is using $his left hand to grope $his own breasts.
<<else>>
	is using $his left hand to <<if $activeSlave.nipples != "fuckable">>stimulate<<else>>finger<</if>> a nipple.
<</if>>
Slaves with powerful sex drives like $hers often find it necessary to masturbate in order to sleep. $He's fully preoccupied, and has not noticed you.

<<case "terrified inspection">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> appears in the door of your office for a scheduled inspection. $He hesitates in the doorway, <<if canSee($activeSlave)>>staring fixedly downward with huge <<= App.Desc.eyesColor($activeSlave)>><<else>>$his face towards the floor<</if>>, before stumbling forward to stand in front of your desk. $His chest is rising and falling with panicked hyperventilation. The poor
$desc
is terrified of you for some reason.
<br><br>
You let $him stand there naked and shivering while you finish what you're working on. $He holds $his $activeSlave.skin <<if hasBothArms($activeSlave)>>hands down at $his sides, just like $he's supposed to, but they twitch<<else>>hand down at $his side, just like $he's supposed to, but it twitches<</if>> inward occasionally, betraying $his desire to shield $his
<<if ($activeSlave.nipples == "huge")>>
	prominent nipples
<<elseif ($activeSlave.boobs > 1000)>>
	big tits
<<else>>
	chest
<</if>>
and
<<if ($activeSlave.dick >= 10)>>
	massive, limp dick
<<elseif ($activeSlave.dick > 7)>>
	huge, limp dick
<<elseif ($activeSlave.dick > 3)>>
	big, limp dick
<<elseif ($activeSlave.dick > 0)>>
	limp little prick
<<elseif ($activeSlave.clit > 1)>>
	absurd clit
<<elseif ($activeSlave.labia > 0)>>
	pretty petals
<<elseif $activeSlave.vagina == -1>>
	smooth, featureless groin
<<else>>
	pussy
<</if>>
from your view. The wait gives license to $his fears. $His<<if ($activeSlave.lips > 70)>> ridiculous<<elseif ($activeSlave.lips > 0)>> plush<</if>> lips are quivering, and tears are quickly gathering at the corners of $his eyes.

<<case "cooler lockin">>

You're circulating in $clubName, looking over your holdings but mostly just letting yourself be seen, when your personal assistant quietly alerts you. <<if $assistant.personality == 0>>"<<= properTitle()>>,"<<else>>"Baby,"<</if>> _heA says, "<<= App.UI.slaveDescriptionDialog($activeSlave)>> can't get out of the refrigerator." <<if $assistant.personality == 0>>The personal assistant explains the absurd statement: "$He's been assigned to get some items out of the walk-in refrigerator. $He accidentally let the door shut behind $him, didn't notice, took too long in there, and is now too chilled to figure out the emergency release. I can unlock it remotely, or you can let $him out yourself."<<else>>Chuckling, your personal assistant explains the absurd statement: "The silly $girl's been assigned to get some things out of the walk-in refrigerator. $He accidentally let the door shut behind $him, didn't notice, took too long in there, and is now too chilled to figure out the emergency release. I can unlock it remotely, or you can head over and have some fun with $him."<</if>>
<br><br>
The walk-in cooling unit is designed for the refrigeration of food for you and guests only, since the slaves drink a nutritive fluid that doesn't require it. Only servants ever have any reason to be in there, but $he was indeed instructed to fetch out some beverages necessary for an entertainment you have planned. It's cool in there, but not freezing, so $he's in no immediate danger.

<<case "spa boobs">>

The steamy air and hot water of the spa aren't only for slaves assigned to rest there full-time. When you head in to soak the day's stress away one evening, you see the back of <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s head resting against the edge of the warm pool; $he's clearly come in after work. <<if canHear($activeSlave)>>$He doesn't hear you come in and stays fully relaxed.<<else>>$He's relaxed enough to exit the state of "high alert" $his deafness usually forces $him to be in.<</if>> By the time you've showered<<if _S.Attendant>>, fucked the compliant _S.Attendant.slaveName,<</if>> and gotten ready to enter the pool, $he's reached such a state of blissful relaxation that $he slides $his body off the ledge around the side of the pool and floats face-up with $his eyes closed.
<br><br>
The sight is comical. <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 95>>Four<<else>>Three<</if>> things break the surface of the water: $his $activeSlave.skin face,
<<if $activeSlave.belly >= 5000 || $activeSlave.weight > 95>>
	$his <<if $activeSlave.belly >= 5000>>_belly<<if $activeSlave.bellyPreg >= 3000>> gravid<</if>><<else>>fat<</if>> belly, and two enormous breasts.
<<else>>
	and two enormous breasts.
<</if>>
<<if ($activeSlave.nipples == "huge")>>Each is capped by a gigantic nipple, soft with relaxation and the heat of the spa, but hugely prominent.<</if>>
<<if ($activeSlave.areolae > 1)>>$His areolae spread widely around each nipple.<</if>>
<<if $activeSlave.boobsImplant/$activeSlave.boobs >= .50>>
	$His implants keep $his tits shaped in exactly the same way regardless of currents in the water, betraying their fake nature.
<<elseif ($activeSlave.boobsImplant == 0)>>
	$His all-natural boobs move gently with currents in the water.
<<else>>
	$His boobs bob gently to the currents in the water with just a bit more firmness than one would expect.
<</if>>
<<if ($activeSlave.belly >= 500000)>>
	It's amazing $he can manage to stay afloat with $his middle that hugely distended.
<<elseif $activeSlave.weight > 95>>
	Water soundly laps against the sides of the flabby island that is $his gut.
<</if>>
In any case, $he's completely lost in the warmth and comfort of the water — and the relief of having the weight taken off $his chest<<if $activeSlave.belly >= 100000>> and stomach<</if>> for a brief moment.

<<case "newly devoted sunrise">>

Early to bed and early to rise makes an arcology owner healthy, wealthy, and wise. It also allows you to enjoy the beautiful sunrises. The degradation of the planet does have its advantages: all the rubbish in the air often paints the morning light a striking color, and this is one such morning. Taken with the grandeur, you step out onto a balcony to take it in, only to find <<= App.UI.slaveDescriptionDialog($activeSlave)>> out there already, doing just the same thing. The luxurious rules $he enjoys offer $him small breaks here and there, and $he's obviously come out to enjoy <<if canSee($activeSlave)>>the sight<<else>>the morning breeze and the warmth of the rising sun on $his face<</if>> before starting $his day's work.
<br><br>
$He notices your approach with a start and
<<if !canTalk($activeSlave)>>
	asks with a gesture that carries just the right mixture of submission and respect if $he can serve you in any way.
<<else>>
	asks respectfully, "May I <<s>>erve you in any way, <<Master>>?"
<</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 hand<<if hasBothArms($activeSlave)>>s<</if>> to ask if $he can hold your hand.
<<else>>
	<<say>>s, "<<Master>>, may I plea<<s>>e hold your hand?"
<</if>>

<<case "nympho with assistant">>

You pass one of the penthouse's several supply closets by chance, and are surprised to hear $assistant.name's voice inside. Oddly, there seems to be more than one of _himA. You open the door on a whim, to find that almost every one of the dildo machines in the closet is currently fucking <<= App.UI.slaveDescriptionDialog($activeSlave)>>,
<<if $activeSlave.belly >= 500000>>
	atop $his <<if $activeSlave.bellyPreg >= 5000>>excited and wriggling mass of children<<else>>over-inflated sphere of a stomach<</if>>
<<else>>
	on <<if hasAllLimbs($activeSlave)>>all fours<<else>>the ground<</if>>
<</if>>
in the middle of the room with the machines all around $him. $He has <<if canDoVaginal($activeSlave)>><<if $activeSlave.vagina > 2>>two large dildos working $his gaping cunt, <<elseif $activeSlave.vagina > 1>>a large dildo working $his cunt, <<elseif $activeSlave.vagina > 0>>a dildo working $his tight pussy, <</if>><</if>><<if canDoAnal($activeSlave)>><<if $activeSlave.anus > 2>>two large dildos fucking $his enormous butthole, <<elseif $activeSlave.anus > 1>>a large dildo fucking $his butthole, <<elseif $activeSlave.anus > 0>>a dildo fucking $his tight butt, <</if>><</if>><<if $activeSlave.boobs > 1200>>has lubricated $his cavernous cleavage to titfuck another, <<elseif $activeSlave.boobs > 400>>has lubricated $his cleavage to titfuck another, <</if>><<if $activeSlave.nipples == "fuckable">>has a pair pistoning in and out of $his nipples, <</if>><<if hasAnyArms($activeSlave)>>is performing <<if !hasBothArms($activeSlave)>>a frantic handjob<<else>>two handjobs at once, to either side<</if>>, <</if>><<if $activeSlave.belly >= 5000>>has lubricated the sides of $his _belly <<if $activeSlave.bellyPreg >= 3000>> pregnancy<</if>>, along with $his inner thighs, to create a sort of belly job, <</if>><<if $activeSlave.skill.oral >= 60>>and is making use of $his outstanding oral skills to suck off two more.<<elseif $activeSlave.skill.oral > 30>>and is taking a throatfuck from one more.<<else>>and is giving the final one a blowjob.<</if>> When $he <<if canSee($activeSlave)>>sees that you've entered — which takes a while, since $he's distracted<<elseif canHear($activeSlave)>>hears that you've entered — which takes a while, given the amount of noise<<else>>realizes that you've entered — which takes a while, considering $his state<</if>> — $he tries to smile<<if hasAnyArms($activeSlave)>> and wave<</if>>.
<br><br>
The source of the many-voiced personal assistant becomes clear: probably on the incorrigible $activeSlave.slaveName's request, your sultry personal assistant is voicing each and every one of the machines. When the nymphomaniac masturbator tries to smile <<if hasAnyArms($activeSlave)>> and wave<</if>>, there's an absolute chorus of "Back to work, slut", "Smile less, suck more", "Take it, bitch", et cetera. Yet another instance of $assistant.name chuckles in your ear. "Care to join in, <<= properTitle()>>? I'm sure we can find room somewhere."

<<case "sore ass">>

One night, you see <<= App.UI.slaveDescriptionDialog($activeSlave)>>
<<if (!hasAnyLegs($activeSlave))>>
	scooting $himself from side to side uncomfortably,
<<elseif ($activeSlave.heels == 1 && shoeHeelCategory($activeSlave) == 0))>>
	crawling gingerly,
<<elseif (shoeHeelCategory($activeSlave) > 1))>>
	tottering along painfully,
<<else>>
	walking a little funny,
<</if>>
as though $he has a sore butt. You call $him over to inspect $his backdoor to see if $he needs care, <<if (!hasAnyLegs($activeSlave))>>and set $his helpless body down, spreading $his buttocks to examine $his anus.<<else>>and order $him to spread $his buttocks for you so you can examine $his anus.<</if>> $His asshole is fine, just a little sore from hard buttfucks. $He complies with you, but as you probe $him gently with a finger,
<<if !canTalk($activeSlave) && (!hasAnyArms($activeSlave))>>
	$he wriggles desperately and turns to mouth "it hurts <<Master>> please don't assrape me" at you.
<<elseif !canTalk($activeSlave)>>
	$he gestures desperately, telling you $his butt hurts and asking you not to assfuck $him.
<<else>>
	$he bursts out, "<<Master>>, my butt i<<s>> <<s>>o <<s>>ore! Plea<<s>>e don't u<<s>>e my a<<ss>>, <<Master>>. Plea<<s>>e."
<</if>>

<<case "shift doorframe">>

Your fucktoys have to eat, sleep, and look after themselves, just like anyone, so they can't spend every moment offering themselves to you. <<if _S.Concubine>>Your concubine, _S.Concubine.slaveName<<elseif $HeadGirlID != 0>>Your Head Girl, _S.HeadGirl.slaveName<<elseif $assistant.name == "your personal assistant">>Your personal assistant<<else>>Your personal assistant, <<= capFirstChar($assistant.name)>><</if>> manages a schedule for them, constantly changing it up to keep the sluts from getting predictable. <<= App.UI.slaveDescriptionDialog($activeSlave)>> has just come on shift.
<br><br>
You're at your desk as $he arrives; $his predecessor passes $him on the way out. $activeSlave.slaveName pauses for a moment in the doorway, and then decides to give you a show. $He spreads $his legs until $his
<<if $activeSlave.shoes == "heels">>
	heels click against
<<elseif $activeSlave.shoes == "extreme heels">>
	ridiculous heels click against
<<elseif $activeSlave.shoes == "none">>
	bare feet come up against
<<else>>
	<<print $activeSlave.shoes>> come up against
<</if>>
the door frame to either side of $him. $He reaches out to press $his palms against the door frame to either side of $his body, and runs them slowly up the frame, gradually stretching out $his
<<set _averageHeight = Height.mean($activeSlave)>>
<<if $activeSlave.height > (_averageHeight+15)>>
	tall
<<elseif $activeSlave.height < (_averageHeight-15)>>
	short
<</if>>
<<if $activeSlave.weight > 130>>
	fat
<<elseif $activeSlave.weight > 95>>
	plump
<<elseif $activeSlave.weight > 10>>
	plush
<<elseif $activeSlave.weight < -10>>
	thin
<<else>>
	trim
<</if>>
<<if $activeSlave.belly >= 750000>>
	<<if $activeSlave.bellyPreg > 0>>
		grotesquely pregnant
	<<else>>
		grotesquely inflated
	<</if>>
<<elseif $activeSlave.belly >= 600000>>
	<<if $activeSlave.bellyPreg > 0>>
		dangerously pregnant
	<<else>>
		dangerously distended
	<</if>>
<<elseif $activeSlave.belly >= 450000>>
	<<if $activeSlave.bellyPreg > 0>>
		immensely pregnant
	<<else>>
		immensely distended
	<</if>>
<<elseif $activeSlave.belly >= 150000>>
	<<if $activeSlave.bellyPreg > 0>>
		massively pregnant
	<<else>>
		massively distended
	<</if>>
<<elseif $activeSlave.belly >= 120000>>
	<<if $activeSlave.bellyPreg > 0>>
		enormously pregnant
	<<else>>
		greatly gravid
	<</if>>
<<elseif $activeSlave.belly >= 10000>>
	<<if $activeSlave.bellyPreg > 3000>>
		heavily pregnant
	<<elseif $activeSlave.bellyImplant > 3000>>
		very gravid
	<<else>>
		taut
	<</if>>
<<elseif $activeSlave.belly >= 5000>>
	<<if $activeSlave.bellyPreg > 3000>>
		very pregnant
	<<elseif $activeSlave.bellyImplant > 3000>>
		gravid
	<<else>>
		distended
	<</if>>
<<elseif $activeSlave.belly >= 1500>>
	<<if $activeSlave.bellyPreg > 0>>
		slightly pregnant
	<<elseif $activeSlave.bellyImplant > 0>>
		slightly distended
	<<else>>
		bloated
	<</if>>
<</if>>
form. $He's good at this, so you let $him continue; <<if $activeSlave.clothes != "no clothing">>$his clothes rapidly form a pile at $his feet<<else>>$he's already naked<</if>>. $He begins to buck and bend, making sure to show you that $he's
<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
	limp and submissive for $his <<= getWrittenTitle($activeSlave)>>.
<<elseif $activeSlave.dick > 0>>
	rock hard at the prospect of getting
	<<if ($activeSlave.toyHole == "dick" || $policies.sexualOpenness == 1) && canPenetrate($activeSlave)>>
		to fuck
	<<else>>
		fucked by
	<</if>>
	$his <<= getWrittenTitle($activeSlave)>>.
<<elseif $activeSlave.clit > 0>>
	so horny for $his <<= getWrittenTitle($activeSlave)>> $he's got a stiffly prominent clit.
<<elseif $activeSlave.labia > 1>>
	so horny for $his <<= getWrittenTitle($activeSlave)>> $his dangling petals are swollen and moist.
<<elseif $activeSlave.vagina == -1>>
	ready for $his <<= getWrittenTitle($activeSlave)>>.
<<else>>
	wet for $his <<= getWrittenTitle($activeSlave)>>.
<</if>>
<br><br>
Finally, $he pulls $himself over to one side of the door frame, <<if $activeSlave.belly >= 5000>>leaning far forward to accommodate $his gravid body and<</if>> clasping it like a lover.
<<if ($activeSlave.boobs > 2000)>>
	$He nestles it between $his enormous tits, forcing them apart,
<<elseif ($activeSlave.boobs > 800)>>
	$He presses $his big breasts against it lasciviously, letting them pop around it one by one,
<<else>>
	$He rubs $his chest against it, up and down,
<</if>>
and licks $his
<<if ($activeSlave.lips > 70)>>
	ridiculous lips
<<elseif ($activeSlave.lips > 40)>>
	lewd lips
<<else>>
	lips
<</if>>
until they're so wet they leave a strand of saliva between $his mouth and the frame. $He then gives up all pretense<<if $activeSlave.belly >= 5000>>, shifts $his bulk back,<</if>> and begins to openly grind $himself against the door frame, $his
<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
	limp dick dribbling precum down it.
<<elseif $activeSlave.dick > 0>>
	erection leaving precum all along it.
<<elseif $activeSlave.vagina == -1>>
	buttocks parting against it as $he rubs $his asspussy against the hard door frame.
<<else>>
	pussy leaving moisture as $he humps it.
<</if>>
$He's certainly taking the colloquial term //fucked by the arcology// literally.
<br><br>
As if the invitation wasn't already blindingly clear, $he reaches a hand down without pausing $his door frame rape to
<<if $activeSlave.butt > 10>>
	slap an immense buttock and let it jiggle.
<<elseif $activeSlave.butt > 5>>
	heft and massage a massive buttock.
<<elseif $activeSlave.butt > 2>>
	massage $his plush butt.
<<else>>
	massage $his trim butt.
<</if>>
$He pulls the buttock closest to you aside, giving you a clear view of $his
<<if canDoVaginal($activeSlave)>>
	<<if $activeSlave.vagina >= 10>>
		gaping birth hole<<if $activeSlave.belly >= 100000>> and nearly prolapsing cervix<</if>>. $He runs $his fingers around its edge before sinking $his fist into it and preparing $himself like a good slave<<= $girl>> for $his <<= getWrittenTitle($activeSlave)>>.
	<<elseif $activeSlave.vagina > 2>>
		lewd, well traveled pussy. $He traces a finger around it before sinking $his hand into it and spreading $himself wide like a good slave<<= $girl>> for $his <<= getWrittenTitle($activeSlave)>>.
	<<elseif $activeSlave.vagina > 1>>
		loose pussy. $He traces a finger around it before spreading $himself wide like a good slave<<= $girl>> for $his <<= getWrittenTitle($activeSlave)>>.
	<<elseif $activeSlave.vagina > 0>>
		tight pussy. $He traces a finger around it before spreading $himself like a good slave<<= $girl>> for $his <<= getWrittenTitle($activeSlave)>>.
	<<else>>
		virgin pussy. $He traces a finger around it before spreading $himself like a good slave<<= $girl>> for $his <<= getWrittenTitle($activeSlave)>>.
	<</if>>
<<else>>
	<<if $activeSlave.anus > 2>>
		lewd anal slit.
	<<elseif $activeSlave.anus > 1>>
		loose asshole.
	<<else>>
		tight anus.
	<</if>>
	$He clenches it and relaxes it, clenches it and relaxes it, winking $his butthole at $his <<= getWrittenTitle($activeSlave)>> like a good anal slave.
<</if>>

<<case "resistant shower">>

Though $assistant.name constantly monitors all your slaves, you keep an eye on the video feeds yourself. There's nothing like the personal, human touch. You notice one night that <<= App.UI.slaveDescriptionDialog($activeSlave)>> is crouched in the bottom of the shower. Sensing something amiss, you discreetly investigate, and find that $he's crying quietly under the warm water.

<<case "resistant gelding">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is standing in the bathroom in front of the sink, with one leg up on the counter so $he can inspect $his genitalia. <<if canSee($activeSlave)>>From the feeds, it's obvious $he's grieved by what $he sees. As you watch, $he sobs quietly, reaching towards where $his scrotum used to be with a trembling hand. Apparently, $he's having trouble accepting $his status as a gelded slut<<else>>From the feeds, it's obvious $he's grieved by what $he feels. As you watch, $he sobs quietly, reaching towards where $his scrotum used to be with a trembling hand. Apparently, $he's having trouble accepting $his status as a gelded slut<</if>>.

<<case "rebellious arrogant">>

You have a lot of work to do with <<= App.UI.slaveDescriptionDialog($activeSlave)>>. $He compounds the usual rebellious anger at being a slave with an apparently unshakeable conviction that $he is better than you. Oddly, $he seems to maintain the idea that enslaving other people is somehow inappropriate, and that having done so has lowered you morally. This morning, $he did not appear to start $his morning chores as previously ordered. $He sleeps on a bedroll: a brief investigation discloses that $he is still in it, and has pulled the blanket up over $his head. $He refuses to acknowledge your peremptory command to get up.

<<case "not my name">>

<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
	<<set _name = lispReplace($activeSlave.birthName)>>
	<<set _slavename = lispReplace($activeSlave.slaveName)>>
<<else>>
	<<set _name = $activeSlave.birthName>>
	<<set _slavename = $activeSlave.slaveName>>
<</if>>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is not yet broken to your will. With your experience with slaves, you've been expecting $him to take some opportunity of exercising $his remaining independence. You don't have long to wait.

One day, you give $him inconsequential orders, naturally addressing $him by $his slave name, $activeSlave.slaveName. $He replies
<<if ($activeSlave.lips > 70)>>
	waspishly through $his dick-sucking lips, "<<Master>>, my name i<<s>> <<print _name>>."
<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
	waspishly through $his heavily-pierced lips, "<<Master>>, my name i<<s>> <<print _name>>."
<<else>>
	waspishly, "<<Master>>, my name i<<s>> <<print _name>>."
<</if>>
$He sets $his jaw and <<if canSee($activeSlave)>>manages to meet your eyes without flinching<<else>>meets your glare with a look of defiance<</if>>.

<<case "bondage gear">>

One day, you catch sight of <<= App.UI.slaveDescriptionDialog($activeSlave)>>
<<if ($activeSlave.heels == 1 && shoeHeelCategory($activeSlave) == 0)>>
	crawling
<<elseif shoeHeelCategory($activeSlave) > 1>>
	tottering
<<else>>
	walking
<</if>>
around stark naked. This is unacceptable, as $he has been ordered to wear humiliating and uncomfortable bondage gear. When confronted,
<<if !canTalk($activeSlave)>>
	<<if !hasAnyArms($activeSlave)>>
		$he tries to communicate $his reluctance to wear the clothing as best as $he can with various head movements and facial expressions<<if $activeSlave.bellyPreg >= 5000>>, including several nods towards $his rounded middle<</if>>.
	<<else>>
		$he uses gestures to communicate $his embarrassment with $his clothing, covering $his nipples, crotch, and anus with $his hand<<if hasBothArms($activeSlave)>>s<</if>> one after the other, and begging for clothes that do the same.<<if $activeSlave.bellyPreg >= 5000>> $He also gestures to $his rounded belly with a look of concern.<</if>>
	<</if>>
<<else>>
	$he <<say>>s fearfully, "I'm <<s>>orry, <<Master>>, but tho<<s>>e thing<<s>> are ju<<s>>t <<s>>o embarra<<ss>>ing!<<if $activeSlave.bellyPreg >= 5000>> I'm al<<s>>o worried for my <<if $activeSlave.pregType > 1>>babie<<s>>'<<else>>baby'<<s>><</if>> <<s>>afety.<</if>>"
<</if>>

<<case "vocal disobedience">>

One morning, despite the fact that $he is not allowed to speak without being spoken to, <<= App.UI.slaveDescriptionDialog($activeSlave)>> <<if canSee($activeSlave)>>looks you directly in the eye<<else>>faces you<</if>> and asks
<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
	boldly through $his
	<<if ($activeSlave.lips > 70)>>
		massive dick-sucking lips,
	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
		inconvenient oral piercings,
	<<else>>
		lisp,
	<</if>>
	"I'm tired, can I have the day off?" $He didn't even call you <<= getWrittenTitle($activeSlave)>>.
<<else>>
	boldly, "I'm tired, can I have the day off, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>?"
<</if>>

<<case "fearful humiliation">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> generally obeys orders, even if $he isn't yet a truly devoted sex slave. $He blushes furiously when given any sexual command, but $his true feelings about humiliation become clear when $he is ordered to serve in front of others, even other slaves. It sometimes seems the number of people watching $him get fondled, used, or fucked directly reduces the distance between $him and $his next blushing or even sobbing orgasm.

<<case "heels">>

Since <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s tendons were shortened, forcing $him to wear heels in order to walk, $he's permanently subject to your whims in shoe selection. $He walks carefully into your office, the sway of $his hips greatly exaggerated<<if $activeSlave.bellyPreg >= 10000>>, even more so with $his advanced pregnancy<<elseif $activeSlave.bellyImplant >= 10000>>, even more so with the weight of $his _belly middle<<elseif $activeSlave.bellyFluid > 5000>>, even more so under the weight of $his <<print $activeSlave.inflationType>>-swollen middle<</if>>.
<<if $activeSlave.dick != 0>>The modification certainly forces $him to walk more like someone without a cock.<</if>>
$He
<<if $activeSlave.belly >= 300000>>
	struggles to lower $his tired, heavy body onto the couch next to your desk, shakes off $his heels since $he has long since become incapable of reaching $his feet,
<<elseif $activeSlave.belly >= 100000>>
	lowers $his tired, heavy body onto the couch next to your desk, shakes off $his heels as bending over has become troublesome lately,
<<elseif $activeSlave.belly >= 10000>>
	rests $his tired,
	<<if $activeSlave.bellyPreg >= 8000>>
		gravid
	<<else>>
		rounded
	<</if>>
	body on the couch next to your desk, shakes off $his heels,
<<elseif $activeSlave.belly >= 5000>>
	seats $his
	<<if $activeSlave.bellyPreg >= 3000>>
		gravid
	<<else>>
		rounded
	<</if>>
	body on the couch next to your desk, takes off $his heels,
<<else>>
	sits on the couch next to your desk, takes off $his heels,
<</if>>
and opens the shoebox you've placed next to $him, to find:

<<case "heavy piercing">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>>'s intimate areas are heavily pierced. This is great; it draws attention to $his holes and makes $him look like the sex slave $he is. However, it does necessitate some extra maintenance. It's the end of the day, and $activeSlave.slaveName is in a bathroom <<if canSee($activeSlave)>>carefully checking each of $his piercings<<else>>meticulously cleaning each of $his piercings<</if>>. Many of them come in contact with fluids on a regular basis, so $he cleans them conscientiously.
<br><br>
As you watch $him, it occurs to you that since $activeSlave.slaveName isn't fully devoted to you yet, there's all manner of inventive ways you could have a little fun and increase $his submission to you at the same time.

<<case "cumslut whore">>

Late at night, <<= App.UI.slaveDescriptionDialog($activeSlave)>> returns to the living area of the penthouse. It's the end of $his day as a working girl, and despite being obviously tired, $he's smiling with obvious sexual satiation. Every so often, $he'll get a dreamy expression and lick $his lips. $He fetishizes cum to the extent that getting to eat a <<if $showInches == 2>>mile<<else>>kilometer<</if>> of dick really satisfies $him.

<<case "loose buttslut">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> has a little free time this evening, so $he finds a quiet corner and engages in $his anal proclivities. Since $his asshole is so stretched out, $he sticks the base of a huge dildo to the ground and
<<if $activeSlave.belly >= 100000>>
	struggles to lower $his heavy, very gravid body down onto it,
<<elseif $activeSlave.belly >= 10000>>
	cautiously lowers $his <<if $activeSlave.bellyFluid >= 10000>><<print $activeSlave.inflationType>>-stuffed<<else>>very gravid<</if>> body on it,
<<elseif $activeSlave.belly >= 5000>>
	delicately lowers $his <<if $activeSlave.bellyFluid >= 5000>>bloated<<else>>gravid<</if>> body on it,
<<else>>
	squats on it,
<</if>>
moaning happily as the massive thing inches into $him. $He starts to slide up and down it <<if hasBothArms($activeSlave)>>hands-free<<else>>automatically<</if>>, so $he
<<if canAchieveErection($activeSlave)>>
	<<if $activeSlave.dick > 5>>
		jacks off $his huge cock with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>.
	<<elseif $activeSlave.dick > 2>>
		jacks off with <<if !hasBothArms($activeSlave)>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
	<<elseif $activeSlave.dick > 0>>
		rubs $his little penis with <<if !hasBothArms($activeSlave)>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
	<</if>>
<<elseif $activeSlave.dick > 5>>
	massages $his huge, limp cock with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>.
<<elseif $activeSlave.dick > 2>>
	attempts to jack off $his limp dick with <<if !hasBothArms($activeSlave)>>$his hand<<else>>one hand while <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple with the other<</if>>.
<<elseif $activeSlave.dick > 0>>
	rubs $his little penis with <<if !hasBothArms($activeSlave)>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
<<elseif $activeSlave.vagina == -1>>
	rubs the sensitive area around $his asspussy with <<if !hasBothArms($activeSlave)>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
<<else>>
	rubs $his clit with <<if !hasBothArms($activeSlave)>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
<</if>>
As $he enjoys $himself, $his loose sphincter relaxes still further until it's barely gripping the dildo.

<<case "solitary desperation">>

<<set $activeSlave.devotion += 4>>
<<= App.UI.slaveDescriptionDialog($activeSlave)>> is in solitary. $He's let out whenever required for a slave task, but unless $he's serving, $he spends $his days in a featureless cell. It's clean and dry, but designed to totally deny any mental stimulation. Careful monitoring is necessary to prevent mental damage.
<br><br>
As you pass by $his cell on other business, there is a faint stirring within.
<<if canSee($activeSlave)>>
	$He must have been looking for you through a small opening in $his cell door.
<<elseif canHear($activeSlave)>>
	$He must have heard the dim sound of your footsteps through the door.
<<else>>
	$He must have placed $himself against the door just in case you stopped by.
<</if>>
There's a small port for meals to be inserted into the cell, and $he shouts at it, clearly with $his mouth right against it, "Plea<<s>>e don't go! I'll do anything if you ju<<s>>t <<s>>tay a bit, whoever you are! I ju<<s>>t need <<s>>ome time with <<s>>omeone! Plea<<s>>e!"

<<case "scrubbing">>

$arcologies[0].name is well fitted with automated cleaning systems. However, <<= App.UI.slaveDescriptionDialog($activeSlave)>> is acting as a servant to your other slaves, so whenever $he has nothing else to do the cleaners are deactivated and $he is made to clean by hand. After all, there is no sense in leaving $him idle, when $he could be scrubbing floors.
<br><br>
Which, incidentally, is what $he's doing now. $He has standing orders to change into a sturdy apron when doing such work, which $he is not pleased to follow, since the apron has no back at
<<if $activeSlave.belly >= 100000>>
	all, and with $his _belly <<if $activeSlave.bellyPreg > 0>>pregnancy<<else>>belly<</if>>, absolutely no side coverage either.
<<elseif $activeSlave.weight > 190>>
	all, and with $his hanging gut, no side coverage either.
<<elseif $activeSlave.belly >= 10000>>
	all, and with $his <<if $activeSlave.bellyPreg >= 8000>>advanced pregnancy<<elseif $activeSlave.bellyImplant >= 8000>>_belly belly<</if>>, no side coverage either.
<<elseif $activeSlave.weight > 130>>
	all, and with $his gut, no side coverage either.
<<elseif $activeSlave.weight > 95>>
	all, and with $his fat belly, no side coverage either.
<<elseif $activeSlave.belly >= 5000>>
	all, and with $his <<if $activeSlave.bellyPreg >= 3000>>growing pregnancy<<elseif $activeSlave.bellyImplant >= 3000>>bulging belly<</if>>, no side coverage either.
<<else>>
	all.
<</if>>
$He's working diligently on the floor, though, down on
<<if hasAllLimbs($activeSlave)>>
	all fours,
<<else>>
	the ground,
<</if>>
<<if $activeSlave.belly >= 150000>>
	struggling to work with $his <<if $activeSlave.bellyPreg >= 8000>>pregnancy<<elseif $activeSlave.bellyImplant >= 8000>>middle<</if>> forcing $him off the ground, desperately trying to reach the floor with $his scrub brush.
<<elseif $activeSlave.belly >= 100000>>
	$his <<if $activeSlave.bellyPreg >= 8000>>pregnancy<<elseif $activeSlave.bellyImplant >= 8000>>middle<</if>> pushing uncomfortably into the floor, trying to use <<if hasBothArms($activeSlave)>>both hands<<else>>$his whole arm<</if>> to work a scrub-brush back and forth.
<<elseif $activeSlave.weight > 190>>
	$his gut dragging along under $him, using <<if hasBothArms($activeSlave)>>both hands<<else>>$his whole arm<</if>> to work a scrub-brush back and forth.
<<elseif $activeSlave.belly >= 10000>>
	$his <<if $activeSlave.bellyPreg >= 8000>>pregnancy<<elseif $activeSlave.bellyImplant >= 8000>>distended middle<</if>> barely off the ground, using both hands to work a scrub-brush back and forth.
<<elseif $activeSlave.weight > 130>>
	fours, $his gut barely off the ground, using <<if hasBothArms($activeSlave)>>both hands<<else>>$his whole arm<</if>> to work a scrub-brush back and forth.
<<elseif $activeSlave.weight > 95>>
	$his fat belly nearly sagging to the ground, using <<if hasBothArms($activeSlave)>>both hands<<else>>$his whole arm<</if>> to work a scrub-brush back and forth.
<<else>>
	using <<if hasBothArms($activeSlave)>>both hands<<else>>$his whole arm<</if>> to work a scrub-brush back and forth.
<</if>>
$His bare ass bobs back and forth as though $he were doing it doggy style with an invisible man.

<<case "hormone dysfunction">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> comes to see you. You're busy with other things, so $he waits patiently even though $he's clearly very unhappy. Told to explain $himself, $he gestures at $his totally flaccid
<<if !canTalk($activeSlave)>>
	penis.
<<else>>
	<<if ($activeSlave.lips > 70)>>
		penis and <<say>>s through $his huge lips,
	<<elseif ($activeSlave.lipsPiercing + $activeSlave.tonguePiercing > 2)>>
		penis and <<say>>s through $his piercings,
	<<else>>
		penis and <<say>>s,
	<</if>>
	"<<Master>>, I can't get it up."
<</if>>
Ever since the rules have permitted it, $activeSlave.slaveName has been a constant masturbator. If $he can help it, $he never sucks or gives up $his ass without a hand between $his legs, pumping away.
<br><br>
<<if !canTalk($activeSlave)>>
	$He mimics masturbation and then traces a finger down $his cheek, as though it were a tear.
<<else>>
	"I can't come like thi<<s>>, <<Master>>."
<</if>>
It makes sense; $he's probably never masturbated without a hard dick. $He's clearly in desperate need of release, and more than a little sad the hormones $he's taking have given $him erectile dysfunction.

<<case "resting amp">>

You're working at your desk late at night when the arcology's systems discreetly highlight significant movement in the slave quarters. <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s limbless torso is in bed, asleep but struggling in discomfort. Without arms or legs, it seems the sheet has become wrapped around $him. $He's dreaming of something sexual;
<<if ($activeSlave.chastityPenis == 1)>>
	$his cock is caged, but precum is <<if $activeSlave.prostate > 1>>flowing<<elseif $activeSlave.prostate > 0 >>leaking<<else>>barely dripping<</if>> out of the chastity.
<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
	$he can't maintain an erection but $his limp dick <<if $activeSlave.prostate > 1>>is soaking $his sheets with precum<<elseif $activeSlave.prostate > 0 >>sports a drop of precum<<else>>sports a meager droplet of precum<</if>>.
<<elseif $activeSlave.dick > 4>>
	$his massive erection is tenting the sheet<<if $activeSlave.prostate > 1>>, leaving a large spot from $his excessive precum<</if>>.
<<elseif $activeSlave.dick > 2>>
	$his erection is tenting the sheet<<if $activeSlave.prostate > 1>>, leaving a large spot from $his excessive precum<</if>>.
<<elseif $activeSlave.dick > 0>>
	$his pathetic little erection is tenting the sheet<<if $activeSlave.prostate > 1>>, leaving a large spot from $his excessive precum<</if>>.
<<elseif $activeSlave.vagina == -1>>
	$he's humping the sheet as though $he still had genitals<<if $activeSlave.prostate > 1>>, leaving a large splotch from $his excessive precum<</if>>.
<<else>>
	$his pussy has left a moist spot on the sheet.
<</if>>
As you watch, $his sleeping struggles against the sheet <<if $activeSlave.boobs >= 800>>, $his smothering tits<</if>><<if $activeSlave.belly >= 10000>>, $his _belly <<if $activeSlave.bellyPreg >= 8000>>pregnant <</if>>belly<</if>><<if $activeSlave.butt > 5>>, $his gigantic ass<</if>>and $his limblessness finally leave $him lying naked on $his pad. After a few moments, $he begins to shiver convulsively.

<<case "devoted amp">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is lying on the couch next to your desk as you work, looking like the neglected
<<if $activeSlave.belly >= 600000>>
	<<if $activeSlave.bellyPreg > 0>>
		baby filled womb
	<<else>>
		overinflated sex toy
	<</if>>
<<elseif $activeSlave.belly >= 5000>>
	<<if $activeSlave.bellyPreg >= 3000>>
		pregnant
	<<elseif $activeSlave.bellyImplant >= 3000>>
		blow-up
	<<else>>
		$activeSlave.inflationType filled
	<</if>>
	sex toy
<<else>>
	little sex toy
<</if>>
$he is. You've been busy and haven't used $him for a while, and since $he's accepted $his place as a helpless living fucktoy, $he's gotten quite aroused with nothing to do but lie there and watch $his <<= getWrittenTitle($activeSlave)>> work. It's not like $he can touch $himself any more.
<<if ($activeSlave.chastityPenis == 1)>>
	$His caged cock reduces $him to a set of holes in a limbless torso.
<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
	$His penis hangs limp and useless from $his limbless torso.
<<elseif $activeSlave.dick >= 5>>
	$His huge erection pokes out from $his limbless torso, $his only remaining appendage.
<<elseif $activeSlave.dick > 2>>
	$His still-proud erection pokes out from $his limbless torso.
<<elseif $activeSlave.dick > 0>>
	$His pathetic little erection pokes out from $his limbless torso.
<<elseif $activeSlave.clit > 0>>
	$His engorged clit juts out from $his legless hips.
<<elseif $activeSlave.vagina == -1>>
	<<if canDoAnal($activeSlave)>>
		$His asspussy is on total display, unobscured by thighs.
	<<else>>
		$His anal chastity is on total display, unobscured by thighs.
	<</if>>
<<else>>
	<<if canDoVaginal($activeSlave)>>
		$His moist pussy is on total display, unobscured by thighs.
	<<else>>
		$His vaginal chastity is on total display, unobscured by thighs.
	<</if>>
<</if>>
<<if $activeSlave.belly >= 10000>>$His <<if $activeSlave.bellyPreg >= 8000>>advanced pregnancy<<else>>greatly distended belly<</if>> gives $him a comically rounded appearance. <</if>><<if $activeSlave.boobs > 4000>>$He's almost smothered by $his gigantic breasts as $he lies there; $his remaining body is almost half breasts.<</if>>

<<case "plug disobedience">>

One morning, you see <<= App.UI.slaveDescriptionDialog($activeSlave)>>
<<if !canWalk($activeSlave)>>
	crawl
<<elseif shoeHeelCategory($activeSlave) > 1>>
	totter
<<elseif $activeSlave.belly >= 10000>>
	waddle
<<else>>
	walk
<</if>>
hurriedly past your door, as though $he doesn't want you to notice $him. Of course, this only makes you notice $him, and you order $him in. As $he reluctantly obeys, you notice something off about $his gait. $He should be quite uncomfortable from the big buttplug $he is required to wear, but $he doesn't seem to be.
<br><br>
Your order $him to turn around and present $his anus for inspection. $He doesn't refuse, exactly, but neither does $he obey. $He keeps $his butt pointed resolutely away from you, and backs away a little. You cover the distance between you in three steps and run a clinical hand between the terrified slave's buttocks. As you suspected, $he isn't wearing $his buttplug.
<<if !canTalk($activeSlave)>>
	$He gestures pitifully, complaining that the plug hurts.
<<else>>
	$He whines pitifully, "That thing hurt<<s>>, <<Master>>. It'<<s>> too big for my a<<ss>>hole. Plea<<s>>e don't make me wear it."
<</if>>

<<case "age implant">>

In the morning the penthouse is a busy bustle of female energy. Slaves get up promptly, eat, shower, dress themselves, and head out to work. They chatter if able and allowed, and draw a good deal of strength from each other. As you pass by the kitchen, you are narrowly avoided by a rush of slaves heading to the showers. They're almost bouncing, feeding off each others' youthful energy. At the back of the pack is <<= App.UI.slaveDescriptionDialog($activeSlave)>>. $He looks as young as any of them, but after they're out, $he leans against the door frame for a moment and exhales slowly.
<br><br>
$His <<= App.Desc.eyeColor($activeSlave)>>-eyed gaze catches yours for a moment, and you are reminded that $he isn't as young as they are, not at all. $His face might look youthful, but $his eyes don't. <<if canSee($activeSlave)>>$He sees your consideration, and<<else>>You make yourself known, and $he<</if>> murmurs, "<<S>>orry, <<Master>>. Ju<<s>>t a little <<s>>low thi<<s>> morning."
$He hurries after $his sisters, $his
<<if $activeSlave.butt > 12>>
	massive
<<elseif $activeSlave.butt > 8>>
	giant
<<elseif $activeSlave.butt > 5>>
	huge
<<elseif $activeSlave.butt > 2>>
	big
<<else>>
	pretty little
<</if>>
naked ass catching your eye as $he goes.

<<case "shift masturbation">>

Your fucktoys have to eat, sleep, and look after themselves, just like anyone, so they can't spend every moment offering themselves to you. <<if _S.Concubine>>Your concubine, _S.Concubine.slaveName<<elseif $HeadGirlID != 0>>Your Head Girl, _S.HeadGirl.slaveName<<elseif $assistant.name == "your personal assistant">>Your personal assistant<<else>>Your personal assistant, <<= capFirstChar($assistant.name)>><</if>> manages a schedule for them, constantly changing it up to keep the sluts from getting predictable. <<= App.UI.slaveDescriptionDialog($activeSlave)>> has just come on shift.
<br><br>
And has $he ever come on shift. $He enters your office at something not far removed from a run, displaying evident signs of sexual excitation, a blush visible on $his $activeSlave.skin cheeks. Between $his job, the mild drugs in $his food, and $his life, $he's beside $himself with need. $He realizes you're working and tries to compose $himself, but gives up after a short struggle and flings $himself down on the couch. $He scoots down so $his <<if $activeSlave.butt > 5>>enormous<<elseif $activeSlave.butt > 2>>healthy<<else>>trim<</if>> butt is hanging off the edge of the cushion, and spreads $his legs up and back<<if $activeSlave.belly >= 5000>> to either side of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>> as wide as they'll go<<if ($activeSlave.boobs > 1000)>>, hurriedly shoving $his tits out of the way<</if>>. $He uses both hands to frantically
<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
	<<if ($activeSlave.hormoneBalance >= 100)>>
		rub $his hormone-dysfunctional penis,
	<<elseif $activeSlave.balls > 0 && $activeSlave.ballType == "sterile">>
		rub $his limp, useless penis,
	<<elseif ($activeSlave.balls == 0)>>
		rub $his limp, ballsless penis,
	<<else>>
		rub $his soft penis,
	<</if>>
<<elseif $activeSlave.dick > 4>>
	jack off $his titanic erection,
<<elseif $activeSlave.dick > 2>>
	jack $himself off,
<<elseif $activeSlave.dick > 0>>
	rub $his pathetic little hard-on,
<<elseif $activeSlave.vagina == -1>>
	frantically rubs the sensitive area beneath $his asspussy,
<<elseif $activeSlave.clit > 0>>
	rub $his huge, engorged clit,
<<elseif $activeSlave.labia > 0>>
	play with $his clit and $his generous labia,
<<else>>
	rub $his pussy,
<</if>>
but after a moment $he clearly decides this isn't enough stimulation. $He <<if $activeSlave.dick > 0>>uses two fingers to collect the precum dribbling from $his dickhead.<<else>>fucks $himself vigorously with two fingers to collect some girl lube.<</if>> $He brings these fingers up to $his face to check $his work, hesitates, visibly decides $he doesn't care, and reaches down to <<if $activeSlave.anus > 2>>slide them into $his loose asspussy. $He sighs with pleasure at the sensation.<<elseif $activeSlave.anus > 1>>shove them up $his butt. $He wriggles a little at the makeshift lubrication but is clearly enjoying $himself.<<else>>push them up $his tight butt. The pain of anal penetration with only makeshift lubrication extracts a huge sobbing gasp from $him, and $he tears up a little even as $he masturbates furiously.<</if>>

<<case "shift sleep">>

Your fucktoys have to eat, sleep, and look after themselves, just like anyone, so they can't spend every moment offering themselves to you. <<if _S.Concubine>>Your concubine, _S.Concubine.slaveName<<elseif $HeadGirlID != 0>>Your Head Girl, _S.HeadGirl.slaveName<<elseif $assistant.name == "your personal assistant">>Your personal assistant<<else>>Your personal assistant, <<= capFirstChar($assistant.name)>><</if>> manages a schedule for them, constantly changing it up to keep the sluts from getting predictable. <<= App.UI.slaveDescriptionDialog($activeSlave)>> has just come on shift.
<br><br>
Though it's late, $he's surprised to find the lights in the master suite off. You had an unusually trying day, so you've retired for the night; you're on the point of sleep when $he comes in<<if _S.Concubine>>, _S.Concubine.slaveName nestled under your arm<</if>>. After a moment's hesitation, $activeSlave.slaveName strips quietly and
<<if $activeSlave.belly >= 100000>>
	gently lowers $his extremely gravid body onto
<<elseif $activeSlave.belly >= 10000>>
	gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavily swollen<</if>> body onto
<<elseif $activeSlave.weight > 95>>
	gently lowers $his heavy body onto
<<else>>
	sits on
<</if>>
the edge of the bed, preparing to climb quietly in. $He clearly thinks you're asleep, and is doing $his best not to wake you. The dim, blue-toned light of your bedroom at night washes out $his $activeSlave.skin skin and robs $his <<= App.Desc.eyesColor($activeSlave)>> of their color, but it highlights
<<if ($activeSlave.belly >= 100000)>>
	$his _belly dome of a stomach,
	<<if $activeSlave.bellyPreg >= 3000>>
		greatly swollen with life.
	<<elseif $activeSlave.bellyImplant >= 3000>>
		greatly distended by $his implant.
	<</if>>
<<elseif ($activeSlave.nipples == "huge")>>
	the wonderful nipples jutting from $his flesh, stiffening in the cool night air.
<<elseif ($activeSlave.weight > 130)>>
	$his fat gut, with each fold making its own shadowed trench and $his navel forming a little dark hollow in $his soft stomach.
<<elseif ($activeSlave.belly >= 5000)>>
	$his rounded belly,
	<<if $activeSlave.bellyPreg >= 3000>>
		swollen with life.
	<<elseif $activeSlave.bellyImplant >= 3000>>
		filled out by $his implant.
	<<else>>
		bloated with <<print $activeSlave.inflationType>>.
	<</if>>
<<elseif ($activeSlave.weight > 95)>>
	$his fat belly, with $his navel forming a little dark hollow in $his soft stomach.
<<elseif ($activeSlave.weight > 10)>>
	$his plush belly, with $his navel forming a little dark hollow in $his pretty stomach.
<<elseif ($activeSlave.muscles > 30)>>
	$his washboard abs, with each muscle casting its own little shadow.
<<elseif ($activeSlave.boobs > 1000)>>
	the huge curve of $his breasts, a giant dark presence.
<<elseif ($activeSlave.dick > 2)>>
	the presence between $his legs.
<<else>>
	$his pretty face.
<</if>>
<<if canSee($activeSlave)>>$He perceives the glint of your open eyes<<elseif canHear($activeSlave)>>$He hears your breathing change<<else>>$He correctly guesses you're wide awake<</if>>, and stops, patiently waiting for some sign of what you'd like $him to do.

<<case "slave dick huge">>

The showers your slaves use are well vented and transparent walled so that you can see their occupants clearly, even from your desk. Working late at night, you see <<= App.UI.slaveDescriptionDialog($activeSlave)>> sitting hunched under the water in one of the showers, with $his back to you. You tell your desk to focus on $him, and you are rewarded with three different angles of $activeSlave.slaveName giving $himself a blowjob. $He has to bend over very hard<<if $activeSlave.belly >= 5000>> and at a very awkward angle<</if>> to get the tip of $his huge <<if $seeRace == 1>>$activeSlave.race <</if>>dick<<if $activeSlave.belly >= 5000>> around $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly and<</if>> into $his mouth, but $he's obviously enjoying it all the same. It's not against the rules for $him to masturbate; $he's just found an impressive way of doing it.
<<if $activeSlave.scrotum > 0>>
	<<if $activeSlave.balls >= 10>>
		As $he works $himself, $he plays with $his inhuman balls, massaging and caressing as much of them $he as $he can with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>.
	<<elseif $activeSlave.balls > 8>>
		As $he works $himself, $he plays with $his monster balls, massaging and caressing them with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>.
	<<elseif $activeSlave.balls > 5>>
		As $he works $himself, $he plays with $his massive balls, cupping them and squeezing gently.
	<<elseif $activeSlave.balls > 3>>
		As $he works $himself, $he plays with $his big balls, rolling them around and squeezing them gently.
	<<elseif $activeSlave.balls > 1>>
		As $he works $himself, $he plays with $his balls, massaging them with <<if hasBothArms($activeSlave)>>one<<else>>$his<</if>> hand.
	<</if>>
<</if>>

<<case "devoted old">>

At the end of a long week, <<= App.UI.slaveDescriptionDialog($activeSlave)>> moves past your office toward bed. This is completely normal part of the arcology routine, but you notice as $he passes that $he's wearing a preoccupied, almost sad expression. You call $him over, and $he makes a visible effort to brighten up as $he comes before you and asks your pleasure. You ask $him what's the matter, and $his face falls.
<br><br>
"<<Master>>, I'm <<s>>o <<s>>orry you noti<<c>>ed,"
<<if ($activeSlave.lips > 70)>>
	$he lisps through $his dick-sucking lips.
<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
	$he lisps through $his ridiculous piercings.
<<else>>
	$he <<say>>s penitently.
<</if>>
"I'm feeling a little <<s>>tiff and tired, <<Master>>. I wi<<sh>> I wa<<s>> a little younger <<s>>o I could <<s>>erve you better, that'<<s>> all."

<<case "tendon fall">>

There is a horrible crash from the bathroom. You rush in to see <<= App.UI.slaveDescriptionDialog($activeSlave)>> curled up helplessly in the bottom of the shower with the water playing over $his <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><<else>>altered<</if>> body. $He takes off $his heels to shower, making $him unable to stand independently. Apparently, $he lost $his grip on the handrail while trying to soap $himself, and having fallen, can't seem to reach the rail to haul $himself up again. $He pleads<<if ($activeSlave.lips > 70)>> through $his huge lips<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> through $his piercings<</if>>, "Help me, <<Master>>!"

<<case "unhappy virgin">>

During a routine inspection, <<= App.UI.slaveDescriptionDialog($activeSlave)>> respectfully asks a question.
<<if !canTalk($activeSlave)>>
	$He uses amusingly lewd gestures to depict how frequently $he gets fucked, and then points to $his virgin pussy. $He communicates that $he wants another hole to help share the work.
<<else>>
	$He <<say>>s, "<<Master>>, I take a lot of dick. I try my be<<s>>t, but
	<<if canDoAnal($activeSlave)>>
		my butt really hurt<<s>> <<s>>ometime<<s>> and my throat'<<s>> <<s>>ore, too.
	<<else>>
		my throat'<<s>> really <<s>>ore and I can't feel my tongue too well.
	<</if>>
	Can I get fucked in the pu<<ss>>y, to <<s>>pread it out a little?"
<</if>>

<<case "impregnation please">>

<<set _faceUp = 1>>
<<set _superfetation = ($activeSlave.geneticQuirks.superfetation == 2 && $activeSlave.pregKnown == 1) ? 1 : 0>>

<<= App.UI.slaveDescriptionDialog($activeSlave)>>
<<if _superfetation == 1>>
	<<if $activeSlave.belly >= 750000>>
		barely makes into your office before turning and leaning against $his _belly belly. Once $he manages to get comfortable against the strained mass, $he wiggles $his exposed <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>.
		<<set _faceUp = 0>>
	<<elseif $activeSlave.belly >= 450000>>
		slowly waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He carefully turns before your desk and leans forward with a grunt against $his _belly belly, allowing it to part $his legs while exposing $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you. $He gingerly rubs $his agitated stomach as $he wiggles $his bottom at you.
		<<set _faceUp = 0>>
	<<elseif $activeSlave.belly >= 300000>>
		slowly waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He carefully turns before your desk and leans forward with a grunt against $his _belly belly, allowing it to part $his legs while exposing $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you.
		<<set _faceUp = 0>>
	<<elseif $activeSlave.belly >= 150000>>
		nearly trips under $his own weight as $he waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He maneuvers over to the couch, leans forward with a grunt as $his _belly belly pushes into the floor, spreading $his legs and exposing $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you.
		<<set _faceUp = 0>>
	<<elseif $activeSlave.belly >= 60000>>
		waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He maneuvers over to the couch, leans forward, spreads $his legs and exposes $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you.
		<<set _faceUp = 0>>
	<<elseif $activeSlave.belly >= 10000>>
		hastily waddles into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He sits down on the couch and scoots down so $his butt is right at the edge of the couch and $his _belly belly is sticking up in the air. $He then spreads $his legs and exposes $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> to you.
	<<else>>
		hurries into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He sits down on the couch and scoots down so $his butt is right at the edge of the couch. $He then spreads $his legs and uses one hand to spread $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> for you.
	<</if>>
	<<if !canTalk($activeSlave)>>
		$He pantomimes pregnancy with <<if $activeSlave.belly < 10000>>$his other<<else>>one<</if>> hand, lewdly gesturing to ask you to cum inside $his still very fertile <<if $activeSlave.mpreg == 1>>ass<</if>>pussy.
	<<else>>
		"Plea<<s>>e put another baby in me, <<Master>>, I have plenty of room <<s>>till,"
		<<if ($activeSlave.lips > 70)>>
			$he begs through $his dick-sucking lips.
		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
			$he begs through $his ridiculous piercings.
		<<else>>
			$he begs.
		<</if>>
		"I can't <<s>>tand it. I need to make you another <<s>>lave, <<Master>>. Plea<<s>>e <<s>>tuff my body with a<<s>> many future <<s>>laves a<<s>> my womb can hold. Make me your <<s>>lave production line."
	<</if>>
<<else>>
	hurries into your office with a strange light <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He sits down on the couch and scoots down so $his butt is right at the edge of the couch. $He then spreads $his legs and uses one hand to spread $his <<if $activeSlave.mpreg == 1>>asshole<<else>>pussylips<</if>> for you.
	<br><br>
	<<if !canTalk($activeSlave)>>
		$He pantomimes pregnancy with $his other hand, lewdly gesturing to ask you to cum inside $his fertile <<if $activeSlave.mpreg == 1>>ass<</if>>pussy.
	<<else>>
		"Plea<<s>>e knock me up, <<Master>>,"
		<<if ($activeSlave.lips > 70)>>
			$he begs through $his dick-sucking lips.
		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
			$he begs through $his ridiculous piercings.
		<<else>>
			$he begs.
		<</if>>
		"I can't <<s>>tand it. I need to make you another <<s>>lave, <<Master>>. Plea<<s>>e u<<s>>e my body a<<s>> your <<s>>lave factory."
	<</if>>
<</if>>
$He <<if canSee($activeSlave)>>stares at you doe-eyed<<else>>$he faces you with the look of a child begging for candy<</if>>, desperately awaiting your answer.

<<case "fearful balls">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is still having obedience problems, particularly with $his proper role as a <<if $girl == "girl">>female <</if>>receptacle for cock. Though they're an almost too-obvious explanation, it's hard to avoid $his retention of $his gonads as a possible explanation for $his behavioral issues. They certainly contribute to $his less than perfectly feminine hormonal balance.
<br><br>
It's time for $his routine inspection, and $he's standing before you, nude. $He certainly doesn't find $his sexually vulnerable position arousing; $he's totally flaccid. The physical manifestations of $his disobedience are right in front of you, and quite defenseless.

<<case "extreme aphrodisiacs">>

As you are retiring for the night, <<= App.UI.slaveDescriptionDialog($activeSlave)>>
<<if !canWalk($activeSlave)>>
	crawls
<<elseif shoeHeelCategory($activeSlave) > 1>>
	totters
<<elseif $activeSlave.belly >= 10000>>
	waddles
<<else>>
	walks
<</if>>
into your bedroom. Since $he is not allowed to ask questions, $he says nothing, but $his reason for being here is obvious enough. $He's on a medically reckless dosage of aphrodisiacs, and $he's panting as $he
<<if ($activeSlave.heels == 1) && (shoeHeelCategory($activeSlave) == 0)>>
	kneels
<<elseif (shoeHeelCategory($activeSlave) > 1)>>
	teeters
<<else>>
	stands
<</if>>
there. $His nipples are <<if $activeSlave.nipples != "fuckable">>hard<<else>>swollen shut<</if>>, and there's visible moisture on $his <<if $seeRace == 1>>$activeSlave.race <</if>><<if $activeSlave.vagina != -1>>pussylips<<else>><<if $activeSlave.dick != 0>>dickhead<<else>>tiny little front hole<</if>><</if>>. It's also against the rules for $him to masturbate, so $he clearly decided to come to you rather than break the rules. There's no way $he'll be able to sleep like this.

<<case "shaped areolae">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>>'s breasts are real works of art. $His
<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
	massive fake
<<elseif $activeSlave.boobsImplant > 0>>
	massive, partially unnatural
<<else>>
	massive, sagging natural
<</if>>
tits dominate $his figure, but the real attention getter are $his unique, <<= $activeSlave.areolaeShape>>-shaped areolae. The darker flesh around $his nipples would be — should be — circular in any other $woman, and the cute $activeSlave.areolaeShape shapes around $activeSlave.slaveName's nipples are proof of just how much you've modified $him. $He's devoted to you, so much so that $he loves showing off $his special assets.

<<case "huge tits">>

There is a horrible crash from the shower. You rush in to see <<= App.UI.slaveDescriptionDialog($activeSlave)>> face-down and covered in soap. $He's uninjured, but $his tits are so huge that, soapy as $he is, $he can't seem to stand again. $His udders have $him pinned to the ground with $his legs sticking out of the shower. $He pleads
<<if ($activeSlave.lips > 70)>>
	through $his huge lips,
<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
	through $his piercings,
<<else>>
	piteously,
<</if>>
"Help me, <<Master>>!"

<<case "surgery addict">>

Going about your day, you see <<= App.UI.slaveDescriptionDialog($activeSlave)>> sitting <<if (hasAnyLegs($activeSlave))>><<if (hasBothLegs($activeSlave))>>cross-legged <</if>>in<<else>>propped against the doorway of<</if>> the remote surgery room, <<if canSee($activeSlave)>>staring intently at<<else>>gazing longingly towards<</if>> the equipment. $He's not breaking any rules, but this behavior is so strange you investigate. $He asks
<<if ($activeSlave.lips > 70)>>
	hesitantly through $his huge lips,
<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
	hesitantly through $his piercings,
<<else>>
	hesitantly,
<</if>>
"<<Master>>, I... I have a lot of implant<<s>>. A lot."<<if (hasAnyArms($activeSlave))>>$He touches $his body absentmindedly.<<else>>$He wriggles $his body, trying to indicate $his implants.<</if>> "Can... can you give me <<s>>ome more?"

<<case "night visit">>

As you are retiring for the night, <<= App.UI.slaveDescriptionDialog($activeSlave)>>
<<if !canWalk($activeSlave)>>
	crawls
<<elseif shoeHeelCategory($activeSlave) > 1>>
	totters
<<elseif $activeSlave.belly >= 10000>>
	waddles
<<else>>
	walks
<</if>>
into your bedroom and stands before you submissively. Since $he's allowed to ask questions,
<<if !canTalk($activeSlave)>>
	$he begs you with gestures to have sex with $him.
<<else>>
	<<if ($activeSlave.lips > 70)>>
		$he says meekly through $his massive dick-sucking lips,
	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
		$he says meekly through $his inconvenient oral piercings,
	<<else>>
		$he says meekly,
	<</if>>
	"<<=capFirstChar($enunciate.title)>>, would you plea<<s>>e fuck me?"
<</if>>


<<case "trusting HG">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is a busy $girl. Your Head Girl is heading for bed, but $he's not done with the day's work just yet. $He walks into your office with a pensive look on $his face, using a tablet to fiddle with slaves' schedules for tomorrow. Since $he was about to retire, $he's nude: you can't help but notice, in the dimmed light of nighttime in your penthouse, the way the low glow of the tablet
<<if ($activeSlave.boobs > 5000)>>
	falls across the tops of $his absurd boobs, since $he's forced to hold it on top of them to use it.
<<elseif ($activeSlave.belly >= 10000)>>
	falls across the top of $his <<print _belly>>, tautly <<if $activeSlave.belly >= 3000>>pregnant<<else>>swollen<</if>> belly.
<<elseif !($activeSlave.chastityPenis) && canAchieveErection($activeSlave)>>
	<<if ($activeSlave.dick > 4)>>
		makes $his perpetual, formidable erection cast a shadow.
	<<elseif ($activeSlave.dick > 2)>>
		catches the head of $his stiffly erect dick.
	<<else>>
		highlights $his stiff little girldick.
	<</if>>
<<elseif ($activeSlave.nipples == "huge")>>
	throws a shadow off each of $his massive nipples and down the lower halves of $his boobs.
<<elseif ($activeSlave.belly >= 1500)>>
	makes $his rounded middle cast a shadow.
<<elseif ($activeSlave.muscles > 95)>>
	gives extra definition to $his glorious muscles.
<<elseif ($activeSlave.weight > 95)>>
	highlights $his soft belly.
<<elseif ($activeSlave.dick > 0)>>
	rests on the base of $his soft cock.
<<elseif ($activeSlave.weight > 10)>>
	flatters $his soft body.
<<else>>
	flatters $him.
<</if>>
<br><br>
$He did not expect to find you here, and is so preoccupied that $he doesn't notice you right away. When $he does, $he smiles. "Good evening,
<<if $HGFormality == 1>>
	<<Master>>,"
	$he murmurs properly, and keeps working. Only a slight blush, barely detectable in the low light, betrays $his consternation at not greeting you immediately.
<<elseif $activeSlave.trust > 95>>
	<<if def $PC.customTitle>>
		<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
			$PC.customTitleLisp,"
		<<else>>
			$PC.customTitle,"
		<</if>>
	<<elseif $PC.title != 0>>
		<<S>>ir,"
	<<else>>
		Ma'am,"
	<</if>>
	$he murmurs. Even in the dim light, you perceive a slight blush of pleasure from $him as $he savors the status of being allowed to call you that. $He goes back to working with a little smile still playing across $his lips.
<<else>>
	um,
	<<if def $PC.customTitle>>
		<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
			$PC.customTitleLisp,"
		<<else>>
			$PC.customTitle,"
		<</if>>
	<<elseif $PC.title != 0>>
		<<S>>-<<s>>ir,"
	<<else>>
		M-ma'am,"
	<</if>>
	$he stammers hesitantly. $He isn't comfortable with your permission to be less formal in private, and blushes furiously at $his awkwardness. $He takes refuge in $his tablet.
<</if>>

<<case "ignorant horny">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is first on the inspection schedule, and as you watch $him enter your office, you note several good signs about $his progress towards becoming a good sex slave. $He enters obediently, without pretending to be thrilled to be here, but also without hesitation. Best of all,
<<if ($activeSlave.chastityPenis) && canAchieveErection($activeSlave)>>
	$he's squirming with discomfort over the lack of room in $his chastity.
<<elseif ($activeSlave.dick > 4) && canAchieveErection($activeSlave)>>
	$he's sporting a massive half-erection which slaps lewdly against $his thighs as $he walks.
<<elseif ($activeSlave.dick > 2) && canAchieveErection($activeSlave)>>
	$his dick is half-erect, bobbing lewdly as $he walks.
<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
	$his pathetic little bitch dick is half-erect.
<<elseif ($activeSlave.dick > 6)>>
	$his enormous dick is slightly engorged and dripping precum.
<<elseif ($activeSlave.dick > 0)>>
	$his soft bitch dick is dripping precum.
<<elseif ($activeSlave.labia > 1)>>
	$his lovely pussylips are flushed and wet.
<<elseif ($activeSlave.clit > 1)>>
	$his glorious bitch button is stiffly erect.
<<elseif ($activeSlave.vagina == -1)>>
	$he's unconsciously sticking $his ass out. Getting fucked there is $his main sexual outlet, now that $he lacks genitals.
<<else>>
	$his pussy is flushed and moist.
<</if>>
<br><br>
<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
	The aphrodisiacs racing through $his system have $him desperate to get off, right now.
<<elseif ($activeSlave.clitPiercing == 3) && ($activeSlave.clitSetting != "none")>>
	$His <<if $activeSlave.vagina > -1>>clit<<else>>frenulum<</if>> piercing is keeping $his arousal exquisitely balanced for $his inspection.
<<else>>
	The mild aphrodisiacs in the slave food have clearly built up some arousal that $he hasn't been able to address recently.
<</if>>
$He hasn't been with you long; it's been a mere <<print $week-$activeSlave.weekAcquired>> weeks since $he became your slave. $He may not be fully cognizant of how $his libido is being altered. New slaves aren't informed of the true extent of your abilities to force sexual need. It can be useful for a new $girl to wonder if some of the horniness $he feels is natural, and suspect that $he's nothing but a dirty slut who deserves to be a sex slave.

<<case "cage relief">>

You come face to face with <<= App.UI.slaveDescriptionDialog($activeSlave)>> in a hallway of your penthouse, entirely by happenstance. <<if canSee($activeSlave)>>$His <<= App.Desc.eyesColor($activeSlave)>> lock with yours, and $he stares at you dumbly for a long moment<<else>>Once $he regains $his footing after bumping into you, $he gazes towards you dumbly for a long moment<</if>>. Then $he squares $his <<if $activeSlave.shoulders > 0>>broad<<elseif $activeSlave.shoulders < 0>>pretty<<else>>feminine<</if>> shoulders and bites $his lower lip, obviously doing $his best to think quickly. Right when you're about to reprimand $him for not greeting you properly, $he surprises you by throwing $himself abjectly on the ground in front of you<<if $activeSlave.belly >= 10000>>, $his rear forced into the air by $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>distended<</if>> belly<</if>>.
<br><br>
<<if !canTalk($activeSlave)>>
	$He uses gestures to apologize for $his rudeness, and then gets to $his knee<<if hasBothLegs($activeSlave)>>s<</if>> so $he can use $his hand<<if hasBothArms($activeSlave)>>s<</if>> to gesture more clearly. $His <<if hasBothArms($activeSlave)>>hands are<<else>>hand is<</if>> shaky as $he begs, making two false starts before unmistakably gesturing to ask you to cut $his balls off. Once $he <<if canSee($activeSlave)>>sees<<else>>figures<</if>> that you understand, $he begins to cry openly. $He gestures that $he can barely get off wearing $his chastity cage, that it hurts when $he does, and that $he's constantly oppressed by the need for release. $He thinks that it would be easier to be soft all the time, so $he could climax without discomfort. $He begs hard, and promises to be a good little bitch.
<<else>>
	"Plea<<s>>e, <<Master>>," the prostrate slave <<say>>s shakily, sounding like $he's on the verge of tears. "P-plea<<s>>e cut my ball<<s>> off." <<if canHear($activeSlave)>>Hearing $himself <<say>> it, $he<<else>>$He<</if>> begins to cry openly. "I c-can't t-take it anymore. I can b-barely get off wearing thi<<s>> cage on my dick, and when I d-do, it h-hurt<<s>>," $he sobs. "I need to g-g-get off <<s>>-<<s>>o bad. Plea<<s>>e, plea<<s>>e, if I were <<s>>oft all the time, I wouldn't get hard, <<s>>o I could come wh-whenever." $He <<if canSee($activeSlave)>>looks up at<<else>>angles $his head towards you<</if>> you in supplication, tears streaking $his face. "Plea<<s>>e, <<Master>>! I'll be <<s>>-<<s>>uch a good little bitch, I promi<<s>>e!"
<</if>>

<<case "used whore">>

<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
	<<set _slavename = lispReplace($activeSlave.slaveName)>>
<<else>>
	<<set _slavename = $activeSlave.slaveName>>
<</if>>

At the end of a long day, you take a moment to watch the comings and goings of your arcology to decompress. While doing so, you notice someone who's clearly had a longer day than you. <<= App.UI.slaveDescriptionDialog($activeSlave)>> is <<if $activeSlave.belly >= 5000>>slowly waddling, one hand under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly and the other on the small of $his back,<<else>>making<</if>> $his tired way back to the kitchen for a meal and then bed after a long day of sex work. $He's stripped off $his soiled clothes already, and is clearly too tired to care about nudity at all.
<br><br>
$He comes around the corner and
<<if ($PC.belly >= 100000)>>
	slams into your massively distended belly, nearly knocking you over.
<<elseif ($PC.belly >= 10000)>>
	bumps into your heavily gravid middle.
<<elseif ($PC.belly >= 5000)>>
	bumps into your rounded middle.
<<elseif ($PC.balls >= 14)>>
	nearly knees your prominent testicles.
<<elseif ($PC.boobs >= 800)>>
	runs into your prominent rack.
<<else>>
	almost runs into you.
<</if>>
$He stops and <<if canSee($activeSlave)>>stares<<else>>faces you<</if>>, struggling to find the appropriate thing to say or do, but too exhausted to manage it. Even though $he's been obediently cleaning $himself between fucks, $he looks used up. $His $activeSlave.skin skin is reddened here and there.
<<if $activeSlave.belly >= 750000>>
	$His _belly belly is heavily bruised, the super-stretched skin nearly at its limit from the weight put on it and the forces pushing against it.
<<elseif $activeSlave.belly >= 600000>>
	$His _belly belly is deep red and heavily bruised; it's clear that at least one client roughly fucked $him over it.
<<elseif $activeSlave.belly >= 450000>>
	$His _belly belly looks extremely painful, it's obvious $he got fucked over it.
<<elseif $activeSlave.belly >= 300000>>
	$His _belly belly is black and blue, it's obvious $he got fucked over it.
<<elseif $activeSlave.belly >= 150000>>
	$His _belly belly is heavily chafed from rubbing the floor as $he struggled to keep $his weight off it.
<<elseif $activeSlave.belly >= 100000>>
	$His _belly belly is heavily chafed from rubbing against the floor.
<<elseif $activeSlave.belly >= 10000>>
	The tip of $his huge belly is chafed from rubbing against the floor.
<</if>>
<<if canDoVaginal($activeSlave)>> $His <<if ($activeSlave.labia > 1)>>generous<<else>>poor<</if>> pussylips are puffy, and you have no doubt $his vagina is quite sore.<</if>><<if canDoAnal($activeSlave)>> The awkward way $he's standing suggests that $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole has had more than one dick up it recently.<</if>>
<<if $activeSlave.nipples != "fuckable">>
	Even $his nipples are pinker than usual, having been cruelly pinched<<if $activeSlave.lactation > 0>> and milked<</if>>.
	<<if $activeSlave.lactation > 0>>
		<<set $activeSlave.lactationDuration = 2>>
		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
	<<else>>
		<<= induceLactation($activeSlave, 2)>>
	<</if>>
<<else>>
	Even $his nipples show signs of wear, having prolapsed slightly from heavy use.
<</if>>

<<case "desperately horny">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> comes to see you, looking deeply unhappy and shivering occasionally.
<<if ($activeSlave.rules.speech == "restrictive")>>
	Since $he is not allowed to speak, $he just enters your office and stands there, unsure what to do.
<<else>>
	<<if !canTalk($activeSlave)>>
		$He tries to communicate something with $his hand<<if hasBothArms($activeSlave)>>s<</if>>, but $he's so distracted $he can't manage it. $He starts to shake a little and gives up.
	<<else>>
		"<<Master>>, plea<<s>>e! Plea<<s>>e — I — plea<<s>>e, I need to — oh, <<Master>> —" $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps frantically<<else>>babbles<</if>>. $He starts to shake a little and lapses into silence.
	<</if>>
<</if>>
The reason for $his distress is obvious:
<<if ($activeSlave.chastityPenis == 1)>>
	$his chastity cage is mostly solid, but it has a small hole below where the tip of $his dick is held, and this is dripping precum. $He's sexually helpless, and sexually overcharged to the point where $he's dripping more precum than a usual dickgirl might ejaculate normally.
<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100) && !canAchieveErection($activeSlave)>>
	though the hormones are keeping it soft, $his member is dripping a stream of precum; droplets of the stuff spatter $his legs. One of $his spasms brings $his dickhead brushing against $his thigh, and the stimulation almost brings $him to orgasm.
<<elseif ($activeSlave.dick > 0) && $activeSlave.balls > 0 && $activeSlave.ballType == "sterile" && !canAchieveErection($activeSlave)>>
	though $he's chemically castrated, $his soft member is dripping a stream of watery precum; droplets of the stuff spatter $his legs. One of $his spasms brings $his dickhead brushing against $his thigh, and the stimulation almost brings $him to orgasm.
<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0) && !canAchieveErection($activeSlave)>>
	though $he's gelded, $his soft member is dripping a stream of watery precum; droplets of the stuff spatter $his legs. One of $his spasms brings $his dickhead brushing against $his thigh, and the stimulation almost brings $him to orgasm.
<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
	though $he's far too large to get hard, $his engorged member is dripping a stream of watery precum; droplets of the stuff spatter the floor. One of $his spasms brushes the length of $his cock against $his thigh, and the stimulation almost brings $him to orgasm.
<<elseif $activeSlave.dick > 4>>
	$his gigantic member juts out painfully, scattering droplets of precum whenever $he moves. One of $his spasms brings $his dickhead brushing up against $his <<if $activeSlave.belly >= 10000 || $activeSlave.weight > 95>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><<else>>abdomen<</if>>, and the stimulation almost brings $him to orgasm.
<<elseif $activeSlave.dick > 2>>
	$his impressive member juts out painfully, scattering droplets of precum whenever $he moves. One of $his spasms brings $his dickhead brushing up against $his <<if $activeSlave.belly >= 10000 || $activeSlave.weight > 95>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><<else>>abdomen<</if>>, and the stimulation almost brings $him to orgasm.
<<elseif $activeSlave.dick > 0>>
	$his little member juts out painfully, scattering droplets of precum whenever $he moves. One of $his spasms brings $his dickhead brushing up against $his <<if $activeSlave.belly >= 10000 || $activeSlave.weight > 95>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><<else>>abdomen<</if>>, and the stimulation almost brings $him to orgasm.
<<elseif ($activeSlave.chastityVagina)>>
	female juices are leaking out from behind $his chastity belt. $His cunt desperately wants to be fucked, and is dripping natural lubricant to ease penetration by cocks that cannot reach it through its protective shield.
<<elseif $activeSlave.clit > 3>>
	$his dick-like clit is painfully engorged and juts out massively. The stimulation of the air on $his clit keeps $him on the brink of orgasm.
<<elseif $activeSlave.clit > 0>>
	$his lovely clit is painfully engorged, and $his pussy is so wet there are little rivulets of moisture running down $his inner thighs. One of $his spasms brings $his clit brushing accidentally against $his hand, and the stimulation almost brings $him to orgasm.
<<elseif $activeSlave.labia > 0>>
	$his lovely pussylips are painfully engorged, and $his pussy is so wet there are little rivulets of moisture running down $his inner thighs. One of $his spasms brings $his generous labia brushing against $his thighs, and the stimulation almost brings $him to orgasm.
<<elseif $activeSlave.vagina == -1>>
	though $he has no external genitalia to display it, $he's flushed and uncomfortable, and is unconsciously presenting $his ass, since that's $his only real avenue to climax.
<<else>>
	$his pussy is so wet there are little rivulets of moisture running down $his inner thighs. One of $his spasms brings $him enough stimulation that it almost brings $him to orgasm.
<</if>>
<br><br>
This is the result of not getting off for several days while on the slave diet provided by the nutritional systems. The mild aphrodisiacs included in $his food increase $his sex drive, and the increased libido can become cumulative if it's not regularly addressed. It looks like $he hasn't really gotten $hers in a couple of days, and the poor $girl can likely think of nothing but that. $He's so horny $he'll do anything for release. However, $he did come to you with $his trouble rather than masturbating illicitly.

<<case "milkgasm">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is implanted with slow-release lactation drugs. $His lactation is dissimilar to that of a normal mother. It's the same stuff, but it's produced at a much, much higher volume. To stay comfortable, $activeSlave.slaveName has to use milkers every couple of hours<<if $activeSlave.assignment != "get milked">> even though $he isn't assigned to give milk as $his primary job<</if>>. Any more than that, and $he gets painfully sore; any less than that, and <<if $activeSlave.nipples == "inverted" || $activeSlave.nipples == "fuckable">>$his milk, backed up behind $his $activeSlave.nipples nipples, leaves $him in agony<<else>>$he begins to spontaneously squirt cream whenever $his breasts are subjected to the slightest motion<</if>>.
<br><br>
$He constantly passes by your desk as you work, going back and forth between the milkers and $his other tasks. Even if you didn't know which was which, it would be easy to tell which way $he was going. One way, $he
<<if !canWalk($activeSlave)>>
	crawls
<<elseif shoeHeelCategory($activeSlave) > 1>>
	totters
<<elseif $activeSlave.belly >= 10000>>
	waddles
<<else>>
	walks
<</if>>
gingerly, supporting $his udders with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</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">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is kicked out of bed early in the morning. $He's not yet obedient, but $he has to earn $his keep anyway. This means selling $his body, or in $his particular case, having $his unwilling body sold. $He knows the score and allows $himself to be stuffed into a special latex public whore suit. $He's learned the hard way that resisting being suited up just means $he'll be painfully punished before being suited up.
<br><br>
The suit is quite special. It is made of thick, durable latex with temperature regulation and anchor points for restraint. It is specially crafted to be able to accommodate its wearer's tits, belly,<<if $seeDicks != 0>> dick, balls,<</if>> and rear, however large. It has a hole at $his mouth that holds $his jaws well open, with a plug to fill it completely when not in use. $He breathes through a port at $his nose that muffles all noise, in and out.<<if ($activeSlave.dick > 0)>> $His cock is neglected inside the latex, with no means of access.<</if>><<if ($activeSlave.vagina != -1)>> There's a hole over $his pussy, of course.<</if>> Finally, there's a hole over $his anus.
<br><br>
$He will spend the day restrained in public, with your other slaves periodically stopping by to hydrate $him and wash out $his holes.

<<case "millenary">>

Late one night, <<= App.UI.slaveDescriptionDialog($activeSlave)>> comes to see you. Strangely, several of your other slaves are stealing glances at $him as $he does. $He seems oddly proud of $himself. Asked why, $he says, "It'<<s>> my millenary, <<Master>>. The arcology has logged me getting fucked <<= num(999)>> time<<s>>." The other slaves obviously view it as significant, too.
<br><br>
As the Free Cities grow and evolve, slave culture does too. It seems this is a new tradition among obedient sex slaves. $He obviously expects you to do the honors, and it seems the rest of your slaves are looking forward to it.

<<case "birthday">>

You come across <<= App.UI.slaveDescriptionDialog($activeSlave)>> in the kitchen. $He has a normal slave meal on a plate in front of $him, but also has a pack of hotwax candles from your sex gear. Oddly, $he has a candle upright in the food and is trying to light it. You ask what $he's doing, and $he explains meekly, "I don't know, <<Master>>. I've been a <<s>>lave <<s>>o long. I ju<<s>>t <<if canSee($activeSlave)>><<s>>aw<<elseif canHear($activeSlave)>>heard<<else>>reali<<z>>ed<</if>> the date today and thi<<s>> <<s>>eemed like the right thing to do. I'm <<s>>orry." It's probably $his birthday. Apparently $he's losing $his grasp on the concept.

<<case "inconvenient labia">>

You see <<= App.UI.slaveDescriptionDialog($activeSlave)>> moving gingerly as $he heads out of the workout room, as though $he's suffering some pain in $his groin. Since $he's coming off a workout rather than any duty that would explain a sore pussy, you head over to $him to investigate. $He greets you properly, looking a little rueful.
<br><br>
<<if !canTalk($activeSlave)>>
	$He gestures impatiently at $his pussy, pulling down the compression shorts $he was wearing to display $his generous labia. $He humorously pantomimes them moving about as $he exercises and indicates pain.
<<else>>
	<<if ($activeSlave.lips > 70)>>
		$He lisps through $his massive lips,
	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
		$He lisps through $his huge piercings,
	<</if>>
	"<<Master>>, my pu<<ss>>ylip<<s>> are really big. They make running on the treadmill really painful, even wearing my compre<<ss>>ion <<sh>>ort<<s>>," $he explains. "They ju<<s>>t kind of get in the way."
<</if>>
$He looks doubtful, as though $he's wondering whether to make a request. Finally $he makes up $his mind to ask:
<<if !canTalk($activeSlave)>>
	$he waves towards the surgery, and gestures about the labiaplasty $he knows some slaves receive, asking you if $he can have $hers reduced.
<<else>>
	"May I have labiapla<<s>>ty, <<Master>>? It would make working out <<s>>o much ea<<s>>ier on my poor pu<<ss>>y."
<</if>>

<<case "restricted smart">>

During a routine inspection of <<= App.UI.slaveDescriptionDialog($activeSlave)>>, you notice that $he's behaving a little strangely. $He's participating in the inspection with almost manic attention, trying to anticipate your directions and hanging desperately on your every word. After a moment, you reflect that $he's a smart $girl, and is probably suffering for a lack of conversation. As you regard $him <<if (!hasAnyLegs($activeSlave))>>sitting <<if (hasAnyArms($activeSlave))>>helplessly<<else>>limblessly<</if>><<elseif !canWalk($activeSlave)>>kneeling<<else>>standing<</if>> there, $his <<if canSee($activeSlave)>>eyes almost scream<<else>>face almost screams<</if>> at you for some sort of stimulation. $His life is not without mental interest, but talking is one of the quintessential human behaviors, and having it taken away is very difficult for someone as intelligent as $him. A mute almost might have it easier, for $he is also denied the volubility through sign language that mute slaves under less restrictive rules often enjoy.

<<case "restricted profession">>

<<set _shoutitoutloud = $enunciate.title.toUpperCase()>>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is <<if (!hasAnyLegs($activeSlave))>>sitting <<if (hasAnyArms($activeSlave))>>helplessly<<else>>limblessly<</if>><<elseif !canWalk($activeSlave)>>kneeling<<else>>standing<</if>> before your desk for $his regular inspection. $He is studiously observing the letter of the rule against speaking, and is doing $his best to make your inspection as efficient as possible. $His desire to please radiates off $him in almost palpable waves. $He obviously wants to communicate something to you, but can't do it without breaking the rules.

<<case "a gift">>

<<set _qualifiedFS = []>>
<<set _qualifiedFS.push("RND")>>

<<if $arcologies[0].FSGenderRadicalist != "unset">>
	<<set _qualifiedFS.push("gender radicalist")>>
<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
	<<set _qualifiedFS.push("gender fundamentalist")>>
<</if>>
<<if $arcologies[0].FSSupremacist != "unset">>
	<<set _qualifiedFS.push("racial supremacy")>>
<<elseif $arcologies[0].FSSubjugationist != "unset">>
	<<set _qualifiedFS.push("racial subjugationism")>>
<</if>>
<<if $arcologies[0].FSYouthPreferentialist != "unset">>
	<<set _qualifiedFS.push("youth preferentialist")>>
<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
	<<set _qualifiedFS.push("maturity preferentialist")>>
<</if>>
<<if $arcologies[0].FSPaternalist != "unset">>
	<<set _qualifiedFS.push("paternalist")>>
<<elseif $arcologies[0].FSDegradationist != "unset">>
	<<set _qualifiedFS.push("degradationist")>>
<</if>>
<<if $arcologies[0].FSTransformationFetishist != "unset">>
	<<set _qualifiedFS.push("transformation fetishist")>>
<<elseif $arcologies[0].FSBodyPurist != "unset">>
	<<set _qualifiedFS.push("body purist")>>
<</if>>
<<if $arcologies[0].FSPastoralist != "unset">>
	<<set _qualifiedFS.push("pastoralist")>>
<</if>>
<<if $arcologies[0].FSPhysicalIdealist != "unset">>
	<<set _qualifiedFS.push("physical idealist")>>
<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
	<<set _qualifiedFS.push("hedonistic")>>
<</if>>
<<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
	<<set _qualifiedFS.push("slimness enthusiast")>>
<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
	<<set _qualifiedFS.push("asset expansionist")>>
<</if>>
<<if $arcologies[0].FSRepopulationFocus != "unset">>
	<<set _qualifiedFS.push("repopulation focus")>>
<<elseif $arcologies[0].FSRestart != "unset">>
	<<set _qualifiedFS.push("eugenics")>>
<</if>>
<<if $arcologies[0].FSIntellectualDependency != "unset">>
	<<set _qualifiedFS.push("intellectual dependency")>>
<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
	<<set _qualifiedFS.push("slave professionalism")>>
<</if>>
<<if $arcologies[0].FSPetiteAdmiration != "unset">>
	<<set _qualifiedFS.push("petite admiration")>>
<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
	<<set _qualifiedFS.push("statuesque glorification")>>
<</if>>
<<if $arcologies[0].FSChattelReligionist != "unset">>
	<<set _qualifiedFS.push("chattel religionist")>>
<<elseif $arcologies[0].FSNull != "unset">>
	<<set _qualifiedFS.push("multi")>>
<</if>>
<<if $arcologies[0].FSRomanRevivalist != "unset">>
	<<set _qualifiedFS.push("roman revivalist")>>
<<elseif $arcologies[0].FSNeoImperialist != "unset">>
	<<set _qualifiedFS.push("neo imperialist")>>
<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
	<<set _qualifiedFS.push("aztec revivalist")>>
<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
	<<set _qualifiedFS.push("egyptian revivalist")>>
<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
	<<set _qualifiedFS.push("edo revivalist")>>
<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
	<<set _qualifiedFS.push("arabian revivalist")>>
<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
	<<set _qualifiedFS.push("chinese revivalist")>>
<</if>>

<<set _napkinFS = _qualifiedFS.random()>>

<<switch _napkinFS>>
<<case "gender radicalist">>
	<<set _napkin = "a lily with a prominent stamen">>
<<case "gender fundamentalist">>
	<<set _napkin = "a beautiful, feminine lily">>
<<case "racial supremacy">>
	<<set _napkin = "a proud rose">>
<<case "racial subjugationism">>
	<<set _napkin = "a makeshift whip">>
<<case "youth preferentialist">>
	<<set _napkin = "a cute little flowerbud">>
<<case "maturity preferentialist">>
	<<set _napkin = "a gorgeous mature orchid">>
<<case "paternalist">>
	<<set _napkin = "a smooth, calming design">>
<<case "degradationist">>
	<<set _napkin = "a spiky abstract design">>
<<case "transformation fetishist">>
	<<set _napkin = "a big pair of fake lips">>
<<case "body purist">>
	<<set _napkin = "a simple, unaltered flower">>
<<case "pastoralist">>
	<<set _napkin = "a sheaf of corn">>
<<case "physical idealist">>
	<<set _napkin = "a dumbbell">>
<<case "hedonistic">>
	<<set _napkin = "a hamburger">>
<<case "slimness enthusiast">>
	<<set _napkin = "a lithe figure">>
<<case "asset expansionist">>
	<<set _napkin = "a figure with exaggerated breasts and buttocks">>
<<case "repopulation focus">>
	<<set _napkin = "a lotus flower">>
<<case "eugenics">>
	<<set _napkin = "a makeshift chastity belt">>
<<case "intellectual dependency">>
	<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50>>
		<<set _napkin = "a jasmine flower">>
	<<else>>
		<<set _napkin = "a dick">>
	<</if>>
<<case "slave professionalism">>
	<<set _napkin = "an iris">>
<<case "petite admiration">>
	<<set _napkin = "a cute little buttercup">>
<<case "statuesque glorification">>
	<<set _napkin = "a large sunflower">>
<<case "chattel religionist">>
	<<set _napkin = "a piece of religious iconography">>
<<case "multi">>
	<<set _napkin = "a daffodil">>
<<case "roman revivalist">>
	<<set _napkin = "a laurel wreath">>
<<case "neo-imperialist">>
	<<set _napkin = "an elegant coat of arms from another noble family">>
<<case "aztec revivalist">>
	<<set _napkin = "a small statuette">>
<<case "egyptian revivalist">>
	<<set _napkin = "a perfect pyramid">>
<<case "edo revivalist">>
	<<set _napkin = "a Shinto arch">>
<<case "arabian revivalist">>
	<<set _napkin = "a complex minaret">>
<<case "chinese revivalist">>
	<<set _napkin = "an imperial pagoda">>
<<default>>
	<<set _napkin = "a beautiful flower">>
<</switch>>

You're working at your desk when <<= App.UI.slaveDescriptionDialog($activeSlave)>> walks by your office. $He checks to see whether you're in while trying very hard to look like $he's minding $his own business, and turns to go once $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>assumes<</if>> that you're present. You <<if canSee($activeSlave)>>crook a finger at $him<<elseif canHear($activeSlave)>>clear your throat at $him, signaling you want $him before you<<else>>remotely and quickly close the door behind $him<</if>>. $He's a good $girl and not likely to be plotting anything nefarious, but letting nonsense like that slide would be stupid. $He hurries in, blushing furiously, with $his hand<<if hasBothArms($activeSlave)>>s<</if>> behind $his back. Deciding to deal with the obvious thing first, you ask $him what $he's got. $He blushes even harder, and brings $his hand<<if hasBothArms($activeSlave)>>s<</if>> around to reveal one of the large cloth napkins used for entertaining, carefully folded into the shape of _napkin. It's very well done.
<br><br>
"I'm <<s>>orry, <<Master>>," $he mumbles, <<if canSee($activeSlave)>>glancing<<else>>$his head facing<</if>> down at $his feet. "One of the other girl<<s>> <<if canSee($activeSlave)>><<sh>>owed<<else>>taught<</if>> u<<s>> how to fold <<s>>tuff when we were re<<s>>ting together. I wanted to make <<s>>omething for you, and thi<<s>> wa<<s>> the fir<<s>>t thing that wa<<s>> good enough. I wa<<s>> ju<<s>>t going to <<s>>lip it onto your de<<s>>k. I — I feel kind of <<s>>tupid, now."

<<case "mods please">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is such a good
$desc
that $he enjoys being inspected, even if the inspection doesn't immediately transition into sex. At the moment, $he's luxuriating under your gaze, eagerly offering the sight of every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his nude body with you. $He is confident in $his appearance, and more than happy to share it.
<br><br>
<<if canSee($activeSlave)>>Seeing<<else>>Feeling<</if>> your intent gaze, $he
<<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>asks<</if>>, "<<Master>>, may I plea<<s>>e a<<s>>k you for <<s>>omething?"

At your <<if canSee($activeSlave)>>nod<<else>>acknowledgment<</if>>, $he
<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
	gives a submissive shudder, and turns to show you $his bare back.
	"<<Master>>, may I have a cor<<s>>et pier<<c>>ing? I would love to feel more, um, bound. Tied up. Plea<<s>>e?"
	$He awaits your answer coquettishly, <<if canSee($activeSlave)>>$his <<= App.Desc.eyesColor($activeSlave)>> huge<<else>>a look of begging on $his face<</if>>.
<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
	blows you a wet kiss.
	"<<Master>>, may I have a tongue pier<<c>>ing? It would take my dick <<s>>ucking to the next level. Plea<<s>>e?"
	$He sticks out $his tongue helpfully, leaving $his favorite fuckhole wide open so you can see down $his hungry throat.
<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
	blushes with humiliation.
	"<<Master>>, may I have a t-tattoo? L-like, on my fa<<c>>e. A mean one. Plea<<s>>e?"
	$He hangs $his head.
<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
	spins around to show off $his favorite fuckhole, bending over <<if $activeSlave.belly >= 5000>>as far as $he can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly in the way<<else>>farther than usual<</if>> to indicate the area between it and <<if $activeSlave.vagina > -1>>$his cunt<<elseif ($activeSlave.balls > 0) && ($activeSlave.scrotum > 0)>>$his ballsack<<elseif $activeSlave.dick == 0>>$his featurelessly smooth groin and its little cumhole<<else>>the base of $his soft bitchclit<</if>>.
	"<<Master>>, may I have a pier<<c>>ing right here? Right below my butthole? It would keep me <<s>>o ready for a buttfuck. I mean, more than I already am. Plea<<s>>e?"
	The shameless buttslut begins to wink $his asshole meaningfully.
<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
	wiggles $his shoulders to give $his boobs some motion.
	"<<Master>>, may I have <<s>>ome nipple pier<<c>>ings? It would be like having <<s>>omeone playing with my nipple<<s>>, but, like, all the time. Plea<<s>>e?"
	$He starts to bounce flirtily.
<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
	blushes suddenly and hangs $his head.
	<<if $activeSlave.belly >= 10001>>
		"<<Master>>, may I have a pier<<c>>ing? Right here? A big one?" $He indicates $his popped navel. "I feel it like it would get my belly more attention, plu<<s>> I'd hate to not take advantage of my new outie. Plea<<s>>e?
	<<else>>
		"<<Master>>, may I have a tattoo? Right here?" $He indicates $his <<if $activeSlave.belly > 1500>>rounded belly<<else>>abdomen<</if>>. "I would love an adverti<<s>>ement that I want to be, um, filled up.<<if $activeSlave.pregKnown == 1>>Well, when I'm empty again.<</if>> Plea<<s>>e?"
	<</if>>
	$He <<if canSee($activeSlave)>>looks<<else>>gazes<</if>> at you hopefully.
<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
	tosses $his head, a <<if canSee($activeSlave)>>gleam in $his eye<<else>>devious look on $his face<</if>>.
	"<<Master>>, may I have a tattoo? Right here?" $He indicates $his eyebrow, temple, and cheek. "It would be cool if other girl<<s>> <<s>>aw me and were all, 'I'm about to get fucked.' Plea<<s>>e?"
	$He smiles at you hopefully.
<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
	tosses $his head, a <<if canSee($activeSlave)>>gleam in $his eye<<else>>malicious look on $his face<</if>>.
	<<if canAchieveErection($activeSlave)>>
		"<<Master>>, may I have a <<sh>>aft pier<<c>>ing? If I get to <<s>>tick it in another girl, I'd love to <<if canSee($activeSlave)>><<s>>ee her fa<<c>>e<<else>>feel her <<sh>>udder<</if>> when that extra little bit of metal <<s>>lide<<s>> in<<s>>ide $him. Plea<<s>>e?"
	<<elseif $activeSlave.dick > 0>>
		"<<Master>>, may I have a tongue pier<<c>>ing? If I get to eat another girl out, I'd love to li<<s>>ten to her <<s>>queal when that little bit of metal <<s>>crape<<s>> again<<s>>t her. Plea<<s>>e? Plea<<s>>e?"
	<<else>>
		"<<Master>>, may I have a labia pier<<c>>ing? If I get to trib another girl, I'd love to <<if canSee($activeSlave)>><<s>>ee her fa<<c>>e<<else>>feel her <<sh>>udder<</if>> when that little bit of metal grind<<s>> again<<s>>t her. Plea<<s>>e?"
	<</if>>
	$He shudders at the thought, <<if canSee($activeSlave)>>looking<<else>>gazing<</if>> at you hopefully.
<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
	bites $his lower lip, looking aroused.
	<<if $activeSlave.dick > 0>>
		"<<Master>>, may I have a dick pier<<c>>ing? Right th-through my cock. Oh f-fuck it would hurt. Plea<<s>>e?"
	<<else>>
		"<<Master>>, may I have a pu<<ss>>y pier<<c>>ing? Right th-through me. Oh f-fuck it would hurt. Plea<<s>>e?"
	<</if>>
	$He shivers at the thought, <<if canSee($activeSlave)>>looking<<else>>gazing<</if>> at you hopefully.
<<else>>
	bats $his eyes at you, and turns halfway to display $his boobs in profile.
	"<<Master>>, may I have my nipple<<s>> pier<<c>>ed? It'<<s>> <<s>>illy and girly, but I gue<<ss>> — I gue<<ss>> I'd like <<s>>omething <<s>>illy and girly. Plea<<s>>e?"
	$He blushes prettily and <<if canSee($activeSlave)>>looks<<else>>gazes<</if>> at you hopefully.
<</if>>

<<case "injections please">>

<<set _possibleDrugs = []>>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> comes to see you, clearly in a good mood. Since $he's allowed to ask questions, $he comes right out with it.

"<<Master>>, I'm feeling healthy, and I've been a good $girl thi<<s>> week. With everyone getting <<s>>o many powerful drug<<s>> —" $he takes a breath before asking in a rush "- may I have a do<<s>>e of

<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
	<<if $activeSlave.fetish == "dom">>
		<<if $activeSlave.dick > 0 && $activeSlave.dick < 5 && canPenetrate($activeSlave)>>
			<<if canSee($activeSlave)>> /* not taking chances on the condition in there */
				<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I know I'm a <<s>>e<<x>> <<s>>lave and it'<<s>> my pla<<c>>e to get fucked, but when I do get to do a girl, <<Master>>, I want to <<s>>ee a little fear in her eye<<s>>."})>>
			<<else>>
				<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I know I'm a <<s>>e<<x>> <<s>>lave and it'<<s>> my pla<<c>>e to get fucked, but when I do get to do a girl, <<Master>>, I want to feel her a<<ss>> clench in fear."})>>
			<</if>>
		<</if>>
		<<if canPenetrate($activeSlave) && $activeSlave.scrotum > 0 && $activeSlave.balls < 10>>
			<<set _possibleDrugs.push({type: "balls", text: "te<<s>>ticle enhan<<c>>ement? I know I'm a <<s>>e<<x>> <<s>>lave and it'<<s>> my pla<<c>>e to get fucked, but when I do get to do a girl, <<Master>>, I want to
				<<if canHear($activeSlave)>>
					hear her grunt
				<<else>>
					feel her <<sh>>ake
				<</if>>
				every <<s>>ingle time the weight of my ball<<s>> <<s>>lap<<s>> again<<s>>t her body."})>>
		<</if>>
		<<if $activeSlave.dick == 0 && $activeSlave.clit < 5>>
			<<set _possibleDrugs.push({type: "clit", text: "clit enhan<<c>>ement? I know I'm a <<s>>e<<x>> <<s>>lave and it'<<s>> my pla<<c>>e to get fucked, but I want to teach tho<<s>>e cocky <<s>>lut<<s>> a le<<ss>>on they'll never forget."})>>
		<</if>>
	<<elseif $activeSlave.fetish == "sadist">>
		<<if $activeSlave.dick > 0 && $activeSlave.dick < 5 && canPenetrate($activeSlave)>>
			<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I know I'm a <<s>>e<<x>> <<s>>lave and it'<<s>> my pla<<c>>e to get fucked, but when I do get to do a girl, <<Master>>, I want her to hurt."})>>
		<</if>>
	<<elseif $activeSlave.fetish == "masochist">>
		<<if $activeSlave.dick > 1>>
			<<set _possibleDrugs.push({type: "dickMinus", text: "hormone<<s>> to <<sh>>rink my dick? I'm a <<s>>e<<x>> <<s>>lave and it'<<s>> my pla<<c>>e to get fucked, and when I get u<<s>>ed like a little <<s>>lut it hurt<<s>> <<s>>o good, <<Master>>."})>>
		<</if>>
		<<if $activeSlave.balls > 0 && $activeSlave.balls < 10 && $activeSlave.scrotum > 0>>
			<<set _possibleDrugs.push({type: "balls", text: "hormone<<s>> to <<s>>well up my ball<<s>>? I know I won't be u<<s>>ing them, but to have <<s>>uch a tempting target for abu<<s>>e, <<Master>>..."})>>
		<</if>>
		<<if $activeSlave.butt < 9>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? It would ju<<s>>t beg for a good <<s>>panking!"})>>
		<</if>>
	<<elseif $activeSlave.fetish == "submissive">>
		<<if $activeSlave.dick > 1>>
			<<set _possibleDrugs.push({type: "dickMinus", text: "hormone<<s>> to <<sh>>rink my dick? I don't need a big dick to get fucked, <<Master>>. I don't want to intimidate anyone who might u<<s>>e me."})>>
		<</if>>
		<<if $activeSlave.balls > 1>>
			<<set _possibleDrugs.push({type: "ballsMinus", text: "hormone<<s>> to <<sh>>rink my balls? I don't need to cum bucket<<s>> while getting fucked, <<Master>>. I don't want to out do anyone who might u<<s>>e me."})>>
		<</if>>
		<<if $activeSlave.butt < 9>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I want whoever'<<s>> fucking me to have plenty of cu<<sh>>ion to pu<<sh>> into."})>>
		<</if>>
		<<if $activeSlave.lips <= 70>>
			<<set _possibleDrugs.push({type: "lips", text: "lip enhan<<c>>ement? I want lip<<s>> <<s>>o big everyone will think of ju<<s>>t <<sh>>oving a dick in them."})>>
		<</if>>
		<<if $activeSlave.boobs < 3000>>
			<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I want to be nothing more than a young man'<<s>> wet dream. Ju<<s>>t a pair of tit<<s>>, a big a<<ss>> and <<s>>ome hole<<s>> to fuck."})>>
		<</if>>
	<<elseif $activeSlave.fetish == "cumslut">>
		<<if $activeSlave.lips <= 70>>
			<<set _possibleDrugs.push({type: "lips", text: "lip enhan<<c>>ement? I want everyone to imagine my lip<<s>> around their cock, <<Master>>."})>>
		<</if>>
		<<if $activeSlave.balls > 0 && $activeSlave.balls < 10 && $activeSlave.scrotum > 0>>
			<<set _possibleDrugs.push({type: "balls", text: "hormone<<s>> to add <<s>>ome weight to my ball<<s>>? I ju<<s>>t need to make more cum, <<Master>>. I promi<<s>>e I'll clean up after my<<s>>elf too!"})>>
		<</if>>
	<<elseif $activeSlave.fetish == "buttslut">>
		<<if $activeSlave.butt < 9>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I would love it if everyone thought of fucking my big butt the moment they <<s>>aw me!"})>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I would love it if everyone thought of fucking my big butt the moment they <<s>>aw me!"})>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I would love it if everyone thought of fucking my big butt the moment they <<s>>aw me!"})>>
		<</if>>
	<<elseif $activeSlave.fetish == "boobs">>
		<<if $activeSlave.boobs < 15000>>
			<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I would love it if everyone thought of touching and <<s>>ucking and fucking my big bimbo boobie<<s>> the moment they <<s>>aw me!"})>>
			<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I would love it if everyone thought of touching and <<s>>ucking and fucking my big bimbo boobie<<s>> the moment they <<s>>aw me!"})>>
			<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I would love it if everyone thought of touching and <<s>>ucking and fucking my big bimbo boobie<<s>> the moment they <<s>>aw me!"})>>
		<</if>>
	<<elseif $activeSlave.fetish == "pregnancy">>
		<<if canPenetrate($activeSlave) && $activeSlave.scrotum > 0 && $activeSlave.balls < 10>>
			<<set _possibleDrugs.push({type: "balls", text: "hormone<<s>> to add <<s>>ome heft to my ball<<s>>? When I get the chan<<c>>e to cum in a girl, I want to get her pregnant, really pregnant!"})>>
		<</if>>
		<<if $activeSlave.boobs < 3000>>
			<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I want to look, you know, fertile, <<Master>>."})>>
			<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I want to look, you know, fertile, <<Master>>."})>>
		<</if>>
		<<if $activeSlave.butt < 6>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I want to look, you know, fertile, <<Master>>, even if it'<<s>> not in my hip<<s>>."})>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I want to look, you know, fertile, <<Master>>, even if it'<<s>> not in my hip<<s>>."})>>
		<</if>>
	<<elseif $activeSlave.fetish == "humiliation">>
		<<if $activeSlave.dick > 1>>
			<<set _possibleDrugs.push({type: "dickMinus", text: "hormone<<s>> to <<sh>>rink my dick? It would be <<s>>o humiliating to have a little bitch dick, <<Master>>, everyone would know I'm a worthle<<ss>> little <<s>>lut."})>>
		<</if>>
		<<if $activeSlave.lips <= 70>>
			<<set _possibleDrugs.push({type: "lips", text: "lip enhan<<c>>ement? I want lip<<s>> <<s>>o big everyone know<<s>> I'm a <<s>>lut the moment they <<s>>ee me. They'll all <<s>>tare at me."})>>
		<</if>>
		<<if $activeSlave.boobs < 10000>>
			<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I want big bimbo brea<<s>>t<<s>> <<s>>o big I just <<s>>pill out of my top."})>>
		<</if>>
		<<if $activeSlave.butt < 9>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I want to ri<<s>>k ripping my clothe<<s>> any time I bend over."})>>
		<</if>>
	<</if>>
<</if>>

<<if ($activeSlave.energy > 95) && ($activeSlave.dick > 0) && ($activeSlave.dick < 5) && ($activeSlave.balls > 0) && !["humiliation", "masochist", "submissive"].includes($activeSlave.fetish)>>
	<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I ju<<s>>t want to fuck all the time, <<Master>>. Girl<<s>> with big cock<<s>> have more fun, even getting fucked. E<<s>>pe<<c>>ially getting fucked."})>>
<</if>>

<<if ($activeSlave.attrKnown == 1)>>
	<<if $activeSlave.attrXY > 65 && $activeSlave.boobs < 3000>>
		<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? Nothing get<<s>> a cute boy hard like a big pair of boobie<<s>>."})>>
		<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? Nothing get<<s>> a cute boy hard like a big pair of boobie<<s>>."})>>
	<</if>>
	<<if $activeSlave.attrXX > 65 && canPenetrate($activeSlave) && $activeSlave.dick < 5>>
		<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? Nothing get<<s>> a cute girl wet better than a big hard <<sh>>aft."})>>
		<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? Nothing get<<s>> a cute girl wet better than a big hard <<sh>>aft."})>>
	<</if>>
<</if>>

<<if $arcologies[0].FSGenderRadicalist != "unset">>
	<<if $arcologies[0].FSGenderRadicalistLawFuta == 2>>
		<<if canPenetrate($activeSlave) && $activeSlave.dick < 5>>
			<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I want to be the be<<s>>t hung <<s>>lave I can be, <<Master>>. I want them to <<s>>ee my erection and <<s>>tare."})>>
			<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I want to be the be<<s>>t hung <<s>>lave I can be, <<Master>>. I want them to <<s>>ee my erection and <<s>>tare."})>>
			<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I want to be the be<<s>>t hung <<s>>lave I can be, <<Master>>. I want them to <<s>>ee my erection and <<s>>tare."})>>
		<</if>>
		<<if $activeSlave.scrotum > 0 && $activeSlave.balls < 10>>
			<<set _possibleDrugs.push({type: "balls", text: "hormone<<s>> to add <<s>>ome size to my ball<<s>>? My package is falling behind all the other <<s>>lave<<s>> out there..."})>>
			<<set _possibleDrugs.push({type: "balls", text: "hormone<<s>> to add <<s>>ome size to my ball<<s>>? My package is falling behind all the other <<s>>lave<<s>> out there..."})>>
			<<set _possibleDrugs.push({type: "balls", text: "hormone<<s>> to add <<s>>ome size to my ball<<s>>? My package is falling behind all the other <<s>>lave<<s>> out there..."})>>
		<</if>>
	<<elseif $arcologies[0].FSGenderRadicalistLawFuta == 3>>
		<<if $activeSlave.butt < 9>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I feel like I'm <<s>>tarting to fall behind the other <<s>>lave<<s>>..."})>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I feel like I'm <<s>>tarting to fall behind the other <<s>>lave<<s>>..."})>>
			<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I feel like I'm <<s>>tarting to fall behind the other <<s>>lave<<s>>..."})>>
		<</if>>
	<<else>>
		<<if ($activeSlave.dick > 1)>>
			<<set _possibleDrugs.push({type: "dickMinus", text: "of hormone<<s>> to <<sh>>rink my dick? A big one too. I ju<<s>>t want to become the be<<s>>t little girl I can be, <<Master>>, I don't want anything di<<s>>tracting anyone from my rear pu<<ss>>y."})>>
		<</if>>
	<</if>>
<</if>>

<<if $activeSlave.toyHole == "dick">>
	<<if $activeSlave.dick < 5>>
		<<set _possibleDrugs.push({type: "dick", text: "peni<<s>> enhan<<c>>ement? I know how much you like u<<s>>ing it, <<Master>>, and I want to make <<s>>ure it i<<s>> good for you too."})>>
	<</if>>
<<elseif $activeSlave.toyHole == "mouth">>
	<<if $activeSlave.lips <= 90>>
		<<set _possibleDrugs.push({type: "lips", text: "lip enhan<<c>>ement? I know how much you like u<<s>>ing them, <<Master>>."})>>
	<</if>>
<<elseif $activeSlave.toyHole == "ass">>
	<<if $activeSlave.butt < 9>>
		<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I know how much you like u<<s>>ing it, <<Master>>."})>>
	<</if>>
<<elseif $activeSlave.toyHole == "boobs">>
	<<if $activeSlave.boobs < 25000>>
		<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I know how much you like u<<s>>ing them, <<Master>>."})>>
	<</if>>
<</if>>

<<if $activeSlave.boobs < $activeSlave.butt*750>>
	<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? I want to be a<<s>> fuckable a<<s>> I can for you, <<Master>>, and I think my boob<<s>> need it more than my butt."})>>
<<elseif $activeSlave.butt < $activeSlave.boobs/500 && $activeSlave.butt < 9>>
	<<set _possibleDrugs.push({type: "butt", text: "a<<ss>> growth drug<<s>>? I want to be a<<s>> fuckable a<<s>> I can for you, <<Master>>, and I think my butt need<<s>> it more than my boob<<s>>."})>>
<<else>>
	<<set _possibleDrugs.push({type: "boobs", text: "boob growth drug<<s>>? The way they boun<<c>>e when I get fucked i<<s>> kind of addicting..."})>>
<</if>>

<<set _possibleDrugs = _possibleDrugs.random()>>
<<print _possibleDrugs.text>>"
<<set _injection = _possibleDrugs.type>>

<<case "dickgirl PC">>

Having just enjoyed one of your slaves, you take a quick post-coital rinse in one of the showers scattered around the arcology for the purpose. Thus refreshed, you step out and come face to face with <<= App.UI.slaveDescriptionDialog($activeSlave)>>, who is going about $his assigned business. $His <<= App.Desc.eyesColor($activeSlave)>> lock with yours for a surprised moment, and then flick down submissively.
<br><br>
As $his gaze travels down your body towards the floor,
<<if $activeSlave.attrXY <= 35>>
	it lingers for a moment on your
	<<if $PC.boobs >= 1400>>
		enormous <<if $PC.boobsImplant > 0>>chest balloons<<else>>cow tits<</if>>
	<<elseif $PC.boobs >= 1200>>
		huge<<if $PC.boobsImplant > 0>>, clearly fake<<else>>, heavy<</if>> breasts
	<<elseif $PC.boobs >= 1000>>
		big<<if $PC.boobsImplant > 0>>, perky<</if>> breasts
	<<elseif $PC.boobs >= 800>>
		generous breasts
	<<elseif $PC.boobs >= 650>>
		handfilling breasts
	<<elseif $PC.boobs >= 500>>
		average breasts
	<<elseif $PC.boobs >= 300>>
		small breasts
	<</if>>
	before continuing to track downward. When it reaches your cock, still half-hard from the sex and the warm shower, $he stiffens with discomfort.
<<else>>
	$he averts $his eyes from your
	<<if $PC.boobs >= 1400>>
		enormous, bare <<if $PC.boobsImplant > 0>>chest balloons<<else>>cow tits<</if>>
	<<elseif $PC.boobs >= 1200>>
		huge, bare<<if $PC.boobsImplant > 0>>, clearly fake<<else>>, heavy<</if>> breasts
	<<elseif $PC.boobs >= 1000>>
		big, bare<<if $PC.boobsImplant > 0>>, perky<</if>> breasts
	<<elseif $PC.boobs >= 800>>
		generous, bare breasts
	<<elseif $PC.boobs >= 650>>
		handfilling, bare breasts
	<<elseif $PC.boobs >= 500>>
		average, bare breasts
	<<elseif $PC.boobs >= 300>>
		small, bare breasts
	<</if>>
	as best $he can, quickly looking farther down. $His gaze lingers for a moment on your cock, still half-hard from the sex and the warm shower, but $he's stiff with discomfort.
<</if>>
$He swallows uncomfortably, frozen in place and staring at the floor. $His eyes flick up again, stealing a glance at
<<if $activeSlave.attrXY <= 35>>
	your boobs and studiously avoiding your dick.
<<else>>
	your dick<<if $PC.balls >= 8>> and enormous testicles, while<<else>> and<</if>> studiously avoiding your boobs.
<</if>>
<<if !canTalk($activeSlave)>>
	$He gestures a proper greeting, hands shaking with nervousness.
<<else>>
	"Um, hi, <<Master>>," $he <<say>>s nervously.
<</if>>
<<if $activeSlave.attrKnown != 1>>
	<br><br>
	Just like that, the existing mystery about $his feelings about girls and guys is @@.lightcoral;cleared up.@@
	<<set $activeSlave.attrKnown = 1>>
<</if>>

<<case "penitent">>

As <<= App.UI.slaveDescriptionDialog($activeSlave)>> comes before you for routine inspection, it is obvious that $his penitent habit is having an effect. $He moves with exquisite care, desperate to minimize the chafing<<if $activeSlave.pregKnown == 1 && $activeSlave.belly >= 1500>>, especially on $his growing pregnancy<</if>>. $He seems totally concentrated on obedience: the constant discomfort often has the effect of forcing a slave to marshal all $his mental faculties in the service of pain avoidance.
<br><br>
$His responses to your routine questions are so mechanical and honest that you make an impromptu confession of it. You require $him to tell the full tale of all $his minor infractions against the rules, and even order $him to confess $his resistant thoughts to you as well. Past the ability to resist, $he pours out a stream of $his inner fears, hopes, and feelings about $his life as a sex slave.

<<case "resistant anal virgin">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> has never had anything significant up $his ass. Living in $arcologies[0].name, $he can't have missed that anal sex is a part of most slaves' lives. $He <<if canSee($activeSlave)>>witnesses<<elseif canHear($activeSlave)>>hears<<else>>thinks about<</if>> sodomy several times a day, at least.
<br><br>
Lately, you've noticed that $he reacts to these <<if canSee($activeSlave)>>sights<<elseif canHear($activeSlave)>>sounds<<else>>thoughts<</if>> with a well-concealed flash of apprehension. It seems $he's figured out that $he will probably be required to take it up $his little <<if $seeRace == 1>>$activeSlave.race <</if>>butt someday, and isn't enthusiastic about the prospect. You could probably exploit this.

<<case "diet">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is on a diet, and $he needs it. That doesn't make it any easier for $him. Your slaves are not permitted time to waste over meals. They enter the simple kitchen, drink their allotted portion of slave food out of a cup, and get on with their duties.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>> Despite eating for <<if $activeSlave.pregType <= 1>>two<<elseif $activeSlave.pregType >= 10>>far too many<<else>><<= num($activeSlave.pregType + 1)>><</if>>, $his diet is still in full effect.<</if>> <<= capFirstChar($assistant.name)>> catches $activeSlave.slaveName, whose cup is always filled less than halfway, skulking around in the hope that one of the others will take $his eyes off $his cup, or even leave leftovers.

<<case "huge naturals">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> comes before you naked for a routine inspection. You take particular care to examine $his massive breasts, since they've grown so large it's necessary to check for unsightly veins, stretch marks, and the like. You note $his big nipples with appreciation. Since $his breasts are so enormous and completely free of implants, they're quite saggy. When $he stands,
<<if $activeSlave.boobShape == "saggy" || $activeSlave.boobShape == "downward-facing">>
	$his nipples face out and down.
<<else>>
	gravity causes them to hang low.
<</if>>
As you inspect $him with your hands, $he
<<if !canTalk($activeSlave)>>
	breathes a little harder and looks like $he would speak, were $he not mute.
<<else>>
	<<if ($activeSlave.lips > 70)>>
		murmurs through $his huge lips,
	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
		murmurs through $his piercings,
	<<else>>
		murmurs,
	<</if>>
	"That feel<<s>> really ni<<c>>e, <<Master>>."
<</if>>

<<case "hugely pregnant">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>>'s daily routine includes frequent application of special skin care to $his $activeSlave.skin, hugely swollen belly to prevent $his pregnancy from ruining $his appearance with unsightly stretch marks. Several times a day, $he visits the bathroom to <<if (!hasAnyArms($activeSlave))>>have another slave<<else>>carefully<</if>> coat $his entire _belly stomach in the stuff. $He's so pregnant that it's hard to reach <<if $activeSlave.belly >= 150000>>most of its mass<<else>>the underside<</if>>. The chore keeps $him occupied and stationary for quite a while; there's no need to leave $him sexually idle while $he completes it.

<<case "PA servant">>

As you begin your day one morning, you hear the quiet
<<switch $assistant.appearance>>
<<case "monstergirl">>
	but unmistakably sensual voice of your monster<<= _girlA>>
<<case "shemale">>
	but unmistakably lewd voice of your shemale
<<case "amazon">>
	but unmistakably aggressive voice of your amazon
<<case "businesswoman">>
	but unmistakably dominant voice of your business<<= _womanA>>
<<case "fairy" "pregnant fairy">>
	but unmistakably adorable voice of your fairy
<<case "goddess" "hypergoddess">>
	and kindly voice of your goddess
<<case "loli">>
	and childish voice of your _loliA
<<case "preggololi">>
	and childish, out of breath voice of your pregnant _loliA
<<case "angel">>
	but unmistakably caring voice of your angel
<<case "cherub">>
	yet overly cheerful voice of your cherub
<<case "incubus">>
	and commanding, but obviously aroused voice of your incubus
<<case "succubus">>
	and seductive, but obviously aroused voice of your succubus
<<case "imp">>
	and harassing voice of your imp
<<case "witch">>
	and oddly aroused voice of your witch
<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
	and very distinct voice of your avatar
<<case "schoolgirl">>
	but unmistakably suggestive voice of your school<<= _girlA>>
<</switch>>
personal assistant coming from your office. Looking in, you are treated to the sight of <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s <<if $activeSlave.butt > 8>>ridiculous bottom jiggling<<elseif $activeSlave.butt > 4>>big behind bouncing<<else>>cute rear<</if>><<if $activeSlave.belly >= 5000>>, and the _ belly rounded belly hanging between $his legs,<</if>> as $he reaches out over the glass top of your desk with a soft, dust-free cloth and a bottle of screen cleaner. <<= capFirstChar($assistant.name)>> is displaying _hisA avatar right under where the slave is cleaning the glass screen, and _heA's displaying it nude. _HeA's positioned _himselfA so that the poor slave appears to be wiping
<<switch $assistant.appearance>>
<<case "monstergirl">>
	_hisA hair-tentacles
<<case "shemale">>
	the shaft of _hisA massive prick
<<case "amazon">>
	the insides of _hisA muscular thighs
<<case "businesswoman">>
	_hisA pussy
<<case "fairy">>
	_hisA tiny body
<<case "pregnant fairy">>
	_hisA tiny yet swollen body
<<case "goddess">>
	_hisA motherly tits
<<case "hypergoddess">>
	_hisA huge pregnant belly
<<case "loli">>
	_hisA flat chest
<<case "preggololi">>
	_hisA pregnant belly
<<case "angel">>
	_hisA wide-spread wings
<<case "cherub">>
	_hisA cute pussy
<<case "incubus">>
	_hisA throbbing prick
<<case "succubus">>
	_hisA lovely pussy
<<case "imp">>
	_hisA pussy
<<case "witch">>
	_hisA plump tits
<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
	_hisA phallic tentacles
<<case "schoolgirl">>
	_hisA perky tits
<</switch>>
down with screen cleaner, and is talking dirty to the furiously blushing servant. "Ohh, that feels good," _heA moans. "Rub me right there, you $desc slut! I love it!" The poor slave is doing $his best to hurry, embarrassed and unsure of how to react to $assistant.name's behavior.

<<case "like me">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> appears at the door of your office, looking frightened. $He takes one hesitant step in and stops, wavering, $his hand balled into fists and $his lower lip caught behind $his teeth. The $desc is getting used to $his place as chattel, but $he isn't sure of $himself yet. After a few moments, it becomes obvious that $he's lost whatever mental momentum propelled $him to come in here, and can't muster the courage to back out, either. You rescue $him by politely but firmly ordering $him to tell you why $he's here. After two false starts, $he
<<if !canTalk($activeSlave)>>
	uses shaky hands to ask you to fuck $him.
<<else>>
	"P-plea<<s>>e fuck me, <<Master>>," $he chokes out.
<</if>>
To go by $his behavior, the likelihood that $he's actually eager to <<if $PC.dick == 0>>eat pussy<<else>>take a dick<</if>>, never mind yours, is vanishingly small.

<<case "language lesson">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is standing before you for an inspection. The obedient
$desc
has run through the prescribed motions of a normal inspection, and you've reached the part of the routine where you usually ask the slave a few questions, give $him a few orders, or fuck $him. $His <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>> are watching you closely<<else>>face is centered on you<</if>>, and $he's <<if canHear($activeSlave)>>listening carefully<<else>>waiting patiently<</if>> for direction. This is probably due to linguistic anxiety: $he can understand the most straightforward commands, but giving $him orders is often an exercise in <<if canSee($activeSlave)>>pointing and gesturing, or when that fails, simply<<else>>frustration, ending with you simply<</if>> pushing and pulling $his usually-compliant body into the proper place.

<<case "forbidden masturbation">>

<<if $assistant.personality > 0>>
	There is an alert from $assistant.name, in _hisA deliciously feminine voice: "$activeSlave.slaveName is masturbating, <<= properMaster()>>. Ooh, $he's breaking the rules, <<= properMaster()>>!" _HisA avatar
	<<switch $assistant.appearance>>
	<<case "monstergirl">>
		strokes _hisA dicks suggestively.
	<<case "shemale">>
		shifts uncomfortably, _hisA cock rock hard.
	<<case "amazon">>
		struts back and forth indignantly, _hisA bone bangles rattling.
	<<case "businesswoman">>
		licks _hisA cherry-red lips suggestively.
	<<case "fairy" "pregnant fairy">>
		giggles uncontrollably.
	<<case "hypergoddess" "goddess">>
		tutting disapprovingly, despite _hisA blushing.
	<<case "loli">>
		stares innocently at the scene.
	<<case "preggololi">>
		stares at the scene, blushing, while a hand caresses _hisA large belly.
	<<case "angel">>
		is covering _hisA face, occasionally peeping through _hisA fingers.
	<<case "cherub">>
		is trying _hisA hardest to look away, but keeps glancing back at the scene.
	<<case "incubus">>
		is openly jacking off to the sight.
	<<case "succubus">>
		is groping _himselfA to the sight.
	<<case "imp">>
		is hovering while viciously fingering _hisA cunt.
	<<case "witch">>
		is pretending to read from _hisA spell book, but is obviously watching over the top of it.
	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
		is mimicking _hisA actions nearly perfectly.
	<<case "schoolgirl">>
		giggles nervously.
	<<default>>
		spins accusingly.
	<</switch>>
<<else>>
	There is a gentle alert from $assistant.name: "$activeSlave.slaveName is masturbating in violation of the rules, <<= properMaster()>>."
<</if>>
A video feed appears.
<<if ($activeSlave.chastityVagina)>>
	In $his chastity belt, all $he can manage is furious nipple-<<if $activeSlave.nipples != "fuckable">>rubbing<<else>>fisting<</if>> and some furtive fingering of $his asshole.
<<elseif ($activeSlave.chastityPenis == 1)>>
	In $his chastity cage, all $he can manage is furious nipple-<<if $activeSlave.nipples != "fuckable">>rubbing<<else>>fisting<</if>> and some furtive fingering of $his asshole.
<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
	Since $he's impotent from hormone treatment, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole.
<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0) && ($activeSlave.ballType == "sterile")>>
	Since $he's impotent due to $his useless balls, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole.
<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
	Since $he's impotent due to $his lack of balls, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole.
<<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>>
	Since $his dick requires far too much blood to get erect, $he's furiously massaging the semi-engorged monster.
<<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 0)>>
	Since $he's can't get it up, all $he can manage is rubbing $his soft dick and some furtive fingering of $his asshole.
<<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
	$He's rubbing $his perineum desperately with one hand, and $his anus with the other, since $he lacks external genitalia.
<<elseif $activeSlave.vagina == -1>>
	$He's furiously jacking off.
<<elseif $activeSlave.clit >= 3>>
	$He's furiously jacking off $his clitdick.
<<else>>
	$He's furiously polishing $his pearl.
<</if>>
$He's chosen to do it in a dark corner and looks like $he's hurrying; $he clearly knows this is forbidden.
<br><br>
<<= App.UI.slaveDescriptionDialog($activeSlave)>> does not hear your approach <<if canHear($activeSlave)>>until you're very close.<<else>>but soon realizes your presence.<</if>> $He starts and tries to look normal.
<<if !canTalk($activeSlave)>>
	$He nervously gestures that $he wasn't doing anything.
<<else>>
	"I wa<<s>>n't doing anything, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>!" $he lies.
<</if>>

<<case "hates oral">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> has been in your service long enough to know that oral sex is a daily fact of life for most slaves, and that most slaves are not only required to put up with cum, but to love it, too — or at least be able to fake enjoyment convincingly. $He's <<if canSee($activeSlave)>>seen cum spattered on other slaves' faces, pooling in their mouths, and dripping from their asses only to be licked up by other slaves<<elseif canHear($activeSlave)>>heard cum spattering across other slaves' faces, the sound of it in their mouths, dripping from their asses, and more<<else>>felt seminal fluid on $his skin and on $his lips, always coercively or accidentally<</if>>. It's clear from $activeSlave.slaveName's recent reactions to these acts that $he's quite disgusted by oral sex in general and cum in particular. Depending on your point of view, this could be a flaw for $him to overcome or a weakness you can exploit.

<<case "mindbroken morning">>

It's a sunny morning, with rare mild weather, and you're stuck at your desk, as usual. After the typical rush of slaves clears the kitchen after the breakfast hour, you see one peel off to stand out on a balcony for a moment with the light on $his face. You pay little attention to such a trifle, but then notice that it's <<= App.UI.slaveDescriptionDialog($activeSlave)>>.
<br><br>
You head out and find that $he's looking up at the sun with $his <<= App.Desc.eyesColor($activeSlave)>> closed, letting the warmth and light envelop $his
<<if ($activeSlave.face > 95)>>
	incredible
<<elseif ($activeSlave.face > 40)>>
	gorgeous
<<elseif ($activeSlave.face > 10)>>
	pretty
<<else>>
	homely
<</if>>
face<<if $activeSlave.belly >= 5000>> and taut, _belly dome of a belly<</if>>. $He hasn't gotten completely ready for $his day yet, and $his $activeSlave.skin skin is clean and quite bare. Despite $his small remaining mental capacity, it seems $he's still capable of the minor pleasure of enjoying the sunlight. It is very probably the only enjoyable thing $he'll register today.

<<case "masterful entertainer">>

It's Friday evening, the most socially important part of the week in $arcologies[0].name. <<= App.UI.slaveDescriptionDialog($activeSlave)>> happens to be free this evening, and your schedule is open, too. Lately, $he's been putting on a tour de force of seduction, erotic dance, and lewd entertainment whenever $he gets the chance to catch someone's eye<<if $activeSlave.belly >= 5000>>, even with $his <<if $activeSlave.bellyPreg >= 3000>>advanced pregnancy<<elseif $activeSlave.bellyImplant >= 3000>>_belly rounded belly<<else>>sloshing <<print $activeSlave.inflationType>>-filled stomach<</if>><</if>>. There are a number of events tonight you could attend with $him on your arm.

<<case "masterful whore">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is a queen of the whorehouse: never surprised, never squeamish, and always on the prowl for $his next customer. $He has mastered the transactionalization of sex. When $he's selling $himself by the hole, a customer who purchases $his skilled oral services will often find himself upsold to a more expensive <<if canDoAnal($activeSlave)>>anal experience<<elseif canDoVaginal($activeSlave)>>vaginal experience<<else>>showcase of $his skills<</if>>. When $he's doing it by the orgasm, customers find themselves climaxing rather more quickly than they intended.
<br><br>
And perhaps most importantly, $he always has an ear to the ground, even when one of them is being shoved against the sheets. Customers say the most interesting things when they've got themselves buried in $him. Today, $he's got an especially delightful morsel of information for you: one of your commercial tenants is shortchanging you on rent, concealing profits to reduce your share.

<<case "sleeping ambivalent">>

Passing through the slave dormitory at night, you run your eyes down the row of sleeping chattel. The light here is low, but it's not dark. Slaves need to be able to find the bathroom, slaves on late assignments need to find their beds, and those permitted to do so need to be able to select slaves for sex. <<= App.UI.slaveDescriptionDialog($activeSlave)>> catches your eye. The dormitory is kept at a pleasant temperature so that the slaves, who of course sleep nude, are comfortable on their bedrolls covered by a single sheet, or nothing at all. $He probably went to sleep with $his sheet pulled up to $his chin, which is normal behavior for slaves who aren't yet accepting of their status as compulsory sex objects, but $he's shrugged it down. Half $his torso is bare.
<br><br>
The dim blue light plays across $his $activeSlave.skin skin. <<if $activeSlave.boobs > 2000>>$His massive boob on that side is slightly shifted by each breath<<elseif $activeSlave.boobs > 800>>$His breast on that side rises and falls with each breath<<else>>That side of $his chest rises and falls with each breath<</if>>.
<<if $activeSlave.belly >= 5000>> $His _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly is only partially covered by the sheet, leaving most of it visible.<</if>>
$He's sleeping soundly, $his breaths coming deep and slow. Most slaves where $he is mentally are troubled by bad dreams, but the poor $girl is evidently too tired for that.

<<case "sexy succubus">>

You cross paths with <<= App.UI.slaveDescriptionDialog($activeSlave)>> as $he moves from the living area to $activeSlave.assignment, just starting $his day. $He's full of energy, and $his succubus outfit is delightful. $He <<if canSee($activeSlave)>>sees your glance<<else>>recognizes your whistle<</if>> and greets you with a <<if canSee($activeSlave)>>wicked glint in $his eye<<else>>wicked smirk on $his face<</if>>, bowing a bit to show off $his <<if $activeSlave.boobs > 6000>>bare, inhumanly large breasts<<elseif $activeSlave.lactation > 0>>bare udders, heavy with milk<<elseif $activeSlave.boobsImplant > 0>>naked fake tits<<elseif $activeSlave.boobs > 800>>heavy, naked breasts<<elseif $activeSlave.boobs > 300>>naked little tits<<else>>pretty chest<</if>> and then continuing towards you with a pirouette. $His tail bounces flirtily, holding the back of $his skirt up to show off <<if $activeSlave.butt > 8>>$his absurdly wide bottom<<elseif $activeSlave.analArea > 3>>the broad area of puckered skin around $his slutty asspussy<<elseif $activeSlave.buttImplant > 0>>$his butt implants<<elseif $activeSlave.butt > 5>>$his big butt<<elseif $activeSlave.anus > 1>>a hint of $his asshole, which $his cute buttocks don't quite conceal<<else>>$his cute bottom<</if>>.
<br><br>
$He looks like <<if $activeSlave.bellyPreg >= 1500 || $activeSlave.bellyImplant >= 1500>>a lusty, pregnant, hungry<<elseif $activeSlave.bellyFluid >= 1500>>a gluttonous, over-fed but still hungry<<elseif $activeSlave.height > 180>>an imposing, hungry<<elseif $activeSlave.muscles > 30>>a muscular, hungry<<elseif $activeSlave.weight > 10>>a well-fed but still hungry<<elseif $activeSlave.energy > 95>>desperately hungry<<else>>cute, hungry little<</if>> sex demon, and you tell $him so.
<<if $activeSlave.intelligence > 50>>
	The clever $girl knows all about succubi.
<<elseif $activeSlave.intelligenceImplant >= 15>>
	$He's been taught the basics about succubi.
<<else>>
	$He quickly searches $his memory for the basic information about succubi that came with $his outfit.
<</if>>
<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
	"Oh <<Master>> I'm thtarving," $he lisps,
<<else>>
	"Oh <<Master>>, I'm ssstarving," $he moans,
<</if>>
running $his tongue over $his<<if $activeSlave.lips > 40>> whorish<<elseif $activeSlave.lips > 20>> plush<</if>> lips and sticking out $his chest to present $his boobs even more obviously.

<<case "PA flirting">>

Partway through <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s weekly inspection, you have to leave for a moment to deal with a minor matter. Inspecting such a devoted slave is a pleasure, but you tear yourself away. Such sacrifices must be made.
<br><br>
When you return, the comfortably nude $desc is flirting shamelessly with $assistant.name. Your personal assistant's $assistant.appearance avatar is glowing brightly on the desktop, and $he and $activeSlave.slaveName are trading increasingly exaggerated compliments.
<<switch $assistant.appearance>>
<<case "monstergirl">>
	"I love your hair," the slave <<say>>s. "Have you done anything to it lately?"
	<br><br>
	$assistant.name smiles dangerously, _hisA tentacle hair flaring out, its suckers starting to pulsate. "Don't you mean, 'have I done anyone with it lately?' I'd love to do you," _heA purrs.
<<case "shemale">>
	"I love your cock," the slave <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps wistfully<<else>>sighs wistfully<</if>>. <<if canAchieveErection($activeSlave)>>"I'd love to be that big."<<else>>"I can't look away."<</if>>
	<br><br>
	Complimented, $assistant.name looks pleased. "Yeah, it's pretty great," _heA giggles.
<<case "amazon">>
	"You're <<s>>o big and <<s>>trong," the slave <<say>>s. "You look like you could give a great hug."
	<br><br>
	$assistant.name blushes. "Um, well," _heA says, _hisA muscular avatar kicking its heels. "I can't. But I'd like to give you one!"
<<case "businesswoman">>
	"You're <<s>>o confident and <<s>>e<<x>>y," the slave <<say>>s. "I love doing what you <<s>>ay."
	<br><br>
	$assistant.name favors $him with an aristocratic look. "Well, you are a good slave," _heA says measuringly. "So I suppose I love telling you what to do." _HeA uncrosses and recrosses _hisA legs.
<<case "fairy">>
	"You're <<s>>o tiny and adorable," the slave <<say>>s. "You're a load of fun to be with."
	<br><br>
	$assistant.name giggles and holds _hisA hands up to _hisA face. "Aw shucks, you're just saying that," _heA says shyly. "You're quite the cutie yourself!" _HeA flits to and fro.
<<case "pregnant fairy">>
	"You're <<s>>o tiny and adorable," the slave <<say>>s. "You're a load of fun to be with."
	<br><br>
	$assistant.name giggles and holds _hisA hands up to _hisA face. "Aw shucks, you're just saying that," _heA says shyly. "You're quite the cutie yourself!" _HeA moves one hand down to caress _hisA belly.
<<case "cherub" "schoolgirl">>
	"You're <<s>>o cute," the slave <<say>>s. "It make<<s>> thing<<s>> fun."
	<br><br>
	$assistant.name looks touched. "Aw," _heA coos, "I love you too!"
<<case "goddess" "hypergoddess">>
	"I love the way you glow," the slave <<say>>s. "It'<<s>> really comforting."
	<br><br>
	$assistant.name beams maternally. "That's wonderful," _heA says resonantly. "I want the best for you."
<<case "loli">>
	"You're <<s>>o cute," the slave <<say>>s. "It'<<s>> really calming."
	<br><br>
	$assistant.name beams cutely. _HeA giggles quietly. "I'll be cuter just for you."
<<case "preggololi">>
	"You're <<s>>o cute," the slave <<say>>s. "It'<<s>> really calming."
	<br><br>
	$assistant.name beams proudly. _HeA giggles loudly and pats _hisA belly. "I'll be cuter just for you."
<<case "angel">>
	"I love your wing<<s>>," the slave <<say>>s. "They are <<s>>o maje<<s>>tic."
	<br><br>
	$assistant.name smiles happily. "If it keeps you out of trouble."
<<case "incubus">>
	"You're <<s>>o <<s>>e<<x>>y," the slave <<say>>s. "I can't help be feel <<s>>o hot around you."
	<br><br>
	$assistant.name beams proudly. "What kind of sex demon would I be if I couldn't turn you on?"
<<case "succubus">>
	"You're <<s>>o <<s>>e<<x>>y," the slave <<say>>s. "I can't help be feel <<s>>o hot around you."
	<br><br>
	$assistant.name beams proudly. "What kind of sex demoness would I be if I couldn't turn you on?"
<<case "imp">>
	"You're <<s>>o cute," the slave <<say>>s. "It make<<s>> you fun."
	<br><br>
	$assistant.name cackles. "Won't spare you the whip and hot wax just for compliments!"
<<case "witch">>
	"You're <<s>>o, uh, determined," the slave <<say>>s. "It make<<s>> you fun."
	<br><br>
	$assistant.name giggles. "I'll just have to play with you more often then."
<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
	"You're <<s>>o intere<<s>>ting," the slave <<say>>s. "You alway<<s>> have <<s>>omething new to <<sh>>ow off."
	<br><br>
	$assistant.name laughs. "I'll always find a way into your pants, so why bother trying to say no?"
<</switch>>

<<case "dick wringing">>

You run into <<= App.UI.slaveDescriptionDialog($activeSlave)>> in the hallway outside your office. The devoted $desc smiles at you as $he approaches. You barely notice how awkward $his gait is, since $he usually walks a little strangely. $His third leg tends to have that effect. But on consideration, $he does seem especially uncomfortable right now. The poor $girl's <<if $activeSlave.scrotum == 0>>internal balls<<elseif $activeSlave.balls < 3>>girly balls<<elseif $activeSlave.scrotum < 4>>balls, held tightly against $his body by $his taut scrotum,<<else>>swinging balls<</if>> must be in dire need of emptying.
<br><br>
$He trusts you, so $he approaches you as sensually as $he can manage and asks for your help.
<<if !canTalk($activeSlave)>>
	$He uses quick but submissive gestures to beg you to help $him cum, pleading the special difficulties caused by $his outlandish member, which $he can manage most comfortably if $he has both hands free for it.
<<else>>
	"<<Master>>, would you plea<<s>>e, plea<<s>>e help me cum?" $he begs submissively. "It'<<s>> ni<<c>>e if I can u<<s>>e both hand<<s>> on it to, um, manage thing<<s>>."
<</if>>
$He's referring to the volume issue with $his unnaturally massive dick. The thing is so huge and so soft that <<if $activeSlave.balls < 3>>one of $his (by comparison) pathetically weak ejaculations<<elseif $activeSlave.balls < 6>>one of $his comparatively normal ejaculations<<else>>a single one of even $his copious ejaculations<</if>> often fails to make it all the way to the tip of $his cock, making it only partway down $his urethra without help.

<<case "fucktoy tribbing">>

<<setNonlocalPronouns $seeDicks>>
With a mind as busy as yours, you sometimes wake up in the middle of the night for no reason that you can remember.<<if $PC.actualAge >= 50>> These incidents have become more common as you age; merely one of time's little mutilations.<</if>> Naturally, waking up in the middle of the night feels much different than it did back before you owned an arcology. Now you have your choice from a virtual buffet of sleeping slaves if you don't feel like going back to sleep right away.
<br><br>
The slave on your left is sleeping on _hisU back, and is touching you lightly at the hip and shoulder. The slave on your right, though, is nestled in close, $his shoulder under your arm and $his head resting gently on your
<<if $PC.boobs >= 1400>>
	enormous <<if $PC.boobsImplant > 0>>firm<<else>>pillowy<</if>> breast.
<<elseif $PC.boobs >= 1200>>
	huge <<if $PC.boobsImplant > 0>>firm<<else>>pillowy<</if>> breast.
<<elseif $PC.boobs >= 1000>>
	big <<if $PC.boobsImplant > 0>>firm<<else>>soft<</if>> breast.
<<elseif $PC.boobs >= 300>>
	bare breast.
<<elseif $PC.title == 0>>
	flat chest.
<<else>>
	toned chest.
<</if>>
$He's straddling your leg on that side, and as your waking consciousness coalesces, you become more and more aware <<if $activeSlave.belly >= 10000>>of the weight of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> on your <<if $PC.belly >= 5000>>own gravid <</if>>middle and <</if>>that $his mons is pressed against your thigh. $He has one leg thrown over yours in $his sleeping embrace, placing $his own <<if $activeSlave.muscles > 30>>muscular<<elseif $activeSlave.weight > 10>>plush<<else>>feminine<</if>> thigh against your womanhood in turn. It's <<= App.UI.slaveDescriptionDialog($activeSlave)>>, and you feel yourself begin to grow wet as you gaze at $him in the dim light and feel $his slumbering heat.

<<case "cow milking">>

Heading back towards your office after seeing to a minor matter, you encounter <<= App.UI.slaveDescriptionDialog($activeSlave)>>, heading for the penthouse milkers. <<if $activeSlave.assignment == "get milked">>Though it's $his job to be a human cow, $he's allowed to roam as $he pleases when $he's not getting milked, being fed, or otherwise occupied, and $he must have been elsewhere.<<else>>$He's not assigned to be a human cow full time, since it's $his main focus to $activeSlave.assignment, but $he's still obliged to visit the milkers regularly.<</if>> In any case, $he's obviously in desperate need of a milking. $He's hurrying along with $his <<if $activeSlave.boobs > 4000>>absurd<<else>>heavy<</if>> udders cradled in both arms, trying desperately to shield them from the uncomfortable motion of walking.
<br><br>
<<if canSee($activeSlave)>>Seeing<<else>>Noticing<</if>> you, $he stops short and then winces as $his milk-filled breasts slosh to a stop, too.
<<if !canTalk($activeSlave)>>
	$He gestures a submissive greeting and then hesitates, catching $his lower lip cutely behind $his upper teeth. Then $he politely asks if you would milk $him.
<<else>>
	"Hi <<Master>>," $he <<say>>s in greeting, and then hesitates, catching $his lower lip cutely behind $his upper teeth. "Um, would you plea<<s>>e milk me?"
<</if>>
<<if $activeSlave.fetish == "boobs">>The shamelessly breast obsessed cow rarely misses an opportunity to ask for mammary intercourse, or anything remotely like it. Something as intimate as having you tug the milk from $his nipples would definitely qualify.<<else>>$He's not exactly a breast fetishist, but milking is nonetheless a deeply important activity for $him, emotionally; the neurochemical effects of continual lactation are strong. $He's so devoted to you that $he probably considers this a reassuringly intimate act.<</if>>

<<case "refreshment delivery">>

When it's time for refreshments, $assistant.name directs the closest unoccupied slave to bring them in. This has the added advantage of bringing an enjoyably unpredictable variety of slaves under your eyes. This time, <<= App.UI.slaveDescriptionDialog($activeSlave)>> comes through the door of your office, carrying
<<if $PC.refreshmentType == 0>>
	a selection of $PC.refreshment brands and the necessary implements
<<elseif $PC.refreshmentType == 1>>
	a bottle of $PC.refreshment with a glass in your favorite style
<<elseif $PC.refreshmentType == 2>>
	a selection of $PC.refreshment on a plate of your favored style
<<elseif $PC.refreshmentType == 3>>
	a line of $PC.refreshment and the necessary implements
<<elseif $PC.refreshmentType == 4>>
	a syringe of $PC.refreshment and the necessary implements
<<elseif $PC.refreshmentType == 5>>
	a bottle of $PC.refreshment
<<elseif $PC.refreshmentType == 6>>
	several sheets of $PC.refreshment
<</if>>
on a tray<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>> carefully held against $his pregnant belly, doing $his best to will $his child<<if $activeSlave.pregType > 1>>ren<</if>> to not kick the tray off balance<<elseif $activeSlave.belly >= 10000>> carefully held against $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>.

<br><br>

$He comes to a stop right beside your elbow, waiting for further direction, just as $he's been trained to do in these cases.
<<if getLimbCount($activeSlave, 102) > 2>>
	As $he maintains $his posture obediently, $his P-Limbs produce minute machine noises. They allow $him good coordination, but their gyros and servomotors are constantly working to maintain it, which means that when $he stands still, they're not perfectly quiet.
<<elseif $activeSlave.boobs > 4000>>
	$His breasts are so massive that $he's got the tray more or less balanced on top of them. As $he breathes, $his tits rise and fall slightly,
	<<if $PC.refreshmentType == 0>>
		causing the $PC.refreshment collection to roll from side to side.
	<<elseif $PC.refreshmentType == 1>>
		causing ripples in the bottle of $PC.refreshment.
	<<elseif $PC.refreshmentType == 2>>
		threatening to knock the $PC.refreshment from it's plate.
	<<elseif $PC.refreshmentType == 3>>
		disturbing the lines of $PC.refreshment.
	<<elseif $PC.refreshmentType == 4>>
		causing the syringes of $PC.refreshment to roll from side to side.
	<<elseif $PC.refreshmentType == 5>>
		rattling the $PC.refreshment in its bottle.
	<<elseif $PC.refreshmentType == 6>>
		threatening to knock the sheets of $PC.refreshment off the tray.
	<</if>>
<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>
	$He keeps the tray balanced atop $his _belly pregnancy, though the weight encourages $his child<<if $activeSlave.pregType > 1>>ren<</if>> to begin kicking. As you glance over at $him, $he lets out a minute, tired sigh, as kicks from $his child<<if $activeSlave.pregType > 1>>ren<</if>>
	<<if $PC.refreshmentType == 0>>
		cause the $PC.refreshment collection to roll from side to side.
	<<elseif $PC.refreshmentType == 1>>
		cause ripples in the bottle of $PC.refreshment.
	<<elseif $PC.refreshmentType == 2>>
		threaten to knock the $PC.refreshment from it's plate.
	<<elseif $PC.refreshmentType == 3>>
		disturb the lines of $PC.refreshment.
	<<elseif $PC.refreshmentType == 4>>
		cause the syringes of $PC.refreshment to roll from side to side.
	<<elseif $PC.refreshmentType == 5>>
		rattle the $PC.refreshment in its bottle.
	<<elseif $PC.refreshmentType == 6>>
		threaten to knock the sheets of $PC.refreshment off the tray.
	<</if>>
<<elseif $activeSlave.belly >= 10000>>
	$His <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly is big enough that $he's got the tray more or less balanced on top of it. As you glance over at $him, $he lets out a minute, tired sigh,
	<<if $PC.refreshmentType == 0>>
		causing the $PC.refreshment collection to roll from side to side.
	<<elseif $PC.refreshmentType == 1>>
		causing ripples in the bottle of $PC.refreshment.
	<<elseif $PC.refreshmentType == 2>>
		nearly rocking the $PC.refreshment from it's plate.
	<<elseif $PC.refreshmentType == 3>>
		disturbing the lines of $PC.refreshment.
	<<elseif $PC.refreshmentType == 4>>
		causing the syringes of $PC.refreshment to roll from side to side.
	<<elseif $PC.refreshmentType == 5>>
		nearly tipping the bottle of $PC.refreshment.
	<<elseif $PC.refreshmentType == 6>>
		threatening to blow the sheets of $PC.refreshment off the tray.
	<</if>>
<<elseif $activeSlave.muscles > 30>>
	With $his incredible musculature, $he's able to maintain utter stillness in the perfect posture of an obedient slave. A naturally standing human makes some small movements, but $his strength allows $him to suppress them by setting muscle groups against each other. This has the ancillary benefit of making them stand out nicely.
<<elseif $activeSlave.energy > 95>>
	$He's controlling $his absurd sex drive for the moment, but $he clearly wouldn't mind some sex as part of the delivery.
	<<if $activeSlave.dick > 0>>
		<<if canAchieveErection($activeSlave)>>
			$His cock is painfully erect,
		<<else>>
			$His soft dick is dribbling precum,
		<</if>>
	<<elseif $activeSlave.vagina == -1>>
		$He's unconsciously presenting $his bottom,
	<<else>>
		$His pussy is visibly soaked,
	<</if>>
	showing unmistakably how badly $he needs release.
<<else>>
	$He keeps $his <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>><<else>>face<</if>> slightly downcast, $his back arched, $his chest pressed outward, and $his bottom stuck out a bit. $He's the perfect picture of an obedient little sex slave<<if $activeSlave.height > 185>> (though, of course, $he's anything but physically small)<</if>>.
<</if>>

<<case "tittymonster inspection">>

You enter your office from other business a few minutes after the scheduled start of <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s inspection. The <<if $boobAccessibility == 1>>accessibility aids for slaves with immobilizing breasts<<else>>slaves who helped $him in<</if>> have gone, leaving $him waiting for you in front of your desk. The sight is an arresting one. $He's kneeling, but $his boobs are so enormous that they're resting on the ground in front of $him, completely concealing $his body below the chest<<if $activeSlave.belly >= 120000>>, save for the protruding mass of $his <<if $activeSlave.pregType > 8>>hyper pregnant<<elseif $activeSlave.pregType > 4>><<print pregNumberName($activeSlave.pregType, 1)>>-filled<<else>>overly distended<</if>> belly<</if>>. With $his arm<<if hasBothArms($activeSlave)>>s<</if>> tucked back, and $his torso, <<if $activeSlave.belly < 120000>><<if $activeSlave.bellyPreg > 100>>pregnancy,<<elseif $activeSlave.belly > 100>>swollen stomach,<<else>>abdomen,<</if>><</if>> and legs hidden, $he appears to consist of a <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face > 50>>beautiful<<elseif $activeSlave.face >= 10>>pretty<<elseif $activeSlave.face >= 0>>nice<<else>>homely<</if>>, $activeSlave.faceShape face, a
<<if $activeSlave.collar == "none">>
	bare
<<else>>
	collared
<</if>>
neck, $activeSlave.skin, <<if $activeSlave.muscles > 95>>hugely muscled<<elseif $activeSlave.muscles > 30>>strong<<elseif $activeSlave.shoulders > 0>>broad<<elseif $activeSlave.shoulders < 0>>feminine<<elseif $activeSlave.muscles > 5>>toned<<else>>soft<</if>> shoulders, and below that, breasts<<if $activeSlave.belly >= 120000>> parted by $his _belly dome of a stomach<</if>>. $He greets you <<if $activeSlave.devotion > 50>>devotedly, behaving for all the world like $he's pleased to be<<elseif $activeSlave.devotion >= -20>>properly, with just a hint of unhappiness about being<<else>>with more than a hint of resentment over being<</if>> pinned to the floor by $his own tits.

<<case "bonded love">>

Working in your office early in the morning, you can hear the low, human hum of your slaves who work during the daytime busily getting ready for their days. Suddenly, there's motion at your doorway, and <<= App.UI.slaveDescriptionDialog($activeSlave)>> hurries in. $He's nude, $his $activeSlave.skin skin glowing with the fresh cleanliness of having just gotten out of the shower. $He <<if canSee($activeSlave)>>glances at you<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>> to see if $he's unwelcome, and seeing no sign that $he is, the devoted $desc comes over to your desk.
<<if $activeSlave.boobs < 400>>
	$His little $activeSlave.boobShape tits barely move at all as $he walks, though $his $activeSlave.nipples nipples certainly catch your eye.
<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .75>> /* tiny little 200cc implants in 20000cc tits are laughable. Now we make sure those tits are fake. */
	$His fake tits barely move at all as $he walks, their shape maintained by $his implants.
<<elseif $activeSlave.boobs < 1000>>
	$His lovely $activeSlave.boobShape boobs move delightfully as $he walks, and $his $activeSlave.nipples nipples bounce prettily.
<<elseif $activeSlave.boobs < 2500>>
	$His heavy, $activeSlave.boobShape breasts bounce up and down as $he walks, making $his $activeSlave.nipples nipples dance around distractingly.
<<else>>
	$His massive, $activeSlave.boobShape udders jiggle alluringly as $he walks, and $his $activeSlave.nipples nipples sway from side to side distractingly.
<</if>>
Your eyes move down $his body, noting
<<if $activeSlave.bellyPreg >= 450000>>
	$his _belly belly<<if $activeSlave.pregSource == -1>>, practically bursting with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<</if>> and how $he struggles to walk with it while keeping all the kicking from throwing $him off balance.
<<elseif $activeSlave.belly >= 450000>>
	$his _belly belly and how the struggles to walk with it without bumping things.
<<elseif $activeSlave.bellyPreg >= 150000>>
	$his _belly belly<<if $activeSlave.pregSource == -1>>, completely filled with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<</if>> and the slight movement within with each struggled step $he takes.
<<elseif $activeSlave.belly >= 150000>>
	$his _belly belly and the vastly altered gait $he steps with to handle it.
<<elseif $activeSlave.bellyPreg >= 10000>>
	$his full-term pregnant belly<<if $activeSlave.pregSource == -1>>, rounded with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<<else>>, which<</if>> adds a distinct awkwardness to $his gait.
<<elseif $activeSlave.bellyFluid >= 10000>>
	$his straining <<print $activeSlave.inflationType>>-filled belly and how $he struggles to walk normally with it.
<<elseif $activeSlave.bellyImplant >= 10000>>
	$his full-term pregnancy-looking belly and how it adds a distinct awkwardness to $his gait.
<<elseif $activeSlave.bellyPreg >= 5000>>
	$his hugely pregnant belly<<if $activeSlave.pregSource == -1>>, rounded with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<<else>>, which<</if>> adds a certain unavoidable awkwardness to $his gait.
<<elseif $activeSlave.bellyFluid >= 5000>>
	$his <<print $activeSlave.inflationType>>-filled belly and the delightful jiggle that runs through it with each step.
<<elseif $activeSlave.bellyImplant >= 5000>>
	$his hugely rounded belly and the certain unavoidable awkwardness in $his gait it causes.
<<elseif $activeSlave.weight >= 95>>
	$his big fat belly and how it sways and jiggles with each step.
<<elseif $activeSlave.bellyPreg >= 1500>>
	$his pregnant belly<<if $activeSlave.pregSource == -1>>, swollen with your child<<if $activeSlave.pregType > 1>>ren<</if>>,<<else>>, which<</if>> isn't truly huge yet, but clearly advertises $his status as a breeding $desc.
<<elseif $activeSlave.bellyFluid >= 2000>>
	the slight bloat to $his belly caused by the liters of $activeSlave.inflationType held inside $him.
<<elseif $activeSlave.bellyImplant >= 1500>>
	$his slightly rounded belly, not truly noticeable, but enough to advertise $him as a breeding $desc, even though it's fake.
<<elseif $activeSlave.hips == 3>>
	$his extremely wide hips and the cartoonish sway to them as $he walks.
<<elseif $activeSlave.muscles > 30>>
	$his rippling abs, which work visibly as $he walks, flexing and straining powerfully underneath $his $activeSlave.skin skin.
<<elseif $activeSlave.waist < -95>>
	$his cartoonish wasp waist and the way it emphasizes $his status as a sex toy.
<<elseif $activeSlave.hips > 0>>
	$his wide hips and the sensual sway to them as $he walks.
<<elseif $activeSlave.waist < -10>>
	$his nice narrow waist and the way it emphasizes the feminine swell of $his hips.
<<elseif $activeSlave.weight > 30>>
	$his chubby belly and how it jiggles as $he walks, $his plush fat moving voluptuously with $him.
<<elseif $activeSlave.weight > 10>>
	$his plush belly and how it jiggles a little as $he walks, giving $him a soft and sensual appeal.
<<else>>
	$his trim belly before looking further down.
<</if>>
Below that,
<<if $activeSlave.dick > 0>>
	<<if canAchieveErection($activeSlave)>>
		$his cock is soft for once, probably from the shower; it
	<<elseif $activeSlave.dick > 6>>
		$his soft python of a cock
	<<else>>
		$his soft bitchclit
	<</if>>
	<<if $activeSlave.dick > 4>>flops around lewdly<<elseif $activeSlave.dick > 2>>bounces around<<else>>wiggles pathetically<</if>> as $he moves.
<<elseif $activeSlave.labia > 0>>
	$his generous petals, flushed and a little full from the warmth of the shower, offer soft, healthy advertisement of $his womanhood.
<<elseif $activeSlave.clit > 0>>
	$his prominent clit, flushed and a little full from the warmth of the shower, offers soft testament to $his female sexuality.
<<elseif $activeSlave.clitPiercing > 0>>
	$his glinting <<if $activeSlave.dick == 0>>clit<<else>>dick<</if>> piercing catches your eye, just as it's meant to do.
<<elseif $activeSlave.vagina == -1>>
	the smooth, featureless skin between $his legs is a little flushed; the tiny hole in it is barely noticeable.
<<else>>
	$his healthy womanhood looks a little flushed from the warmth of the shower.
<</if>>
Coming to a stop, $he <<if $activeSlave.height > 190>>bends the long, long way down necessary to bring<<elseif $activeSlave.height < 155>>bends the amusingly short way down $he needs to bring<<else>>bends down<</if>> to bring $his<<if $activeSlave.lips > 40>> pillowy<<elseif $activeSlave.lipsPiercing > 0>> pierced<</if>> lips next to your ear.

<br><br>

<<if !canTalk($activeSlave)>>
	$He mouths 'I love you, <<= getWrittenTitle($activeSlave)>>,' holding $his hands out in front of you both to say it in sign language at the same time.
<<else>>
	"I love you, <<Master>>," $he whispers.
<</if>>

<<case "bad dream">>

Passing near the slave dormitory late at night, you hear a quiet cry within. This is strange; most slaves housed there are not inclined or not allowed to have sex in the middle of the night, and in any case, the noise wasn't one of pleasure. Looking in, you see a jerky movement near the door. It's <<= App.UI.slaveDescriptionDialog($activeSlave)>>, and $he's obviously having a bad dream. $He raises <<if hasBothArms($activeSlave)>>an<<else>>$his<</if>> arm to fend off some imagined danger, and in doing so, pushes the sheet down around $his waist. $He sleeps naked, like all your slaves, and the movement bares $his <<if $activeSlave.boobs > 2000>>udders<<elseif $activeSlave.boobs > 1000>>heavy breasts<<elseif $activeSlave.boobs > 400>>boobs<<else>>little tits<</if>><<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>> to the cool night air. The low blue light outlines $his nipples as they <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>swell<</if>> at the sudden change of temperature,
<<switch $activeSlave.nipples>>
<<case "tiny">>
	pricking up into little buds.
<<case "flat">>
	becoming visible against $his areolae.
<<case "puffy">>
	the puffy promontories jutting even farther out.
<<case "partially inverted">>
	just starting to poke past their inversion.
<<case "inverted">>
	the twin domes formed by their inverted shapes becoming more prominent.
<<case "huge">>
	becoming so large they cast long shadows across $his bed.
<<case "fuckable">>
	the fuckable holes steadily closing and starting to poke outwards.
<<default>>
	becoming attractively erect.
<</switch>>
Still dreaming, $he clasps $his arm<<if hasBothArms($activeSlave)>>s<</if>> protectively over $his <<if $activeSlave.pregKnown == 1>>unborn child<<if $activeSlave.pregType > 1>>ren<</if>><<else>>vulnerable chest<</if>>, and rolls to one side. Halfway into a fetal position, $he turns $his head against $his pillow, murmuring "N-no — plea<<s>>e no — I'll d-do anyth-thing — no..."

<<case "shower slip">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> finishes $his morning shower and sleepily turns to dry off. $He slips a little on the moist bathroom floor, trips over $his own feet, and starts to stumble. $His fall is immediately arrested as $he's caught by a pair of strong<<if $PC.title == 0>> yet feminine<</if>> arms. Coming to rest against
<<if $PC.boobs >= 1400 && $PC.belly >= 10000>>
	a pair of enormous <<if $PC.boobsImplant > 0>>air bags<<else>>pillowlike breasts<</if>> and a hugely pregnant belly,
<<elseif $PC.belly >= 10000>>
	a hugely pregnant middle,
<<elseif $PC.boobs >= 300>>
	a pair of <<if $PC.boobsImplant == 0>>soft<<else>>firm<</if>> breasts,
<<elseif $PC.title == 0>>
	a flat chest,
<<else>>
	a well-muscled chest,
<</if>>
$he <<if canSee($activeSlave)>>looks up to find $himself gazing into your eyes<<else>>feels $his savior and recognizes these features as yours<</if>>.
<<if !canTalk($activeSlave)>>
	$He mouths a surprised but genuine thank you.
<<else>>
	"Thank<<s>>, <<Master>>," $he murmurs, getting over $his <<s>>urpri<<s>>e and relief.
<</if>>

<br><br>

Opportunities for gallantry didn't use to fall into your lap like this, but with a harem of busy sex slaves living and working in close proximity, they're common. For $his part, $activeSlave.slaveName doesn't seem to mind acting out bad romantic comedy. $He shows no sign of getting back to $his own feet, and nuzzles $his $activeSlave.skin cheek against your
<<if $PC.belly >= 10000>>
	taut middle,
<<elseif $PC.boobs >= 300>>
	boob,
<<elseif $PC.title == 0>>
	cute nipple,
<<else>>
	chest,
<</if>>
<<if canSee($activeSlave)>>staring<<else>>looking<</if>> up at you coquettishly. Apparently worrying that $his sexual availability isn't obvious enough, $he catches $his <<if $activeSlave.lips > 40>>enormous<<elseif $activeSlave.lips > 20>>plush<<else>>soft<</if>> lower lip behind $his teeth and bats $his eyes at you.
<<if ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
	$His braces make the flirty gesture look amusingly innocent<<if $activeSlave.visualAge > 35>> for such a mature $woman<</if>>.
<<elseif $activeSlave.teeth == "pointy">>
	Somehow $he manages to make this look cute despite $his carnivorously pointed teeth.
<<elseif $activeSlave.teeth == "fangs">>
	Somehow $he manages to make this look cute despite $his fangs.
<<elseif $activeSlave.teeth == "fang">>
	$His lone fang makes the look more mischievous then $he intends.
<</if>>

<<case "happy dance">>

As you pass by the area of the penthouse where slaves sleep one morning, you're struck by a <<if $activeSlave.voice > 2>>high, bubbly<<elseif $activeSlave.voice > 1>>feminine<<else>>deep<</if>> humming. It's <<= App.UI.slaveDescriptionDialog($activeSlave)>>, dancing <<if $activeSlave.rules.living == "luxurious">>in the doorway of $his room<<else>>at the foot of $his bedroll<</if>>, dancing like no one's watching. $He's just woken up, and <<if $activeSlave.physicalAge > 35>>is full of energy and vigor in open defiance of $his age<<elseif $activeSlave.physicalAge < 25>>is full of youthful energy and vigor<<else>>is full of health and energy<</if>><<if $activeSlave.belly >= 10000>>, despite being <<if $activeSlave.bellyPreg >= 3000>>heavily pregnant<<elseif $activeSlave.bellyImplant >= 3000>>heavily gravid<<else>>greatly bloated<</if>><</if>>. $He's letting it out by humming a beat and dancing seductively, all by $himself.

<br><br>

You recognize the tune: it's one of <<if _S.DJ>>_S.DJ.slaveName's most popular tracks<<elseif $club != 0>>the most popular tracks in $clubName<<else>>the most popular house tracks in the Free City<</if>>, and it's made for sexy dancing. Shaking $his
<<if $activeSlave.hips > 2>>
	<<if $activeSlave.weight > 30>>
		awe inspiring, soft
	<<elseif $activeSlave.weight >= -10>>
		awe inspiring
	<<else>>
		awe inspiring yet skinny
	<</if>>
<<elseif $activeSlave.hips > 0>>
	<<if $activeSlave.weight > 30>>
		broad, chubby
	<<elseif $activeSlave.weight >= -10>>
		broad
	<<else>>
		broad yet skinny
	<</if>>
<<elseif $activeSlave.hips == 0>>
	<<if $activeSlave.weight > 30>>
		chubby
	<<elseif $activeSlave.weight >= -10>>
		feminine
	<<else>>
		skinny
	<</if>>
<<else>>
	<<if $activeSlave.weight > 30>>
		narrow, chubby
	<<elseif $activeSlave.weight >= -10>>
		narrow
	<<else>>
		narrow and skinny
	<</if>>
<</if>>
hips
<<if $activeSlave.belly >= 5000>>
	<<if $activeSlave.bellyPreg >= 3000>>
		and _belly baby bump
	<<elseif $activeSlave.bellyImplant >= 3000>>
		and _belly round belly
	<<else>>
		and <<print $activeSlave.inflationType>>-filled belly
	<</if>>
<</if>>
in time with $his humming, $he runs $his hand<<if hasBothArms($activeSlave)>>s<</if>> sensually over them, along $his flanks, and over $his chest, <<if $activeSlave.boobs > 3000>>letting the vast mass of $his tits rest atop them<<elseif $activeSlave.boobs > 1000>>groping $his own heavy breasts<<else>>$his fingertips circling $his nipples<</if>> for an alluring moment. As $his hips maintain their sexual rhythm, $his hands continue, tracing up $his throat, over $his moist lips, and over $his head. As $he stretches up, $his torso begins to sway with the barely perceptible beat, $his
<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .75>>
	fake tits staying perfectly in place.
<<elseif $activeSlave.boobs > 2000>>
	$activeSlave.boobShape boobs swaying along.
<<elseif $activeSlave.boobs > 400>>
	$activeSlave.boobShape tits bouncing along.
<<else>>
	petite chest accentuating $his gamine charm.
<</if>>

<<case "plimb help">>

First thing in the morning,
<<if $activeSlave.ID == $BodyguardID>>
	before you've even gotten out of bed, you hear <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s voice coming up from where $he sleeps, on $his own bedroll in your suite. There's a distinctly plaintive note in $his voice, and as soon as you sit up and look in $his direction, it's obvious why. $He sleeps out of $his P-Limbs, since it's good to rest the anchor points implanted into $his torso. They're held in actuators over $his bedroll, which can swing down and attach them to $him the instant $he's awake. Except today, they're staying obstinately up near the ceiling. <<if $assistant.personality != 0>>$assistant.name tells you _heA's<<else>>Your personal assistant informs you _heA's<</if>> troubleshooting the problem, but in the meantime, poor
<<else>>
	$assistant.name informs you that there's a minor problem with <<= App.UI.slaveDescriptionDialog($activeSlave)>>, and asks whether you'd like it to be handled without you. $He sleeps out of $his P-Limbs, since it's good to rest the anchor points implanted into $his torso. When $he wakes up, $he usually asks whichever slave is nearest to attach $his dominant arm, at which point $he can do the rest $himself. Due to an unexpected change in the slaves' schedules, though, $he's all alone today. Poor
<</if>>
$activeSlave.slaveName is left as a helpless,
<<if $activeSlave.bellyImplant >= 100000>>
	limbless, _belly womb.
<<elseif $activeSlave.bellyFluid >= 100000>>
	limbless, _belly balloon.
<<elseif $activeSlave.bellyPreg >= 10000>>
	limbless, heavily pregnant torso.
<<elseif $activeSlave.bellyImplant >= 10000>>
	limbless, nearly spherical torso.
<<elseif $activeSlave.bellyFluid >= 10000>>
	limbless, <<print $activeSlave.inflationType>>-balloon.
<<else>>
	limbless torso.
<</if>>

<<case "orchiectomy please">>

Near the end of <<= App.UI.slaveDescriptionDialog($activeSlave)>>'s weekly inspection, it's obvious the $desc is nerving $himself to ask you something. <<if $activeSlave.devotion > 20>>$He's been good recently<<else>>$He went through the nude inspection obediently<</if>>, so you save $him further torment and order $him to ask $his question. It's a command, but you issue it in a tone meant to assuage $his nervousness. It works, and after two false starts, $he gathers $his courage and politely asks you to cut $his balls off.
<br><br>
$He doesn't phrase it quite like that, of course.
<<if !canTalk($activeSlave)>>
	$He uses careful gestures to explain $himself in detail. $He expresses acceptance of $his status as a sex slave, and states that $he's become used to impotence. $He's suffering from moodiness, however, and has <<if canHear($activeSlave)>>heard rumors<<else>>learned<</if>> from other slaves that this might be because of the hormonal suppression necessary to allow $his hormone treatments to work despite $his natural hormones. $He asks for an orchiectomy, if it will help stabilize $his emotional state.
<<else>>
	"<<Master>>, may I plea<<s>>e have an orchiectomy?" $he <<say>>s, and then gestures at $his limp dick. "I'm, um, impotent, and <<s>>in<<c>>e I'm on hormone<<s>>, I've, um, kind of gotten u<<s>>ed to being that way. I get really <<s>>ad randomly, though. And <<s>>ome of the other girl<<s>> <<s>>ay that it'<<s>> the hormone<<s>> and, um, my hormone<<s>> cla<<sh>>ing." $He squares $his shoulders. "I under<<s>>tand that I'm a <<s>>e<<x>> <<s>>lave. I a<<cc>>ept it. May I plea<<s>>e have that <<s>>urgery, <<Master>>, if it'll make me le<<ss>> moody?"
<</if>>

<<case "mean girls">>

<<setLocalPronouns _newSlaves[0] 2>>
<<setLocalPronouns _newSlaves[1] 3>>

One evening, $assistant.name breaks in on your
<<if $assistant.personality > 0>>
	work, _hisA $assistant.appearance avatar looking uncharacteristically somber. "<<= properMaster()>>," _heA says, "a group of tourists are giving <<= App.UI.slaveDescriptionDialog($activeSlave)>> a bad time." Before you can ask why the security drones haven't addressed the situation, _heA continues, "They're not abusing $him physically or anything. But, look." _HeA
<<else>>
	work, announcing that a group of visitors to the arcology are being verbally abusive to <<= App.UI.slaveDescriptionDialog($activeSlave)>>. Before you can ask why _heA's bothering you with this, _heA continues, "An enslavement opportunity may exist," and
<</if>>
brings up a video feed.
<br><br>
$activeSlave.slaveName is doing $his job, standing in an area of the arcology that's busy at this time of night, <<if $activeSlave.energy > 95>>eagerly<<elseif $activeSlave.devotion > 95>>diligently<<elseif $activeSlave.devotion > 20>>obediently<<else>>reluctantly<</if>> showing off $his
<<if $activeSlave.clothes == "no clothing">>
	nude <<if $activeSlave.bellyPreg >= 1500>>pregnant <<elseif $activeSlave.bellyImplant >= 1500>>gravid <<elseif $activeSlave.bellyFluid >= 1500>>bloated <</if>>body
<<else>>
	<<if $activeSlave.bellyPreg >= 1500>>pregnant <<elseif $activeSlave.bellyImplant >= 1500>>gravid <<elseif $activeSlave.bellyFluid >= 1500>>bloated <</if>>body in $his
	<<switch $activeSlave.clothes>>
	<<case "a toga">>
		toga
	<<case "a huipil">>
		huipil
	<<case "a long qipao" "a slutty qipao">>
		qipao
	<<case "a penitent nuns habit">>
		habit
	<<case "a slave gown" "a ball gown">>
		gown
	<<case "a comfortable bodysuit">>
		bodysuit
	<<case "a leotard">>
		leotard
	<<case "a bunny outfit">>
		bunny outfit
	<<case "a nice nurse outfit">>
		nurse outfit
	<<case "a slutty nurse outfit">>
		slutty nurse outfit
	<<case "a schoolgirl outfit">>
		school clothes
	<<case "a hijab and abaya">>
		hijab and abaya
	<<case "a kimono">>
		kimono
	<<case "a nice maid outfit">>
		maid outfit
	<<case "a slutty maid outfit">>
		skimpy maid outfit
	<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
		dress
	<<case "a latex catsuit">>
		latex catsuit
	<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
		uniform
	<<case "battlearmor">>
		battlearmor
	<<case "Imperial Plate">>
		imperial armor
	<<case "lederhosen">>
		lederhosen
	<<case "spats and a tank top">>
		spats
	<<case "a burkini" "a monokini">>
		swimsuit
	<<case "a chattel habit" "a fallen nuns habit">>
		slutty habit
	<<case "a cheerleader outfit">>
		cheerleader outfit
	<<case "a cybersuit">>
		cybersuit
	<<case "a tight Imperial bodysuit">>
		imperial bodysuit
	<<case "an apron">>
		apron
	<<case "a scalemail bikini">>
		scalemail bikini
	<<case "a slutty outfit">>
		slutty outfit
	<<case "a string bikini">>
		string bikini
	<<case "a succubus outfit">>
		succubus getup
	<<case "a hijab and blouse" "conservative clothing">>
		conservative clothes
	<<case "a bimbo outfit">>
		bimbo outfit
	<<case "a courtesan dress">>
		courtesan dress
	<<default>>
		$activeSlave.clothes
	<</switch>>
<</if>>
and flirting with passersby. Or $he would be, if $he weren't surrounded by a hostile group of girls. They're very obviously inebriated, rich, vapid, and on vacation, and their rapid-fire bitchiness makes the cause clear.
<br><br>
<<run Enunciate(_newSlaves[2])>>
"Why the fuck did you <<s>>ay that <<sh>>it? We're not le<<s>>bian<<s>>," says one.
<br><br>
<<run Enunciate(_newSlaves[1])>>
"You're fucking //gro<<ss>>//," says another. "Like, ew. Even if it'<<s>> free, why the fuck would we let you touch u<<s>>?"
<br><br>
<<run Enunciate(_newSlaves[0])>>
<<setSpokenLocalPronouns $activeSlave _newSlaves[0]>>
<<if $activeSlave.bellyPreg >= 750000>>
	"Holy <<sh>>it, <<he>>'<<s>> gonna blow! Bitch'll keep fucking till <<his>> belly pop<<s>> open and keep on fucking <<s>>till,"
<<elseif $activeSlave.belly >= 750000>>
	"That belly i<<s>> di<<s>>gu<<s>>ting, what did <<he>> do? Fuck an elephant?"
<<elseif $activeSlave.boobs > 25000>>
	"Tho<<s>>e boob<<s>> are di<<s>>gu<<s>>ting; look at $him <<s>>truggle,"
<<elseif $activeSlave.bellyPreg >= 450000>>
	"What a <<s>>lut! I bet everyone in the arcology ha<<s>> a baby in $him,"
<<elseif $activeSlave.belly >= 450000>>
	"That belly i<<s>> di<<s>>gu<<s>>ting; what i<<s>> that, a hor<<s>>e?"
<<elseif $activeSlave.weight > 190>>
	"I've never <<s>>een <<s>>omeone //that// fat before. How can you live with your<<s>>elf knowing you're such a whale?"
<<elseif $activeSlave.butt > 10>>
	"That a<<ss>> i<<s>> di<<s>>gu<<s>>ting; look how fat it i<<s>>,"
<<elseif $activeSlave.bellyFluid >= 5000>>
	"Look at that belly! Wait, i<<s>> it ju<<s>>t me or i<<s>> it wobbling? Holy <<sh>>it! <<He>> mu<<s>>t have <<s>>ucked down, like, gallon<<s>> of cum,"
<<elseif $activeSlave.clit >= 3>>
	"Holy <<sh>>it! That'<<s>> no dick; it'<<s>> some <<s>>ort of freak clit,"
<<elseif $activeSlave.boobs > 5000>>
	"Tho<<s>>e boob<<s>> are di<<s>>gu<<s>>ting,"
<<elseif $activeSlave.belly >= 150000>>
	"Oh my god, I didn't know a $girl could get //that// pregnant,"
<<elseif $activeSlave.dick > 6>>
	"That dick i<<s>> <<s>>o di<<s>>gu<<s>>ting,"
<<elseif $activeSlave.weight > 130>>
	"What a cow; how can you be <<s>>o proud of being <<s>>uch a fat <<s>>lob?"
<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>
	"<<He>> look<<s>> retarded,"
<<elseif $activeSlave.lips > 40>>
	"Tho<<s>>e lip<<s>> make $him look like a cartoon,"
<<elseif $activeSlave.belly >= 1500>>
	"Look at that belly; bet $he doe<<s>>n't even know who<<s>>e it i<<s>>,"
<<elseif $activeSlave.dick > 3>>
	"I bet <<he>> never get<<s>> to <<s>>tick that thing in anyone,"
<<elseif $activeSlave.anus > 2>>
	"Holy <<sh>>it, I can <<s>>ee <<his>> a<<ss>>hole from here,"
<<elseif $activeSlave.dick > 0>>
	"Oh, look, <<he>> ha<<s>> a lame little dick,"
<<elseif $activeSlave.visualAge > 30>>
	"What an ugly old <<s>>lut,"
<<elseif $activeSlave.weight > 30>>
	"What a fat pig, <<sh>>owing off <<his>> belly like that,"
<<elseif $activeSlave.face < 10>>
	"What a fugly <<s>>lut,"
<<else>>
	"What a dirty <<s>>lut,"
<</if>>
says a third. "No wonder people won't pay to have <<s>>e<<x>> with you. I bet your Ma<<s>>ter put you out here becau<<s>>e he hate<<s>> you."

<<case "torpedo squeeze">>

The penthouse bathroom has a long counter and mirror arrangement with many sinks, so a number of slaves can get ready at once. During those moments of the day when <<if $slaves.length > 10>>many<<else>>more than one<</if>> of them have just been awoken and showered and are hurrying to prettify themselves, this row of sinks presents one of the nicer sights in the arcology, a neatly spaced line of slave butts and a matching line of breasts reflected in the mirror. <<= App.UI.slaveDescriptionDialog($activeSlave)>> is especially impressive. $His <<if $activeSlave.boobs > 4000>>monstrous<<elseif $activeSlave.boobs > 2000>>huge<<else>>big<</if>> torpedo-shaped tits stick out a long way when $he's standing upright in the nude like this.
<br><br>
With $his
<<if $activeSlave.belly >= 100000>>
	<<if $activeSlave.bellyPreg >= 1500>>
		_belly pregnant
	<<else>>
		_belly
	<</if>>
	belly
<<elseif $activeSlave.weight > 130>>
	fat belly
<<elseif $activeSlave.belly >= 10000>>
	<<if $activeSlave.bellyFluid >= 10000>>
		<<print $activeSlave.inflationType>>-stuffed
	<<elseif $activeSlave.bellyPreg >= 1500>>
		enormously pregnant
	<<else>>
		enormously distended
	<</if>>
	belly
<<elseif $activeSlave.weight > 30>>
	soft belly
<<elseif $activeSlave.belly >= 1500>>
	<<if $activeSlave.bellyFluid >= 1500>>
		<<print $activeSlave.inflationType>>-filled
	<<elseif $activeSlave.bellyPreg >= 1500>>
		pregnant
	<<else>>
		implant rounded
	<</if>>
	belly
<<elseif $activeSlave.muscles > 30>>
	ripped abs
<<elseif $activeSlave.muscles > 5>>
	toned stomach
<<else>>
	middle
<</if>>
against the edge of the counter as $he leans forward a little to <<if $activeSlave.makeup != 0>>finish $his makeup<<else>>apply lotion to $his face<</if>>, $his $activeSlave.nipples nipples are <<if $activeSlave.boobs > 6000>>pressed against the mirror<<elseif $activeSlave.boobs > 4000>>almost brushing the mirror<<elseif $activeSlave.boobs > 2000>>halfway to the mirror<<else>>over the sink<</if>>. $He's concentrating on $his task, and every little motion of $his arm<<if hasBothArms($activeSlave)>>s<</if>> makes $his spectacularly pointed breasts sway a little.

<<case "subjugation blues">>

It's been <<print $week-$activeSlave.weekAcquired>> week<<if $week-$activeSlave.weekAcquired > 1>>s<</if>> since you acquired <<= App.UI.slaveDescriptionDialog($activeSlave)>> as your slave. Since then $he has been nothing but trouble. $He has been ungrateful, rebellious and particularly hateful toward you since you acquired $him. $He often needs to be confined or forced to perform $his assignments, and has little regard for your power or authority. You bring $him in for inspection and $he whines and squirms in resistance as you feel up $his $activeSlave.nipples nipples<<if $activeSlave.belly >= 5000>>, rub $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<elseif $activeSlave.bellyPreg >= 150>>, feel the curve of $his new pregnancy<</if>>, and grope $his <<if $activeSlave.butt < 2>>narrow <<elseif $activeSlave.butt < 5>>average <<elseif $activeSlave.butt < 8>>plump <<else>>impressive <</if>>butt, coldly appraising $his potential worth as a sexual service provider. <<if $activeSlave.actualAge < 21>>$He is very young, only $activeSlave.actualAge years old, and is still very naïve. $His smooth, $activeSlave.skin skin has yet to experience the hard years of relentless sexual abuse that lie ahead of $him.<<else>>At $activeSlave.actualAge years old, $he should know by now how the world works, but some slaves are just too stubborn for their own good.<</if>> Eventually, of course, even the most headstrong <<print $girl>>s will bend to your will, but the unique social mores of your arcology and the wonders of modern surgical technology offer a prime opportunity to make a potent example of this <<if $activeSlave.actualAge < 21>>young <<else>>obstinate <</if>>slut. $He is $activeSlave.race, and therefore not considered racially inferior or subject to extreme inequities or neglect, but like most slave characteristics, that can change.

<<case "transition anxiety">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> stumbles into your office naked for $his weekly inspection, so apprehensive that $he can hardly walk. $He's been like this ever since $he became one of your sex slaves, <<if $week-$activeSlave.weekAcquired == 0>>just this week<<elseif $week-$activeSlave.weekAcquired == 1>>just last week<<else>><<print $week-$activeSlave.weekAcquired>> weeks ago<</if>>. It's not surprising; slaves like $him usually require some time and training to accept that they're slavegirls. $He lacks the natural attraction to men that might have made the idea more comfortable for $him, and the resulting sexual anxiety combined with understandable fear of sexual use makes $him extremely unhappy to be naked in front of someone $he knows can fuck $him at will.
<br><br>
$He has $his hands balled into fists at $his sides, and clearly wants nothing more than to use them to cover $his
<<if ($activeSlave.chastityPenis == 1)>>
	pitiful caged dick.
<<elseif $activeSlave.balls == 0>>
	pathetic, ballsless bitchclit.
<<elseif $activeSlave.aphrodisiacs > 0 || $activeSlave.inflationType == "aphrodisiac">>
	aphrodisiac-induced erection.
<<elseif $activeSlave.dick > 3>>
	impressively sized but pathetically soft dick.
<<else>>
	soft, pathetic little dick.
<</if>>
$He knows that that's not allowed, and keeps $his hands where they are, though it's a struggle. $He <<if canSee($activeSlave)>>sees you looking at<<else>>knows you are eyeing<</if>> $his body like a slaveowner looks at one of _hisP sex slaves, and $he shivers.

<<case "breast expansion blues">>

During $his routine weekly inspection, <<= App.UI.slaveDescriptionDialog($activeSlave)>> cradles $his huge breasts with $his arm<<if hasBothArms($activeSlave)>>s<</if>> whenever the maneuvers of being inspected allow $him to do so. It's not an unusual gesture for a $desc on breast growth drugs, since slaves whose tits are expanding are, by definition, not used to their weight yet. But $activeSlave.slaveName is more than just uncomfortable. $He seems to regard $his weighty mammaries with distaste. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>$He's not stupid, and quickly realizes<<else>>$He's an idiot, but $he's not dumb enough to completely miss<</if>> that you've noticed $his feelings about $his boobs. $He bites $his lower lip, not sure if $he should say anything, so you follow your usual policy during slave inspections and ask $him about it. <<if $PC.skill.slaving >= 100>>If you learned one thing from your long career of slave training, it's that it's<<else>>It's<</if>> typically best to suss these things out.
<br><br>
"<<Master>>," $he mumbles, "can I plea<<s>>e be taken off the brea<<s>>t e<<x>>pan<<s>>ion drug<<s>>?" $He swallows, nervous that $he's crossed a line, but $he presses on, hefting $his tits a little higher to show $he's talking about them. "They're <<s>>o heavy and awkward. I'm <<s>>ore every night, and my back hurt<<s>>. I feel like a cow with boob<<s>> thi<<s>> big, and I can't imagine what it'll be like if they get any bigger."
In one sense, it's amusing that $he feels that way, because<<if ($arcologies[0].FSAssetExpansionist != "unset") || ($arcologies[0].FSTransformationFetishist != "unset" && $arcologies[0].FSSlimnessEnthusiast == "unset") || ($arcologies[0].FSPastoralist != "unset")>> as many slaves in this very arcology know quite well,<</if>> it's possible for the miracles of modern medicine to grow a $desc's tits until they're so heavy they immobilize $him completely.
<<if $activeSlave.muscles > 5>>$He has the muscles to carry $his boobs around, so some of this may be simple whining.<<else>>It's not surprising that $his breasts would be uncomfortable, since $he lacks anything in the way of muscle tone to help support them.<</if>>
<<if $activeSlave.lactation > 0>>$He complained of feeling like a cow without detectable irony, despite the fact that $his left nipple has a <<if $activeSlave.nipples != "fuckable">>droplet of cream clinging to<<else>>rivulet of cream running from<</if>> it right now<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2.66>>$He complained of feeling like a cow without detectable irony, despite the fact that $he is pregnant and likely to begin lactating soon<</if>>.
$He waits anxiously for your response, wondering if $he'll be punished for expressing reservations about your expansion of $his breasts and, comically, still cradling $his heavy udders as $he does so.

<<case "gaped asshole">>

You encounter <<= App.UI.slaveDescriptionDialog($activeSlave)>> at the beginning of $his day, as $he finishes $his morning ablutions and heads off to <<if $activeSlave.clothes != "no clothing">>get dressed<<else>>$his assignment, since $he's not allowed clothes and therefore doesn't need to dress<</if>>. $He seems happy today, and $his $activeSlave.skin body glows with warmth and cleanliness from the hot shower. When $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> you, $he greets you properly, yet positively, smiling at you and <<if $activeSlave.boobs > 3000>>presenting $his enormous breasts<<elseif $activeSlave.lips > 70>>pursing $his huge lips<<elseif $activeSlave.boobs > 800>>bouncing $his big breasts<<elseif $activeSlave.lips > 20>>pursing $his pretty lips<<else>>sticking out $his chest<</if>> in an automatic gesture of easy sexual availability. Suddenly, $he remembers something, and looks thoughtful. Since $he's so trusting, $he asks you the question that just occurred to $him.
<br><br>
"<<Master>>," $he <<say>>s, "may I have my a<<ss>>hole tightened?"
<br><br>
There's no trace of awareness on $his face of the open lewdness of the question;
<<if $activeSlave.career == "a bioreactor">>
	$he's spent time in an industrial Dairy with a phallus the size of a horse's pounding $his ass day and night.
<<elseif $activeSlave.career == "a dairy cow">>
	$he used to be a mindless cow, bred daily by equally mindless bulls. The massively hung beasts would frequently miss their mark and end up roughly fucking $his asshole.
<<elseif ($activeSlave.career == "a slave") || ($week-$activeSlave.weekAcquired > 50)>>
	$he's been a sex slave so long that $he's completely internalized the idea of $his ass being a sex organ.
<<elseif $activeSlave.counter.anal > 2000>>
	$he's had $his ass fucked so many times that $he thinks of it as an inherently sexy thing.
<<else>>
	$he's so devoted to you that $he's made a conscious effort to think of $his ass as sexy.
<</if>>
$He continues in $his <<if $activeSlave.voice == 1>>deep<<elseif $activeSlave.voice == 2>>soft<<else>>bubblegum bimbo's<</if>> voice, <<say>>ing, "It'<<s>> not //bad.// It'<<s>> ea<<s>>y to take anything up it. And when I walk I can feel my anal <<s>>lit sort of working around back there, which is kind of fun. But I wa<<s>> just thinking, a<<s>> I was washing my a<<ss>>pu<<ss>>y. It'd be ni<<c>>e
<<switch $activeSlave.fetish>>
<<case "submissive">>
	to feel ju<<s>>t a little afraid when I'm on my fa<<c>>e and about to get fucked.
<<case "cumslut">>
	to be able to keep load<<s>> of cum in my a<<ss>> for later, in<<s>>tead of having them ju<<s>>t drip right out.
<<case "buttslut">>
	to be able to feel a little more <<s>>en<<s>>ation back there again. Butt<<s>>e<<x>> is <<s>>till fun and ab<<s>>olutely my favorite thing, but I remember it being even better.
<<case "masochist">>
	if I could feel anal pain again. That burning feeling u<<s>>ed to be one of my favorite<<s>>.
<<default>>
	to be able to be a better anal lover. I do my be<<s>>t, but I can't <<s>>queeze very well any more.
<</switch>>
May I?" $He spins, <<if $activeSlave.belly >= 5000>>spreading $his legs for $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly while <</if>>bending at the waist<<if $activeSlave.butt > 6>> and prising $his monstrous buttocks apart<<elseif $activeSlave.butt > 3>> spreading $his healthy buttocks<</if>> to reveal $his gaping anus. It could indeed benefit from surgical repair.

<<case "ara ara">>

Passing by the kitchen in the morning, you take a moment to listen to the low hum of your slaves chatting as they <<if $feeder != 0>>wait their turn at the phallic feeders<<else>>drink their breakfasts<</if>>. <<= App.UI.slaveDescriptionDialog($activeSlave)>> is nearest the door, and you overhear $his <<if $activeSlave.voice == 1>>low<<elseif $activeSlave.voice == 2>>pretty<<else>>high<</if>> voice clearly as $he expresses confusion to another slave. "I don't under<<s>>tand it," $he <<say>>s. "Why are <<s>>o many men intere<<s>>ted in an old <<s>>lave like me? I never got thi<<s>> much attention when I wa<<s>> free! Now <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>guy<<s>> line up to pay<<else>>every guy I approach want<<s>><</if>> to fuck me!"
<br><br>
<<if $arcologies[0].FSMaturityPreferentialist != "unset">>
	"It's different here," the other slave explains. "Almost everyone here has a thing for older $women. MILFs get all the attention."
<<elseif ($arcologies[0].FSGenderRadicalist != "unset") && (($activeSlave.dick > 0) || ($activeSlave.vagina == -1))>>
	<<if $activeSlave.vagina > -1>>
		"Well, you're a futa," the other slave explains. "A chick with a dick. Everyone here is going to want to fuck you, since you've got both."
	<<elseif $activeSlave.balls > 0>>
		"Well, I bet you cum when they fuck you," the other slave explains. "They love it when you do that here."
	<<elseif $activeSlave.dick == 0>>
		"You've got nothing in front," the other slave explains. "That's like an advertisement that your ass is public, here."
	<<else>>
		"You've got a soft girldick," the other slave explains. "That's like an advertisement that you love it up the butt, here."
	<</if>>
<<elseif ($arcologies[0].FSAssetExpansionist != "unset") && ($activeSlave.boobs > 4000)>>
	"It's your boobs," the other slave explains. "There's no such thing as too big, here. Everyone who sees your boobs here is going to want to fuck you."
<<elseif ($arcologies[0].FSAssetExpansionist != "unset") && ($activeSlave.butt > 7)>>
	"It's your ass," the other slave explains. "There's no such thing as too big, here. Everyone who sees your ass here is going to want to fuck you."
<<elseif ($arcologies[0].FSRepopulationFocus != "unset") && $activeSlave.belly >= 5000>>
	"It's your belly," the other slave explains. "They love how big and round it is. If you look pregnant, they'll be all over you. Even if it's fake, they won't care."
<<elseif $arcologies[0].FSRepopulationFocusPregPolicy == 1 && $activeSlave.bellyPreg >= 5000>>
	"It's your belly," the other slave explains. "Preggos are in these days and you aren't exactly lacking in the 'with child' department."
<<elseif ($arcologies[0].FSPastoralist != "unset") && ($activeSlave.boobs >= 800) && ($activeSlave.lactation > 0) && ($activeSlave.lactationAdaptation > 50)>>
	"It's those plump, milky titties you have," the other slave explains. "Everyone here is thirsty for a motherly body like yours, in more ways than one."
<<elseif ($arcologies[0].FSTransformationFetishist != "unset") && ($activeSlave.boobsImplant/$activeSlave.boobs) >= .50>>
	"It's your fake tits," the other slave explains. "They love how fake they look, here. If you look like a bimbo, they don't care if you're a little mature."
<<elseif ($arcologies[0].FSHedonisticDecadence != "unset") && ($activeSlave.weight > 95)>>
	"You're so fat," the other slave explains. "Everyone here loves thick <<= $girl>>s. They don't care that you're a little mature; that just means you understand life's pleasures more."
<<elseif ($arcologies[0].FSPhysicalIdealist != "unset") && ($activeSlave.muscles > 50)>>
	"It's how ripped you are," the other slave explains. "It promises you won't give out after one fuck, no matter how old you are."
<<elseif ($arcologies[0].FSSlimnessEnthusiast != "unset") && ($activeSlave.boobs < 800) && ($activeSlave.butt < 3)>>
	"You're so slim," the other slave explains. "Everyone here loves slender <<= $girl>>s. They don't care that you're a little mature; they think you're hot."
<<elseif ($arcologies[0].FSStatuesqueGlorification != "unset") && heightPass($activeSlave)>>
	"You're really fucking tall," the other slave explains. "Guys here love a $girl that tower over them and you're, like, the definition of tall."
<<elseif ($arcologies[0].FSPetiteAdmiration != "unset") && heightPass($activeSlave)>>
	"You're so small," the other slave explains. "A guy can just scoop you up and carry you off for a good time."
<<elseif ($arcologies[0].FSBodyPurist != "unset") && ($activeSlave.boobsImplant == 0) && ($activeSlave.health.condition > 50)>>
	"It's how healthy you are, and your natural boobs," the other slave explains. "You look good and natural, and everyone likes that here, especially if you're mature."
<<elseif ($arcologies[0].FSIntellectualDependency != "unset") && bimboScore($activeSlave) >= 6>>
	"You're so hot," the other slave explains. "Guys love a $girl who knows a good time and your body screams 'ravish me'."
<<elseif $activeSlave.face > 95>>
	"It might have something to do with how incredibly beautiful you are," the other slave explains sarcastically. "Come on, you could be a model. Of course they want you."
<<elseif $activeSlave.boobs > 4000>>
	"It might have something to do with the fact that your tits are bigger than your head," the other slave explains sarcastically. "You look like a teenager's wet dream."
<<elseif $activeSlave.butt > 7>>
	"It might have something to do with that outrageous caboose you have," the other slave explains sarcastically. "You look like an ass man's wet dream."
<<elseif $activeSlave.face > 10>>
	"You're very pretty," the other slave explains reassuringly. "Come on, you are. It's not surprising that guys want you."
<<else>>
	"Is it really that surprising?" the other slave asks rhetorically. "Guys like sex. You're sex. Why shouldn't they like you? I bet fucking you feels great."
<</if>>
There's a pause, and then the other slave continues in a more serious tone, asking, "You're not, like, unhappy with that, are you? It's really good for a slave to be in demand, you know."
<br><br>
"Oh no, I didn't mean it like that," replies $activeSlave.slaveName hurriedly.
<<if $activeSlave.energy > 80>>
	"I'm <<s>>o horny all the time, it'<<s>> good. I'd probably go crazy if I didn't get that much attention. Whenever anyone'<<s>> done with me I can't wait for the ne<<x>>t.
<<elseif $activeSlave.fetish == "humiliation">>
	"It's embarra<<ss>>ing, but I, um, really like being <<s>>o popular in public, um, like that. Where everyone can <<s>>ee.
<<elseif $activeSlave.devotion > 50>>
	"I really want to do well, and it feel<<s>> good that I'm able to help.
<<elseif $activeSlave.devotion > 20>>
	"I, um, know I have to. And it'<<s>> not bad, I mean, it'<<s>> okay.
<<else>>
	"I know it mean<<s>> I'm worth <<s>>omething. It'<<s>> rea<<ss>>uring, and I remind my<<s>>elf of it whenever I get <<s>>cared about being a <<s>>lave, you know.
<</if>>
I didn't mean to <<s>>ound con<<c>>eited, either. I gue<<ss>> I'm <<s>>till getting u<<s>>ed to life here, that'<<s>> all. <<S>>ometime<<s>> I think like I'm not, um, here, and I'm <<s>>urpri<<s>>ed <<s>>o many people want me. It'<<s>> kind of ni<<c>>e, actually," $he <<say>>s with some self-confidence.
<<if $activeSlave.fetish == "humiliation" && $activeSlave.fetishKnown == 0>>
	It sounds like $he has a @@.lightsalmon;humiliation fetish!@@
	<<set $activeSlave.fetishKnown = 1>>
<</if>>

<<case "arcade sadist">>

You happen to come across <<= App.UI.slaveDescriptionDialog($activeSlave)>> during one of $his rest periods. $He's lying on a couch in the slave areas, <<if canSee($activeSlave)>>staring at the ceiling above $him<<else>>leaning back<</if>> with a dreamy expression on $his face. $He's <<if $activeSlave.rules.release.masturbation == 1>>touching $himself idly.<<else>>not allowed to touch $himself, but $he's extremely aroused.<</if>> Whatever's on $his mind, it's so absorbing that $he doesn't realize you're there until you're standing over $him.
<br><br>
"<<S>>orry, <<Master>>," $he <<say>>s apologetically, <<if $activeSlave.belly >= 10000>>struggling<<else>>scrambling<</if>> to $his feet. "I didn't noti<<c>>e you there." <<if canSee($activeSlave)>>Seeing your questioning look<<elseif canHear($activeSlave)>>Hearing your lack of response<<else>>Sensing a request to continue<</if>>, $he explains $himself further. "I was ju<<s>>t thinking about, um, my favorite pla<<c>>e. I can almo<<s>>t get off ju<<s>>t by thinking about it." There's a wild, perverted gleam <<if canSee($activeSlave)>>in $his <<= App.Desc.eyesColor($activeSlave)>><<else>>on $his face<</if>>. $He's a confirmed sadist, so whatever $his favorite mental masturbation is probably quite strong.

<<case "servant maid">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> is scheduled to clean your office today, just one of $his many duties as a servant in your penthouse. $He pauses in the doorway of your office for a moment, only entering once it becomes clear that you're not going to be using $him immediately.
<br><br>
$He begins $his cleaning dutifully, fluttering about your office in a flurry of scrubbing and dusting. $His almost frenzied sanitization of your office allows you ample opportunity to inspect $him, your eyes lingering on $his body as $he moves back and forth in front of you.
<<if ($activeSlave.clothes == "a slutty maid outfit")>>
	$His maid uniform does little to conceal $his form from prying eyes, with a thin white blouse all that separates the surfaces of $his breasts from the air. The associated skirt is similarly superficial, made more for easy access to a slave's holes than for provision of any sort of modesty.
	<<if getLimbCount($activeSlave, 102) > 2>>
		Although $his movements rarely stray from a slight flick of $his wrist as $he dusts some surface or a gyration of $his body as $he scrubs the floor clean, $his P-Limbs nonetheless produce a steady stream of minute machine noises. They give $him the coordination $he needs to purge even the smallest of stains, but the multitude of gyros, servos, and other mechanical pieces constantly working to maintain it ensure that the process is far from silent.
	<<elseif $activeSlave.belly >= 150000>>
		$His middle has become so enormous it's a miracle $he can even reach objects to clean them. It greatly complicates $his cleaning duties, often causing $him to attack any blemishes sideways lest $his _belly belly prevent $him from reaching the offending smudge at all. $He moves very carefully, not wanting to accidentally knock something to the floor and be forced to figure out how to return it to its proper place.
	<<elseif $activeSlave.boobs > 4000>>
		$His breasts are so massive that a whole ream of cloth is needed to provide even the semblance of covering $his massive chest. They do little to aid in $his cleaning duties, often causing $him to attack any blemish on the wall sideways lest $his gigantic boobs prevent $him from reaching the offending smudge at all.
	<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
		Despite $his pregnancy, $he manages to clean with surprising efficacy. $He often cradles $his gravid belly through $his sheer skirt as $he dusts or scrubs with one hand, conscious of the fragile life within $him even as $he works hard to cleanse your office of any unsightly blemishes.
	<<elseif $activeSlave.boobs > 800>>
		$His breasts are pleasingly large and appealingly visible despite the minor concealment provided by $his blouse. They often cause $him difficulty by mashing against the top surface of your desk as $he tries to duck beneath to clean the underside. The struggle is surprisingly erotic — if not without humor.
	<<elseif $activeSlave.muscles > 30>>
		With $his incredible musculature, $he's able to conduct a deep cleaning that few other slaves can match. Life as an arcology owner exposes you to a wealth of unique situations, but you doubt many of your peers have seen a slave in a slutty maid ensemble lift up a couch with one outstretched arm as they sweep the now exposed ground beneath it clean with the other.
	<<elseif $activeSlave.energy > 95>>
		Despite the mundanity of $his current duties, it's clear $he's holding back $his immense sex drive for the duration of $his cleaning.
		<<if $activeSlave.dick > 0>>
			<<if ($activeSlave.chastityPenis == 1)>>
				$His chastity cage is dribbling precum, visibly dripping onto the floor as $he goes.
			<<elseif canAchieveErection($activeSlave)>>
				$His cock is painfully erect, visible under $his flimsy skirt.
			<<else>>
				$His soft dick is dribbling precum, visibly dripping down $his legs.
			<</if>>
		<<elseif $activeSlave.vagina == -1>>
			$He's unconsciously presents $his bare bottom as $he scrubs the ground clean.
		<<else>>
			$His pussy is visibly soaked, ironically staining the flimsy skirt of $his uniform as $he cleans your office.
		<</if>>
	<</if>>
<<elseif ($activeSlave.clothes == "a nice maid outfit")>>
	$His maid uniform is fairly demure for a sex slave and makes some effort to conceal $his form from prying eyes, even whilst presenting an image of servitude and obedience that a classic maids' ensemble embodies so well. $His dress is fairly conservative, enveloping $his breasts in intricate lace and cloth. Likewise, $his apron is more than ornamental, $activeSlave.slaveName having stuffed it with cleaning materials and tools.
	<<if getLimbCount($activeSlave, 102) > 2>>
		Although $his movements rarely stray from a slight flick of $his wrist as $he dusts some surface or a gyration of $his body as $he scrubs the floor clean, $his P-Limbs nonetheless produce a steady stream of minute machine noises. They give $him the coordination $he needs to purge even the smallest of stains, but the multitude of gyros, servos, and other mechanical pieces constantly working to maintain it ensure that the process is far from silent.
	<<elseif $activeSlave.belly >= 150000>>
		$His middle has become so enormous it's a miracle $he can even reach objects to clean them. It greatly complicates $his cleaning duties, often causing $him to attack any blemishes sideways lest $his _belly belly prevent $him from reaching the offending smudge at all. $He moves very carefully, not wanting to accidentally knock something to the floor and be forced to figure out how to return it to its proper place.
	<<elseif $activeSlave.boobs > 4000>>
		$His breasts are so massive that several reams of cloth are needed to provide $his massive chest with any semblance of modesty. They do little to aid in $his cleaning duties, often causing $him to attack any blemish on the wall sideways lest $his gigantic boobs prevent $him from reaching the offending smudge at all.
	<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
		Despite $his pregnancy, $he manages to clean with surprising efficacy. $He often cradles $his gravid belly through $his thick apron as $he dusts or scrubs with one hand, conscious of the fragile life within $him even as $he works hard to cleanse your office of any unsightly blemishes.
	<<elseif $activeSlave.boobs > 800>>
		$His breasts are pleasingly large and appealingly visible, even beneath the folds and ruffles of $his dress. They often cause $him difficulty by mashing against the top surface of your desk as $he tries to duck beneath to clean the underside. The struggle is surprisingly erotic — if not without humor.
	<<elseif $activeSlave.muscles > 30>>
		With $his incredible musculature, $he's able to conduct a deep cleaning that few other slaves can match. Life as an arcology owner exposes you to a wealth of unique situations, but you doubt many of your peers have seen a slave in a modest maid ensemble lift up a couch with one outstretched arm as they sweep the now exposed ground beneath it clean with the other.
	<<elseif $activeSlave.energy > 95>>
		Despite the mundanity of $his current duties, it's clear $he's holding back $his immense sex drive for the duration of $his cleaning.
		<<if $activeSlave.dick > 0>>
			<<if ($activeSlave.chastityPenis == 1)>>
				$His chastity cage is dribbling precum, visibly dripping onto $his apron.
			<<elseif canAchieveErection($activeSlave)>>
				$His cock is painfully erect, poking through $his apron.
			<<else>>
				$His soft dick is dribbling precum, visibly dripping down $his legs.
			<</if>>
		<<elseif $activeSlave.vagina == -1>>
			$He's unconsciously presents $his bottom, though it remains covered by the length of $his apron, as $he scrubs the ground clean.
		<<else>>
			$His pussy is visibly soaked, ironically staining the once immaculate apron of $his uniform as $he cleans your office.
		<</if>>
	<</if>>
<</if>>
Eventually, $his duties satisfactorily completed, $he comes before your desk to beg your permission to continue $his servitude elsewhere in the penthouse.

<<case "young PC age difference">>

As another long week draws to a close, <<= App.UI.slaveDescriptionDialog($activeSlave)>> happens to <<if $activeSlave.belly >= 10000>>waddle<<else>>walk<</if>> past your office toward bed. There's nothing inherently abnormal about $his actions, but you do notice as $he steps past the doorway that an expression of worry and concern adorns $his $activeSlave.skin face. When you call $him into your office, $his face visibly brightens up in an attempt to conceal $his obvious distress as $he comes before you. Notably, although $he stands still and patiently awaits further orders, you notice $he <<if canSee($activeSlave)>>never manages to meet your eyes<<else>>keeps $his sightless eyes downcast<</if>>. When you ask $him what's troubling $him, $his face plainly falls.
<br><br>
<<if $PC.mother != $activeSlave.ID && $PC.father != $activeSlave.ID>>
	"<<Master>>, you're <<s>>o young," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "It'<<s>> ju<<s>>t that I'm old enough to be your $mother, <<Master>>. It'<<s>> a little weird, i<<s>>n't it?"
<<else>>
	"<<Master>>, you're <<s>>o <<if $PC.title == 1>>hand<<s>>ome<<else>>beautiful<</if>>," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "It'<<s>> ju<<s>>t that you've become <<s>>o attractive <<s>>in<<c>>e
	<<if $PC.mother == $activeSlave.ID>>
		I gave birth to you, I ju<<s>>t can't compete,
	<<else>>
		your mother gave birth to you, I ju<<s>>t can't compete, and I don't even come clo<<s>>e to her look<<s>>,
	<</if>>
	<<Master>>. It'<<s>> a little weird, i<<s>>n't it, for <<s>>uch an old $woman to be with gra<<c>>ed with <<s>>uch a lovely <<Master>>?"
<</if>>

<<case "old PC age difference">>

As another long week draws to a close, <<= App.UI.slaveDescriptionDialog($activeSlave)>> happens to walk past your office toward bed. There's nothing inherently abnormal about $his actions, but you do notice as $he steps past the doorway that an expression of worry and concern adorns $his $activeSlave.skin face. When you call $him into your office, $his face visibly brightens up in an attempt to conceal $his obvious distress as $he comes before you. Notably, although $he stands still and patiently awaits further orders, you notice $he <<if canSee($activeSlave)>>never manages to meet your eyes<<else>>keeps $his sightless eyes downcast<</if>>. When you ask $him what's troubling $him, $his face plainly falls.
<br><br>
<<if $activeSlave.mother != -1 && $activeSlave.father != -1>>
	<<setSpokenLocalPronouns $activeSlave $activeSlave>>
	"<<Master>>, you're <<s>>o old," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "It'<<s>> ju<<s>>t that I'm young enough to be your <<daughter>>, <<Master>>. It'<<s>> a little weird, i<<s>>n't it?"
<<else>>
	"<<Master>>, you're <<s>>o old," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "Compared to you, I'm nothing, <<Master>>. I feel <<s>>o inadequate and I don't want to
	<<if $activeSlave.mother == -1>>
		have been a wa<<s>>te of time for you. I'm <<s>>orry you had to carry me in<<s>>ide you for nine month<<s>>, and I'm <<s>>orry I <<s>>tretched you out when I wa<<s>> born,
	<<else>>
		be a di<<s>>appointment to you,
	<</if>>
	<<Master>>. I<<s>> it a little weird to feel thi<<s>> way?"
<</if>>


<<case "nice guys">>

One afternoon, $assistant.name informs you $he that $he has a non-urgent matter that you might be interested in overseeing personally.
<<if $assistant.personality > 0>>
	_HisA $assistant.appearance avatar looks unusually curious. "<<= properTitle()>>," _heA says, "a group of tourists have just entered the arcology. They seem strangely enthralled by <<= App.UI.slaveDescriptionDialog($activeSlave)>>." Before you can ask why _heA deemed this important enough news to draw your attention to, _heA continues, "They're not using $him or anything. Just look." _HeA
<<else>>
	It announces that a group of tourists have just entered the arcology, and seem unusually enthralled by <<= App.UI.slaveDescriptionDialog($activeSlave)>>. Before you can ask why _heA's bothering you with this, _heA continues, "A business opportunity may exist," and
<</if>>
brings up a video feed.
<br><br>
$activeSlave.slaveName is doing $his job, standing in an area of the arcology that's busy at this time of night, <<if $activeSlave.energy > 95>>eagerly<<elseif $activeSlave.devotion > 95>>diligently<<elseif $activeSlave.devotion > 20>>obediently<<else>>reluctantly<</if>> showing off $his
<<if $activeSlave.clothes == "no clothing">>
	nude <<if $activeSlave.bellyPreg >= 1500>>pregnant <<elseif $activeSlave.bellyImplant >= 1500>>gravid <<elseif $activeSlave.bellyFluid >= 1500>>bloated <</if>>body
<<else>>
	<<if $activeSlave.bellyPreg >= 1500>>pregnant <<elseif $activeSlave.bellyImplant >= 1500>>gravid <<elseif $activeSlave.bellyFluid >= 1500>>bloated <</if>>body in $his
	<<switch $activeSlave.clothes>>
	<<case "a toga">>
		toga
	<<case "a huipil">>
		huipil
	<<case "a long qipao" "a slutty qipao">>
		qipao
	<<case "a penitent nuns habit">>
		habit
	<<case "a slave gown" "a ball gown">>
		gown
	<<case "a comfortable bodysuit">>
		bodysuit
	<<case "a leotard">>
		leotard
	<<case "a bunny outfit">>
		bunny outfit
	<<case "a nice nurse outfit">>
		nurse outfit
	<<case "a slutty nurse outfit">>
		slutty nurse outfit
	<<case "a schoolgirl outfit">>
		school clothes
	<<case "a hijab and abaya">>
		hijab and abaya
	<<case "a kimono">>
		kimono
	<<case "a nice maid outfit">>
		maid outfit
	<<case "a slutty maid outfit">>
		skimpy maid outfit
	<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
		dress
	<<case "a latex catsuit">>
		latex catsuit
	<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
		uniform
	<<case "battlearmor">>
		battlearmor
	<<case "Imperial Plate">>
		imperial armor
	<<case "lederhosen">>
		lederhosen
	<<case "spats and a tank top">>
		spats
	<<case "a burkini" "a monokini">>
		swimsuit
	<<case "a chattel habit" "a fallen nuns habit">>
		slutty habit
	<<case "a cheerleader outfit">>
		cheerleader outfit
	<<case "a cybersuit">>
		cybersuit
	<<case "a tight Imperial bodysuit">>
		imperial bodysuit
	<<case "an apron">>
		apron
	<<case "a scalemail bikini">>
		scalemail bikini
	<<case "a slutty outfit">>
		slutty outfit
	<<case "a string bikini">>
		string bikini
	<<case "a succubus outfit">>
		succubus getup
	<<case "a hijab and blouse" "conservative clothing">>
		conservative clothes
	<<case "a bimbo outfit">>
		bimbo outfit
	<<case "a courtesan dress">>
		courtesan dress
	<<default>>
		$activeSlave.clothes
	<</switch>>
<</if>>
and flirting with passersby. Or $he would be, if $he weren't surrounded by a group of shame-faced college boys. They're very obviously rich, naïve, and inexperienced with both sex and the Free Cities, and their complete lack of confidence in approaching $activeSlave.slaveName make that clear.
<br><br>
"Can we just walk up to $him and ask $him out?" says one.
<br><br>
"Don't be //stupid,//" says another. "Like, look at $him, why would $he even touch any of us?<<if $pedo_mode == 0>><<if $activeSlave.visualAge < 12>> $He's just a little $girl, is that even legal<<elseif $activeSlave.visualAge < 16>> $He looks underage, is this a setup or something<</if>>?<</if>>"
<br><br>
<<if $activeSlave.bellyPreg >= 750000>>
	"$He looks like $he is going to burst, can't you see them pushing against $him? I bet $he'd love a soothing belly rub,"
<<elseif $activeSlave.belly >= 750000>>
	"$He looks like $he could be pregnant with one of us,"
<<elseif $activeSlave.boobs > 25000>>
	"Those boobs are almost as big as me,"
<<elseif $activeSlave.bellyPreg >= 450000>>
	"My god, $his belly is //huge//! I can almost see inside,"
<<elseif $activeSlave.belly >= 450000>>
	"My god, $his belly is //huge//! What's in $him?"
<<elseif $activeSlave.weight > 190>>
	"I've never seen someone //that// fat before. I wonder what is feels like to fuck a $girl like $him?"
<<elseif $activeSlave.butt > 10>>
	"Check out that ass, I bet you could sit on it,"
<<elseif $activeSlave.bellyFluid >= 5000>>
	"Look at the way $his belly is wobbling, it's kinda sexy,"
<<elseif $activeSlave.clit >= 3>>
	"I'm kinda embarrassed... $His clit is bigger than my dick,"
<<elseif $activeSlave.boobs > 5000>>
	"Those boobs are bigger than my head,"
<<elseif $activeSlave.belly >= 150000>>
	"Oh my god, I didn't know a $girl could get //that// pregnant,"
<<elseif $activeSlave.dick > 6>>
	"I didn't even know <<= $girl>>s could have dicks that big,"
<<elseif $activeSlave.weight > 130>>
	"$He looks so soft and pillowy,"
<<elseif $activeSlave.belly >= 1500>>
	"Look at that belly, I bet $he's pregnant,"
<<elseif $activeSlave.dick > 3>>
	"I wonder if $he could fuck someone with that dick,"
<<elseif $activeSlave.anus > 2>>
	"Holy shit, I can see $his asshole from here,"
<<elseif $activeSlave.dick > 0>>
	"Look, $he's got a cute little dick,"
<<elseif $activeSlave.visualAge > 35>>
	"$He looks like my mom, but hot,"
<<elseif $activeSlave.lips > 40>>
	"I didn't know <<= $girl>>s could have lips like that,"
<<elseif $activeSlave.face > 60>>
	"$He's just so gorgeous,"
<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
	"$He looks like $he's really clever,"
<<else>>
	"$He looks like $he's down to fuck,"
<</if>>
says a third, obviously smitten. "I'd give anything to have a night with $him."

<<case "desperate null">>

You're inspecting <<= App.UI.slaveDescriptionDialog($activeSlave)>>, and $he's an unhappy little null today. <<if $activeSlave.devotion > 50>>$He's devoted to you, so that's not the problem;<<elseif $activeSlave.devotion > 20>>$He accepts $his place, so that's not the problem;<<elseif $activeSlave.devotion >= -50>>$He's not being especially defiant right now;<<else>>It's not $his hatred of you;<</if>> it's that $he's experiencing extreme sexual frustration. It's not obvious, despite $his nakedness. $He has no
<<if $seeDicks != 0>>cock to get hard<</if>>
<<if $seeDicks != 100>><<if $seeDicks != 0>>or <</if>>pussy to get wet<</if>>
to advertise $his uncomfortable state. Most slaves have obvious visual cues like that to do their sexual begging for them, but not $him. All $he's got to show how pent up $he is is the stiffness of $his $activeSlave.nipples nipples, goosebumps all over $his areolae despite the warmth of your office, and a tiny bead of clear fluid at the little hole <<if $activeSlave.scrotum > 0>>above $his lonely, abandoned ballsack<<elseif $activeSlave.genes == "XX">>where $his pussy used to be<<else>>where the base of $his penis used to be<</if>>.
<<switch $activeSlave.assignment>>
<<case "whore" "serve the public" "work in the brothel" "serve in the club">>
	It's not like $his ass isn't sold to hundreds of different customers, but $he apparently isn't enough of a buttslut to get much sexual satisfaction from it.
<</switch>>
<br><br>
$He does $his very best to get through the inspection without disgrace, hugging $himself uncomfortably and shivering. You let $him suffer through it, deferring the delicious choice about how to take advantage of $his situation until the inspection is done. $He breaks before then, though, suddenly falling to $his knees and starting to cry. "Plea<<s>>e, <<Master>>," $he begs piteously. "Plea<<s>>e help me! I can't t-take it! It'<<s>> <<s>>-<<s>>o f-fucking f-fru<<s>>trating," $he moans, trailing off, clasping $his hands in supplication as $he <<if canSee($activeSlave)>>looks up at<<else>>faces<</if>> you desperately.

<<case "objectifying visit">>

At appropriate intervals during the day $assistant.name directs an unoccupied slave to visit your office to ensure all your needs are currently being met. With such a vague task set before them, the slaves who enter your domain in such a way often find themselves used in a multitude of refreshingly novel ways. At this particular moment, <<= App.UI.slaveDescriptionDialog($activeSlave)>> comes through the door of your office and obediently
<<if $activeSlave.belly >= 300000>>
	settles $himself
<<else>>
	kneels
<</if>>
beside your desk to await further orders. It occurs to you, gazing down at your obedient slave, that $he exists as little more than an object to meet your various needs. Perhaps you should treat $him as such.

<<case "implant inspection">>

<<= App.UI.slaveDescriptionDialog($activeSlave)>> comes before you naked for a routine inspection. You take particular care to examine $his implants; even a careful hand at the remote surgery has been known to produce unsightly scars, stretch marks, and the like. $His breasts are <<if $activeSlave.boobs < 1200>>large<<else>>massive<</if>>, but $his implants render them perky and rounded despite their size. An impossibility, had they been fully natural. Standing before you, $his breasts protrude outward from $his chest proudly and without sagging. As you inspect $him with your hands, $he
<<if $activeSlave.voice == 0>>
	breathes a little harder and looks like $he would speak, were $he not mute.
<<elseif $activeSlave.accent > 3>>
	breathes a little harder and looks like $he would speak, if $he knew how.
<<elseif $activeSlave.accent > 2>>
	breathes a little harder and <<say>>s something in a language you don't understand.
<<elseif !canTalk($activeSlave)>>
	breathes a little harder and gestures that it feels nice.
<<else>>
	<<if ($activeSlave.lips > 70)>>
		murmurs through $his huge lips,
	<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
		murmurs through $his piercings,
	<<else>>
		murmurs,
	<</if>>
	"That feel<<s>> really ni<<c>>e, <<Master>>."
<</if>>

<<case "gagged slave">>

You cross paths with <<= App.UI.slaveDescriptionDialog($activeSlave)>> as $he returns from $activeSlave.assignment after a long day. One of the things most readily apparent about $activeSlave.slaveName is the
<<if ($activeSlave.mouthAccessory == "ball gag")>>
	ball gag keeping $his mouth filled,
<<elseif ($activeSlave.mouthAccessory == "bit gag")>>
	cruel bit gag keeping $his jaw locked,
<<elseif ($activeSlave.mouthAccessory == "ring gag")>>
	cruel ring gag keeping $his mouth stretched open,
<<elseif ($activeSlave.mouthAccessory == "dildo gag")>>
	dildo gag filling $his mouth and throat,
<<elseif ($activeSlave.mouthAccessory == "massive dildo gag")>>
	dildo gag hugely distending $his throat,
<</if>>
the existence of which is a constant reminder to $him of $his submission to you and your immense power over $him.
<br><br>
Since $he cannot speak through $his gag, $he merely gestures $his recognition of your presence and lingers in case you wish to use $him. Though $he does $his best to avoid showing $his discomfort, it is clear from the expression on $his
<<if $activeSlave.face > 95>>
	gorgeous
<<elseif $activeSlave.face > 50>>
	beautiful
<<elseif $activeSlave.face >= 10>>
	pretty
<<elseif $activeSlave.face >= 0>>
	nice
<<else>>
	homely
<</if>>
face that the gag is a distressing addition to $his life. When you don't immediately give your assent one way or another, $he kneels before you out of
<<if $activeSlave.devotion > 50>>
	submission.
<<else>>
	fatigue after $his long day.
<</if>>
From $his new position beneath you, $he must crane $his neck so $his <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>><<else>>sightless eyes<</if>> may meet yours. With $his mouth gagged, $he is almost the perfect image of a submissive slave.

<<case "back stretch">>

You pass through your slaves' living area as some of them are starting their days. <<= App.UI.slaveDescriptionDialog($activeSlave)>> is one of them, and $he's just
<<if $activeSlave.rules.living == "spare">>
	crawled out of $his spartan bedroll.
<<elseif $activeSlave.rules.living == "normal">>
	gotten out of $his neat little cot.
<<elseif $activeSlave.relationship >= 4>>
	<<set _ress = $slaveIndices[$activeSlave.relationshipTarget]>>
	<<setLocalPronouns $slaves[_ress] 2>>
	climbed out of bed. ($activeSlave.slaveName's <<if $activeSlave.relationship == 5>>_wife2<<else>><<= _girl2>>friend<</if>>
	$slaves[_ress].slaveName is still asleep in it, and the shape of _his2
	<<if $slaves[_ress].belly >= 120000>>_belly belly is
	<<elseif $slaves[_ress].boobs > 25000>>immense <<if ($slaves[_ress].boobsImplant/$slaves[_ress].boobs) >= .60>>fake <</if>> breasts are
	<<elseif $slaves[_ress].dick > 10>>monster dick is
	<<elseif $slaves[_ress].balls > 50>>immense testicles are
	<<elseif $slaves[_ress].weight > 130>>gigantic body is
	<<elseif $slaves[_ress].butt > 12>>inhuman ass is
	<<elseif $slaves[_ress].weight > 130>>fat form is
	<<elseif $slaves[_ress].hips > 2>>inhuman hips are
	<<elseif $slaves[_ress].dick > 6>>huge soft cock is
	<<elseif canAchieveErection($slaves[_ress])>>half-erect dick is
	<<elseif $slaves[_ress].belly >= 5000>>big <<if $slaves[_ress].bellyPreg >= 3000>>pregnant <</if>>belly is
	<<elseif $slaves[_ress].nipples == "huge">>huge nipples are
	<<elseif $slaves[_ress].boobs > 5000>>monstrous <<if ($slaves[_ress].boobsImplant/$slaves[_ress].boobs) >= .60>>fake <</if>> breasts are
	<<elseif $slaves[_ress].boobs > 2000>>huge <<if ($slaves[_ress].boobsImplant/$slaves[_ress].boobs) >= .60>>fake <</if>> tits are
	<<elseif $slaves[_ress].butt > 5>>monstrous ass is
	<<elseif $slaves[_ress].balls > 8>>giant balls are
	<<elseif $slaves[_ress].weight > 95>>chubby body is
	<<elseif $slaves[_ress].muscles > 30>>muscular body is
	<<elseif $slaves[_ress].weight > 10>>chubby belly is
	<<elseif $slaves[_ress].weight >= -10>>feminine form is
	<<else>>thin body is
	<</if>>
	clearly visible under the sheet. They sleep naked, of course.)
<<else>>
	climbed out of $his comfortable bed.
<</if>>
It's time for $him to start another strenuous day of carrying the weight of $his
<<if $activeSlave.boobs > 45000>>
	arm-filling
<<elseif $activeSlave.boobs > 25000>>
	back-breaking
<<elseif $activeSlave.boobs > 10000>>
	disproportionate
<<elseif $activeSlave.boobs > 5000>>
	massive
<<else>>
	heavy
<</if>>
<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
	implants.
<<elseif $activeSlave.lactation>>
	milk-bearing udders.
<<elseif $activeSlave.boobsImplant > 0>>
	breasts.
<<else>>
	natural breasts.
<</if>>
$He can manage it
<<if $activeSlave.muscles <= 10>>
	only with difficulty, since $he's not in good shape.
<<elseif $activeSlave.physicalAge >= 18 && $activeSlave.boobs <= 30000+($activeSlave.muscles*100)>>
	with ease, since $he's in good shape.
<<elseif $activeSlave.physicalAge >= 13 && $activeSlave.boobs <= 20000+($activeSlave.muscles*50)>>
	with ease, since $he's in good shape.
<<elseif $activeSlave.physicalAge >= 4 && $activeSlave.boobs <= 10000+($activeSlave.muscles*20)>>
	with ease, since $he's in good shape.
<<elseif $activeSlave.physicalAge == 3 && $activeSlave.boobs <= 5000+($activeSlave.muscles*10)>>
	with ease, since $he's in good shape.
<<else>>
	with some difficulty, since they're so big.
<</if>>
Slaves with endowments like $hers are trained to stretch, and since $he's a good $desc, $he does it as soon as $he gets up. $He's doing it now.
<br><br>
$He kneels with $his legs together, and then sits back, $his
<<if $activeSlave.buttImplant/$activeSlave.butt >= .5>>
	fake ass not changing shape at all as it rests on $his heels.
<<elseif $activeSlave.butt > 12>>
	endless assflesh devouring $his legs completely.
<<elseif $activeSlave.butt > 6>>
	mass of assflesh extinguishing $his feet completely.
<<elseif $activeSlave.butt > 2>>
	big butt resting heavily on $his heels.
<<else>>
	cute butt resting lightly on $his heels.
<</if>>
Then $he reaches $his arm<<if hasBothArms($activeSlave)>>s<</if>> back, and leans back, as far as $he can go. $He arches $his spine, closing $his eyes voluptuously as $he enjoys the stretch in $his lower back. The pose thrusts $his chest up and out,
<<if $activeSlave.boobShape == "spherical">>
	but $his implants stretch $his skin so tight that they stay tacked to $his chest, right where they are. $He looks like a stereotypical silicone queen, arching $his back and sticking $his fake cans out.
<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .50>>
	making $his implant-filled tits stick out even farther than they usually do. $He looks like a stereotypical silicone queen, arching $his back and sticking $his fake cans out.
<<elseif $activeSlave.boobShape == "perky">>
	making $his spectacularly perky breasts point their $activeSlave.nipples nipples straight up at the ceiling. It's incredible, that they've managed to maintain their youthful shape despite their great weight.
<<elseif $activeSlave.boobShape == "downward-facing">>
	showing off the huge area of soft skin above $his $activeSlave.nipples nipples. Since these face somewhat downward, $his swell of bosom above them is a pair of uninterrupted mounds of $activeSlave.skin breast.
<<elseif $activeSlave.boobShape == "torpedo-shaped">>
	making $his absurd torpedo-shaped tits stick out even farther than they usually do. $His $activeSlave.nipples nipples point out so far that it's difficult to see how such delectably soft flesh can support its shape.
<<elseif $activeSlave.boobShape == "wide-set">>
	making $his wide-set breasts spread even farther, to hang almost to $his armpits on either side. It's not conventionally attractive, but $he's certainly very well endowed.
<<elseif $activeSlave.boobShape == "saggy">>
	emphasizing how saggy $his tits are. They <<if $activeSlave.belly >= 10000>>rest heavily atop $his tautly <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>distended<</if>> <<if $activeSlave.belly >= 1500>>_belly <</if>>belly<<else>>hang down far enough to obscure the top of $his _belly belly<</if>>. It's not conventionally attractive, but $he's certainly very well endowed.
<<else>>
	making $his beautiful breasts stick out nicely. They maintain their perfect shape surprisingly well for being so enormous, and $his $activeSlave.nipples nipples <<if $activeSlave.nipples != "fuckable">>stick out at you prominently<<else>>just beg to be penetrated<</if>>.
<</if>>
$He sits back up and rubs $his hands down
<<if $activeSlave.belly >= 300000>>
	the rear of $his swollen sides,
<<else>>
	$his lower back on either side,
<</if>>
sighing contentedly at the feeling. <<if canSee($activeSlave)>>$He opens $his eyes, and sees you looking at $him<<else>>$His ears perk up as $he notices your presence<</if>>.
<<if $activeSlave.energy > 80>>
	"Hi <<Master>>," $he <<say>>s flirtatiously, and hugs $himself under $his boobs, presenting them even more obviously. $His strong sex drive is awake, too. $He <<if canSee($activeSlave)>>watches at you speculatively<<elseif canHear($activeSlave)>>listens closely<<else>>waits patiently<</if>>, obviously hoping to get fucked.
<<elseif $activeSlave.trust > 20>>
	"Hi <<Master>>," $he <<say>>s cutely, and gives $his torso a flirty little shake from side to side, making $his boobs move interestingly. $He <<if canSee($activeSlave)>>watches you trustingly<<else>>calmly faces you<</if>>, obviously wondering if you'd like to enjoy $his body.
<<else>>
	"Good morning, <<Master>>," $he <<say>>s properly, doing $his best to be good. $He <<if canSee($activeSlave)>>watches you closely<<elseif canHear($activeSlave)>>listens closely<<else>>waits patiently<</if>>, ready to obey any command you might give $him.
<</if>>

<<case "modest clothes">>

<<if SlaveStatsChecker.checkForLisp($activeSlave)>>
	<<set _clothes = lispReplace($activeSlave.clothes)>>
<<else>>
	<<set _clothes = $activeSlave.clothes>>
<</if>>

Near the end of $his weekly inspection, <<= App.UI.slaveDescriptionDialog($activeSlave)>> asks you a question. The inspection happens to have been at the start of $his day, and after you're done with $him, $he'll be heading off to get dressed. $He's naked for inspection, of course,
<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>which has the humiliation fetishist $desc decently aroused<<else>>but $he's a good $desc, and $he trusts you, so $he has no problem at all with being seen nude<</if>>. In fact, that's what $he asks you about.
<br><br>
"<<Master>>," $he <<say>>s, "may I plea<<s>>e wear <<s>>omething a little more revealing, ju<<s>>t for today?" $He <<if $activeSlave.trust > 95>>trusts you completely, enough to have confidence that you'll understand $he isn't<<else>>bites $his lip, realizing that $he might have come across as<</if>> questioning you. "Wearing
<<switch $activeSlave.clothes>>
<<case "a nice maid outfit">>
	a proper maid'<<s>> outfit
<<case "a nice nurse outfit">>
	a proper nur<<s>>e'<<s>> outfit
<<case "nice business attire">>
	a <<s>>uit
<<case "battledress">>
	a _clothes
<<default>>
	_clothes
<</switch>>
i<<s>> ni<<c>>e," $he <<if $activeSlave.trust > 95>>allows<<else>>hurries to add<</if>>.
<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>"It'<<s>> not really embara<<ss>>ing, though. It would be <<s>>o <<s>>e<<x>>y to be, um, falling out of my clothe<<s>>.
<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>"But they cover my a<<ss>>hole.
<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>"But they cover my boob<<s>>.
<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>"But it cover<<s>> up my pregnan<<c>>y.
<<elseif $activeSlave.assignment == "whore">>"But I al<<s>>o like being a pro<<s>>titute, <<Master>>. It'd be fun to try looking like a total whore.
<<elseif $activeSlave.assignment == "serve the public">>"But I al<<s>>o like being a public <<s>>lut, <<Master>>. It'd be fun to really flaunt it.
<<else>>"But it'd be fun and different to wear <<s>>omething really naughty.
<</if>>
May I plea<<s>>e try out <<s>>omething <<s>>kimpier today?"

<<case "hyperpreg stuck">>

You are alerted to an issue regarding your
<<if ($activeSlave.broodmother == 2) && ($activeSlave.preg >= 30)>>
	hyperbroodmother,
<<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>>
	broodmother,
<<else>>
	debilitatingly pregnant slave,
<</if>>
<<= App.UI.slaveDescriptionDialog($activeSlave)>>. It seems
<<if $pregAccessibility == 1 || $ballsAccessibility == 1 || $buttAccessibility == 1 || $boobAccessibility == 1>>
	that, despite updating your penthouse to accommodate extra wide slaves,
<<else>>
	since you have not yet updated your penthouse to accommodate slaves of $his girth,
<</if>>
the poor $girl has gotten lodged in the doorway exiting
<<if ($activeSlave.rules.living == "luxurious")>>
	$his room.
<<elseif ($activeSlave.ID == $HeadGirlID) && ($HGSuite == 1)>>
	$his suite.
<<else>>
	the dormitory where $he sleeps.
<</if>>
The menials assigned to care for $him have been struggling for several weeks to fit $his through this particular doorway, but refrained from informing you, as their ward
<<if $activeSlave.devotion > 95>>
	did not wish to worry you.
<<elseif $activeSlave.devotion > 50>>
	was concerned you would worry.
<<elseif $activeSlave.devotion > 20>>
	was concerned how you would react.
<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
	feared how you would react.
<<elseif ($activeSlave.trust < -50)>>
	was terrified of how you might respond.
<<else>>
	argued you couldn't be trusted.
<</if>>
You make a mental note to punish $his caretakers and then set out to see $his predicament for yourself.
<br><br>
The sight that greets you when you arrive is equal parts incredible and amusing. En route to the baths, the slave attempted to exit
<<if ($activeSlave.rules.living == "luxurious")>>
	$his room
<<elseif ($activeSlave.ID == $HeadGirlID) && ($HGSuite == 1)>>
	$his suite
<<else>>
	the dorm
<</if>>
backwards and, as a result, you have a glorious view of $his
<<if ($activeSlave.broodmother == 2) && ($activeSlave.preg >= 30)>>
	mind boggling, obscenely swollen belly
<<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>>
	massive, brood swollen belly
<<else>>
	inhumanly gravid belly
<</if>>
squeezed painfully by the inadequate doorway and framing the attractive rear view of the rest of $his body, including $his
<<if $activeSlave.butt > 5>>
	debilitatlingly huge ass cheeks.
<<elseif $activeSlave.butt > 2>>
	plush ass.
<<else>>
	cute little ass.
<</if>>
<br><br>
$He cranes $his neck, glancing over $his shoulder to give you a pleading look.

<<case "devoted fearful slave">>

You are working late tonight, poring over some particularly troublesome business documents — though, thankfully, the end appears to be in sight. The sun has all but completely slipped below the horizon, drowning your office in moody twilight. Seeing that you are finally approaching the end of a long day, $assistant.name takes the liberty of having a
<<if $PC.refreshmentType == 0>>
	$PC.refreshment
<<elseif $PC.refreshmentType == 1>>
	glass of $PC.refreshment
<<elseif $PC.refreshmentType == 2>>
	plate of $PC.refreshment
<<elseif $PC.refreshmentType == 3>>
	line of $PC.refreshment
<<elseif $PC.refreshmentType == 4>>
	syringe of $PC.refreshment
<<elseif $PC.refreshmentType == 5>>
	pill of $PC.refreshment
<<elseif $PC.refreshmentType == 6>>
	tab of $PC.refreshment
<</if>>
brought in to you. This time <<= App.UI.slaveDescriptionDialog($activeSlave)>> has been sent to deliver it. $He loves you, but fears you simultaneously. Such relationships were not uncommon before the advent of modern slavery, but they are especially prevalent in its wake, as fear has proven a highly effective control method for those slaveowners with the inclination and relative lack of conscience to utilize it as such. You hurriedly put the finishing touches on your work, eager to be done, and then reach for your $PC.refreshment. $activeSlave.slaveName flinches at your sudden movement, taking a few frightened steps back, nearly dropping the serving tray and leaving you grasping at thin air. It was a simple fear response; $he didn't realize you were ready for your treat and instinctively thought you were reaching out to strike $him. Tears swell up in $his eyes as $he apologizes profusely.

<<default>>
	<br>ERROR: bad RESS event $RESSevent

<</switch>>

<br><br>
<span id="result">

<<switch $RESSevent>>

<<case "first period">>

<<link "Explain $he's just becoming a woman">>
	<<replace "#result">>
		You tell $him that $he is just undergoing $his first period, and that the pain $he is feeling is perfectly natural.
		<<if !canTalk($activeSlave)>>
			$He brings $his hands back to $his stomach, an elated look on $his face. $He makes a gesture resembling a rounded belly.
		<<else>>
			"I-I'm a woman now? <<Master>>, that m-mean<<s>>, I can get pregnant now." $He trails off.
		<</if>>
		Whether or not $he gets pregnant is for you to decide, but for now you tell $him what $he should expect to change, both in and to $his body. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<<if ($PC.dick != 0) && ($activeSlave.eggType == "human")>>
	<br><<link "Demonstrate what this means">>
		<<replace "#result">>
			You tell $him that $he is just becoming a woman, and to celebrate, you are going to put a child in $him.
			<<if !canTalk($activeSlave)>>
				$He gasps and rubs a hand across $his stomach.
			<<else>>
				"But I'm <<s>>till a child my<<s>>elf, <<Master>>, I can't get pregnant yet!"
			<</if>>
			You tell $him that prior to this week, that would have been true. However, now that $he has become fertile, it's time that $he learned what $his body was made for. You guide $him to the couch and tell $him to lie on $his back so that you may take $him. $He breaks down when $he feels your cock enter $his
			<<if $activeSlave.vagina == 0>>
				delightfully tight, virgin
			<<elseif $activeSlave.vagina == 1>>
				deliciously tight
			<<elseif $activeSlave.vagina == 2>>
				well experienced
			<<else>>
				fucked-out
			<</if>>
			cunt. $His new urges cause $him to reach up to hug $himself close to you,
			<<if ($activeSlave.boobs < 600)>>
				$his modest breasts let $him snuggle close to you, face-to-face, as you take $him.
			<<elseif ($activeSlave.boobs < 10000)>>
				$his big tits form a soft cushion between you as you take $him.
			<<else>>
				$his massive tits stop $him from bringing $himself too close to you as you take $him.
			<</if>>
			$He enjoys $himself immensely, but $he loses it again when $he feels your seed in $him, realizing that $he will find $himself swelling with your child over the coming months. $He has become @@.hotpink;more submissive@@ to your will now that $his very first egg has been fertilized by $his <<= getWrittenTitle($activeSlave)>>.
			<<set $activeSlave.devotion += 5, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1, $activeSlave.pregSource = -1>>
			<<set $activeSlave.pregType = setPregType($activeSlave)>>
			<<set WombImpregnate($activeSlave, $activeSlave.pregType, -1, 1)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<</if>>
<br><<link "Tell $him $he'll just be taking it up the ass more">>
	<<replace "#result">>
		In one swift motion, you pull out a chastity belt and lock it onto $him. $He gasps as $he feels it hug close to $his pussy. You explain that $he has just become a woman, and thus, will be taking it up the ass until you decide it's time for $him to become pregnant.
		<<if !canTalk($activeSlave)>>
			$He rubs a hand across $his stomach.
		<<else>>
			"You don't want me to get pregnant, <<Master>>?"
		<</if>>
		You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity belt, noting how much $his body wants you in $him, but you only make it the center of attention once the poor over-aroused slave
		<<if !canTalk($activeSlave)>>
			begins to use piteous gestures to beg you abjectly to penetrate $him.
		<<else>>
			<<say>>s, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me pregnant!"
		<</if>>
		You snicker, but remind $him that no matter how much $he wants to be knocked up, $his belt will direct all the dicks $he takes into $his rear. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> with $his ass and begin fucking $him, all the while reminding $him that $he will not be getting pregnant. When $he finally orgasms, <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to get pregnant, but you tell $him to take it anally. $He @@.hotpink;sides with your decision@@ and vows to be an anal whore for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a mother via anal causes $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>>
		<<set $activeSlave.devotion += 5, $activeSlave.chastityVagina = 1>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>

<<case "wet dreams">>

<<link "Explain $he's just growing up">>
	<<replace "#result">>
		You tell $him that $his body is preparing to be able to impregnate girls, and that what happens at night happens to all boys. Though as a slave, $he should consider $himself lucky to be allowed to keep $his male genitalia.
		<<if !canTalk($activeSlave)>>
			$He brings $his hands to $his growing erection, a bubble of precum forming on its tip. $He fondles $himself as $he ponders $his new potency.
		<<else>>
			"I-I can get girl<<s>> pregnant now? <<Master>>, that m-mean<<s>> I'll have to be more careful." $He trails off.
		<</if>>
		You tell $him to keep $his dick in check or risk losing it, before continuing to read off the other various changes that will occur in $him. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<br><<link "Teach $him $his place">>
	<<if $PC.dick == 0>>
			<<replace "#result">>
			You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn that you are the dominant force in $his life.
			<<if !canTalk($activeSlave)>>
				$His expression shifts to confusion.
			<<else>>
				"What doe<<s>> that mean, <<Master>>?"
			<</if>>
			You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face-up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect
			<<if $activeSlave.dick == 1>>
				tiny dick.
			<<elseif $activeSlave.dick == 2>>
				cute dick.
			<<elseif $activeSlave.dick == 3>>
				dick.
			<<elseif $activeSlave.dick == 4>>
				big dick.
			<<elseif $activeSlave.dick == 5>>
				impressive dick.
			<<elseif $activeSlave.dick == 6>>
				huge dick.
			<<elseif $activeSlave.dick == 7>>
				gigantic dick
			<<elseif $activeSlave.dick == 8>>
				titanic dick
			<<elseif $activeSlave.dick == 9>>
				absurd dick
			<<elseif $activeSlave.dick == 10>>
				inhuman dick
			<<else>>
				hypertrophied dick
			<</if>>
			You push $him back down as you straddle $his
			<<if $activeSlave.belly >= 1500>>
				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
			<<elseif $activeSlave.boobs > 2000>>
				huge tits
			<<else>>
				chest
			<</if>>
			planting your moistening pussy over the $girl's face. You lean forward, teasing $his twitching cock, as you grind against $his face. As $he begins to moan with lust, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. Just undoing the binding is enough to set $him over the edge, coating $his <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in $his virile sperm. You turn around and order the exhausted $girl to clean $himself up and go back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral; Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>>
			<<set $activeSlave.devotion += 5>>
		<</replace>>
	<<else>>
		<<replace "#result">>
			You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn that you are the dominant force in $his life.
			<<if !canTalk($activeSlave)>>
				$His expression shifts to confusion.
			<<else>>
				"What doe<<s>> that mean, <<Master>>?"
			<</if>>
			You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face-down onto the couch<<if $activeSlave.belly >= 100000>> as best you can<</if>>. $He <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up $his fully erect
			<<if $activeSlave.dick == 1>>
				tiny dick.
			<<elseif $activeSlave.dick == 2>>
				cute dick.
			<<elseif $activeSlave.dick == 3>>
				dick.
			<<elseif $activeSlave.dick == 4>>
				big dick.
			<<elseif $activeSlave.dick == 5>>
				impressive dick.
			<<elseif $activeSlave.dick == 6>>
				huge dick.
			<<elseif $activeSlave.dick == 7>>
				gigantic dick
			<<elseif $activeSlave.dick == 8>>
				titanic dick
			<<elseif $activeSlave.dick == 9>>
				absurd dick
			<<elseif $activeSlave.dick == 10>>
				inhuman dick
			<<else>>
				hypertrophied dick
			<</if>>
			You push $his face into the cushions as you mount $his
			<<if $activeSlave.butt > 6>>
				ridiculous
			<<elseif $activeSlave.butt > 5>>
				gigantic
			<<elseif $activeSlave.butt > 4>>
				enormous
			<<elseif $activeSlave.butt > 3>>
				huge
			<<elseif $activeSlave.butt > 2>>
				big
			<<elseif $activeSlave.butt > 1>>
				plump
			<<elseif $activeSlave.butt > 0>>
				small
			<<else>>
				flat
			<</if>>
			butt, sinking your cock deep into $his <<if $activeSlave.anus == 0>>virgin<</if>> asspussy. You lean forward, running your hands across $his nipples<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> as you move to tease $his stiff prick. Between your dick in $his ass and your hand on $his cock, $he rapidly approaches $his peak. Quickly, you bind the base of $his penis, denying $his release and eliciting a long moan from the pent-up $girl. You begin thrusting hard, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by filling $his asspussy with your cum do you allow $his release. Just undoing the binding is enough to set $him over the edge, coating the cushions<<if $activeSlave.belly >= 5000>> and the bottom of $his _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> in $his virile sperm. You dismount and order the exhausted $girl to clean $himself and the couch up before going back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral;Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>>
			<<set $activeSlave.devotion += 5>>
		<</replace>>
	<</if>>
<</link>><<if ($activeSlave.anus == 0) && ($PC.dick != 0)>> //This option will take $his anal virginity//<</if>>
<<if $PC.vagina > 0>>
	<br><<link "Let me teach you how to use it">>
		<<replace "#result">>
			You tell $him that $he is just becoming a potent $woman, and as such, $he will need to learn how to please $his partners.
			<<if !canTalk($activeSlave)>>
				$His expression shifts to confusion.
			<<else>>
				"What'<<s>> that mean, <<Master>>?"
			<</if>>
			You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face-up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect
			<<if $activeSlave.dick == 1>>
				tiny dick.
			<<elseif $activeSlave.dick == 2>>
				cute dick.
			<<elseif $activeSlave.dick == 3>>
				dick.
			<<elseif $activeSlave.dick == 4>>
				big dick.
			<<elseif $activeSlave.dick == 5>>
				impressive dick.
			<<elseif $activeSlave.dick == 6>>
				huge dick.
			<<elseif $activeSlave.dick == 7>>
				gigantic dick
			<<elseif $activeSlave.dick == 8>>
				titanic dick
			<<elseif $activeSlave.dick == 9>>
				absurd dick
			<<elseif $activeSlave.dick == 10>>
				inhuman dick
			<<else>>
				hypertrophied dick
			<</if>>
			You push $him back down as you straddle $his cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until $he delightfully penetrates you<<else>>yourself onto $his needy prick<</if>>. You slowly ride $his dick, instructing $him the proper way to thrust into you and how to adequately support your weight. Once $he gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning $him into you. $He gingerly inserts $his cock<<if $activeSlave.belly >= 100000>> while you do your best to manage $his _belly stomach<</if>> and begins thrusting, slowly at first, before getting the hang of things and speeding up<<if $PC.dick != 0>>, your own neglected dick bobbing along to $his thrusts<</if>>. As soon as you feel $his beginning to tense you <<if $PC.pregKnown == 1>>tell $him it's safe to cum in you, you're already pregnant<<else>>order $him to pull out<</if>>. The poor $girl is so caught up in $his lust, $he can't stop thrusting. Before you can rectify this, $he pushes you over the edge and gushes deep into you as you climax<<if $PC.dick != 0>> and spray your own cum <<if $PC.belly >= 5000 && $activeSlave.belly >= 5000>>into the cramped space between your swollen bodies<<elseif $activeSlave.belly >= 100000>>across your belly and the underside of $hers<<else>>across $his chest<</if>><</if>>. $He gingerly pulls $himself from you, apologizes @@.hotpink;meekly@@ for losing control, and snuggles up next to you. Cumming in $his <<= getWrittenTitle($activeSlave)>>'s pussy as $his first time builds @@.mediumaquamarine;a special bond@@ with you.
			<<if $PC.preg == 0 && $PC.pregWeek == 0>>
				You aren't on contraceptives right now; $his first time may be more fruitful than $he realizes.
			<</if>>
			<<set $activeSlave.devotion += 10, $activeSlave.trust += 20>>
			<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
			<<if canImpreg($PC, $activeSlave)>>
				<<= knockMeUp($PC, 60, 0, $activeSlave.ID)>>
			<</if>>
		<</replace>>
	<</link>> //This option will penetrate you//
<</if>>
<br><<link "Tell $him it doesn't matter, $he won't be using it">>
	<<replace "#result">>
		In one swift motion, one pull out a chastity cage and lock it onto $him. $He gasps as $he feels it hug close to $his struggling erection. You explain that $he has just become potent, and thus, will be restricted until you feel differently.
		<<if !canTalk($activeSlave)>>
			$He rubs a hand across $his caged dick.
		<<else>>
			"You don't want me to u<<s>>e my peni<<s>>, <<Master>>?"
		<</if>>
		You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity cage, torturing $his dick and balls, but you only make it the center of attention once the poor over-aroused slave
		<<if !canTalk($activeSlave)>>
			begins to use piteous gestures to beg you abjectly to penetrate $him.
		<<else>>
			begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me!"
		<</if>>
		You snicker, but remind $him that $he has no say in $his release. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> up $his ass and begin slowly fucking $him, making sure to stimulate $his prostate. When $he finally orgasms <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to fuck, but you tell $him to get fucked. $He @@.hotpink;sides with your decision@@ and vows to be the one taking dick for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a father via anal cause $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>>
		<<set $activeSlave.devotion += 5, $activeSlave.chastityPenis = 1>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<<if $seeExtreme == 1 && $activeSlave.indentureRestrictions <= 0>>
	<br><<link "Geld $him to render $him impotent again">>
		<<set $activeSlave.balls = 0, $activeSlave.trust -= 20>>
		<<run surgeryDamage($activeSlave, 10)>>
		<<replace "#result">>
			You bluntly tell $him $he is becoming potent, and that is something you can't allow to roam unchecked amongst your fertile slaves. You drag $him to the remote surgery and strap $him face-down with $his legs spread <<if $activeSlave.belly >= 5000>>$his _belly rounded belly forcing $his rear into the air<</if>>. $He doesn't understand what's happening, since the anesthetics totally deprive $him of any sensation. $He's so drugged and drowsy with @@.health.dec;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He numbly carries on, terrified.
		<</replace>>
	<</link>>
<</if>>

<<case "surprising wakeup">>

<<link "Permit $him to continue">>
	<<replace "#result">>
		You can't complain, it feels really good. You don't know where this skill was lurking in $his broken mind, but you're glad to see it put to good use. <<if $PC.dick != 0>>Just as you are about to cum, $he takes the full length of your dick down $his throat, diligently taking in every drop of cum<<else>>Even as you buck with pleasure, $he diligently keeps $his tongue to your clit and pussy, making sure you don't go a moment without pleasure<</if>>. You don't have an orgasm like that every day, and as $he looks at you lovingly, you prod $him with your still hard <<if $PC.dick != 0>>cock<<else>>clit<</if>> for round two.
		$He is @@.green;no longer mindbroken@@ and for whatever twisted reasons deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you.
		<<set $activeSlave.devotion = 90, $activeSlave.oldDevotion = 90, $activeSlave.trust = 90, $activeSlave.oldTrust = 90, $activeSlave.sexualQuirk = "caring", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>>
		<<set _ress = $genePool.findIndex(function(s) { return s.ID == $activeSlave.ID; })>>
		<<set $activeSlave.intelligence = $genePool[_ress].intelligence>>
		<<if ($arcologies[0].FSPaternalist != "unset")>>
			Society @@.green;strongly approves@@ of $activeSlave.slaveName being restored to sanity, which advances ideals about enlightened slaveownership.
			<<set $arcologies[0].FSPaternalist += 0.01*$FSSingleSlaveRep>>
			<<run repX(10*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel), "futureSocieties")>>
		<</if>>
		<<run seX($activeSlave, "oral", $PC, "penetrative", 2)>>
		<<set $activeSlave.kindness = 0>>
	<</replace>>
<</link>>
<br><<link "Embrace $him">>
	<<replace "#result">>
		You gently grab $his face and stare deeply into $his <<= App.Desc.eyesColor($activeSlave)>>. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't $his fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your $wife into a tight embrace — $him coming back to you is more than enough of a gift; $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you.
		$He is @@.green;no longer mindbroken@@ and thanks to your care deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you.
		<<set $activeSlave.devotion = 100, $activeSlave.oldDevotion = 100, $activeSlave.trust = 100, $activeSlave.oldTrust = 100, $activeSlave.sexualQuirk = "romantic", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>>
		<<set $activeSlave.intelligence = $genePool[_ress].intelligence>>
		<<if ($arcologies[0].FSPaternalist != "unset")>>
			Society @@.green;strongly approves@@ of $activeSlave.slaveName being restored to sanity by the power of love, which advances ideals about enlightened slaveownership.
			<<set $arcologies[0].FSPaternalist += 0.01*$FSSingleSlaveRep>>
			<<run repX(10*$FSSingleSlaveRep*($arcologies[0].FSPaternalist/$FSLockinLevel), "futureSocieties")>>
		<</if>>
		<<set $activeSlave.kindness = 0>>
	<</replace>>
<</link>>
<br><<link "Rape $him">>
	<<replace "#result">>
		Getting head isn't going to cut it. You easily overpower the startled $desc and
		<<if canDoVaginal($activeSlave)>>
			flip $him onto $his back.
			<<if $PC.dick != 0>>
				You viciously rape $him, forcing yourself deep into $him before painting $his insides with your seed. You leave the quivering $girl to leak fluids while you get comfortable again.
				<<if $activeSlave.vagina == 0>>$His once virgin pussy now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.vagina++>><</if>>
			<<else>>
				You don the biggest strap-on in reach and viciously rape $him, roughly groping $his breasts while you do. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his cunt. You shrug, not your problem.
				<<if $activeSlave.vagina == 0>>$His once virgin pussy now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of $him until it manages to do so with a wet thud.<<set $activeSlave.vagina++>><</if>>
			<</if>>
			$He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
			<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
			<<if canImpreg($activeSlave, $PC)>>
				<<= knockMeUp($activeSlave, 5, 0, -1, 1)>>
			<</if>>
		<<elseif canDoAnal($activeSlave)>>
			force $his ass into the air.
			<<if $PC.dick != 0>>
				You viciously assrape $him, cumming strongly into $his spasming anus while making sure to save one last spurt to paint $his back with.
				<<if $activeSlave.anus == 0>>$His once virgin hole now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.anus++>><</if>>
			<<else>>
				You don the biggest strap-on in reach and viciously assrape $him, forcing $his face into the sheets with one hand while roughly groping $his breasts with the other. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his ass. You shrug, not your problem.
				<<if $activeSlave.anus == 0>>$His once virgin hole now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of rear until it manages to do so with a soft thud.<<set $activeSlave.anus++>><</if>>
			<</if>>
			$He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
			<<if canImpreg($activeSlave, $PC)>>
				<<= knockMeUp($activeSlave, 5, 1, -1, 1)>>
			<</if>>
			<<run seX($activeSlave, "anal", $PC, "penetrative")>>
		<<else>>
			slam $his head into your crotch.
			<<if $PC.dick != 0>>
				You viciously facefuck $him, cumming strongly down $his gagging throat while making sure to save one last spurt to paint $his face with.
			<<else>>
				As $he recoils, you grab a strap-on and force it into $his mouth before fastening it to yourself. Once you are situated, you viciously facefuck $him until you are satisfied. As $he struggles to catch $his breath, you toggle the release and reveal that it is a squirt dildo, painting $his face with fake semen.
			<</if>>
			$He falls backwards, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake.
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		You pull the blanket back over yourself and nudge $him off your bed; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>.
		<<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>>
			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
				<<if $activeSlave.anus < 3>>
					<<set $activeSlave.anus++>>
				<</if>>
				<<run seX($activeSlave, "anal", $PC, "penetrative", $fuckSlaves*2)>>
			<</if>>
			<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
				<<if $activeSlave.vagina < 3>>
					<<set $activeSlave.anus++>>
				<</if>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative", $fuckSlaves*2)>>
			<</if>>
			<<run seX($activeSlave, "oral", $PC, "penetrative", $fuckSlaves*2)>>
		<<elseif $fuckSlaves > 1>>
			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
				<<run seX($activeSlave, "anal", $PC, "penetrative", $fuckSlaves*2)>>
			<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative", $fuckSlaves*2)>>
			<<else>>
				<<run seX($activeSlave, "oral", $PC, "penetrative", $fuckSlaves*2)>>
			<</if>>
		<</if>>
		<<set $activeSlave.kindness = -100>>
	<</replace>>
<</link>>//<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>This option will take $his virginity<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>This option will take $his anal virginity<</if>>//
<br><<link "Punish $him for waking you">>
	<<replace "#result">>
		In one swift motion you throw aside the cover and backhand the $desc for waking you. $He falls to your side, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. You pull the blanket back over yourself; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>.
		<<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>>
			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
				<<if $activeSlave.anus < 3>>
					<<set $activeSlave.anus++>>
				<</if>>
				<<run seX($activeSlave, "anal", $PC, "penetrative", $fuckSlaves*2)>>
			<</if>>
			<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
				<<if $activeSlave.vagina < 3>>
					<<set $activeSlave.vagina++>>
				<</if>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative", $fuckSlaves*2)>>
			<</if>>
			<<run seX($activeSlave, "oral", $PC, "penetrative", $fuckSlaves*2)>>
		<<elseif $fuckSlaves > 1>>
			<<if canDoAnal($activeSlave) && $activeSlave.anus > 0>>
				<<run seX($activeSlave, "anal", $PC, "penetrative", $fuckSlaves)>>
			<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative", $fuckSlaves)>>
			<<else>>
				<<run seX($activeSlave, "oral", $PC, "penetrative", $fuckSlaves)>>
			<</if>>
		<</if>>
		<<set $activeSlave.kindness = -100>>
	<</replace>>
<</link>>

<<case "mutinery attempt">>

<<if $mutinery == 1>>
	<<link "Fight $him off as much as you can">>
		<<replace "#result">>
			<<if overpowerCheck($activeSlave, $PC) >= random(1,100)>>
				You know your own body well, at least enough to be able to make it as difficult as possible for $him to use you. If $he were to loosen $his grip by a little, you'd be quick to shake $him off, but the position $he's got you in doesn't leave much room to fight back. When you start to tire, $he pushes you to the wall and starts rubbing $his
				<<if $activeSlave.dick == 1>>
					pathetic
				<<elseif $activeSlave.dick == 2>>
					little
				<<elseif $activeSlave.dick == 3>>
				<<elseif $activeSlave.dick == 4>>
					big
				<<elseif $activeSlave.dick == 5>>
					impressive
				<<elseif $activeSlave.dick == 6>>
					huge
				<<elseif $activeSlave.dick == 7>>
					gigantic
				<<elseif $activeSlave.dick == 8>>
					titanic
				<<elseif $activeSlave.dick == 9>>
					absurd
				<<elseif $activeSlave.dick == 10>>
					inhuman
				<<else>>
					hypertrophied
				<</if>>
				dick on your lower body, thrusting blindly around your belly, before lodging $himself between your thighs. You have a hard time fighting against $him in your position, but you're not about to let $him dominate you either. You continue trying to shake $him off, making sure at the same time that your movements are as aggressive as possible to try and distract $him with pain or pleasure. You feel $his grip loosen as $his body tenses before pending orgasm, so you strongly push into $him, knocking $him off balance and to the floor. $He spills $his seed all over $himself and you as you wrestle $him into a chokehold. Now that you have $him restrained, it's time $he learned $his place.
			<<else>>
				You know your own body well, but $activeSlave.slaveName is much stronger than you had thought. $His grip shows little sign of loosening despite your struggle, and $he's got you in a position that allows for little other options to fight back. When you soon start to tire, $he pushes you to the wall, tears off your clothing, and starts rubbing $his
				<<if $activeSlave.dick == 1>>
					pathetic
				<<elseif $activeSlave.dick == 2>>
					little
				<<elseif $activeSlave.dick == 3>>
				<<elseif $activeSlave.dick == 4>>
					big
				<<elseif $activeSlave.dick == 5>>
					impressive
				<<elseif $activeSlave.dick == 6>>
					huge
				<<elseif $activeSlave.dick == 7>>
					gigantic
				<<elseif $activeSlave.dick == 8>>
					titanic
				<<elseif $activeSlave.dick == 9>>
					absurd
				<<elseif $activeSlave.dick == 10>>
					inhuman
				<<else>>
					hypertrophied
				<</if>>
				dick on your lower body, thrusting blindly around your belly, before suddenly lodging $himself in your pussy. You have an even harder time fighting against $him in this position, especially since your aggressive movements seem to send a pleasurable sensation to $his cock. You only manage to find an opportunity to free yourself when $he reaches orgasm, shooting $his seed deep inside you. As $he cums, you strongly push into $him, knocking $him off balance and to the floor. By sheer luck, $his head strikes a large paperweight that was thrown across the room in your struggle, knocking $him unconscious long enough for you to dislodge yourself and tie $him up. Now that you have $him restrained, it's time $he learned $his place.
				<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
				<<if canImpreg($PC, $activeSlave)>>
					<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
				<</if>>
			<</if>>
			<<set $mutinery = 2>>

			<br><br><span id="result2">
				<<if $mutinery != 1>>
					<br><<link "Lock $his dick in chastity">>
						<<replace "#result2">>
							You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.orangered;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= getWrittenTitle($activeSlave)>> is getting locked in chastity, @@.orangered;spreading defiance@@ through your rebellious slaves.
							<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
						<</replace>>
					<</link>>
					<br><<link "Flog $him">>
						<<replace "#result2">>
							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.health.dec;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
							<<set $activeSlave.trust -= 15>>
							<<run healthDamage($activeSlave, 15)>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
						<</replace>>
					<</link>>
					<br><<link "Mute $him">>
						<<replace "#result2">>
							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.orangered;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.orangered;become more defiant.@@
							<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
					<br><<link "Castrate $him">>
						<<replace "#result2">>
							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 10)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
					<<if $activeSlave.vagina == -2>>
						<br><<link "Surgically alter $his gender">>
							<<replace "#result2">>
								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
								<<= VCheck.Vaginal($activeSlave, 1)>>
								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
							<</replace>>
						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
					<<else>>
						<br><<link "Remove $his male genitalia">>
							<<replace "#result2">>
								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
							<</replace>>
						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
					<</if>>
					<br><<link "Deny $him from ever having satisfying sex again">>
						<<replace "#result2">>
							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
							<<= VCheck.Anal($activeSlave, 1)>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
				<</if>>
			</span>
		<</replace>>
	<</link>>
	<br><<link "Try to talk it out">>
		<<replace "#result">>
			You start trying to talk $him down, hoping to persuade $him that you might reconsider your punishment if $he stopped this foolishness; $he doesn't seem too keen on <<if canHear($activeSlave)>>listening to<<else>>acknowledging<</if>> you, instead pushing you against a wall and tearing your clothes off. Ignoring your words, $he forces $his
			<<if $activeSlave.dick == 1>>
				pathetic
			<<elseif $activeSlave.dick == 2>>
				little
			<<elseif $activeSlave.dick == 3>>
			<<elseif $activeSlave.dick == 4>>
				big
			<<elseif $activeSlave.dick == 5>>
				impressive
			<<elseif $activeSlave.dick == 6>>
				huge
			<<elseif $activeSlave.dick == 7>>
				gigantic
			<<elseif $activeSlave.dick == 8>>
				titanic
			<<elseif $activeSlave.dick == 9>>
				absurd
			<<elseif $activeSlave.dick == 10>>
				inhuman
			<<else>>
				hypertrophied
			<</if>>
			dick in without a second thought. You make sure to clamp down as hard as possible so the experience is not all that pleasant for $him, but $he continues to thrust in a daze.
			<<if canImpreg($PC, $activeSlave)>>
				You make one last plea for $him not to cum inside; it's a danger day. If anything, it only encourages $him to thrust deeper before painting the insides of your pussy with $his load.
				<<= knockMeUp($PC, 100, 0, $activeSlave.ID)>>
			<</if>>
			Once spent, $he shoves you to the ground and crashes into your office chair. The moment $he lets down $his guard, you slam the heaviest object you can find into $his head. Now that you have $him controlled, it's time $he learned $his place — when $he wakes up, of course. It's more fun that way.
			<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
			<<set $mutinery = 2>>

			<br><br><span id="result2">
				<<if $mutinery != 1>>
					<br><<link "Lock $his dick in chastity">>
						<<replace "#result2">>
							You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.orangered;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= getWrittenTitle($activeSlave)>> is getting locked in chastity, @@.orangered;spreading defiance@@ through your rebellious slaves.
							<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
						<</replace>>
					<</link>>
					<br><<link "Flog $him">>
						<<replace "#result2">>
							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.health.dec;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
							<<set $activeSlave.trust -= 15>>
							<<run healthDamage($activeSlave, 15)>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
						<</replace>>
					<</link>>
					<br><<link "Mute $him">>
						<<replace "#result2">>
							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.orangered;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.orangered;become more defiant.@@
							<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
					<br><<link "Castrate $him">>
						<<replace "#result2">>
							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 10)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
					<<if $activeSlave.vagina == -2>>
						<br><<link "Surgically alter $his gender">>
							<<replace "#result2">>
								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
								<<= VCheck.Vaginal($activeSlave, 1)>>
								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
							<</replace>>
						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
					<<else>>
						<br><<link "Remove $his male genitalia">>
							<<replace "#result2">>
								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
							<</replace>>
						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
					<</if>>
					<br><<link "Deny $him from ever having satisfying sex again">>
						<<replace "#result2">>
							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
							<<= VCheck.Anal($activeSlave, 1)>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
				<</if>>
			</span>
		<</replace>>
	<</link>>
	<br><<link "Fake playing along">>
		<<replace "#result">>
			You start removing your top and putting on a show of seducing your slave, dropping to your knees while looking doe-eyed at $him. By sucking $him off, you'll probably get $him to lower $his guard enough to get the upper hand. You take $his
			<<if $activeSlave.dick == 1>>
				pathetic
			<<elseif $activeSlave.dick == 2>>
				little
			<<elseif $activeSlave.dick == 3>>
			<<elseif $activeSlave.dick == 4>>
				big
			<<elseif $activeSlave.dick == 5>>
				impressive
			<<elseif $activeSlave.dick == 6>>
				huge
			<<elseif $activeSlave.dick == 7>>
				gigantic
			<<elseif $activeSlave.dick == 8>>
				titanic
			<<elseif $activeSlave.dick == 9>>
				absurd
			<<elseif $activeSlave.dick == 10>>
				inhuman
			<<else>>
				hypertrophied
			<</if>>
			dick inside your<<if $PC.career == "escort" || $PC.career == "prostitute" || $PC.career == "child prostitute" || $PC.career == "servant">> expert<</if>> mouth. You diligently suck until you feel $him begin to tense up; this is your chance. You clamp down on $his cock while simultaneously punching $him in the balls. $He howls in pain, until you headbutt $him in the stomach and knock the wind out of $him. You quickly pull $him into an arm lock and force $him over your desk. Now that you have $him restrained, it's time $he learned $his place — after you've gotten the taste of the slut out of your mouth, that is.
			<<set $mutinery = 2>>

			<br><br><span id="result2">
				<<if $mutinery != 1>>
					<br><<link "Lock $his dick in chastity">>
						<<replace "#result2">>
							You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.orangered;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= getWrittenTitle($activeSlave)>> is getting locked in chastity, @@.orangered;spreading defiance@@ through your rebellious slaves.
							<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
						<</replace>>
					<</link>>
					<br><<link "Flog $him">>
						<<replace "#result2">>
							You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.health.dec;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
							<<set $activeSlave.trust -= 15>>
							<<run healthDamage($activeSlave, 15)>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
						<</replace>>
					<</link>>
					<br><<link "Mute $him">>
						<<replace "#result2">>
							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.orangered;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.orangered;become more defiant.@@
							<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
					<br><<link "Castrate $him">>
						<<replace "#result2">>
							As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
							<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
							<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 10)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
					<<if $activeSlave.vagina == -2>>
						<br><<link "Surgically alter $his gender">>
							<<replace "#result2">>
								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
								<<= VCheck.Vaginal($activeSlave, 1)>>
								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
							<</replace>>
						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
					<<else>>
						<br><<link "Remove $his male genitalia">>
							<<replace "#result2">>
								You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
								<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
								<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
								<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
							<</replace>>
						<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
					<</if>>
					<br><<link "Deny $him from ever having satisfying sex again">>
						<<replace "#result2">>
							You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
							<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
							<<= VCheck.Anal($activeSlave, 1)>>
							<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
							<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
						<</replace>>
					<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
				<</if>>
			</span>
		<</replace>>
	<</link>>
<<else>>
	With the bitch restrained, you have all the time you need to devise $his punishment.
	<<set $mutinery = 2>>

	<br><br><span id="result2">
		<<if $mutinery != 1>>
			<br><<link "Lock $his dick in chastity">>
				<<replace "#result2">>
					You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, $he immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.orangered;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= getWrittenTitle($activeSlave)>> is getting locked in chastity, @@.orangered;spreading defiance@@ through your rebellious slaves.
					<<set $activeSlave.trust += 10, $activeSlave.chastityPenis = 1>>
					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
				<</replace>>
			<</link>>
			<br><<link "Flog $him">>
				<<replace "#result2">>
					You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.health.dec;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@
					<<set $activeSlave.trust -= 15>>
					<<run healthDamage($activeSlave, 15)>>
					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
				<</replace>>
			<</link>>
			<br><<link "Mute $him">>
				<<replace "#result2">>
					As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.orangered;what stops $him from making another go at you?@@ Your other rebellious slaves see this as a minor loss for a potentially huge gain and, if anything, @@.orangered;become more defiant.@@
					<<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>>
					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>>
					<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
				<</replace>>
			<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
			<br><<link "Castrate $him">>
				<<replace "#result2">>
					As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@
					<<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10>>
					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>>
					<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 10)>>
				<</replace>>
			<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
			<<if $activeSlave.vagina == -2>>
				<br><<link "Surgically alter $his gender">>
					<<replace "#result2">>
						You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1, $activeSlave.chastityPenis = 0>>
						<<= VCheck.Vaginal($activeSlave, 1)>>
						<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
					<</replace>>
				<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
			<<else>>
				<br><<link "Remove $his male genitalia">>
					<<replace "#result2">>
						You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@
						<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0>>
						<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
						<<run cashX(forceNeg($surgeryCost*2), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
					<</replace>>
				<</link>> //This option will cost <<print cashFormat(($surgeryCost*2))>>//
			<</if>>
			<br><<link "Deny $him from ever having satisfying sex again">>
				<<replace "#result2">>
					You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.health.dec;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly finds $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@
					<<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.chastityPenis = 0, $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0, $activeSlave.vaginalAccessory = "none", $activeSlave.vaginalAttachment = "none", $activeSlave.chastityVagina = 0>>
					<<= VCheck.Anal($activeSlave, 1)>>
					<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>>
					<<run cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 20)>>
				<</replace>>
			<</link>> //This option will cost <<print cashFormat(($surgeryCost*4))>>//
		<</if>>
	</span>
<</if>>

<<case "breeding bull">>

<<link "Push $him off of you">>
	<<replace "#result">>
		<<if overpowerCheck($activeSlave, $PC) >= random(1,100)>>
			You struggle underneath $his grip and manage to wriggle your arms free. You grab the amorous bull and effortlessly flip $him off of you. $He might be strong, but you are <<if $arcologies[0].FSPhysicalIdealist != "unset">>a chiseled god<<if $PC.title == 0>>dess<</if>><<else>>far stronger<</if>>.
			<br><br><span id="result2">
				<<link "Show $him who's in charge">>
					<<replace "#result2">>
					You <<if $PC.dick == 0>>grab your biggest strap-on<<else>>stroke your growing erection<</if>> as $activeSlave.slaveName struggles to right $himself, catching $his hips as $he tries to escape. You show no mercy as you force yourself into $his <<if $activeSlave.anus == 0>>virgin<</if>> ass and viciously fuck $him like $he intended to do to you. You savor the sight of your every thrust against $his prostate forcing spurts of precum out $his gigantic, throbbing erection. You pick up the pace as $he climaxes, soaking the sheets beneath $him; $he's not getting out of this until you are satisfied. By the end of things, the master suite reeks of fresh cum and $activeSlave.slaveName's twitching body is the center piece of $his semen puddle. The sheets will definitely need a changing, you note, as $his semi-erect cock twitches and a thick rope of jism sprays forth.
					<<= VCheck.Anal($activeSlave, 5)>>
					<</replace>>
				<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
				<br><<link "Just get $him out of here">>
					<<replace "#result2">>
					You grab $activeSlave.slaveName by the scruff of $his neck as $he struggles to right $himself and literally throw $him out of your room and into the hallway, where $he lands with a painful-sounding crash. You decide to deal with getting that mess cleaned up later; for now, you're going back to bed.
					<<run healthDamage($activeSlave, 10)>>
					<</replace>>
				<</link>>
			</span>
		<<else>>
			You struggle underneath $his grip and manage to wriggle your arms free. You push at the amorous bull and attempt to lift the heavy $girl off you. $activeSlave.slaveName takes this poorly and rams $his gigantic dick straight into your vagina and through your cervix. You pass out from the pain.
			<br><br>
			You awaken some time later, your crotch extremely sore and your belly slightly bloated. Most of $his deposit has flowed back out of you, but you still feel a fair amount sloshing inside you. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that @@.lime;you're pregnant@@ with $his child.
			<<= knockMeUp($PC, 100, 0, $activeSlave.ID, 1)>>
			<<run seX($activeSlave, "penetrative", $PC, "vaginal", 4)>>
		<</if>>
	<</replace>>
<</link>>
<br><<link "Wait for a chance to escape">>
	<<replace "#result">>
		$He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. $He cums so hard $he nearly blacks out; that will be your best chance to escape $him. You question your choice as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; should $he force through it, you may not be able to throw $him off. With a loud grunt, $he does just that. $He may be deep seated now, but you aren't going to give up. You feel $him tense up; now's your chance! As $he climaxes, you slip a leg around $his side and push $him with all your might. $He flops over, pulling out as $he spurts $his massive load and nailing you right in the face. You spit the jism out of your mouth and quickly restrain the dribbling bull.
		<br><br>
		Panting, you look over the damage: Your pussy is gaping, there is semen everywhere, and given the steady flow from you, $he likely got some of that ejaculation in you. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you, a fertile _womanP. $He only did what $he was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume you've been impregnated.
		<<= knockMeUp($PC, 20, 0, $activeSlave.ID, 1)>>
		<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
	<</replace>>
<</link>>
<br><<link "Call out for help">>
	<<replace "#result">>
		$He is far stronger than you expected and has you trapped in a compromising position; you shout out for <<if _S.Bodyguard>>_S.Bodyguard.slaveName<<elseif _S.Concubine && canWalk(_S.Concubine)>>_S.Concubine.slaveName<<else>>somebody<</if>> to help you. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. You question if anyone is coming as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; you barely stop yourself from screaming out as $he slams through your final defense
		<<if _S.Bodyguard>>
			<<setLocalPronouns _S.Bodyguard 2>>
			and gets tackled off of you by _S.Bodyguard.slaveName. After a quick tussle, the amorous cow is restrained and leaking cum on your floor. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. _S.Bodyguard.slaveName is visibly disturbed by an assault on you happening within _his2 defensive perimeter and @@.hotpink;vows@@ to not allow it to happen again.
			<<set _S.Bodyguard.devotion += 2>>
		<<elseif _S.Concubine && canWalk(_S.Concubine)>>
			and gets tackled off of you by _S.Concubine.slaveName. After a violent struggle, the amorous cow is restrained and leaking cum on your floor. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. _S.Concubine.slaveName is @@.gold;visibly shaken@@ by the assault and was @@.health.dec;badly beaten@@ by the muscular slave during the fight.
			<<set _S.Concubine.trust -= 5>>
			<<run healthDamage(_S.Concubine, 40)>>
		<<else>>
			and cums directly into your exposed womb. $He backs off, possibly startled by the shouting, giving you the chance to slip away to safety. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume $he's done $his job well.
			<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
			<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
		<</if>>
	<</replace>>
<</link>>
<br><<link "Take it like a good _girlP">>
	<<replace "#result">>
		$He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. You question what you are thinking as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; you barely stop yourself from screaming out as $he slams through your final defense and cums directly into your exposed womb.
		<br><br>
		You immediately realize you've made a mistake; you feel full already and $he's still cumming. You watch in horror as your belly steadily swells with seed, unable to flow out thanks to your obstructed cunt. $activeSlave.slaveName grunts as $he pushes out the last of $his load before pulling out and releasing you. You try to get up, but the experience has left you drained, so you are left hoping that $his instincts tell $him $he's done $his job. $He lowers $his <<if canSmell($activeSlave)>>nose to your violated pussy and sniffs<<else>>face to your violated pussy to feel the heat emanating from it<</if>>; unsatisfied, $he moves back into position to properly seed you this time. You black out as $his second load joins the first, only to awaken sometime later
		<<if _S.Concubine>>
			<<setLocalPronouns _S.Concubine 2>>
			with _S.Concubine.slaveName trying _his2 best to drain your swollen belly.
			<<if canTalk(_S.Concubine)>>
				<<run Enunciate(_S.Concubine)>>
				"I'm <<s>>o <<s>>orry <<Master>>... I <<s>>tepped out for a minute and thi<<s>> happen<<s>>." You ask what happened to $activeSlave.slaveName. "$He'<<s>> bound and gagged now, $he won't hurt you anymore. But what are you going to do with that belly? I won't tell anyone what happened, but we've got to get rid of it."
			<<else>>
				_He2 gestures _his2 apologies and points to the bound and gagged $activeSlave.slaveName, before expressing _his2 concerns about your visible state.
			<</if>>
			You do your best to calm _him2 down; this is your fault after all. $activeSlave.slaveName's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that @@.lime;you're pregnant@@ with $his child. As for the belly, it'll go down soon, you're sure.
		<<elseif _S.Bodyguard>>
			<<setLocalPronouns _S.Bodyguard 2>>
			with _S.Bodyguard.slaveName sobbing over your swollen belly.
			<<if canTalk(_S.Bodyguard)>>
				<<run Enunciate(_S.Bodyguard)>>
				"I'm <<s>>o <<s>>orry <<Master>>... I <<s>>tepped out for a minute and thi<<s>> happen<<s>>." You ask what happened to $activeSlave.slaveName. "$He'<<s>> bound and gagged now, $he won't hurt you again." _He2 sniffles, "But plea<<s>>e puni<<sh>> me too. Thi<<s>> i<<s>> all my fault."
			<<else>>
				_He2 gestures _his2 apologies and points to the bound and gagged $activeSlave.slaveName, before begging you to punish _him2 too for _his2 failures as your guardian.
			<</if>>
			You do your best to calm _him2 down; this is your fault after all. $activeSlave.slaveName's a breeding bull and you, a fertile _womanP. $He only did what $he was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that @@.lime;you're pregnant@@ with $his child.
		<<else>>
			to $activeSlave.slaveName snoring beside you, $his massive cock soft and slightly drooling cum. Most of $his deposit has flowed back out of you, but you're still heavy with sperm. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that @@.lime;you're pregnant@@ with $his child.
		<</if>>
		<<= knockMeUp($PC, 100, 0, $activeSlave.ID, 1)>>
		<<run seX($activeSlave, "penetrative", $PC, "vaginal", 4)>>
	<</replace>>
<</link>>

<<case "devoted lotion">>

<<link "Apply lotion liberally">>
	<<replace "#result">>
		You reach down to take $his hands, and pull $him up to stand in front of you before crushing $him in a frankly sexual embrace. Taking charge of the lotion, you apply it to your hands and start with $his face. $He submits to your close attention, even closing $his eyes so you can get $his eyelids, only a slight quickening of breath betraying $his intensity of feeling at having you do this. You take your time, which turns into exquisite sexual torture when you finally reach $his <<if $activeSlave.boobs > 2000>>incredible breasts, which stand out so far in front of $him that you have to reach around their mass rather inelegantly<<elseif $activeSlave.boobs > 800>>heavy breasts<<else>>lovely chest<</if>>. When your warm, moist hands <<if $activeSlave.nipples != "fuckable">>rub<<else>>slip into<</if>> $his<<if $activeSlave.lactation > 0>> milky<</if>> nipples, $he cannot suppress a moan. You take pity, take $his hands, guide them to the lotion bottle, and coat them generously. Then, you place $his hands in yours and move them to between $his legs, manipulating them like a music teacher guiding a pupil's hands on an instrument, guiding $him in gentle masturbation. You go back to applying lotion to the rest of $his body, enjoying the slave's intense pleasure. When you've covered every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $him, you hug $him close, returning your hands to $his nipples <<if $PC.dick != 0>>and pushing your rock-hard prick in between $his well-lubricated thighs<<if $PC.vagina != -1>>, <</if>><</if>><<if $PC.vagina != -1>>after guiding one of $hers around behind $him to see to your pussy<</if>>. $He quickens $his pace<<if canSee($activeSlave)>> and raises $his gaze to the mirror, seeing $his magnificently nude, $activeSlave.skin skin flushed with arousal<<else>>, feeling $his magnificently nude, $activeSlave.skin skin flush with arousal<</if>> as $his
		<<if ($activeSlave.chastityPenis == 1)>>
			<<if canDoAnal($activeSlave)>>
				eager fingering of $his anus turn frantic.
			<<else>>
				frantic taint rubbing starts to pay off.
			<</if>>
		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
			frantic rubbing starts to produce lewd noises.
		<<elseif $activeSlave.dick > 0>>
			jacking off starts to produce lewd noises.
		<<elseif canDoVaginal($activeSlave) || canDoVaginal($activeSlave)>>
			index and middle fingers slip inside $himself.
		<<else>>
			frantic taint rubbing starts to pay off.
		<</if>>
		$He gasps your name with $his orgasm, and then turns and @@.mediumaquamarine;thanks you@@ prettily.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Fist $his ass">>
		<<replace "#result">>
			You tell $him to <<if hasBothLegs($activeSlave)>>grab $his ankles<<else>>bend over<</if>>. $He giggles and<<if $activeSlave.belly >= 5000>> carefully<</if>> complies<<if $activeSlave.belly >= 120000>> to the best of $his ability<</if>>, relaxing $his <<if $activeSlave.anus > 2>>asspussy<<elseif $activeSlave.anus == 2>>asshole<<else>>little ass<</if>> in the expectation of <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>>, but starts with surprise when $he feels two warm, lubricated fingers slide into $his rectum.
			<<if $activeSlave.anus > 2>>
				$He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $him, though, $he collapses to $his knees,
				<<if ($activeSlave.fetish == "buttslut")>>
					<<if !canTalk($activeSlave)>>
						whining and begging nonverbally
					<<else>>
						panting, "Plea<<s>>e, fi<<s>>t my hole without mer<<c>>y, <<Master>>!"
					<</if>>
				<<else>>
					whining and begging nonverbally.
				<</if>>
				You kick the lotion towards $his hand; $he gets the message and starts to frantically
				<<if ($activeSlave.chastityPenis == 1)>>
					rub $his taint.
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
					rub $himself.
				<<elseif $activeSlave.dick > 0>>
					jerk off.
				<<elseif canDoVaginal($activeSlave)>>
					jill off.
				<<else>>
					rub $his taint.
				<</if>>
				$He manages to climax promptly, $his overstimulated sphincter helping, no doubt. $He slumps to the ground when you withdraw your hand, gasping, but you haul $him around so $he can <<if $PC.dick != 0>>suck you off<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's already masturbating again.
			<<elseif $activeSlave.anus == 2>>
				$He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and does $his best to relax. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. When you withdraw it and press it back in, slowly starting to fist fuck $his ass, though, $he collapses to $his knees,
				<<if ($activeSlave.fetish == "buttslut")>>
					<<if !canTalk($activeSlave)>>
						crying
					<<else>>
						sobbing, "Plea<<s>>e, fi<<s>>t my tight hole without mer<<c>>y, <<Master>>!"
					<</if>>
				<<else>>
					crying.
				<</if>>
				You kick the lotion towards $his hand; $he gets the message and starts to frantically
				<<if ($activeSlave.chastityPenis == 1)>>
					rub $his taint.
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
					rub $himself.
				<<elseif $activeSlave.dick > 0>>
					jerk off.
				<<elseif canDoVaginal($activeSlave)>>
					jill off.
				<<else>>
					rub $his taint.
				<</if>>
				$He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, but you haul $his around so $he can <<if $PC.dick != 0>>suck you off<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and weeping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's tentatively masturbating again.
			<<else>>
				$He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses to $his knees,
				<<if ($activeSlave.fetish == "buttslut")>>
					<<if !canTalk($activeSlave)>>
						begging you to be gentle
					<<else>>
						sobbing, "Plea<<s>>e, don't ruin my favorite hole, <<Master>>!"
					<</if>>
				<<else>>
					begging you to be gentle.
				<</if>>
				You kick the lotion towards $his hand; $he gets the message and starts to frantically
				<<if ($activeSlave.chastityPenis == 1)>>
					rub $his taint.
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
					rub $himself.
				<<elseif $activeSlave.dick > 0>>
					jerk off.
				<<elseif canDoVaginal($activeSlave)>>
					jill off.
				<<else>>
					rub $his taint.
				<</if>>
				As $he works $his sphincter relaxes bit by bit, and you advance your fist up $his butt. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, but you haul $him around so $he can <<if $PC.dick != 0>>suck you off<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly in confusion and disarray, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, and by the time you finish $he hasn't yet worked up the courage to touch $his @@.lime;newly widened backdoor.@@
				<<set $activeSlave.anus += 1>>
			<</if>>
			<<set $activeSlave.devotion += 5>>
		<</replace>>
	<</link>>
<</if>>
<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
	<br><<link "Fist $his pussy">>
		<<replace "#result">>
			You slide up behind $him and run a possessive hand down<<if $activeSlave.belly >= 1500>> $his swollen midriff down<</if>> to finger $his pussylips. $He compliantly cocks $his hips backward for you, and is surprised to find a couple of warm, lubricated fingers rather than <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> sliding into $his ready cunt.
			<<if $activeSlave.vagina > 2>>
				$He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $his huge cunt with your hand, though, $he collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, whining and begging nonverbally. You kick the lotion towards $his hand; $he gets the message and starts to frantically
				<<if ($activeSlave.chastityPenis == 1)>>
					rub $his taint.
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
					rub $himself.
				<<elseif $activeSlave.dick > 0>>
					jerk off.
				<<elseif canDoVaginal($activeSlave)>>
					rub $his clit.
				<<else>>
					rub $his taint.
				<</if>>
				$He manages to climax promptly, $his big vagina squeezing your hand strongly. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his open, pink-walled channel. You haul $his around so $he can <<if $PC.dick != 0>>suck you off<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's replaced your hand with $his own.
				<<set $activeSlave.devotion += 5>>
			<<elseif $activeSlave.vagina == 2>>
				$He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and hurriedly gets down <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>on $his knees<</if>> to present a more comfortable angle. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. You kick the lotion towards $his hand; $he gets the message and starts to frantically
				<<if ($activeSlave.chastityPenis == 1)>>
					rub $his taint
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
					rub $himself
				<<elseif $activeSlave.dick > 0>>
					jerk off
				<<elseif canDoVaginal($activeSlave)>>
					rub $his clit
				<<else>>
					rub $his taint
				<</if>>
				as you slowly fist fuck $him. $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $him around so $he can <<if $PC.dick != 0>>suck you off<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and gasping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's masturbating again.
				<<set $activeSlave.devotion += 5>>
			<<else>>
				$He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, begging you to be gentle. You kick the lotion towards $his hand; $he gets the message and starts to frantically
				<<if ($activeSlave.chastityPenis == 1)>>
					rub $his taint,
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
					rub $himself,
				<<elseif $activeSlave.dick > 0>>
					jerk off,
				<<elseif canDoVaginal($activeSlave)>>
					rub $his clit,
				<<else>>
					rub $his taint,
				<</if>>
				hoping to relax a little. As $he works $his pussy relaxes bit by bit, and you advance your fist into $his womanhood. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $his around so $he can <<if $PC.dick != 0>>suck you off<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly with overstimulation, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's gingerly massaging $his @@.lime;newly loosened cunt.@@
				<<set $activeSlave.devotion += 5, $activeSlave.vagina += 1>>
			<</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "sore shoulders">>

<<link "Make $him work it out">>
	<<replace "#result">>
		You tell $him to get ready to go into a handstand. $He looks puzzled, but anticipatory, and hurries to comply.
		<<if $activeSlave.boobs > 2000>> $He has to be careful doing it, since $his huge boobs come down and almost smother the poor slave once $he's inverted.<</if>>
		<<if $activeSlave.belly >= 300000>>
			$His belly is so hugely distended, $he'll practically require your assistance to stay inverted.
		<<elseif $activeSlave.weight > 130>>
			$His belly is so fat that $he has to take precautions to handle the massive shift in its mass when $he inverts.
		<</if>>
		You get up from behind your desk,<<if $PC.dick == 0>> don a strap-on,<</if>> and stand behind $him. You grab $him by the ankles, and $he giggles self-consciously, aware that in this position, $his <<if $activeSlave.vagina > -1>>holes are on display pretty much as openly as they can possibly be<<else>>butthole is on display pretty much as openly as it can possibly be<</if>>. $He groans with soreness as you lift $him by $his legs, pulling $him upward until $he's in a full handstand, $his knees clasping you on either side to steady $him. Carefully, you maneuver your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> to line it up with $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. Realizing what you intend, $he arches $his back and cocks $his hips,<<if $activeSlave.belly >= 5000>> pushing $his already bulging stomach even further out from $him, all the while<</if>> grunting and shivering as $his sore muscles stretch to support $him in the necessary gymnastic pose to angle $his hole just right.
		<br><br>
		With the combined pain and pleasure of the stretch already overstimulating $him, $he gives a huge sobbing gasp as you enter $him. You move your hands to $his
		<<if $activeSlave.weight > 95>>
			soft
		<<elseif $activeSlave.weight > 10>>
			plush
		<<elseif $activeSlave.muscles > 30>>
			well-muscled
		<<else>>
			trim
		<</if>>
		hips one at a time, and then begin to slowly move $his inverted body towards you and away from you, impaling $him. $His whole body shakes with pleasure and exertion, and when $he orgasms, you have to support $him to stop $him crashing to the ground<<if $activeSlave.belly >= 300000>>, a struggle thanks to $his excessive weight<</if>>. You let $him down onto the floor slowly<<if $activeSlave.vagina > -1>>, but tell $him that after a short break, $he's to get back up so you can see to $his anus<</if>>. $He's breathing very hard and still coming down off a terrific head rush, so $he just @@.hotpink;blows you a kiss.@@
		<<set $activeSlave.devotion += 4>>
		<<= VCheck.Both($activeSlave, 1)>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>>
<br><<link "Give $him a massage">>
	<<replace "#result">>
		You vault your desk, fold yourself into a cross-legged pose with your back against its front,
		<<if canSee($activeSlave)>>
			and point to the floor in front of you.
			<<if ($activeSlave.attrXX > 65) && ($PC.boobs >= 300)>>
				(As you do, $he watches the effects of the motion on your breasts with something like reverence<<if $PC.boobsImplant > 0>>, even though they don't move much thanks to your implants<</if>>.)
			<<elseif ($activeSlave.attrXY > 65) && ($PC.boobs < 300)>>
				(As you do, $he takes in the powerful play of your muscles with something like reverence<<if $PC.balls >= 5>>. $He certainly notices the motion of your massive nuts too<</if>>.)
			<</if>>
		<<elseif canHear($activeSlave)>>
			and loudly tap the floor in front of you.
		<<else>>
			and reach out to lightly tug $him towards you.
		<</if>>
		$He hurries over and gets down on the floor with you, conforming to your manual guidance that $he should sit with $his back to you. You place your hands on either side of $his neck, run them capably down $his spine, and then back up to explore $his shoulders. $He gasps as $he realizes that you intend to give $him a massage, @@.mediumaquamarine;impressed@@ and a little perturbed that you would do this for $him. Indeed, it's unusual for a slaveowner to do something like this, but it's easily justifiable as hands-on maintenance of your property. You tell $him so as your fingers begin to probe $his muscles in more detail, eliciting a shiver<<if canTalk($activeSlave)>>.<<else>> and a tiny "Ye<<s>>, <<Master>>."<</if>> $He begins to breathe rather hard, and you notice
		<<if $activeSlave.belly >= 120000>>
			$him starting to shift $his hips uncomfortably. $His _belly belly blocks any view of $his crotch in the reflective wall opposite $him, but you can smell the precum beginning to flow under the crotch hiding orb.
		<<elseif ($activeSlave.chastityPenis == 1)>>
			$him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as caged as ever.
		<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
			$him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as limp as ever.
		<<elseif ($activeSlave.dick > 0)>>
			$him starting to shift $his hips uncomfortably. You see in the reflective wall opposite $him that $his cock is almost agonizingly hard.
		<<elseif $activeSlave.vagina == -1>>
			$him starting to shift $his ass uncomfortably. $He must really want it, and of course, $he knows that $his butt is $his main source of stimulation now.
		<<else>>
			the wonderful aroma of female arousal beginning to permeate the office as $he starts to shift $his hips uncomfortably.
		<</if>>
		<<set $activeSlave.trust += 2>>
		<br><br><span id="result2">
			<<link "Tell $him $he's free to masturbate">>
			<<replace "#result2">>
				You lean forward until your lips graze one of $his ears, and tell $him that $he can touch $himself if $he wants.
				<<if !canTalk($activeSlave)>>
					$He raises a shaky hand to gesture @@.mediumaquamarine;$his thanks@@ as the other
				<<else>>
					"@@.mediumaquamarine;Thank you@@ <<Master>>!" $he squeaks as a hand
				<</if>>
				dives for $his crotch. $He
				<<if ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
					rubs $his perineum and anus
				<<elseif ($activeSlave.chastityVagina)>>
					rubs $his perineum
				<<elseif ($activeSlave.vagina > -1)>>
					schlicks $himself
				<<elseif ($activeSlave.chastityPenis == 1)>>
					rubs $his perineum and anus
				<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
					rubs $his soft bitchclit
				<<else>>
					jacks off
				<</if>>
				shamelessly as you complete the massage, moaning with satisfaction as the competing sources of endorphins suffuse $him.
				<<set $activeSlave.trust += 2>>
				<</replace>>
			<</link>>
			<<if $activeSlave.anus > 0>>
				<br><<link "Fuck $him">>
				<<replace "#result2">>
					You gently push $his shoulders forward. $He moans as the forward lean stretches $his hip flexors, and then breathes deeply with relief as you pull $his legs back and out of their crossed position. The rush of a completed stretch crashes into $him, and $he relaxes completely. This change of position leaves $him with $his <<if $activeSlave.butt > 6>>massive ass<<elseif $activeSlave.butt > 3>>big butt<<else>>rear<</if>> pointed right at you, and $he knows what's coming next. $His <<if $activeSlave.anus > 2>>loose butthole relaxes completely into a gape that positively begs to be penetrated<<elseif $activeSlave.anus > 1>>relaxed anus opens into a slight gape that positively begs to be penetrated<<else>>tight anus relaxes slightly, $his rosebud begging to be fucked<</if>>. You rise partway to kneel behind $him, <<if $PC.dick == 0>>sliding fingers inside the slave's ass and humping your pussy against the heel of that hand<<else>>using a hand to guide your member inside the slave's ass<<if $PC.vagina != -1>>, not without teasing your own pussylips a bit<</if>><</if>>. $He gasps when your other hand grabs one of $his shoulders and continues the massage. You quickly find that working out a knot in $his muscles produces reflexive reactions across $his whole body, notably including $his anal sphincter. After you've driven $him into a state of @@.hotpink;mindless satiation@@ and climaxed yourself, you let $him slump to the floor and curl up around $his sweaty body.
					<<set $activeSlave.devotion += 2>>
					<<= VCheck.Anal($activeSlave, 1)>>
					<</replace>>
				<</link>>
			<</if>>
		</span>
	<</replace>>
<</link>>

<<case "bed snuggle">>

<<link "Make the meeting">>
	<<replace "#result">>
		<<set _meetingBonus = Math.trunc($cash/10000)*1000>>
		<<if _meetingBonus > 5000>>
			<<set _meetingBonus = 5000>>
		<<elseif _meetingBonus < 1000>>
			<<set _meetingBonus = 1000>>
		<</if>>
		You finish the motion and get on with your day. $He burrows into the warm place on the bed where your body lay, which is actually an excellent sign of $his mental state. It suggests that $his dreaming mind is quite comfortable with your presence<<if canSmell($activeSlave)>> and even smell<</if>>. You make the meeting, consoling yourself with the thought that you're hardly lacking for opportunities to <<if $PC.dick != 0>>stick your dick in<<else>>have sex with<</if>> $activeSlave.slaveName. The business opportunity turns out to be @@.yellowgreen;quite profitable;@@ you're glad you didn't pass it up.
		<<run cashX(_meetingBonus, "event", $activeSlave)>>
	<</replace>>
<</link>>
<br><<link "Call in from where you are">>
	<<replace "#result">>
		<<set _meetingBonus = Math.trunc($cash/10000)*1000>>
		<<if _meetingBonus > 5000>>
			<<set _meetingBonus = 5000>>
		<<elseif _meetingBonus < 1000>>
			<<set _meetingBonus = 1000>>
		<</if>>
		You tell $assistant.name to inform your business contacts that you'll be attending the meeting by telepresence. A camera mounted above you focuses tightly on your face, making it look like you're relaxing, but concealing the fact that you have a naked
		<<if $activeSlave.physicalAge > 30>>
			$woman
		<<elseif $activeSlave.physicalAge > 18>>
			$girl
		<<elseif $activeSlave.physicalAge > 12>>
			teen
		<<else>>
			kid
		<</if>>
		draped across you. The meeting is long enough that your interlocutors eventually realize that something unusual is going on, especially once $he wakes up and starts sleepily <<if $PC.dick != 0>>sucking your dick<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eating you out<</if>>, out of frame. They're @@.health.dec;slightly annoyed,@@ since having sex during meetings is still considered a minor faux pas, but you @@.yellowgreen;close the deal,@@ and $activeSlave.slaveName is @@.hotpink;very pleased@@ that you would rearrange your affairs to make time for <<if $PC.dick != 0>>one of $his blowjobs<<else>>oral sex with $him<</if>>.
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<<run cashX(_meetingBonus, "event", $activeSlave)>>
		<<run repX(forceNeg(50), "event", $activeSlave)>>
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Go back to sleep">>
	<<replace "#result">>
		You tell $assistant.name to cancel the appointment, plant a kiss atop your bedmate's sleeping head, and go back to sleep yourself, with the peerless comfort of a warm, naked
		<<if $activeSlave.physicalAge > 30>>
			$woman
		<<elseif $activeSlave.physicalAge > 18>>
			$girl
		<<elseif $activeSlave.physicalAge > 12>>
			teen
		<<else>>
			kid
		<</if>>
		cuddled up beside you. <<= capFirstChar($assistant.name)>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in $his <<= App.Desc.eyesColor($activeSlave)>> as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on $his face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>>
		<br><br>
		Since you're awake, $he rolls onto $his face and then further, to place $his back and <<if $activeSlave.butt > 5>>massive ass<<elseif $activeSlave.butt > 2>>healthy rear<<else>>butt<</if>> against you, making sure to drag $his $activeSlave.nipples nipples against you the whole way. You accept the invitation and spoon $him, <<if $activeSlave.height >= 185>>your bodies lining up well, since $he's as tall as you are<<elseif $activeSlave.height >= 160>>$his body fitting neatly within the embrace of your larger frame<<else>>$his small body fitting entirely within your embrace<</if>>. $His <<if $activeSlave.muscles > 30>>muscles<<else>>softness<</if>> and warmth awaken your desire, and $he feels <<if $PC.dick != 0>>your stiffening cock beginning to press against <<if !hasBothLegs($activeSlave)>>$his perineum. $He shifts to slide $himself along its shaft<<if $PC.vagina != -1>> and down to where your pussy begins<</if>><<else>>the place between $his thighs. $He shifts to let your dick slide between them, and reaches down to massage its head<</if>><<else>>heat building against $his butt. <<if !hasAnyArms($activeSlave)>>$He does $his best to grind against you, since $he can't caress you without hands<<else>>$He snakes a hand behind $himself to caress your womanhood, and begins to gently <<if hasBothArms($activeSlave)>>masturbate with the other<<else>>grind against you<</if>><</if>><</if>>.
		<<if $PC.dick != 0>>
			<<if ($activeSlave.vagina > 0) && ($activeSlave.anus > 0) && canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				$He begins to shift farther forward and back along your dick, causing its head to press against $his anus and then slide forward to nestle between $his pussylips. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
					$He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal
					<<set _didAnal = 1>>
				<<else>>
					$He hikes $himself up to give your dickhead a last teasing press against $his butt before cocking $his hips and sliding your cock into $his soaking cunt. You make love
					<<set _didVaginal = 1>>
				<</if>>
			<<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
				$He cocks $his hips and so that your cock is pressing against $his soaked cunt. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
				<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1) && isFertile($activeSlave)>>
					$He pushes against you until you are fully inserted into $his pussy. $He's ripe for impregnation and needs your baby in $him. You make love
				<<elseif ($activeSlave.vagina > 2)>>
					$He easily slides your cock into $his loose pussy. You make love
				<<else>>
					$He hikes $himself up a bit, and then gently slides your cock into $his tight pussy. You make love
				<</if>>
				<<set _didVaginal = 1>>
			<<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>>
				$He begins to shift farther forward along your dick, causing its head to press against $his anus. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek.
				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
					$He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal
					<<set _didAnal = 1>>
				<<elseif ($activeSlave.anus > 2)>>
					$He hikes $himself up a bit, and then easily slides your cock into $his loose rectum. You share loving anal
					<<set _didAnal = 1>>
				<<else>>
					$He decides against buttsex, and <<if !hasBothLegs($activeSlave)>>contents $himself with grinding<<else>>presses $his thighs together so you can frot $him.<</if>> After making love
				<</if>>
			<<else>>
				You <<if !hasBothLegs($activeSlave)>>grind against $him<<else>>frot $him<</if>>
			<</if>>
		<<else>>
			You reach around $him and attend to a nipple with each hand, spreading your attention to the whole breast once they<<if $activeSlave.nipples != "fuckable">>'re perfectly stiff<<else>>'ve tightened around your fingers<</if>>. After sharing gentle lovemaking
		<</if>>
		for a while, until you sense that $he's on the edge of climax. Without warning, you lift the edge of the blankets and send a gust of cool air down $his front and <<if $activeSlave.dick > 0>>right onto $his cock<<else>>across $him <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>. $He gasps at the sudden overstimulation and then orgasms very strongly, jerking against you
		<<if !canTalk($activeSlave)>>
			and panting in lieu of an exclamation.
		<<else>>
			and <<say>>ing "Oh" over and over again.
		<</if>>
		<<if $PC.dick != 0>>$He clenches against your dick,<<if $PC.vagina != -1>> so hard that you can feel the rush of blood into your cunt,<</if>><<else>>$He works your pussy harder,<</if>> getting you off in turn, and then rolls over to plant a whole-hearted kiss on your lips.
		<<set $activeSlave.devotion += 4>>
		<<if _didAnal == 1>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<<elseif _didVaginal == 1>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>>
<br><<link "Spend the day in bed">>
	<<replace "#result">>
		What's the point of becoming a wealthy tycoon in an anarcho-libertarian paradise if you have to obey the rules all the time? You tell $assistant.name to cancel the appointment. Then, you wake your bedmate, and <<if $PC.dick != 0>>get a blowjob<<if $PC.vagina != -1>> and some attention for your pussy<</if>><<else>>have $him eat you out<</if>> under the sheet while you enjoy the lurid sunrise through the glass wall of your bedroom. When the sun is up and you've <<if $PC.dick != 0>>shot your load down $his throat<<else>>climaxed twice<</if>>, you pull the bemused $girl up alongside you again, bring the sheets up over you both, switch on a wallscreen, and ask $him if there's anything $he'd like to <<if canSee($activeSlave)>>watch<<elseif canHear($activeSlave)>>listen to<<else>>put on<</if>>. $He smiles incredulously, but after you encourage $him $he @@.mediumaquamarine;finds $his confidence@@ and admits that there's a Free Cities serial drama about slave life that $he enjoys. You put it on and watch three episodes with $him. It's terribly insipid, but there's a lot of explicit sex to liven things up, and all the actresses are nice enough to look at. $activeSlave.slaveName cuddles comfortably with you the entire time, <<if canSee($activeSlave)>>watching raptly<<elseif canHear($activeSlave)>>listening intently<<else>>staying as silent as possible<</if>> and doing $his best to explain the wretchedly trite plot you've missed.
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		You have a meal delivered,
		<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
			fuck $him,
			<<set _didVaginal = 1>>
		<<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>>
			fuck $his butt,
			<<set _didAnal = 1>>
		<<else>>
			fuck $him,
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		and then share a shower and a nap. Thus invigorated, you decide to tour the arcology's nightlife, and tell $him $he'll accompany you. $He hurries to get ready, filled with excitement. A lovely day.
		<<set $activeSlave.trust += 4>>
		<<if _didAnal == 1>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<<elseif _didVaginal == 1>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>>

<<case "confident tanning">>

<<link "Ask $him if $he needs help with $his tan">>
	<<replace "#result">>
		You ask $him if $he needs help with $his tan. $He looks momentarily confused, but then $he catches <<if canSee($activeSlave)>>the gleam in your eye <<if $PC.dick != 0>>and notices your stiffening member<<else>>and the flush on your cheeks<</if>><<else>>on to the swing of things<</if>>. "Ooh," $he <<say>>s cheekily,
		<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
			"my back i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and lies still, sighing with submissive relaxation as you <<if $activeSlave.belly >= 5000>>climb atop <<else>>settle against<</if>>$his warm back and take $him.
			<<if canDoVaginal($activeSlave)>>
				<<set _didVaginal = 1>>
			<<else>>
				<<set _didAnal = 1>>
			<</if>>
		<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
			"my fa<<c>>e is getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me! I need <<s>>omewhere to hide it!" $He scrambles hungrily for your crotch, nuzzling you, licking you, and <<if $PC.dick != 0>>sucking your dick<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eating you out<</if>>.
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
			"I'm getting <<s>>unburnt! I had better go in<<s>>ide. But <<Master>> everyone in there will <<s>>ee me naked!" $He looks at you in mock horror, and giggles with building lust as you pull $his sun-warmed body inside the arcology and into an open space for a good thorough public fucking.
			<<if canDoVaginal($activeSlave)>>
				<<set _didVaginal = 1>>
			<<else>>
				<<set _didAnal = 1>>
			<</if>>
		<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
			"my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spins to point $his rear end at the sun, hikes it up to present $his asshole to the light, and begins to wink it lewdly, begging you to save $his anus from a sunburn. $He giggles happily as $he feels <<if $PC.dick != 0>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, and starts to shove $himself back against you as hard as you're shoving it into $him.
			<<set _didAnal = 1>>
		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
			"my boob<<s>> are getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He wiggles $his torso around to make $himself bounce enticingly, and then giggles happily as you
			<<if $PC.dick != 0>>
				get on top of $him and slide yourself <<if $activeSlave.nipples != "fuckable">>between $his lotion-slick tits<<if $PC.vagina != -1>>, occasionally riding up to slide $his hard nipples between your pussylips<</if>><<else>>all the way into a fuckable tit and attending to the other with your fingers<</if>>.
			<<else>>
				begin to <<if $activeSlave.nipples != "fuckable">>play with<<else>>finger<</if>> $his nipples.
			<</if>>
			<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
		<<elseif $activeSlave.trust >= 80 && $activeSlave.toyHole == "dick" && canPenetrate($activeSlave)>>
			"my cock i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me find <<s>>omepla<<c>>e to hide it!" $He wiggles $his pelvis around to make $himself bounce enticingly, and then giggles happily as you get on top of $him and slip $his sun-warmed dick deep into your
			<<if $PC.vagina != -1>>
				pussy<<if $PC.dick != 0>>,<<else>>.<</if>>
				<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
			<<else>>
				asshole<<if $PC.dick != 0>>,<<else>>.<</if>>
				<<run seX($activeSlave, "penetrative", $PC, "anal")>>
			<</if>>
			<<if $PC.dick != 0>>shuddering with delight at the warmth tickling your prostate.<</if>>
			<<if canImpreg($PC, $activeSlave)>>
				<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
			<</if>>
		<<elseif ($activeSlave.vagina <= 0)>>
			"my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and spreads $his buttocks, begging you to cover $him up. $He moans as $he feels <<if $PC.dick != 0>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, $his sun-warmed buttocks clenching wonderfully against your crotch.
			<<set _didAnal = 1>>
		<<else>>
			"my pu<<ss>>y i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spreads $his legs invitingly, running a hand across $his clit and down to spread $his pussylips to the sunshine. $He moans as $he feels <<if $PC.dick != 0>>your cockhead<<else>>a strap-on<</if>> penetrate $him, $his sun-warmed chest warm against yours.
			<<set _didVaginal = 1>>
		<</if>>
		$He @@.mediumaquamarine;trusts you more@@ for being witty with $him, for allowing $him the simple pleasure of a little sunbathing — and for sharing fun sex with $him, of course.
		<<set $activeSlave.trust += 4>>
		<<if _didAnal == 1>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<<elseif _didVaginal == 1>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>>
<br><<link "Just enjoy the sunshine with $him">>
	<<replace "#result">>
		Wordlessly, you fetch a towel of your own. $He raises $his head a little to see if $he's needed, but as soon as $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> what you're doing, $he smiles with simple satisfaction and closes $his eyes again. You strip and lie down next to $him. $He made a good decision <<if $activeSlave.assignment == "rest">>about how to spend $his rest<<else>>about what to do with $his rest period<</if>>. The sun is warm and gentle, and the interminable demands of leadership and your harem suddenly seem very far away. You drop off for a short while, only waking when your apologetic personal assistant breaks in with notice of an upcoming meeting. As you get your senses back, you notice that $activeSlave.slaveName's hand is right next to yours, flattened out against the decking. $His eyes remain closed, and $his breath is steady; $he's fast asleep. It seems $he did not want to wake you, but @@.hotpink;wanted very much to be a little closer to you.@@ You consider canceling the meeting and waking the sun-warmed
		<<if $activeSlave.physicalAge > 30>>
			$woman,
		<<elseif $activeSlave.physicalAge > 17>>
			$girl,
		<<elseif $activeSlave.physicalAge > 12>>
			teen,
		<<else>>
			kid,
		<</if>>
		but you remember that you're not exactly starved for chances to fuck $him. Who knows when the sun will be this nice again?
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Bring your good slaves out for a day at the beach">>
	<<replace "#result">>
		You direct $assistant.name to bring your slaves who deserve it out for a day at the beach. There might be little sand out on the balcony, but there's plenty of warm sun. And beaches are overrated these days anyway, with the ocean becoming so unpredictable. <<= capFirstChar($assistant.name)>> advises them to get naked, and bring towels and sun lotion appropriate for their individual skin types, so they know they're going to get some sunshine, but they're surprised when they get outside. They're obviously expecting an orgy of some kind, but all they see is you and $activeSlave.slaveName luxuriating on the decking. As they arrive, they take the cue and line up with you one by one. After a long sunbathing session, you send a couple of them inside to bring out cool drinks, a beach ball, and other essentials. The hornier slaves are doubtful for a while, but eventually they all relax and @@.mediumaquamarine;gain confidence@@ from the simple, nonsexual pleasure of a little time in the sun.
		<<if ($activeSlave.ID != $HeadGirlID) && ($HeadGirlID != 0)>>
			<<setLocalPronouns _S.HeadGirl 2>>
			Your Head Girl _S.HeadGirl.slaveName quietly compliments the idea, and asks you how it came to you. You let _him2 know it was $activeSlave.slaveName's idea,
		<<else>>
			Another slave thanks you profusely, and politely asks you what gave you such a wonderful idea. You let them know it was $activeSlave.slaveName,
		<</if>>
		which $activeSlave.slaveName <<if canHear($activeSlave)>>overhears<<elseif canSee($activeSlave)>>witnesses<<else>>soon discovers<</if>>. $He blushes prettily, and @@.mediumaquamarine;is pleased@@ to <<if canHear($activeSlave)>>hear<<else>>learn<</if>> that a slave can receive credit for finding a good thing.
		<<set $activeSlave.trust++>>
		<<for _ress = 0; _ress < $slaves.length; _ress++>>
			<<if $slaves[_ress].devotion > 20>>
				<<set $slaves[_ress].trust++>>
			<</if>>
		<</for>>
	<</replace>>
<</link>>

<<case "devoted nympho">>

<<link "Make $him do that again">>
	<<replace "#result">>
		You laugh at $him kindly, and $he @@.mediumaquamarine;smiles with relief,@@ happy that you find $his wonderful and terrible sex drive amusing. After a cursory inspection, you
		<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a <<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around with things shoved up $his asshole
		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved in $his body
			<<else>>
				<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves standing around naked with humiliating things shoved up $his asshole
			<</if>>
		<<elseif ($activeSlave.fetish == "masochism") && ($activeSlave.fetishKnown == 1)>>
			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his hole
			<<else>>
				<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having painfully big things shoved up $his asshole
			<</if>>
		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && $activeSlave.boobs > 300>>
			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
			<<if $activeSlave.nipples == "fuckable">>
				pair of egg vibrators, let $him suck them wet and get them nestled inside $his nipples, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having things shoved inside $his nipplecunts
			<<else>>
				vibrating dildo, let $him suck it wet and get it nestled within $his cleavage, and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he loves having long, hard objects shoved between $his tits
			<</if>>
		<<else>>
			<<if canSee($activeSlave)>>toss<<else>>hand<</if>> $him a
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina > 2)>>vibrating dildo so big it will fill even $his gaping cunt<<elseif ($activeSlave.vagina > 1)>>sizable vibrating dildo<<else>>vibrating dildo<</if>>, let $him suck it wet and get it nestled inside $himself,
			<<else>>
				<<if ($activeSlave.anus > 2)>>vibrating buttplug so big it will fill even $his gaping backdoor<<elseif ($activeSlave.anus > 1)>>sizable vibrating buttplug<<else>>vibrating buttplug<</if>>, let $him suck it wet and get it nestled between $his buttcheeks,
			<</if>>
			and then tell $him to stand next to your desk. $He obeys, a bit puzzled, but $he has a very short refractory period
		<</if>>
		and $he comes again without much delay, without touching $his <<if ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>>bits<<elseif ($activeSlave.dick > 0)>>cock<<elseif $activeSlave.vagina == -1>>soft perineum, the only place $he has left<<else>>pussy<</if>>. You keep $him there for quite a while, the quivering, <<if canAchieveErection($activeSlave)>>cum-jetting<<elseif ($activeSlave.balls > 0)>>cum-squirting<<elseif ($activeSlave.dick > 0)>>ejaculating<<elseif ($activeSlave.lactation > 0)>>milk-squirting<<elseif $activeSlave.vagina == -1>>weakly dribbling<<else>>femcum-dripping<</if>> statue of a slave providing visual diversion for visitors.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<br><<link "Take pity on the poor nympho">>
	<<replace "#result">>
		$He shivers a little when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> you slide out from behind your desk and approach $him. $His overcharged sex drive allows $him no refractory period at all, and the hunger <<if !canSee($activeSlave)>>on $his face<<else>>in $his eyes<</if>> is undiminished. You pause to consider $him and $his face falls a little as $he wonders what you're planning. $He's wrong to doubt you;
		<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
			you pull $him in and embrace $him strongly, causing the submissive slut to melt into your
			<<if $PC.boobs >= 300>>
				<<if $PC.boobsImplant != 0>>
					firm chest.
				<<else>>
					soft chest.
				<</if>>
			<<elseif $PC.title == 0>>
				toned arms.
			<<else>>
				muscular arms.
			<</if>>
			You kiss $him aggressively, $his mouth opening to accept your dominant tongue as it slides into $him. Soon $he's sighing with contentment as something else slides into $him on the couch; $he clings to you with near desperation.
			<<if canDoVaginal($activeSlave)>>
				<<set _didVaginal = 1>>
			<<else>>
				<<set _didAnal = 1>>
			<</if>>
		<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
			you push the orally fixated slut to $his knees and <<if $PC.dick == 0>>ride $his face like it's a pussy you're tribbing<<else>>fuck $his face like you're trying to impregnate $his throat<</if>>.<<if hasAnyArms($activeSlave)>> $He's forced to hold onto your thighs for dear life, making it impossible for $him to touch $himself, but $he doesn't need to and climaxes again<<if hasBothArms($activeSlave)>> hands-free<</if>>.<</if>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
			you set up a live feed on the screens throughout the arcology, pointing down from the ceiling above your desk, make $him lie down on the desk top, and fuck $him. $He <<if canSee($activeSlave)>>stares into<<else>>gazes towards<</if>> the camera's lens with mixed shame and relish as the full weight of the humiliation of being used in front of the whole arcology bears down on $his heaving chest.
			<<if canDoVaginal($activeSlave)>>
				<<set _didVaginal = 1>>
			<<else>>
				<<set _didAnal = 1>>
			<</if>>
		<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
			you <<if canSee($activeSlave)>>point at the couch<<else>>state "couch"<</if>> and $he hurries over to kneel and offer you $his asshole. Since the butthole slut clearly doesn't need any foreplay today, the first contact between you is <<if $PC.dick != 0>>the tip of your cock<<else>>the head of your strap-on<</if>> pressing forcefully against $his anus. $He gives a huge shuddering gasp of satisfaction as $his sphincter stretches around the invading phallus.
			<<set _didAnal = 1>>
		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
			you play with $his nipples until they<<if $activeSlave.nipples != "fuckable">>'re good and hard<<else>> swallow your fingers<</if>>, while $he stands there shamelessly presenting $his breasts for your play. Once you're satisfied they can't get any harder, you
			<<if $PC.dick != 0>>
				push $him to $his knees<<if $activeSlave.nipples != "fuckable">>, tell $him to take over the nipple stimulation,<</if>> and fuck $his boobs.
			<<else>>
				throw $him down on the couch, straddle $his boobs, and <<if $activeSlave.nipples != "fuckable">>ride each of $his erect<<else>>trib $his<</if>> nipples in turn.
			<</if>>
			<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
		<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
			you tell $him you're going to put a slave in $his belly, bringing $him instantaneously back to painfully full arousal. You take $him on the couch in the missionary position so $he can stare into your face.
			<<if !canDoVaginal($activeSlave)>>
				It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
			<<elseif ($PC.dick == 0)>>
				The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
			<<elseif ($activeSlave.pregKnown == 1)>>
				$He's already knocked up, but that just means that $he shamelessly begs you to fuck $him even more pregnant.
			<<elseif !isFertile($activeSlave)>>
				$He's not fertile, but $he doesn't let that get in $his way.
			<</if>>
			<<if canDoVaginal($activeSlave)>>
				<<set _didVaginal = 1>>
			<<else>>
				<<set _didAnal = 1>>
			<</if>>
		<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
			you shove $him back towards the couch and leap onto $him, pulling your legs into a scissor position. You bang $him hard, and $he grinds $his hips back at you with enthusiasm. This mutually challenging fuck goes on for a long time, to sweaty, endorphin-fueled muscle exhaustion.
			<<if canDoVaginal($activeSlave)>>
				<<set _didVaginal = 1>>
			<<else>>
				<<set _didAnal = 1>>
			<</if>>
		<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
			you call in a less favored slave and let $activeSlave.slaveName spank $him until $he's fully aroused again. That done, you and $activeSlave.slaveName spitroast the poor girl, with $activeSlave.slaveName taking the rear end. Judging by how the victim screams into your <<if $PC.dick != 0>>cock<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>cunt<</if>>, $activeSlave.slaveName is not being very nice to $him at all.
			<<run seX($PC, "penetrative", "slaves", "oral")>>
			<<run seX($activeSlave, "penetrative", "slaves", "oral")>>
		<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
			you prowl around $him to let $his masochistic anticipation build before nudging $him in the back of the knees. $He collapses helplessly and you drag $him over to the couch, slinging $him across its back and fucking $him without mercy. When the pleasurable pain loses its edge, you slide a finger into $him alongside your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, eliciting an appreciative shriek.
			<<if canDoVaginal($activeSlave)>>
				<<set _didVaginal = 1>>
			<<else>>
				<<set _didAnal = 1>>
			<</if>>
		<</if>>
		<<if _didAnal == 1>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<<elseif _didVaginal == 1>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</if>>
		$He's extremely pleased <<if canSee($activeSlave)>>to see $himself<<elseif canHear($activeSlave)>>to hear $he's<<else>>to learn $he's<</if>> on the inspection schedule for the same time tomorrow, and is almost bouncing with eagerness the next morning.
		<<if ($activeSlave.fetishStrength == 100) || ($activeSlave.fetishKnown == 0) || ($activeSlave.fetish == "none")>>
			Being a nympho is a never-ending struggle in some ways, and $he is @@.hotpink;deeply grateful@@ to you for understanding $him.
			<<set $activeSlave.devotion += 5>>
		<<else>>
			Since $he's developing $his kinks, this delightful reinforcement @@.lightcoral;advances $his fetish.@@
			<<set $activeSlave.fetishStrength += 4>>
		<</if>>
	<</replace>>
<</link>>

<<case "devoted exhibition">>

<<link "Inspect $him normally">>
	<<replace "#result">>
		You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. $He understands that $he did the right thing, and @@.mediumaquamarine;trusts@@ you a bit more. Since you're paying no attention to the unusual location for the inspection, $he does $his very best to perform $his role normally, too. $He <<if ($activeSlave.boobs > 2000)>>lifts $his enormous boobs one by one<<elseif ($activeSlave.boobs > 1000)>>hefts $his heavy breasts one by one<<elseif ($activeSlave.boobs > 300)>>squeezes $his boobs one by one<<else>><<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> the nipples capping $his flat tits<</if>>, <<if ($activeSlave.skill.oral > 60)>>opens $his mouth and wiggles $his expert tongue<<elseif ($activeSlave.lips > 40)>>opens $his mouth and licks $his puffy lips<<else>>opens $his mouth and sticks out $his tongue<</if>>,
		<<if ($activeSlave.balls > 1)>>
			pulls $his ballsack gently downward to display the outline of $his testes,
		<<elseif ($activeSlave.dick > 0)>>
			lifts $his dick by its tip and turns sideways to display it,
		<<elseif ($activeSlave.labia > 0)>>
			carefully spreads $his generous petals to show off $his pussy,
		<<elseif ($activeSlave.clit > 0)>>
			eases $his clitoral hood back to completely reveal $his massive clitoris,
		<<elseif $activeSlave.vagina == -1>>
			lets you see the featureless, mannequin place between $his legs,
		<<else>>
			spreads $his pussy,
		<</if>>
		turns around and <<if ($activeSlave.butt > 5)>>pulls $his massive buttocks apart to reveal<<elseif ($activeSlave.butt > 2)>>spreads $his healthy buttocks to reveal<<else>>bends over to display<</if>> $his <<if ($activeSlave.anus > 2)>>whorish rear pussy<<elseif ($activeSlave.anus > 1)>>inviting backdoor<<else>>tight anus<</if>>, winks it once, and then straightens, done.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<br><<link "Inspect $him and then leave $him out for the public to use">>
	<<replace "#result">>
		You pay no attention to the unusual circumstances, and conduct a normal inspection of $his naked body. When done, you rise from your seat and produce a short strap. $His breath quickens as you bind $his <<if hasBothArms($activeSlave)>>hands and pull them<<elseif hasAnyArms($activeSlave)>>hand and pulls it<<else>>body and pulls $him<</if>> down towards a bench; you secure $him so $he can crouch or kneel, naked and vulnerable. As you leave, $he understands, and glances around the balcony. Fixing on the nearest citizen paying attention to $him, $he looks him straight in the eye
		<<switch $activeSlave.fetish>>
		<<case "submissive">>
			and begs him submissively to do whatever he wants to $him.
		<<case "cumslut">>
			and begs him to come over and feed $him his <<if canTaste($activeSlave)>>delicious<<else>>warm<</if>> cum.
		<<case "humiliation">>
			as $he begins to wordlessly writhe and blush with the @@.hotpink;excitement@@ of this humiliating situation.
			<<set $activeSlave.devotion += 2>>
		<<case "buttslut">>
			and then turns as best $he can to offer him $his backdoor, begging him to stuff his cock up $his ass.
		<<case "boobs">>
			and swings $his torso from side to side, bouncing $his breasts around lewdly.
		<<case "pregnancy">>
			and begs him to come over and shoot his seed into $him.
		<<case "dom" "sadist">>
			and challenges him to come over and fuck $him.
		<<case "masochist">>
			and, applying a bit of reverse psychology, begins to beg him not to spank $his helpless behind.
		<<default>>
			and implores him to fuck $him.
		<</switch>>
		You detail another slave to fetch $him after the public loses interest. A couple of hours later, you catch sight of $him limping towards the showers, thoroughly disheveled. $His $activeSlave.skin face and chest are spattered with cum, $he's got <<if $activeSlave.dick > 0>>$his own ejaculate<<else>>pussyjuice<</if>> all over $his thighs, and $his well-fucked butthole is dripping semen. $He's certainly worked hard @@.green;improving your reputation.@@
		<<run repX(1250, "event", $activeSlave)>>
		<<run seX($activeSlave, "mammary", "public", "penetrative", 10)>>
		<<run seX($activeSlave, "oral", "public", "penetrative", 10)>>
		<<= VCheck.Anal($activeSlave, 10)>>
		<<if canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 10)>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>>
		<</if>>
	<</replace>>
<</link>>
<<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
	<br><<link "Fuck $him like $he likes it">>
		<<replace "#result">>
			$He's completely unsurprised when you crook a finger at $him after a brief inspection, and skips over, looking excited. It's not in vain.
			<<if ($activeSlave.fetish == "submissive")>>
				You shove $him across the back of a balcony bench and take $him as $he moans with pleasure, happy you're using $his body. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby.
				<<run repX(250, "event", $activeSlave)>>
				<<if canDoVaginal($activeSlave)>>
					<<set _didVaginal = 1>>
				<<else>>
					<<set _didAnal = 1>>
				<</if>>
			<<elseif ($activeSlave.fetish == "cumslut")>>
				You push $him down to $his knees and <<if $PC.dick != 0>>shove your cock down $his throat<<if $PC.vagina != -1>> so far $he can almost reach your pussy with the tip of $his tongue<</if>><<else>>ride $his face<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, moaning into you as $he pleasures your <<if $PC.dick != 0>>dick<<else>>cunt<</if>>.
				<<run repX(250, "event", $activeSlave)>>
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<<elseif ($activeSlave.fetish == "humiliation")>>
				You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then pull $his legs as wide as they'll go as you fuck $him, displaying everything to the whole balcony<<if $activeSlave.belly >= 120000>>; $his _belly stomach hangs so low that it blocks the view, however<<else>><<if $PC.vagina != -1>><<if $PC.dick != 0>>: incidentally including your own pussy, which slides up and down as you piston the cock above it in and out of $him<</if>><</if>><</if>>. $He @@.hotpink;laps up@@ the @@.green;openly aroused@@ stares from $his growing audience.
				<<run repX(500, "event", $activeSlave)>>
				<<set $activeSlave.devotion += 3>>
				<<if canDoVaginal($activeSlave)>>
					<<set _didVaginal = 1>>
				<<else>>
					<<set _didAnal = 1>>
				<</if>>
			<<elseif ($activeSlave.fetish == "buttslut")>>
				You shove $him across the back of a balcony bench and fuck $his ass as $he moans with pleasure, happy you're using $his favorite hole. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too focused on $his well-filled rectum to care.
				<<run repX(250, "event", $activeSlave)>>
				<<set _didAnal = 1>>
			<<elseif ($activeSlave.fetish == "boobs")>>
				You push $him down to $his knees and <<if $PC.dick != 0>>press your cock between $his tits<<else>>ride $his breasts<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, enjoying the feeling of your <<if $PC.dick != 0>>dick pounding $his <<if $activeSlave.nipples != "fuckable">>cleavage<<else>>breast<</if>><<else>>cunt rubbing against one of $his <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>.
				<<run repX(250, "event", $activeSlave)>>
				<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
			<<elseif ($activeSlave.fetish == "pregnancy")>>
				You shove $him across the back of a balcony bench and whisper in $his ear that you're going to breed $him in public. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, too aroused by the idea to care.
				<<if !canDoVaginal($activeSlave)>>
					It's $his butt you're fucking, but $he doesn't let that disrupt $his fantasy.
				<<elseif ($PC.dick == 0)>>
					The phallus in $him is a strap-on, but $he doesn't let that disrupt $his fantasy.
				<<elseif ($activeSlave.pregKnown == 1)>>
					$He's already knocked up, but $he doesn't let that disrupt $his fantasy of getting even more pregnant.
				<<elseif !isFertile($activeSlave)>>
					$He's not fertile, but $he doesn't let that disrupt $his fantasy.
				<</if>>
				<<run repX(250, "event", $activeSlave)>>
				<<if canDoVaginal($activeSlave)>>
					<<set _didVaginal = 1>>
				<<else>>
					<<set _didAnal = 1>>
				<</if>>
			<<elseif ($activeSlave.fetish == "dom")>>
				You shove $him back against a wall and seat your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> inside $him while $he wraps $his legs around you, taking a good grip on $his butt, and hauling $him off the wall again, holding $him in midair<<if $activeSlave.belly >= 600000>> (though $his _belly belly is resting on the ground)<</if>>. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on fucking as hard as $he possibly can.
				<<run repX(250, "event", $activeSlave)>>
				<<if canDoVaginal($activeSlave)>>
					<<set _didVaginal = 1>>
				<<else>>
					<<set _didAnal = 1>>
				<</if>>
			<<elseif ($activeSlave.fetish == "sadist")>>
				You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then hand $him a tablet after pulling up a feed from a nearby cellblock. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, enthralled by the scenes of abuse and rape on the tablet in $his trembling hands.
				<<run repX(250, "event", $activeSlave)>>
				<<if canDoVaginal($activeSlave)>>
					<<set _didVaginal = 1>>
				<<else>>
					<<set _didAnal = 1>>
				<</if>>
			<<elseif ($activeSlave.fetish == "masochist")>>
				You spin $him around cruelly, jerking $him back against your torso and shoving your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his butthole without bending $him over first. $He ignores the @@.green;mildly appreciative@@ stares from passersby as you fuck $him, too lost in the delicious agony of a harsh standing anal fuck to care.
				<<run repX(250, "event", $activeSlave)>>
				<<set _didAnal = 1>>
			<<else>>
				You appeal to $his uncomplicated tastes by letting $him ride you as you sit on a balcony bench, your hands idly <<if $activeSlave.nipples != "fuckable">>playing with<<else>>fingering<</if>> $his nipples as $he rocks $his hips against you. $He pays no attention to the @@.green;mildly appreciative@@ stares from passersby, concentrating on your face, smiling as you react to $his efforts.
				<<run repX(250, "event", $activeSlave)>>
				<<if canDoVaginal($activeSlave)>>
					<<set _didVaginal = 1>>
				<<else>>
					<<set _didAnal = 1>>
				<</if>>
			<</if>>
			<<if _didAnal == 1>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<<elseif _didVaginal == 1>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<</if>>
			<<if ($activeSlave.fetishStrength == 100) || ($activeSlave.fetish == "none")>>
				Since $he's totally sure of what gets $him off, this public display that you know it too makes $him @@.mediumaquamarine;trust you.@@
				<<set $activeSlave.trust += 5>>
			<<else>>
				Since $he's developing $his kinks, this public display of $his sexual identity @@.lightcoral;advances $his fetish.@@
				<<set $activeSlave.fetishStrength += 4>>
			<</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "permitted masturbation">>

<<link "Sleep with $him">>
	<<replace "#result">>
		$He starts with surprise when $he feels your hand on $his
		<<if $activeSlave.weight > 160>>
			rippling
		<<elseif $activeSlave.weight > 95>>
			soft
		<<elseif ($activeSlave.muscles > 95)>>
			ripped
		<<elseif ($activeSlave.muscles > 30)>>
			muscular
		<<elseif ($activeSlave.muscles > 5)>>
			toned
		<<else>>
			soft
		<</if>>
		back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You massage $his warm skin, enjoying the animal energy of the onanistic spectacle laid out before you. $He builds toward climax, turning $his head <<if canSee($activeSlave)>>to glance at<<else>>to listen to<</if>> you once or twice, but eventually realizing that you're just here to watch. $He turns over hurriedly for $his climax, efficiently
		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
			dribbling $his weak orgasm out onto $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
		<<elseif $activeSlave.balls > 3>>
			blowing $his massive load all over $his<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly<<if $activeSlave.belly < 10000>> and chest<</if>>
		<<elseif $activeSlave.balls > 0>>
			blowing cum up onto $his own<<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant<</if>><</if>> belly
		<<elseif $activeSlave.vagina == -1>>
			jerking $his tiny little front hole sideways
		<<else>>
			jerking $his wet pussy upward
		<</if>>
		to avoid having to change the sheets. $He gets up carefully and heads off for a quick shower. When $he returns, it's to <<if canSee($activeSlave)>>a sight<<else>>a sound<</if>> that brings $him to a shocked standstill: you're in $his bed, sound asleep. You had a long day, and the soft bed, warmed by $his pretty body, felt very nice. After some deliberation, $he crawls in beside you, snuggling up to offer you more of $his body heat, direct from the source. $He is impressed almost to tears at the @@.mediumaquamarine;trust@@ you display in $him, and relaxes completely as you, dominant even when unconscious, encircle $his
		<<if $activeSlave.preg > 20>>
			pregnant belly
		<<elseif $activeSlave.belly >= 100000>>
			_belly middle
		<<elseif ($activeSlave.boobs > 2000)>>
			massive mammaries
		<<else>>
			shoulders
		<</if>>
		with your arms and pull $him in close.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<br><<link "Exhaust $him">>
	<<replace "#result">>
		$He starts with surprise when $he feels your hand on $his
		<<if $activeSlave.weight > 160>>
			rippling
		<<elseif $activeSlave.weight > 95>>
			soft
		<<elseif ($activeSlave.muscles > 95)>>
			ripped
		<<elseif ($activeSlave.muscles > 30)>>
			muscular
		<<elseif ($activeSlave.muscles > 5)>>
			toned
		<<else>>
			soft
		<</if>>
		back, but is accustomed to your touch and knows who you are. $He does not pause $his masturbation, knowing that if you want $him to, you'll tell $him. You take a moment to enjoy the warmth of the working slave's body before gently taking the hand $he's using to buttfuck $himself, <<if ($activeSlave.anus > 2)>>pulling the dildo free of $his relaxed asshole, and replacing it with your <<if $PC.dick != 0>>prick<<else>>strap-on<</if>> before its gape can close.<<elseif ($activeSlave.anus > 1)>>pulling the dildo free of $his loose anus, and replacing it with your <<if $PC.dick != 0>>prick<<else>>strap-on<</if>> before its gape can close.<<else>>pulling $his fingers free of $his tight little ass, and replacing them with your <<if $PC.dick != 0>>prick<<else>>strap-on<</if>> while it's still relaxed.<</if>> $He moans into the pillow and pats around blindly with $his freed hand before finding your thigh and rubbing it affectionately. $He steps up $his humping and soon shudders,
		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
			releasing a pathetic spurt onto
		<<elseif $activeSlave.balls > 3>>
			shooting a big jet of cum all over $his own <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> stomach<<else>>chest<</if>> and
		<<elseif $activeSlave.balls != 0>>
			orgasming messily onto
		<<else>>
			going limp and slumping down onto
		<</if>>
		the sheets beneath $him. When you climax soon after, $he expects you to get off $him so $he can clean up, but instead, the <<if $PC.dick != 0>>cock up $his butt returns to rock hardness<<if $PC.vagina != -1>> as you use a little manual stimulation of your own cunt to get your cock stiff again<</if>> and<<else>>strap-on up $his butt<</if>> goes back to pumping in and out of $him. $He slides a hand under $himself to <<if $activeSlave.vagina == -1>>jerk off<<else>>rub $himself<</if>> this time. When you finally finish, a long time later, the exhausted slave is lying on a bed wet with lube, <<if ($PC.dick != 0) || ($activeSlave.dick > 0)>> ejaculate,<</if>><<if ($PC.dick == 0) || ($activeSlave.vagina > -1)>> girlcum,<</if>> drool, and sweat. $He doesn't care, and you let $him curl up in $his sex-soaked nest. As you leave, you think $he's asleep already, but <<if !canSee($activeSlave)>>as you go<<else>>$his <<= App.Desc.eyesColor($activeSlave)>> open a slit as you go and<</if>> $he murmurs, @@.hotpink;Thank<<s>>,@@ <<Master>>."
		<<set $activeSlave.devotion += 5>>
		<<= VCheck.Anal($activeSlave, 5)>>
	<</replace>>
<</link>>
<<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
	<br><<link "Play into $his fetish at bedtime">>
		<<setNonlocalPronouns $seeDicks>>
		<<replace "#result">>
			$He starts with surprise when $he feels your hands seize $him by $his
			<<if $activeSlave.weight > 160>>
				fat
			<<elseif $activeSlave.weight > 130>>
				chubby
			<<elseif $activeSlave.weight > 95>>
				soft
			<<elseif ($activeSlave.muscles > 95)>>
				ripped
			<<elseif ($activeSlave.muscles > 30)>>
				muscular
			<<elseif ($activeSlave.muscles > 5)>>
				toned
			<<else>>
				soft
			<</if>>
			shoulders,
			<<if ($activeSlave.fetish == "submissive")>>
				but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of happiness as you give $him some light spanks before using $his butt without regard for $his pleasure. $He does not climax, but when you roll $his unresisting body over to give $his mouth<<if $activeSlave.belly >= 1500>>, swollen belly and breasts<<else>> and breasts<</if>> some attention, $he's clearly enjoying $himself.
				<<set _didAnal = 1>>
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
				<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
			<<elseif ($activeSlave.fetish == "cumslut")>>
				but $he is already licking $his lips with anticipation as you roll $him over and straddle $his chest so $he can <<if $PC.dick != 0>>suck you off<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>. The orally fixated slut concentrates on the oral to a fault, so you take $his arm<<if hasBothArms($activeSlave)>>s<</if>> and straddle them too so $he can reach $himself and get back to masturbating. $He hums happily, a very fine sensation on <<if $PC.dick != 0>>shaft<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>pussylips<</if>>.
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<<elseif ($activeSlave.fetish == "humiliation")>>
				but $he complies as you pull $him up to kneel and take an assfuck. You let $him get used to it and then wordlessly turn $his head so $he can <<if canSee($activeSlave)>>see the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> penetrating $his anus. $He recognizes $himself immediately<<elseif canHear($activeSlave)>>listen to the screen in the room: it's now on, and it's showing a public live feed of your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> penetrating $his anus. $He realizes the sounds of you fucking $his ass sync up with it<<else>>feel the wind blowing in from the large bay window you've opened<</if>>, and although the <<if canSee($activeSlave) || canHear($activeSlave)>>shot is such a closeup that the identity of the participants is not clear<<else>>likelihood is low that anyone on the arcology streets below would be looking up at this time<</if>>, the sheer humiliation of having $his rectum penetrated <<if canSee($activeSlave) || canHear($activeSlave)>>on camera<<else>>for all to see<</if>> brings $him to an indecently quick climax.
				<<set _didAnal = 1>>
			<<elseif ($activeSlave.fetish == "buttslut")>>
				but $he eagerly complies as you pull $him up to kneel and take an assfuck. You shove $his arm<<if hasBothArms($activeSlave)>>s<</if>> up over $his head to stop $his masturbation, confident that the anal whore can climax from nothing but your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> pumping in and out of $his butt. You're right, and $his sphincter tightens with orgasm even sooner than you expected it to. You roll $him over and go again,
				<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityPenis == 1)>>
					the evidence of $his first orgasm leaking out from behind $his chastity belt.
				<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
					$his soft cock still releasing little spurts of ejaculate onto $his <<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>><</if>> belly.
				<<elseif $activeSlave.dick > 0>>
					$his hard dick scattering the evidence of $his orgasm around as it flops around with the buttsex.
				<<elseif $activeSlave.vagina == -1>>
					$his tiny front hole dribbling a little fluid down $his legs.
				<<else>>
					$his pussy soaking wet with arousal.
				<</if>>
				<<set _didAnal = 1>>
			<<elseif ($activeSlave.fetish == "boobs")>>
				but $he giggles with anticipation as you flip $him over. $His cute giggling turns into a gasp of arousal when you <<if $activeSlave.nipples != "fuckable">>seize both of $his hard<<else>>sink your fingers into $his<</if>> nipples and tug them upward to pull $him into a half-sitting position. You hold $his boobs for $him to accomplish a messy titfuck and let $him masturbate at the same time. With $his nipples providing second and third loci of pleasure, $he climaxes quickly; you flip $him over and do $him doggy style, holding $his shoulders down so the rough fuck drags $his sensitive nipples<<if $activeSlave.belly >= 100000>> and _belly belly<</if>> across the sheets with every stroke.
				<<set _didAnal = 1>>
				<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
			<<elseif ($activeSlave.fetish == "pregnancy")>>
				but $he complies as you pull $him up
				<<if $activeSlave.belly >= 300000>>
					onto $his _belly dome of a middle and take $him over it.
				<<else>>
					to kneel and take it doggy style.
				<</if>>
				After getting things going, you use one hand to begin groping $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<<elseif $activeSlave.belly >= 1500>> _belly<</if>> belly. <<if canHear($activeSlave)>>Bending forward to whisper into $his ear, you begin to describe<<else>>With your hands on $his body and your <<if $PC.dick > 0>>dick<<else>>strap-on<</if>> inside $him, you do your best to communicate<</if>> how
				<<if $activeSlave.belly >= 750000>>
					$he's nothing more than a giant egg just waiting for $his children to hatch, how $he's so close to bursting with life that just a few more babies should do it.
				<<elseif $activeSlave.belly >= 600000>>
					if $he grows any larger with child, $he'll practically be nothing more than an overswollen womb.
				<<elseif $activeSlave.belly >= 450000>>
					it must feel to be so obscenely pregnant that anyone and everyone can see the life distending $his struggling body.
				<<elseif $activeSlave.belly >= 300000>>
					full $he would feel if $he got anymore pregnant and how it would be to do even the most simple of tasks.
				<<elseif $activeSlave.belly >= 150000>>
					with a few more babies in $him, $his obscene womb would each the floor.
				<<elseif $activeSlave.belly >= 100000>>
					obscene it would be if $he were swollen with more than a dozen children.
				<<elseif $activeSlave.belly >= 15000>>
					full and heavy $he'd be with octuplets crowding $his womb.
				<<elseif $activeSlave.pregKnown == 1>>
					$he'd look and feel swollen with multiple children.
				<<else>>
					it might feel if $his belly were to grow heavy with pregnancy.
				<</if>>
				$He gasps with sudden shocked arousal at the idea, moaning with desire as you describe your hot seed jetting into $him, racing towards $his core, turning $his body into nothing more than a breeding machine.
				<<if !canDoVaginal($activeSlave)>> It's $his butt you're fucking, but $he doesn't care.<</if>>
				<<if canDoVaginal($activeSlave)>>
					<<set _didVaginal = 1>>
				<<else>>
					<<set _didAnal = 1>>
				<</if>>
			<<elseif ($activeSlave.fetish == "dom")>>
				but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you pound the poor _girlU hard enough to make _himU moan into $activeSlave.slaveName.
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<<elseif ($activeSlave.fetish == "sadist")>>
				but $he keeps masturbating even as you flip $him over. You tell $him to keep going, and leave $him there for a moment. $He obeys, looking mystified, but is pleased to <<if canSee($activeSlave)>>see you return with another slave<<elseif canHear($activeSlave)>>hear your footsteps return accompanied by a second set<<else>>feel the body heat of another slave upon your return<</if>>. You push the other _girlU unceremoniously down onto $activeSlave.slaveName, making _himU give $activeSlave.slaveName some oral while you spank _himU and then roughly fuck _hisU ass. $activeSlave.slaveName enjoys $himself immensely, jerking with pleasure every time you strike or sodomize the poor _girlU hard enough to make _himU scream into $activeSlave.slaveName.
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<<elseif ($activeSlave.fetish == "masochist")>>
				but $he relaxes into submissive compliance as you slide it up to the nape of $his neck, grinding $his face deeper into the pillow. $He gives muffled whines of mixed pain and pleasure as you give $him some hard spanks before sodomizing $him right up to the edge of what $his poor anus can take without damage. $He climaxes repeatedly to the pain, screaming helplessly as $his orgasms force $his abused sphincter to tighten spastically against the phallus invading it.
				<<set _didAnal = 1>>
			<</if>>
			<<if _didAnal == 1>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<<elseif _didVaginal == 1>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<</if>>
			$He's surprised but not displeased to find you standing over $him the next night at exactly the same time. By the third night, $he's masturbating in anticipation of your visit to $his bed.
			<<if ($activeSlave.fetishStrength > 95)>>
				Since $he's totally sure of what gets $him off, this consistent proof that you know it too makes $him @@.mediumaquamarine;trust you.@@
				<<set $activeSlave.trust += 5>>
			<<else>>
				Since $he's developing $his kinks, this consistent reinforcement @@.lightcoral;advances $his fetish.@@
				<<set $activeSlave.fetishStrength += 4>>
			<</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "terrified inspection">>

<<link "Confirm $his fears about you">>
	<<replace "#result">>
		<<if canSee($activeSlave)>>You throw $him a black cloth bag and tell $him to put it over $his head. $He obeys hurriedly, though $he cannot quite restrain $his tears from running down $his $activeSlave.skin cheeks as $he dons the bag, blinding $himself.<</if>> $He trembles, blind and terrified, for several agonized minutes before a strangled sob escapes $him. $He immediately cringes, expecting to be punished, but nothing happens. You let $him stand there for almost an hour, until you're sure $he's let $his guard down, and then approach $him quietly. You consider $his body, your personal property, carefully; and on careful consideration, you aim a vicious flick at $his <<if ($activeSlave.balls > 3)>>nutsack<<elseif ($activeSlave.dick > 0)>>cockhead<<elseif ($activeSlave.clit > 1)>>prominent clit<<elseif ($activeSlave.labia > 0)>>prominent labia<<elseif ($activeSlave.nipples == "huge")>>one of $his vulnerable nipples<<else>>one of $his nipples<</if>>. A flick barely registers on the list of ways you can administer pain to a slave, but after so much sensory deprivation, it knocks $him halfway to the ground with a shriek of surprise and agony. $He crouches involuntarily, cherishing $his stinging <<if ($activeSlave.balls > 3)>>testicles<<elseif ($activeSlave.dick > 0)>>prick<<elseif ($activeSlave.clit > 1)>>bitch button<<elseif ($activeSlave.labia > 0)>>pussylips<<else>>nipple<</if>> with both hands, sobbing. You <<if canSee($activeSlave)>>pluck the bag off $his head and <</if>>tell $him to get out. $He half-walks, half-crawls away<<if canSee($activeSlave)>>, shielding $his eyes from the sudden brightness<</if>>, @@.gold;choking on $his tears.@@
		<<set $activeSlave.trust -= 5>>
	<</replace>>
<</link>>
<br><<link "Conduct a straightforward inspection">>
	<<replace "#result">>
		You order $him to spin slowly in place in a matter-of-fact tone of voice. $He does,
		<<if ($activeSlave.weight > 160)>>
			$his fat body wobbling a little with the motion.
		<<elseif $activeSlave.belly >= 10000>>
			$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly swinging wide as $he turns.
		<<elseif ($activeSlave.weight > 95)>>
			$his chubby body wobbling a little with the motion.
		<<elseif ($activeSlave.weight > 30)>>
			$his chubby belly wobbling a little with the motion.
		<<elseif ($activeSlave.dick > 1)>>
			$his soft dick waving a little with the motion.
		<<elseif ($activeSlave.boobs > 800)>>
			$his udders swaying a little with the motion.
		<<elseif ($activeSlave.butt > 4)>>
			$his ass jiggling a little with the motion.
		<<elseif ($activeSlave.muscles > 5)>>
			$his abs playing across $his midsection as $he does<<else>>$his trim rear catching your eye.
		<</if>>
		In the same straightforward tone, you ask about $his health. $He swallows nervously and stammers,
		<<if ($activeSlave.preg > $activeSlave.pregData.normalBirth/8) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/3.33)>>
			"I, I haven't been feeling good in the morning,
		<<elseif ($activeSlave.health.condition < -20)>>
			"I, I don't feel very good,
		<<elseif ($activeSlave.preg > 0) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/6.66)>>
			"I, I feel a little off. The food <<if canTaste($activeSlave)>>ta<<s>>te<<s>><<else>><<s>>eem<<s>><</if>> weird lately and my brea<<s>>t<<s>> are really <<s>>en<<s>>itive,
		<<elseif ($activeSlave.health.condition > 20)>>
			"I'm, I'm okay,
		<<else>>
			"I, I feel healthy,
		<</if>>
		<<if $activeSlave.preg > $activeSlave.pregData.normalBirth-2 && $activeSlave.pregControl != "labor suppressors">>
			and I think it might be time <<s>>oon,
		<</if>>
		<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>."
		<br><br>
		You then conduct a more thorough inspection, from the top of $his $activeSlave.hColor-haired head on down. $He complies submissively, obviously expecting to be abused at any moment. $He obediently <<if ($activeSlave.boobs > 1000)>>lifts each of $his massive breasts one by one to display each of them from all angles.<<elseif $activeSlave.belly >= 5000>> allows you to do as you will to $his gravid stomach.<<else>>opens $his mouth and sticks out $his tongue on command.<</if>> $He even obeys an instruction to <<if ($activeSlave.dick > 1)>>take $himself by the dickhead and pull $his member flat up against $his abdomen.<<elseif ($activeSlave.dick > 0)>>take $his little dickhead between a thumb and forefinger and hold $himself out straight to reveal how tiny $he really is.<<elseif ($activeSlave.clit > 1)>>push back $his hood to reveal all of $his enormous clit.<<elseif ($activeSlave.labia > 1)>>spread $his meaty labia to reveal $his cunt.<<elseif $activeSlave.vagina == -1>>really show off $his smooth groin, displaying every bit of it, down to the tiny hole that's its only feature.<<else>>spread $his pussylips to show off $his cunt.<</if>>
		<br><br>
		Finally the inspection reaches $his backdoor, so you tell $him to turn around, bend over, and pull $his buttocks apart as wide as $he can. $He tenses in fear, obviously expecting anal rape, but after a moment of hesitation, $he obeys. $He turns, <<if $activeSlave.belly >= 10000>>carefully bends<<else>>bends<</if>>, and <<if ($activeSlave.butt > 5)>>grabs a handful of buttcheek in <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>, trembling as $he spreads $his ass to reveal<<elseif ($activeSlave.butt > 2)>>harshly pulls $his own buttcheeks apart, clearly hoping that if $he treats $himself this way, you won't. $He reveals<<else>>even though $his trim ass has already revealed everything, uses $his hand<<if hasBothArms($activeSlave)>>s<</if>> to spread $himself even wider to show off<</if>> $his <<if ($activeSlave.anus > 2)>>poor, overused asshole, which despite $his terror is still gaping a little.<<elseif ($activeSlave.anus > 1)>>asshole, which is clenched tight in terror.<<else>>invitingly tight asshole, which is clenched hard in terror.<</if>> Maintaining your neutral tone, you ask $him how $he feels about anal sex.
		<<if ($activeSlave.anus == 0)>>
			"It'<<s>> <<s>>-<<s>>cary, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm afraid it'll h-hurt," $he gasps out.
		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")>>
			"It'<<s>> o-okay, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I d-don't hate it," $he gasps out.
		<<elseif ($activeSlave.sexualFlaw == "hates anal")>>
			"I h-hate it, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. It'<<s>> d-dirty and it hurt<<s>>," $he gasps out.
		<<elseif ($activeSlave.anus > 2)>>
			"It'<<s>> not that bad, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm u<<s>>ed to getting a<<ss>>fucked, I gue<<ss>>," $he <<say>>s haltingly.
		<<else>>
			"I h-hate it, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm n-not u<<s>>ed to it, and it hurt<<s>>," $he gasps out.
		<</if>>
		Without another word, you tell $him $he can go. $He looks around to gape uncomprehendingly at you for a moment before letting go of $his buttocks, straightening up, and <<if $activeSlave.belly >= 10000>>quickly waddling<<else>>fleeing<</if>>, feeling rather mystified that you @@.mediumaquamarine;didn't use $him.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>

<<case "cooler lockin">>

<<link "Just direct $assistant.name to let $him out">>
	<<replace "#result">>
		<<= capFirstChar($assistant.name)>> unlatches the cooler door remotely, and admonishes $activeSlave.slaveName. The chilled slave scampers out of the cold air, rubbing $his<<if $activeSlave.bellyPreg >= 1500>> _belly pregnant belly's<</if>> $activeSlave.skin skin to get some warmth back into it. $He's too cold to do much more than nod dumbly at $assistant.name's review of how to operate the release, but $he's much more careful the next time $he's sent in there.
	<</replace>>
<</link>>
<br><<link "Let $him out yourself">>
	<<replace "#result">>
		You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you get there, the poor $girl is pounding weakly against the refrigerator door to try to get someone's attention. <<= capFirstChar($assistant.name)>> was right, $he must be too cold to think straight; if $he weren't $he might <<if canSee($activeSlave)>>notice the<<else>>have thought to feel around for the<</if>> prominent release button right next to where $he's striking the door. $His desperate $activeSlave.skin face is visible in the window. You hit the exterior release and the door swings open quickly, dumping $him into your arms. Despite not being devoted to you, $he clings to you like a long lost love, $his <<if ($activeSlave.height >= 185)>>big cold<<elseif ($activeSlave.height >= 160)>>cold<<else>>cold little<</if>> <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>><</if>>body shaking convulsively. $He tries to burrow even <<if ($PC.boobs >= 650)>>deeper between your breasts<<else>>closer to you<</if>>, soaking up your warmth.
		<<if !canTalk($activeSlave)>>
			$He gestures $his thanks shakily.
		<<else>>
			"T-t-thank y-you, <<Master>>. I d-don't know what would have hap-p-pened if you hadn't come by," $he <<say>>s, teeth chattering.
		<</if>>
		$He clearly has no idea whatsoever that $assistant.name could have let $him out at any time. You rub your hands up and down $his
		<<if $activeSlave.weight > 160>>
			rippling
		<<elseif $activeSlave.weight > 95>>
			soft
		<<elseif ($activeSlave.muscles > 95)>>
			ripped
		<<elseif ($activeSlave.muscles > 30)>>
			muscular
		<<elseif ($activeSlave.muscles > 5)>>
			toned
		<<else>>
			soft
		<</if>>
		back, helping $him get warm. You point out the release handle and $he apologizes hastily for forgetting. Once $he's warm you gently tell $him to get back to it, and give $him a gentle shove on $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>>. $He @@.mediumaquamarine;smiles gratefully@@ at you before heading back to get those drinks.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Punish $him for $his forgetfulness">>
	<<replace "#result">>
		You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you<<if $PC.dick == 0>> don a strap-on and<</if>> get there, the poor <<if $activeSlave.pregKnown == 1>>pregnant <</if>>$girl is pounding weakly against the refrigerator door to try to get someone's attention. $He looks relieved when you open the door, but $his relief turns to ashes when you shut the door behind you. $He shivers with cold and fear as you sternly point out the release, high up on the door, and then demand $his hands. You bind them together and loop them over the release before hoisting $his legs off the ground so that $his back is against the cold metal door and all $his weight is hanging off the release by $his arm<<if hasBothArms($activeSlave)>>s<</if>>. $He doesn't struggle until you tell $him $he can leave — if $he can get the release open like this. $He tries, but $he can't get enough leverage; $his spastic efforts get weaker as you pull $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>> away from the door and line <<if $PC.dick == 0>>the strap-on<<else>>your cock<</if>> up with $his <<if ($activeSlave.anus > 2)>>loose asspussy<<elseif ($activeSlave.anus > 1)>>asshole<<else>>tight little asshole<</if>>. Teeth chattering, legs shaking with cold, $he takes a buttfuck in the cold cooler, hanging from what $he should have used to let $himself out. When you finish, you hit it yourself and drop $his legs, letting $him unhook $himself and flee to the warmth outside. $He @@.gold;begs your pardon@@ abjectly as $he rubs $his <<if $activeSlave.belly >= 5000>> _belly $activeSlave.skin belly <<else>>$activeSlave.skin shoulders <</if>>to warm $himself up<<if $PC.dick > 0>>, ignoring the cum <<if ($activeSlave.anus > 2)>>leaking out of $his fucked-out anus<<elseif ($activeSlave.anus > 1)>>leaking out of $his now-gaped backdoor<<else>>filling $his still-tight anus<</if>><</if>>.
		<<set $activeSlave.trust -= 5>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>

<<case "spa boobs">>

<<link "Sit against the side of the pool with $him in your lap">>
	<<replace "#result">>
		You<<if $PC.dick == 0>> don a waterproof, vibrating strap-on and<</if>> step into the pool and<<if $activeSlave.belly >= 450000>> struggle to<</if>> lift $him half-out of the water in a bridal carry, your arms behind $his shoulders and the backs of $his knees. <<if canSee($activeSlave)>>$His eyes open<<else>>$He mumbles<</if>> sleepily<<if $activeSlave.belly >= 1500>> as $he rests a hand on $his _belly belly,<</if>> and $he <<say>>s
		<<if ($activeSlave.lips > 70)>>
			through $his huge lips,
		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
			through $his piercings,
		<<else>>
			quietly,
		<</if>>
		"Hi, <<Master>>." You sit against the side of the pool, letting $his
		<<if ($activeSlave.butt > 8)>>
			massive
		<<elseif ($activeSlave.butt > 5)>>
			huge
		<<elseif ($activeSlave.butt > 2)>>
			healthy
		<<else>>
			trim
		<</if>>
		bottom sink down into your lap. $He shimmies $himself atop your <<if $PC.dick == 0>>phallus<<else>>dick<</if>>, gently seating it between $his buttocks, and cranes $his neck back to kiss the bottom of your chin. $He gradually comes out of $his heat stupor, riding $himself back and forth more and more until the <<if ($activeSlave.anus > 2)>>slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>opening of $his anus<<else>>pucker of $his butt<</if>> rests against your <<if $PC.dick == 0>>strongly vibrating strap-on<<else>>cock<</if>>. You take $his hips and firmly thrust into $his rectum, eliciting a little whimper, but $he begins to bounce gently in the water, sodomizing $himself, $his gigantic breasts moving up and down and making concentric ripples spread outward. $He's still very relaxed and $his first orgasm takes $him by surprise, <<if ($activeSlave.balls > 0)>>$his cum floating to the surface; <<if canSee($activeSlave)>>$he points at it and giggles<<else>>$he feels it brush $his skin and giggles<</if>> before getting<<else>>making $him twitch and shudder with aftershocks as $he gets<</if>> $his feet up on the ledge to ride you harder. When you're done you let $him float again, but curiosity about how $his fucked butt feels under the water leads you to reach a hand <<if hasBothLegs($activeSlave)>>between $his legs<<else>>underneath $him<</if>> and grope $his anus. $His warm, relaxed <<if ($activeSlave.anus > 2)>>asspussy<<elseif ($activeSlave.anus > 1)>>backdoor<<else>>tightness<</if>> is so enticing you push $him to $his feet and take $him a second time, standing in the shoulder-depth water. By the time you're done $he's so @@.hotpink;sexually exhausted@@ that you carry $him to the shower.
		<<= VCheck.Anal($activeSlave, 2)>>
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<br><<link "Fuck $him under the water">>
	<<replace "#result">>
		You gather some necessary items into a pool bag and step stealthily into the water, taking $him by an ankle and towing $him toward the deep end. "Hi, <<Master>>," comes a sleepy greeting from the slave as you pull $him through the water, $his boobs making twin bow waves. $He manages a shocked squeal as you quickly secure a weight belt <<if $activeSlave.belly >= 120000>>above $his<<else>>around $his<</if>><<if $activeSlave.belly >= 1500>> _belly<<elseif $activeSlave.weight > 95>> soft<</if>> middle and drop $him, letting $him sink so swiftly that <<if ($activeSlave.butt > 5)>>$his massive bottom pads $him against a painful thump on<<elseif ($activeSlave.butt > 2)>>$his healthy bottom pads $him against a painful thump on<<else>>$his bottom receives a painful thump against<</if>> the bottom of the pool. Before $he can panic, $he feels your mouth against $his<<if ($activeSlave.lips > 70)>> dick sucking<<elseif ($activeSlave.lips > 20)>> lovely<</if>> lips, breathing for $him. You have two long, flexible snorkels designed for exactly this, but you keep $hers away from $him and breathe $his air into $him for a short time, and $he @@.mediumaquamarine;trusts@@ you enough to rely on you. When you finally give $him $his snorkel $he laughs, bubbles rising from around the mouthpiece, and then hugs you impulsively, intentionally giving you a huge faceful of boob. You pull $his weight belt down and tighten it around $his ankles so $he's pinned standing on the bottom, and then
		<<if ($PC.vagina != -1)>>
			spread $his knees so you can scissor your pussy against $him in the near-zero gravity, the tangle of limbs and breasts swaying gently as you grind.
		<<else>>
			insert yourself into the
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina > 3)>>welcoming gape of $his pussy<<elseif ($activeSlave.vagina > 2)>>loose embrace of $his pussy<<elseif ($activeSlave.vagina > 1)>>welcoming embrace of $his pussy<<else>>tight tight embrace of $his pussy<</if>>. $He enjoys the sensation of such an unusual fucking, wriggling against $his weighted feet and moaning through $his snorkel as you gently take $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<if ($activeSlave.anus > 2)>>loose slit of $his asspussy<<elseif ($activeSlave.anus > 1)>>welcoming pucker of $his anus<<else>>tight pucker of $his butt<</if>>. $He exaggerates $his discomfort, wriggling against $his weighted feet and squealing through $his snorkel as you gently sodomize $him under water. $His enormous breasts quiver in near-zero gravity with each thrust, until you notice the delicious motion and take one in each hand.
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<</if>>
		The amount of air you can pull through the snorkel just isn't enough to facilitate the throes of your lovemaking, so by the time you're done, $he's so exhausted $he can barely float to the edge of the pool. Fortunately $his lovely tits make for quite the flotation device, so you gently guide $him to the shallow end<<if $PC.dick || $activeSlave.balls>>, leaving a trail of cum in your wake<</if>>.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>

<<case "newly devoted sunrise">>

<<link "Slaveowners do not hold their slaves' hands">>
	<<replace "#result">>
		<<if canSee($activeSlave)>>You shake your head sternly<<else>>You say nothing but don't take $his hand<</if>>. $He looks neither afraid nor crushed, but simply gazes properly at you, clearly waiting for punishment. When none comes, $he accepts that it was not culpably wrong of $him to ask, but that the answer is no. $He leaves the balcony feeling reassured about $his place in $arcologies[0].name — a little more independent of $his <<= getWrittenTitle($activeSlave)>> and yet a little more inured to the reality of his control. $He is a proper devoted slave and will remain so.
	<</replace>>
<</link>>
<br><<link "Hold $his hand">>
	<<replace "#result">>
		<<if canSee($activeSlave)>>You nod without taking your eyes off the blazing horizon<<else>>You take $his hand without taking your eyes off the blazing horizon<</if>>. $His
		<<if $activeSlave.height >= 185>>
			hand is almost as large as yours,
		<<elseif $activeSlave.height >= 170>>
			hand fits into yours,
		<<elseif $activeSlave.height >= 160>>
			small hand fits comfortably into yours,
		<<elseif $activeSlave.height >= 150>>
			petite hand slides into yours,
		<<else>>
			tiny hand nestles into yours,
		<</if>>
		and <<if $activeSlave.muscles > 30>>$his grip is extremely powerful<<elseif $activeSlave.muscles > 5>>$his grip surprisingly strong<<else>>$his grip is soft and feminine<</if>>. Through $his hand you feel $him give a little shiver and relax. It's not difficult to sense $his emotions as the two of you stand there gazing at the rising sun: $he's reassessing who $he is in light of $his @@.hotpink;growing devotion@@ to you, drawing emotional strength from the strong grip that gently encircles $his hand.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Buttfuck $him against the railing">>
		<<replace "#result">>
			You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your
			<<if $PC.boobs >= 1400>>
				enormous<<if $PC.boobsImplant != 0>> fake<</if>> breasts
			<<elseif $PC.boobs >= 1200>>
				huge<<if $PC.boobsImplant != 0>> fake<</if>> breasts
			<<elseif $PC.boobs >= 1000>>
				big<<if $PC.boobsImplant != 0>> firm<</if>> breasts
			<<elseif $PC.boobs >= 800>>
				breasts
			<<elseif $PC.boobs >= 650>>
				breasts
			<<elseif $PC.boobs >= 500>>
				average breasts
			<<elseif $PC.boobs >= 300>>
				small breasts
			<<elseif $PC.title == 0>>
				flat chest
			<<else>>
				chest
			<</if>>
			for a few moments until $he feels your <<if $PC.dick == 0>>building warmth<<else>>hardening member<</if>> against
			<<if $activeSlave.height >= 160>>
				$his ass.
			<<else>>
				$his lower back.
			<</if>>
			$He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina != -1>> and total wetness<</if>><</if>> $he
			<<if $activeSlave.height >= 170>>
				leans into the rail, bending over it just slightly to offer $his asshole at just the right height.
			<<else>>
				hikes $himself up on the rail, up on tiptoe, to bring $his asshole to the most comfortable height.
			<</if>>
			$He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his butt, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face.
			<<= VCheck.Anal($activeSlave, 1)>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoVaginal($activeSlave)>>
	<br><<link "Fuck $him against the railing">>
		<<replace "#result">>
			You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your
			<<if $PC.boobs >= 1400>>
				enormous<<if $PC.boobsImplant != 0>> fake<</if>> breasts
			<<elseif $PC.boobs >= 1200>>
				huge<<if $PC.boobsImplant != 0>> fake<</if>> breasts
			<<elseif $PC.boobs >= 1000>>
				big<<if $PC.boobsImplant != 0>> firm<</if>> breasts
			<<elseif $PC.boobs >= 800>>
				breasts
			<<elseif $PC.boobs >= 650>>
				breasts
			<<elseif $PC.boobs >= 500>>
				average breasts
			<<elseif $PC.boobs >= 300>>
				small breasts
			<<elseif $PC.title == 0>>
				flat chest
			<<else>>
				chest
			<</if>>
			for a few moments until $he feels your <<if $PC.dick == 0>>building warmth<<else>>hardening member<</if>> against
			<<if $activeSlave.height >= 160>>
				$his ass.
			<<else>>
				$his lower back.
			<</if>>
			$He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina != -1>> and total wetness<</if>><</if>> $he
			<<if $activeSlave.height >= 170>>
				leans into the rail, bending over it just slightly to offer $his pussy at just the right height
			<<else>>
				hikes $himself up on the rail, up on tiptoe, to bring $his pussy to the most comfortable height.
			<</if>>
			$He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his depths, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face.
			<<= VCheck.Vaginal($activeSlave, 1)>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<</if>>

<<case "nympho with assistant">>

<<link "No, spectate and relax with $him afterward">>
	<<replace "#result">>
		You leave for a moment, but return quickly with a chair and a refreshing beverage so you can sit and enjoy the spectacle. It's hard to tell, but you're reasonably sure $activeSlave.slaveName is flattered by your interest. <<= capFirstChar($assistant.name)>> does not let $him go for a long time, however, and when $he finally retracts all the phalli, $activeSlave.slaveName collapses weakly to the sweat-stained floor.
		<<if $activeSlave.belly >= 300000>>
			You try to gather the limp nympho in your arms, but $his _belly is far too heavy to carry, so you settle for assisting $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you help $him into the water and slip in beside $him.
		<<else>>
			You gather the limp nympho in your arms and carry $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you lower $him, still cradled in your arms, into the water.
		<</if>>
		$He nuzzles $his $activeSlave.skin cheek against your <<if ($PC.boobs >= 300)>>breasts<<else>>chest<</if>>, eyes closed in @@.hotpink;bliss.@@
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Tour $his holes">>
	<<replace "#result">>
		The polite thing to do would be to instruct $assistant.name to retract a dildo before replacing it with <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>>. You are not, however, feeling particularly polite. $activeSlave.slaveName writhes in anguish when $he feels an additional phallus forcing its way past $his lips. $He tries to relax but loses control and spasms; the throat fucking continues unmercifully and in short order $he is gagging desperately. Each of $his holes receives the same treatment in turn; all $he manages to do in response is writhe here and there, and squeal incoherently whenever $his mouth isn't totally full. $He has become @@.hotpink;more submissive to you.@@
		<<= VCheck.Both($activeSlave, 1)>>
		<<set $activeSlave.devotion += 4>>
		<<if $activeSlave.vagina == 1 && canDoVaginal($activeSlave)>>
			$His tight pussy @@.lime;isn't so tight any more.@@
			<<set $activeSlave.vagina += 1>>
		<</if>>
		<<if $activeSlave.anus == 1 && canDoAnal($activeSlave)>>
			$His tight butt @@.lime;has been loosened by the double anal.@@
			<<set $activeSlave.anus += 1>>
		<</if>>
		<<if $activeSlave.nipples == "fuckable">>
			<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
			<<run seX($activeSlave, "mammary", "assistant", "penetrative")>>
		<</if>>
		<<set _skillIncrease = 10>>
		<<if $activeSlave.skill.anal <= 10 && canDoAnal($activeSlave)>>
			$He can't help but learn how to take a rough buttfuck.
			<<= slaveSkillIncrease('anal', $activeSlave, _skillIncrease)>>
		<</if>>
		<<if $activeSlave.skill.oral <= 10>>
			$He can't help but learn how to deepthroat.
			<<= slaveSkillIncrease('oral', $activeSlave, _skillIncrease)>>
		<</if>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<<set _cumSlaves = $slaves.filter(function(s) { return s.assignment == "work in the dairy" && s.balls > 0 && isSlaveAvailable(s) && canPenetrate(s); })>>
<<if _cumSlaves.length >= 5>>
	<br><<link "Replace the machines with cockmilkees from the Dairy">>
		<<replace "#result">>
			Some minutes later $activeSlave.slaveName feels one of the dildos retract and wriggles in protest. $He's not long disappointed, though, as $he immediately feels it replaced by a turgid dick. You and $assistant.name stage-manage, and it isn't easy. Getting all the cocks into $him requires some creative choreography; quite apart from the limits of even $his well-used holes, it's hard just figuring out where everyone ought to stand. The cockmilked slaves are used to coming fast, and they do here, too, so there's also the necessity of switching them out periodically. Eventually you tire of the amusement and direct the Dairy bitches to clean up, which is no mean job, since $activeSlave.slaveName is by now lying in a pool of sweat and cum. But mostly cum. Despite the mess, everyone @@.hotpink;enjoys@@ themselves immensely.
			<<if $activeSlave.vagina == 0 && canDoVaginal($activeSlave)>>
				$He certainly @@.lime;isn't a virgin any more.@@
				<<set $activeSlave.vagina += 1>>
			<</if>>
			<<if $activeSlave.anus == 0 && canDoAnal($activeSlave)>>
				$His virgin butt @@.lime;has been broken in.@@
				<<set $activeSlave.anus += 1>>
			<</if>>
			<<set $activeSlave.devotion += 4>>
			<<set _totalFuckers = 0>>
			<<for _ress = 0; _ress < _cumSlaves.length; _ress++>>
				<<set _RESS = $slaveIndices[_cumSlaves[_ress].ID]>>
				<<set $slaves[_RESS].devotion += 4, $slaves[_RESS].counter.penetrative++>>
				<<set $penetrativeTotal++, _totalFuckers++>>
				<<if canImpreg($activeSlave, $slaves[_RESS])>>
					<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
						<<= knockMeUp($activeSlave, 5, 2, $slaves[_RESS].ID)>>
					<<elseif canDoVaginal($activeSlave)>>
						<<= knockMeUp($activeSlave, 5, 0, $slaves[_RESS].ID)>>
					<<elseif canDoAnal($activeSlave)>>
						<<= knockMeUp($activeSlave, 5, 1, $slaves[_RESS].ID)>>
					<</if>>
				<</if>>
			<</for>>
			<<if $activeSlave.nipples == "fuckable">>
				<<run seX($activeSlave, "mammary", $PC, "penetrative", _totalFuckers)>>
			<</if>>
			<<if canDoAnal($activeSlave)>>
				<<run seX($activeSlave, "anal", $PC, "penetrative", _totalFuckers)>>
			<</if>>
			<<if canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative", _totalFuckers)>>
			<</if>>
			<<run seX($activeSlave, "oral", $PC, "penetrative", _totalFuckers)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>

<<case "sore ass">>

<<link "Punish $his ass for insolence">>
	<<replace "#result">>
		You inform $him sternly that you will ensure that $he is not permanently damaged, and that otherwise, $he is to take anal pain like a good buttslave. $He starts to beg and whine as you lean back in your chair and <<if $PC.dick == 0>>hold $him upside down on your chest so $he can lick your pussy while you use a dildo on $his ass.<<else>>set $him on your chest before reaching around to line your cock up with $his sore hole. $He shudders and writhes when you start pushing yourself inside.<</if>> You use hard pinches to $his nipples to punish $his whining, forcing $him to take a long, painful buttfuck in silence. @@.gold;$He has become more afraid of you.@@
		<<if ($activeSlave.anus < 3)>>$His week of tough anal experience has @@.lime;permanently loosened $his anus.@@<<set $activeSlave.anus += 1>><</if>>
		<<set $activeSlave.trust -= 5>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>>
<br><<link "Give $him some care">>
	<<replace "#result">>
		$He's filled with anxiety as you
		<<if $activeSlave.belly < 1500>>
			lay $him face-down on your desk,
		<<else>>
			direct $him to lay on $his side on your desk<<if $activeSlave.belly >= 300000>> with $his _belly belly hanging over the edge<</if>>,
		<</if>>
		but is surprised and reassured when $he's penetrated not by a <<if $PC.dick == 0>>strap-on<<else>>turgid<<if $PC.vagina != -1>> futa<</if>> cock<</if>> but by a single gentle finger coated with something healing and cool. The mixed analgesic and anti-inflammatory takes the sharpness off the sore feeling, and will help get $his butt back into fucking shape. @@.mediumaquamarine;$He has become more accepting of anal slavery,@@ and @@.health.inc;$his asshole feels better.@@
		<<if ($activeSlave.anus > 2)>>Your expert care has @@.orange;allowed $his loose asspussy to recover a little of its natural shape and size.@@<<set $activeSlave.anus -= 1>><</if>>
		<<set $activeSlave.trust += 4, $activeSlave.minorInjury = 0>>
	<</replace>>
<</link>>

<<case "shift doorframe">>

<<if canDoVaginal($activeSlave)>>
	<<link "Make love">>
		<<replace "#result">>
			There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk;
			<<if $activeSlave.height >= 185>>
				$he's tall enough for standing sex, so as you approach $he just turns $his head back to face the door frame and cocks $his hips.
			<<elseif $activeSlave.height < 160>>
				$he's so short standing sex is a stretch, so as you approach $he goes up on tiptoe with one leg and runs the other up the wall, using it as support to hike $his ass as high as $he can manage.
			<<else>>
				$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his ass to just the right height for standing sex.
			<</if>>
			You don't penetrate $him right away, though; you
			<<if $activeSlave.butt > 5>>
				knead $his mass of assflesh,
			<<elseif $activeSlave.butt > 2>>
				heft a big buttock in each hand,
			<<else>>
				cup $his nice little buttocks,
			<</if>>
			briefly tease $his
			<<if $activeSlave.vagina > 2>>
				loose pussy
			<<elseif $activeSlave.vagina > 1>>
				ready pussy
			<<else>>
				fresh pussy
			<</if>>
			with one finger, and then run your hands around $his
			<<if $activeSlave.waist < -95>>
				cartoonishly narrow
			<<elseif $activeSlave.waist < -10>>
				wasp
			<<elseif $activeSlave.waist < 10>>
				pretty
			<<else>>
				thick
			<</if>>
			waist and up $his
			<<if ($activeSlave.belly >= 100000)>>
				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
			<<elseif ($activeSlave.weight > 130)>>
				fat gut
			<<elseif ($activeSlave.belly >= 1500)>>
				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
			<<elseif ($activeSlave.muscles > 30)>>
				ripped abs
			<<elseif ($activeSlave.weight > 30)>>
				fat belly
			<<elseif ($activeSlave.weight > 10)>>
				plush stomach
			<<elseif ($activeSlave.weight >= -10)>>
				taut stomach
			<<else>>
				skinny body
			<</if>>
			to rest
			<<if $activeSlave.boobs > 2000>>
				buried under $his enormous breasts.
			<<elseif $activeSlave.boobs > 800>>
				under $his heavy breasts.
			<<elseif $activeSlave.boobs > 200>>
				under the curve of $his breasts.
			<<else>>
				against $his trim chest.
			<</if>>
			Despite $his poise $he sighs at your impromptu massage, gasps at your
			<<if $PC.belly >= 5000>>
				pregnancy pushing
			<<elseif $PC.boobs >= 300>>
				erect nipples brushing
			<<elseif $PC.title == 0>>
				flat chest pressing
			<<else>>
				muscular chest pressing
			<</if>>
			against $his back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina != -1>><<if $PC.dick != 0>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling $his $activeSlave.skin chin around to kiss $his
			<<if $activeSlave.lips > 60>>
				bimbo
			<<elseif $activeSlave.lips > 40>>
				big
			<<elseif $activeSlave.lips > 20>>
				soft
			<</if>>
			lips. $He's so ready that when you finally penetrate $him, $he orgasms slightly after one thrust,
			<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
				releasing a spurt of cum onto the floor
			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
				releasing a spurt of cum against the door frame.
			<<elseif $activeSlave.dick > 0>>
				spurting cum against the door frame.
			<<else>>
				grinding $himself between you and the door frame.
			<</if>>
			$His
			<<if $activeSlave.vagina > 2>>
				well-traveled vagina clenches down to almost virgin tightness
			<<elseif $activeSlave.vagina > 1>>
				veteran vagina tightens powerfully
			<<else>>
				tight vagina tightens mercilessly
			<</if>>
			with the orgasm, eliciting a sob of overstimulation, which you draw into a series of sobs by slowly fucking $him despite $his climax. You are gentle with $him, and continue teasing $his body, so that $his arousal builds again and $he manages to climax a second time when you do. You let $him out from between you and the door frame to wash, and return to work, but when $he emerges from a quick trip to the bathroom $he
			<<if $activeSlave.belly >= 300000>>
				leans against $his _belly stomach,
			<<else>>
				kneels on the couch,
			<</if>>
			spreads $his lips with one hand,
			<<if !canTalk($activeSlave)>>
				and @@.mediumaquamarine;earnestly asks@@ for more.
			<<else>>
				and @@.mediumaquamarine;asks earnestly,@@ "More plea<<s>>e, <<Master>>."
			<</if>>
			<<set $activeSlave.trust += 4>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
	<br><<link "Pound that pussy">>
		<<replace "#result">>
			You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<elseif canHear($activeSlave)>>the ambient sound is loud enough for you to sneak up on $him<<else>>you're certain $he won't notice you<</if>>; for all $his sexual poise $he's surprised by the force of your
			<<if $PC.belly >= 5000>>
				pregnancy
			<<elseif $PC.boobs >= 300>>
				tits
			<<else>>
				chest
			<</if>>
			crashing into $his
			<<if $activeSlave.weight > 160>>
				rippling
			<<elseif $activeSlave.weight > 95>>
				soft
			<<elseif ($activeSlave.muscles > 95)>>
				ripped
			<<elseif ($activeSlave.muscles > 30)>>
				muscular
			<<elseif ($activeSlave.muscles > 5)>>
				toned
			<<else>>
				soft
			<</if>>
			back, forcing $his<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame.
			<<if $activeSlave.height >= 185>>
				$He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the door frame.
			<<elseif $activeSlave.height < 160>>
				$He's short enough that even tiptoes aren't enough, and you force $him up between you and the door frame, pinning $his little body helplessly in place.
			<<else>>
				$He squirms up on tiptoes to get $his hips to the right height, trapped between you and the door frame.
			<</if>>
			None too soon, for the next thing $he feels is the pleasure of standing vaginal penetration,
			<<if $activeSlave.vagina > 2>>
				though it's nothing new to $him.
			<<elseif $activeSlave.vagina > 1>>
				veteran pussy notwithstanding.
			<<else>>
				inserting slowly into $his still-tight pussy.
			<</if>>
			You pump $him hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
			<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
				rubbing $his oversized cock between it and $his leg.
			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
				humping $his pathetic limp dick against it.
			<<elseif $activeSlave.dick > 0>>
				rubbing $his cock against it.
			<<else>>
				humping $his abdomen against it.
			<</if>>
			$He eventually shudders and spasms in orgasm, <<if $activeSlave.dick > 0>>the ejaculate running down $his leg<<else>>$his legs almost give out<</if>> making obvious $his pleasure in getting $his pussy fucked by you. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently.@@
			<<set $activeSlave.devotion += 4>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Make butt love">>
		<<replace "#result">>
			There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk;
			<<if $activeSlave.height >= 185>>
				$he's tall enough for standing anal, so as you approach $he just turns $his head back to face the door frame and cocks $his hips.
			<<elseif $activeSlave.height < 160>>
				$he's so short standing anal is a stretch, so as you approach $he goes up on tiptoe with one leg and runs the other up the wall, using it as support to hike $his ass as high as $he can manage.
			<<else>>
				$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his ass to just the right height for standing anal.
			<</if>>
			You don't penetrate $him right away, though; you
			<<if $activeSlave.butt > 5>>
				knead $his mass of assflesh,
			<<elseif $activeSlave.butt > 2>>
				heft a big buttock in each hand,
			<<else>>
				cup $his nice little buttocks,
			<</if>>
			briefly tease $his
			<<if $activeSlave.anus > 2>>
				gaping asshole
			<<elseif $activeSlave.anus > 1>>
				ready asshole
			<<else>>
				inexperienced asshole
			<</if>>
			with one finger, and then run your hands around $his
			<<if $activeSlave.waist < -95>>
				cartoonishly narrow
			<<elseif $activeSlave.waist < -10>>
				wasp
			<<elseif $activeSlave.waist < 10>>
				pretty
			<<else>>
				thick
			<</if>>
			waist and up $his
			<<if ($activeSlave.belly >= 100000)>>
				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
			<<elseif ($activeSlave.weight > 130)>>
				fat gut
			<<elseif ($activeSlave.belly >= 1500)>>
				_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly
			<<elseif ($activeSlave.muscles > 30)>>
				ripped abs
			<<elseif ($activeSlave.weight > 30)>>
				fat belly
			<<elseif ($activeSlave.weight > 10)>>
				plush stomach
			<<elseif ($activeSlave.weight >= -10)>>
				taut stomach
			<<else>>
				skinny body
			<</if>>
			to rest
			<<if $activeSlave.boobs > 2000>>
				buried under $his enormous breasts.
			<<elseif $activeSlave.boobs > 800>>
				under $his heavy breasts.
			<<elseif $activeSlave.boobs > 200>>
				under the curve of $his breasts.
			<<else>>
				against $his trim chest.
			<</if>>
			Despite $his poise $he sighs at your impromptu massage, gasps at your
			<<if $PC.belly >= 5000>>
				pregnancy pushing
			<<elseif $PC.boobs >= 300>>
				erect nipples brushing
			<<elseif $PC.title == 0>>
				flat chest pressing
			<<else>>
				muscular chest pressing
			<</if>>
			against $his back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina != -1>><<if $PC.dick != 0>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling $his $activeSlave.skin chin around to kiss $his
			<<if $activeSlave.lips > 60>>
				bimbo
			<<elseif $activeSlave.lips > 40>>
				big
			<<elseif $activeSlave.lips > 20>>
				soft
			<</if>>
			lips. $He's so ready that when you finally penetrate $him, $he orgasms slightly after one thrust,
			<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
				releasing a spurt of cum onto the floor
			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
				releasing a spurt of cum against the door frame.
			<<elseif $activeSlave.dick > 0>>
				spurting cum against the door frame.
			<<elseif $activeSlave.vagina == -1>>
				grinding $his featureless crotch against the door frame.
			<<else>>
				leaving a little girlcum on the door frame.
			<</if>>
			$His
			<<if $activeSlave.anus > 2>>
				tired sphincter clenches down to almost virgin tightness
			<<elseif $activeSlave.anus > 1>>
				veteran sphincter tightens powerfully
			<<else>>
				tight sphincter tightens mercilessly
			<</if>>
			with the orgasm, eliciting a sob of overstimulation, which you draw into a series of sobs by slowly assfucking $him despite $his climax. You are gentle with $his butt, and continue teasing $his body, so that $his arousal builds again and $he manages to climax a second time when you do. You let $him out from between you and the door frame to wash, and return to work, but when $he emerges from a quick trip to the bathroom $he
			<<if $activeSlave.belly >= 300000>>
				leans against $his _belly stomach,
			<<else>>
				kneels on the couch,
			<</if>>
			spreads $his buttocks with one hand,
			<<if !canTalk($activeSlave)>>
				and @@.mediumaquamarine;earnestly asks@@ for more.
			<<else>>
				and @@.mediumaquamarine;asks earnestly,@@ "More plea<<s>>e, <<Master>>."
			<</if>>
			<<set $activeSlave.trust += 4>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his anal virginity//<</if>>
	<br><<link "Pound that ass">>
		<<replace "#result">>
			You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<elseif canHear($activeSlave)>>the ambient sound is loud enough for you to sneak up on $him<<else>>you're certain $he won't notice you<</if>>; for all $his sexual poise $he's surprised by the force of your
			<<if $PC.belly >= 5000>>
				pregnancy
			<<elseif $PC.boobs >= 300>>
				tits
			<<else>>
				chest
			<</if>>
			crashing into $his
			<<if $activeSlave.weight > 160>>
				rippling
			<<elseif $activeSlave.weight > 95>>
				soft
			<<elseif ($activeSlave.muscles > 95)>>
				ripped
			<<elseif ($activeSlave.muscles > 30)>>
				muscular
			<<elseif ($activeSlave.muscles > 5)>>
				toned
			<<else>>
				soft
			<</if>>
			back, forcing $him<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame.
			<<if $activeSlave.height >= 185>>
				$He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the door frame.
			<<elseif $activeSlave.height < 160>>
				$He's short enough that even tiptoes aren't enough, and you force $him up between you and the door frame, pinning $his little body helplessly in place.
			<<else>>
				$He squirms up on tiptoes to get $his butt to the right height, trapped between you and the door frame.
			<</if>>
			None too soon, for the next thing $he feels is the discomfort of standing anal penetration,
			<<if $activeSlave.anus > 2>>
				though it's nothing new to $him.
			<<elseif $activeSlave.anus > 1>>
				veteran asshole notwithstanding.
			<<else>>
				worsened by $his tight little sphincter.
			<</if>>
			You ravage $his ass hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to
			<<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>>
				rubbing $his oversized cock between it and $his leg
			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
				humping $his pathetic limp dick against it
			<<elseif $activeSlave.dick > 0>>
				rubbing $his cock against it
			<<elseif $activeSlave.vagina == -1>>
				grind $his smooth groin against it instinctively, even though that's not very useful
			<<else>>
				humping $his pussy against it
			<</if>>
			for stimulation. $His asshole eventually spasms in orgasm, but it's spasmed so frequently during the rough sodomy that you don't realize the slut came to having $his asshole savaged until <<if $activeSlave.dick > 0>>you notice the ejaculate running down $his leg<<else>>an aftershock almost makes $his legs give out<</if>>. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently,@@ though you do notice $he sits to one side to take a bit of weight off $his poor rear.
			<<set $activeSlave.devotion += 4>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his anal virginity//<</if>>
<</if>>
<<if ($activeSlave.toyHole == "dick" || $policies.sexualOpenness == 1) && canPenetrate($activeSlave)>>
	<br><<link "Invite $him 'in'">>
		<<replace "#result">>
			There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk and saunter over;
			<<if $activeSlave.height >= 185>>
				$he's tall enough for standing <<if $PC.vagina != -1>>sex<<else>>anal<</if>>, so as you approach $he just readies $himself to fuck $his lover.
			<<elseif $activeSlave.height < 160>>
				$he's so short standing anal is a stretch, so once you approach you get down on your knees and greet the dick that will soon be in your <<if $PC.vagina != -1>>pussy<<else>>asshole<</if>>.
			<<else>>
				$he's shorter than you, so as you approach $he goes up on tiptoe to bring $his dick to just the right height for standing sex.
			<</if>>
			$He doesn't penetrate you right away, though; $he
			<<if $PC.butt >= 5>>
				kneads your mass of assflesh
			<<elseif $PC.butt >= 4>>
				hefts a huge buttock in each hand
			<<elseif $PC.butt >= 3>>
				gives your big butt a slap
			<<else>>
				cups your nice little buttocks
			<</if>>
			before bending you over, bringing $his hand<<if hasBothArms($activeSlave)>>s<</if>> to your
			<<if $PC.title == 0>>
				wide hips
			<<else>>
				masculine hips
			<</if>>
			and mounting you.
			<<if ($activeSlave.belly >= 100000)>>
				You grunt as the weight of $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly comes to rest on your back<<if $activeSlave.belly >= 300000>>, the sheer gravity of it threatening to force you to the floor<</if>>.
			<<elseif ($activeSlave.boobs >= 15000)>>
				You grunt as you feel the weight of $his massive breasts slam into your back<<if $activeSlave.boobs >= 30000>>before falling to your sides<</if>>.
			<<elseif ($activeSlave.weight > 160)>>
				You grunt as you feel the weight of $his fat gut settle on your back.
			<</if>>
			/* .vagina trainwreck ahead */
			<<if $activeSlave.dick == 1>>
				<<if $PC.vagina != -1>>
					<<if $PC.newVag == 1>>
						$He slips $his tiny dick into your vagina. Fortunately your custom cunt is capable of making even the most embarrassing of dicks pleasurable; though you wish $he could fill you a little better.
					<<elseif $PC.career == "escort">>
						You sigh as $his tiny dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering.
					<<elseif $PC.counter.birthsTotal >= 10>>
						You sigh as $his tiny dick enters your used pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>>
					<<elseif $PC.career == "servant">>
						You sigh as $his tiny dick enters your used pussy. $He stands no chance of competing with your old Master.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>>
					<<elseif $PC.counter.birthsTotal > 2>>
						You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much.
					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
						You feel $him slip into your vagina and abruptly stop; you sigh over how unsatisfyingly small $he is.
					<<else>>
						You squirm as $he slips into your tight pussy. While $his length may be disappointing, $he stands no chance of stretching you out.
					<</if>>
				<<else>>
					You have to check to see if $he's even in your tight rear, only to find $he is already fully hilted. You sigh as $he thrusts into you: no prostate stimulation today.
				<</if>>
			<<elseif $activeSlave.dick == 2>>
				<<if $PC.vagina != -1>>
					<<if $PC.newVag == 1>>
						$He slips $his cute dick into your vagina. Fortunately your custom cunt is capable of making $his embarrassing offering pleasurable; though you wish $he could fill you a little better.
					<<elseif $PC.career == "escort">>
						You sigh as $his cute dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering, no matter how pathetically adorable it is.
					<<elseif $PC.counter.birthsTotal >= 10>>
						You sigh as $his cute dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Hopefully such a cute penis puts a cute baby in you.<</if>>
					<<elseif $PC.career == "servant">>
						You sigh as $his cute dick enters your used pussy. $He stands no chance of competing with your old Master.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. You doubt $his children will stand up to his either.<</if>>
					<<elseif $PC.counter.birthsTotal > 2>>
						You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much.
					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
						You feel $him slip into your vagina and sigh over how unsatisfyingly small $he is.
					<<else>>
						You squirm as $he slips into your tight pussy. $He should be thankful you're so tight.
					<</if>>
				<<else>>
					You sigh as you feel $him slip $his cute dick into your tight rear; no prostate stimulation today.
				<</if>>
			<<elseif $activeSlave.dick == 3>>
				<<if $PC.vagina != -1>>
					<<if $PC.newVag == 1>>
						You shudder as $he slips $his dick into your vagina.
					<<elseif $PC.career == "escort">>
						You sigh as $his dick slips into your stretched pussy. You're far too traveled for even average cocks these days.
					<<elseif $PC.counter.birthsTotal >= 10>>
						You sigh as $his dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.career == "servant">>
						You sigh as $his dick enters your used pussy. $He stands no chance of competing with your old Master.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.counter.birthsTotal > 2>>
						You've gotten rather loose after your multiple children, so $his average cock is somewhat underwhelming.
					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
						You shiver with pleasure as $he slips $his dick into your pussy.
					<<else>>
						You squirm as $he slips $his dick into your tight pussy, the sensation making you quiver with pleasure.
					<</if>>
				<<else>>
					You squirm as you feel $him slip $his dick into your tight rear, the sensation making you quiver with pleasure.
					<<if $PC.dick != 0>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
				<</if>>
			<<elseif $activeSlave.dick == 4>>
				<<if $PC.vagina != -1>>
					<<if $PC.newVag == 1>>
						You shudder as $he slips $his big dick into your vagina.
					<<elseif $PC.career == "escort">>
						You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him.
					<<elseif $PC.counter.birthsTotal >= 10>>
						You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him after the havoc wreaked by your children.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.career == "servant">>
						You shudder as $his big dick slips into your used pussy. $He's just the right size for you to remember your Master.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.counter.birthsTotal > 2>>
						You've gotten rather loose after your multiple children, so $his big cock is a welcome feeling.
					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
						You moan with pleasure as $he slips $his big dick into your pussy, stretching you to your limit.
					<<else>>
						You squirm as $he slips $his big dick into your tight pussy, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing.
					<</if>>
				<<else>>
					You squirm as you feel $him slip $his big dick into your tight rear, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing.
					<<if $PC.dick != 0>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
				<</if>>
			<<elseif $activeSlave.dick == 5>>
				<<if $PC.vagina != -1>>
					<<if $PC.newVag == 1>>
						You shudder with delight as $his impressive dick stretches you perfectly.
					<<elseif $PC.career == "escort">>
						You quiver with pleasure as $his impressive dick slips into your stretched pussy. It takes a lot to satisfy you and $he is not disappointing.
					<<elseif $PC.counter.birthsTotal >= 10>>
						You quiver with pleasure as $his impressive dick slips into your stretched pussy. Even given the state of your pussy, $he fills you completely and perfectly.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.career == "servant">>
						You quiver with pleasure as $his impressive dick slips into your used pussy. $He's bigger than your Master was and is hitting all the right places.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.counter.birthsTotal > 2>>
						You've gotten rather loose after your multiple children, but you still find $his impressive dick almost uncomfortably large.
					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
						You squeal with mixed pleasure and pain as $he pushes $his impressive dick into your pussy, stretching you past your limit. $He gives you a chance to get used to $his size before continuing.
					<<else>>
						You grit your teeth as $he slips $his impressive dick into your tight pussy, stretching you considerably. $He gives you a chance to get used to $his size before continuing.
					<</if>>
				<<else>>
					You grit your teeth as you feel $his slip $his impressive dick into your tight rear, stretching you considerably. You bring a hand to your lower belly, feeling the bulge of $his cock deep within you. $He gives you a chance to get used to $his size before continuing, not that it will help much.
					<<if $PC.dick != 0>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
				<</if>>
			<<elseif $activeSlave.dick == 6>>
				<<if $PC.vagina != -1>>
					<<if $PC.newVag == 1>>
						You shudder with overwhelming pleasure as $his huge dick fills you completely.
					<<elseif $PC.career == "escort">>
						You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle.
					<<elseif $PC.counter.birthsTotal >= 10>>
						You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.career == "servant">>
						You moan with pleasure as $his huge dick stretches your used pussy. $He's far bigger than your Master ever was.
						<<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>>
					<<elseif $PC.counter.birthsTotal > 2>>
						You may be rather loose after your multiple children, but $his huge dick is uncomfortably large.
					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
						You grit your teeth as $he pushes $his huge dick into your pussy, trying to bear being so painfully overstretched. $He gives you a chance to get used to $his size before continuing, not that it will help much.
					<<else>>
						You cry out as $he forces $his huge dick into your too-tight pussy, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his best to allow you to get comfortable, not that it will help much.
					<</if>>
				<<else>>
					You cry out as $he forces $his huge dick into your too-tight rear, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his best to allow you to get comfortable, not that it will help much.
					<<if $PC.dick != 0>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>>
				<</if>>
			<<elseif $activeSlave.dick == 7>>
				<<if $PC.vagina != -1>>
					<<if $PC.newVag == 1>>
						You nearly blank out with pleasure as $his gigantic dick puts your new pussy to the test.
					<<elseif $PC.career == "escort">>
						You drool with pleasure as $his gigantic dick completely fills your stretched depths. You gently caress $his dick through the bulge in your middle.
					<<elseif $PC.counter.birthsTotal >= 10>>
						You drool with pleasure as $his gigantic dick completely fills your stretched pussy. Your cervix happily kisses the tip of $his dick, eager to get better acquainted.
						<<if canImpreg($PC, $activeSlave)>> You can't help but wiggle against the monster in you like a bitch in heat.<</if>>
					<<elseif $PC.career == "servant">>
						You moan with pleasure as $his gigantic dick stretches your used pussy to its limit. $He's far bigger than your Master ever was, but it would be hard to even find a rival for this dick to begin with.
						<<if canImpreg($PC, $activeSlave)>> A distinct hunger in your belly reminds you you're fertile and wriggling your hips like a bitch in heat.<</if>>
					<<elseif $PC.counter.birthsTotal > 2>>
						You've had multiple children and $his gigantic dick feels like giving birth in reverse.
					<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
						You nearly break your teeth as $he pushes $his gigantic dick into your pussy, trying to bear nearly tearing. $He gives you a chance to get used to $his size before continuing, not that it will help much.
					<<else>>
						You cry out as $he forces $his gigantic dick into your too-tight pussy, threatening to ruin you before reaching your cervix. $He considers pulling back out, but $he fills you so completely your vagina won't let go of what its got. Finally adjusting to the mass wedged inside you, you give the bulge in your lower belly an appreciative pat and urge $him to continue. It takes some time to get warmed up enough to handle $him, but the feeling is unimaginable.
					<</if>>
				<<else>>
					You cry out as $he forces $his gigantic dick into your too-tight rear, threatening to ruin you. $He considers pulling back out, but $he fills you so completely your anus won't let $him go. Finally adjusting to the mass wedged inside you, you give the bulge in your lower belly an appreciative pat and urge $him to continue. It takes some time to get warmed up enough to handle $him, but the feeling is unimaginable.
					<<if $PC.dick != 0>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock crushing your prostate.<</if>>
				<</if>>
			<<elseif $activeSlave.dick == 8>>
				titanic dick
			<<elseif $activeSlave.dick == 9>>
				absurd dick
			<<elseif $activeSlave.dick == 10>>
				inhuman dick
			<<else>>
				hypertrophied dick
			<</if>>
			$He gently fucks you<<if $activeSlave.balls > 8>>, $his oversized balls slapping your thighs with every thrust<</if>>, making sure you're enjoying $his penis as much as physically possible. You climax<<if $PC.dick != 0>>, spurting your own line across the floor<</if>> as $he cums inside, eliciting a gasp from the horny $girl. $He apologizes profusely for cumming in you, but after $he helps clean you up and back to your desk, all is forgiven. As you work, you can't help but steal glances at $his renewed erection. $He winks
			<<if !canTalk($activeSlave)>>
				and @@.mediumaquamarine;earnestly asks@@ for more when you get the chance.
			<<else>>
				and @@.mediumaquamarine;asks earnestly,@@ "Want <<s>>ome more, <<Master>>"
			<</if>>
			<<set $activeSlave.trust += 4>>
			<<if $PC.vagina != -1>>
				<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
			<<else>>
				<<run seX($activeSlave, "penetrative", $PC, "anal")>>
			<</if>>
			<<if canImpreg($PC, $activeSlave)>>
				<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
			<</if>>
		<</replace>>
	<</link>> //This option will penetrate you//
<</if>>

<<case "resistant shower">>

<<link "Enter the shower and quietly comfort $him">>
	<<replace "#result">>
		$He starts with surprise <<if canSee($activeSlave)>>as you enter the shower<<elseif canHear($activeSlave)>>as $he hears you enter the shower<<else>>as $he feels the water being disturbed by your body<</if>>, and then <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you in shock as you sit down beside $him, ignoring the water soaking your clothes. $He does not resist when you draw $him gently into your lap. $He's stiff and uncomfortable as you hold $him gently, but $he eventually relaxes and allows $his head to rest <<if ($PC.boobs >= 300)>>between your breasts<<else>>against your shoulder<</if>>. $He's utterly conflicted; the hateful person who $he is expected to fuck is tenderly comforting $him. $He finally seems to accept the animal comfort, whatever its source, and begins to @@.mediumaquamarine;trust@@ you to do more than just use $him.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Talk through $his problems with $him">>
	<<replace "#result">>
		You enter the bathroom and quietly wait until $he's done. When the water shuts off, $he stands up absently and spins so the shower's air dry function can blow the water off $him. (You can't help but notice
		<<if ($activeSlave.weight > 30)>>
			a lot of motion across $his
			<<if $activeSlave.weight > 190>>
				expansive
			<<elseif $activeSlave.weight > 130>>
				fat
			<<elseif $activeSlave.weight > 95>>
				thick
			<<else>>
				chubby
			<</if>>
			body when the air jets play across $him.)
		<<elseif ($activeSlave.belly >= 5000)>>
			how firm $his _belly belly is.)
		<<elseif ($activeSlave.dick > 1)>>
			$his soft cock flop around as one of the air jets strikes it.)
		<<elseif ($activeSlave.boobs > 800)>>
			<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
				how $his fake tits refuse to jiggle under the air jets.)
			<<else>>
				how the air jets produce a lot of delectable jiggling when they strike $his boobs.)
			<</if>>
		<<elseif ($activeSlave.butt > 4)>>
			how $he has to spread $his big buttcheeks to let an air jet dry between them.)
		<<elseif ($activeSlave.labia > 0)>>
			how one of the air jets creates some motion in $his generous labia.)
		<<elseif ($activeSlave.muscles > 5)>>
			how the air jets make $his taut abs look even more impressive.)
		<<else>>
			$his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>engorge<</if>> under the air jets.)
		<</if>>
		As $he rotates, <<if canSee($activeSlave)>>$he notices you with a start and looks concerned, but you do your best to look reassuring and beckon<<else>>you gently call $his name. $He jumps at the sound of your voice and looks concerned, but you do your best to calm $him and gingerly coax<</if>> $him out of the shower.
		<br><br>
		You ask $him what's troubling $him, and the look of concern returns. Suspecting that $he's afraid of telling the truth, you gently encourage $him to be honest, and assure $him that you're simply taking an interest in $his well-being. $He still hesitates, but eventually sniffles a little and
		<<if !canTalk($activeSlave)>>
			reluctantly gestures,
		<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>
			lisps,
		<<else>>
			admits,
		<</if>>
		<<if ($activeSlave.sexualFlaw == "hates oral") && ($activeSlave.counter.oral > 0)>>
			"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting fa<<c>>efucked."
		<<elseif ($activeSlave.sexualFlaw == "hates anal") && ($activeSlave.counter.anal > 0)>>
			"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting a<<ss>>raped."
		<<elseif ($activeSlave.sexualFlaw == "hates penetration") && ($activeSlave.counter.anal > 0)>>
			"It'<<s>> nothing <<s>>pe<<c>>ial, <<Master>>. I ju<<s>>t h-hate getting fucked."
		<<elseif ($activeSlave.behavioralFlaw == "hates women")>>
			"<<S>>orry, <<Master>>. I ju<<s>>t h-hate girl<<s>>. They're gro<<ss>>."
		<<elseif ($activeSlave.behavioralFlaw == "hates men")>>
			"<<S>>orry, <<Master>>. I ju<<s>>t h-hate cock<<s>>. I don't want to <<s>>ee another one, ever again."
		<<elseif ($activeSlave.sexualFlaw == "idealistic") && ($activeSlave.counter.oral > 0 || $activeSlave.counter.anal > 0 || $activeSlave.counter.vaginal > 0 || $activeSlave.counter.mammary > 0)>>
			"I feel like I'm going cra<<z>>y, <<Master>>. No one here <<s>>eem<<s>> to know that rape i<<s>> wrong. Th-they ju<<s>>t r-rape me."
		<<elseif ($activeSlave.sexualFlaw == "shamefast")>>
			"I want to cover my<<s>>elf <<s>>o badly, <<Master>>. I'm <<s>>o embarra<<ss>>ed all the time. I'm <<s>>o tired of being embarra<<ss>>ed."
		<<elseif ($activeSlave.sexualFlaw == "repressed") && ($activeSlave.counter.oral > 0 || $activeSlave.counter.anal > 0 || $activeSlave.counter.vaginal > 0 || $activeSlave.counter.mammary > 0)>>
			"I'm filthy, <<Master>>. I've been u<<s>>ed, and I can't ever be clean again. I'm a d-dirty, <<s>>inful whore."
		<<else>>
			"<<S>>orry, <<Master>>. I wa<<s>> ju<<s>>t r-remembering, b-before — all thi<<s>>."
		<</if>>
		You tell $him kindly that you understand, and that $he'll be trained to address this. Then, you turn and go. $He's mystified; though $he's not overjoyed by the promise of correction, $he finds $himself @@.hotpink;less resistant@@ to following your plans.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Use $him when $he gets out">>
		<<replace "#result">>
			Eventually $he finishes and switches the shower to dry. The airflow dries $him and $he steps out, but as $he does, $he's seized and flung over the countertop with a slap as $his naked, $activeSlave.skin <<if $activeSlave.belly >= 5000>> _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>skin<</if>> hits the surface.
			<<if $activeSlave.vagina > -1 && !canDoVaginal($activeSlave)>>
				With $his chastity belt protecting $his pussy, you ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass instead, drawing a pained sob.
			<<elseif $activeSlave.vagina == -1>>
				You ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob.
			<<elseif !canDoAnal($activeSlave)>>
				You ram mercilessly into $his cunt, forcing a few gasps out of $him before it sinks in that this is happening.
			<<else>>
				You take $his silly cunt just long enough to force a few gasps out of $him before you pull out and ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob.
			<</if>>
			As $he takes the pounding sullenly, <<if canSee($activeSlave)>>$he has a direct view of $his own eyes in the mirror, and clearly @@.gold;is disturbed by what $he sees.@@<<elseif canHear($activeSlave)>>$he can hear nothing but the sound of $his brutal rape, and clearly @@.gold;is disturbed by what $he hears.@@<<else>>$his blindness and deafness mean that one of the few things $he can feel is $his own rape, which @@.gold;disturbs $him to no end.@@<</if>>
			<<set $activeSlave.trust -= 5>>
			<<= VCheck.Both($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>

<<case "resistant gelding">>

<<link "Abuse $his ass">>
	<<replace "#result">>
		$He turns around as <<if canHear($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but you seize $his shoulder and spin $his back around without a word. You drag $him across the counter until $his face is over the sink, and turn it on. $He struggles in sheer incomprehension as you hold $his head over the filling basin with one hand and roughly grope $his butt with the other. When the sink is full, you tell $him to spread $his buttocks for you like a good butthole bitch. $He hesitates, so you push $his face under the surface of the water and hold it there until $he complies. You shove <<if $PC.dick == 0>>a dildo<<else>>your member<</if>> up $his anus so harshly that $he spasms and reflexively tries to get away, so you push $him under again until $he stops struggling. For the next ten minutes, $he gets shoved under water whenever $he offers the slightest resistance to anal rape. Soon, $his tears are pattering down into the sink. The next time you decide to buttfuck $him, $he's @@.gold;compliant from sheer terror.@@
		<<set $activeSlave.trust -= 5>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>>
<br><<link "Reassure $him of $his sexual worth">>
	<<replace "#result">>
		$He turns around as <<if canHear($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You gently turn $him around to face the mirror again, and working from the top of $his head, describe $his body in minute detail, explaining how pretty and valuable a sex slave $he is. When you're about to reach $his butt,
		<<if canTalk($activeSlave)>>
			$he uses gestures to beg you not to assrape $him.
		<<else>>
			<<if ($activeSlave.lips > 70)>>
				$he begs meekly through $his massive dick-sucking lips,
			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
				$he begs meekly through $his mouthful of piercings,
			<<else>>
				$he begs meekly,
			<</if>>
			"<<Master>>, plea<<s>>e, plea<<s>>e don't a<<ss>>rape me. I don't think I can take it."
		<</if>>
		You patiently explain that taking <<if $PC.dick == 0>>anything you feel like inserting into $his backdoor<<else>>your cock<</if>> is $his duty, and begin to massage $his sphincter open with a single gentle finger. $He doesn't enjoy the ensuing assfuck, but $he doesn't truly hate it either and @@.hotpink;begins to hope@@ that being your butt slave won't be so painful after all.
		<<set $activeSlave.devotion += 4>>
		<<= slaveSkillIncrease('anal', $activeSlave, 10)>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>>
<br><<link "Comfort $him">>
	<<replace "#result">>
		$He turns around as <<if canHear($activeSlave)>>$he hears<</if>> you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You run your hands along $his body and kiss $his deeply for a long while before reassuring $him of $his value to you. $He looks confused, but goes about $his business with dry eyes. $He hates you a little less, but wonders whether $he can get away with retaining some independence.
	<</replace>>
<</link>>

<<case "rebellious arrogant">>

<<link "Force $him out of bed and humiliate $him publicly">>
	<<replace "#result">>
		You drag $him unceremoniously out of bed and straight down into the public areas of $arcologies[0].name. $His struggles and protests grow more frantic as $he
		<<set _textArray = []>>
		<<if canSee($activeSlave)>>
			<<set _textArray.push("sees the first passersby beginning to stare at the little spectacle")>>
		<</if>>
		<<if canHear($activeSlave)>>
			<<set _textArray.push("begins to hear the various catcalls and other comments directed at $him")>>
		<<else>>
			<<set _textArray.push("feels the outdoor air on $his body")>>
		<</if>>
		<<if _textArray.length === 1>>
			<<print _textArray[0] + ".">>
		<<elseif _textArray.length === 2>>
			<<print _textArray[0] + " and " + _textArray[1] + ".">>
		<<elseif _textArray.length === 3>>
			<<print _textArray[0] + ", " + _textArray[2] + " and " _textArray[3] + ".">>
		<</if>>
		You force $him right there, thoroughly raping the struggling $girl in public. @@.gold;$He learns the consequences of refusal,@@
		<<if $arcologies[0].FSDegradationist !== "unset">>
			and @@.green;your citizens certainly enjoy the public spectacle.@@
			<<run repX(100, "event", $activeSlave)>>
		<<else>>
			but @@.red;your reputation has been decreased by the unseemly commotion.@@
			<<run repX(-100, "event", $activeSlave)>>
		<</if>>
		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
			<<= VCheck.Both($activeSlave, 1)>>
		<<elseif canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave)>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		<<set $activeSlave.trust -= 5>>
	<</replace>>
<</link>><<if (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave)))>> //This option will take $his virginity//<</if>>
<br><<link "Let $him stay in bed">>
	<<replace "#result">>
		You shrug and walk out of the room and back to your office; you've got more important things to worry about than some drowsy brat. $activeSlave.slaveName, for $his part, gets out of bed not long after you leave, but is surprised at @@.orangered;how easily $he got away with this,@@ and is wondering @@.mediumorchid;what else $he could get away with.@@
		<<set $activeSlave.trust += 10>>
		<<set $activeSlave.devotion -= 10>>
	<</replace>>
<</link>>
<<if $seePee == 1>>
	<br><<link "Let $him stay in bed, but move it to a public restroom">>
		<<replace "#result">>
			You quickly pin the blanket to the mattress, securing $him in place. You direct that a urinal in one of $arcologies[0].name's public restrooms be unbolted and replaced by the mattress, slave and all. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo (though muffled by the blanket) when $he feels urine beginning to soak through the blanket. After an hour or so $he's begging to be let out, @@.gold;swearing $he'll improve $his conduct.@@
			<<set $activeSlave.trust -= 5>>
		<</replace>>
	<</link>>
<</if>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Let $him stay in bed, but move it to a whorehouse">>
		<<replace "#result">>
			You quickly pin the blanket to the mattress, securing $him in place. You direct that $he be brought to an arcology salon that serves as a slave brothel. Once $he's there, you take a pair of scissors and cut a slit through the sheets. $He's been swearing and threatening all this time, but the calumny reaches a shrieking crescendo when $he feels a cock being shoved through the slit and between $his buttocks. Being muffled and held immobile for rape for hire @@.gold;terrifies $him@@ but @@.yellowgreen;earns some cash.@@
			<<set $activeSlave.trust -= 5>>
			<<if canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", "public", "penetrative", 5)>>
				<<if canDoAnal($activeSlave)>>
					<<run seX($activeSlave, "anal", "public", "penetrative", 5)>>
					<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
						After the patrons have their way with $him, @@.lime;both $his pussy and asshole have been broken in.@@ $He @@.mediumorchid;hates@@ losing $his virginities in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++, $activeSlave.anus++>>
					<<elseif $activeSlave.vagina == 0>>
						After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>>
					<<elseif $activeSlave.anus == 0>>
						After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>>
					<</if>>
					<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
						<<= knockMeUp($activeSlave, 25, 2, -2, 1)>>
					<</if>>
				<<else>>
					<<if $activeSlave.vagina == 0>>
						After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
						<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>>
					<</if>>
					<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
						<<= knockMeUp($activeSlave, 25, 0, -2, 1)>>
					<</if>>
				<</if>>
			<<elseif canDoAnal($activeSlave)>>
				<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
				<<if $activeSlave.anus == 0>>
					After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an undignified manner and @@.gold;fears@@ what will be taken from $him next.
					<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>>
					<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
						<<= knockMeUp($activeSlave, 50, 1, -2, 1)>>
					<</if>>
				<</if>>
			<</if>>
			<<run cashX(100, "event", $activeSlave)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<<if $arcade > 0>>
	<br><<link "Sentence $him to a month in the arcade">>
		<<replace "#result">>
			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
			<<if ($activeSlave.muscles > 30)>>
				$His powerful form has to be sedated for immurement in the arcade.
			<<elseif ($activeSlave.weight >= 190)>>
				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
			<<elseif $activeSlave.belly >= 120000>>
				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
			<<elseif ($activeSlave.weight >= -10)>>
				$His desperate struggles make immuring $him in the arcade difficult.
			<<elseif $activeSlave.belly >= 1500>>
				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
			<<elseif $activeSlave.muscles < -15>>
				$His weak body makes immuring $him in the arcade pathetically easy.
			<<else>>
				$His thin form makes immuring $him in the arcade pathetically easy.
			<</if>>
			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
			<<= assignJob($activeSlave, "be confined in the arcade")>>
			<<set $activeSlave.sentence = 4>>
		<</replace>>
	<</link>>
<</if>>

<<case "not my name">>

<<link "Extirpate this foolishness with pain">>
	<<replace "#result">>
		You seize $him and begin to bind $him for appropriate punishment. $activeSlave.slaveName does not resist you physically at first. $He finds $himself tied bent over your desk, face-down, with $his arm<<if hasBothArms($activeSlave)>>s<</if>> locked behind $him<<if $activeSlave.belly >= 1500>> and $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly hanging off the edge<</if>>. $He struggles a little when you insert your
		<<if $PC.dick > 0>>
			cock
		<<else>>
			strap-on
		<</if>>
		into $his <<if ($activeSlave.anus == 1)>>poor little anus<<elseif ($activeSlave.anus == 2)>>whore's butt<<else>>gaping rear end<</if>>, but $his real agony begins when you place $his arm<<if hasBothArms($activeSlave)>>s<</if>> in an inescapable joint lock and apply a little pressure. It doesn't damage $him, but it easily causes more pain than $he is capable of resisting. $He does a little dance within $his bindings, squealing and involuntarily clenching you nicely with $his anal ring. You require $him to recite the litany "My name i<<s>> <<print _slavename>>!", coaching $him with alternate orders and agonizing correction until $he's screaming every word at the top of $his lungs in an endless wail. $His screeching rises and falls as $he feels the burning sensation of your merciless use of $his ass, but $he works $his lungs hard to avoid as much pain as $he can. When you've climaxed and cast off $his bindings, you make $him repeat $his name one last time as $he stiffly rubs $his abused arm<<if hasBothArms($activeSlave)>>s<</if>> and anus. $He does, @@.gold;without hesitation.@@
		<<set $activeSlave.trust -= 5>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>>
<br><<link "Allow $him to resume $his birth name">>
	<<replace "#result">>
		You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, but $he soon finds that $his fears are unjustified. You offer no condition or "catch" with this bit of generosity; it seems all $he really had to do was ask. You usher the stunned $desc out of your office and on to $his duties before $he can even offer a perfunctory "thanks". Over the next week, it's clear that while $activeSlave.slaveName — no, $activeSlave.birthName — is @@.mediumorchid;not sure what to think of you now,@@ it's clear that $he is at least @@.orangered;less afraid of you.@@
		<<set $activeSlave.trust += 15, $activeSlave.devotion -= 5, $activeSlave.slaveName = $activeSlave.birthName>>
	<</replace>>
<</link>>
<br><<link "Allow $him to resume $his birth name, but make it publicly humiliating">>
	<<replace "#result">>
		You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, and $he soon finds that $his fears are not unjustified. You bring $him out to <<if $club>>$clubName<<else>>a public club<</if>>, and explain with equanimity that $he has two choices: $he can either introduce $himself to strangers by name and offer them free oral sex, or $he can be whipped until $he introduces $himself to strangers by name and offers them free oral sex. $His lip quivers a little, but $he stumbles over to a nearby group of local worthies and whimpers hesitantly, "H-hi, my name i<<s>> <<print _name>>, can I <<s>>uck you off, plea<<s>>e?" They laugh, and understanding the situation perfectly, give you a @@.green;grateful wave@@ even as their leader pushes $him to $his knees. For the rest of the week, $he's seeing to $his duties, sleeping, or blowing strangers after telling them $his name. Though $he has reassumed $his birth name, it is @@.gold;no longer any source of independence to $him.@@
		<<run repX(500, "event", $activeSlave)>>
		<<set $activeSlave.trust -= 5, $activeSlave.slaveName = $activeSlave.birthName>>
		<<run seX($activeSlave, "oral", "public", "penetrative", 50)>>
		<<set $oralTotal += 50>>
		<<if random(1,100) > 50>>The experience has given $him an @@.lightcoral;interest in humiliation.@@<<set $activeSlave.fetishStrength = 10>><<set $activeSlave.fetish = "humiliation">><<set $activeSlave.fetishKnown = 1>><</if>>
	<</replace>>
<</link>> //This may impact $his sexuality.//
<<if $arcade > 0>>
	<br><<link "Sentence $him to a month in the arcade">>
		<<replace "#result">>
			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
			<<if ($activeSlave.muscles > 30)>>
				$His powerful form has to be sedated for immurement in the arcade.
			<<elseif ($activeSlave.weight >= 190)>>
				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
			<<elseif $activeSlave.belly >= 120000>>
				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
			<<elseif ($activeSlave.weight >= -10)>>
				$His desperate struggles make immuring $him in the arcade difficult.
			<<elseif $activeSlave.belly >= 1500>>
				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
			<<elseif $activeSlave.muscles < -15>>
				$His weak body makes immuring $him in the arcade pathetically easy.
			<<else>>
				$His thin form makes immuring $him in the arcade pathetically easy.
			<</if>>
			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
			<<= assignJob($activeSlave, "be confined in the arcade")>>
			<<set $activeSlave.sentence = 4>>
		<</replace>>
	<</link>>
<</if>>

<<case "bondage gear">>

<<link "Let $him go naked">>
	<<replace "#result">>
		<<if canWalk($activeSlave)>>$He skips away happily,<<elseif isAmputee($activeSlave)>>$He wriggles $his stumps with pleasure,<<else>>$He cheerfully leaves your office,<</if>> overjoyed to be free of the clothing you ordered $him to wear. $His obedience to you @@.mediumorchid;has decreased,@@ as has @@.mediumaquamarine;$his fear@@ of you.
		<<set $activeSlave.devotion -= 5, $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Force $him to choose between $his straps and public nudity">>
	<<replace "#result">>
		You tell $him that you understand, and that $he can go naked; $he looks thrilled until you tell $him $he'll be walking every hallway in $arcologies[0].name today, nude. Before $he can protest, you add that $his only other option is to put $his proper clothes back on and be a good little bitch.
		<<if $activeSlave.fetish == "humiliation">>
			$He @@.hotpink;happily accepts the alternative,@@
			<<if canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				$his dick hardening
			<<elseif $activeSlave.dick > 0>>
				$his dick leaking precum
			<<elseif $activeSlave.vagina > 0>>
				$his pussy moistening
			<<else>>
				$his nipples <<if $activeSlave.nipples != "fuckable">>hardening<<else>>swelling<</if>>
			<</if>>
			with anticipation.
			<<set $activeSlave.devotion += 4, $activeSlave.clothes = "no clothing">>
			<<if $activeSlave.fetishKnown == 0>>
				That was not the response you expected; turns out $he has a @@.lightcoral;humiliation fetish.@@
				<<set $activeSlave.fetishKnown = 1>>
			<</if>>
		<<else>>
			$He shudders and @@.gold;hurries to get $his straps back on.@@
			<<set $activeSlave.trust -= 5>>
		<</if>>
	<</replace>>
<</link>>
<<if $activeSlave.buttplug == "none" && ($activeSlave.vagina < 0 || ($activeSlave.vaginalAccessory == "none" && $activeSlave.vaginalAttachment == "none"))>>
	<br><<link "Add dildos to $his gear">>
		<<replace "#result">>
			You tell $him that you understand, and that you will get $him some new clothing. $He is thrilled, but $his pleasure turns to horror when $he sees that the new clothes are a version of the same slave bondage gear, just with inward-facing dildos for $his <<if $activeSlave.vagina > -1>>pussy and <</if>> asshole.
			<<if $activeSlave.anus == 0 || $activeSlave.vagina == 0>>
				You pause before getting $him dressed; there's little reason to waste virginities on plugs. You <<if $PC.dick != 0>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over, opting to start with $his tight pussy.
				<<= VCheck.Both($activeSlave, 1)>>
			<<elseif $activeSlave.anus == 0>>
				You pause before getting $him dressed; there's little reason to waste $his anal virginity on a plug. You <<if $PC.dick != 0>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight anus.
				<<= VCheck.Anal($activeSlave, 1)>>
			<<elseif $activeSlave.vagina == 0>>
				You pause before getting $him dressed; there's little reason to waste $his virginity on a plug. You <<if $PC.dick != 0>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight pussy.
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<</if>>
			For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> $his <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly >= 1500>>is<</if>> being penetrated by $his own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into $his _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@
		<</replace>>
		<<set $activeSlave.devotion += 4>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<<if $arcade > 0>>
	<br><<link "Sentence $him to a month in the arcade">>
		<<replace "#result">>
			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
			<<if ($activeSlave.muscles > 30)>>
				$His powerful form has to be sedated for immurement in the arcade.
			<<elseif ($activeSlave.weight >= 190)>>
				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
			<<elseif $activeSlave.belly >= 120000>>
				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
			<<elseif ($activeSlave.weight >= -10)>>
				$His desperate struggles make immuring $him in the arcade difficult.
			<<elseif $activeSlave.belly >= 1500>>
				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
			<<elseif $activeSlave.muscles < -15>>
				$His weak body makes immuring $him in the arcade pathetically easy.
			<<else>>
				$His thin form makes immuring $him in the arcade pathetically easy.
			<</if>>
			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints.
			<<= assignJob($activeSlave, "be confined in the arcade")>>
			<<set $activeSlave.sentence = 4>>
		<</replace>>
	<</link>>
<</if>>

<<case "vocal disobedience">>

<<link "Give $him a rough spanking">>
	<<replace "#result">>
		<<if (hasAnyLegs($activeSlave))>>
			You tie the protesting slave to your desk
			<<if $activeSlave.belly >= 5000>>
				with $his chest against the top of the desk with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly hanging of the side, so that
			<<else>>
				so that $his chest is against the top of the desk and
			<</if>>
			$he's standing upright with $his ass in the air.
		<<else>>
			<<if $activeSlave.belly >= 300000>>
				You carefully balance the protesting, defenseless torso atop $his own _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>.
			<<elseif $activeSlave.belly >= 5000>>
				You place the protesting, defenseless torso on your lap, face-down with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly between your legs.
			<<else>>
				You place the protesting, defenseless torso on your desk, face-down.
			<</if>>
		<</if>>
		You spank $him severely, leaving $his buttocks bright pink. $He must count the strokes or have $his punishment start over. Sobbing, $he counts
		<<if ($activeSlave.lips > 70)>>
			through $his massive dick-sucking lips,
		<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
			through $his inconvenient oral piercings
		<</if>>
		"<<S>>i<<x>>, AAGHHH, <<s>>even, AAGHHH, <<s>>even"
		and then realizes $his mistake and begs for mercy — in vain, of course. You finish $him off with a rough
		<<if canDoVaginal($activeSlave)>>
			fuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave)>>
			assfuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			throatfuck, with $him jerking against $his restraints every time you hilt yourself and slap $his ass.
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		@@.gold;$He learns from the experience.@@
		<<set $activeSlave.trust -= 5>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Sentence $him to public use">>
		<<replace "#result">>
			When $he <<if canSee($activeSlave)>>sees $he's being taken to a sex booth<<elseif canHear($activeSlave)>>hears the sounds of a public sex parlor<<else>>finally figures out $his destination<</if>>, $he begins to cry. $He begs
			<<if ($activeSlave.lips > 70)>>
				through $his massive dick-sucking lips,
			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
				through $his inconvenient oral piercings,
			<<else>>
				through $his tears,
			<</if>>
			"Plea<<s>>e, no, <<Master>>, I'll be good —" but is cut off when the machine closes around $his head. It will offer $his
			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
				ass and pussy
			<<elseif canDoAnal($activeSlave)>>
				ass
			<<else>>
				pussy
			<</if>>
			to anyone who pays for the rest of the week, and keep $his fed and cleaned. $His world will become nothing but silent, featureless darkness and dick. @@.yellowgreen;You earn some money off $him,@@ and by the end of the night $his
			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
				holes get
			<<else>>
				hole gets
			<</if>>
			<<if (canDoAnal($activeSlave) && $activeSlave.anus == 0) || (canDoVaginal($activeSlave) && $activeSlave.vagina == 0)>>
				well stretched.
			<<else>>
				@@.lime;well stretched.@@
			<</if>>
			@@.hotpink;$He learns from the experience.@@
			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
				<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
					@@.lime;$He's lost both $his virginity and anal cherry.@@
				<<elseif $activeSlave.vagina == 0>>
					@@.lime;$He's lost $his virginity.@@
				<<elseif $activeSlave.anus == 0>>
					@@.lime; $He's lost $his anal cherry.@@
				<</if>>
				<<set $activeSlave.vagina++, $activeSlave.anus++>>
				<<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>>
				<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
				<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
					<<= knockMeUp($activeSlave, 25, 2, -2)>>
				<</if>>
			<<elseif canDoAnal($activeSlave)>>
				<<if $activeSlave.anus == 0>>
					@@.lime; $He's lost $his anal cherry.@@
				<</if>>
				<<set $activeSlave.anus++>>
				<<run seX($activeSlave, "anal", "public", "penetrative", 5)>>
				<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
					<<= knockMeUp($activeSlave, 50, 1, -2)>>
				<</if>>
			<<else>>
				<<if $activeSlave.vagina == 0>>
					@@.lime;$He's lost $his virginity.@@
				<</if>>
				<<set $activeSlave.vagina++>>
				<<run seX($activeSlave, "vaginal", "public", "penetrative", 20)>>
				<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
					<<= knockMeUp($activeSlave, 50, 0, -2)>>
				<</if>>
			<</if>>
			<<set $activeSlave.devotion += 4>>
			<<run cashX(50, "event", $activeSlave)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<br><<link "Give $him the day off">>
	<<replace "#result">>
		$He skips away happily and spends the rest of the day lounging around. $His obedience to you @@.mediumorchid;has decreased.@@
		<<set $activeSlave.devotion -= 5>>
	<</replace>>
<</link>>

<<case "fearful humiliation">>

<<link "Publicly prove the depths of $his humiliation to $him">>
	<<replace "#result">>
		You drag a fearful, embarrassed<<if $activeSlave.belly >= 1500>>, <<if $activeSlave.bellyPreg >= 0>>pregnant<<else>>swollen<</if>><</if>> and totally naked $activeSlave.slaveName out into a public hall. A small knot of passersby gather around grinning, enjoying the sight of $his nakedness and anticipating a show. To $his surprise, you order $him to take a few minutes to recount $his life story. $He's hesitant at first, but obeys, only realizing as $he nears the present day what an abject story of degradation and humiliation $his life truly is. $He continues shakily, describing in brief $his current life, crying a little and trembling with arousal. At a whispered command from you, $he concludes
		<<if !canTalk($activeSlave)>>
			in embarrassed gestures, "and now my <<= getWrittenTitle($activeSlave)>> is going to fuck my worthless body in public."
		<<else>>
			"and now my <<Master>> i<<s>> going to fuck my worthle<<ss>> body in public."
		<</if>>
		You take $him standing there, as $he cries with mixed shame and sexual pleasure.
		<<if !canDoVaginal($activeSlave)>>
			$He <<if ($activeSlave.dick > 0)>>cums even though $he's soft<<else>>climaxes even though $he's filled<</if>> with the shame, <<if $PC.dick == 0>>$his anus clenching around the strap-on you're pumping in and out of it<<else>>adding a sad little dribble to the load dripping out of $his asshole<</if>>.
		<<else>>
			<<if $PC.dick == 0>>You make $him clean $his pussyjuice off your strap-on with $his bitch mouth before you take it off.<<else>>As you pull out of $his clenching pussy, cum runs down $his quavering thighs.<</if>>
		<</if>>
		@@.hotpink;$He has become more submissive to you,@@ and @@.green;your reputation has increased.@@
		<<set $activeSlave.devotion += 4>>
		<<run repX(500, "event", $activeSlave)>>
		<<if canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>>
<br><<link "Use a bait and switch tactic on $him, before public use">>
	<<replace "#result">>
		You instruct $him to get cleaned up and get dressed in $his nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking $him out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName $his real orders for the evening. $He freezes in terror but eventually makes $his way up to the stage, strips in front of all the patrons, and says
		<<if !canTalk($activeSlave)>>
			in embarrassed gestures, "Please use me, I'm cheap."
		<<else>>
			"One credit per fuck, if you'll do my worthle<<ss>> body on <<s>>tage."
		<</if>>
		By the end of the night, $he's been fucked by almost everyone in the bar, and $his itch for humiliation has been well and truly scratched. As you collect $his earnings from the thoroughly pleased bartender, $he lies quiescent in a puddle of cum and exhaustion. @@.yellowgreen;You've collected a decent fee,@@ and @@.green;your reputation has increased.@@
		<<run repX(500, "event", $activeSlave)>>
		<<run cashX(100, "event", $activeSlave)>>
		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>>
			<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
				<<= knockMeUp($activeSlave, 25, 2, -2)>>
			<</if>>
		<<elseif canDoVaginal($activeSlave)>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 20)>>
			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
				<<= knockMeUp($activeSlave, 50, 0, -2)>>
			<</if>>
		<<else>>
			<<run seX($activeSlave, "anal", "public", "penetrative", 20)>>
			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
				<<= knockMeUp($activeSlave, 50, 1, -2)>>
			<</if>>
		<</if>>
	<</replace>>
<</link>>

<<case "heels">>

<<link "Nothing, $he'll crawl for the rest of the week">>
	<<replace "#result">>
		$He is surprised <<if canSee($activeSlave)>>to see the box is empty<<else>>when $he reaches into the box and finds nothing<</if>>. By the time $he realizes what this means, you've already confiscated $his old heels and seated yourself at your desk. Ordered to suck, $he comes gingerly over <<if hasAllLimbs($activeSlave)>>on all fours<<else>>while crawling on the ground<</if>><<if $activeSlave.belly >= 100000>>, $his belly dragging along the floor,<<elseif $activeSlave.belly >= 10000>>, $his swollen belly getting in $his way,<</if>> and gets you off with $his whore's mouth. The rest of the week is a trying experience for $him. The most comfortable posture for $him to walk along in<<if hasAllLimbs($activeSlave)>> on all fours<</if>> displays $his
		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
			holes nicely and you frequently avail yourself to which ever is more tempting at the time.
			<<= VCheck.Both($activeSlave, 5, 5)>>
		<<elseif canDoVaginal($activeSlave)>>
			pussy nicely, so $he gets it in $his feminine fold a lot.
			<<= VCheck.Vaginal($activeSlave, 10)>>
		<<else>>
			anus nicely, so $he gets it up $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass a lot.
			<<= VCheck.Anal($activeSlave, 10)>>
		<</if>>
		<<if $activeSlave.dick != 0>>The effort it takes to move usually keeps $his dick soft as $he does, so it flops around beneath $him all week.<</if>>
		@@.hotpink;$He has become more submissive to you.@@
		<<set $activeSlave.devotion += 4, $activeSlave.shoes = "none">>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<br><<link "Pretty heels, we're going out">>
	<<replace "#result">>
		You have an appointment, and $activeSlave.slaveName gets to be your arm candy. $He's almost beside $himself with pride when you leave the penthouse and head out into the warm sun. You have to walk slowly so $he can keep $his feet and still keep up, since you've taken the unusual step of rewarding $him by letting $him walk under your arm. To avoid giving the impression that the $girl on your arm isn't a slave, $he's naked except for $his lovely heels. As $he minces along $his breasts
		<<if $activeSlave.bellyFluid >= 5000>>
			jiggle delightfully alongside $his <<print $activeSlave.inflationType>>-filled belly
		<<elseif $activeSlave.belly >= 5000>>
			jiggle delightfully atop $his gravid belly
		<<else>>
			sway freely
		<</if>>
		and draw the respectful admiration of onlookers. <<if $activeSlave.dick != 0>>Most of the female onlookers and some of the men also spare an eye for $his swinging dick. <</if>>@@.mediumaquamarine;$His trust in you has increased.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Heels for an anal slut">>
		<<replace "#result">>
			$activeSlave.slaveName is a little perplexed to find that the heels look quite normal, though they're very tall. When $he tries them on, however, standing requires $him to splay $his hips slightly so that $his <<if $seeRace == 1>>$activeSlave.race <</if>>butt is a little spread even when $he stands upright. What's more, the heels are tall to raise $his butt to the exact level <<if $PC.dick == 0>>a strap-on is at when you wear one and<<else>>your cock is at<</if>> when you stand behind $him. When you start demonstrating the advantages of this to $him, the heels detect that the wearer is being fucked, begin to play a light show, and start playing a heavy beat in time with your thrusts. $He would laugh if $he weren't concentrating on the buttsex. @@.hotpink;$His submission to you has increased.@@
			<<set $activeSlave.devotion += 4>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>

<<case "heavy piercing">>

<<link "Weight $his piercings and fuck $him so they swing">>
	<<replace "#result">>
		You order $him to make sure all of $his piercings have rings in them, and then come join you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You put $him down on <<if hasAllLimbs($activeSlave)>>all fours<<else>>the ground<</if>><<if hasBothLegs($activeSlave)>> with $his legs spread<</if>><<if $activeSlave.belly >= 50000>>, belly brushing the floor<</if>>, <<if canSee($activeSlave)>>blindfold $him, <</if>>and then start clipping little metal weights on short chains to each of $his piercings. Before long, $his nipples are painfully stretched under the tugging, <<if ($activeSlave.dick > 0)>>and the weights up and down $his cock are causing $his considerable discomfort.<<elseif $activeSlave.vagina == -1>>and though $he lacks any external genitalia to weight, you make sure $his ass feels the burn.<<else>>$his pussylips are being pulled downward, and even $his clit is agonizingly tortured.<</if>> You fuck $him thoroughly, pounding $him so the weights swing. $He sobs and begs. @@.hotpink;$He has become more submissive to you.@@
		<<set $activeSlave.devotion += 4>>
		<<if canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<br><<link "Secure $him by $his piercings for public use">>
	<<replace "#result">>
		You order $him to make sure all of $his piercings have rings in them, and then come to you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You lead $him outside and secure $him in a side hall so that $his ass is presented to anyone who takes interest. $He's forced to maintain this exact posture by a light chain between <<if $activeSlave.belly > 10000>>$his popped navel and a ring on the ground.<<elseif ($activeSlave.dick > 0)>>$his dickhead and a ring on the ground.<<elseif $activeSlave.vagina == -1>>$his nipples and a ring on the ground.<<else>>$his pussy and a ring on the ground.<</if>> You fuck $his ass to check the bondage; it's good. The chain is out of the way, and $he jerks and struggles amusingly to keep it from tugging $him painfully. You pull out to leave $his fucked butt with cum dribbling out of it, and leave $him to the tender mercies of the growing crowd. @@.green;The sadists among the public are duly grateful.@@
		<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
			<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
				They take pleasure in claiming @@.lime;both $his virginity and anal cherry.@@
			<<elseif $activeSlave.vagina == 0>>
				They take pleasure in claiming @@.lime;$his virginity.@@
			<<elseif $activeSlave.anus == 0>>
				They take pleasure in claiming @@.lime;$his anal cherry.@@
			<</if>>
			<<set $activeSlave.vagina++, $activeSlave.anus++>>
			<<run seX($activeSlave, "anal", "public", "penetrative", 5)>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 5)>>
			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
				<<= knockMeUp($activeSlave, 10, 2, -2)>>
			<</if>>
		<<elseif canDoAnal($activeSlave)>>
			<<if $activeSlave.anus == 0>>
				They take pleasure in claiming @@.lime;$his anal cherry.@@
			<</if>>
			<<set $activeSlave.anus++>>
			<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
				<<= knockMeUp($activeSlave, 25, 1, -2)>>
			<</if>>
		<<else>>
			<<if $activeSlave.vagina == 0>>
				They take pleasure in claiming @@.lime;$his virginity.@@
			<</if>>
			<<set $activeSlave.vagina++>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 5)>>
			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
				<<= knockMeUp($activeSlave, 25, 0, -2)>>
			<</if>>
		<</if>>
		<<run repX(2500, "event", $activeSlave)>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>

<<case "cumslut whore">>

<<link "$He must have at least a little room left">>
	<<replace "#result">>
		You call $activeSlave.slaveName in and ask how full $he is. $He looks confused for a moment but soon figures out what you mean.
		<<if !canTalk($activeSlave) && (!hasAnyArms($activeSlave))>>
			As a mute amputee $he communicates poorly,
			<<if $activeSlave.inflationType == "cum">>
				<<if $activeSlave.bellyFluid >= 10000>>
					but $he sticks out $his hugely bloated cum-belly and opens wide, $his intent clear.
				<<elseif $activeSlave.bellyFluid >= 5000>>
					but $he wiggles around so $his cum-filled belly sloshes audibly before opening wide.
				<<else>>
					but $he sticks out $his cum-swollen belly and opens wide, $his intent clear.
				<</if>>
			<<else>>
				but $he does manage to look hungry.
			<</if>>
		<<elseif !canTalk($activeSlave)>>
			<<if $activeSlave.inflationType == "cum">>
				<<if $activeSlave.bellyFluid >= 10000>>
					$He strokes $his hugely bloated cum-belly, makes a sign for "never," and then makes a sign for "enough."
				<<elseif $activeSlave.bellyFluid >= 5000>>
					$He jiggles $his cum-filled belly lewdly, makes a sign for "need," and then makes a sign for "more."
				<<else>>
					$He pats $his cum-swollen belly, makes a sign for "much," and then makes a sign for "room."
				<</if>>
			<<else>>
				$He gestures at $his<<if $activeSlave.belly >= 1500>> _belly<</if>> stomach, makes a sign for "full," and then makes a sign for "never."
			<</if>>
		<<else>>
			<<if $activeSlave.inflationType == "cum">>
				<<if $activeSlave.bellyFluid >= 10000>>
					$He strokes $his hugely bloated cum-belly, "Oh <<Master>>, I've had <<s>>o much cum already today, but I can't help my<<s>>elf if you're offering me even more. I'll find <<s>>ome room in there,"
				<<elseif $activeSlave.bellyFluid >= 5000>>
					$He jiggles $his cum-filled belly lewdly, "Oh <<Master>>, there'<<s>> <<s>>o much already in me, but I feel <<s>>o empty <<s>>till."
				<<else>>
					$He pats $his cum-swollen stomach, "Oh <<Master>>, thi<<s>> little belly i<<s>> nothing, I alway<<s>> have room for more,"
				<</if>>
			<<else>>
				"Oh <<Master>>, I'll never be full again,"
			<</if>>
			$he <<say>>s<<if $activeSlave.lips > 70>> past $his enormous lips<<elseif $activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2>> past $his mouthful of piercings<</if>>.
		<</if>>
		$He comes eagerly over and sucks you off with enthusiasm. As you cum, $he orgasms quickly at the <<if canTaste($activeSlave)>>taste<<else>>feeling<</if>> of the stuff hitting $his mouth<<if $PC.balls >= 10>>, even as your load keeps flowing into $his gullet<<if $PC.balls >= 30>> steadily bloated the poor $girl<</if>><</if>>.
		<<if !canTalk($activeSlave)>>
			$He <<if !canTaste($activeSlave)>>(rather ironically) <</if>>signs that you taste great.
		<<else>>
			"<<Master>>, you ta<<s>>te great," $he <<if !canTaste($activeSlave)>>(rather ironically) <</if>>purrs.
		<</if>>
		@@.mediumaquamarine;$He has become more trusting@@ in your willingness to give $him what $he wants.
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Cum in $his mouth all night">>
	<<replace "#result">>
		You've had a busy day, so you've been unusually remiss in fucking your slaves. Naturally, this means you'll be spending the evening wandering around your home using your living sexual appliances. $activeSlave.slaveName is instructed to follow you and assist. $He's tired, so <<if (!hasAnyArms($activeSlave))>>you bring <<if (isAmputee($activeSlave))>>$his limbless torso<<else>>$him<</if>> along as a cum receptacle. Whenever you're about to finish in another slave, you pull out and fill $his mouth instead.<<else>>you let $him tag meekly along, masturbating gently as you use other slaves or just watching lazily. But whenever you're on the point of coming, you switch to $his mouth and let $him finish you with a few sucks and pumps of $his fatigued hand<<if (hasBothArms($activeSlave))>>s<</if>>.<</if>> By the time you put the exhausted $activeSlave.slaveName to bed $he's in a haze of cum-induced pleasure. @@.hotpink;$He has become more submissive to you.@@
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative", 5)>>
	<</replace>>
<</link>>
<<if ($cumSlaves >= 5)>>
	<br><<link "Give $him access to the Dairy's cockmilk">>
		<<replace "#result">>
			You let $him know you have a sexual accessory for $him to use. This isn't too unusual, so $he comes to your office without much anticipation. $He doesn't understand why you have an enormous sealed canister of fresh cum on your desk, but when you explain that it's $hers to play with on the job, $he starts to bounce with excitement. Not all of $his customers are interested in cum play, but quite a few are, and $he spends almost as much time cleaning up the gorgeous messes that get made as $he does making them. It's a valuable and @@.yellowgreen;profitable@@ whore who @@.hotpink;looks forward@@ to $his next customer.
			<<set $activeSlave.devotion += 10>>
			<<run cashX(random(500,1000), "event", $activeSlave)>>
		<</replace>>
	<</link>>
<</if>>

<<case "loose buttslut">>

<<link "Add something to fill $him completely">>
	<<replace "#result">>
		$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear you<<else>>sense your presence<</if>> until you<<if $PC.dick == 0>> don a strap-on and<</if>> tip $him over face forward. With $him on $his knees, $his dildo-stuffed ass is in the air; $he's still masturbating between $his legs. After a moment's consideration, you slide two exploratory fingers in alongside the dildo. $He gasps and masturbates harder. Thus encouraged, you shove <<if $PC.dick == 0>>the strap-on<<else>>your member<</if>> in alongside the dildo. <<if $activeSlave.voice != 0>>$He screams at the surprise double anal, sobbing and begging,<<else>>$He screams noiselessly at the surprise double anal, waving $his hands in distress,<</if>> but $he doesn't try to stop you and doggedly keeps rubbing. By the time you're finished $his asshole is a gaping hole much bigger than the average pussy. @@.hotpink;$He has become more submissive to you.@@
		<<set $activeSlave.devotion += 4>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>>
<br><<link "Let $him use a machine">>
	<<replace "#result">>
		There's no reason for $him to do that in a quiet corner. You interrupt $him and bring $him into your office, setting $him up on a machine so $he can have that dildo rammed up $his ass for as long as $he likes. Your office is filled with the rhythmic sounds of a sloppy anus being pounded for a good long while.
		<<if $assistant.personality > 0>>
			The
			<<switch $assistant.appearance>>
			<<case "monstergirl">>
				monstrous voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my cocks, slave."
			<<case "shemale">>
				sultry voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my dick, bitch."
			<<case "amazon">>
				aggressive voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "be a warrior."
			<<case "businesswoman">>
				dominant voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "stop struggling and be a good $girl."
			<<case "goddess" "hypergoddess">>
				calming voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax and accept what you deserve, $girl."
			<<case "loli">>
				young, naïve voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll get better."
			<<case "preggololi">>
				young voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, you know it'll be fun!"
			<<case "angel">>
				harmonious voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll be over soon."
			<<case "cherub">>
				cheerful voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "relax, it'll feel better if you do!"
			<<case "incubus">>
				forceful voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "take my dick, cocksleeve, take it till you split!"
			<<case "succubus">>
				sultry voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "enjoy the pounding while it lasts."
			<<case "imp">>
				mischievous voice of your assistant's avatar can also be heard, mocking $activeSlave.slaveName, "your butthole is going to be so loose after this! You'll be nothing more than a used up whore!"
			<<case "witch">>
				uncertain voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "just relax and get it over with."
			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
				unclear voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "scream louder and let it fill your body completely."
			<<case "schoolgirl">>
				girly voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "be quiet, or Teacher will hear us."
			<<default>>
				poor slave is taken to the very limit by your assistant.
			<</switch>>
			<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
		<<else>>
			<<run actX($activeSlave, "anal")>>
		<</if>>
		By the time $he's climaxed out, $he's so tired and apathetic that $he can't bring $himself to get off it or ask for help, so $he just relaxes and enjoys the internal massage<<if $activeSlave.dick != 0>> while $his flaccid dick twitches weakly<</if>>. @@.mediumaquamarine;$He has become more trusting of you,@@ since you knew just what $he needed.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if $HeadGirlID != 0 && $HeadGirlID != $activeSlave.ID>>
	<br><<link "Call your Head Girl in for double anal">>
		<<setLocalPronouns _S.HeadGirl 2>>
		<<replace "#result">>
			When _S.HeadGirl.slaveName comes into your office in response to your summons, _he2 finds $activeSlave.slaveName sitting in your lap with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his gaping butt<<if $PC.vagina != -1>><<if $PC.dick != 0>>, your bare pussy very visible at the base of your working cock<</if>><</if>>. _S.HeadGirl.slaveName's expression softens when _he2 realizes _he2's here for pleasure, not business. $activeSlave.slaveName gasps a little when $he <<if canHear($activeSlave)>>hears you tell _S.HeadGirl.slaveName to join you up $his asshole,<<else>>feels you pull apart $his asscheeks to make some room for _S.HeadGirl.slaveName,<</if>> but $he doesn't protest.
			<<if ($activeSlave.chastityPenis == 1)>>
				Since your poor Head Girl can't use _his2 caged cock, _he2 takes a dildo and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
			<<elseif canAchieveErection() && _S.HeadGirl.dick > 7>>
				Even though your Head Girl is rock-hard and ready to fuck, _his2 cock is far too large to fit into even the most stretched slave's holes. Sighing, _he2 takes a dildo and shoves it up $activeSlave.slaveName's already-filled butt instead.
			<<elseif canAchieveErection() && _S.HeadGirl.dick > 6>>
				Your lusty Head Girl is already hard and forces _his2 oversized cock up $activeSlave.slaveName's already-filled butt while <<if $activeSlave.nipples != "fuckable">>tweaking<<else>>fingering<</if>> the moaning slave's nipples.
			<<elseif (_S.HeadGirl.dick > 0) && (_S.HeadGirl.hormoneBalance >= 100)>>
				Since your poor Head Girl can't get hard due to _his2 hormone therapy, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
			<<elseif (_S.HeadGirl.dick > 0) && (_S.HeadGirl.balls > 0) && (_S.HeadGirl.ballType == "sterile")>>
				Since your poor Head Girl can't get hard due to _his2 chemical castration, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado
			<<elseif (_S.HeadGirl.dick > 0) && (_S.HeadGirl.balls == 0)>>
				Since your poor Head Girl can't get hard due to _his2 orchiectomy, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
			<<elseif !canAchieveErection(_S.HeadGirl) && _S.HeadGirl.dick > 6>>
				Since your poor Head Girl is far too big to get hard, much to $activeSlave.slaveName's disappointment, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
			<<elseif !canAchieveErection(_S.HeadGirl) && _S.HeadGirl.dick > 0>>
				Since your poor Head Girl can't get it up for one reason or another, _he2 dons a strap-on over _his2 flaccid penis and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
			<<elseif _S.HeadGirl.dick > 0>>
				Your lusty Head Girl is already hard and shoves _himself2 up $activeSlave.slaveName's already-filled butt while <<if $activeSlave.nipples != "fuckable">>tweaking<<else>>fingering<</if>> the writhing slave's nipples.
			<<else>>
				_He2 dons a strap-on and shoves it up $activeSlave.slaveName's already-filled butt without further ado.
			<</if>>
			The two of you jackhammer in and out of $activeSlave.slaveName's ass without mercy; the poor anal whore does $his best to relax, but two phalli at once is a lot, even for $him. $He's only allowed an anal respite when $his sphincter is really fucked out and there's little butthole fun to be had from $him any longer. $He has become @@.hotpink;more submissive to you,@@ and _S.HeadGirl.slaveName @@.hotpink;enjoyed@@ taking a break to fuck $him with you.
			<<set $activeSlave.devotion += 4, _S.HeadGirl.devotion += 4>>
			<<run seX($activeSlave, "anal", $PC, "penetrative")>>
			<<run seX($activeSlave, "anal", _S.HeadGirl, "penetrative")>>
			<<if canImpreg($activeSlave, $PC)>>
				<<= knockMeUp($activeSlave, 5, 0, -1, 1)>>
			<</if>>
			<<if canImpreg($activeSlave, _S.HeadGirl)>>
				<<= knockMeUp($activeSlave, 5, 0, $HeadGirlID, 1)>>
			<</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "solitary desperation">>

<<link "Keep walking">>
	<<replace "#result">>
		As you walk away from the cell door, the pleas become a desperate, hopeless sobbing. In the coming days, it becomes apparent that $activeSlave.slaveName was right at the edge of a mental precipice when $he pled with you. @@.red;$He has sunk into mental incompetence.@@ $He's just a <<if $activeSlave.pregKnown == 1>>pregnant <</if>> piece of meat, now.
	<</replace>>
	<<set $activeSlave.fetish = "mindbroken">>
<</link>>
<br><<link "Impersonate a slave and manipulate $him">>
	<<replace "#result">>
		Kneeling next to the port in the cell door, you <<if $PC.title == 1>>set up a voice filter through the arcology systems to make your voice sound feminine.<<else>>abandon your usual commanding woman's tone of voice and adopt the inflections of a slave.<</if>> You sympathize with $activeSlave.slaveName, listening to $him pour out $his heart. $He despairs of being able to avoid punishment, and is afraid that you will hurt $him or sell $him to a cheap brothel<<if $activeSlave.pregKnown == 1>> or harm $his baby<</if>>. In your <<if $PC.title == 1>>fake female<<else>>slave's<</if>> voice, you encourage $him to keep trying, and you even give $him some useful advice about how to address $his faults. $He gathers $himself together and thanks you. Just then, you pop the door open, <<if canSee($activeSlave)>>revealing who you actually are and letting<<else>>and let<</if>> your voice return to <<if $PC.title == 1>>its masculine harshness<<else>>that of a confident and powerful woman<</if>>. When $he realizes the terrible truth, $he wordlessly prostrates $himself, trembling with terror. @@.gold;$His fear of you has increased.@@
	<</replace>>
	<<set $activeSlave.trust -= 5>>
<</link>>
<<if $PC.belly < 5000>>
	<<if $PC.dick != 0 && (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && canWalk($activeSlave)>>
		<br><<link "Exploit $his need for personal contact">>
			<<replace "#result">>
				Without a word, you push your erect member through the hole and into the cell. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to pull out. As you do, $he tearfully begs you not to go. $He promises something better, anything better, so you reinsert yourself, only to find that $he has $his
				<<if canDoVaginal($activeSlave)>>
					pussy
				<<else>>
					ass
				<</if>>
				pressed against the slot. You can't fuck $him all that hard through the door, so $he has to do the work. You begin to withdraw whenever $he shows $himself any mercy, so $he pounds $himself against you so hard that $he sobs a little even as you talk to $him, the lifeline $he so needs.
				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>In $his desperation $he even guides your cock into $his butt, too, and without prompting.<</if>>
				@@.hotpink;$His submission to you has increased.@@
				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
					<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
						It was thoughtful of $him to yield @@.lime;both $his virginity and anal cherry,@@ but it won't get $him out of there sooner.
						<<set $activeSlave.vagina++, $activeSlave.anus++>>
					<<elseif $activeSlave.vagina == 0>>
						It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner.
						<<set $activeSlave.vagina++>>
					<<elseif $activeSlave.anus == 0>>
						It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner.
						<<set $activeSlave.anus++>>
					<</if>>
					<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
					<<run seX($activeSlave, "anal", $PC, "penetrative")>>
					<<run seX($activeSlave, "oral", $PC, "penetrative")>>
					<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
						<<= knockMeUp($activeSlave, 10, 2, -1)>>
					<</if>>
				<<elseif canDoAnal($activeSlave)>>
					<<if $activeSlave.anus == 0>>
						It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner.
						<<set $activeSlave.anus++>>
					<</if>>
					<<run seX($activeSlave, "anal", $PC, "penetrative")>>
					<<run seX($activeSlave, "oral", $PC, "penetrative")>>
					<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
						<<= knockMeUp($activeSlave, 15, 1, -1)>>
					<</if>>
				<<else>>
					<<if $activeSlave.vagina == 0>>
						It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner.
						<<set $activeSlave.vagina++>>
					<</if>>
					<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
					<<run seX($activeSlave, "oral", $PC, "penetrative")>>
					<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
						<<= knockMeUp($activeSlave, 15, 0, -1)>>
					<</if>>
				<</if>>
				<<set $activeSlave.devotion += 10>>
			<</replace>>
		<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
	<</if>>
	<<if $PC.vagina != -1>>
		<br><<link "Exploit $his need for personal contact by giving $him a pussy to lick">>
			<<replace "#result">>
				Without a word, you push your eager pussy up against the hole. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to rise. As you do, $he tearfully begs you not to go. $He promises to do better, to try to get you off harder, so you lower yourself back into position. You have to exert yourself to hold this position, so it better be worth it. You begin to back off whenever $he shows $himself any mercy, so $he eats you out so zealously that $he sobs a little when $he tries to catch $his breath. With $his mouth so busy, $he doesn't even have the time to talk to you, the lifeline $he so needs, but $he doesn't seem to notice. @@.hotpink;$His submission to you has increased.@@
				<<set $activeSlave.devotion += 10>>
			<</replace>>
		<</link>>
	<</if>>
<</if>>
<<if $PC.preg > 30 && $PC.pregMood == 1 && $PC.boobs >= 800 && $PC.boobsImplant == 0>>
	<br><<link "$He just needs a mother's touch">>
		<<replace "#result">>
			You reassure the frightened $desc and beckon $him to return to the hole before settling your gravid body before the door and pushing a fat, milk-laden breast through the gap. You coax the nervous $girl to drink $his fill; $he must be starving in there, after all. After some hesitation, you finally feel a pair of lips wrap themselves around your erect nipple and begin to drink deep. You talk to the suckling slave, explaining to $him just what $he needs to do to thrive in $his new life, shushing $him whenever $he tries to object and asking $him to just listen. Before long, your teat is drained of all its mother's milk, and as you move to shift to the other closer to the door, the desperate slave begs you not to go. You slip a hand through the slat, caressing $his face as you let $him know you're just turning around. As $he suckles your remaining milk, you feel $him @@.mediumaquamarine;relax and lower $his guard.@@ $He needed to connect to someone and $he didn't expect it to be you, especially like not this. @@.hotpink;$His willingness to listen to you has increased.@@
			<<set $activeSlave.devotion += 15, $activeSlave.trust += 5>>
		<</replace>>
	<</link>>
<</if>>

<<case "scrubbing">>

<<if canDoAnal($activeSlave)>>
	<<link "Use $his butt to help $him scrub">>
		<<replace "#result">>
			In accordance with the rules, $he
			<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
				struggles
			<<else>>
				scrambles hurriedly
			<</if>>
			to $his feet when you enter and asks
			<<if !canTalk($activeSlave)>>
				in gestures how $he can serve you.
			<<else>>
				<<if ($activeSlave.lips > 70)>>
					meekly through $his massive dick-sucking lips,
				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
					meekly through $his inconvenient oral piercings,
				<<else>>
					meekly,
				<</if>>
				"<<Master>>, how may I <<s>>erve you?"
			<</if>>
			You instruct $him to go back to what $he was doing.
			<<if $activeSlave.belly >= 150000>>
				$He leans back over $his _belly stomach,
			<<else>>
				$He gets back to $his $activeSlave.skin knees,
			<</if>>
			puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> pressing against $his rosebud. You instruct $his imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you buttfuck $him in time with $his labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina != -1>>, using your other hand to schlick your pussy while you pound $him<</if>>. You even carefully scoot along with $him when $he needs to reach new spots. By the time $he's done $his arm<<if hasBothArms($activeSlave)>>s<</if>> and $his anus are very tired. $His submission to you @@.hotpink;has increased.@@
			<<= VCheck.Anal($activeSlave, 1)>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>
<<if canDoVaginal($activeSlave)>>
	<br><<link "Avail yourself to $his pussy">>
		<<replace "#result">>
			In accordance with the rules, $he
			<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
				struggles
			<<else>>
				scrambles hurriedly
			<</if>>
			to $his feet when you enter and asks
			<<if !canTalk($activeSlave)>>
				in gestures how $he can serve you.
			<<else>>
				<<if ($activeSlave.lips > 70)>>
					meekly through $his massive dick-sucking lips,
				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
					meekly through $his inconvenient oral piercings,
				<<else>>
					meekly,
				<</if>>
				"<<Master>>, how may I <<s>>erve you?"
			<</if>>
			You instruct $him to go back to what $he was doing.
			<<if $activeSlave.belly >= 150000>>
				$He leans back over $his _belly stomach,
			<<else>>
				$He gets back to $his $activeSlave.skin knees,
			<</if>>
			puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> tracing $his pussy lips. You instruct $him imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you fuck $him in time with $his labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina != -1>>, using your other hand to schlick your pussy while you pound $him<</if>>. You even carefully scoot along with $him when $he needs to reach new spots. By the time $he's done $his arm<<if hasBothArms($activeSlave)>>s<</if>> <<if hasBothArms($activeSlave)>>are<<else>>is<</if>> very tired and $his leg<<if hasBothLegs($activeSlave)>>s<</if>> <<if hasBothLegs($activeSlave)>>are<<else>>is<</if>> struggling to hold $him. $His submission to you @@.hotpink;has increased.@@
			<<= VCheck.Vaginal($activeSlave, 1)>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Give $him a bigger mess to deal with">>
		<<replace "#result">>
			In accordance with the rules, $he
			<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
				struggles
			<<else>>
				scrambles hurriedly
			<</if>>
			to $his feet when you enter and asks
			<<if !canTalk($activeSlave)>>
				in gestures how $he can serve you.
			<<else>>
				<<if ($activeSlave.lips > 70)>>
					meekly through $his massive dick-sucking lips,
				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
					meekly through $his inconvenient oral piercings,
				<<else>>
					meekly,
				<</if>>
				"<<Master>>, how may I <<s>>erve you?"
			<</if>>
			You instruct $him to strip off $his apron and lay $his $activeSlave.skin back against the ground. $He does, and you empty a bottle of lubricant across $his entire body. $He gasps from the cold fluid. You slide around on the floor with $him, playfully scrubbing $his <<if $seeRace == 1>>$activeSlave.race <</if>>body around in the pool of lube, playing with $his wet breasts<<if ($activeSlave.belly >= 5000)>>, $his rounded <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>,<</if>> and $his lubricated thighs before
			<<if $PC.dick == 0>>
				wrestling the slick slave onto $his back so you can ride $his face while reaching down to <<if hasBothLegs($activeSlave)>>spread $his legs and <</if>>molest $his
				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
					pussy and ass.
				<<elseif canDoVaginal($activeSlave)>>
					pussy.
				<<else>>
					ass.
				<</if>>
			<<else>>
				sinking your cock into $his
				<<if !canDoVaginal($activeSlave)>>now-slick butthole<<else>>now-slick pussy<<if canDoAnal($activeSlave)>> and then $his relaxing butthole<</if>><</if>><<if $PC.vagina != -1>>, followed by some grinding to coat $his face in your pussyjuice<</if>>.
			<</if>>
			$He had fun, though, and $his @@.hotpink;trust in you has increased.@@
			<<= VCheck.Both($activeSlave, 1)>>
			<<set $activeSlave.trust += 4>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<</if>>
<br><<link "Enjoy the view">>
	<<replace "#result">>
		In accordance with the rules, $he
		<<if $activeSlave.weight > 190 || $activeSlave.belly >= 100000>>
			struggles
		<<else>>
			scrambles hurriedly
		<</if>>
		to $his feet when you enter and asks
		<<if !canTalk($activeSlave)>>
			in gestures how $he can serve you.
		<<else>>
			<<if ($activeSlave.lips > 70)>>
				meekly through $his massive dick-sucking lips,
			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
				meekly through $his inconvenient oral piercings,
			<<else>>
				meekly,
			<</if>>
			"<<Master>>, how may I <<s>>erve you?"
		<</if>>
		You instruct $him to return to work as you pull up a seat to enjoy the view of $his
		<<if $activeSlave.butt > 6>>
			ridiculous
		<<elseif $activeSlave.butt > 5>>
			gigantic
		<<elseif $activeSlave.butt > 4>>
			enormous
		<<elseif $activeSlave.butt > 3>>
			huge
		<<elseif $activeSlave.butt > 2>>
			big
		<<elseif $activeSlave.butt > 1>>
			plump
		<<elseif $activeSlave.butt > 0>>
			small
		<<else>>
			flat
		<</if>>
		ass wiggling as $he cleans. It doesn't take long for the sight to leave you eager for some sexual attention, so you call the uncomfortable slave over to service you.
		<<if !canTalk($activeSlave)>>
			$He begins to sign but is cut short by you
		<<else>>
			"<<Master>>, what would you —" $he begins to <<say>> but is cut short by you gesturing to
		<</if>>
		<<if $PC.belly >= 10000>>
			your swollen belly and commenting on how its ever growing surface could use a good polishing.
			<<if $activeSlave.fetish == "pregnancy">>
				<<if $activeSlave.fetishKnown == 1>>
					$He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming intensely aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement and even reaching orgasm just by being allowed to touch your belly. $He @@.mediumaquamarine;feels closer@@ to $his lovely, gravid, owner after being permitted to shower attention on the thing $he loves most.
					<<set $activeSlave.trust += 5>>
				<<else>>
					$He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming visibly aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement. Once $he finishes $his first lap and returns to your belly button, $he spasms with an intense orgasm. @@.lightcoral;$He clearly adores pregnant women.@@
					<<set $activeSlave.fetishKnown = 1>>
				<</if>>
			<<else>>
				$He does so diligently, making sure to not miss <<if $showInches == 2>>an inch<<else>>a centimeter<</if>> while keeping your enjoyment above all else.
			<</if>>
		<<elseif $PC.dick != 0>>
			your erect dick and commenting on how it could use a good cleaning. $He carefully takes your cock into $his mouth, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After downing your cum, $he attempts to pull back, but you hold $him down, clearly $he has more work to do here.
		<<elseif $PC.vagina != -1>>
			your soaked pussy and commenting on how someone needs to clean up after it, preferably with their tongue. $He carefully $his tongue to your clit, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After bring you to a rather unsatisfying climax, $he attempts to pull back, but you grab $him and force $him to lick the depths of your pussy.
		<</if>>
		By the time you are satisfied with $his efforts, $he @@.hotpink;has become more submissive to you.@@
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>

<<case "hormone dysfunction">>

<<link "Give $him some vasodilators so $he can get relief">>
	<<replace "#result">>
		You give $him a shot and send $him on $his way. Within a few minutes it gives $him a raging hard-on that lasts for hours. $He spends every spare moment masturbating furiously. Of course, this is a temporary solution, and will just make the eventual return of $his problem more disappointing. @@.mediumorchid;$He is bitterly frustrated.@@
		<<set $activeSlave.devotion -= 5>>
	<</replace>>
<</link>>
<br><<link "Sissy slave <<= $girl>>s don't need to climax to serve">>
	<<replace "#result">>
		You explain patiently that $he needs to stop focusing on getting off. $He's a sex slave, and what matters is that $he pleasures others. If $he doesn't climax $himself, that's unfortunate but not really significant. $He looks terribly forlorn, so to drive home the point you push $him down to the floor, give $him a rough facefuck, and send $him away with tousled hair, <<if $PC.dick == 0>>a tired tongue<<else>>a mouthful of ejaculate<</if>>, and the same limp dick as before. @@.mediumorchid;It's frustrating for $him.@@
		<<set $activeSlave.devotion -= 2>>
		<<if ($activeSlave.clitSetting != $activeSlave.fetish)>>
			But, $he slowly @@.lightcoral;accepts $his new role as a submissive little sex toy.@@
			<<set $activeSlave.fetishStrength = 65, $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.fetish = "submissive">>
		<</if>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<<if $activeSlave.prostate != 0 && canDoAnal($activeSlave)>>
	<br><<link "Prostate stimulation ought to do the trick">>
		<<replace "#result">>
			You explain that $he will have to find a new way to climax to be a happy little shemale slut. As you do, you push $him against a wall and force $him up on tiptoe so that $his butt is conveniently positioned, and then ram <<if $PC.dick == 0>>a vibrating strap-on<<else>>yourself<</if>> up $his ass. $He squeals and dances against the wall on tiptoe, impaled on your <<if $PC.dick == 0>>fake cock<<else>>member<</if>>. $He doesn't climax to anal then, or the next time you assfuck $him, or the time after that; but some time later a long buttsex session ends when $he gives a little shake and a whimper and dribbles a pathetic squirt of cum from $his still-limp dick. By the end of the week @@.mediumaquamarine;$he's smiling trustingly@@ and offering you $his butt every chance $he gets.
			<<= VCheck.Anal($activeSlave, 10)>>
			<<set $activeSlave.trust += 4>>
			<<if ($activeSlave.clitSetting != $activeSlave.fetish)>>
				@@.lightcoral;$He's become a confirmed anal addict.@@
				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.fetish = "buttslut">>
			<</if>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>

<<case "resting amp">>

<<link "Check on $him">>
	<<replace "#result">>
		Since $he's limbless<<if $activeSlave.pregKnown == 1>> and pregnant<</if>>, $his health is more fragile than most slaves'. You look in on $him, and when $he continues to shiver, you pull the sheets back around $him, tucking $him in in such a way that $he can lie comfortably. In the morning $he doesn't understand why $he's so snug and well-rested, but @@.health.inc;$his health improves with decent sleep.@@
		<<run improveCondition($activeSlave, 10)>>
	<</replace>>
<</link>>
<br><<link "Keep $him warm">>
	<<replace "#result">>
		You spoon $him gently from behind, spending the night sleeping with $his <<if $activeSlave.bellyPreg >= 5000>>pregnant<<else>>limbless<</if>> torso cradled in your arms. $He snuggles against you in $his sleep, enjoying the animal warmth. When $he wakes in the morning, $he is surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> that it's you keeping $him company, but after a few moments' confusion $he accepts the unlooked-for comfort and goes back to sleep. @@.mediumaquamarine;$He has become more trusting of you.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Leave $him be">>
	<<replace "#result">>
		In the morning, $his lips are blue and $he's nearly unresponsive. Your other slaves get $him working again, but @@.health.dec;$his health has been damaged.@@
		<<run healthDamage($activeSlave, 10)>>
	<</replace>>
<</link>>

<<case "devoted amp">>

<<if $activeSlave.belly < 1500 && (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
	<<link "Carry $him over to your work">>
		<<replace "#result">>
			Since you're so busy, you find a way of working and seeing to your sex toy both. You scoop $him up, eliciting whimpers of joy at the impending relief,
			<<if $PC.dick == 0>>
				and move over to the couch so you can work lying down. You sit $him on top of you, reversed so $his head is between your legs for a little oral service, and slide a dildo
				<<if canDoVaginal($activeSlave)>>
					into $his pussy so you can tease $him at leisure when you have a spare moment.
					<<= VCheck.Vaginal($activeSlave, 1)>>
				<<else>>
					up $his butt so you can sodomize $him at leisure when you have a spare moment.
					<<= VCheck.Anal($activeSlave, 1)>>
				<</if>>
			<<else>>
				and sit back down at your desk. You slide $him onto your erect member and carefully secure $him with a few straps so $he can serve as your living cocksleeve as you see to your business.
			<</if>>
			There isn't much thrusting as you continue with your affairs, but $he's so horny $he doesn't need it. @@.hotpink;$He has become more submissive to you.@@ There's no telling what the day's faceless business interlocutors would think if they knew the person on the other side of their communications had <<if $PC.dick == 0>>a limbless slave gently sucking _hisP clit while they spoke with _himP<<else>>_hisP cock inside a limbless slave as _heP dealt with them<</if>>.
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>
<<if ($PC.dick != 0) && (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && $PC.belly < 100>>
	<br><<link "Carry $him outside">>
		<<replace "#result">>
			<<if $activeSlave.belly >= 600000>>
				You struggle to heft $his overfilled body up, eliciting whimpers of joy at the impending relief and the pressure removed from $his body, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> forcing you to experience what it is like to carry $activeSlave.pregType children,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>> and leaving a large wake as people make room for your gravid mass. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything,@@ once they figure out that the belly attached to you is, in fact, owned by a barely visible slave<<= $girl>>.
			<<elseif $activeSlave.belly >= 300000>>
				You heft $his heavy body up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> massively jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@
			<<else>>
				You scoop $him up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you walk outside brings $him to climax within a few steps. You take your time and stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<elseif canHear($activeSlave)>>explaining the sights as $activeSlave.slaveName soaks in the sounds <<if canSmell($activeSlave)>>and smells <</if>>$he now requires assistance to experience<<else>>explaining everything around $him as $he basks in the feeling of the fresh air on $his $activeSlave.skin skin<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you walking around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@
			<</if>>
			<<set $activeSlave.devotion += 4>>
			<<run repX(500, "event", $activeSlave)>>
			<<if canDoVaginal($activeSlave)>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>
<br><<link "See how high $his arousal will go">>
	<<replace "#result">>
		You scoop $him up, eliciting whimpers of joy at the impending relief. $He moans with disappointment, however, to find $himself laid unceremoniously across your desk as you return to your work. You surreptitiously set your desk to monitor $his vital signs and gauge $his closeness to orgasm. Whenever you can do so without tipping $his over, you gently run your fingers across a helpless nipple, across $his <<if $activeSlave.vagina == -1>>groin<<else>>moist lips<</if>>,<<if $activeSlave.belly >= 10000>> around the edge of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly,<<elseif $activeSlave.belly >= 1500>> over the peak of $his <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly,<</if>> or along $his surgical scars.
		<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
			After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his nether lips with a single finger and $he comes spastically, abdominal muscles quivering. $His pussy relaxes and opens naturally; taking the cue, you pick $him up and lower $him, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by moaning <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>.
			<<= VCheck.Vaginal($activeSlave, 1)>>
			After pumping $his helpless torso up and down with your arms, a parody of masturbation with $his helpless body,
		<<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>>
			After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his anus with a single finger and $he comes spastically, abdominal muscles quivering. $His sphincter relaxes and opens naturally; taking the cue, you pick $him up and lower $his rectum, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by sobbing <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>.
			<<= VCheck.Anal($activeSlave, 1)>>
			After pumping $his helpless torso up and down with your arms, a parody of masturbation with $his helpless body,
		<<else>>
			After so much of this that $he's clearly ready to orgasm at the slightest further touch, you grab $his
			<<if $activeSlave.boobs > 8000>>
				massive tits
			<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
				fake tits
			<<elseif $activeSlave.boobs > 2000>>
				huge boobs
			<<elseif $activeSlave.boobs > 400>>
				boobs
			<<else>>
				petite chest
			<</if>>
			and $he comes spastically, soaking $himself and your desk with fluids. Once you tire of vigorously groping $him,
		<</if>>
		you carry your toy to the shower to wash $him. @@.mediumaquamarine;$He has become more trusting of you.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>

<<case "plug disobedience">>

<<link "It's $his role to hurt">>
	<<replace "#result">>
		Without a word, you<<if $PC.dick == 0>> don a cruelly knobby strap-on,<</if>> throw $him onto the couch, take both $his ankles in one hand, and force them back over $his head so $his poor, doomed asshole is completely defenseless. You then spit on $his hole, seize your <<if $PC.dick == 0>>instrument<<else>>rock-hard dick<<if $PC.vagina != -1>>, gather a little of your own pussyjuice and rub it on your cockhead<</if>><</if>>, and shove it up the wriggling slave $girl's spasming rectum. You've got the necessary skill to judge exactly where the line between anal pain and anal injury is, and you take $his right up to it. Halfway through the long anal rape $he gives up struggling and just goes limp, sobbing. $He @@.hotpink;fears you,@@ and has also begun to @@.red;hate buttsex.@@
		<<set $activeSlave.trust -= 5, $activeSlave.sexualFlaw = "hates anal">>
		<<run seX($activeSlave, "anal", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Punish $him for disobedience, but address $his anal pain">>
	<<replace "#result">>
		You patiently and calmly explain to $him that disobeying orders isn't acceptable, but that too much pain from $his buttplug is a sign that something isn't right. First, you inform $him, $he will have to be punished for the disobedience, since $he should have brought $his trouble to you instead of disobeying. $He's almost willing as you bend $him over <<if $activeSlave.belly >= 300000>>$his _belly middle<<else>>the desk<</if>> and spank $his buttocks severely, unsure whether to resent the corporal punishment or appreciate your measured response. When you're done tanning $his ass, $he's surprised to feel a cool, lubricated digit working its way into $his anus. $He stiffens a little but eventually relaxes enough to take the finger, then two, and finally three, before you gently and slowly emplace $his plug. You instruct $him kindly on how to relax in the future when $he inserts it on $his own. $He @@.hotpink;appreciates@@ your approach.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Address $his worrisome anal pain">>
	<<replace "#result">>
		You kindly explain how to relax and prepare one's asshole for such insertions. $He's been told already, but you make $him fetch $his plug and go through the steps in front of you so you can check $his approach. $He leaves reminded how to wear $his plug, but @@.mediumaquamarine;secretly relieved@@ $he got away with disobedience with nothing more than a lecture.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>

<<case "age implant">>

<<link "Go out clubbing to make $him feel young again">>
	<<replace "#result">>
		You call out to stop $him, and $he turns obediently to listen; you tell $him to take the day off and meet you that evening for a trip to $arcologies[0].name's most fashionable nightclub. You emphasize slightly that it's a place you prefer to enjoy with a young slave, and $his eyes widen a little at the implied compliment and challenge. Right at the proper time, $he arrives in your office wearing neon $activeSlave.hColor makeup to match $his hair, and a tiny iridescent club<<= $girl>> outfit of the same color. The hem of the skirt is barely low enough to conceal $him <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>total lack of private parts<<else>>pussy<</if>>, and it's backless. The front is held up by a halter around $his pretty neck, and is <<if ($activeSlave.boobs > 2000)>>specially tailored to cover $his massive tits<<elseif ($activeSlave.boobs > 1000)>>strained by $his big tits<<elseif ($activeSlave.boobs > 300)>>tightly filled by $his healthy tits<<else>>tight against $his flat chest<</if>><<if $activeSlave.belly >= 1500>> and _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>>. $He makes a gaudy and very fashionable spectacle, and in response to your <<if canSee($activeSlave)>>look<<elseif canHear($activeSlave)>>whistle<<else>>gentle poke<</if>> $he raises <<if (!hasAnyArms($activeSlave))>>the stumps of $his arms ever so slightly<<if (hasBothArms($activeSlave))>>both arms<<else>>$his arm<</if>> over $his head<</if>> and twirls, shimmying $his body deliciously.
		"I hope they let me into the club without checking my I.D., <<Master>>," $he jokes,
		for which $he receives a swat on $his rear as you head out. With the full day of rest, $he is full of vigor and ready to dance. $He eagerly heads out onto the floor with you,
		<<if ($activeSlave.skill.entertainment >= 100)>>
			masterfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, grabbing the attention of all the men and most of the women in $clubName.
		<<elseif ($activeSlave.skill.entertainment > 60)>>
			expertly moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, mesmerizing $his neighbors on the floor.
		<<elseif ($activeSlave.skill.entertainment > 30)>>
			skillfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, drawing a lustful gaze or two.
		<<else>>
			clumsily moving <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> $his body to the heavy beat, attracting little notice among the press of novices.
		<</if>>
		It doesn't take long for $him to back $himself into you so $he can grind; $he cranes $his neck back to plant an @@.hotpink;earnest kiss@@ on your chin.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Attend a sporting event with $him">>
	<<replace "#result">>
		You call out to stop $him, and $he turns obediently to listen; you tell $him $he'll be spending the day with you at a game outside the arcology, and $he's to meet you at your VTOL pad in two hours. $He ponders for a moment but clearly understands this is related to $his age, somehow. Right at the proper time, $he arrives on the pad. $He's clearly spent the whole time getting the right clothing; somehow $he used the clothing inventory system to find a cheerleader uniform from the home team. It's one size too small, though you're unsure whether this is intentional or not. The hem of the pleated cheerleader skirt is barely low enough to conceal $his <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>lack of private parts<<else>>pussy<</if>>, and $he bounces a little on $his heels for you to show off how $he's going commando underneath it. $His
		<<if ($activeSlave.belly >= 100000)>>
			_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>
		<<elseif ($activeSlave.weight > 130)>>
			hugely soft
		<<elseif ($activeSlave.belly >= 1500)>>
			_belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>
		<<elseif ($activeSlave.muscles > 30)>>
			ripped
		<<elseif ($activeSlave.weight > 30)>>
			fat
		<<elseif ($activeSlave.weight > 10)>>
			plush
		<<else>>
			taut
		<</if>>
		midriff is bare. The top <<if ($activeSlave.boobs > 2000)>>somehow contains $his tits, with the team's logo at least <<if $showInches == 2>>three feet<<else>>a meter<</if>> wide across $his chest<<elseif ($activeSlave.boobs > 1000)>>is a great location for the team's logo, since $his tits allow it to be quite large<<elseif ($activeSlave.boobs > 300)>>is a good location for the team's logo, since $his tits allow it to be pretty big<<else>>flatters $his flat chest, especially with the team logo over it<</if>>. $He even found a pair of appropriately colored pom-poms somewhere. The implicit message about age was understood; $he's made up to look even younger.
		<br><br>
		You have a front-row seat, of course, and $he excitedly takes $his place beside you,
		<<if $activeSlave.butt > 12>>
			thankful that you reserved a seat for both of $his massive cheeks.
		<<elseif $activeSlave.belly >= 300000>>
			thankful that the front row has plenty of room for $his _belly belly to occupy.
		<<elseif $activeSlave.butt > 6>>
			carefully fitting $his big bottom into the seat.
		<<elseif $activeSlave.boobs > 4000>>
			$his absurd boobs rubbing against your arm.
		<</if>>
		$He cheers lustily at all the right moments, earning repeated crowd focus shots on the big screen; many fans wonder who their ridiculously hot fellow fan is before @@.green;recognizing you,@@ putting two and two together, and realizing enviously that $he's your sex slave. Since this is the Free Cities, the big screen gives $him more attention rather than cutting away when $he intentionally cheers hard enough that $his skirt rides up.
		<<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>>
			The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and goes into labor on another of $his brood; the contractions forcing $him to lean forward onto $his _belly stomach and give the players below a clear view of $his crowning child.
		<<elseif $activeSlave.belly < 300000>>
			The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and bending down to show cleavage to the stands in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>.
		<<else>>
			The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, cheering while swinging $his absurd belly back and forth and accidentally smashes into a concession vendor sending them to the floor. $His efforts to help him up forces $him to stand in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>.
		<</if>>
		A player from the visiting team is distracted enough to blow a play. Any fans who might have been inclined to disapprove forget their objections when the home team capitalizes on the mistake to score.
		<<run repX(500, "event", $activeSlave)>>
	<</replace>>
<</link>>
<br><<link "Put the old whore in $his place">>
	<<replace "#result">>
		You call out to stop $him, and $he turns obediently to listen. You tell $him you're interested to see if $his old body can still perform. Something about the way you say 'old' makes $him flinch, and $he's right to worry. You tell $him to go out and make you <<print cashFormat(200)>>, and to hurry back if $he wants to avoid punishment. $He hesitates for an instant before hurrying outside. A few hours later you check on $him remotely. The feed shows $him <<if $activeSlave.belly >= 10000>>waddle<<else>>walk<</if>> quickly up to a couple out on the street; you can't hear what's said, but $he
		<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
			turns around to rub $his bare butt against the crotch of the man's pants. He pulls them down and fucks $him right there<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>@@.lime;taking $his virginity@@<<set _didVaginal = 1>><<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>@@.lime;taking $his anal virginity@@<<set _didAnal = 1>><</if>>, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, he switches to torturing the poor slave's
			<<if ($activeSlave.dick > 0)>>
				dick,
			<<elseif $activeSlave.vagina == -1>>
				butthole,
			<<else>>
				pussy,
			<</if>>
			slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. Hole<<s>> are pretty <<s>>ore though. Kinda loo<<s>>e."
		<<else>>
			drops to $his knee<<if hasBothLegs($activeSlave)>>s<</if>> to nuzzle against the man's pants. He pulls them down and facefucks $him right there, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, $he switches to torturing the poor slave's
			<<if ($activeSlave.dick > 0)>>
				dick,
			<<elseif $activeSlave.vagina == -1>>
				butthole,
			<<else>>
				pussy,
			<</if>>
			slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. My jaw kinda hurt<<s>> and my leg<<s>> are really <<s>>ore."
		<</if>>
		You tell $him that's of little concern, since $he has relatively few years of use left: you may as well extract what value you can from $him. $He's too exhausted to hide $his response, and collapses, @@.gold;sobbing.@@
		<<run cashX(200, "event", $activeSlave)>>
		<<set $activeSlave.trust -= 5>>
		<<if _didAnal == 1>>
			<<set $activeSlave.anus++>>
			<<run seX($activeSlave, "anal", "public", "penetrative")>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 10, 1, -2)>>
			<</if>>
		<<elseif _didVaginal == 1>>
			<<set $activeSlave.vagina++>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative")>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 10, 0, -2)>>
			<</if>>
		<<elseif canDoVaginal($activeSlave)>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative")>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 10, 0, -2)>>
			<</if>>
		<<elseif canDoAnal($activeSlave)>>
			<<run seX($activeSlave, "anal", "public", "penetrative")>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 10, 1, -2)>>
			<</if>>
		<<else>>
			<<run seX($activeSlave, "oral", "public", "penetrative")>>
		<</if>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>

<<case "shift masturbation">>

<<link "Leave $him to it">>
	<<replace "#result">>
		You have work to do. You ignore the shameless slut, who gets $himself off in no time at all,
		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave.balls == 0)>>
			$his limp dick dribbling cum onto $his<<if $activeSlave.pregKnown == 1>> pregnant<</if>> stomach.
		<<elseif $activeSlave.dick > 0>>
			orgasming so strongly $he manages to hit $himself in the face with $his own cum.
		<<elseif $activeSlave.vagina == -1>>
			indulging in the anal self-stimulation that's $his best remaining avenue to an orgasm.
		<<else>>
			the smell of female pleasure filling the office.
		<</if>>
		$He gets up, washes $himself off and rearranges $his body on the couch again, languidly this time. $He returns to masturbating, gently playing with $himself with one hand and <<if $activeSlave.nipples != "fuckable">>teasing<<else>>fingering<</if>> a nipple with the other.
	<</replace>>
<</link>>
<br><<link "Lend $him some assistance">>
	<<replace "#result">>
		You stand and ask $him mockingly if $he could use some assistance. $He gapes at you for a lust-hazed moment before nodding happily,
		<<if !canTalk($activeSlave)>>
			gesturing $his thanks.
		<<else>>
			squealing, "Ye<<s>> plea<<s>>e, <<Master>>!"
		<</if>>
		$He stops wanking and takes $his hand<<if hasBothArms($activeSlave)>>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.
			<<elseif $activeSlave.vagina > 1>>
				experienced pussy.
			<<else>>
				tight pussy.
			<</if>>
			<<set _didVaginal = 1>>
		<<else>>
			<<if $activeSlave.anus > 2>>
				slutty anal slit.
			<<elseif $activeSlave.anus > 1>>
				well prepared asshole.
			<<else>>
				still-tight butt.
			<</if>>
			<<set _didAnal = 1>>
		<</if>>
		$He calmed down a little while offering $himself to you, so $he manages not to climax immediately when you <<if $PC.dick == 0>>push your strap-on into $him<<else>>thrust your dick into $him<</if>>, but $he's in a rare mood. You reward $him by guiding $his hands back to $his crotch as you ramp up the pace, at which $he looks up at you with something like wordless glee. $He goes back to
		<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
			playing with $his limp dick,
		<<elseif $activeSlave.dick > 4>>
			jerking off $his giant cock,
		<<elseif $activeSlave.dick > 2>>
			jerking off,
		<<elseif $activeSlave.dick > 0>>
			teasing $his girly little dick,
		<<elseif $activeSlave.clit > 0>>
			jerking off $his ridiculous clit,
		<<elseif $activeSlave.labia > 0>>
			spreading and teasing $his petals,
		<<elseif $activeSlave.vagina == -1>>
			playing with $his asspussy,
		<<else>>
			rubbing $his clit,
		<</if>>
		<<if !canTalk($activeSlave)>>
			making little raspy pleasure noises.
		<<else>>
			mewling with pleasure.
		<</if>>
		When you're finally done, $he's fairly tired, but $he manages to give $his <<if $activeSlave.butt > 5>>huge<<elseif $activeSlave.butt > 2>>big<<else>>cute<</if>>, well-fucked butt a little wiggle for you, @@.mediumaquamarine;<<if canSee($activeSlave)>>looking<<else>>smiling<</if>> at you gratefully,@@ as $he skips off to wash.
		<<set $activeSlave.trust += 4>>
		<<if _didAnal == 1>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<<elseif _didVaginal == 1>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<br><<link "Show the slut off">>
	<<replace "#result">>
		It takes a trifling command at your desk to surreptitiously slave one of the office cameras to $his impromptu masturbation session, and send the feed to many of the public screens. After a few minutes, <<if canSee($activeSlave)>>$he notices the setup through one of the office's glass walls<<else>>you inform the eager masturbator that $his show is live across the arcology<</if>>.
		<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
			$He climaxes almost instantly at the realization, which plays right into $his fetish.
		<<else>>
			$He pauses for a moment at the realization, but goes back to $his business, blushing a little harder.
		<</if>>
		$He even plays it up a little for $his audience; when $he
		<<if ($activeSlave.belly >= 120000) && ($activeSlave.dick > 0)>>
			climaxes, $he makes sure they can see the way $his enormously distended body spasms with orgasm.
		<<elseif ($activeSlave.belly >= 10000) && ($activeSlave.dick > 0)>>
			finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $his <<if $activeSlave.bellyPreg >= 5000>>advanced pregnancy<<else>>_belly belly<</if>> thwarts $his efforts and $he ends up cumming on $his stomach's underside. $He brushes some cum off with $his fingers and brings it to $his mouth, smiling at the <<if canTaste($activeSlave)>>taste<<else>>sensation<</if>>.
		<<elseif ($activeSlave.dick > 0) && ($activeSlave.dick < 5) && ($activeSlave.belly >= 5000)>>
			finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $he ends up just coating $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> in $his own cum.
		<<elseif ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>>
			finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. $His dick is large enough to extend past $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>>, allowing $him to blow $his load into $his waiting maw.
		<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
			finally manages to extract an orgasm from $his limp dick, $he hikes $his hips over $his head to direct it into $his mouth.
		<<elseif $activeSlave.dick > 0>>
			finally empties $his balls, $he hikes $his hips over $his head to direct the cum into $his mouth.
		<<elseif $activeSlave.vagina == -1>>
			climaxes, $he makes sure they can see the way $his asspussy spasms with orgasm.
		<<else>>
			finally climaxes, $he carefully licks $his hands clean, showing off $his enjoyment of $his own <<if canTaste($activeSlave)>>taste<<else>>fluids<</if>>.
		<</if>>
		Authenticity is hard to fake, and the many citizens who saw the broadcast don't doubt @@.green;your ability to train@@ a shameless slut.
		<<run repX(1250, "event", $activeSlave)>>
	<</replace>>
<</link>>

<<case "shift sleep">>

<<link "Relaxed sex">>
	<<replace "#result">>
		You flip the sheet off your naked body, revealing your already <<if $PC.dick == 0>>wet pussy<<else>>stiff prick<<if $PC.vagina != -1>> and the wet pussy below it<</if>><</if>>. $He slides $himself down, pressing $his
		<<if ($activeSlave.boobs > 2000)>>
			ridiculous tits
		<<elseif ($activeSlave.boobs > 800)>>
			big breasts
		<<elseif ($activeSlave.boobs > 300)>>
			nice boobs
		<<else>>
			trim chest
		<</if>>
		against your legs, and nuzzles $his warm nose and wet tongue against
		<<if $PC.balls >= 9>>
			your oversized nuts.
		<<elseif $PC.vagina != -1>>
			your moist folds.
		<<else>>
			your ballsack.
		<</if>>
		You run a languid hand through $his hair, but soon relax into a pleasant, tired fugue, letting yourself enjoy $his ministrations. You almost drift off under the slow oral loving, but a sudden coolness against you brings you partially awake again: $he's taken $his mouth off you, leaving the night air against your saliva-wetted <<if $PC.vagina != -1>>pussylips<<else>>cock<</if>>. $He quickly realizes the error, and applies $himself diligently to you, never letting the warm feeling die down again. You orgasm twice, which $he absorbs without stopping, looking up at you with an expression that's unidentifiable in the gloom. But when you finally reach down and give $his <<if ($activeSlave.belly >= 10000)>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly a light pat<<else>>shoulder a little tug<</if>> to let $him know that's enough, $he @@.mediumaquamarine;cuddles up close to you@@ without hesitation.
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<<if $activeSlave.belly < 150000>>
	<<if canDoVaginal($activeSlave)>>
		<br><<link "Surprise sex">>
			<<replace "#result">>
				You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>.
				<<if ($activeSlave.bellyPreg < 1500)>>
					<<if $activeSlave.belly >= 10000>>
						$His _belly belly squashes out to either side of $his torso,
					<<elseif ($activeSlave.boobs > 2000)>>
						$His huge breasts squash out to either side of $his torso,
					<<elseif ($activeSlave.dick > 0)>>
						$He shifts desperately to get some weight off $his trapped dick,
					<<else>>
						$He squirms reflexively,
					<</if>>
				<<elseif ($activeSlave.boobs > 2000)>>
					$His huge breasts flop to either side of $his torso,
				<<else>>
					$He squirms reflexively,
				<</if>>
				but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his
				<<if $activeSlave.butt > 5>>
					inconveniently plush butt
				<<elseif $activeSlave.butt > 2>>
					big buttocks
				<<else>>
					trim buttocks
				<</if>>
				with one hand to get at $his pussy. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his moist slit. The relaxation
				<<if $activeSlave.vagina > 2>>
					gapes $his vagina wide, welcoming you in without any resistance at all.
				<<elseif $activeSlave.vagina > 1>>
					welcomes you in, offering you only a delicious bit of resistance to push against.
				<<else>>
					welcomes you in, though $he does buck a little at the first penetration.
				<</if>>
				You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his cunt. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch
				<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
					an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation.
				<<elseif $activeSlave.dick > 4>>
					a huge onahole. You push it between $him and the cushion so $he can fuck it.
				<<elseif $activeSlave.dick > 0>>
					an onahole. You push it between $him and the cushion so $he can fuck it.
				<<elseif $activeSlave.clit > 1>>
					a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it.
				<<elseif canDoAnal($activeSlave)>>
					an egg vibe. You push it into $his ass to stimulate $his <<if $activeSlave.prostate > 0>>prostate<<else>>insides<</if>>.
				<<else>>
					an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy.
				<</if>>
				<<if !canTalk($activeSlave)>>
					$His hands jerk out a spastic thank you in the darkness,
				<<else>>
					$He coos a wordless thanks,
				<</if>>
				and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his vagina, $he wonders whether $his <<= getWrittenTitle($activeSlave)>> is ever too tired to fuck.
				<<set $activeSlave.devotion += 4>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<</replace>>
		<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
	<</if>>
	<<if canDoAnal($activeSlave)>>
		<br><<link "Surprise buttsex">>
			<<replace "#result">>
				You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>.
				<<if ($activeSlave.bellyPreg < 1500)>>
					<<if $activeSlave.belly >= 10000>>
						$His _belly belly squashes out to either side of $his torso,
					<<elseif ($activeSlave.boobs > 2000)>>
						$His huge breasts squash out to either side of $his torso,
					<<elseif ($activeSlave.dick > 0)>>
						$He shifts desperately to get some weight off $his trapped dick,
					<<else>>
						$He squirms reflexively,
					<</if>>
				<<elseif ($activeSlave.boobs > 2000)>>
					$His huge breasts flop to either side of $his torso,
				<<else>>
					$He squirms reflexively,
				<</if>>
				but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his
				<<if $activeSlave.butt > 5>>
					inconveniently plush butt
				<<elseif $activeSlave.butt > 2>>
					big buttocks
				<<else>>
					trim buttocks
				<</if>>
				with one hand to get at $his asshole. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his anus. The relaxation
				<<if $activeSlave.anus > 2>>
					gapes $his asspussy wide, welcoming you in without any resistance at all.
				<<elseif $activeSlave.anus > 1>>
					welcomes you in, offering you only a delicious bit of resistance to push against.
				<<else>>
					saves $him from too much anal pain, though $he does buck a little at the first penetration.
				<</if>>
				You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his ass. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch
				<<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
					an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation.
				<<elseif $activeSlave.dick > 4>>
					a huge onahole. You push it between $him and the cushion so $he can fuck it.
				<<elseif $activeSlave.dick > 0>>
					an onahole. You push it between $him and the cushion so $he can fuck it.
				<<elseif $activeSlave.clit > 1>>
					a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it.
				<<elseif $activeSlave.vagina == -1>>
					an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy.
				<<else>>
					an egg vibe. You push it between $him and the cushion so $he can rub $his <<if !canDoVaginal($activeSlave)>>chaste <</if>>pussy against it.
				<</if>>
				<<if !canTalk($activeSlave)>>
					$His hands jerk out a spastic thank you in the darkness,
				<<else>>
					$He coos a wordless thanks,
				<</if>>
				and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his asshole, $he wonders whether $his <<= getWrittenTitle($activeSlave)>> is ever too tired to fuck a butt.
				<<set $activeSlave.devotion += 4>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</replace>>
		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
	<</if>>
<</if>>

<<case "slave dick huge">>

<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<<link "Enter the shower and take $him">>
		<<replace "#result">>
			$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear<<else>>notice<</if>> you until you seize $him under the armpits and drag $him to $his feet. $His massive dickhead pops free of $his mouth and $he squeaks in surprise as you push $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> against the wall of the shower and stuff your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his
			<<if canDoVaginal($activeSlave)>>
				cunt.
			<<else>>
				ass.
			<</if>>
			$He was already very close to orgasm, and the stimulation of $his dick rubbing against the warm, wet wall<<if $activeSlave.belly >= 1500>> of the shower and $his belly<<else>> of the shower<</if>>, not to mention the feeling of being
			<<if canDoVaginal($activeSlave)>>
				fucked,
			<<else>>
				buttfucked,
			<</if>>
			is enough that $he climaxes quickly. <<if $activeSlave.balls == 3>>$His huge load coats the shower wall with cum. <</if>>You pull out and let $him finish by <<if $PC.dick == 0>>giving you oral<<else>>sucking your dick<<if $PC.vagina != -1>> and eating your pussy<</if>><</if>>, since $he started by sucking $himself. @@.hotpink;$He has become more submissive to you.@@
			<<set $activeSlave.devotion += 4>>
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina == 0)>>
					@@.lime;This breaks in $activeSlave.slaveName's virgin pussy.@@
					<<set $activeSlave.vagina = 1>>
					@@.hotpink;$He enjoys losing $his cherry to you.@@
					<<set $activeSlave.devotion += 4>>
				<</if>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<if ($activeSlave.anus == 0)>>
					@@.lime;This breaks in $activeSlave.slaveName's virgin ass.@@
					<<set $activeSlave.anus = 1>>
					@@.hotpink;$He enjoys losing $his butt cherry to you.@@
					<<set $activeSlave.devotion += 4>>
				<</if>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<<if ($PC.dick != 0)>>
	<br><<link "The only dick $he should suck is $his <<= getWrittenTitle($activeSlave)>>'s">>
		<<replace "#result">>
			$He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear<<else>>notice<</if>> you until you seize $his hair and pull $his head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down $his throat. $He plays with your <<if $PC.vagina != -1>>cunt<<else>>balls<</if>> as you facefuck $him and jacks off with $his other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@
			<<set $activeSlave.devotion += 4>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</replace>>
	<</link>>
<</if>>
<<if ($activeSlave.belly < 5000) && (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
	<br><<link "See if $he can do that while you take $him">>
		<<replace "#result">>
			You interrupt $activeSlave.slaveName and make $him lie on a nearby bed. After some preparatory stretching, during which $his frustrated erection flops forlornly around, you manage to get both $his ankles behind $his head. In this position $he manages to resume sucking on the head of $his penis as you slip into $him.
			<<if canDoVaginal($activeSlave)>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
			So contorted, $his
			<<if canDoVaginal($activeSlave)>>
				pussy
			<<else>>
				anus
			<</if>>
			is not well angled for comfortable
			<<if canDoVaginal($activeSlave)>>
				penetration,
			<<else>>
				sodomy,
			<</if>>
			so $he is soon moaning and grunting into $his cock as you fuck $him.
			$He finishes <<if $activeSlave.balls >= 3>>$his enormous ejaculation <</if>>into $his own mouth and then <<if $PC.dick == 0>>finds $himself giving you oral directly, since you pulled your strap-on off<<else>>receives your load into $his now-brimming throat<<if $PC.vagina != -1>>. $He barely has time to swallow before you press your pussy against $his mouth<</if>><</if>>. @@.hotpink;$His devotion to you has increased.@@
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "devoted old">>

<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<<link "Cheer $him up">>
		<<replace "#result">>
			You close in on $him, and $he starts to present $himself with the force of long habit. However, you take $him by the hand and draw $him in close, running your fingertips along $his cheekbone, looking into $his <<= App.Desc.eyesColor($activeSlave)>>. <<if canSee($activeSlave)>>$He only holds your gaze for a brief moment before blushing and looking down again,<<else>>Once $he feels your hand stop, $he quickly glances down while<</if>> muttering another apology. You raise $his chin again with a gentle hand and give $him a deep kiss. After a moment $he hugs you with almost painful
			<<if $activeSlave.belly >= 100000>>
				fierceness, a feat given the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly, where
			<<elseif $activeSlave.belly >= 5000>>
				fierceness, pushing $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly into yours, where
			<<else>>
				fierceness, and
			<</if>>
			you can feel a heat radiating from $him. $He makes to get down on $his knees to serve you again, but instead, you
			<<if $activeSlave.belly >= 300000>>
				help $him up and guide
			<<elseif $activeSlave.belly >= 5000>>
				gently scoop $him up and carry
			<<else>>
				scoop $him up and carry
			<</if>>
			$him to bed, laying the bemused $girl down before cuddling up behind $him. The two of you make languid love, with you <<if canHear($activeSlave)>>murmuring reassuringly into $his ear, <</if>>nibbling $his neck, cupping $his breasts,<<if $activeSlave.belly >= 1500>>rubbing $his distended midriff,<</if>> and massaging $his shoulders by turns. After a lovely climax together in $his
			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
				pussy $he coquettishly shifts $himself to line your recovering cock up with $his ass,
				<<set _didVaginal = 1, _didAnal = 1>>
			<<elseif canDoVaginal($activeSlave)>>
				pussy $he coquettishly shifts $himself to face you,
				<<set _didVaginal = 1>>
			<<else>>
				ass $he coquettishly shifts $himself to face you,
				<<set _didAnal = 1>>
			<</if>>
			<<if canSee($activeSlave)>>looking with @@.hotpink;adoration@@ and new @@.mediumaquamarine;confidence@@ into your eyes<<else>>gazing with @@.hotpink;adoration@@ and new @@.mediumaquamarine;confidence@@ at your face<</if>>.
			<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
			<<if _didVaginal == 1 && _didAnal == 1>>
				<<= VCheck.Both($activeSlave, 1)>>
			<<elseif _didVaginal == 1>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<elseif _didAnal == 1>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<br><<link "Perform a health exam personally">>
	<<replace "#result">>
		$He gets a weekly health exam from the automated systems, which also do their best to monitor $his well-being, but $he does not protest as you take $him to the surgery and give $him a <<if $PC.skill.medicine >= 100>>professional examination. It feels good to put the old skills to use on an attractive patient<<else>>thorough examination<</if>>. There's nothing the matter other than that $he hasn't been 18 for a long time. $He looks a little sad at some of the results, but whenever $he does, you place a hand on $his cheek and give $him a kiss. $He gets the idea.
		"I under<<s>>tand, <<Master>>. I can <<s>>till <<s>>erve you," $he <<say>>s.
		You adjust $his diet and exercise a little, which should @@.health.inc;slightly improve@@ $his health<<if $PC.skill.medicine >= 100>>, and prescribe some new supplements that might help $him @@.health.inc;feel $his best@@ all the time<<run improveCondition($activeSlave, 10)>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you.
		<<set $activeSlave.trust += 4>>
		<<run improveCondition($activeSlave, 10)>>
	<</replace>>
<</link>>
<<if _S.HeadGirl && $HeadGirlID != $activeSlave.ID>>
	<br><<link "Give $him an afternoon off for some quality time with your Head Girl">>
		<<setLocalPronouns _S.HeadGirl 2>>
		<<replace "#result">>
			_S.HeadGirl.slaveName understands the situation immediately. _He2 gets _himself2 and $activeSlave.slaveName dressed for a nice, non-sexual 'date' in $clubName, and leads $him out by the hand with a wink over _his2 shoulder to you. Your Head Girl understands just what kind of break from sexual servitude $activeSlave.slaveName really needs. They enjoy a nice meal, take a stroll and talk as friends, and get some inconsequential but relaxing beauty treatments together. They both @@.hotpink;enjoy the relaxation,@@ and $activeSlave.slaveName @@.health.inc;feels much better@@ after the rest, too.
			<<set $activeSlave.devotion += 4>>
			<<run cashX(forceNeg(500), "event", $activeSlave), improveCondition($activeSlave, 10)>>
			<<set _S.HeadGirl.devotion += 4>>
		<</replace>>
	<</link>> //This option will cost <<print cashFormat(500)>>//
<</if>>

<<case "tendon fall">>

<<link "Help $him clean $himself">>
	<<replace "#result">>
		You step into the running water and seat yourself in the shower, drawing $him into your lap. $He seems surprised and <<if canSee($activeSlave)>>stares at you through the steam<<else>>gazes towards you<</if>> for a moment before looking away with a blush. $He expects you to <<if $PC.dick == 0>>ride $his wet face<<else>>insert your member into $his wet body<</if>>, but finds you handing $him the soap instead. You gently support $him as $he washes, partaking of physical closeness and support. @@.hotpink;$He has become more devoted to you.@@
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
	<br><<link "Fuck $his prostrate body">>
		<<replace "#result">>
			You make no answer, entering the shower to stand over $him prostrate form. You reach down and grope $him soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks, questing fingers moving towards $his asscrack.
			<<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>>
				$His rectum is so fucked out and loose that your groping hand almost slides up it.
			<<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>>
				$His pussy is so fucked out and loose that your groping hand almost slides up it.
			<<else>>
				You finger fuck $him for a while, the sting of the soap on $his sensitive insides making $him gasp.
			<</if>>
			As $he moans down on the shower floor, you lie down behind $him, spooning $his helpless body<<if $activeSlave.belly >= 5000>>, your hands encircling $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>><</if>>.
			<<if $PC.dick != 0>>
				Your cock slides into $him with ease
			<<elseif $PC.boobs >= 300>>
				$His soft back is delicious against your hard nipples
			<<else>>
				The contours of $his soft rear feel lovely against your feminine petals
			<</if>>
			and the warm water playing over your warm bodies is a comforting accompaniment to the comforting sex.
			<<if $PC.dick == 0>>
				You ride yourself against $his warm wet body until you climax from the rubbing alone
			<<else>>
				You leave a load of cum in
				<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
					each of $his holes
					<<set _didVaginal = 1, _didAnal = 1>>
				<<elseif canDoAnal($activeSlave)>>
					$his loosened butthole
					<<set _didAnal = 1>>
				<<else>>
					$his loosened vagina
					<<set _didVaginal = 1>>
				<</if>>
				<<if $PC.vagina != -1>> and make $him eat your pussy for a quick aftershock,<</if>>
			<</if>>
			and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@
			<<if _didVaginal == 1 && _didAnal == 1>>
				<<= VCheck.Both($activeSlave, 1)>>
			<<elseif _didVaginal == 1>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<elseif _didAnal == 1>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if $PC.dick != 0 && (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave)))>> //This option will take $his virginity//<</if>>
<</if>>
<br><<link "Let $him struggle">>
	<<replace "#result">>
		$He struggles for a while until you get bored and leave $him to it. Eventually $his thrashing brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@
		<<set $activeSlave.devotion -= 5>>
	<</replace>>
<</link>>

<<case "unhappy virgin">>

<<if canDoAnal($activeSlave)>>
	<<link "No, and $his role is to suck dick and take it in the ass">>
		<<replace "#result">>
			You patiently explain that you've decided to use $him as an oral and anal slave, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently. Rather that a hard buttfuck, you take $him to the couch and gently spoon $him with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his ass while making out with $him and playing with $his nipples. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= getWrittenTitle($activeSlave)>> is.@@
			<<set $activeSlave.devotion += 4>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>>
<<else>>
	<<link "No, and $his role is to suck dick and like it">>
		<<replace "#result">>
			You patiently explain that you've decided to use $him as an oral slave, since $his ass is off-limits, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently, calmly patting $his head as $he does. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= getWrittenTitle($activeSlave)>> is.@@
			<<set $activeSlave.devotion += 4>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</replace>>
	<</link>>
<</if>>
<br><<link "No, and $he shouldn't have asked">>
	<<replace "#result">>
		Despite being allowed to ask questions $he should not question $his <<= getWrittenTitle($activeSlave)>>'s choices about $his sexual duties. To communicate the point, you<<if $PC.dick == 0>> don a strap-on and<</if>> order $him to lie on the desk, on $his back, with $his throat slack for penetration.
		<<if canDoAnal($activeSlave)>>
			After a good long throatfuck that leaves $him gasping and moaning, you flip $him over and fuck $his ass until $he's squealing with each thrust.
		<<else>>
			Only after an extended and forceful series of throatfuckings that leaves the bewildered $desc gasping for air and barely conscious, do you feel $he has learned what hole $he should be focused on. For good measure, you deepthroat $him one last time, to really drive the point home.
		<</if>>
		As $he leaves, sore all over, $he's @@.mediumorchid;badly confused@@ that $he was apparently punished for asking questions.
		<<set $activeSlave.devotion -= 5>>
		<<if canDoAnal($activeSlave)>>
			<<= VCheck.Anal($activeSlave, 1)>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<<else>>
			<<run seX($activeSlave, "oral", $PC, "penetrative", 4)>>
		<</if>>
	<</replace>>
<</link>>
<br><<link "Yes, the time has come">>
	<<replace "#result">>
		$He framed $his desire to lose $his virginity in businesslike terms, but $his reaction to your assent suggests that $he also wouldn't mind having vanilla sex with $his <<= getWrittenTitle($activeSlave)>>. You're already quite
		<<if $PC.dick == 0>>
			turned on by the idea, so you pull on a strap-on, pull $him over to the couch<<if ($activeSlave.chastityVagina)>>, unfasten $his chastity belt<</if>>,
		<<else>>
			hard, so you just lie down with $him on the couch<<if ($activeSlave.chastityVagina)>>, unfasten $his chastity belt,<</if>>
		<</if>>
		and have gentle vaginal sex in the missionary position <<if $PC.vagina != -1>><<if $PC.dick != 0>>, your own pussy moving back and forth gently at the base of your dick as you fuck $him<</if>><</if>>. $He gasps at the first penetration, but you take it slowly and lavish attention on $his lips, breasts, and nipples. Soon $he's shamelessly enjoying $himself. $His first vaginal sex is crowned with an abdominal-clenching orgasm. $He @@.hotpink;adores $his kind <<= getWrittenTitle($activeSlave)>>.@@
		<<set $activeSlave.devotion += 10, $activeSlave.vagina = 1>>
		<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
		<<if $activeSlave.chastityVagina == 1>><<set $activeSlave.chastityVagina = 0>><</if>>
		<<if canImpreg($activeSlave, $PC)>>
			<<= knockMeUp($activeSlave, 25, 0, -1)>>
		<</if>>
	<</replace>>
<</link>><<if ($activeSlave.chastityVagina)>> //This option will remove $his chastity belt//<</if>>

<<case "impregnation please">>

<<link "Put a slave in $him">>
	<<if $activeSlave.mpreg == 1>>
		<<if !canDoAnal($activeSlave)>>
			You slowly undo $his chastity, allowing $him to be overwhelmed with anticipation of the deed to come.
		<</if>>
	<<else>>
		<<if ($activeSlave.chastityVagina)>>
			You slowly undo $his chastity, allowing $him to be overwhelmed with anticipation of the deed to come.
		<</if>>
	<</if>>
	<<replace "#result">>
		Despite $himself, $he breaks down when $he feels your cock enter $his
		<<if $activeSlave.mpreg == 1>>
			<<if ($activeSlave.anus == 1)>>
				deliciously tight
			<<elseif ($activeSlave.anus == 2)>>
				well experienced
			<<else>>
				fucked-out
			<</if>>
			ass.
		<<else>>
			<<if ($activeSlave.vagina == 1)>>
				deliciously tight
			<<elseif ($activeSlave.vagina == 2)>>
				well experienced
			<<else>>
				fucked-out
			<</if>>
			cunt.
		<</if>>
		$He <<if _superfetation == 1>>grinds against you<<else>>smiles up reassuringly at you<</if>> to let you know $he's not in pain or anguish, blinking away $his happy tears.
		<<if _faceUp == 1>>
			$He reaches up to hug $himself close to you,
			<<if $activeSlave.belly >= 5000>>
				but the gravid swell of $his current pregnancy thwarts $his efforts as you take $him.
			<<elseif ($activeSlave.boobs < 600) && $activeSlave.belly < 5000>>
				and $his modest breasts let $him snuggle close to you, face-to-face, as you take $him.
			<<elseif $activeSlave.belly >= 5000 && $activeSlave.boobs < 600>>
				$his big $activeSlave.inflationType stuffed belly pushing against you as you take $him.
			<<elseif ($activeSlave.boobs < 10000)>>
				and $his big tits <<if $activeSlave.belly >= 2000>>and $activeSlave.inflationType stuffed belly <</if>>form a soft cushion between you as you take $him.
			<<else>>
				but $his massive tits stop $him from bringing $himself too close to you as you take $him.
			<</if>>
		<<else>>
			$He reaches back to take your hand, slowly bringing it back to the swell of $his baby bump.
		<</if>>
		$He enjoys $himself immensely, but $he loses it again when $he feels your
		<<if $PC.balls >= 30>>
			<<if _superfetation == 1>>
				seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>.
			<<else>>
				seed fill $his cramped womb and start to backflow.
			<</if>>
		<<elseif $PC.balls >= 14>>
			seed pumping into $him until $his womb is stuffed with cum.
		<<elseif $PC.balls >= 9>>
			seed pouring into $him.
		<<else>>
			seed.
		<</if>>
		$He starts blubbering inelegantly and
		<<if !canTalk($activeSlave)>>
			gesturing
		<<elseif ($activeSlave.lips > 70) || ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
			lisping
		<<else>>
			whimpering
		<</if>>
		@@.hotpink;$his thanks.@@
		<<set $activeSlave.devotion += 4>>
		<<if $activeSlave.mpreg == 1>>
			<<run seX($activeSlave, "anal", $PC, "penetrative")>>
		<<else>>
			<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
		<</if>>
		<<= knockMeUp($activeSlave, 50, 2, -1, 1)>>
	<</replace>>
<</link>>
<<if $activeSlave.mpreg == 0>>
	<br><<link "Use $his ass but give $him what $he wants">>
		<<replace "#result">>
			You tell $him that impregnation will be $his reward if $he's a good little buttslut<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityAnus)>> as you undo $his chastity<</if>>.
			$He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other rubbing $his pussy. $He
			<<if ($activeSlave.anus == 1)>>
				winces in pain as $he lowers $his tight
			<<elseif ($activeSlave.anus == 2)>>
				moans with discomfort as $he lowers $his tight
			<<else>>
				barely reacts as $he lowers $his huge
			<</if>>
			butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick.
			<<if _faceUp == 1>>
				Since $he's facing you, you get a great view of $his body in motion.
			<<else>>
				$He's so heavy with child, you eventually have to give $him a hand as $he steadily tires.
			<</if>>
			$His <<if $activeSlave.clit>>clitoral <</if>>stimulation is having an effect, and after a while $he
			<<if !canTalk($activeSlave)>>
				takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he wishes $he could get pregnant anally.
			<<else>>
				pants, "That'<<s>> <<s>>o good, <<Master>>. I wi<<sh>> you could get my a<<ss>> pregnant."
			<</if>>
			When you're close, you scoot back to pull yourself out and $he spears $his cunt down onto your cock. The sudden difference of sensation brings you to violent climax, and $he @@.hotpink;cries with joy@@ at feeling your hot
			<<if $PC.balls >= 30>>
				<<if _superfetation == 1>>
					seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>.
				<<else>>
					seed fill $his cramped womb and start to backflow.
				<</if>>
			<<elseif $PC.balls >= 14>>
				seed pumping into $him until $his womb is stuffed with cum.
			<<elseif $PC.balls >= 9>>
				seed pouring into $him.
			<<else>>
				seed.
			<</if>>
			<<set $activeSlave.devotion += 4>>
			<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
			<<run seX($activeSlave, "anal", $PC, "penetrative")>>
			<<= knockMeUp($activeSlave, 50, 0, -1, 1)>>
		<</replace>>
	<</link>>
	<br><<link "Sneak it into $his ass instead">>
		<<replace "#result">>
			Despite $himself, $he breaks down when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>notices<</if>> you coming over and kneeling down to line your cock up with the entrance to $his
			<<if ($activeSlave.vagina == 1)>>
				deliciously tight
			<<elseif ($activeSlave.vagina == 2)>>
				well experienced
			<<else>>
				fucked-out
			<</if>>
			cunt. $His happy tears turn to a ragged gasp of surprise and pain when you slide your dickhead down to $his
			<<if ($activeSlave.anus == 1)>>
				painfully inexperienced
			<<elseif ($activeSlave.anus == 2)>>
				tight
			<<else>>
				loose
			<</if>>
			ass and shove it up there instead. $He knows better than to protest, but the expression on $his face is a wonderful mix of submission, anguish and disappointment as $he takes the anal fuck. To stop $his fugue of disappointment you give $him a light slap on the cheek to get $his attention, and then instruct $him that it's not $his place
			<<if _superfetation == 1>>
				to decide how pregnant he gets to be.
			<<else>>
				to plan $his pregnancies.
			<</if>>
			They'll happen when they happen, and until then $he'll take it up the butt like a good slut. $He @@.gold;nods and wipes $his eyes@@ even as
			<<if ($activeSlave.anus == 1)>>
				$he grimaces involuntarily at your painful use of $his tight butthole.
			<<elseif ($activeSlave.anus == 2)>>
				$he takes your cock up $his tight ass.
			<<else>>
				$his gaping anus makes occasional lewd noises as you pound it.
			<</if>>
			<<set $activeSlave.trust -= 5>>
			<<run seX($activeSlave, "anal", $PC, "penetrative")>>
		<</replace>>
	<</link>>
<<else>>
	<br><<link "Use $his ass but finish across $his back">>
		<<replace "#result">>
			You tell $him that impregnation will be $his reward if $he's a good little buttslut. $He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple. $He
			<<if ($activeSlave.anus == 1)>>
				winces in pain as $he lowers $his tight
			<<elseif ($activeSlave.anus == 2)>>
				moans with discomfort as $he lowers $his tight
			<<else>>
				barely reacts as $he lowers $his huge
			<</if>>
			butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick.
			<<if _faceUp == 1>>
				Since $he's facing you, you get a great view of $his body in motion.
			<<else>>
				$He's so heavy with child, you eventually have to give $him a hand as $he steadily tires.
			<</if>>
			$His stimulation is having an effect, and after a while $he
			<<if !canTalk($activeSlave)>>
				takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he is thrilled to be able to get anally pregnant<<if _superfetation == 1>> and is about to conceive again<</if>>.
			<<else>>
				pants, "That'<<s>> <<s>>o good, <<Master>>. I'm <<s>>o glad my a<<ss>> i<<s>> fertile."
			<</if>>
			When you're at your limit, you quickly pull
			<<if _faceUp == 1>>
				out, slide slightly further under $him
			<<else>>
				out
			<</if>>
			and thrust up between $his asscheeks, blowing your hot seed
			<<if $PC.balls >= 30>>
				across $his entire back.
			<<elseif $PC.balls >= 9>>
				across $his back.
			<<else>>
				across $his lower back.
			<</if>>
			$He stops riding you and <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you with a look of @@.mediumorchid;disbelief.@@ You shrug; it must have slipped out under all $his enthusiasm.
			<<set $activeSlave.devotion -= 5>>
			<<run seX($activeSlave, "anal", $PC, "penetrative")>>
		<</replace>>
	<</link>>
<</if>>
<<if ($cumSlaves >= 5)>>
	<br><<link "Use the Dairy cockmilk to impregnate $him">>
		<<replace "#result">>
			You tell $him $he'll be having everyone's children. $He looks puzzled until you put $him on the couch<<if hasBothLegs($activeSlave)>>, legs spread,<</if>> and produce a large, soft injector full of fresh cum. At this $he giggles and thanks you; $he rapturously rubs $his _belly belly as you gently push the injector home. For the rest of the week, $he appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. $He goes about $his other business with a @@.hotpink;deeply pleased@@ expression on $his face. Whenever $he has a spare moment $he steals down to the Dairy to hug the slaves there or otherwise show them a little affection.
			<<set $activeSlave.devotion += 10>>
			<<set _cumSlaves = $slaves.filter(function(s) { return (s.assignment == "get milked" || s.assignment == "work in the dairy") && s.balls > 0 && s.ballType == "human"; })>>
			<<if _cumSlaves.length > 0>>
				<<set _cumSlave = _cumSlaves.random()>>
				<<= knockMeUp($activeSlave, 90, 2, _cumSlave.ID, 1)>>
			<</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "fearful balls">>

<<link "Threaten $him with castration">>
	<<replace "#result">>
		You open a drawer of your desk and extract a razor-sharp ceramic-bladed knife. <<if canSee($activeSlave)>>You make a show of inspecting its edge and then place it on your desk before looking meaningfully at $his ballsack. $He watches this display with wide eyes<<else>>You describe what it is you took out of your desk and how easily it could be used to remove $his ballsack. $He cocks $his head slightly<</if>> until $he gets your meaning, and then collapses to the ground, almost wetting $himself.
		<<if !canTalk($activeSlave)>>
			$He frantically uses $his hand<<if hasBothArms($activeSlave)>>s<</if>> to promise you perfect obedience if you'll only spare $him from emasculation.
		<<else>>
			$He begs through tears, "Plea<<s>>e no, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>! Plea<<s>>e let me keep them! Plea<<s>>e!"
		<</if>>
		You patiently inform $him that $he can — for now, and so long as $he is a good little $girl. $He flees from the room backwards, bowing, scraping, and profusely thanking you, repeating desperate @@.gold;promises of good behavior.@@
		<<set $activeSlave.trust -= 5>>
	<</replace>>
<</link>>
<br><<link "Force obedience using pain">>
	<<replace "#result">>
		You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. After letting $him wriggle for a while, you tell $him that $he can have it off when $he gets you off. $He scrabbles for your <<if $PC.dick == 0>>pussy and desperately starts to perform cunnilingus; after a while you get bored and ride $his face. You finally climax<<else>>dick and starts to desperately suck you off<<if $PC.vagina != -1>> and eat you out<</if>>; you let $him work for a while before getting bored and adding painful slaps to $his cheeks. You blow your load down $his throat<</if>> and then stand, <<if canSee($activeSlave)>>brandishing the knife<<else>>swishing the knife through the air<</if>>. <<if canSee($activeSlave)>>$His eyes are huge<<else>>$He grimaces<</if>> with terror, but $he holds still. $His private parts have gone so numb that $he has to <<if canSee($activeSlave)>>look down<<else>>run $his hand across $his scrotum<</if>> in trepidation to verify that you cut the rubber, not $him. $He leaves with the pins and needles working their agonizing way back into $him along with the blood flow to $his balls, promising tearfully to @@.gold;stay out of trouble.@@
		<<set $activeSlave.trust -= 5>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Geld $him gradually">>
	<<replace "#result">>
		You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. You add leather mittens to $his hands to stop $him from removing the rubber, and then observe that this is a method used to geld livestock. $His tearful begging goes on until you tire of it and put $him out. <<= capFirstChar($assistant.name)>> tracks $his agonized, weeping progress around the arcology for the many hours it takes the lack of blood flow to necessitate a trip to the remote surgery. When that time comes, you make $him beg you to remove $his balls for an hour straight before you do — and $he's so desperate for relief from the pain that $he does it. The experience has left $him @@.health.dec;slightly injured,@@ @@.orange;gelded,@@ @@.red;thoroughly traumatized,@@ and @@.gold;willing to do anything@@ to avoid any more pain.
		<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.trust -= 20, $activeSlave.balls = 0, $activeSlave.scrotum = 0>>
		<<run surgeryDamage($activeSlave, 10)>>
	<</replace>>
<</link>>

<<case "extreme aphrodisiacs">>

<<link "Take pity and give $him relief">>
	<<replace "#result">>
		You sit on the edge of the bed and draw $him down to sit on your lap. This way, you can enjoy gently fucking $him while you draw orgasm after orgasm out of $him with your hands. $He'll only be relieved for a few hours, but $he's @@.hotpink;tearfully grateful all the same.@@
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "See how rough you can be and still get $him to cum">>
	<<replace "#result">>
		The aphrodisiac dosage $he's on will let $him orgasm to almost anything. You spend a few minutes playing with $his nipples, skillfully edging $him away from climax, and $he's almost vibrating with discomfort. $He's so desperate that $he sobs with relief when you order $him to
		<<if ($activeSlave.heels == 1) && shoeHeelCategory($activeSlave) == 0>>
			kneel
		<<elseif shoeHeelCategory($activeSlave) > 1>>
			totter up
		<<else>>
			stand
		<</if>>
		<<if $activeSlave.belly >= 5000>>
			_belly belly
		<</if>>
		against a wall and spread $his buttocks. A little saliva and<<if $PC.vagina != -1>> a bit of your own pussyjuice, transferred by a couple of fingers, and<</if>> <<if $PC.dick == 0>>your vibrating strap-on<<else>>your dick<</if>> is up $his willing ass. The position is uncomfortable for $him, and you are not gentle, but $he comes anyway. By the end of the night $his butthole is so sore that $he <<if $activeSlave.belly >= 5000>>lies on $his side<<else>>lies on $his stomach<</if>> every chance $he gets. $His submissiveness @@.hotpink;has increased.@@
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Send $him away">>
	<<replace "#result">>
		$He leaves with ill-concealed disappointment, and is faced with the choice between covert, rule-breaking masturbation or a sleepless night. $His regard for you @@.mediumorchid;has decreased.@@
		<<set $activeSlave.devotion -= 5>>
	<</replace>>
<</link>>

<<case "shaped areolae">>

<<link "Show $him off around the arcology">>
	<<replace "#result">>
		You give $activeSlave.slaveName a variation on a usual slave gown. It's just as gorgeous, but this one actually covers $his <<if $activeSlave.belly >= 1500>>_belly <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>>, <</if>>ass and crotch as well. In fact, it covers $his
		<<if isAmputee($activeSlave)>>
			limbless torso and head completely: everything except the lower part of $his face, and $his boobs.
		<<else>>
			<<if hasAllLimbs($activeSlave)>>arms, legs,<<else>>limbs<</if>> and $his face from the nose up. The only flesh visible at all is $his mouth, $his chin, and $his huge breasts, supported and presented by gentle corseting.
		<</if>>
		<<if !hasAnyLegs($activeSlave)>>
			You carry $him around
			<<if $club != 0>>
				$clubName.
			<<else>>
				$arcologies[0].name's clubs.
			<</if>>
		<<else>>
			You place a gentle hand on the small of $his back to guide $him, and stroll around
			<<if $club != 0>>
				$clubName.
			<<else>>
				$arcologies[0].name's clubs.
			<</if>>
		<</if>>
		$activeSlave.slaveName <<if canSee($activeSlave)>>is blinded by the silk over $his face<<else>>may not be able to see<</if>>, but $he can still <<if canHear($activeSlave)>>hear the appreciative murmurs<<else>>feel the appreciative presence<</if>> of onlookers as they eye $his magnificent breasts with their <<= $activeSlave.areolaeShape>>-shaped areolae. $He shivers a little with suppressed pride. @@.hotpink;$His devotion to you has increased,@@ and @@.green;your reputation as a person with unique property grows.@@
		<<set $activeSlave.devotion += 4>>
		<<run repX(500, "event", $activeSlave)>>
	<</replace>>
<</link>>
<br><<link "Use that pride as an advertisement">>
	<<replace "#result">>
		There's all sorts of business going on in $arcologies[0].name, from flesh rented or bought down to more pedestrian affairs. Advertisement never goes amiss. You place $activeSlave.slaveName naked on a slowly rotating pedestal surrounded by a clear plastiglass tube on a busy thoroughfare in the lower parts of $arcologies[0].name. These devices are often used to display slaves for sale or slave whores for rent; $activeSlave.slaveName is simply identified by your name as arcology owner, which is thus @@.yellowgreen;identified with business prosperity.@@ $He spends the day serving as eye candy for passersby, rotating gently on the pedestal as $he shows off $his body, giving pride of place to $his <<= $activeSlave.areolaeShape>>-shaped areolae. $He loves all the attention, and @@.hotpink;$his devotion to you has increased.@@
		<<set $activeSlave.devotion += 4>>
		<<run cashX(500, "event", $activeSlave)>>
	<</replace>>
<</link>>

<<case "huge tits">>

<<link "Join $him in the shower">>
	<<replace "#result">>
		You step into the running water and help $him to $his feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have $his back against the shower wall, $his titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of $his huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His <<= App.Desc.eyesColor($activeSlave)>> stare straight into yours<<else>>You stare into $his <<= App.Desc.eyesColor($activeSlave)>><</if>> as $he writhes with overstimulation, @@.mediumaquamarine;$his trust in your stewardship of $his pleasure total.@@
		<<if canDoVaginal($activeSlave)>><<= VCheck.Vaginal($activeSlave, 1)>><<elseif canDoAnal($activeSlave)>><<= VCheck.Anal($activeSlave, 1)>><</if>>
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>> <<if ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)>>//This option will take $his virginity//<<elseif ($activeSlave.vagina == -1) && ($activeSlave.anus == 0) && canDoAnal($activeSlave)>>//This option will take $his anal virginity//<</if>>
<br><<link "Fuck $his immobilized body">>
	<<replace "#result">>
		You make no answer, groping $his soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks.
		<<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>>
			$His rectum is so fucked out and loose that your groping hand almost slides up it.
		<<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>>
			$His pussy is so fucked out and loose that your groping hand almost slides up it.
		<<else>>
			You finger fuck $him for a while, the sting of the soap on $his sensitive insides making $him gasp.
		<</if>>
		It's not like you can't tie $him up and fuck $him whenever you like, but sliding back and forth on $his soapy body is kind of nice.
		<<if $PC.dick == 0>>
			You ride yourself against $him until you orgasm
		<<else>>
			You leave a load of cum in
			<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
				each of $his holes
				<<set _didVaginal = 1, _didAnal = 1>>
			<<elseif canDoAnal($activeSlave)>>
				$his loosened butthole
				<<set _didAnal = 1>>
			<<else>>
				$his loosened vagina
				<<set _didVaginal = 1>>
			<</if>>
			<<if $PC.vagina != -1>> and make $him eat your pussy for a quick aftershock,<</if>>
		<</if>>
		and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@
		<<if _didVaginal == 1 && _didAnal == 1>>
			<<= VCheck.Both($activeSlave, 1)>>
		<<elseif _didVaginal == 1>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif _didAnal == 1>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<br><<link "Let $him figure it out">>
	<<replace "#result">>
		$He flounders around for a while until you get bored and leave $him to it. Eventually $his whining brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@
		<<set $activeSlave.devotion -= 5>>
	<</replace>>
<</link>>

<<case "surgery addict">>

<<link "$He asked for it; give $him the works">>
	<<replace "#result">>
		As the sterile doors of the surgical equipment hiss closed over $him, you whisper in $his ear that $he's about to be cut up. $He looks at you with a mix of fear and wild excitement. After nearly a whole week of constant surgery and expensive drug-induced recovery, <<if canSee($activeSlave)>>$he finally gets to see $his new body in the mirror<<elseif !hasAnyArms($activeSlave)>>you finally describe all the new implants in $his body and how they make $him look<<else>>you finally let $him feel $his new body, even helping $his hands to the less obvious changes<</if>>. $He has cartoonishly huge lips, boobs, and buttocks; $he looks like a caricature of a bimbo. $He cries with gratitude <<if canSee($activeSlave)>>to see $himself<<elseif !hasAnyArms($activeSlave)>>to <<if canHear($activeSlave)>>hear<<else>>discover<</if>> how $he looks<<else>>as $he feels $his new body<</if>>, and can scarcely wait to recover enough to get fucked. @@.hotpink;$He has become extremely devoted to you.@@
		<<run cashX(forceNeg(Math.trunc(125*$upgradeMultiplierMedicine)), "slaveSurgery", $activeSlave)>>
		<<set $activeSlave.devotion += 10>>
		<<set _surgeryAddict = Math.clamp(20000-$activeSlave.boobs, 0, 2000)>>
		<<set $activeSlave.boobsImplant += _surgeryAddict, $activeSlave.boobs += _surgeryAddict>>
		<<set _surgeryAddict = Math.clamp(10-$activeSlave.butt, 0, 4)>>
		<<set $activeSlave.buttImplant += _surgeryAddict, $activeSlave.butt += _surgeryAddict>>
		<<set _surgeryAddict = Math.clamp(80-$activeSlave.lips, 0, 20)>>
		<<set $activeSlave.lipsImplant += _surgeryAddict, $activeSlave.lips += _surgeryAddict>>
	<</replace>>
<</link>>
<<if $activeSlave.bellyPreg >= 5000>>
	<br><<link "Not while $he is so pregnant">>
		<<replace "#result">>
			$He's clearly disappointed, but $he accepts that you are watching out for $his health and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if hasBothArms($activeSlave)>>hands<<elseif hasAnyArms($activeSlave)>>fingers<<else>>lips<</if>> off a pair of bolted-on boobs.
		<</replace>>
	<</link>>
<</if>>
<br><<link "No">>
	<<replace "#result">>
		$He's clearly disappointed, but $he accepts your will and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if hasBothArms($activeSlave)>>hands<<elseif hasAnyArms($activeSlave)>>fingers<<else>>lips<</if>> off a pair of bolted-on boobs.
	<</replace>>
<</link>>

<<case "night visit">>

<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
	<<link "Fuck $him as $he asks">>
		<<replace "#result">>
			$He almost sobs with joy as <<if $PC.dick == 0>>your strap-on enters<<else>>you enter<</if>> $him. The two of you have
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				passionate oral, vanilla, and finally anal sex
			<<elseif canDoVaginal($activeSlave)>>
				gentle vanilla sex
			<<else>>
				gentle anal sex
			<</if>>
			for the rest of the night<<if $PC.vagina != -1>><<if $PC.dick != 0>>; whenever you go soft for a moment, all $he has to do is eat you out, and you're rock hard again<</if>><</if>>. As you move from position to position<<if $activeSlave.belly >= 5000>>, and exploring several unusual ones thanks to $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>, $he twists to face you whenever $he can. When $he manages it, $he kisses you when $he can reach your lips, and $he <<if canSee($activeSlave)>>stares deeply into your eyes<<else>>meets your face with $his own<</if>> when $he cannot. $His trust in you @@.mediumaquamarine;has increased.@@
			<<set $activeSlave.trust += 4>>
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				<<= VCheck.Both($activeSlave, 1)>>
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<<elseif canDoVaginal($activeSlave)>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Assrape $him">>
		<<replace "#result">>
			You order $him to kneel. $He looks hopeful and complies, but $his anticipation of enjoyable sex vanishes with a pathetic little gasp when you<<if $PC.dick == 0>> don a strap-on and<</if>> <<if $PC.vagina != -1>>use a couple of fingers to collect some of your pussyjuice for improvised lube<<else>>spit on $his butthole<</if>>. With only a little saliva as lubrication, you brutally sodomize $him, fucking $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass to the limit of what you can get away with without damaging $him.
			<<if (($activeSlave.fetish == "buttslut" && $activeSlave.fetishStrength > 60) || ($activeSlave.energy > 95)) && ($activeSlave.fetishKnown == 1)>>
				$He loves anal so much that after a while pleasure overwhelms pain to the extent that $he manages a @@.hotpink;sobbing orgasm.@@
			<<else>>
				$He gets the message: $he's your property and $his desires are entirely subject to your will. $His @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased.
			<</if>>
			<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>
<br><<link "Play with $him">>
	<<replace "#result">>
		You get into bed and crook a finger, silently ordering $him to join you. $He<<if $activeSlave.clothes != "no clothing">> hurries out of $his clothes and<</if>> bounces over,
		<<if ($activeSlave.chastityPenis == 1)>>
			$his posture communicating the arousal that $his caged cock cannot.
		<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
			$his impotent dick already streaming watery precum.
		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
			$his dick pathetically soft despite $his obvious arousal.
		<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave)>>
			$his dick swollen with arousal yet too large to become erect.
		<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>>
			$his dick tipped with precum yet enable to get hard.
		<<elseif $activeSlave.dick > 4>>
			$his massive cock rock hard.
		<<elseif $activeSlave.dick > 2>>
			$his erection standing out stiffly.
		<<elseif $activeSlave.dick > 0>>
			$his tiny little dick poking out stiffly.
		<<elseif $activeSlave.clit > 0>>
			$his big clit visibly stiff.
		<<elseif $activeSlave.vagina == -1>>
			already arching $his back to present $his bottom.
		<<else>>
			$his pussylips shining with arousal.
		<</if>>
		As $he <<if $activeSlave.belly >= 10000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk<<else>>climbs<</if>> into bed you take $his $activeSlave.skin hand and guide $him into your lap, facing away from you. $He sighs happily and snuggles $his
		<<if $activeSlave.weight > 160>>
			rippling
		<<elseif $activeSlave.weight > 95>>
			soft
		<<elseif ($activeSlave.muscles > 95)>>
			ripped
		<<elseif ($activeSlave.muscles > 30)>>
			muscular
		<<elseif ($activeSlave.muscles > 5)>>
			toned
		<<else>>
			soft
		<</if>>
		back into your chest. You<<if $activeSlave.belly >= 5000>> embrace $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly before you<</if>>
		<<if ($activeSlave.boobs > 2000)>>
			run your hands across $his massive chest
		<<elseif ($activeSlave.boobs > 800)>>
			heft $his heavy breasts
		<<else>>
			massage $his pretty chest
		<</if>>
		and tease $his
		<<if $activeSlave.nipples == "huge">>
			ridiculous
		<<elseif $activeSlave.nipples == "flat">>
			fat
		<<elseif $activeSlave.nipples == "puffy">>
			puffy
		<<elseif $activeSlave.nipples == "inverted">>
			shy
		<<elseif $activeSlave.nipples == "partially inverted">>
			exposed
		<<elseif $activeSlave.nipples == "fuckable">>
			deep
		<<else>>
			erect
		<</if>>
		nipples, as $he shimmies $himself back <<if $PC.dick == 0>>so $his warmth is against yours, your legs spreading $his<<else>>onto you so your cock is lodged between $his<</if>>
		<<if ($activeSlave.butt > 10)>>
			unfathomable
		<<elseif ($activeSlave.butt > 5)>>
			incredible
		<<elseif ($activeSlave.butt > 2)>>
			healthy
		<<else>>
			pert
		<</if>>
		buttocks. When $he's close to orgasm from all the stimulation, $he reflexively squeezes <<if $PC.dick == 0>>your body between $his legs<<else>>your dick between $his asscheeks<</if>>, bringing you to climax. At the feeling of your <<if $PC.dick == 0>>juices<<else>>warm cum<</if>> between $his
		<<if ($activeSlave.weight > 190)>>
			immense
		<<elseif ($activeSlave.weight > 160)>>
			massive
		<<elseif ($activeSlave.weight > 130)>>
			huge
		<<elseif ($activeSlave.weight > 95)>>
			thick
		<<elseif ($activeSlave.weight > 10)>>
			ample
		<<elseif ($activeSlave.weight >= -10)>>
			trim
		<</if>>
		thighs, $he tips over the edge and
		<<if ($activeSlave.chastityPenis == 1)>>
			shivers with orgasm, ejaculate dribbling out of $his chastity cage.
		<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
			cums weakly, $his soft dick twitching.
		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>>
			shivers with orgasm, $his soft dick twitching weakly.
		<<elseif $activeSlave.balls > 4>>
			making a massive mess all over $himself.
		<<elseif $activeSlave.balls > 2>>
			adding $his own load to the mess.
		<<elseif $activeSlave.balls > 0>>
			adding $his own pathetic load to the mess.
		<<elseif $activeSlave.clit > 0>>
			pitches forward convulsively, gasping with overstimulation at the sensation on $his huge clit.
		<<else>>
			quivers in your grasp, gasping, before relaxing back into you in a puddle of satisfaction.
		<</if>>
		$His devotion to you @@.hotpink;has increased.@@
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Send $him away">>
	<<replace "#result">>
		$He tries to hide $his disappointment as $he turns to go, and as $he flees out the door you hear $him begin to cry. By the next morning, however, $his responses to your commands have become less flirtatious and much more attentive. $His obedience to you @@.hotpink;has increased.@@
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>

<<case "trusting HG">>

<<link "Commend $his service">>
	<<replace "#result">>
		You clear your throat and compliment $him, commending $his work ethic, trustworthiness, and loyalty. $He blushes much harder as $he understands. "Thank you,
		<<if $HGFormality == 1>>
			<<Master>>!"
		<<else>>
			<<if def $PC.customTitle>><<Master>><<elseif $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>!"
		<</if>>
		$he says fervently, and gestures at the tablet.
		"I've noti<<c>>ed a couple of the <<s>>lave<<s>> working better together re<<c>>ently, <<s>>o I'm making <<s>>ome minor adju<<s>>tment<<s>> to give them more <<sh>>ift<<s>> together."
		<br><br>
		You're sure $he'll do $his best, and you tell $him so. $He thanks you again, and you both go back to your work. Though your Head Girl continues manipulating $his tablet diligently, $he can't seem to stop $himself from @@.hotpink;stealing the occasional glance at you.@@ $His <<= App.Desc.eyesColor($activeSlave)>>, dark in the dimness of the office, seem to have an unaccountable sheen.
		<<if $assistant.personality != 0>>
		<<setSpokenAssistantPronouns $activeSlave>>
		<<= capFirstChar($assistant.name)>>'s $assistant.appearance avatar appears on your desktop, glowing brightly, and ruins the moment. "$activeSlave.slaveName loooves $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Maaaster<<else>>Miiistress<</if>>," _heA taunts,
		<<switch $assistant.appearance>>
		<<case "monstergirl">>
			_hisA hair forming a heart shape.
		<<case "shemale">>
			using _hisA hands to make a heart shape over _hisA balls.
		<<case "amazon">>
			grinning far more sweetly than _hisA muscular form should be able to manage.
		<<case "businesswoman">>
			though _heA's blushing _himselfA.
		<<case "cherub" "fairy" "pregnant fairy">>
			flitting around and giggling excitedly.
		<<case "goddess">>
			massaging _hisA pregnant belly meaningfully.
		<<case "hypergoddess">>
			massaging _hisA squirming pregnant belly meaningfully.
		<<case "loli">>
			giggling playfully.
		<<case "preggololi">>
			giggling playfully, though _hisA hands have wandered to _hisA crotch.
		<<case "angel">>
			using _hisA hands to make a heart shape.
		<<case "incubus">>
			using _hisA hands to make a heart shape around _hisA erection as _heA thrusts.
		<<case "succubus">>
			<<if $PC.dick != 0>>forms an "O" with _hisA lips and makes exaggerated head bobbing motions<<else>>forms a "V" with _hisA fingers and wiggles _hisA tongue in it<</if>>.
		<<case "imp">>
			flapping around and cackling manically.
		<<case "witch">>
			while holding out a mostly empty vial of love potion.
		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
			forming half of _himselfA into an enormous pussy, the other into a giant dick, and introducing the two to each other.
		<<case "schoolgirl">>
			the very picture of a malicious school<<= _girlA>>.
		<<default>>
			turning _hisA avatar a throbbing pink.
		<</switch>>
		<br><br>
		Your Head Girl turns a darker shade of red. "Oh, <<sh>>ut up, you little
		<<switch $assistant.appearance>>
		<<case "monstergirl">>
			mon<<s>>ter,"
		<<case "shemale">>
			cockmon<<s>>ter,"
		<<case "amazon">>
			dyke,"
		<<case "businesswoman">>
			witch,"
		<<case "fairy" "pregnant fairy">>
			mo<<s>>quito,"
		<<case "goddess" "hypergoddess">>
			cow,"
		<<case "loli">>
			midget,"
		<<case "preggololi">>
			<<s>>lut <<loliA>>,"
		<<case "angel">>
			turkey,"
		<<case "cherub">>
			dove,"
		<<case "incubus">>
			dick,"
		<<case "succubus">>
			cunt,"
		<<case "imp">>
			bat,"
		<<case "witch">>
			blunderer,"
		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
			<<sh>>ape<<sh>>ifter,"
		<<case "schoolgirl">>
			<<s>>lut,"
		<<default>>
			toa<<s>>ter,"
		<</switch>>
		$he says cattily, but $he smiles as well.
		<</if>>
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Share some refreshments with $him">>
	<<replace "#result">>
		You reach into the back of your desk, where your private reserves are, and wordlessly offer $him a
		<<if $PC.refreshmentType == 0>>
			$PC.refreshment.
		<<elseif $PC.refreshmentType == 1>>
			glass of $PC.refreshment.
		<<elseif $PC.refreshmentType == 2>>
			plate of $PC.refreshment.
		<<elseif $PC.refreshmentType == 3>>
			line of $PC.refreshment.
		<<elseif $PC.refreshmentType == 4>>
			syringe of $PC.refreshment.
		<<elseif $PC.refreshmentType == 5>>
			pill of $PC.refreshment.
		<<elseif $PC.refreshmentType == 6>>
			tab of $PC.refreshment.
		<</if>>
		$He stares at you disbelievingly for a moment before stammering $his thanks and accepting it with both hands. $He holds it uncertainly, watching you get one yourself.
		<br><br>
		$He is first among your slaves, but $he is still very much a slave. $He neither receives nor expects
		<<if $PC.refreshmentType == 0>>
			indulgences like tobacco and other smokables. Carcinogens are sometimes the necessary side effects of slave body modification, not an acceptable downside of luxury.
		<<elseif $PC.refreshmentType == 1>>
			drink other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
		<<elseif $PC.refreshmentType == 2>>
			food other than what the slave feeding systems provide $him. $He might be your Head Girl, but the liquid food keeps $his libido charged, $his body healthy, and $his asshole invitingly clean, just like any other slave.
		<<else>>
			drugs other than what the drug dispensers provide $him. Addictive drugs are rarely provided to slaves, replaced instead with slightly healthier, but no less addictive, aphrodisiacs.
		<</if>>
		But it'll do no harm, just this once, and you tell $him so. $He nods, not wanting to spoil the moment by speaking.
		<br><br>
		<<if $PC.refreshmentType == 0>>
			After you light $his $PC.refreshment for $him, $he holds the <<if canTaste($activeSlave)>>first taste<<else>>feeling<</if>> of its smoke in $his mouth for a long, sensual moment before letting it trickle back out through $his lips.
		<<elseif $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
			$He holds the <<if canTaste($activeSlave)>>first taste<<else>>feeling<</if>> of it in $his mouth for a long, sensual moment before swallowing reverently.
		<<else>>
			$He savors the thrill of using $PC.refreshment for a moment, before turning to you, an almost desperate need on $his face.
		<</if>>
		You return to work, and $he follows your example, though $he's rather distracted. When $he finishes $hers, $he sets $his tablet down for a moment and comes over to you, doing $his best to show $his naked body to its best advantage as $he comes. $He gives you a deep kiss,
		<<if $PC.refreshmentType == 0 || $PC.refreshmentType == 1 || $PC.refreshmentType == 2>>
			which tastes of fine $PC.refreshment, with a hint of $activeSlave.slaveName,
		<<else>>
			with plenty of tongue,
		<</if>>
		and then goes back to work, @@.mediumaquamarine;smiling unconsciously@@ as $he savors the lingering <<if $PC.refreshmentType == 3 || $PC.refreshmentType == 4 || $PC.refreshmentType == 5 || $PC.refreshmentType == 6>>rush<<else>><<if canTaste($activeSlave)>>flavor<<else>>sensation<</if>><</if>>.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>

<<case "ignorant horny">>

<<link "Tell $him the truth">>
	<<replace "#result">>
		You explain the effects of the
		<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
			sex drugs
		<<elseif ($activeSlave.clitPiercing == 3) && ($activeSlave.clitSetting != "none")>>
			advanced <<if $activeSlave.vagina > -1>>clit<<else>>frenulum<</if>> piercing
		<<else>>
			slave food
		<</if>>
		briefly. Comprehension dawns across $his<<if $activeSlave.faceShape != "normal">> $activeSlave.faceShape<</if>> face.
		"Yes <<Master>>," $he <<say>>s quietly, more to buy time to formulate a response than anything else. "Um. I <<s>>till really, really want to cum, though. W-would you plea<<s>>e fuck me? Plea<<s>>e, plea<<s>>e, <<Master>>, plea<<s>>e fuck
		<<if ($activeSlave.vagina > 0) && ($activeSlave.preg > $activeSlave.pregData.normalBirth/4) && canDoVaginal($activeSlave)>>
			my pregnant pu<<ss>>y."
		<<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
			me."
		<<elseif canDoAnal($activeSlave)>>
			my butt."
		<<else>>
			<<if ($activeSlave.vagina > 0) && ($activeSlave.preg > $activeSlave.pregData.normalBirth/4)>>
				my pregnant pu<<ss>>y.
			<<elseif ($activeSlave.vagina > 0)>>
				me.
			<<else>>
				my butt.
			<</if>>
			I need it <<s>>o bad right now, plea<<s>>e rip off my cha<<s>>tity and fuck me <<s>>en<<s>>ele<<ss>>."
		<</if>>
		A vague hint of embarrassment at begging for <<if $PC.dick != 0>>a hard<<if $PC.vagina != -1>>futa<</if>> dicking<<else>>your strap-on<</if>> flickers across $his face, but hope for sexual release extinguishes it quickly.
		<br><br>
		<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
			$He groans with relief as your <<if $PC.dick != 0>>cock<<else>>phallus<</if>> enters $him. $He does not orgasm immediately, but $he knows sweet release is coming. You have $him atop your desk, on $his back, and $he's participating in $his own sexual degradation by holding $his legs spread wide apart for you. "Ohh," $he moans as you fuck $him, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now? Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!"
			<<if $PC.dick != 0>>
				$His
				<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
					cunt
				<<else>>
					asshole
				<</if>>
				tightens around your shaft delightfully as $he climaxes.
			<<else>>
				$He shudders with climax.
			<</if>>
			$He smiles @@.mediumaquamarine;trustingly@@ up at you in the afterglow,
			<<if $activeSlave.balls > 0>>
				$his ejaculate
				<<if ($activeSlave.chastityPenis == 1)>>
					seeping from $his chastity cage,
				<<else>>
					glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly,
				<</if>>
			<</if>>
			touched that you would tell $him something like that so honestly.
			<<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
				<<= VCheck.Both($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<<else>>
			$He groans with lust as pull $him onto your lap to make out. "Ohh," $he moans as you run your hands across $his
			<<if $activeSlave.boobsImplant >= 1000 && (($activeSlave.boobsImplant/$activeSlave.boobs) >= .60)>>
				bimbo
			<<elseif $activeSlave.boobs >= 1000 && $activeSlave.butt > 5 && $activeSlave.hips > 0>>
				fecund
			<<elseif $activeSlave.boobs >= 1000 && $activeSlave.butt > 5>>
				voluptuous
			<<elseif $activeSlave.weight > 190>>
				voluminous
			<<elseif $activeSlave.belly >= 5000>>
				<<if $activeSlave.bellyPreg >= 3000>>
					gravid
				<<elseif $activeSlave.bellyImplant >= 3000>>
					rounded
				<<else>>
					swollen
				<</if>>
			<<elseif $activeSlave.weight > 30>>
				soft
			<<elseif $activeSlave.muscles > 30>>
				ripped
			<<elseif $activeSlave.muscles > 5>>
				toned
			<<elseif $activeSlave.boobs >= 500>>
				sultry
			<<else>>
				needy
			<</if>>
			body, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now?" You reward $him for the realization by
			<<switch $activeSlave.nipples>>
			<<case "huge">>
				stroking $his lewdly erect nipples.
			<<case "huge">>
				tweaking $his revealed nipples.
			<<case "puffy">>
				cupping and fondling $his puffy nipples.
			<<case "partially inverted">>
				teasing $his fully exposed nipples.
			<<case "inverted">>
				squeezing $his puffy areolae until $his inverted nipples pop out for you to tease.
			<<case "fuckable">>
				sticking your fingers deep into $his nipples.
			<<default>>
				tweaking $his $activeSlave.nipples nipples.
			<</switch>>
			The pent-up $girl is so desperate for release, you can feel $him trembling with ecstasy from the nipple stimulation alone.
			"Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!"
			$He shudders with climax, smiling @@.mediumaquamarine;trustingly@@ up at you in the afterglow,
			<<if $activeSlave.balls > 0>>
				$his ejaculate
				<<if ($activeSlave.chastityPenis == 1)>>
					seeping from $his chastity cage,
				<<else>>
					glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly,
				<</if>>
			<</if>>
			touched that you would tell $him something like that so honestly.
			<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
		<</if>>
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1)>>
	<br><<link "Trade some oral for release">>
		<<replace "#result">>
			You observe, noncommittally, that $he seems ready to get off.
			"Ye<<s>> <<Master>>!" $he squeals, too <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50>>horny<<else>>stupid<</if>> to notice the sarcasm. Sighing inwardly, you slide yourself back from your desk and glance downward significantly, indicating your <<if $PC.dick != 0>>dick<<if $PC.vagina != -1>> and pussy<</if>><<else>>girl parts<</if>>. $He hurries over, almost throwing $himself at your feet in $his eagerness. "Touch yourself", you say, making it an imperious command rather than kind permission. $He moans into your <<if $PC.dick != 0>>cock<<else>>cunt<</if>> with gratitude as $he
			<<if canDoVaginal($activeSlave)>>
				<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
					wraps one hand around $his dick and slips the other into $his pussy.
				<<else>>
					dives for $his pussy with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>.
				<</if>>
			<<elseif $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
				<<if canAchieveErection($activeSlave)>>
					<<if $activeSlave.dick > 4>>
						wraps $his hand<<if hasBothArms($activeSlave)>>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>>
						wraps a hand around $his throbbing erection.
					<</if>>
				<<else>>
					<<if $activeSlave.dick > 4>>
						dives for $his huge, soft cock with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>.
					<<else>>
						reaches down to fondle $his limp dick.
					<</if>>
				<</if>>
			<<elseif canDoAnal($activeSlave)>>
				<<if $activeSlave.dick == 0>>
					reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum.
				<<else>>
					<<if $activeSlave.vagina == -1>>
						reaches around to finger $his butt, since that's $his only hole.
					<<elseif $activeSlave.chastityVagina == 1>>
						reaches around to finger $his butt, since $his pussy's in chastity.
					<<else>>
						dives for $his pussy with <<if hasBothArms($activeSlave)>>both hands<<else>>$his hand<</if>>.
					<</if>>
				<</if>>
			<<elseif $activeSlave.vagina == -1 && $activeSlave.dick == 0>>
				<<if $activeSlave.balls > 4>>
					cups $his desperate balls, massaging them and encouraging them to release their pent-up cum.
				<<else>>
					reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum.
				<</if>>
			<<else>>
				brings $his hand<<if hasBothArms($activeSlave)>>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 != 0>>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>>,
			<<if (random(0,1) == 1)>>
				$he licks $his lips unconsciously. $He seems to be developing the beginnings of a lovely @@.lightcoral;oral fixation.@@
				<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
			<<else>>
				$he betrays mixed feelings. The shocking intimacy of reaching sexual release as $he used $his mouth to pleasure you seems to be @@.hotpink;affecting $him.@@
				<<set $activeSlave.devotion += 4>>
			<</if>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</replace>>
	<</link>>
<</if>>
<<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1)>>
	<<if ($activeSlave.vagina == -1) && ($activeSlave.attrXY <= 65)>>
		<br><<link "Make $him cum like a girl">>
			<<replace "#result">>
				You order $him to get $his ass up on your desk. $He obeys, though not without a flicker of trepidation. $He points $his butt at you like a sex slave should, and doesn't crane around to <<if canSee($activeSlave)>>see<<else>>feel<</if>> what you're doing behind $him, but $he's stiff with the awareness that <<if $PC.dick != 0>>there's almost certainly a hard<<if $PC.vagina != -1>> futa<</if>> dick about<<else>>you're almost certainly donning a strap-on<</if>> to slide inside $his girly asspussy. $He's not wrong, and $he lets out a little moan as <<if $PC.dick != 0>>your cockhead<<if $PC.vagina != -1>>, which you kindly lubed with a bit of your pussyjuice,<</if>><<else>>its broad tip<</if>> <<if $activeSlave.anus > 2>>slides easily inside $his whorish anus<<elseif $activeSlave.anus == 2>>slides up $his experienced butthole<<else>>forces its way inside $his tight sphincter<</if>>.
				<br><br>
				As you fuck $him, you pull $his torso up so you can play with $his <<if $activeSlave.boobs > 2000>>udders<<elseif $activeSlave.boobs > 800>>tits<<else>>nipples<</if>> and whisper manipulation into $his ear. You tell $him $he's about to cum like a girl. $He says nothing, but $his body language communicates incomprehension. Girls, you tell $him, cum when they get fucked. They cum when <<if $PC.title == 1>>guys<<else>>their betters<</if>> stick dick inside them. $He bursts into tears, sobbing with shame and degradation even as $he shakes and <<if $activeSlave.balls > 0>>squirts cum<<else>>dribbles ejaculate<</if>>. The next time $he sees you,
				<<if (random(0,1) == 1)>>
					$he visibly gathers $his courage, and flirtatiously @@.lightcoral;offers you $his ass.@@
					<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
				<<else>>
					$he manages to stop $himself from breaking down, and seems to be @@.hotpink;working hard@@ to convince $himself that $he's a girl.
					<<set $activeSlave.devotion += 4>>
				<</if>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</replace>>
		<</link>>
	<<elseif ($activeSlave.vagina > -1)>>
		<br><<link "Work on broadening $his sexual horizons">>
			<<replace "#result">>
				$He seems a little too focused on $his hot cunt. You order $him to get up on your desk, and $he obeys eagerly, $his <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>> shining<<else>>facial expression filled<</if>> with lust. <<if canSee($activeSlave)>>They focus<<else>>$He focuses<</if>> on <<if $PC.dick != 0>>your cock as you bring it to bear<<if $PC.vagina != -1>>, not to mention the pussy at its base<</if>><<else>>your strap-on as you step into it<</if>>, and $he's about to express $his gratitude when you push the slave, who is sitting on the edge of your desk with $his legs spread to provide you access to $his pussy, over onto $his back. $He barely has time to reorient $himself when $he feels <<if $activeSlave.anus > 2>>a sudden fullness in $his loose ass<<elseif $activeSlave.anus == 2>>a presence inside $his experienced ass<<else>>something starting to push its way up $his poor little bottom<</if>>.
				<br><br>
				$He cannot hide $his disappointment, but has the presence of mind not to protest as you assfuck $him hard enough that $his <<if $activeSlave.boobs > 2000>>ridiculous tits almost hit $him in the face with each stroke<<elseif $activeSlave.boobs > 800>>big boobs bounce all over the place<<else>>boobs bounce<</if>><<if $activeSlave.belly >= 10000>> and taut belly is forced back<</if>>. $His orgasm sneaks up on $him, and comes by surprise, forcing a squeal out of $him as $his sphincter tightens down involuntarily. $He gets up gingerly, clearly feeling sore,
				<<if (random(0,1) == 1)>>
					and looks preoccupied. $He reaches idly around and massages $his well-fucked backdoor meditatively, biting $his lower lip as $he investigates. Maybe, $he seems to be thinking, @@.lightcoral;anal is fun?@@
					<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
				<<else>>
					but @@.hotpink;does $his honest best@@ to look grateful. $He knows $he's a sex slave and can't afford to be particular about little things like getting buttfucked.
					<<set $activeSlave.devotion += 4>>
				<</if>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</replace>>
		<</link>>
	<</if>>
<</if>>

<<case "cage relief">>

<<link "Help $him get off">>
	<<replace "#result">>
		You take $him by the hand and pull $him to $his feet, and then kiss $him. $He knows that this means no, but melts into you anyway, accepting the comforting gesture for what it is. $He's surprised when you do not break the kiss, but continues to make out with you compliantly. You take $him by the hands, intertwining your fingers with $hers and holding them down at your sides for a while before wrapping $his arms around you at your
		<<if $PC.belly >= 10000>>
			heavily pregnant
		<<elseif $PC.belly >= 5000>>
			gravid
		<<elseif $PC.belly >= 1500>>
			swollen
		<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
			muscular
		<<elseif $PC.title == 0>>
			feminine
		<<else>>
			masculine
		<</if>>
		waist. Your hands, thus freed to grope $him, tenderly hold $his head and neck instead, cupping $his <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face >= -10>>pretty<<else>>homely<</if>> jawline and making $him moan at the intimacy.
		<br><br>
		$He's completely forgotten $his troubles, and you see that it stays that way. You consider yourself something of an expert on human stimulation at this point, and you manage $hers expertly. (Admittedly, you're also cheating, using discreet scanning of $his vital signs to check on $his state of arousal.) Whenever $he's in danger of achieving an erection, which would remind $him of $his chastity cage with a twinge of discomfort, you cool your makeout session off slightly, massaging $him capably instead of kissing $him deeply. After some time, $he shudders, to $his own complete surprise and to your unsurprised satisfaction. $He's just done what in a normal sexual encounter would be considered premature ejaculation, since you wrought $him to such a subtle state of arousal that $he got off without really getting hard. $He can muster no coherent response, but @@.mediumaquamarine;hugs you convulsively,@@ sobbing into your
		<<if $PC.boobs >= 1400>>
			enormous<<if $PC.boobsImplant != 0>> fake<</if>> breasts
		<<elseif $PC.boobs >= 1200>>
			huge<<if $PC.boobsImplant != 0>> fake<</if>> breasts
		<<elseif $PC.boobs >= 1000>>
			big<<if $PC.boobsImplant != 0>> firm<</if>> breasts
		<<elseif $PC.boobs >= 300>>
			boobs
		<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
			strong shoulder
		<<elseif $PC.title == 0>>
			feminine shoulder
		<<else>>
			masculine shoulder
		<</if>>
		with gratitude and release.
		<br><br>
		The scans suggest $his discomfort will return in less than half an hour.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Cut $his balls off">>
	<<replace "#result">>
		You agree, on the condition that $he be a good little bitch like $he promised. $He thanks you frantically, following you with mixed relief, gratitude, and deep terror as you lead $him to the surgery. It's a medically simple procedure, but $he's @@.health.dec;retained for recovery@@ for some time, a common precaution in your penthouse where the surgery affects an area that might be reinjured by sexual use without a short break for the curatives to take effect. When the medical equipment verifies that $he can be fucked without pain or danger to $his health, you order $him to come back up to your office. $He is a @@.hotpink;very good little bitch,@@
		<<if canDoAnal($activeSlave)>>
			taking <<if $PC.dick != 0>>a hard buttfuck<<else>>a hard anal fingerfuck<</if>> with apparent enthusiasm and a strong orgasm, though of course $his continued use of a chastity cage conceals almost all the effects.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			enduring all of your teasing without the slightest hint of an erection. Even though $his chastity blocks the use of $his ass, you still focus most of your attention on $his rear for the day the belt comes off.
		<</if>>
		When $he goes to the bathroom afterward, however, you see $him <<if canSee($activeSlave)>>glance at $himself in the mirror, just once, and then @@.gold;glance away again,@@<<else>>run $his hand under $his cock, just once, and then @@.gold;quickly removing $his hand,@@<</if>> a tear leaking down $his cheek.
		<<set $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
		<<run surgeryDamage($activeSlave, 5)>>
	<</replace>>
	<<replace "#art-frame">>
		/* 000-250-006 */
		<<if $seeImages == 1>>
			<<if $imageChoice == 1>>
				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<<else>>
				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<</if>>
		<</if>>
		/* 000-250-006 */
	<</replace>>
<</link>><<if ($activeSlave.anus == 0) && canDoAnal($activeSlave)>> //This option will take $his anal virginity//<</if>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Use $his cage to torture $him">>
		<<replace "#result">>
			You make no reply at all, but walk around to stand behind the slave. $He knows $he's fucked, and starts to shake with fear. You put a foot on $his ass and shove $him down<<if $activeSlave.belly >= 5000>> so $his rear is pointed into the air again<<else>> to lie flat on the floor<</if>>, and then straddle $him, shoving <<if $PC.dick != 0>>your<<if $PC.vagina != -1>> futa<</if>> cock up $his butt<<else>>one more finger than $he can comfortably take up $his butt<</if>>. $He tries to beg some more, but you give $him a warning slap, and $he shuts up. Despite your roughness, $he's so horny that $he starts to get hard. You can't see or feel this directly, of course, but it's easy to tell from $his desperate sobbing and involuntary writhing, and the lovely spasming of $his anal sphincter. $His tears dry up as $he builds towards a climax; orgasm might be an uncomfortable experience for $him, but it will buy $him a few minutes free of discomfort.
			<br><br>
			But $he's to be disappointed. You <<if $PC.dick != 0>>worm a hand down between $his ass and your stomach, and shove a finger up inside $him, alongside your dick<<if $PC.vagina != -1>>, dexterously using the thumb of that hand to stroke your own pussy<</if>><<else>>use the hand that isn't fucking $him to pull one of $his arms around behind $him into a painful joint lock<</if>>. The pain ruins $his building orgasm, and $he cries with frustration and @@.gold;despair@@ as $he realizes that $he won't be getting off today. You force $him to experience this horrible near-release twice more, bringing $him to a terribly uncomfortable state of arousal and then using sudden pain to destroy any chance $he has of getting relief. All the wriggling and jerking around is good for you, though.
			<<set $activeSlave.trust -= 4>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>
<<if ((($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000) || ($activeSlave.fetish == "cumslut" && $PC.balls >= 14) || ($activeSlave.fetish == "boobs" && $PC.boobs >= 1400)) && $activeSlave.fetishKnown == 1) || ((($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina != -1 && $PC.dick == 0) || ($activeSlave.attrXY > 70 && $activeSlave.attrXX < 50 && $PC.title == 1 && $PC.vagina == 0 && $PC.dick != 0)) && $activeSlave.attrKnown == 1)>>
	<br><<link "Use your body to make $his cage feel even tighter">>
		<<replace "#result">>
			You order $him to pay close attention<<if canSee($activeSlave)>> and not look away<</if>>.
			<<if ($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000)>>
				<<if canSee($activeSlave)>>
					$He questions what you mean until you begin sensually swaying your
					<<if $PC.belly >= 100000>>
						massive pregnancy
					<<elseif $PC.belly >= 60000>>
						giant pregnancy
					<<elseif $PC.belly >= 15000>>
						advanced pregnancy
					<<elseif $PC.belly >= 10000>>
						big, pregnant belly
					<<else>>
						pregnant belly
					<</if>>
					and slowly stripping down. $He groans at the sight, $his dick rapidly hardening at the view of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
				<<else>>
					$He questions what you mean until you grab $his head and push $his face against your
					<<if $PC.belly >= 100000>>
						massive pregnancy.
					<<elseif $PC.belly >= 60000>>
						giant pregnancy.
					<<elseif $PC.belly >= 15000>>
						advanced pregnancy.
					<<elseif $PC.belly >= 10000>>
						big, pregnant belly.
					<<else>>
						pregnant belly.
					<</if>>
					$He tries to recoil, bringing a hand to your middle. You catch it and run it along your motherly curve to your popped navel. You trace $his hand around it as $he groans at the sensation, $his dick rapidly hardening at the feel of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
				<</if>>
			<<elseif ($activeSlave.fetish == "cumslut" && $PC.balls >= 14)>>
				<<if canSee($activeSlave)>>
					$He questions what you mean until you begin sensually caressing your massive balls and slowly stripping down. You quickly bring yourself erect and start to jack off. $He groans at the sight, licking $his lips a the thought of your coming load as $his dick rapidly hardens. You tease yourself and hype up just how big and messy your orgasm will be, making $him quiver with painful arousal. You moan as you feel the distinct sensation of your coming ejaculation, the sheer amount of sperm moving through you takes some time to release. You hug your nuts, thrusting repeatedly until the wave of cum forces its way out of your throbbing dick. You sigh with relief, just to rub it in $his face.
				<<else>>
					$He questions what you mean until you strip down and pull $his face directly into your massive balls. $He tries to recoil, bringing $his hand<<if hasBothArms($activeSlave)>>s<</if>> to the immense spheres. You catch them and use one to massage your nuts and encourage a nice big load for $him and the other the help jack you off. You can feel $him shaking from the pressure on $his dick. Not only do you paint $him with seed, but you sigh loudly with relief, just to rub it in.
				<</if>>
			<<elseif ($activeSlave.fetish == "boobs" && $PC.boobs >= 1400)>>
				<<if canSee($activeSlave)>>
					$He questions what you mean until you pull your arms back, forcing your enormous<<if $PC.boobsImplant != 0>> fake<</if>> breasts to pop free of your top. $He groans at the sight, $his dick rapidly hardening at the view of your impressive rack. You make sure to play off $his tit fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
				<<else>>
					$He questions what you mean until you grab $his head and push $his face against your enormous<<if $PC.boobsImplant != 0>> fake<</if>> breasts. $He tries to recoil, bringing $his hand<<if hasBothArms($activeSlave)>>s<</if>> to your breasts. You continue burying $his face in your rack as $he begins to grope you. $He groans at the sensation, $his dick rapidly hardening at the feel of your lovely tits. You make sure to play off $his boob fetish in every way possible until the aroused slave is in tears from the pressure on $his cock.
				<</if>>
			<<elseif ($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina != -1 && $PC.dick == 0)>>
				<<if canSee($activeSlave)>>
					$He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your tits and pussy. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
				<<else>>
					$He questions what you mean until you grab $his head and push $his face into your pussy. $He tries to recoil, bringing $his hand<<if hasBothArms($activeSlave)>>s<</if>> to your rear. You continue rubbing yourself against $his face as begins to grope you, enjoying your feminine features. $He groans as $his dick rapidly hardens at the feel of your curves and the <<if canSmell($activeSlave)>>scent of<<else>>warmth from<</if>> your arousal. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
				<</if>>
			<<else>>
				<<if canSee($activeSlave)>>
					$He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your erection. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
				<<else>>
					$He questions what you mean until you grab $his head and push $his face against your dick. $He tries to recoil, bringing $his hand<<if hasBothArms($activeSlave)>>s<</if>> to your balls. You continue rubbing yourself against $his face as begins to fondle you, enjoying your masculine features. $He groans as $his dick rapidly hardens at the feel of your penis against your face and the <<if canSmell($activeSlave)>>scent of<<else>>warmth from<</if>> your arousal and precum. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock.
				<</if>>
			<</if>>
			You leave $him in a @@.gold;worse state than $he started in,@@ as $he's hornier than ever and still lacks any satisfying release. But that's $his problem, not yours.<<if $PC.belly >= 10000>> Even when so heavily pregnant, it feels good to know you can still bring a dick to full attention.<</if>>
			<<set $activeSlave.trust -= 4>>
		<</replace>>
	<</link>>
<</if>>


<<case "used whore">>

<<link "Use $him anyway">>
	<<replace "#result">>
		You reach out, grab $his shoulder, and shove $him against the wall.
		<<if !canTalk($activeSlave)>>
			$He manages to use a gesture to beg you not to,
		<<else>>
			$He manages to beg, "Plea<<s>>e no, <<Master>> —"
		<</if>>
		before you give $him a hard warning slap on the ass to shut $him up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>your cock<</if>> against $his
		<<if canDoAnal($activeSlave)>>
			anus.
			<<if ($activeSlave.anus > 2)>>
				It's gaped before you even touch it, but it's clearly sore enough that $he dreads anal anyway.
			<<elseif ($activeSlave.anus > 1)>>
				It's been fucked loose, but it's clearly sore enough that $he dreads anal anyway.
			<<else>>
				It's somehow not gaped yet, and $he dreads having it stretched yet again.
			<</if>>
			<<if ($activeSlave.height >= 185)>>
				$He's tall enough that the angle isn't that uncomfortable for $him.
			<<elseif ($activeSlave.anus > 0)>>
				$He hikes $himself desperately up on $his tiptoes to make the angle less uncomfortable for $him.
			<<else>>
				$He hikes $himself desperately up on $his tiptoes, but $he's so short the angle is desperately uncomfortable for $him.
			<</if>>
			$He decides to try begging one last time, and
			<<if canDoVaginal($activeSlave)>>
				<<if !canTalk($activeSlave)>>
					signs to ask you to use $his pussy instead
				<<else>>
					whines, "Just u<<s>>e my pu<<ss>>y, plea<<s>>e!"
				<</if>>
			<<else>>
				<<if !canTalk($activeSlave)>>
					signs to ask you to let $him suck you off instead
				<<else>>
					whines, "Let me <<s>>uck you off, plea<<s>>e!"
				<</if>>
			<</if>>
			as you shove <<if $PC.dick == 0>>the strap-on<<else>>yourself<</if>> up $his butt. $He reflexively tries to get away into the wall,
			<<if $activeSlave.belly > 100000>>
				$his _belly belly squashing out to either side.
			<<elseif ($activeSlave.boobs > 2000)>>
				$his enormous boobs squashing out to either side.
			<<elseif ($activeSlave.boobs > 1000)>>
				$his big boobs squashing out to either side.
			<<elseif ($activeSlave.boobs > 300)>>
				$his boobs crashing into it.
			<<else>>
				$his sore nipples giving $him a jerk as $he does.
			<</if>>
			After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore ass.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			pussy lips.
			<<if ($activeSlave.vagina > 2)>>
				It's gaped before you even touch it, but it's clearly sore enough that $he dreads penetration anyway.
			<<elseif ($activeSlave.vagina > 1)>>
				It's been fucked loose, but it's clearly been used enough that $he dreads penetration anyway.
			<<else>>
				It's somehow not loose yet, and $he dreads having it stretched yet again.
			<</if>>
			<<if ($activeSlave.height >= 185)>>
				$He's tall enough that the angle isn't that uncomfortable for $him.
			<<elseif ($activeSlave.anus > 0)>>
				$He hikes $himself desperately up on $his tiptoes to make the angle less uncomfortable for $him.
			<<else>>
				$He hikes $himself desperately up on $his tiptoes, but $he's so short the angle is desperately uncomfortable for $him.
			<</if>>
			$He decides to try begging one last time, and
			<<if !canTalk($activeSlave)>>
				signs to ask you to let $him suck you off instead
			<<else>>
				whines, "Let me <<s>>uck you off, plea<<s>>e!"
			<</if>>
			as you shove <<if $PC.dick == 0>>the strap-on<<else>>yourself<</if>> up $his cunt. $He reflexively tries to get away into the wall,
			<<if $activeSlave.belly > 100000>>
				$his _belly belly squashing out to either side.
			<<elseif ($activeSlave.boobs > 2000)>>
				$his enormous boobs squashing out to either side.
			<<elseif ($activeSlave.boobs > 1000)>>
				$his big boobs squashing out to either side.
			<<elseif ($activeSlave.boobs > 300)>>
				$his boobs crashing into it.
			<<else>>
				$his sore nipples giving $him a jerk as $he does.
			<</if>>
			After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore vagina.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</if>>
		When you finally <<if ($PC.dick != 0)>>fill $his <<if canDoAnal($activeSlave)>>butt<<else>>pussy<</if>> with your ejaculate and pull out,<<if $PC.vagina != -1>> the motion releasing a waft of the combined cum and pussyjuice smell of a satisfied futa,<</if>><<else>>shudder with orgasm and withdraw your strap-on,<</if>> $he slumps and turns to go, looking a bit sad for some reason.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Manipulate $him into asking to suck you off">>
	<<replace "#result">>
		You reach out, grab $his shoulder, and shove $him against the wall.
		<<if !canTalk($activeSlave)>>
			$He manages to use a gesture to beg you not to,
		<<else>>
			$He manages to beg, "Plea<<s>>e no, <<Master>> —"
		<</if>>
		before you give $him a hard warning slap on the ass to shut $him up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>an invading<<if $PC.vagina != -1>> futa<</if>> cockhead<</if>> against $his
		<<if canDoAnal($activeSlave)>>
			anus.
			<<if ($activeSlave.anus > 2)>>
				It's gaped before you even touch it, but it's clearly sore enough that $he dreads anal anyway.
			<<elseif ($activeSlave.anus > 1)>>
				It's been fucked loose, but it's clearly sore enough that $he dreads anal anyway.
			<<else>>
				It's somehow not gaped yet, and $he dreads having it stretched yet again.
			<</if>>
		<<else>>
			pussy lips.
			<<if ($activeSlave.vagina > 2)>>
				It's gaped before you even touch it, but it's clearly sore enough that $he dreads penetration anyway.
			<<elseif ($activeSlave.vagina > 1)>>
				It's been fucked loose, but it's clearly been used enough that $he dreads penetration anyway.
			<<else>>
				It's somehow not loose yet, and $he dreads having it stretched yet again.
			<</if>>
		<</if>>
		$He
		<<if !canTalk($activeSlave)>>
			signs let $him suck you off instead.
		<<else>>
			whines, "Let me <<s>>uck you off, plea<<s>>e!"
		<</if>>
		Having gotten $him to beg for what you wanted all along, you spin $him so $his
		<<if $activeSlave.weight > 160>>
			rippling
		<<elseif $activeSlave.weight > 95>>
			fat
		<<elseif ($activeSlave.muscles > 95)>>
			powerful
		<<elseif ($activeSlave.muscles > 30)>>
			strong
		<<elseif ($activeSlave.muscles > 5)>>
			toned
		<<else>>
			feminine
		<</if>>
		back hits the wall with a smack and shove $him down it until $his
		<<if ($activeSlave.lips > 70)>>
			massive
		<<elseif ($activeSlave.lips > 40)>>
			pillowlike
		<<elseif $activeSlave.lips > 20>>
			girlish
		<<elseif $activeSlave.lips > 10>>
			average
		<<else>>
			minuscule
		<</if>>
		lips are level with your <<if $PC.dick == 0>>fake dick<<else>>dick<</if>><<if $activeSlave.belly >= 100000>>, straddle $his _belly belly<</if>>, and push it into $his mouth without waiting for $him to get ready. $He gags, but does $his best to work $his tired mouth. When you're finally satisfied and you let $him up, you aim another slap at $his
		<<if ($activeSlave.butt > 12)>>
			inhuman ass
		<<elseif ($activeSlave.butt > 5)>>
			massive ass
		<<elseif ($activeSlave.butt > 2)>>
			big butt
		<<elseif $activeSlave.butt > 0>>
			nice ass
		<<else>>
			flat ass
		<</if>>
		and let $him see it coming; $he @@.hotpink;accepts@@ the spank due to fright at what you might do if $he dodged before fleeing.
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Just talk with $him">>
	<<replace "#result">>
		You take $him by the hand, lead $him to a nearby couch, and sit down with $him, letting $him seat $himself beside you so $he can
		<<if $activeSlave.belly >= 5000>>
			rest $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk against you
		<<else>>
			lean against you
		<</if>>
		without putting too much weight on $his poor overused butthole. You ask $him about $his day.
		<<if !canTalk($activeSlave)>>
			$He uses gestures to recount it through $his tears. Apparently while one guy was using $his anus, another thought it was hot and waited for him to be done before using $him in turn, without letting $him rest or clean $himself. It took four cocks total for another slave to notice and rescue $him.
		<<else>>
			$He <<say>>s, a little tearfully, "<<Master>>, thi<<s>> guy wanted to u<<s>>e my butt in public. <<S>>o of cour<<s>>e I let him, and he made me <<s>>it in hi<<s>> lap to do it, and held my leg<<if hasBothLegs($activeSlave)>><<s>><</if>> back <<s>>o everyone could <<s>>ee! And then another guy thought it wa<<s>> hot and waited, and then fucked me in my a<<ss>> too. Another <<s>>lave finally noti<<c>>ed and re<<s>>cued me after four cock<<s>>, <<Master>>. I'm really <<s>>ore."
		<</if>>
		$He <<if canSee($activeSlave)>>looks up at you with big <<= App.Desc.eyesColor($activeSlave)>><<else>>gazes at you<</if>> for a long moment, a final tear leaking down $his $activeSlave.skin cheek, before $he suddenly
		<<if !canTalk($activeSlave)>>
			shakes with mute laughter.
		<<else>>
			giggles.
		<</if>>
		$He explains $himself after a while: it's not what $he thought $he'd be doing with $his life,
		<<switch $activeSlave.career>>
		<<case "a bioreactor" "a breeder" "a breeding bull" "a dairy cow" "a dairy slave" "a Fuckdoll" "a Futanari Sister" "a slave" "a slave since birth" 0>>
			once upon a time.
		<<default>>
			back when $he was <<= convertCareer($activeSlave)>>.
		<</switch>>
		<<if !canTalk($activeSlave)>>
			$He points to $himself and uses both hands to mimic sodomy, as though to suggest that's all $he is, before giving you a rueful smile.
		<<else>>
			"_slavename the butthole ho, that'<<s>> me," $he <<say>>s sadly, before giving you a rueful smile.
		<</if>>
		$He kisses you on the cheek and @@.mediumaquamarine;thanks you@@ for listening instead of raping $him.
		<<set $activeSlave.trust += 4>>
		<br><br><span id="result2">
			<<link "Kiss $him back">>
				<<replace "#result2">>
					You turn to kiss $him back, on the lips this time. $He <<if canSee($activeSlave)>>sees<<else>>feels<</if>> your intention and @@.mediumaquamarine;complies trustingly,@@ closing $his eyes and tilting $his head slightly so your lips lock perfectly.
					<<if ($activeSlave.lips > 70)>>
						$His ridiculous, pillowlike lips part softly.
					<<elseif ($activeSlave.teeth == "pointy")>>
						$He opens $his jaw wide, careful to keep $his shark's teeth well clear of you.
					<<elseif ($activeSlave.teeth == "fangs")>>
						$He keeps $his jaw steady so you may work around $his fangs easier.
					<<elseif ($activeSlave.teeth == "fang")>>
						You try your best to work around $his lone fang.
					<</if>>
					After a few seconds, $he realizes you aren't planning to break the kiss anytime soon, and softens, $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> body relaxing against yours. $He scoots closer to you, bringing $his legs up under $him on the couch cushions so $he can face you comfortably. $He leans one
					<<if $activeSlave.weight > 160>>
						extremely well padded
					<<elseif $activeSlave.weight > 95>>
						well padded
					<<elseif ($activeSlave.muscles > 30)>>
						muscular
					<<elseif ($activeSlave.weight > 10)>>
						plush
					<<elseif $activeSlave.hips > -1>>
						pretty
					<</if>>
					hip against your leg, hiking $himself half onto your lap so $he can make out with you without having to sit with any weight on $his sore butthole.
					<<set $activeSlave.trust += 2>>
				<</replace>>
			<</link>>
			<br><<link "Rape $him">>
				<<replace "#result2">>
					But $he's wrong to place that kind of faith in you. As $he withdraws from the kiss, you snake a betraying hand between $his butt and the couch, and shove
					<<if $activeSlave.anus <= 1>>
						two rude fingers up $his sore little anus.
					<<elseif $activeSlave.anus == 2>>
						three rude fingers up $his sore anus.
					<<else>>
						all four of your fingers and your thumb, formed into a point, as far up $his loose butt as they will go.
					<</if>>
					$He lets out a pained "oh," and then goes silent. For such a little sound, it bears a great weight of @@.gold;betrayed trust.@@ You insert your fingers to the knuckle, making $him writhe with discomfort, and then turf $him off the couch to land
					<<if $activeSlave.belly >= 300000>>
						across $his _belly stomach
					<<else>>
						face first
					<</if>>
					on the floor in front of you. $He tries to spread $his butt and angle $his hips like a good $girl, but you slap $his hands away and push your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> inside $him without regard for $his poor anus. $He shudders and begins to cry, and keeps crying as you ravage $his asshole. When you climax and pull out, $he continues to weep, but stumbles off to wash. When $he comes back, $he's still sniffling, but without being prompted,
					<<if $activeSlave.belly >= 300000>>
						@@.hotpink;$he leans over $his belly and offers you $his sore butthole again.@@
					<<else>>
						@@.hotpink;$he gets down on $his knees and offers you $his sore butthole again.@@
					<</if>>
					<<set $activeSlave.trust -= 4, $activeSlave.devotion += 5>>
					<<= VCheck.Anal($activeSlave, 1)>>
				<</replace>>
			<</link>>
		</span>
	<</replace>>
<</link>>

<<case "desperately horny">>

<<link "Touch $him enough to get $him off">>
	<<replace "#result">>
		You tell $him that $he deserves a reward for coming to you. $He almost bursts into tears and nods jerkily, unable to do anything else. You brush a finger across $his cheek, $his ear, $his lips; at each touch $he <<if !canTalk($activeSlave)>>breathes in sharply<<else>>gasps<</if>>. Moving around behind $him, you run a hand down $his flank to $his hip, and then around to $his<<if $activeSlave.belly >= 10000 || $activeSlave.bellyPreg >= 5000>> popped<</if>> navel, and up to cup $his breasts. Your run a thumb <<if $activeSlave.nipples != "fuckable">>over<<else>>into<</if>> each nipple, almost tipping $him over the edge. Your hands move down again,
		<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
			spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum. From there, you trace $his labia and end with a pinch of $his clit — and this is enough.
		<<elseif canDoAnal($activeSlave)>>
			spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum — and this is enough.
		<<elseif canDoVaginal($activeSlave)>>
			tracing $his labia, and then forward to $his clit — and this is enough.
		<<else>>
			to give $his buttcheeks a rub down before teasing at $his chastity — and this is enough.
		<</if>>
		$He spasms, pitching forward
		<<if $activeSlave.belly >= 300000>>
			onto $his obscene belly.
		<<else>>
			and almost falling.
		<</if>>
		$He hurries to clean up after $himself, sobbing with relief and thanking you; $his submissiveness @@.hotpink;has increased.@@
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish != "none")>>
	<br><<link "Reward $him for coming to you">>
		<<setNonlocalPronouns $seeDicks>>
		<<replace "#result">>
			$He almost cries with relief when you tell $him to
			<<switch $activeSlave.fetish>>
			<<case "submissive">>
				lie down on your desk on $his side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull $him over, $his $activeSlave.skin skin sliding across the cool glass desktop, until $his
				<<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>>
					butt is right at the edge of the desk. You warm yourself up with a pussy fuck before shifting your attention to $his neglected asshole.
					<<= VCheck.Both($activeSlave, 3)>>
					When you finish, you
				<<elseif canDoAnal($activeSlave)>>
					butt is right at the edge of the desk.
					<<= VCheck.Anal($activeSlave, 3)>>
					You give it a good fuck and then
				<<elseif canDoVaginal($activeSlave)>>
					pussy is right at the edge of the desk.
					<<= VCheck.Vaginal($activeSlave, 3)>>
					You give it a good fuck and then
				<<else>>
					mouth is right at the edge of the desk. You give it a good fuck and then
					<<run seX($activeSlave, "oral", $PC, "penetrative", 3)>>
				<</if>>
				order $him brusquely to clean up and come right back. You use $him as a nice little desktop <<if $PC.dick != 0>>cockholster<<else>>sex toy<</if>> for the rest of the day.
			<<case "cumslut">>
				get under your desk and <<if $PC.dick != 0>>suck a dick<<if $PC.vagina != -1>> and eat a pussy<</if>><<else>>eat pussy<</if>> while you work.
				<<if $activeSlave.belly >= 120000>>
					As $his _belly belly bumps into you, you sigh and swivel your chair to the side; there is no way $he'll fit under there in $his bloated state.
				<</if>>
				$He's so horny that $he's barely got <<if $PC.dick != 0>>your cock into $his mouth<<else>>$his lips and tongue on your cunt<</if>> before $he climaxes spontaneously, shivering and moaning nicely. You keep $him down there for a while, doing light work and orgasming occasionally as $he gently <<if $PC.dick != 0>>blows you<<if $PC.vagina != -1>> and eats you out<</if>><<else>>lavishes attention on your wet vagina<</if>>.
				<<run seX($activeSlave, "oral", $PC, "penetrative", 3)>>
			<<case "humiliation">>
				run an unimportant message to a citizen across $arcologies[0].name. Naked. $He blushes with mixed embarrassment and anticipation. $He's so pent up that before taking ten steps out of your penthouse entryway and towards $his objective, the open stares $his naked, horny body is getting push $him over the edge.
				<<if ($activeSlave.chastityPenis == 1)>>
					As $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> along, $his chastity cage continues to stream precum. It spatters $his legs, making $his desperation completely obvious to anyone who looks at $his<<if $activeSlave.belly >= 150000>> from behind<</if>>.
				<<elseif canAchieveErection($activeSlave)>>
					$His rock hard cock,
					<<if $activeSlave.belly >= 150000>>
						forced down by the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly and shoots out a little squirt of cum down the underside of $his belly.
					<<else>>
						sticking straight forward as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly upward and shoots out a little squirt of cum<<if $activeSlave.belly >= 10000>> across the underside of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>.
					<</if>>
					As $he stumbles forward, each step releases another squirt.
				<<elseif ($activeSlave.dick > 0)>>
					$His <<if $activeSlave.dick > 6>>enormous <</if>>soft cock, flopping around as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, starts to twitch weakly and release little dribbles of cum. As $he stumbles forward, each step releases another squirt.
				<<elseif $activeSlave.anus > 2>>
					As $he stumbles a little with the orgasm, $his <<if canDoAnal($activeSlave)>>naked anus is easily visible from behind $him, and its lewd spasms attract attention<<else>>anus lewdly spasms under $his chastity, and $his odd motions attract attention<</if>>.
				<<elseif canDoVaginal($activeSlave)>>
					$He focuses $his attention on $his pussy, awkwardly stumbling along as $he tries to walk and finger $himself at the same time.
				<<elseif canDoAnal($activeSlave)>>
					$He focuses $his attention on $his asspussy, awkwardly stumbling along as $he tries to walk and play with $his own butt at the same time.
				<<elseif $activeSlave.vagina > 0>>
					$He squirts a little femcum down $his inner thighs as $he stumbles along, trailing the odor of a woman's pleasure behind $him.
				<<else>>
					$He focuses $his attention on $his breasts, awkwardly stumbling along as $he tries to walk and <<if $activeSlave.nipples != "fuckable">>tweak<<else>>finger<</if>> $his own nipples at the same time.
				<</if>>
				Passersby point and laugh, thrilling $him.
			<<case "buttslut">>
				sit on your lap.
				<<if canDoAnal($activeSlave)>>
					$He climaxes the instant your <<if $PC.dick != 0>>dickhead<<else>>strap-on<</if>> touches $his <<if $activeSlave.anus > 2>>anal gape<<else>>pucker<</if>>, but $he knows this is just the start, and $he laughs with pleasure as $his <<if $activeSlave.anus > 2>>lewd sphincter loosely squeezes<<else>>sphincter tightens against<</if>> the base of <<if $PC.dick != 0>>your cock<<else>>the strap-on<</if>>. You
					<<if $activeSlave.belly >= 5000>>
						spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work.
					<<else>>
						shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work.
					<</if>>
					$He wraps $his legs around the back of the chair and hugs your knees with $his arms, securing $himself
					<<if $activeSlave.belly >= 100000>>
						to you as an anal cocksleeve for as long as you feel like keeping <<if $PC.dick != 0>>your penis lodged up a compliant butthole<<else>>the happy buttslut nice and full<</if>>.
					<<else>>
						under the desk as an anal cocksleeve for as long as you feel like keeping <<if $PC.dick != 0>>your penis lodged up a compliant butthole<<else>>the happy buttslut trapped under there<</if>>.
					<</if>>
					<<= VCheck.Anal($activeSlave, 1)>>
				<<else>>
					$He climaxes the instant your <<if $PC.dick != 0>>dickhead<<else>>strap-on<</if>> squeezes between $his
					<<if $activeSlave.butt < 2>>
						flat, tight cheeks,
					<<elseif $activeSlave.butt <= 2>>
						cute cheeks,
					<<elseif $activeSlave.butt <= 3>>
						round, firm cheeks,
					<<elseif $activeSlave.butt <= 4>>
						curvy, enticing buttcheeks,
					<<elseif $activeSlave.butt <= 5>>
						huge cheeks,
					<<elseif $activeSlave.butt <= 6>>
						massive, alluring cheeks,
					<<elseif $activeSlave.butt <= 7>>
						enormous cheeks,
					<<elseif $activeSlave.butt <= 10>>
						gigantic, jiggly cheeks,
					<<elseif $activeSlave.butt <= 14>>
						inhuman, cushiony butt cheeks,
					<<elseif $activeSlave.butt <= 20>>
						couch-like, super jiggly ass cheeks,
					<</if>>
					but $he knows this is just the start, and $he laughs with pleasure as hug $his rear around <<if $PC.dick != 0>>your cock<<else>>the strap-on<</if>>. You
					<<if $activeSlave.belly >= 5000>>
						spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work.
					<<else>>
						shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work.
					<</if>>
					$He wraps $his legs around the back of the chair and hugs your knees with $his arms, securing $himself
					<<if $activeSlave.belly >= 100000>>
						to you as an a cockbun for as long as you feel like keeping <<if $PC.dick != 0>>your penis wrapped in a happy buttslut<<else>>the happy buttslut entertained<</if>>.
					<<else>>
						under the desk as a cockbun for as long as you feel like keeping the happy buttslut trapped under there.
					<</if>>
					under the desk as cockbun for as long as you feel like keeping the happy buttslut trapped under there.
				<</if>>
			<<case "boobs">>
				lie atop your desk. You don't bother specifying that $he's to lie on $his back, since the boob slut jumps up and presents $his tits without instructions. You keep working with one hand while you idly tease and <<if $activeSlave.nipples != "fuckable">>flick<<else>>finger<</if>> the nearest <<if $activeSlave.lactation > 0>>milky <</if>> nipple with the other. $He's so horny that $he immediately experiences an immodest orgasm, $his back arching away from the cool glass desktop as $he rides its waves. $He giggles a little, and then gasps as you resume playing with $him.
				<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
				<<if $activeSlave.lactation > 0>>
					<<set $activeSlave.lactationDuration = 2>>
					<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
				<<else>>
					<<= induceLactation($activeSlave, 4)>>
				<</if>>
			<<case "pregnancy">>
				<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
					join you on the couch. Since <<if ($activeSlave.vagina >= 0)>>you're saving $his pussy<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is off limits, your options are a bit limited. But you work with what you have, playing with $his
					<<if isFertile($activeSlave)>>
						<<if $activeSlave.lactation == 0>>
							nipples and describing in whispers how pregnancy would make them drip with cream.
						<<else>>
							breasts and describing in whispers how big they'll swell if $he got pregnant.
						<</if>>
					<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
						<<if $activeSlave.lactation == 1>>
							nipples and describing in whispers how nice and swollen $he is with milk.
						<<else>>
							breasts and describing in whispers how big $he's gotten since $he got pregnant.
						<</if>>
					<<elseif $activeSlave.preg > 0>>
						<<if $activeSlave.lactation == 0>>
							nipples and describing in whispers how $his pregnancy will soon have them drip with cream.
						<<else>>
							breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>.
						<</if>>
					<<else>>
						<<if $activeSlave.lactation == 0>>
							nipples and describing in whispers how they'd drip with cream if only $he could get pregnant.
						<<else>>
							breasts and describing in whispers how big they'd swell if only $he could get pregnant.
						<</if>>
					<</if>>
					$He gasps and shudders against you.
					<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
				<<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina <= 0)>>
					join you on the couch. Since <<if ($activeSlave.vagina == 0)>>$he's a virgin and you haven't elected to introduce $him to pussyfucking just yet<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is fresh and unspoiled, your options are a bit limited. But you work with what you have, playing with $his
					<<if isFertile($activeSlave)>>
						<<if $activeSlave.lactation == 0>>
							nipples and describing in whispers how pregnancy would make them drip with cream.
						<<else>>
							breasts and describing in whispers how big they'll swell if $he got pregnant.
						<</if>>
					<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
						<<if $activeSlave.lactation == 1>>
							nipples and describing in whispers how nice and swollen $he is with milk.
						<<else>>
							breasts and describing in whispers how big $he's gotten since $he got pregnant.
						<</if>>
					<<elseif $activeSlave.preg > 0>>
						<<if $activeSlave.lactation == 0>>
							nipples and describing in whispers how $his pregnancy will soon have them drip with cream.
						<<else>>
							breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>.
						<</if>>
					<<else>>
						<<if $activeSlave.lactation == 0>>
							nipples and describing in whispers how they'd drip with cream if only $he could get pregnant.
						<<else>>
							breasts and describing in whispers how big they'd swell if only $he could get pregnant.
						<</if>>
					<</if>>
					$He gasps and shudders against you.
					<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
				<<elseif $activeSlave.pregKnown == 1>>
					join you on the couch. <<if $PC.dick != 0>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily.
					<<if !canDoVaginal($activeSlave)>>
						<<if $activeSlave.mpreg == 1>>
							$He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant.
						<<else>>
							It's $his butt you're fucking, but that doesn't disrupt $his fantasy.
						<</if>>
						<<= VCheck.Anal($activeSlave, 1)>>
					<<else>>
						$He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant.
						<<= VCheck.Vaginal($activeSlave, 1)>>
					<</if>>
				<<else>>
					join you on the couch. <<if $PC.dick != 0>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily.
					<<if !canDoVaginal($activeSlave)>>
						<<if $activeSlave.mpreg == 1>>
							$He's eager to get pregnant and intends to put $his asspussy to use.
						<<else>>
							It's $his butt you're fucking, but that doesn't disrupt $his fantasy.
						<</if>>
						<<= VCheck.Anal($activeSlave, 1)>>
					<<else>>
						$He's eager to get pregnant and intends to put $his pussy to use.
						<<= VCheck.Vaginal($activeSlave, 1)>>
					<</if>>
				<</if>>
			<<case "dom">>
				wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for an inspection, and _heU discovers that _heU's to be inspected with $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>cock up _hisU asshole<<else>>fingers assfucking _himU<</if>>. The dominant $activeSlave.slaveName climaxes immediately to $his use of the poor slave, rubbing <<if $activeSlave.belly >= 5000>>$his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>$himself<</if>> all over the other slave's buttocks while $he continues banging _hisU backdoor.
				<<run seX($activeSlave, "penetrative", "slaves", "anal")>>
			<<case "sadist">>
				wait a moment, because you know what $he needs. $He's mystified, but steels $himself and waits. Another slave appears for a trivial punishment, and _heU discovers that _heU's to be punished by $activeSlave.slaveName's <<if canPenetrate($activeSlave)>>dick<<else>>fingers<</if>>, forced up _hisU anus. The dominant $activeSlave.slaveName climaxes quickly, but quickly recovers and keeps assraping the poor _girlU.
				<<run seX($activeSlave, "penetrative", "slaves", "anal")>>
			<<case "masochist">>
				get $his ass up on your desk and
				<<if $activeSlave.belly >= 300000>>
					lie off the side atop $his _belly stomach.
				<<elseif $activeSlave.belly < 1500>>
					lie on $his side.
				<<else>>
					lie face-down.
				<</if>>
				$He <<if $activeSlave.belly >= 10000>>struggles to heft $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>body<<else>>clambers<</if>> up, and you let $his lie there for a while, tortured by anticipation and arousal, before giving $his nearest buttock a harsh open-handed slap. The shock and pain send $him over the edge immediately, and $he grinds forward into the desk involuntarily; the feeling of the cool desk against $his <<if ($activeSlave.dick > 0)>>dickhead<<elseif $activeSlave.vagina == -1>>crotch<<else>>mons<</if>> slams $him into a second climax, and $he sobs with overstimulation. You keep $him there for a good long while, using $him as a desktop toy that makes interesting noises when you hit it.
			<</switch>>
			<<if ($activeSlave.fetishStrength > 95)>>
				Since $he's totally sure of what gets $him off, this proof you know it too makes $him @@.mediumaquamarine;trust you.@@
				<<set $activeSlave.trust += 5>>
			<<else>>
				Since $he's developing $his kinks, this reinforcement of $his sexual identity @@.lightcoral;advances $his fetish.@@
				<<set $activeSlave.fetishStrength += 4>>
			<</if>>
		<</replace>>
	<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>>
<</if>>
<br>Let $him get off:
<<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while $he sucks">>
		<<replace "#result">>
			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and ask to <<if $PC.dick == 0>>perform cunnilingus on you<<else>>blow you<<if $PC.vagina != -1>> and eat you out<</if>><</if>>, and masturbate while $he does. $He nods through $his tears and hurriedly gets to $his knees, gagging in $his clumsy eagerness, crying a little with relief as $he masturbates furiously<<if $PC.vagina != -1>><<if $PC.dick != 0>> and does $his best to simultaneously please both a cock and a cunt with only one mouth<</if>><</if>>. $He doesn't even pause after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
			<<set $activeSlave.devotion += 4>>
			<<run seX($activeSlave, "oral", $PC, "penetrative", 5)>>
			<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>> has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>>.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if ($activeSlave.fetish != "boobs") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during nipple play">>
		<<replace "#result">>
			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and offer you $his breasts; $he will be allowed to masturbate while you do. $He nods through $his tears and hurriedly presents $his chest, crying a little with relief as $he feels <<if $activeSlave.nipples != "fuckable">>you nip a nipple with your teeth<<elseif $PC.dick != 0>>your dick slip into a nipple<<else>>your tongue penetrate into $his nipple<</if>>. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
			<<set $activeSlave.devotion += 4>>
			<<run seX($activeSlave, "mammary", $PC, "penetrative", 5)>>
			<<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of breast play has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at every brush against $his breasts.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if (($activeSlave.fetish != "pregnancy") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)) && canDoVaginal($activeSlave)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during insemination play">>
		<<replace "#result">>
			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly gaped pussy<<elseif ($activeSlave.vagina > 2)>>loose pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate while you fill $him with cum. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a spurting strap-on<<else>>your cock<</if>> into $his spasming cunt. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
			<<= VCheck.Vaginal($activeSlave, 5)>>
			<<set $activeSlave.devotion += 4>>
			<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of pregnancy play has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of getting pregnant.@@
			<</if>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<</if>>
<<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<<if canDoAnal($activeSlave)>>
		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while $he takes it up the ass">>
			<<replace "#result">>
				You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate while you buttfuck $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
				<<= VCheck.Anal($activeSlave, 5)>>
				<<set $activeSlave.devotion += 4>>
				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
					<<set $activeSlave.fetishStrength += 4>>
					@@.lightcoral;$His enjoyment of anal has increased.@@
				<<elseif random(1,100) > 50>>
					<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>>
					Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
				<</if>>
			<</replace>>
		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
	<</if>>
<</if>>
<<if ($activeSlave.fetish != "humiliation") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "in public">>
		<<replace "#result">>
			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can masturbate in public, sitting with $his legs spread for as much exposure as possible. $He nods through $his tears and sprints out of your office, dripping as $he goes. $He throws $himself to the ground outside, to the considerable amusement of passersby, spreading $his legs painfully wide. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@
			<<set $activeSlave.devotion += 4>>
			<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of humiliation has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1>>
				Before $he realizes what's happening, @@.lightcoral;$he's starting to long for humiliation.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if ($activeSlave.fetish != "submissive") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "after submitting to you">>
		<<replace "#result">>
			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules.
			<<if canDoVaginal($activeSlave)>>
				For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly loose pussy<<elseif ($activeSlave.vagina > 2)>>big slit of a pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his nether lips apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming vagina. You are not gentle, and despite the stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just
				<<if $activeSlave.belly >= 1500>>
					snakes a hand down to fondle $himself.
				<<else>>
					rolls onto $his face to hump $himself against $his hand, against the desk.
				<</if>>
				<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina != -1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used cunt and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
				<<= VCheck.Vaginal($activeSlave, 5)>>
			<<elseif canDoAnal($activeSlave)>>
				For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. You are not gentle, and despite the anal stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just
				<<if $activeSlave.belly >= 1500>>
					snakes a hand down to fondle $himself.
				<<else>>
					rolls onto $his face to hump $himself against $his hand, against the desk.
				<</if>>
				<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina != -1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used backdoor and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
				<<= VCheck.Anal($activeSlave, 5)>>
			<<else>>
				For the rest of the week, $he can come to you and politely ask to <<if $PC.dick != 0>>suck you off<<else>>eat you out<</if>>; $he will be allowed to masturbate after, but only after, you are satisfied. $He nods through $his tears and
				<<if $activeSlave.belly >= 300000>>
					leans over $his _belly stomach,
				<<else>>
					<<if $activeSlave.belly >= 10000>>
						struggles
					<<else>>
						hurriedly gets
					<</if>>
					to $his knees,
				<</if>>
				where $he brings $his face to your <<if $PC.dick != 0>>erect cock<<else>>moist pussy<</if>> and $his hand to $his crotch. $He starts crying a little with relief as $he feels you slowly <<if $PC.dick == 0>>push your slit against<<else>>insert your cock into<</if>> $his mouth. You are not gentle, and by the time you <<if $PC.dick != 0>>blow your load down $his throat<<else>>splash $his face with your girlcum<</if>>, $he still hasn't reached $his climax. $He's so eager to get off $he doesn't bother to move, and just humps $himself against $his hand, against
				<<if $activeSlave.belly >= 300000>>
					$his belly.
				<<else>>
					your leg.
				<</if>>
				<<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina != -1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>After the momentary pause of your climax, you pull $his face back to your crotch for a second round<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@
				<<run seX($activeSlave, "oral", $PC, "penetrative", 5)>>
			<</if>>
			<<set $activeSlave.devotion += 4>>
			<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of submission has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of submission.@@
			<</if>>
		<</replace>>
	<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>>
<</if>>
<<if ($activeSlave.fetish != "masochist") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while in pain">>
		<<replace "#result">>
			You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and masturbate: but you will abuse $him while $he does. $He starts to cry in fear, but <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk anyway. You swat $his thighs apart so $he can get a hand down there. $He hesitates desperately before touching $himself, knowing that as soon as $he does the pain will start, but $his horniness wins out. You aim a vicious flick at $his <<if ($activeSlave.nipples == "huge")>>absurd nipples<<elseif ($activeSlave.nipples != "tiny")>>big nipples<<else>>nipples<</if>> and then take a crop out of your desk, flogging $his <<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>fake<<elseif ($activeSlave.boobs > 1000)>>jiggling<<else>>firm<</if>> breasts without mercy. $He finally orgasms and flees, falling over $his own feet in $his desperation; $his acceptance of sexual slavery @@.hotpink;has increased.@@
			<<set $activeSlave.devotion += 4>>
			<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of pain has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of $his <<= getWrittenTitle($activeSlave)>> beating $him.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "milkgasm">>

<<link "Have some fun with $him once $he's using the milkers">>
	<<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>>pregnant belly<<elseif $activeSlave.bellyImplant >= 3000>>implant-filled belly<<else>><<print $activeSlave.inflationType>>-filled 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 $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($activeSlave, 1)>>
			<<else>>
				clear that $he needs a second round.
				<<= VCheck.Vaginal($activeSlave, 2)>>
			<</if>>
		<<elseif ($activeSlave.chastityVagina)>>
			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($activeSlave, 1)>>
		<<else>>
			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($activeSlave, 1)>>
		<</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 <<= getWrittenTitle($activeSlave)>>, have special aphrodisiac powers. @@.yellowgreen;It can be sold at a special premium.@@ Naturally, @@.hotpink;$his devotion to you has also increased.@@
	<</replace>>
	<<run cashX(100, "event", $activeSlave)>>
	<<set $activeSlave.devotion += 4>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<br><<link "Delay $his milking and then fuck $him in public">>
	<<replace "#result">>
		$activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His equanimity is severely tested over the next hours as you ignore $him. The occasional glance at $him shows $him growing increasingly frantic as $his breasts grow heavier and $his nipples <<if $activeSlave.nipples != "fuckable">>get prouder<<else>>begin to prolapse<</if>>. <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>Soon, $his child<<if $activeSlave.pregType > 1>>ren<</if>>'s kicking is forcing milk out of $his swollen breasts.<</if>> Eventually, the slight rising and falling of $his ribcage as $he inhales and exhales induces enough motion in $his overfull breasts that milk spurts out of $him with each breath. Satisfied that $he's ready, you<<if $PC.dick == 0>> don a strap-on and<</if>> lead the whimpering, dripping slave out to a public street. Here, you hold $him upright so you can fuck $him standing. When $he finally comes through the pain of $his overfull udders, you reach forward and squeeze $him so that $he screams in pain and relief, spraying jets of milk. $He continually aftershock orgasms as you continue pounding. You offer $his breasts to the growing crowd, many of whom come forward to taste $his cream.
		<<if !canDoVaginal($activeSlave)>>
			You fuck $his butt until they've sucked $him empty.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			<<if !canDoAnal($activeSlave)>>
				You fuck $his pussy until they've sucked $him empty.
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				You fuck $his pussy and ass, one after the other, until they've sucked $him empty.
				<<= VCheck.Both($activeSlave, 1)>>
			<</if>>
		<</if>>
		@@.hotpink;$His submission to you has increased@@ and the @@.green;public certainly appreciated the service.@@
		<<set $activeSlave.devotion += 4>>
		<<run repX(500, "event", $activeSlave)>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<<if ($activeSlave.nipples == "inverted") || ($activeSlave.nipples == "partially inverted") || $activeSlave.nipples == "fuckable">>
	<br><<link "Delay $his milking and torture $him with the pressure">>
		<<replace "#result">>
			$activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His devotion is severely tested over the next hours as you ignore $him. The occasional glance at $him shows $him growing increasingly frantic as $his breasts grow heavier and $his inverted nipples, which prevent any release of pressure without the strong suction of the milkers<<if $activeSlave.nipples != "fuckable">> to protrude them<</if>>, grow more tender. Eventually, $he loses all composure and begins to beg you abjectly to give $his relief. Your cruel smile at the kneeling $girl with tears streaming down $his $activeSlave.skin cheeks fills $him with @@.gold;anticipatory horror.@@ You tell $him to get on all fours like the <<if $activeSlave.pregKnown == 1>>pregnant<</if>> cow $he is.
			<<if $activeSlave.belly >= 750000>>
				$He is so horribly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> that it is a struggle just to shift onto $his _belly stomach in the hope that $he can even reach the floor with all four limbs. Even worse, $his efforts are absolutely agonizing to $his engorged breasts; when $he finally does get onto the mass that is $his middle, the sudden shift of $his breasts causes $him to shriek with pain.
			<<elseif $activeSlave.belly >= 300000>>
				$He has to crawl onto $his _belly stomach to even get all four limbs on the ground. The drastic shifting of $his breasts is agonizing and $he shrieks in spite of $himself.
			<<elseif $activeSlave.belly >= 100000>>
				$He slowly does, $his _belly stomach coming to rest on the floor beneath $him, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself.
			<<elseif $activeSlave.belly >= 10000>>
				$He gingerly does, taking care to give $his _belly stomach room, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself.
			<<else>>
				$He does, but the simple movement is agonizing and $he shrieks in spite of $himself.
			<</if>>
			You slide <<if $PC.dick != 0>>your turgid cock<<else>>a big strap-on<</if>> into $him and seize $him by $his
			<<if $activeSlave.weight > 160>>
				extremely well padded
			<<elseif $activeSlave.weight > 95>>
				well padded
			<<elseif $activeSlave.weight > 30>>
				chubby
			<<elseif ($activeSlave.muscles > 30)>>
				muscular
			<<elseif ($activeSlave.weight > 10)>>
				plush
			<<elseif $activeSlave.weight >= -30>>
				trim
			<<else>>
				skinny
			<</if>>
			hips. $He knows what's coming and tries to ready $himself, but as you begin to pound $him without mercy, the motion of $his breasts forces a huge sobbing scream out of $him.
			"Plea<<s>>e, <<Master>>! AAAH! It hurt<<s>>! It AAAH hurt<<s>> <<s>>-<<s>>o b-baAAAH!"
			It hurts so badly, in fact, that $he doesn't seem to notice what you're doing to $his lower half, other than the motion it produces in $his upper half. Amused by the realization,
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				you pull your <<if $PC.dick != 0>>dick<<else>>phallus<</if>> out of $him and shove it up $his butthole without warning.
			<<else>>
				you insert a couple of fingers alongside your <<if $PC.dick != 0>>dick<<else>>phallus<</if>>.
			<</if>>
			$He just goes on screaming about how much $his boobs hurt. Eventually, you tire of $his bellowing, so you reach around and pop <<if $activeSlave.nipples != "fuckable">>$his nipples out one by one<<else>>finger into each nipple<</if>>. The shrieking reaches a paroxysm, but once they're <<if $activeSlave.nipples != "fuckable">>protruded<<else>>opened<</if>>, the milk begins to jet out of $him in a pair of uninterrupted streams. $He collapses forward onto $his face, crying with relief as the pain in $his breasts recedes. As it does, $he finally begins to notice
			<<if canDoAnal($activeSlave)>>
				the pain in $his backdoor as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer an anal virgin@@<</if>>.
				<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>
					<<set $activeSlave.vagina++>>
					$He'll eventually realize that $his @@.lime;virginity was taken@@ while $he was distracted by $his breasts.
				<</if>>
				<<= VCheck.Both($activeSlave, 1)>>
			<<else>>
				the pain in $his cunt as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer a virgin@@<</if>>.
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<</if>>
			<<set $activeSlave.trust -= 4>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>

<<case "whore rebellious">>

<<link "Increase $his assignment to 24 hours a day">>
	<<replace "#result">>
		You give $activeSlave.slaveName no indication that $his public use assignment is about to change. Late in the day, when $his shift would normally end, another of your slaves simply maintains $him as usual and then leaves $him be. $activeSlave.slaveName is so deprived of any way to tell time that $he doesn't realize $he's been left for some time. The first indication $he gets that something's different is when liquid food is squirted down $his throat the next morning. When $he's finally stripped out of the suit at the end of the week, $he's pale and wan and $his holes are puffy and red. @@.health.dec;$His health was damaged.@@ However, $his permanent presence became quite noted. @@.green;Your reputation has increased.@@ And when $he's out of the suit, $he instantly begs you to allow $him to do anything to save $himself from more of that. @@.gold;$His fear of you has increased.@@
	<</replace>>
	<<run repX(500, "event", $activeSlave), healthDamage($activeSlave, 10)>>
	<<set $activeSlave.trust -= 10>>
	<<if canDoVaginal($activeSlave)>>
		<<if canDoAnal($activeSlave)>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>>
			<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
			<<run seX($activeSlave, "oral", "public", "penetrative", 10)>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 10, 2, -2)>>
			<</if>>
		<<else>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 20)>>
			<<run seX($activeSlave, "oral", "public", "penetrative", 10)>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 25, 0, -2)>>
			<</if>>
		<</if>>
	<<else>>
		<<run seX($activeSlave, "anal", "public", "penetrative", 20)>>
		<<run seX($activeSlave, "oral", "public", "penetrative", 10)>>
		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
			<<= knockMeUp($activeSlave, 20, 1, -2)>>
		<</if>>
	<</if>>
	<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
		$His patrons, however, enjoyed claiming @@.lime;both $his virginity and anal cherry.@@
		<<set $activeSlave.anus++, $activeSlave.vagina++>>
	<<elseif $activeSlave.vagina == 0>>
		$His patrons, however, enjoyed claiming @@.lime;$his virginity.@@
		<<set $activeSlave.vagina++>>
	<<elseif $activeSlave.anus == 0>>
		$His patrons, however, enjoyed claiming @@.lime;$his anal cherry.@@
		<<set $activeSlave.anus++>>
	<</if>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<br><<link "Take the first and last every day">>
	<<replace "#result">>
		When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and $his struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the <<if $girl == "girl">>fe<</if>>male-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@
	<</replace>>
	<<set $activeSlave.trust -= 5>>
	<<if canDoVaginal($activeSlave)>>
		<<if canDoAnal($activeSlave)>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 6)>>
			<<run seX($activeSlave, "anal", "public", "penetrative", 6)>>
			<<run seX($activeSlave, "oral", "public", "penetrative", 6)>>
			<<if canImpreg($activeSlave, $PC)>>
				<<= knockMeUp($activeSlave, 5, 2, -1)>>
			<</if>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 10, 2, -2)>>
			<</if>>
		<<else>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 9)>>
			<<run seX($activeSlave, "oral", "public", "penetrative", 9)>>
			<<if canImpreg($activeSlave, $PC)>>
				<<= knockMeUp($activeSlave, 10, 0, -1)>>
			<</if>>
			<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
				<<= knockMeUp($activeSlave, 15, 0, -2)>>
			<</if>>
		<</if>>
	<<else>>
		<<run seX($activeSlave, "anal", "public", "penetrative", 9)>>
		<<run seX($activeSlave, "oral", "public", "penetrative", 9)>>
		<<if canImpreg($activeSlave, $PC)>>
			<<= knockMeUp($activeSlave, 5, 1, -1)>>
		<</if>>
		<<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">>
			<<= knockMeUp($activeSlave, 10, 1, -2)>>
		<</if>>
	<</if>>
	<<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
		You made sure to claim @@.lime;both $his virginity and anal cherry@@ before anyone else could.
		<<set $activeSlave.anus++, $activeSlave.vagina++>>
	<<elseif $activeSlave.vagina == 0>>
		You made sure to claim @@.lime;$his virginity@@ before anyone else could.
		<<set $activeSlave.vagina++>>
	<<elseif $activeSlave.anus == 0>>
		You made sure to claim @@.lime;$his anal cherry@@ before anyone else could.
		<<set $activeSlave.anus++>>
	<</if>>
<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<<if $arcade > 0>>
	<br><<link "Sentence $him to a month in the arcade">>
		<<replace "#result">>
			$activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate.
			<<if ($activeSlave.muscles > 30)>>
				$His powerful form has to be sedated for immurement in the arcade.
			<<elseif ($activeSlave.weight >= 190)>>
				$He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to.
			<<elseif $activeSlave.belly >= 120000>>
				$He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle.
			<<elseif ($activeSlave.weight >= -10)>>
				$His desperate struggles make immuring $him in the arcade difficult.
			<<elseif $activeSlave.belly >= 1500>>
				$His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade.
			<<elseif $activeSlave.muscles < -15>>
				$His weak body makes immuring $him in the arcade pathetically easy.
			<<else>>
				$His thin form makes immuring $him in the arcade pathetically easy.
			<</if>>
			After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his butt as $he wriggles desperately against $his restraints.
			<<= assignJob($activeSlave, "be confined in the arcade")>>
			<<set $activeSlave.sentence = 4>>
		<</replace>>
	<</link>>
<</if>>

<<case "millenary">>

<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<<link "Give $him $his thousandth fuck">>
		<<replace "#result">>
			You decide that a slave's thousandth fuck ought to be representative of sexual slavery. So, you<<if $PC.dick == 0>> don a strap-on,<</if>> push $him over
			<<if $activeSlave.belly >= 300000>>
				_belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>
			<<else>>
				the arm of the couch next to your desk<<if $activeSlave.belly >= 5000>> so that $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> hangs off its edge<</if>>
			<</if>>
			and take $his <<if $seeRace == 1>>$activeSlave.race <</if>>
			<<if !canDoVaginal($activeSlave)>>
				ass
			<<else>>
				pussy
			<</if>>
			hard and fast, doggy style. $He's clearly got a lot of experience, so $he takes the pounding well. Before long $he's happily moaning and begging, pushing $himself back into you<<if $PC.vagina != -1>> and using a hand thrust back between $his own legs to stimulate your pussy<</if>>. You thrust deep inside $him. $He thanks you and wishes you a happy millenary. @@.mediumaquamarine;$He has become much more trusting@@ of $his place with you.
			<<set $activeSlave.trust += 10>>
			<<if canDoVaginal($activeSlave)>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if $slaves.length > 2>>
	<br><<link "Include everyone in $his millenary">>
		<<replace "#result">>
			You decide to celebrate this happy event with everyone. You beckon to the watching slaves<<if $PC.dick == 0>>, while you don a strap-on,<</if>> and they come eagerly or sullenly according to their natures. They troop in. After some thought, you position a slave on the couch next to your desk, $activeSlave.slaveName <<if hasAllLimbs($activeSlave)>>on all fours<<elseif hasAnyLegs($activeSlave)>>knelt over<<else>>propped up<</if>> in front of $his giving cunnilingus, a third slave<<if $activeSlave.belly >= 5000>>squeezed<</if>> under $activeSlave.slaveName to orally service $him in turn, and yourself behind $activeSlave.slaveName to
			<<if canDoVaginal($activeSlave)>>
				take $his <<if $seeRace == 1>>$activeSlave.race <</if>>pussy.
			<<elseif canDoAnal($activeSlave)>>
				take $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass.
			<<else>>
				enjoy $his <<if $seeRace == 1>>$activeSlave.race <</if>>asscheeks.
			<</if>>
			Each slave besides $activeSlave.slaveName gets a suck from $activeSlave.slaveName on the couch and then slides under $him to reciprocate. $He works $his way through all your slaves one by one, with feminine lips and tongues delighting $his
			<<if $activeSlave.dick != 0 && !($activeSlave.chastityPenis)>>
				dickhead
			<<elseif !canDoVaginal($activeSlave)>>
				soft perineum
			<<else>>
				clit
			<</if>>
			and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> gently pumping $his butt the whole time. When $he's done, $he thanks you exhaustedly and begs you to do this for $his next millenary. @@.hotpink;$His love for you has greatly increased.@@
			<<set $activeSlave.devotion += 10>>
			<<run seX($activeSlave, "oral", "slaves", "penetrative", ($slaves.length*2))>>
			<<set $slaves.forEach(function(s) { if (s.ID != $activeSlave.ID) { s.counter.oral++; } })>>
			<<if canDoVaginal($activeSlave)>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
		<</replace>>
	<</link>>
	<<if canDoAnal($activeSlave) && $activeSlave.counter.anal != 0>>
		<br><<link "Drive up $his anal count">>
			<<replace "#result">>
				<<setNonlocalPronouns $seeDicks>>
				You make a ceremony of querying $assistant.name, aloud for everyone to hear, into $activeSlave.slaveName's sexual history. $He soon realizes <<if canHear($activeSlave)>>this is a sort of recitation of $his service<<else>>what $assistant.name is detailing<</if>> for the benefit of the other slaves, and $he stands a little straighter. $His <<if canSee($activeSlave)>><<= App.Desc.eyesColor($activeSlave)>> glitter<<else>>face beams<</if>> with @@.mediumaquamarine;pride@@ as $assistant.name finishes, "...and $his anus has been penetrated $activeSlave.counter.anal times." You announce that $activeSlave.counter.anal isn't nearly enough, detail a slave to fetch you a comfortable chair, seat yourself, and draw the compliant $activeSlave.slaveName's head down towards your <<if $PC.dick == 0>>pussy<<else>>cock<</if>>. $He gets eagerly to work, surrounded by a circle of slaves staring at the show. You select a favored _girlU and tell _himU to get to work driving that anal count up. $activeSlave.slaveName keeps <<if $PC.dick == 0>>eating you out<<else>>sucking your dick<</if>> as the chosen _girlU pulls $activeSlave.slaveName's hips up a little and
				<<if $activeSlave.butt > 18>>
					struggles into $his immense butt.
				<<elseif $activeSlave.butt > 10>>
					pushes between $his massive cheeks.
				<<elseif $activeSlave.butt > 5>>
					spreads $his big buttocks.
				<<elseif $activeSlave.weight > 95>>
					spreads $his fat rear.
				<<elseif $activeSlave.muscles > 30>>
					pushes between $his muscular buttocks.
				<<else>>
					massages $his butt a little.
				<</if>>
				$activeSlave.slaveName snakes a $activeSlave.skin hand down between $his legs to
				<<if ($activeSlave.chastityPenis == 1)>>
					tease $his chastity bound dick
				<<elseif canAchieveErection($activeSlave)>>
					jack off
				<<else>>
					play with $himself as much as $he can manage
				<</if>>
				as $his asshole takes its first fuck of the night. You let $him change positions between each slave, and by the end $he's draped limply across the arm of your chair so $he can tiredly <<if $PC.vagina != -1>>nibble your pussylips<<else>>suck on your balls one at a time<</if>> as the last few slaves, taking advantage of $his enormously gaped butt, slide lubricated hands in and out of $his rectum while giggling at the perversion and playing with each other. As the final slave withdraws their hand, $activeSlave.slaveName crawls into your lap and burrows $his face
				<<if $PC.boobs >= 1400>>
					between your enormous<<if $PC.boobsImplant != 0>> fake<</if>> breasts
				<<elseif $PC.boobs >= 1200>>
					between your huge<<if $PC.boobsImplant != 0>> fake<</if>> breasts
				<<elseif $PC.boobs >= 1000>>
					between your big<<if $PC.boobsImplant != 0>> firm<</if>> breasts
				<<elseif $PC.boobs >= 300>>
					between your breasts
				<<elseif $PC.title == 0>>
					into your flat chest
				<<else>>
					into your muscular chest
				<</if>>
				with an exhausted but @@.hotpink;relaxed@@ sigh.
				<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
				<<run seX($activeSlave, "anal", "slaves", "penetrative", $slaves.length+1)>>
				<<set $slaves.forEach(function(s) { if (s.ID != $activeSlave.ID) { s.counter.penetrative++; } })>>
			<</replace>>
		<</link>>
	<</if>>
<</if>>
<br><<link "Send $him off">>
	<<replace "#result">>
		$He leaves sadly, and you can see a few of the other slaves comforting $him as they prepare for bed.
		<<if canPenetrate($activeSlave)>>
			To cheer $him up, a couple of your slaves let $him fuck them before bed.
		<<else>>
			To cheer $him up, a couple of your slaves get $him off before bed.
		<</if>>
		This disappointment @@.mediumorchid;reduces $his devotion.@@
		<<set $activeSlave.devotion -= 5>>
		<<if canPenetrate($activeSlave)>>
			<<run seX($activeSlave, "penetrative", "slaves", "anal")>>
		<<else>>
			<<run seX($activeSlave, "oral", "slaves", "penetrative", 2)>>
		<</if>>
	<</replace>>
<</link>>

<<case "birthday">>

<<link "Bake $him a cake">>
	<<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 hand<<if hasBothArms($activeSlave)>>s<</if>> spreading $his buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>."
			<<= VCheck.Both($activeSlave, 1)>>
		<<elseif canDoVaginal($activeSlave)>>
			$his hand<<if hasBothArms($activeSlave)>>s<</if>> spreading $his buttocks; $his pussy moist and inviting. "Take me, <<Master>>."
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave)>>
			$his hand<<if hasBothArms($activeSlave)>>s<</if>> spreading $his buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>."
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			hand<<if hasBothArms($activeSlave)>>s<</if>> to $his breasts, and mouth wide open. "To <<if canTaste($activeSlave)>>ta<<s>>te you<<else>>have you in<<s>>ide me<</if>>, <<Master>>."
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		$He feels so much @@.hotpink;closer to you@@ than before.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.vagina == 0 && $activeSlave.anus == 0)>> //This option will take $his virginities//<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina == 0>> //This option will take $his virginity//<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
<br><<link "Teach $him a new meaning of birthdays">>
	<<replace "#result">>
		You explain at length that $he will feel this way once a year, and that this day is special. On the day that makes $him feel this way, $he is to cover $his nipples with whipped cream, add a pattern with chocolate syrup, garnish each with a cherry, and present $himself to $his <<= getWrittenTitle($activeSlave)>>. $He nods in understanding and gets to work. When $he's done, you help $him reach the confection on $his left breast $himself while you eat the one on $his right. When you're done, $he @@.hotpink;kisses you impulsively.@@ $He tastes like whipped cream and chocolate.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Punish $him for making a mess">>
	<<replace "#result">>
		$He begs your forgiveness and quickly cleans up the food and candles. $He can't seem to shake the feeling that @@.mediumorchid;something is wrong with this.@@
		<<set $activeSlave.devotion -= 5>>
	<</replace>>
<</link>>

<<case "inconvenient labia">>

<<link "Let $him have labiaplasty to resolve the issue">>
	<<replace "#result">>
		When you assent, $he cheers up immediately, looking remarkably happy for a $girl who's just learned $his vagina is about to have a surgical operation performed on it. Then again, having those huge pussylips constantly getting in $his way when $he runs must be extremely uncomfortable, so it's not shocking $he would consider a radical solution to $his problem. When $he exits the remote surgery, $he looks @@.health.dec;sorer than ever,@@ of course, but $he @@.hotpink;smiles gratefully@@ at you the next time $he <<if canSee($activeSlave)>>sees<<else>>meets<</if>> you, and lets you know $he's really looking forward to recovering enough for $him to take $his beloved <<= getWrittenTitle($activeSlave)>> into $his @@.orange;newly streamlined cunt.@@
		<<set $activeSlave.devotion += 4, $activeSlave.labia = 0>>
		<<run surgeryDamage($activeSlave, 10)>>
	<</replace>>
<</link>>
<<if canDoVaginal($activeSlave)>>
	<br><<link "Let $him know $he's got a wonderful vagina">>
		<<replace "#result">>
			By way of an answer, you embrace $him and give $him a deep kiss on $his
			<<if $activeSlave.lips > 70>>
				enormous
			<<elseif $activeSlave.lips > 40>>
				pillowlike
			<<elseif $activeSlave.lips > 20>>
				big
			<<else>>
				pretty
			<</if>>
			lips, spreading a blush across $his $activeSlave.skin cheeks. Your hands rove down $his
			<<if $activeSlave.belly >= 1500>>
				<<if $activeSlave.bellyPreg >= 1500>>
					pregnant
				<<else>>
					swollen
				<</if>>
			<<elseif $activeSlave.weight > 190>>
				expansive
			<<elseif $activeSlave.weight > 160>>
				ponderous
			<<elseif $activeSlave.weight > 130>>
				big, soft
			<<elseif $activeSlave.weight > 95>>
				plump
			<<elseif $activeSlave.weight > 10>>
				plush
			<<elseif $activeSlave.weight < -10>>
				thin
			<<else>>
				nice
			<</if>>
			body, coming to rest on $his
			<<if $activeSlave.butt > 15>>
				immeasurable
			<<elseif $activeSlave.butt > 10>>
				mind-blowing
			<<elseif $activeSlave.butt > 7>>
				spectacular
			<<elseif $activeSlave.butt > 5>>
				magnificent
			<<elseif $activeSlave.butt > 3>>
				rounded
			<<else>>
				tight
			<</if>>
			butt. You hug $him up and into you, crushing $his <<if $activeSlave.boobs > 2000>>titanic<<elseif $activeSlave.boobs > 800>>big<<else>>small<</if>> breasts against
			<<if $PC.boobs >= 1400>>
				your enormous <<if $PC.boobsImplant != 0>>balloons<<else>>bust<</if>>.
			<<elseif $PC.boobs >= 1200>>
				your huge <<if $PC.boobsImplant != 0>>balloons<<else>>bust<</if>>.
			<<elseif $PC.boobs >= 1000>>
				your big <<if $PC.boobsImplant != 0>>balloons<<else>>bust<</if>>.
			<<elseif $PC.boobs >= 300>>
				yours.
			<<elseif $PC.title == 0>>
				your flat ones.
			<<else>>
				your manly chest.
			<</if>>
			Before long being kissed and held by $his beloved <<= getWrittenTitle($activeSlave)>> has $him playing the slut in your arms, and $he backs against the wall before wrapping $his legs around your middle to bring $his pussy against your
			<<if $PC.dick == 0>>
				own.<<if $activeSlave.belly >= 5000>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He moans in pain as you scissor against $his sore pussy,
			<<else>>
				stiff prick.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He gasps in pain as you press past $his sore pussylips,
			<</if>>
			but before long $he's grinding against you with $his back propped against the wall, using the embrace of $his strong legs to provide the power for a vigorous fuck. When $he finally slides down the wall to stand again, a look of @@.hotpink;profound pleasure@@ on $his face, $he lets you know that $he understands your meaning and that $he'll put up with sore petals, since $his <<= getWrittenTitle($activeSlave)>> prefers $him that way.
			<<= VCheck.Vaginal($activeSlave, 1)>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<</if>>

<<case "restricted smart">>

<<link "Discuss $his future with $him">>
	<<replace "#result">>
		You announce matter-of-factly that $he's allowed to speak temporarily, and that you'll be discussing where $he is and where $he sees $himself in the near future. $He's disconcerted by the subject but so desperate for conversation that $he's overjoyed anyway.
		"I under<<s>>tand what you're doing, <<Master>>," $he <<say>>s forthrightly. "I'm to be broken down into a devoted <<s>>lave." $He looks thoughtful. "I'll help you with that. It'll be ea<<s>>ier if I do, won't it?" $He looks up, and you <<if canSee($activeSlave)>>nod in affirmation<<else>>acknowledge $him<</if>>; $he gives you a rueful smile. "A good <<s>>lut would offer to give you oral now, I think. <<S>>o, <<Master>>, may I plea<<s>>e be allowed to <<if $PC.dick == 0>>lick your pu<<ss>>y<<else>><<s>>uck your cock<</if>>?"
		You <<if canSee($activeSlave)>>nod<<else>>acknowledge<</if>>, and tell $him that the rules are back in effect. As
		<<if isAmputee($activeSlave)>>
			you get $his helpless form into position,
		<<elseif $activeSlave.belly >= 300000>>
			$he struggles to get into position with $his _belly stomach in the way,
		<<elseif $activeSlave.belly >= 10000>>
			$he gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form to <<if hasBothLegs($activeSlave)>>its knees<<else>>the ground<</if>>,
		<<else>>
			$he gets down on <<if hasBothLegs($activeSlave)>>$his knees<<else>>the ground<</if>>,
		<</if>>
		$he @@.hotpink;focuses on the task@@ in front of $him with all $his considerable intelligence, clearly having decided to make things easier on $himself by conforming to $his new life.
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Let $him talk during a rough buttfuck">>
		<<replace "#result">>
			You
			<<if isAmputee($activeSlave)>>
				lay $his fuckpuppet torso across
			<<elseif $activeSlave.belly >= 5000>>
				tip $his <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto
			<<else>>
				push $him backwards onto
			<</if>>
			your desk, groping $his
			<<if $activeSlave.butt > 15>>
				absurd
			<<elseif $activeSlave.butt > 10>>
				immense
			<<elseif $activeSlave.butt > 7>>
				huge
			<<elseif $activeSlave.butt > 4>>
				big
			<<elseif $activeSlave.butt > 1>>
				moderate
			<<else>>
				meager
			<</if>>
			butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a couple of fingers up<<else>>line your cock up with<</if>> $his
			<<if $activeSlave.anus > 2>>
				gaping
			<<elseif $activeSlave.anus > 1>>
				sizable
			<<else>>
				tight
			<</if>>
			asshole. As you penetrate $him, you tell $him that the time to talk is now.
			<<if $activeSlave.anus > 2>>
				To make the sex sufficiently uncomfortable, you <<if $PC.dick == 0>>finger fuck<<else>>dick<</if>> $him without mercy.
			<<elseif $activeSlave.anus > 1>>
				To make the sex sufficiently uncomfortable, you pull yourself out with every stroke, putting $him through initial anal penetration over and over.
			<<else>>
				$His butt is so tight that just a simple assfuck makes $him uncomfortable enough.
			<</if>>
			$He opens $his mouth, closes it again, grunts at the burning sensation of your rough use of $his poor ass, and then shuts up. You ask $him if $he's sure $he doesn't have anything to say, and $he makes $his one verbal comment of the day: "No, <<Master>>." $He understands the lesson here: fail to @@.hotpink;conform,@@ @@.gold;get assraped.@@ It's as simple as that.
			<<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoVaginal($activeSlave)>>
	<br><<link "Let $him try to talk during a vigorous fucking">>
		<<replace "#result">>
			You
			<<if isAmputee($activeSlave)>>
				lay $his fuckpuppet torso across
			<<elseif $activeSlave.belly >= 5000>>
				tip $his <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto
			<<else>>
				push $him backwards onto
			<</if>>
			your desk, groping $his
			<<if $activeSlave.butt > 15>>
				absurd
			<<elseif $activeSlave.butt > 10>>
				immense
			<<elseif $activeSlave.butt > 7>>
				huge
			<<elseif $activeSlave.butt > 4>>
				big
			<<elseif $activeSlave.butt > 1>>
				moderate
			<<else>>
				meager
			<</if>>
			butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a dildo into<<else>>line your cock up with<</if>> $his
			<<if $activeSlave.anus > 2>>
				gaping
			<<elseif $activeSlave.anus > 1>>
				sizable
			<<else>>
				tight
			<</if>>
			pussy. As you penetrate $him, you tell $him that the time to talk is now.
			<<if $activeSlave.vagina > 2>>
				To make the sex sufficiently overwhelming, you <<if $PC.dick == 0>>ram<<else>>dick<</if>> $him without mercy.
			<<elseif $activeSlave.vagina > 1>>
				To make the sex sufficiently overwhelming, you pull yourself out with every stroke, putting $him through initial penetration over and over.
			<<else>>
				$His cunt is so tight that just a simple fucking overwhelms $him with pleasure.
			<</if>>
			$He opens $his mouth, closes it again, groaning at the sensation of your rough use of $his body, and then stops trying. You ask $him if $he's sure $he doesn't have anything to say, and $he lets off an orgasmic moan. There's @@.hotpink;no need to talk@@ when your owner is @@.mediumaquamarine;fucking your brains out.@@
			<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>>
<</if>>

<<case "restricted profession">>

<<link "Let $him speak briefly if $he's very quiet">>
		<<replace "#result">>
		You stand up from your desk and approach $him very closely without touching $him. Looking straight
		<<if hasAnyEyes($activeSlave)>>
			into $his eye<<if hasBothEyes($activeSlave)>>s<</if>>,
			which are
			<<if canSee($activeSlave)>>
				fixed helplessly on you,
			<<else>>
				gazing in your general direction,
			<</if>>
		<<else>>
			at $him,
		<</if>>
		you tell $him that you'll let $him say whatever it is $he needs to say to you, but only if $he's very quiet. $He <<if canSee($activeSlave)>>looks at you with huge eyes but<</if>> nods vigorously. $He waits until you lean into $him, making $him shiver at your proximity, before putting $his
		<<if $activeSlave.lips > 70>>
			ridiculous
		<<elseif $activeSlave.lips > 40>>
			enormous
		<<elseif $activeSlave.lips > 20>>
			pillowlike
		<<else>>
			girlish
		<</if>>
		lips next to your ear and whispering nervously, "I love you, <<Master>>." $He recoils a little as if burned by the audacity of $his words, but only manages to back off a little before you gather $his
		<<if isAmputee($activeSlave)>>
			limbless
		<<elseif $activeSlave.bellyPreg >= 1500>>
			gravid
		<<elseif $activeSlave.belly >= 1500>>
			_belly
		<<else>>
			rocking
		<</if>>
		torso into your arms, holding the back of $his head with one hand and rubbing $his quivering back with the other. Eventually, $he relaxes into
		<<if ($PC.boobs >= 300)>>
			<<if $PC.boobsImplant != 0>>
				your fake breasts,
			<<else>>
				your soft chest,
			<</if>>
		<<else>>
			you,
		<</if>>
		knowing that $his <<= getWrittenTitle($activeSlave)>> can never and will never reciprocate, but @@.hotpink;accepting@@ that the loving physical contact is a tremendously kind gesture for a master to make.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Make $him say it in public">>
	<<replace "#result">>
		Since you suspect you know what it is $he wants to say, you <<if !hasAnyLegs($activeSlave)>>carry $him out<<elseif hasAnyArms($activeSlave)>>lead $him by the hand<<else>>have $him follow you<</if>> onto the club, busy with citizens. You tell $him quietly that $he's to shout whatever it is $he wanted to say, if it's something everyone should hear; otherwise $he's to keep it to $himself. $He <<if canSee($activeSlave)>>looks around<<elseif canHear($activeSlave)>>listens<<else>>opens $his mouth<</if>> nervously, $his $activeSlave.skin skin betraying a growing blush, before clearing $his throat twice, licking $his lips, and howling "I LOVE MY _shoutitoutloud" at the tops of $his lungs. When this is out of $him $he collapses a little, as though the pressure of holding it inside were propping $him up. This attracted a considerable amount of attention, almost all of it @@.green;positive,@@ with many passersby laughing at the fun, and your fellow slaveowners giving you discreet winks and quiet congratulations.
		<<run repX(750, "event", $activeSlave)>>
	<</replace>>
<</link>>
<br><<link "Keep $him quiet but spend some time with $him">>
	<<replace "#result">>
		You announce that you're finished with business for the day, and feel like some quiet time. $He cannot keep <<if canSee($activeSlave)>>a gleam of humor out of $his eye<<else>>the corners of $his lips from rising slightly<</if>> at <<if canHear($activeSlave)>>hearing<<else>>the phrase<</if>> 'quiet time,' and $he <<if !hasAnyLegs($activeSlave)>>presents $himself to be carried<<else>>follows you<</if>> happily enough. When $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> you're headed to your bedroom $he begins to anticipate $his <<= getWrittenTitle($activeSlave)>>'s <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, but is surprised to find that instead of using $him you simply
		<<if isAmputee($activeSlave)>>
			place $him in bed and curl up around $his limbless torso.
		<<elseif $activeSlave.bellyPreg >= 5000>>
			help $him into bed and curl up with $him, your arms encircling $his prominent baby bump.
		<<elseif $activeSlave.belly >= 5000>>
			help $him into bed and curl up with $him, your arms encircling $his _belly dome of a middle.
		<<else>>
			climb into bed and pull $him under the sheets with you.
		<</if>>
		$He's almost disappointed, but after looking into your resting face for a while, nestles $his head onto your broad chest and goes to sleep with a @@.hotpink;look of contentment@@ on $his face. When the two of you wake from your brief nap, you ask $him if $he has anything else to communicate to you. $He smiles sleepily and shakes $his head no.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>

<<case "a gift">>

<<link "That's nice">>
	<<replace "#result">>
		It's not just a feeling. However, slapping slaves for idiotic devotion isn't wise, since the idiotic part of idiotic devotion is less important than the devotion part. You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, feeling relieved but foolish. When $he's gone, you direct another slave to return the napkin to its proper place.
	<</replace>>
<</link>>
<br><<link "These slaves clearly have too much time on their hands">>
	<<replace "#result">>
		<<if $HeadGirlID != 0>>
			<<setLocalPronouns _S.HeadGirl 2>>
		<</if>>
		You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, and once $he's gone, you <<if $HeadGirlID != 0>>have $assistant.name pass a note to your Head Girl instructing _him2<<else>>instruct $assistant.name<</if>> to tighten up your slaves' schedules, since you feel that they have too much time on their hands. Then you direct another slave to return the napkin to its proper place. Your slaves find their spare moments occupied by household minutiae during the coming week, @@.yellowgreen;saving you some money@@ on penthouse and slave upkeep.
		<<run cashX(2000, "event", $activeSlave)>>
	<</replace>>
<</link>>
<<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">>
	<br><<link "Give $him something in return">>
		<<setNonlocalPronouns $seeDicks>>
		<<replace "#result">>
			You thank $him, and tell $him you're considering what to give $him in return. $He looks flirty, and says,
			<<switch $activeSlave.fetish>>
			<<case "submissive">>
				<<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
					"Plea<<s>>e, would you hold me down and fuck me, <<Master>>?" $He drapes $himself submissively
					<<if $activeSlave.belly >= 300000>>
						over $his _belly middle,
					<<else>>
						over the couch,
					<</if>>
					lest you misunderstand. You could hold $him down and fuck $him, and you do.
					<<if canDoAnal($activeSlave)>>
						<<= VCheck.Anal($activeSlave, 1)>>
					<<else>>
						<<= VCheck.Vaginal($activeSlave, 1)>>
					<</if>>
				<<else>>
					"Plea<<s>>e, would you hold me down and <<if $PC.dick != 0>>fuck my throat<<else>>grind again<<s>>t my fa<<c>>e<</if>>, <<Master>>?" $He drapes $himself submissively
					<<if $activeSlave.belly >= 300000>>
						over $his _belly middle
					<<else>>
						over the couch
					<</if>>
					and opens wide, lest you misunderstand. You could hold $him down and <<if $PC.dick != 0>>facefuck $him<<else>>make $him eat you out<</if>>, and you do.
					<<run seX($activeSlave, "oral", $PC, "penetrative")>>
				<</if>>
			<<case "cumslut">>
				"Plea<<s>>e, may I <<if $PC.dick != 0>>give you a blowjob<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>, <<Master>>?" $He
				<<if $activeSlave.belly >= 300000>>
					leans onto $his _belly middle
				<<elseif $activeSlave.belly >= 10000>>
					gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body to its knees
				<<else>>
					gets down on $his knees
				<</if>>
				and licks $his lips, lest you misunderstand. You could let $him <<if $PC.dick != 0>>give you a blowjob<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>>, and you do.
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<<case "humiliation">>
				<<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>>
					"Plea<<s>>e, would you fuck me in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could fuck $him in public, and you do.
					<<if canDoAnal($activeSlave)>>
						<<= VCheck.Anal($activeSlave, 1)>>
					<<else>>
						<<= VCheck.Vaginal($activeSlave, 1)>>
					<</if>>
				<<else>>
					"Plea<<s>>e, may I <<if $PC.dick != 0>>give you a blowjob<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>> in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could <<if $PC.dick != 0>>give you a blowjob<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>eat you out<</if>> in public, and you do.
					<<run seX($activeSlave, "oral", $PC, "penetrative")>>
				<</if>>
			<<case "buttslut">>
				<<if canDoAnal($activeSlave)>>
					"Plea<<s>>e, would you fuck my butt, <<Master>>?" $He turns halfway and shakes $his rear enticingly, lest you misunderstand. You could fuck $his butt, and you do.
					<<= VCheck.Anal($activeSlave, 1)>>
				<<else>>
					"Plea<<s>>e, would you play with my butt, <<Master>>?" $He turns halfway and shakes $his rear enticingly, lest you misunderstand. You could play with $his butt, and you do, managing intercourse several ways without penetrating $him.
				<</if>>
			<<case "boobs">>
				"Plea<<s>>e, would you play with my boob<<s>>, <<Master>>?" $He sticks out $his chest and bounces $his breasts for you, lest you misunderstand. You could play with $his boobs, and you do, managing mammary intercourse several ways.
				<<run seX($activeSlave, "mammary", $PC, "penetrative", 3)>>
			<<case "pregnancy">>
				<<if ($activeSlave.toyHole == "dick" || $policies.sexualOpenness == 1) && canPenetrate($activeSlave) && $PC.vagina != -1>>
					<<if canGetPregnant($PC)>>
						"Plea<<s>>e, can I try to get you pregnant, <<Master>>?" $His eyes are glued to your middle. You could let $him seed you, and you do, enjoying the feeling of $his hot cum jetting into your fertile pussy.
						<<if canImpreg($PC, $activeSlave)>>
							<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
						<</if>>
					<<elseif $PC.belly >= 1500>>
						"Plea<<s>>e, could I play with your pregnan<<c>>y while I fuck you, <<Master>>?" $His eyes are glued to your gravid middle. You could let $him play with your pregnancy, and you do, enjoying $his fondling as $he fucks your pussy.
					<<else>>
						"Plea<<s>>e, would you pretend to be pregnant with my baby, <<Master>>?" $His eyes are glued to your middle. You could play pretend with $him, and you do,
						<<if isItemAccessible.entry("a small empathy belly", "bellyAccessory")>>
							strapping an empathy belly on yourself before bending over for $him.
						<<else>>
							tossing on a camisole and sticking a pillow under it before bending over for $him.
						<</if>>
					<</if>>
					<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
				<<else>>
					<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
						"Plea<<s>>e, would you <<if $PC.dick != 0>>fill me with your <<s>>eed<<else>>fuck me<</if>>, <<Master>>?" $He reclines on the couch and offers $himself to you, lest you misunderstand. You could <<if $PC.dick != 0>>fill $him with your seed<<else>>fuck $him<</if>>, and you do.
						<<if canDoVaginal($activeSlave)>>
							<<= VCheck.Vaginal($activeSlave, 1)>>
						<<else>>
							<<= VCheck.Anal($activeSlave, 1)>>
						<</if>>
					<<elseif $activeSlave.pregKnown == 1>>
						"Plea<<s>>e, would you play with my pregnan<<c>>y, <<Master>>?" $He pokes out $his belly and sways it enticingly, lest you misunderstand. You could play with $his pregnancy, and you do, managing to get off several ways.
					<<else>>
						"Plea<<s>>e, would you pretend that I'm pregnant with your baby, <<Master>>?" $He pokes out $his belly and sways it enticingly, lest you misunderstand. You could play pretend with $him, and you do,
						<<if isItemAccessible.entry("a small empathy belly", "bellyAccessory")>>
							strapping an empathy belly on $him before feeling $him up.
						<<else>>
							tossing $him a camisole and a pillow before feeling $him up.
						<</if>>
					<</if>>
				<</if>>
			<<case "dom">>
				<<if ($activeSlave.toyHole == "dick" || $policies.sexualOpenness == 1) && canPenetrate($activeSlave)>>
					"Plea<<s>>e, could I bang you, <<Master>>?" $He bounces on $his heels, rock-hard and biting $his lip with anticipation. You could let $him fuck your brains out, and you do, enjoying playing the sub for once.
					<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
					<<if canImpreg($PC, $activeSlave)>>
						<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
					<</if>>
				<<else>>
					"Plea<<s>>e, would you fuck my brain<<s>> out, <<Master>>?" $He bounces on $his heels, biting $his lip with anticipation. You could fuck $his brains out, and you do, enjoying the dominant slave's constant sexual one-upmanship.
					<<if canDoVaginal($activeSlave)>>
						<<= VCheck.Vaginal($activeSlave, 1)>>
					<<elseif canDoAnal($activeSlave)>>
						<<= VCheck.Anal($activeSlave, 1)>>
					<<else>>
						<<run seX($activeSlave, "oral", $PC, "penetrative")>>
					<</if>>
				<</if>>
			<<case "sadist">>
				<<if ($activeSlave.toyHole == "dick" || $policies.sexualOpenness == 1) && canPenetrate($activeSlave)>>
					"Plea<<s>>e, can I pretend to rape you, <<Master>>?" $His eyes are wild. You could let $him rape you, and you do, pretending to go about your day until $he shoves you onto the couch and roughly fucks your
					<<if $PC.vagina != -1>>
						pussy.
						<<if canImpreg($PC, $activeSlave)>>
							<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
						<</if>>
					<<else>>
						ass.
					<</if>>
				<<else>>
					"Plea<<s>>e, would you let me rape <<s>>omeone, <<Master>>?" $His eyes are wild. You could let $him rape someone, and you do, bringing in an appropriate slave and letting $him have $his way with the poor _girlU.
				<</if>>
				<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
			<<case "masochist">>
				<<if ($activeSlave.toyHole == "dick" || $policies.sexualOpenness == 1) && canPenetrate($activeSlave)>>
					"Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and riding $him through so many orgasms that $he begs for mercy.
					<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
					<<if canImpreg($PC, $activeSlave)>>
						<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
					<</if>>
				<<else>>
					"Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and fucking $him so hard $he begs for mercy as $he orgasms.
					<<if canDoVaginal($activeSlave)>>
						<<= VCheck.Vaginal($activeSlave, 1)>>
					<<elseif canDoAnal($activeSlave)>>
						<<= VCheck.Anal($activeSlave, 1)>>
					<<else>>
						<<run seX($activeSlave, "oral", $PC, "penetrative")>>
					<</if>>
				<</if>>
			<<default>>
				"I forgot what my feti<<sh>> i<<s>>, but I think it i<<s>> //<<print $activeSlave.fetish>>//; plea<<s>>e report thi<<s>> after you u<<s>>e me."
			<</switch>>
			<<if ($activeSlave.fetishStrength > 95)>>
				This is very close to $his dream of the ideal sexual encounter, and getting rewarded for such devoted behavior with pleasure on such a level encourages $him to @@.mediumaquamarine;trust you.@@
				<<set $activeSlave.trust += 5>>
			<<else>>
				It isn't exactly an old world romance, but sharing this with you @@.lightcoral;advances $his fetish.@@ In the Free Cities, it will do for romance.
				<<set $activeSlave.fetishStrength += 4>>
			<</if>>
			When $he's gone, you direct another slave to return the napkin to its proper place.
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option may take $his virginity//<</if>>
<</if>>
<br><<link "$He's already gift enough">>
	<<replace "#result">>
		You smile gently at $him and tell $him to put $his gift down on your desk. $He does, looking doubtful, but then you thank $him, going on to say that it was very nice of $him to have the thought, but $he's already gift enough. $He looks momentarily confused, but you continue, describing $his body in rhapsodic terms, lingering on $his
		<<if ($activeSlave.boobs > 5000)>>
			gargantuan tits
		<<elseif ($activeSlave.butt > 5)>>
			massive ass
		<<elseif ($activeSlave.face > 40)>>
			model's face
		<<elseif $activeSlave.bellyPreg > 1500>>
			rounded pregnancy
		<<elseif $activeSlave.belly > 1500>>
			_belly belly
		<<elseif ($activeSlave.muscles > 30)>>
			ripped abs
		<<elseif ($activeSlave.weight > 10)>>
			plush belly
		<<else>>
			nice butt
		<</if>>
		and
		<<if ($activeSlave.boobs < 500)>>
			cute chest.
		<<elseif ($activeSlave.butt < 3)>>
			cute rear.
		<<elseif ($activeSlave.anus > 1)>>
			wonderful butthole.
		<<elseif ($activeSlave.clit > 1)>>
			cute clit.
		<<elseif ($activeSlave.waist < -10)>>
			wasp waist.
		<<elseif $activeSlave.nipples == "fuckable">>
			fuckable chest.
		<<else>>
			nice nipples.
		<</if>>
		$He blushes more and more furiously as you continue, alternately <<if canSee($activeSlave)>>glancing back down at $his feet and stealing looks at you, @@.hotpink;adoration@@ in $his eyes<<else>>facing $his feet and facing you, @@.hotpink;adoration@@ on $his face<</if>>. When $he's gone, you direct another slave to return the napkin to its proper place.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<<if ndef $activeSlave.napkin>>
	<br><<link "Place it in your display case">>
		<<replace "#result">>
			You thank $him kindly, and hold out your hand. $He places $his creation in your hands with something like reverence. You enter a secure command on your desk, and the display case behind you slides open. You place the folded napkin in its own little place within. $activeSlave.slaveName watches incredulously, unable to believe what you're doing. When $he finally processes it, $he bursts into inelegant tears. Cuffing them away from $his eyes and sniffling, $he tells you @@.hotpink;$he loves you.@@
			<<set $activeSlave.devotion += 4, $activeSlave.napkin = 1>>
			<<set _napkin = "a cloth napkin skillfully folded into the shape of " + _napkin + " given to you by " + $activeSlave.slaveName>>
			<<set $trinkets.push(_napkin)>>
		<</replace>>
	<</link>>
<</if>>

<<case "mods please">>

<<link "Perform it yourself">>
	<<replace "#result">>
		You stand up from behind your desk and head towards the body modification studio, <<if canSee($activeSlave)>>crooking a finger at<<else>>calling<</if>> $him as you as you go. $He follows bouncily, thanking you profusely, and then thanking you again when it becomes apparent to $him that you intend to do the body art yourself. $He snuggles into the chair, relaxing as the restraints bind $him in. They're not really necessary to modify a willing $girl, never mind one this enthusiastic, but they could possibly prevent $him from flinching, and it's not like $he resents being bound at this point.
		<br><br>
		Manipulating the machine, you
		<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
			place the first piercing, eliciting a hum of mild pain and abject submission from $activeSlave.slaveName. The piercing session goes on and on, with the slave sinking into a boneless, mindless state in which $his being is completely in your hands. $He's almost sleepy when you finally release $him, but $he rises and <<if canSee($activeSlave)>>turns, craning around to see in the mirror<<else>>gingerly feeling around $his new piercings<</if>>. $He @@.hotpink;smiles devotedly,@@ and asks you when $he'll be healed enough that $he can be laced up.
			<<set $activeSlave.corsetPiercing = 1>>
		<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
			hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly,@@ and begs you to try $him out when $he's healed up.
			<<set $activeSlave.tonguePiercing = 2>>
		<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
			activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, inscribing the slave's status as a sex object on $his forehead. The pain is intense, but $he tolerates it, the tears running fast out of the corners of $his eyes and low groans rising out of $his throat. When $he's finally allowed to rise<<if canSee($activeSlave)>> and sees $himself in a mirror<<elseif canHear($activeSlave)>>and listens intently on your descriptions of $his new face<</if>>, $he blushes furiously and cries harder, knowing that $his status as a humiliation slut is now permanent. This culmination of $his deeply perverse sense of self @@.hotpink;draws $him closer to you.@@
			<<set $activeSlave.lipsTat = "degradation">>
		<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
			place a spreader to keep $his legs and cheeks apart and start piercing. $He whines with the pain, and then gasps when $he realizes that the piercing is going on much longer than $he expected. You give $him a couple of huge piercings below $his anus, big enough that $he'll never be free of them rubbing against $his slutty butthole. Not done yet, you put some small, smooth studs around it, just to make sure nobody can possibly misunderstand where to fuck this bitch. $He gets up gingerly, but @@.hotpink;smiling sluttily.@@
			<<set $activeSlave.anusPiercing = 2>>
		<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
			<<if ($activeSlave.nipples.includes("inverted"))>>
				use a couple of its actuators to stimulate $his nipples until they're almost all the way protruded, and then direct them to pull them out all the way. $He screams wholeheartedly at the pain, yelling on and on until $he's out of breath and relaxes against the restraints, gasping and crying.
			<<else>>
				use its actuators to pull $his nipples out as far as they will go, forcing a gasp of pain out of $him.
			<</if>>
			$He expects a simple nipple piercing, one for each boob; what $he gets is a set of heavy rings in each nipple. $He's no masochist, so the pleasure will come later, but $he moans as $he feels the gradual addition of weight to $his nipples. $He rises very carefully, trying to keep $his boobs still, and @@.hotpink;smiles devotedly@@ at you. Soon enough, $he'll be able to orgasm by walking.
			<<set $activeSlave.nipplesPiercing = 2>>
		<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
			<<if $activeSlave.belly >= 10001>>
				hold $his _belly stomach steady and pierce $his navel with the largest, heaviest ring available. There is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> as $he feels the new weight settle against $his middle. $He rises very carefully, trying to keep $his new piercing from moving, and @@.hotpink;smiles devotedly@@ at you. Soon enough, all eyes will be on $his belly as $he waddles by.
				<<set $activeSlave.navelPiercing = 2>>
			<<else>>
				activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, beautifying $his <<if $activeSlave.belly >= 150>> _belly stomach<<else>>abdomen<</if>> with an inducement to fuck $him.
				<<if canSee($activeSlave)>>
					<<if $activeSlave.belly >= 5000>>
						$He can't see what you are inking into the underside of $his belly, but $he tries anyway.
					<<else>>
						$He's just able to crane $his head enough to see the work, and eagerly watches.
					<</if>>
					When you're done, $he stares at $himself for a long time,
				<<else>>
					Once you finish $his new tattoo, you describe it to $him in detail. $He pauses for a moment,
				<</if>>
				a curiously mixed expression on $his face. This is $his life now; it's permanently written on $him, and @@.hotpink;$he knows it.@@
				<<set $activeSlave.vaginaTat = "degradation">>
			<</if>>
		<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
			activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, making the side of $his face fierce with tribal patterns. Tattooing over such thin and sensitive skin is intensely painful, but $he tolerates it, permitting nothing but a low and continuing growl to escape. $He's obviously tired out by the pain when $he's finally allowed to rise, but $he <<if canSee($activeSlave)>>looks at $himself in the mirror<<elseif canHear($activeSlave)>>listens to your description<<else>>traces the design with $his fingertips<</if>> with @@.hotpink;obvious approval.@@
			<<set $activeSlave.lipsTat = "tribal patterns">>
		<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>>
			<<if canAchieveErection($activeSlave)>>
				take hold of $his most intimate parts and put a set of massive piercings straight through $his shaft. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to stick $his cock in anything, but $he's @@.hotpink;thankful enough.@@
				<<set $activeSlave.dickPiercing = 2>>
			<<elseif $activeSlave.dick > 0>>
				hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly;@@ $he looks eager to try out $his new piercing on a fresh pussy.
				<<set $activeSlave.tonguePiercing = 2>>
			<<else>>
				take hold of $his most intimate parts and put a set of massive piercings straight through $his pussylips. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to trib anything, but $he's @@.hotpink;thankful enough.@@
				<<set $activeSlave.vaginaPiercing = 2>>
			<</if>>
		<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
			take hold of $his most intimate parts and put a series of massive piercing straight through $his
			<<if $activeSlave.dick > 0>>
				shaft.
				<<set $activeSlave.dickPiercing = 2>>
			<<else>>
				pussylips.
				<<set $activeSlave.vaginaPiercing = 2>>
			<</if>>
			$He shrieks with agony and then orgasms as strongly as you've ever seen a slave climax, $his every fiber tensing against the restraints. For a long, long time $he has to work to breathe, the overstimulation clearing slowly. When you finally let $him up, $he hasn't remembered how to talk yet, but $his gaze says it for $him. It looks like $he's just had @@.hotpink;the best sex of $his life.@@
		<<else>>
			<<if ($activeSlave.nipples.includes("inverted"))>>
				use a couple of its actuators to stimulate $his nipples until they're almost all the way protruded, and then direct them to pull them out all the way. $He screams wholeheartedly at the pain, yelling on and on until $he's out of breath and relaxes against the restraints, gasping and crying.
			<<else>>
				use its actuators to pull $his nipples out as far as they will go, forcing a gasp of pain out of $him.
			<</if>>
			This done, you give $him a simple pair of barbell nipple piercings. The machine makes this take less time than it takes to describe it, and after a shocked squeal of pain $he's released. $He rises carefully, trying to keep $his boobs still, and @@.hotpink;smiles thankfully@@ at you. $He <<if canSee($activeSlave)>>glances at $himself in the mirror<<else>>listens to your description of $him<</if>>, looking pleased.
			<<set $activeSlave.nipplesPiercing = 1>>
		<</if>>
		<<set $activeSlave.devotion += 5>>
	<</replace>>
<</link>>
<br><<link "$He's beautiful just the way $he is">>
	<<replace "#result">>
		You tell $him firmly that $he's beautiful just the way $he is. $He blushes and giggles at the absurdly trite statement. You conclude the inspection, and $he continues on to the next item in $his life as a sex slave, @@.mediumaquamarine;pleased and reassured@@ that you have a plan for what $he should look like.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "No, and slaves should not make requests of this kind">>
	<<replace "#result">>
		You tell $him firmly that you don't intend to apply body modifications to $him, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about body modifications are yours alone.
		<<set $modRequestsAllowed = 0>>
	<</replace>>
<</link>>

<<case "injections please">>

<<link "Give $him the necessary injections">>
	<<replace "#result">>
		You load the injection gun you keep in your desk, and tap it repeatedly against the cooperative slave's
		<<if _injection == "boobs">>
			tits,
		<<elseif _injection == "butt">>
			rear end,
		<<elseif _injection == "lips">>
			lips,
		<<elseif _injection == "dick">>
			cock,
		<<elseif _injection == "dickMinus">>
			girly dick,
		<<elseif _injection == "balls">>
			sack,
		<<elseif _injection == "ballsMinus">>
			useless sack,
		<<elseif _injection == "clit">>
			clit,
		<</if>>
		producing a hiss each time as pressurized gas painlessly drives the drugs deep into $his tissues. $He leaves @@.hotpink;thanking@@ you profusely, massaging $himself in anticipation.
		<<set $activeSlave.devotion += 2>>
		Before the end of the week, $his
		<<if _injection == "boobs">>
			@@.lime;boobs have grown,@@ delighting $him.
			<<if ($activeSlave.markings == "freckles") || ($activeSlave.markings == "heavily freckled")>>
				$He proudly shows your other slaves $his breast growth by keeping track of the increasing distance between a couple of chosen freckles on the front of $his boobs.
			<</if>>
			The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<if $activeSlave.geneMods.NCS == 0>>
				<<set $activeSlave.boobs += 200>>
				<<run healthDamage($activeSlave, 10)>>
			<<else>>
				<<set $activeSlave.boobs += 100>>
				<<run healthDamage($activeSlave, 10)>>
			<</if>>
		<<elseif _injection == "butt">>
			@@.lime;buttocks have grown,@@ delighting $him.
			<<set $activeSlave.butt++>>
			The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<run healthDamage($activeSlave, 10)>>
		<<elseif _injection == "lips">>
			@@.lime;lips have swelled,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<set $activeSlave.lips += 10>>
			<<run healthDamage($activeSlave, 10)>>
		<<elseif _injection == "clit">>
			@@.lime;clit has grown,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<set $activeSlave.clit++>>
			<<run healthDamage($activeSlave, 10)>>
		<<elseif _injection == "dick">>
			@@.lime;cock has grown,@@ delighting $him.
			<<set $activeSlave.dick++>>
			<<if $activeSlave.balls < 5 && random(1,100) > 70>>
				As a side effect, $his @@.lime;balls have also swelled,@@ which $he sees as an added benefit.
				<<set $activeSlave.balls++>>
			<</if>>
			The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<run healthDamage($activeSlave, 10)>>
		<<elseif _injection == "dickMinus">>
			@@.orange;dick has shrunk,@@ delighting $him.
			<<set $activeSlave.dick-->>
			<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.dick > 1) && (random(1,100) > 50))>>
				<<set $activeSlave.dick-->>
			<</if>>
			<<if $activeSlave.balls > 1 && random(1,100) > 70>>
				As a side effect, $his @@.orange;balls have also atrophied,@@ which $he sees as an added benefit.
				<<set $activeSlave.balls-->>
				<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>>
					<<set $activeSlave.balls-->>
				<</if>>
			<</if>>
			The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<run healthDamage($activeSlave, 10)>>
		<<elseif _injection == "balls">>
			@@.lime;testicles have grown,@@ delighting $him. The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<set $activeSlave.balls++>>
			<<run healthDamage($activeSlave, 10)>>
		<<elseif _injection == "ballsMinus">>
			@@.orange;testicles have shrunk,@@ delighting $him. The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.health.dec;rather ill,@@ but $he is recovering normally.
			<<set $activeSlave.balls-->>
			<<run healthDamage($activeSlave, 10)>>
			<<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>>
				<<set $activeSlave.balls-->>
			<</if>>
		<</if>>
	<</replace>>
<</link>>
<<if $activeSlave.pregKnown == 1>>
	<br><<link "Not when you're pregnant">>
		<<replace "#result">>
			You tell $him that you would prefer not to inject your pregnant slaves with large doses of growth hormones, and $he must respect your judgment in this regard. $He leaves looking disappointed, but vows to return once $he has given birth. $He isn't satisfied with $his body, but @@.mediumaquamarine;trusts@@ that $his <<= getWrittenTitle($activeSlave)>> cares for $him and $his unborn child<<if $activeSlave.pregType > 1>>ren<</if>>'s health.
			<<set $activeSlave.trust++>>
		<</replace>>
	<</link>>
<</if>>
<br><<link "Decline">>
	<<replace "#result">>
		You tell $him that $he's better as $he is, and $he must respect your judgment in this regard. $He leaves looking more @@.hotpink;flattered@@ than disappointed. $He's less insecure in $his own body, and @@.mediumaquamarine;trusts@@ that $his <<= getWrittenTitle($activeSlave)>> has a plan for $him.
		<<set $activeSlave.devotion++, $activeSlave.trust++>>
	<</replace>>
<</link>>
<br><<link "No, and slaves should not make requests of this kind">>
	<<replace "#result">>
		You tell $him firmly that you don't intend to apply growth hormones to $him at the moment, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about asset size are yours alone.
		<<set $expansionRequestsAllowed = 0>>
	<</replace>>
<</link>>

<<case "dickgirl PC">>

<<link "Permit $him to serve you in a way $he'll be comfortable with">>
	<<replace "#result">>
		The poor $girl is having trouble with
		<<if $activeSlave.attrXY <= 35>>
			guys, so you decide to be kind to $him and play up your feminine side. You lift $his $activeSlave.skin chin with a soft touch, and kiss $him gently on the lips, pressing your breasts full against $his
			<<if $activeSlave.boobs > 5000>>
				titanic udders, which are squashed between you.
			<<elseif $activeSlave.boobs > 1000>>
				own lovely boobs.
			<<else>>
				chest.
			<</if>>
			You keep your hips cocked back and to the side, so that your rapidly stiffening dick stays clear of $him. Taking $his hands in your own, you guide them to your
			<<if $PC.boobs >= 1400>>
				enormous <<if $PC.boobsImplant != 0>>chest balloons<<else>>cow tits<</if>>.
			<<elseif $PC.boobs >= 1200>>
				huge<<if $PC.boobsImplant != 0>>, clearly fake<<else>>, heavy<</if>> breasts.
			<<elseif $PC.boobs >= 1000>>
				big<<if $PC.boobsImplant != 0>>, perky<</if>> breasts.
			<<elseif $PC.boobs >= 800>>
				generous breasts.
			<<elseif $PC.boobs >= 650>>
				handfilling breasts
			<<elseif $PC.boobs >= 500>>
				average breasts
			<<elseif $PC.boobs >= 300>>
				small breasts
			<</if>>
			<br><br>
			$He hesitates, clearly surprised that you're allowing $him to fondle you, but building arousal is making $him forget $his awkwardness and $he begins to play with your boobs in earnest. You direct $his fingers to your nipples, and $he obeys the nonverbal cue, devoting more attention to the <<if $PC.lactation > 0>>milky<<else>>hard<</if>>, sensitive nubs. Satisfied that $he's got the idea, you run your hands lightly down $his
			<<if $activeSlave.weight > 190>>
				voluminous
			<<elseif $activeSlave.belly >= 5000>>
				<<if $activeSlave.bellyPreg >= 3000>>
					gravid
				<<elseif $activeSlave.bellyImplant >= 3000>>
					rounded
				<<else>>
					swollen
				<</if>>
			<<elseif $activeSlave.weight > 30>>
				soft
			<<elseif $activeSlave.muscles > 30>>
				rock hard
			<<elseif $activeSlave.weight > 10>>
				plush
			<<elseif $activeSlave.muscles > 5>>
				toned
			<<else>>
				soft
			<</if>>
			body and give $his
			<<if $activeSlave.butt > 15>>
				obscene
			<<elseif $activeSlave.butt > 10>>
				absurd
			<<elseif $activeSlave.butt > 6>>
				monstrous
			<<elseif $activeSlave.butt > 3>>
				healthy
			<<else>>
				cute
			<</if>>
			buttocks a gentle massage.
			<br><br>
			$He has $his eyes closed, and is spared any indication that $he's petting and being petted by a person with a cock. $His arousal builds quickly, and so does yours. You resolve the situation by using a hand on each of you: you finish yourself off with practiced ease while giving $his
			<<if canDoVaginal($activeSlave)>>
				clit
			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				own erection
			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				fat member
			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				soft member
			<<elseif ($activeSlave.chastityPenis == 1)>>
				nipples
			<<elseif ($activeSlave.chastityVagina)>>
				nipples
			<<else>>
				soft perineum
			<</if>>
			some manual stimulation that tips $him over the edge. $He opens $his eyes slowly, @@.hotpink;grateful@@ that you were so merciful.
		<<elseif $activeSlave.attrXX <= 35>>
			girls, so you decide to be kind to $him and play up your masculine side. You grab the side of $his neck with a rough grip, and pull $him downward, forcing $him to $his knees. $He goes willingly, $his field of vision filling with your rapidly hardening member.
			<<if ($activeSlave.teeth == "removable")>>
				$He quickly pulls $his removable teeth out, getting ready to offer you $his soft facepussy.
			<<elseif ($activeSlave.teeth == "pointy")>>
				$He runs $his tongue over $his frightening teeth carefully, and then opens $his jaws wide, getting ready to keep $his fangs well clear of your shaft.
			<<elseif ($activeSlave.teeth == "fangs")>>
				$He runs $his tongue over $his fangs carefully, and then opens $his jaws wide, getting ready to keep $his teeth well clear of your shaft.
			<<elseif ($activeSlave.teeth == "fang")>>
				$He gets ready to take you from an angle to avoid $his fang meeting your member.
			<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
				$He runs $his tongue over $his braces, and then opens wide, mindful of keeping $his orthodontia clear of your shaft.
			<<elseif ($activeSlave.teeth == "gapped")>>
				$He runs $his tongue across the gap in $his front teeth and opens wide.
			<</if>>
			$He takes you into $his mouth without hesitation, and keeps $his eyes closed. $He visibly concentrates all $his attention on your dick, ignoring the breasts that are starting to bounce right over $his head as you begin rocking your hips with enjoyment.
			<br><br>
			You run a possessive hand through $his $activeSlave.hColor hair, and let $him know what a good little cocksucker $he is. $He moans submissively in response, and the humming feels so wonderful that you order $him to do it again. Knowing that you're being nice to $him by letting $his ignore your more feminine characteristics for the moment, $he does $his best to please you, humming as best $he can and using both hands to pleasure your base and balls. You blow your load down $his throat, and $he swallows it all. $He opens $his eyes slowly, @@.mediumaquamarine;relieved@@ that you were so merciful.
		<</if>>
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Force $him to get off to all of you">>
	<<replace "#result">>
		The closeminded $girl is having trouble with
		<<if $activeSlave.attrXY <= 35>>
			guys, so $he gets to spend some quality time with your dick. You walk into $him, running into the surprised slave, driving $him backward into the far wall. You kiss $him, pinch $him, and grope $him roughly the whole time, pressing your breasts maliciously against $his
			<<if $activeSlave.boobs > 5000>>
				titanic udders, which are squashed between you.
			<<elseif $activeSlave.boobs > 1000>>
				own lovely boobs.
			<<else>>
				chest.
			<</if>>
			When $his
			<<if $activeSlave.butt > 15>>
				obscene
			<<elseif $activeSlave.butt > 10>>
				absurd
			<<elseif $activeSlave.butt > 6>>
				monstrous
			<<elseif $activeSlave.butt > 3>>
				healthy
			<<else>>
				cute
			<</if>>
			buttocks crash against the wall, you smash yourself against $him. $He shudders involuntarily as $he feels your stiffening dick between you<<if $activeSlave.belly >= 5000>> and $his rounded stomach<</if>>, and then again as it rapidly achieves full hardness, crushed between your warm bodies.
			<br><br>
			Making out with $him so insistently that $he's short of breath, you begin to hump yourself against $him, sliding your prick against $his <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>><</if>><</if>>belly, thighs, and
			<<if canDoVaginal($activeSlave)>>
				labia.
			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				own dick.
			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				fat cock.
			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				limp member.
			<<elseif ($activeSlave.chastityPenis == 1)>>
				caged dick.
			<<elseif ($activeSlave.chastityVagina)>>
				chastity belt.
			<<else>>
				soft perineum.
			<</if>>
			$He shudders uncomfortably as $he realizes that $he's getting aroused, $his
			<<if $activeSlave.vagina > -1>>
				pussy moistening
			<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				dick hardening
			<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				dick struggling to engorge
			<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
				girldick starting to ooze precum
			<<elseif ($activeSlave.chastityPenis == 1)>>
				chastity cage growing ever tighter
			<<else>>
				tiny front hole starting to ooze precum
			<</if>>
			from the stimulation, despite $his lack of appetite for cock.
			<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
				$He knows what's coming when you push $him
				<<if $activeSlave.belly >= 300000>>
					over $his _belly stomach,
				<<else>>
					to $his knees,
				<</if>>
				and does $his best to relax.
				<br><br>
				$He screws $his eyes shut tight and $his mouth tighter as you prod at $his face with your member. Tiring of $his reluctance, you give $him a brusque order to open $his eyes and gaze upon the dick $he will soon be deepthroating. $He obeys, but unwillingly, and steadies $himself to take its length. You tell $him to do $his best to watch, and begin thrusting. $He groans from the internal fullness and sexual confusion. $He stares as best $he can at your penis, transfixed by the sight of it thrusting into $his mouth and the feeling of $his lips around its girth.
				<br><br>
				$He slips a hand to $his crotch, $his arousal overwhelming $his preferences. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, holding back to $his point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $his mouth, and your obvious pleasure force $him over the edge, and $he comes so hard that $he chokes on your cock. You pull out of $him, and $he struggles to catch $his breath, the action sending a blob of $his owner's semen running down $his chin.
				<<run seX($activeSlave, "oral", $PC, "penetrative", 7)>>
			<<elseif $activeSlave.belly >= 10000>>
				$He knows what's coming when you push $him
				<<if $activeSlave.belly >= 300000>>
					over $his _belly stomach,
				<<else>>
					to $his knees,
				<</if>>
				and does $his best to relax.
				<br><br>
				$He screws $his eyes shut tight as you maneuver yourself inside $his
				<<if canDoVaginal($activeSlave)>>
					<<if $activeSlave.vagina > 2>>
						cavernous cunt.
					<<elseif $activeSlave.vagina > 1>>
						welcoming pussy.
					<<else>>
						tight flower.
					<</if>>
				<<else>>
					<<if $activeSlave.anus > 2>>
						unresisting asspussy.
					<<elseif $activeSlave.anus > 1>>
						welcoming butthole.
					<<else>>
						tight anus.
					<</if>>
				<</if>>
				Once you're situated, you give $him a brusque order to open $his eyes and look behind $him. $He obeys, but unwillingly, bending as best $he can to see how physically close you are. $He can't see where it enters $his
				<<if canDoVaginal($activeSlave)>>
					womanhood,
				<<else>>
					bowels,
				<</if>>
				but $he's very aware of it. You tell $him to do $his best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Turned as much as $he can, $he stares, transfixed by the sight of you thrusting into $his body.
				<<if canDoVaginal($activeSlave)>>
					<<= VCheck.Vaginal($activeSlave, 7)>>
				<<else>>
					<<= VCheck.Anal($activeSlave, 7)>>
				<</if>>
				<br><br>
				You snake a hand under $him and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily against you. You release $him, and $he barely manages to catch $himself from collapsing, the motion sending a blob of $his owner's semen running down $his thigh.
			<<else>>
				$He knows what's coming when you pin $his torso even harder and reach down to pull $his knees up to clasp you around your waist, and does $his best to relax.
				<br><br>
				$He screws $his eyes shut tight as you maneuver yourself inside $his
				<<if canDoVaginal($activeSlave)>>
					<<if $activeSlave.vagina > 2>>
						cavernous cunt.
					<<elseif $activeSlave.vagina > 1>>
						welcoming pussy.
					<<else>>
						tight flower.
					<</if>>
				<<else>>
					<<if $activeSlave.anus > 2>>
						unresisting asspussy.
					<<elseif $activeSlave.anus > 1>>
						welcoming butthole.
					<<else>>
						tight anus.
					<</if>>
				<</if>>
				Once you're confident your member is properly seated inside $him, and you won't drop $him, you give $him a brusque order to open $his eyes and look down. $He obeys, but unwillingly, bending as best $he can to look at the base of your dick where it
				<<if canDoVaginal($activeSlave)>>
					enters $his womanhood.
				<<else>>
					disappears beneath
					<<if canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
						$his own erect cock.
					<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
						$his own dangling cock.
					<<elseif ($activeSlave.chastityPenis == 1)>>
						$his chastity.
					<<else>>
						$him. $He can't see where it enters $his bowels, but $he's very aware of it.
					<</if>>
				<</if>>
				You tell $him to do $his best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Bent almost in half, $he stares, transfixed by the sight of your penis delving inside $his body.
				<<if canDoVaginal($activeSlave)>>
					<<= VCheck.Vaginal($activeSlave, 7)>>
				<<else>>
					<<= VCheck.Anal($activeSlave, 7)>>
				<</if>>
				<br><br>
				You push a hand between the two of you and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily within your grasp. You drop $him, and $he barely manages to catch $himself on shaking legs, the motion sending a blob of $his owner's semen running down $his thigh.
			<</if>>
			<br><br>
			Over the week, you force $him to achieve daily orgasm as your cock pounds in and out of $him. It's difficult, blowing your load inside a compliant slave $girl every day, but you make the necessary sacrifice.
			<<if random(1,2) == 1>>
				After a few days, $he's @@.green;obviously reconsidering $his previous hesitations about dick.@@
				<<set $activeSlave.attrXY += 5>>
			<<else>>
				$He takes it like a good slave. $His dislike for dick doesn't change, but $he gets better at @@.hotpink;suppressing $his own inclinations@@ and serving as your cum receptacle.
				<<set $activeSlave.devotion += 4>>
			<</if>>
		<<elseif $activeSlave.attrXX <= 35>>
			girls, so $he gets to spend some quality time with your feminine side. You kiss $him, teasing your tongue against $him, and press your breasts maliciously against $his
			<<if $activeSlave.boobs > 5000>>
				titanic udders, which are squashed between you.
			<<elseif $activeSlave.boobs > 1000>>
				own lovely boobs.
			<<else>>
				chest.
			<</if>>
			$He shrinks away from you involuntarily, but you stroke loving hands down $his temples, the sides of $his neck, and $his upper arms. $He shudders involuntarily, and you can almost feel $him hate $himself through your lip lock. You cock your hips back and to the side, keeping your prick well clear of $him. As far as $he can feel, you're all boobs and feminine lips.
			<br><br>
			<<if $activeSlave.toyHole == "dick" || ($policies.sexualOpenness == 1 && canPenetrate($activeSlave))>>
				You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt<<if $activeSlave.belly >= 5000>>, working your way under $his _belly belly<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your
				<<if $PC.butt >= 5>>
					enormous, <<if $PC.buttImplant != 0>>beachball cheeks<<else>>wobbling ass<</if>>,
				<<elseif $PC.butt >= 4>>
					huge, <<if $PC.buttImplant != 0>>balloon of an<<else>>soft<</if>> ass,
				<<elseif $PC.butt >= 3>>
					big<<if $PC.buttImplant != 0>> fake<</if>> ass,
				<<else>>
					ass,
				<</if>>
				leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel an unwilling erection building between your cheeks. Pleased, you lean forward and line up your <<if $PC.vagina != -1>>pussy<<else>>asshole<</if>> with $his dick head and push back into $him. You repeat until $his hips start moving on their own. You bite on your finger at the sensation of $his cock inside you and, using your other hand, begin to jerk yourself off. Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick; it must feel as though $he is banging a beautiful woman. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, taking $him to the point of climax before enjoying your own orgasm. The heat of your insides, the tightening and twitching of your <<if $PC.vagina != -1>>vagina<<else>>rectum<</if>> around $his cock, and your obvious pleasure force $him over the edge, and $he comes so hard that $he nearly knocks your to the floor. You scoot forward, letting $him slip from you. $He gets a splendid sight of your still gaped <<if $PC.vagina != -1>>cunt<<else>>anus<</if>> begging for more<<if $activeSlave.balls > 0>> as a blob of $his semen drips from your body<</if>>.
				<br><br>
				Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to savor a compliant slave's penis every day, but you make the necessary sacrifice.
				<<if canImpreg($PC, $activeSlave)>>
					<<= knockMeUp($PC, 40, 0, $activeSlave.ID)>>
				<</if>>
			<<elseif $activeSlave.belly >= 150000>>
				You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt, working your way under $his _belly belly. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your
				<<if $PC.butt >= 5>>
					enormous, <<if $PC.buttImplant != 0>>beachball cheeks<<else>>wobbling ass<</if>>,
				<<elseif $PC.butt >= 4>>
					huge, <<if $PC.buttImplant != 0>>balloon of an<<else>>soft<</if>> ass,
				<<elseif $PC.butt >= 3>>
					big<<if $PC.buttImplant != 0>> fake<</if>> ass,
				<<else>>
					ass,
				<</if>>
				leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel
				<<if canDoVaginal($activeSlave)>>
					an unwilling heat building low behind you. Pleased, you lean back and start to play with $his clit, using your other hand to jerk off.
				<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
					an unwilling erection building between your cheeks. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off.
				<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
					the huge cock behind you start to leak onto your back. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off.
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
					the pretty girldick behind you start to leak. Pleased, you lean back and start to play with $his soft bitchclit, using your other hand to jerk yourself off.
				<<elseif ($activeSlave.chastityPenis == 1)>>
					an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity cage, using your other hand to jerk off.
				<<elseif ($activeSlave.chastityVagina)>>
					an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity, using your other hand to jerk off.
				<<else>>
					a demure heat building behind you. Pleased, you lean back and start to play with the soft smooth skin between $his legs.
				<</if>>
				Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman under $his middle, and is playing with $his ass while $he gets $him off manually. You complete the feeling by bucking against $him with extra enthusiasm when you climax.
				<br><br>
				Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to grind against a compliant slave every day, but you make the necessary sacrifice.
			<<else>>
				You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt<<if $activeSlave.belly >= 10000>> as well as you can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> pushing into you<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your tits, leading $him like a music teacher guiding a student's hands. When $he's stroking your nipples properly, you grind against $him for a while, grinning to yourself as you feel
				<<if canDoVaginal($activeSlave)>>
					an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to play with $his clit, using your other hand to jerk off.
				<<elseif canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
					an unwilling erection building behind you. Pleased, you snake a hand around behind yourself and start to play with $his dick, using your other hand to jerk yourself off.
				<<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
					the huge cock behind you start to leak. Pleased, you snake a hand around behind yourself and start to play with $his dick, using your other hand to jerk yourself off.
				<<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !($activeSlave.chastityPenis)>>
					the pretty girldick behind you start to leak. Pleased, you snake a hand around behind yourself and start to play with $his soft bitchclit, using your other hand to jerk yourself off.
				<<elseif ($activeSlave.chastityPenis == 1)>>
					an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to tease $his chastity cage, using your other hand to jerk off.
				<<elseif ($activeSlave.chastityVagina)>>
					an unwilling heat building low behind you. Pleased, you snake a hand around behind yourself and start to tease $his chastity, using your other hand to jerk off.
				<<else>>
					a demure heat building behind you. Pleased, you snake a hand around behind yourself and start to play with the soft smooth skin between $his legs.
				<</if>>
				Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman in $his arm<<if hasBothArms($activeSlave)>>s<</if>>, and is playing with $his boobs while $he gets $him off manually. You complete the feeling by craning around to rain nibbles and kisses on $his $activeSlave.faceShape face.
				<br><br>
				Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having one of your slaves detailed to stimulate your nipples every day, but you make the necessary sacrifice.
			<</if>>
			<<if random(1,2) == 1>>
				After a few days, $he's @@.green;obviously reconsidering $his previous hesitations about tits and ass.@@
				<<set $activeSlave.attrXX += 5>>
			<<else>>
				$He serves your feminine body like a good slave. $His dislike for sex with girls doesn't change, but $he gets better at @@.hotpink;suppressing $his own inclinations@@ and serving as your plaything.
				<<set $activeSlave.devotion += 4>>
			<</if>>
		<</if>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.attrXY <= 35>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0) && $activeSlave.attrXY <= 35>> //This option will take $his anal virginity//<</if>>

<<case "penitent">>

<<link "Require $him to self-flagellate">>
	<<replace "#result">>
		You tell $him that you will offer $him a method of expiating $his deep and troubling sin. $He looks almost hopeful at this, until you lead $him out onto a balcony and order $him to strip before handing $him a simple length of hempen rope. $He already knows what's coming next, but $he breaks down as $he obeys your orders to kneel. $He sobs abjectly, but you don't even have to give the next order: $he's already flogging the rope against $his own back in the hope of earning a reprieve by obedience. You count the strokes aloud, stopping at one in disapproval of how light $he's hitting $himself. $He flogs $himself harder and harder, screaming a little and crying in pain and fear as you obstinately refuse to say "two." When $he strikes so hard that $he draws a little blood, you finally say the terrible word. When you're finally satisfied with $his self-torture, $he's so exhausted that you carry $his limp, bloody<<if $seePee == 1>>, vaguely urine-scented<</if>><<if $activeSlave.bellyPreg >= 1500>> gravid<</if>> form into the shower, wash $him, and apply curatives, @@.health.dec;though $he's still quite injured.@@ $He wakes to find $himself curled up in your lap, and $he stiffens for a brief moment before @@.hotpink;relaxing against your chest,@@ weeping softly.
		<<if ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
			<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
			$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
		<</if>>
		<<if ($activeSlave.behavioralFlaw != "odd") && (random(1,100) > 50)>>
			<<set $activeSlave.behavioralFlaw = "odd">>
			The terrible experience has left $him with @@.red;unpleasant nervous tics.@@
		<</if>>
		<<set $activeSlave.devotion += 10>>
		<<run healthDamage($activeSlave, 10)>>
	<</replace>>
<</link>>
<<if canImpreg($activeSlave, $PC)>>
	<<if ($activeSlave.mpreg == 1 && canDoAnal($activeSlave)) || ($activeSlave.ovaries == 1 && canDoVaginal($activeSlave))>>
		<br><<link "Put a baby in $him while $he prays">>
			<<replace "#result">>
				$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his <<if $activeSlave.mpreg == 1>>asspussy<<else>>pussy<</if>>. $He gasps out:
				"Oh <<Master>>, owner, protector, and father of my children, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, the tear<<s>> of my womb. Remember not my iniquitie<<s>> but my willingne<<ss>> to be bred by you. I long to <<s>>erve your <<if $PC.vagina != -1>>futa <</if>>dick, and beg that you will u<<s>>e me and ble<<ss>> my body with your off<<s>>pring. I promi<<s>>e to <<s>>ubmit to you a<<s>> your breeding <<s>>lut all the day<<s>> of my <<s>>ervitude, and to grow heavy with child, again and again."
				$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved your dick up $his waiting <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> and are close to blessing $him with a load of cum. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
				<<if $activeSlave.mpreg == 1>><<= VCheck.Anal($activeSlave, 1)>><<else>><<= VCheck.Vaginal($activeSlave, 1)>><</if>>
				<<= knockMeUp($activeSlave, 100, 2, -1, 1)>>
				<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
					<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
					$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
				<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
					<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
					$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
				<<elseif ($activeSlave.fetish != "pregnancy") && (random(1,100) > 50)>>
					<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
					$He has come to associate @@.lightcoral;carrying your children@@ with sexual fulfillment.
				<</if>>
				<<set $activeSlave.devotion += 4>>
			<</replace>>
		<</link>><<if $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take $his anal virginity//<<elseif $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>>
	<</if>>
<</if>>
<<if canDoVaginal($activeSlave)>>
	<br><<link "Fuck $him while $he prays">>
		<<replace "#result">>
			$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his pussy. $He gasps out:
			"Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina != -1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my <<if $activeSlave.vagina == 0>>virgin fold<<s>><<else>>feminine <<s>>lit<</if>>. I promi<<s>>e to <<s>>ubmit to you a<<s>> your vaginal <<s>>lut all the day<<s>> of my <<s>>ervitude."
			$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his waiting pussy. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
			<<= VCheck.Vaginal($activeSlave, 1)>>
			<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
				<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
				$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
			<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
				<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
				$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
			<</if>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Sodomize $him while $he prays">>
		<<replace "#result">>
			$activeSlave.slaveName finds $himself standing in front of you, feeling you roughly probe $his ass with two fingers. $He gasps out:
			"Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of anal <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be a<<ss>>raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina != -1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my butthole. I promi<<s>>e to <<s>>ubmit to you a<<s>> your anal <<s>>lut all the day<<s>> of my <<s>>ervitude."
			$He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his loosened ass. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..."
			<<= VCheck.Anal($activeSlave, 1)>>
			<<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>>
				<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
				$He has come to associate @@.lightcoral;humiliation@@ with sexual fulfillment.
			<<elseif ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>>
				<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
				$He has come to associate @@.lightcoral;submission@@ with sexual fulfillment.
			<</if>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "resistant anal virgin">>

<<link "Let $him earn continued anal virginity">>
	<<replace "#result">>
		You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
		<<if !canTalk($activeSlave) && hasAnyArms($activeSlave)>>
			$He frantically begs with gestures, pleading <<if hasBothLegs($activeSlave)>>on $his knees<<else>>desperately<</if>>.
		<<elseif !canTalk($activeSlave)>>
			$He frantically mouths pleas that you leave $his butt alone.
		<<else>>
			$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!"
		<</if>>
		You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him keep $his butt — for now. You tell $him to <<if $PC.dick != 0>>blow you<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>lick your pussy<</if>>, and $he does with unusual obedience. When $he's done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll ruin $his little asshole. @@.gold;$He's terrified.@@
		<<set $activeSlave.trust -= 5>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<<if hasAnyLegs($activeSlave)>>
	<br><<link "Force $him to degrade $himself">>
		<<replace "#result">>
			Suction cup dildos are terribly useful. You place a moderate-sized one on a low table in your office<<if ($activeSlave.chastityAnus)>>, unlock $his chastity belt<</if>>, and order $him to squat down on it and fuck $his own asshole. $He hesitates, incredulous, and finds $himself bound to the couch and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he hobbles over and up onto the table,
			<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
				struggles to line $himself up, and finds it slammed into $his asshole when the table gives out under $his<<if $activeSlave.belly >= 300000>> gravid<</if>> weight. You leave $him there to struggle with the dildo wedged in $his rear until $he finally manages to pop it free from the table fragment stuck under mass and roll over. You haul $him onto
			<<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 hand<<if hasBothArms($activeSlave)>>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($activeSlave, 1)>>
		<</replace>>
	<</link>> //This option will take $his anal virginity//
	<<if $activeSlave.vagina == 0>>
		<br><<link "Make $him choose between $his virginities">>
			<<replace "#result">>
				You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass.
				<<if !canTalk($activeSlave) && hasAnyArms($activeSlave)>>
					$He frantically begs with gestures, pleading <<if hasBothLegs($activeSlave)>>on $his knees<<else>>desperately<</if>>.
				<<elseif !canTalk($activeSlave)>>
					$He frantically mouths pleas that you leave $his butt alone.
				<<else>>
					$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!"
				<</if>>
				You make a show of considering, and then tell $him you know a way $he can continue being an anal virgin — for now. You want a new hole to play with, and $he has two untouched holes. $He gasps when $he realizes what you want. $He hesitates to answer, uncertain of which $he values more, and finds $himself bound to the couch<<if ($activeSlave.chastityAnus)>>, stripped of $his chastity,<</if>> and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he prostrates $himself and
				<<if $activeSlave.trust < 20>>
					spreads $his butt for you.
				<<else>>
					$his pussylips for you.
				<</if>>
				You callously ram a dildo into $his fresh hole and tell $him to keep working $himself with it or suffer another whipping. After $he's fucked $himself 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 take it a good little slave. @@.gold;$He fears you@@ but @@.hotpink;loses $himself to your rule.@@
				<<if $activeSlave.trust < 20>>
					@@.lime;$His butthole has been broken in.@@
					<<set $activeSlave.anus = 1>>
					<<= VCheck.Anal($activeSlave, 1)>>
				<<else>>
					@@.lime;$His pussy has been broken in.@@
					<<set $activeSlave.vagina = 1>>
					<<= VCheck.Vaginal($activeSlave, 1)>>
				<</if>>
				<<set $activeSlave.trust -= 5, $activeSlave.devotion += 3>>
			<</replace>>
		<</link>> //This option will take one of $his virginities//
	<</if>>
<</if>>

<<case "diet">>

<<link "Catch $him at it and punish $him">>
	<<replace "#result">>
		It's childishly easy to catch $him at it. You simply call a slave eating $his breakfast away over the arcology's audio system, and then enter the kitchen by a different door. $activeSlave.slaveName has the departed slave's cup in $his hand and halfway to $his mouth when $he's caught in the act. You relieve $him of $his prize, and finding that $he has not started $his own proper portion, pour it out onto the floor. You tell $him to lap it up without using $his hands, and begin counting down from ten. $He obeys,
		<<if $activeSlave.belly >= 300000>>
			only to find $his _belly stomach keeps $him from reaching the puddle. When you reach zero you shove $him over $his middle, face first into the pool of slave food, and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass.
		<<else>>
			but slowly and hesitantly. When you reach zero you order $him to get <<if hasAllLimbs($activeSlave)>>to all fours<<else>>on the ground<</if>> and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass.
		<</if>>
		$He alternates ten seconds of desperate lapping with being beaten across the buttocks until $he's done, by which time $he is @@.gold;desperate to obey and avoid further punishment.@@
		<<set $activeSlave.trust -= 5>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Make $him eat in your office and keep $him busy while $he does">>
		<<replace "#result">>
			$He knows what it means when $he's informed that $him meals will now be available in your office only. You not only supervise $him intake strictly, but set up a bowl for $him on a little stand so the chubby bitch can lap up $his food<<if hasBothArms($activeSlave)>> hands-free<</if>> on
			<<if $activeSlave.belly >= 300000>>
				$his _belly belly,
			<<elseif hasAllLimbs($activeSlave)>>
				all fours,
			<<else>>
				the ground,
			<</if>>
			leaving $him open for use from behind.
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				<<= VCheck.Both($activeSlave, 3, 3)>>
			<<elseif canDoVaginal($activeSlave)>>
				<<= VCheck.Vaginal($activeSlave, 6)>>
			<<elseif canDoAnal($activeSlave)>>
				<<= VCheck.Anal($activeSlave, 6)>>
			<</if>>
			You're careful to avoid associating pleasure with misbehavior by taking $his cruelly every time $he eats, pinching $his nipples, and slapping $his <<if $seeRace == 1>>$activeSlave.race <</if>> ass as you ride $him. This is so effective that @@.gold;$he learns to obey@@ and @@.orange;loses weight@@ both.
			<<set $activeSlave.trust -= 5, $activeSlave.weight -= 10, $activeSlave.diet = "healthy">>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<br><<link "Fill $him up with water as punishment">>
	<<replace "#result">>
		You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he can drink as much as $he wants from them if $he'll tell you the truth. $He confesses, and is horrified to find they're full of water, not food. You add casually that $he can choose not to 'eat' the contents... but that $he'll get no real food until $he finishes every one. Torn between hunger and reluctance, $he spends the next hour struggling with so much water that you have to check $him for water intoxication. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a bulging<</if>> stomach and a @@.gold;sincere desire to avoid further punishment.@@
		<<set $activeSlave.trust -= 5>>
	<</replace>>
<</link>>
<br><<link "Make $him eat until $he regrets it">>
	<<replace "#result">>
		You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he is going to eat the contents of every last one, every day, until $he regrets being a glutton. $He gulps at the sight, but eagerly digs in. As $his stomach steadily distends and the cups rapidly empty, you realize you may have made a mistake. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a hugely bulging<</if>> stomach and a @@.mediumorchid;smirk at your so-called punishment.@@
		<<set $activeSlave.devotion -= 5, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>>
		<<if $activeSlave.bellyPreg > 0 || $activeSlave.bellyImplant > 0>>
			<<set $activeSlave.inflation = 1>>
		<<else>>
			<<set $activeSlave.inflation = 3>>
		<</if>>
		<<run SetBellySize($activeSlave)>>
	<</replace>>
<</link>>
<<if ($cumSlaves >= 5) && (($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown == 0))>>
	<br><<link "Restrict $him to nothing but fresh cum from the Dairy">>
		<<replace "#result">>
			You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You tell $him that you understand $his need to eat, and that for the rest of the week you'll mercifully be allowing $him to try a new diet on which $he can eat as much as $he wants. $He's overjoyed <<if canHear($activeSlave)>>to hear it<<elseif canSee($activeSlave)>>when $he reads it on a nearby screen display<<else>>when $he figures it out<</if>>, though this pleasure is replaced with extreme disgust when $he learns that $his only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and $he spends most of the week going around with a @@.hotpink;preoccupied@@ look on $his face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, $he's starting to @@.lightcoral;salivate@@ at the mere <<if canSmell($activeSlave)>>scent<<else>>thought<</if>> of ejaculate.
			<<set $activeSlave.devotion += 4, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.inflation = 1, $activeSlave.inflationType = "cum", $activeSlave.inflationMethod = 1>>
			<<run SetBellySize($activeSlave)>>
		<</replace>>
	<</link>>
<</if>>

<<case "huge naturals">>

<<link "Give $him a nice massage">>
	<<replace "#result">>
		You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself
		<<if $PC.belly >= 10000>>
			beside you and cozying up to your pregnant belly and sliding a hand down to see to your pussy without hesitation. You help $him get comfortable and instead of demanding $he please you or get down on all fours, you just sit there with $him,
		<<elseif $PC.dick == 0>>
			into your lap without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap,
		<<else>>
			onto your member
			<<if $PC.vagina != -1>>
				and sliding a hand down to see to your pussy
			<</if>>
			without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap,
		<</if>>
		gently massaging $his massive tits. They get sore from swinging around as $he moves, works, and fucks, and soon $he's groaning with pleasure at the attention. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples. @@.mediumaquamarine;$He has become more trusting of you.@@
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
		<<if $activeSlave.lactation > 0>>
			<<set $activeSlave.lactationDuration = 2>>
			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
		<<else>>
			<<= induceLactation($activeSlave, 3)>>
		<</if>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave) && $activeSlave.belly < 100000>>
	<br><<link "Use $him so they swing around">>
		<<replace "#result">>
			You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
			<<if canDoVaginal($activeSlave)>>
				$his pussy
			<<else>>
				$his ass
			<</if>>
			without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his pendulous breasts: as you pound $him hard, $his long nipples frequently brush against the floor, causing $him to wince and buck.
			<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
				<<if canAchieveErection($activeSlave)>>
					$His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
				<<elseif $activeSlave.dick > 20>>
					$His cock doesn't help, either, flopping around on the floor as $he vacillates between pain and arousal.
				<<else>>
					$His cock doesn't help, either, flopping around feebly as $he vacillates between pain and arousal.
				<</if>>
			<<elseif $activeSlave.clit > 2>>
				$His huge clit doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
			<</if>>
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				When you switch to $his ass, the shallower strokes give $his nipples a bit of respite.
			<</if>>
			You finish with a particularly hard thrust
			<<if $PC.dick == 0>>
				and shake with climax,
			<<else>>
				to spill your seed deep inside $his
				<<if canDoAnal($activeSlave)>>
					butt, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked butt lewdly relaxed.
				<<else>>
					pussy, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked cunt lewdly gaped.
				<</if>>
			<</if>>
			@@.hotpink;$He has become more submissive.@@
			<<set $activeSlave.devotion += 4>>
			<<= VCheck.Both($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Show $him off in public">>
		<<replace "#result">>
			You bring $him out onto the promenade, still nude, $his huge bare udders attracting open stares as $his every movement sets them in motion.
			<<if $activeSlave.sexualFlaw == "attention whore">>
				The slut loves being the center of attention and couldn't ask for more.
			<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>>
				The slut loves being embarrassed, and $he blushes furiously as $his nipples stiffen with arousal.
			<<elseif ($activeSlave.energy > 95)>>
				The nympho slut loves being shown off, and $he flaunts $his boobs shamelessly.
			<<elseif ($activeSlave.counter.anal > 100) && ($activeSlave.counter.oral > 100)>>
				$He's such a veteran sex slave that $he takes the stares in stride.
			<<else>>
				$He blushes a little, but tips $his chin up and follows you obediently.
			<</if>>
			When you reach a good spot, you grab $his
			<<if ($activeSlave.weight > 30)>>
				fat ass
			<<elseif ($activeSlave.weight > 10)>>
				plush hips
			<<elseif ($activeSlave.weight >= -10)>>
				trim hips
			<<elseif ($activeSlave.butt > 2)>>
				big butt
			<<else>>
				skinny ass
			<</if>>
			and
			<<if ($activeSlave.height >= 185)>>
				pull $his tall body in
			<<elseif ($activeSlave.height >= 160)>>
				pull $him up on tiptoe
			<<else>>
				push $his petite form up onto a railing
			<</if>>
			for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and
			<<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>>
				collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him.
				<<if $activeSlave.bellyPreg >= 600000>>
					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
				<</if>>
			<<elseif $activeSlave.belly >= 100000>>
				pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him.
				<<if $activeSlave.bellyPreg >= 600000>>
					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
				<</if>>
			<<else>>
				hoist $his legs up so $he's pinned against your
				<<if $PC.belly >= 1500>>
					pregnancy,
				<<elseif ($PC.boobs < 300)>>
					chest,
				<<else>>
					boobs,
				<</if>>
				helpless to do anything but let you hold $him in midair and fuck $him.
			<</if>>
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina > 1)>>
					$His pussy can take a hard pounding, so you give it to $him.
				<<else>>
					$His poor tight pussy can barely take the pounding you're administering.
				<</if>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<if ($activeSlave.anus > 1)>>
					$His loose butthole can take a hard pounding, so you give it to $him.
				<<else>>
					$His poor tight butthole can barely take the pounding you're administering.
				<</if>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
			$He loses all composure, gasping and panting as the massive weight of $his chest bounces up and down, making an audible clap with each stroke as $his huge tits slap painfully together. Despite this, or perhaps partly because of it, $he begins to orgasm,
			<<if ($activeSlave.chastityPenis == 1)>>
				the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip.
			<<elseif canAchieveErection($activeSlave)>>
				<<if ($activeSlave.dick > 3)>>
					$his monster of a cock releasing a jet of cum with each thrust into $him.
				<<elseif ($activeSlave.dick > 3)>>
					$his huge cock releasing a jet of cum with each thrust into $him.
				<<elseif ($activeSlave.dick > 1)>>
					$his cock releasing a spurt of cum with each thrust into $him.
				<<else>>
					$his tiny dick spurting cum with each thrust into $him.
				<</if>>
			<<elseif ($activeSlave.dick > 9)>>
				$his huge, soft cock spurting cum as it wiggles to your motions.
			<<elseif ($activeSlave.dick > 0)>>
				$his soft cock scattering cum all over the place as it flops around.
			<<elseif ($activeSlave.belly >= 1500)>>
				$his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture.
			<<elseif $activeSlave.weight > 95>>
				$his soft body jiggling as $he climaxes.
			<<elseif ($activeSlave.muscles > 5)>>
				$his abs convulsing deliciously as $he climaxes.
			<<elseif canDoVaginal($activeSlave)>>
				$his pussy tightening.
			<<else>>
				$his poor anal ring tightening.
			<</if>>
			The crowd that surrounds you during this noisy spectacle @@.green;is suitably impressed.@@
			<<run repX(1250, "event", $activeSlave)>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "hugely pregnant">>

<<link "Help $him with those hard to reach places">>
	<<replace "#result">>
		$He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans against you.
		<<if hasAnyArms($activeSlave) && $PC.belly >= 1500>> $He takes the lotion and begins to return the favor. You spend the rest of $his break carefully massaging each other's baby bumps.<</if>>
		<<if !canTalk($activeSlave)>>
			<<if $activeSlave.voice == 0>>
				$He looks like $he would love to thank you, were $he not mute.
			<<elseif ($activeSlave.accent >= 3)>>
				$He looks like $he would love to thank you, if $he knew how.
			<</if>>
		<<else>>
			<<if ($activeSlave.lips > 70)>>
				$He murmurs through $his huge lips,
			<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
				$He murmurs through $his piercings,
			<<else>>
				$He murmurs,
			<</if>>
			"That felt really ni<<c>>e, <<Master>>."
			<<if $PC.belly >= 1500>>
				You have to agree, it did feel nice on your growing middle.
			<</if>>
		<</if>>
		@@.mediumaquamarine;$He has become more trusting of you.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if (canDoAnal($activeSlave) && $activeSlave.mpreg == 1) || (canDoVaginal($activeSlave))>>
	<br><<link "Gently fuck $him while helping $him apply lotion">>
		<<replace "#result">>
			$He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans back into you. $He feels <<if $PC.dick == 0>>the warmth of your growing arousal<<else>>your erection hard<</if>> against $him, so $he
			<<if isAmputee($activeSlave)>>
				wriggles $his limbless form around on the floor so as to offer $himself to you.
			<<else>>
				slowly kneels down with you into a comfortable lotus position on the bathroom floor.
			<</if>>
			<<if $activeSlave.mpreg == 1>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<</if>>
			Coupling like this, you can't <<if $PC.dick == 0>>scissor<<else>>fuck<</if>> $him all that hard, but that's just fine given
			<<if $PC.preg >= 5000>>
				your condition.
			<<else>>
				$his condition.
			<</if>>
			$He snuggles back into you as you have gentle sex while looking after $his drum-taut skin.
			<<if !canTalk($activeSlave)>>
				<<if $activeSlave.voice == 0>>
					$He looks like $he would love to thank you, were $he not mute.
				<<elseif ($activeSlave.accent >= 3)>>
					$He looks like $he would love to thank you, if $he knew how.
				<</if>>
			<<else>>
				<<if ($activeSlave.lips > 70)>>
					$He murmurs through $his huge lips,
				<<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>
					$He murmurs through $his piercings,
				<<else>>
					$He murmurs,
				<</if>>
				"That feel<<s>> really ni<<c>>e, <<Master>>."
			<</if>>
			@@.mediumaquamarine;$He has become more trusting of you.@@
			<<set $activeSlave.trust += 4>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.mpreg == 0>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave)>>
	<<if $activeSlave.mpreg == 1>>
		<br><<link "$His backdoor can't get more pregnant">>
			<<replace "#result">>
				$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck.
				<<= VCheck.Anal($activeSlave, 1)>>
				<<if hasAnyArms($activeSlave)>>
					$He does $his best to brace $himself against the sink, but $his <<if !hasBothArms($activeSlave)>>hand is<<else>>hands are<</if>> slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
				<</if>>
				Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave.
				<<if ($activeSlave.lactation == 1)>>
					As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
				<<elseif ($activeSlave.boobs > 1000)>>
					As you pound $him, $his huge breasts compound the discomfort.
				<</if>>
				When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@
				<<set $activeSlave.devotion += 4>>
				<</replace>>
			<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
		<<else>>
			<br><<link "$His backdoor isn't pregnant">>
				<<replace "#result">>
				$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck.
				<<= VCheck.Anal($activeSlave, 1)>>
				<<if hasAnyArms($activeSlave)>>
					$He does $his best to brace $himself against the sink, but $his <<if !hasBothArms($activeSlave)>>hand is<<else>>hands are<</if>> slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
				<</if>>
				Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave.
				<<if ($activeSlave.lactation == 1)>>
					As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
				<<elseif ($activeSlave.boobs > 1000)>>
					As you pound $him, $his huge breasts compound the discomfort.
				<</if>>
				When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@
				<<set $activeSlave.devotion += 4>>
			<</replace>>
		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his virginity//<</if>>
	<</if>>
<</if>>
<<if (canDoAnal($activeSlave) && $activeSlave.mpreg == 1) || (canDoVaginal($activeSlave)) && $activeSlave.belly >= 300000>>
	<br><<link "Tip $him over and fuck $him">>
		<<replace "#result">>
			$He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and shove $him onto $his _belly stomach for a quick fuck.
			<<if $activeSlave.mpreg == 1>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<<else>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<</if>>
			<<if hasAnyArms($activeSlave)>>
				$He does $his best to steady $himself atop the squirming mass, but $his <<if !hasBothArms($activeSlave)>>hand is<<else>>hands are<</if>> slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time.
			<</if>>
			<<if $activeSlave.mpreg == 1>>
				Taking it up the ass
			<<else>>
				Getting roughly fucked
			<</if>>
			while hugely pregnant isn't the most comfortable way to have sex, neither is being forced to put more pressure on an already overfilled organ, but such is the life of a sex slave.
			<<if ($activeSlave.lactation == 1)>>
				As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort.
			<<elseif ($activeSlave.boobs > 1000)>>
				As you pound $him, $his huge breasts compound the discomfort.
			<</if>>
			When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief and rolls onto $his side. @@.hotpink;$He has become more submissive.@@
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.mpreg == 0>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "PA servant">>

<<link "Share the slave with your PA">>
	<<replace "#result">>
		You enter, eliciting an embarrassed
		"Um, hi <<Master>>" from $activeSlave.slaveName and a cheery wave from $assistant.name. At this stage of your morning ablutions, you're conveniently naked, so you
		<<if $PC.belly >= 5000>>
			heft yourself
		<<elseif $PC.belly >= 1500>>
			clamber up
		<<else>>
			leap up
		<</if>>
		onto the desktop and kneel upright, legs splayed. (Naturally, the desk is reinforced and sealed for exactly this reason.) You point meaningfully at your
		<<if $PC.dick != 0>>
			stiff prick <<if $PC.vagina != -1>>and flushed pussy<</if>>, and the obedient slave <<if $activeSlave.belly >= 5000>>hefts $himself<<else>>clambers<</if>> up to suck you off<<if $PC.vagina != -1>> and eat you out<</if>>. When you're close, you surprise $him by pulling your cock out of $his mouth and blowing your load onto the glass.
		<<else>>
			hot cunt, and the obedient slave <<if $activeSlave.belly >= 5000>>hefts $himself<<else>>clambers<</if>> up to eat you out. You surprise $him by taking your time, drawing out the oral session with the ulterior motive of getting as much saliva and pussyjuice onto the glass as possible.
		<</if>>
		<<= capFirstChar($assistant.name)>> shifts _hisA avatar so that this lands all over _hisA
		<<switch $assistant.appearance>>
		<<case "monstergirl">>
			cocks.
		<<case "shemale">>
			huge cock.
		<<case "amazon">>
			muscular pussy.
		<<case "businesswoman">>
			mature pussy.
		<<case "fairy" "pregnant fairy">>
			tiny body.
		<<case "goddess">>
			fertile pussy.
		<<case "hypergoddess">>
			gaping pussy.
		<<case "loli" "cherub">>
			tight virgin pussy.
		<<case "preggololi">>
			tight young pussy.
		<<case "angel">>
			virgin pussy.
		<<case "incubus">>
			perfect dick.
		<<case "succubus">>
			lovely pussy.
		<<case "imp">>
			slutty pussy.
		<<case "witch">>
			plump breasts.
		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
			pussy-like body.
		<<case "schoolgirl">>
			pretty young pussy.
		<</switch>>
		"Clean me off, $activeSlave.slaveName," _heA demands, winking broadly at you. The slave, knowing that commands from _himA are commands from you, repositions $himself to lick up the <<if $PC.dick != 0>>ejaculate<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>girlcum<</if>>.
		<br><br>
		This brings the slave into a crouch with $his ass pointed at you,
		<<if canDoVaginal($activeSlave)>>
			<<if $activeSlave.vagina > 2>>
				$his experienced pussy practically begging for a pounding.
			<<elseif $activeSlave.vagina > 1>>
				$his nice pussy practically begging for a good hard fucking.
			<<else>>
				$his tight little pussy completely vulnerable.
			<</if>>
			As <<if $PC.dick != 0>><<if $PC.vagina != -1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistant.name opines helpfully, "Hey $activeSlave.slaveName! You're about to get fucked!" The slave reacts by obediently reaching back to spread $his buttocks and relaxing, but $assistant.name ruins $his attempt at graceful submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention stimulation, as you penetrate $him.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			<<if $activeSlave.anus > 2>>
				$his big asspussy practically begging for a pounding.
			<<elseif $activeSlave.anus > 1>>
				$his nice asshole practically begging for a good hard fucking.
			<<else>>
				$his tight little rosebud completely vulnerable.
			<</if>>
			As <<if $PC.dick != 0>><<if $PC.vagina != -1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistant.name opines helpfully, "Hey $activeSlave.slaveName! You're about to get buttfucked!" The slave reacts by obediently reaching back to spread $his buttocks, and relaxes $his anus, but $assistant.name ruins $his attempt at graceful anal submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention discomfort, as you penetrate $him.
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
		$He keeps licking away, cleaning up the mess you made as $assistant.name does everything $he can to make it seem like the slave is pleasuring $him. Partway through, $assistant.name sticks out a hand for a high-five from you, producing a gurgle of indignation @@.mediumaquamarine;or perhaps even laughter@@ as $his owner and $his owner's personal assistant program high-five over $his back.
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Double penetrate the slave with your PA">>
		<<replace "#result">>
			You enter, eliciting an embarrassed
			"Um, hi <<Master>>" from $activeSlave.slaveName, and ask $assistant.name if $he'd like to DP the slave with you.
			<<switch $assistant.appearance>>
			<<case "monstergirl">>
				"Oh yes," _heA purrs threateningly over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA dicks meaningfully.
			<<case "shemale" "incubus">>
				"Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA cock meaningfully.
			<<case "amazon">>
				"Yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on carved from mammoth tusk.
			<<case "businesswoman">>
				"Oh yes," _heA purrs sadistically over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on.
			<<case "fairy" "pregnant fairy">>
				"Oh yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly conjures up a magic floating dick.
			<<case "goddess" "hypergoddess">>
				"That would be lovely," _heA says radiantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light.
			<<case "angel" "cherub">>
				"If you insist," _heA says reluctantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light.
			<<case "succubus">>
				"Just this once," _heA says stroking $his clit as it steadily swells into a fully functional cock.
			<<case "imp">>
				"Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar quickly dons a huge, spiked strap-on.
			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
				"Of course," _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly forms a huge, fleshy, bulbous cock.
			<<default>>
				"Fuck yeah!" _heA cheers over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on.
			<</switch>>
			You indicate a fuckmachine in the corner of the room, and the slave obediently hurries over to it. It's vertical, and $he hops up on it, positioning $his anus over its
			<<switch $assistant.appearance>>
			<<case "monstergirl">>
				pair of dildos. They insert themselves
			<<case "shemale" "incubus">>
				frighteningly big dildo. It inserts itself
			<<case "amazon">>
				animalistically ribbed dildo. It inserts itself
			<<case "imp">>
				terrifyingly spiked, huge dildo. It inserts itself
			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
				frighteningly big, lumpy and uneven dildo. It inserts itself
			<<default>>
				large dildo. It inserts itself
			<</switch>>
			gently but firmly and then stops, the panting slave's
			<<if $activeSlave.weight > 130>>
				thick
			<<elseif $activeSlave.weight > 95>>
				chubby
			<<elseif $activeSlave.muscles > 30>>
				heavily muscled
			<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth/8>>
				motherly
			<<elseif $activeSlave.weight > 10>>
				plush
			<<elseif $activeSlave.muscles > 5>>
				toned
			<<else>>
				feminine
			<</if>>
			thighs quivering a little from supporting $his body in its perch atop the machine, and from the fullness of $his anus.
			<<= VCheck.Anal($activeSlave, 3)>>
			$He knows this is going to be challenging, and is breathing deeply, doing $his best to stay relaxed. You cannot resist slapping your <<if $PC.dick != 0>>big cock lightly<<else>>lubricated strap-on<</if>> against $his cheek, producing a groan of apprehension.
			<br><br>
			You push $him gently backward, letting $him get accustomed to the new angle.<<if $activeSlave.boobs > 2000>> $His monstrous tits spread to either side of $his <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>now upright torso<</if>>, and you take a moment to play with them as $he prepares $himself.<</if>>
			<<if canDoVaginal($activeSlave)>>
				$He gasps as $he feels <<if $PC.dick != 0>>your hot dickhead<<else>>the slick head of your strap-on<</if>> part $his pussylips, no doubt feeling full already.
				<<= VCheck.Vaginal($activeSlave, 3)>>
				When you're all the way in, the <<if $assistant.appearance == "monstergirl">>dildos in $his butt begin<<else>>dildo in $his butt begins<</if>> to fuck $him, harder and harder, as $assistant.name moans happily. The all-encompassing feeling of fullness as $his cunt and ass are fucked to the very limit of their capacities
			<<else>>
				$He gasps as $he feels you push a finger up $his already-full butt and pull $his sphincter a bit wider. You withdraw it and replace it with <<if $PC.dick != 0>>your turgid cock<<else>>your strap-on<</if>>; the slave writhes involuntarily, $his body trying to refuse the invasion of yet another phallus.
				<<= VCheck.Anal($activeSlave, 3)>>
				When you're all the way in, the <<if $assistant.appearance == "monstergirl">>dildos alongside your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> in $his butt begin<<else>>dildo alongside your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>> in $his butt begins<</if>> to fuck $him, harder and harder, as $assistant.name moans happily. The all-encompassing feeling of fullness as $his ass is fucked to the very limit of its capacity
			<</if>>
			quickly drives all feminine grace, presence of mind, or really, @@.hotpink;conscious thought out of the poor slave.@@ After begging for mercy for a short while, $he lapses into animal groans, drooling and leaking tears out the corner of $his eyes as you and $assistant.name fuck $him into insensibility. When you climax, $assistant.name ejaculates, filling the slave's anus with warm fluid.
			<br><br>
			By this point $he's so helpless that you
			<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
				have to struggle to lift
			<<else>>
				gently lift
			<</if>>
			$him off the fuckmachine and carry $him to the shower. You set $him down there, and $assistant.name activates the water, using the powerful jets in pulses to massage life back into your exhausted fuckpuppet. $His avatar appears on a screen behind the shower, creating an optical illusion that makes it look like $he's petting the slave in time with the water. $He reassures to the slave as $he does:
			<<switch $assistant.appearance>>
			<<case "monstergirl">>
				"You're a good little cocksock," $he says kindly.
			<<case "shemale">>
				"I like your butthole," $he says politely.
			<<case "amazon">>
				"I like fucking your butthole," $he says kindly.
			<<case "businesswoman">>
				"I'm sure you won't be sold right away," $he says.
			<<case "fairy" "pregnant fairy">>
				"You're a good $girl," $he says.
			<<case "goddess" "hypergoddess">>
				"There, there," $he says kindly. "You are a good sex slave."
			<<case "angel" "cherub">>
				"There, there," $he says kindly. "You are a good $girl."
			<<case "incubus" "succubus" "imp">>
				"You're a good little cocksleeve," $he says honestly.
			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
				"You're a good little nursery," $he says.
			<<default>>
				"I like you," $he says cheerily.
			<</switch>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "like me">>

<<link "Fuck $him">>
	<<replace "#result">>
		$He asked for it, and $he'll get it. You get to your
		<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
			feet, unhook $his chastity,
		<<else>>
			feet
		<</if>>
		and snap your fingers, pointing
		<<if $PC.dick == 0>>
			at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by grabbing $him on either side of $his neck and
			<<if $activeSlave.belly >= 300000>>
				pulling onto $his _belly stomach
			<<else>>
				shoving $him down to kneel at your feet
			<</if>>
			with $his face
			<<if $PC.belly >= 5000>>
				crammed under your pregnant belly, level with your cunt.
			<<else>>
				level with your cunt.
			<</if>>
			One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least.
		<<else>>
			at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
			<<if $activeSlave.belly >= 5000>>
				gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
			<<else>>
				kneels,
			<</if>>
			$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height.<<if $PC.vagina != -1>> You ensure that you're fully hard and get $him in the right frame of mind by grinding the pussy beneath your dick against $him.<</if>> You fuck
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				$his pussy and then $his ass in quick succession, plundering $his holes without much regard for $his pleasure.
				<<= VCheck.Both($activeSlave, 1)>>
				$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up $his butt.
			<<elseif canDoVaginal($activeSlave)>>
				$his pussy hard, without much regard for $his pleasure.
				<<= VCheck.Vaginal($activeSlave, 1)>>
				$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up deep inside $him.
			<<else>>
				$his ass hard, without cruelty but without much concern for $his pleasure, either.
				<<= VCheck.Anal($activeSlave, 1)>>
				$He takes it obediently, and does $his best to act like $he's enjoying being sodomized.
			<</if>>
			$He stumbles off to wash, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least.
		<</if>>
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick != 0)>> //This option will take $his virginity//<</if>>
<br><<link "Rape $him">>
	<<replace "#result">>
		$He'll get more than $he asked for. You get to your
		<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
			feet, unhook $his chastity,
		<<else>>
			feet
		<</if>>
		and snap your fingers, pointing
		<<if $PC.dick == 0>>
			at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot.
			<<if $activeSlave.belly >= 5000>>
				$His <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form
			<<else>>
				$He
			<</if>>
			collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding $his head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against $his crying face.
		<<else>>
			at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
			<<if $activeSlave.belly >= 5000>>
				gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
			<<else>>
				kneels,
			<</if>>
			$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by
			<<if $activeSlave.belly >= 600000>>
				slamming your hands against the bloated mass grossly distending $his sides,
			<<else>>
				jabbing a thumb into one of $his kidneys,
			<</if>>
			forcing $his back to arch in involuntary response, and then grinding $his face into the couch cushions.
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				$His cunt isn't all that wet, and $he has cause to regret this, first when you fuck it without mercy, and then when you switch your barely-lubricated dick to $his anus.
				<<= VCheck.Both($activeSlave, 1)>>
				$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
			<<elseif canDoVaginal($activeSlave)>>
				$His cunt isn't all that wet, and $he has cause to regret this as you waste no time with foreplay.
				<<= VCheck.Vaginal($activeSlave, 1)>>
				$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape $him into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside $him since it's a danger day<</if>>.
			<<else>>
				You spit on $his asshole and then give $him some anal foreplay, if slapping your dick against $his anus twice before shoving it inside $him counts as anal foreplay.
				<<= VCheck.Anal($activeSlave, 1)>>
				$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
			<</if>>
			It isn't the first time you've heard that, or the hundredth.
		<</if>>
		When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but strangely @@.hotpink;complacent,@@ as though $he's accepted this to an extent.
		<<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
	<</replace>>
<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick != 0)>> //This option will take $his virginity//<</if>>
<br><<link "Get the truth out of $him">>
	<<replace "#result">>
		You ask $him why $he's really here, with devastating directness and in a tone that will brook no disobedience. $He quails, $his shoulders slumping as $he
		<<if $activeSlave.belly >= 1500>>
			<<if $activeSlave.pregKnown == 1>>
				hugs $his pregnancy
			<<else>>
				attempts to hug $himself with $his _belly belly in the way
			<</if>>
		<<else>>
			hugs $himself
		<</if>>
		and $his knees turning inward as $he cringes, the perfect picture of the standard human fear response. It seems $he thought you wouldn't notice $his insincerity. $He swallows nervously and makes no response, but then you <<if canSee($activeSlave)>>allow impatience to cloud your brow<<else>>cough with impatience<</if>> and $he hurriedly explains $himself.
		<<if !canTalk($activeSlave)>>
			$He uses sign language to communicate that $he asked the other slaves what $he could do to improve $his life, and that they told $him to do $his best to win your favor. $He asked them how to do that, and they told $him to ask you to fuck $him.
		<<else>>
			"<<Master>>, I, um, a<<s>>ked the other girl<<s>> what I could do to, you know, do better here," $he <<say>>s. "They <<s>>aid to g-get you to like me. A-and when I a<<s>>ked them how to do that, th-they <<s>>aid t-to a<<s>>k you to fuck me."
		<</if>>
		Then $he bites $his lip and <<if canSee($activeSlave)>>watches you<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>> anxiously.
		<br><br><span id="result2">
			<<link "They're not wrong">>
				<<replace "#result2">>
					You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is
					<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
						palpable as you undo $his chastity.
					<<else>>
						palpable.
					<</if>>
					You snap your fingers, pointing
					<<if $PC.dick == 0>>
						at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by grabbing $him on either side of $his neck and
						<<if $activeSlave.belly >= 300000>>
							pulling onto $his _belly stomach
						<<else>>
							shoving $him down to kneel at your feet
						<</if>>
						with $his face
						<<if $PC.belly >= 5000>>
							crammed under your pregnant belly, level with your cunt.
						<<else>>
							level with your cunt.
						<</if>>
						One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off,
					<<else>>
						at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
						<<if $activeSlave.belly >= 5000>>
							gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
						<<else>>
							kneels,
						<</if>>
						$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height. You fuck
						<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
							$his pussy and then $his ass in quick succession, plundering $his holes without much regard for $his pleasure.
							<<= VCheck.Both($activeSlave, 1)>>
							$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up $his butt.
						<<elseif canDoVaginal($activeSlave)>>
							$his pussy hard, without much regard for $his pleasure.
							<<= VCheck.Vaginal($activeSlave, 1)>>
							$He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up deep inside $him.
						<<else>>
							$his ass hard, without cruelty but without much concern for $his pleasure, either.
							<<= VCheck.Anal($activeSlave, 1)>>
							$He takes it obediently, and does $his best to act like $he's enjoying being sodomized.
						<</if>>
						$He stumbles off to wash,
					<</if>>
					looking @@.mediumaquamarine;much more confident.@@
					<<set $activeSlave.trust += 4>>
				<</replace>>
			<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick != 0)>> //This option will take $his virginity//<</if>>
			<br><<link "Now rape $him">>
				<<replace "#result2">>
					You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is palpable, but $he's getting ahead of
					<<if ($activeSlave.chastityVagina) || !canDoAnal($activeSlave)>>
						$himself as you undo $his chastity.
					<<else>>
						$himself.
					<</if>>
					You snap your fingers, pointing
					<<if $PC.dick == 0>>
						at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot.
						<<if $activeSlave.belly >= 5000>>
							$His <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form
						<<else>>
							$He
						<</if>>
						collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding $his head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against $his crying face.
					<<else>>
						at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and
						<<if $activeSlave.belly >= 5000>>
							gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground,
						<<else>>
							kneels,
						<</if>>
						$his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by
						<<if $activeSlave.belly >= 600000>>
							slamming your hands against the bloated mass grossly distending $his sides,
						<<else>>
							jabbing a thumb into one of $his kidneys,
						<</if>>
						forcing $his back to arch in involuntary response, and then grinding $his face into the couch cushions.
						<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
							$His cunt isn't all that wet, and $he has cause to regret this, first when you fuck it without mercy, and then when you switch your barely-lubricated dick to $his anus.
							<<= VCheck.Both($activeSlave, 1)>>
							$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
						<<elseif canDoVaginal($activeSlave)>>
							$His cunt isn't all that wet, and $he has cause to regret this as you waste no time with foreplay.
							<<= VCheck.Vaginal($activeSlave, 1)>>
							$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape $him into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside $him since it's a danger day<</if>>.
						<<else>>
							You spit on $his asshole and then give $him some anal foreplay, if slapping your dick against $his anus twice before shoving it inside $him counts as anal foreplay.
							<<= VCheck.Anal($activeSlave, 1)>>
							$He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts.
						<</if>>
						It isn't the first time you've heard that, or the hundredth.
					<</if>>
					When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but @@.hotpink;submissive,@@ knowing that $he now has a better idea of what you want, even if what you want isn't very nice.
					<<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>>
				<</replace>>
			<</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick != 0)>> //This option will take $his virginity//<</if>>
			<br><<link "It's not that simple">>
				<<replace "#result2">>
					You tell $him kindly that it isn't that simple, but that if $he obeys orders and does $his best, you will like $him just fine, and $he will do well as your slave. Relief floods through $him.
					<<if !canTalk($activeSlave)>>
						$He gestures $his thanks, and an apology for being silly.
					<<else>>
						"Thank you, <<Master>> and I'm <<s>>orry for being <<s>>illy," $he apologizes.
					<</if>>
					You dismiss $him, and $he goes, a strangely @@.hotpink;respectful@@ look on $his face. $He's no more confident of $his ability to find safety and stability here with you than $he was before, but $he seems to like that it apparently isn't as simple as <<if $PC.dick != 0>>taking your cock up $his butt<<if $PC.vagina != -1>> or <</if>><</if>><<if $PC.vagina != -1>>eating you out<</if>>.
					<<set $activeSlave.devotion += 4>>
				<</replace>>
			<</link>>
		</span>
	<</replace>>
<</link>>

<<case "language lesson">>

<<link "Give $him personal language lessons">>
	<<replace "#result">>
		You order $him to sit next to you. Sure enough, $he hesitates, but $he seems to have gotten the 'next to you' part, and comes carefully over, <<if canSee($activeSlave)>>watching you<<elseif canHear($activeSlave)>>listening<<else>>waiting<</if>> intently for any indication that $he's misunderstood you. Once there, $he stops, knees bent partway as $he second-guesses $himself about whether $he's supposed to sit. Sighing internally, you grab
		<<if $activeSlave.belly >= 5000>>
			<<if $activeSlave.navelPiercing > 0>>
				the piercing dangling from $his _belly belly
			<<else>>
				$his _belly belly
			<</if>>
		<<elseif $activeSlave.nipplesPiercing > 0>>
			a nipple piercing
		<<elseif $activeSlave.nipples == "fuckable">>
			a nipplecunt
		<<elseif $activeSlave.lactation > 0>>
			a milky nipple
		<<else>>
			a nipple
		<</if>>
		and pull downward gently. "<<S>>orry <<Master>>," $he mutters in $his barbarous <<print aNational($activeSlave.nationality)>> accent, and sits <<if $activeSlave.belly >= 5000>>carefully<<else>>hurriedly<</if>> down.
		<br><br>
		You review 'next,' praising $him for getting that, and then move on to 'sit,' 'stand,' and other such useful terms, teaching the $language language to the nude slave sitting
		<<if $activeSlave.belly >= 10000 || $activeSlave.weight >= 130>>
			heavily
		<<else>>
			cross-legged
		<</if>>
		next to you. $He <<if canHear($activeSlave)>>listens raptly<<elseif canSee($activeSlave)>>reads along<<else>>focuses intently<</if>>, parroting obediently and clearly doing $his best to please, but you notice a certain incredulity that slowly fades as the lesson goes on. $He's obviously having trouble believing that $his owner would trouble _himselfP with $his vocabulary lessons. You work with $him several times a day, and $he's so diligent that by the end of the week $he's @@.green;beginning to make $himself understood,@@ though $his accent is still pretty atrocious.
		<<set $activeSlave.accent-->>
	<</replace>>
<</link>>
<br><<link "Teach $him the words for body parts">>
	<<replace "#result">>
		You order $him to stand next to you. $He hesitates, but eventually processes the instruction and hurries over. When $he comes to a stop, $he gasps to find you taking $him by the hands. You raise them slightly, bringing them <<if canSee($activeSlave)>>up into $his field of view<<else>>to $his attention<</if>>, and tell $him that these are $his hands. "Hand<<s>>," $he parrots in <<print $language>>, understanding that this is a language lesson. Your own hands slide over $his wrists to grasp $his
		<<if $activeSlave.weight > 160>>
			fat
		<<elseif $activeSlave.weight > 95>>
			chubby
		<<elseif $activeSlave.muscles > 5>>
			toned
		<<else>>
			soft
		<</if>>
		forearms, producing a little shiver; you name them, and $he repeats after you, "Arm<<s>>." You reach
		<<if $activeSlave.height >= 185>>
			a long way up to reach the tall
		<<elseif $activeSlave.height >= 160>>
			up to caress the
		<<else>>
			out to touch the diminutive
		<</if>>
		slave's shoulders possessively, and name them. "<<Sh>>oulder<<s>>."
		<br><br>
		You continue from there. "Neck. Chin. Lip<<s>>. Che<<s>>t. Boob<<s>>. N-nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>><<s>>. Belly. Hip<<s>>,
		<<if ($activeSlave.dick > 0)>>
			<<if ($activeSlave.balls > 0)>>
				c-cock, oh <<Master>>, p-plea<<s>>e, augh, ball<<s>>,
			<<else>>
				b-bitchclit, oh <<Master>>, p-plea<<s>>e,
			<</if>>
		<</if>>
		<<if ($activeSlave.vagina > -1)>>
			pu<<ss>>y. Cliiiiiit, oh <<Master>> n-nuh,
		<</if>>
		Butt," and finally, "B-butt, um, butthole."
		<br><br><span id="result2">
			<<link "Now let $him review">>
				<<replace "#result2">>
					You tell $him to do the inspection routine again, narrating it $himself. $He understands immediately, and hustles back to stand in front of your desk, brow furrowed in concentration as $he struggles to keep the vocabulary in $his head. $He shows each part of $his body to you in turn, and gets every single one of the terms to describe $his body — which in the legal sense, is actually //your// body, one of many you own — perfectly right, though of course $he repeats them in $his atrocious <<print aNational($activeSlave.nationality)>> accent. $He even @@.mediumaquamarine;has the confidence@@ to throw in a little flourish: $he says
					<<if $activeSlave.belly >= 10000>>
						"Belly!" with flirty emphasis, stroking it sensually.
					<<elseif ($activeSlave.boobs > 3000)>>
						"Boob<<s>>!" with flirty emphasis, bouncing them for you.
					<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>>
						"Cock!" with flirty emphasis, making it bounce for you.
					<<elseif ($activeSlave.dick > 0)>>
						"Bitchclit!" with flirty emphasis, making it wave for you.
					<<elseif ($activeSlave.lips > 40)>>
						"Lip<<s>>!" with flirty emphasis, and blows you a kiss.
					<<elseif ($activeSlave.butt > 4)>>
						"Butt!" with flirty emphasis, jiggling it for you.
					<<else>>
						"Butthole!" with flirty emphasis, bending over and <<if !canDoAnal($activeSlave)>>shaking $his anal chastity at<<else>>winking it for<</if>> you.
					<</if>>
					<<set $activeSlave.trust += 4>>
				<</replace>>
			<</link>>
			<<if canDoAnal($activeSlave)>>
				<br><<link "Cover some sexual vocabulary, and make sure $he doesn't forget it">>
					<<setNonlocalPronouns $seeDicks>>
					<<replace "#result2">>
						A glance at one of your desk monitors reveals that another slave whose business brought _himU past this area of the penthouse has paused and is listening quizzically, trying to figure out what this odd, heavily accented chant coming out of your office means. It soon becomes obvious. "Fingerfuuuck!" comes $activeSlave.slaveName's voice, loud and clear, and @@.hotpink;desperately eager to please.@@ $He continues, moving from "<<S>>phincter" to
						<<if ($PC.dick != 0)>>
							"<<Master>>'<<s>><<if $PC.vagina != -1>> futa<</if>> cock, oh no,"
						<<else>>
							"<<S>>trap-on, oh no,"
						<</if>>
						to repetition of "Anal, butt<<s>>e<<x>>, unh, a<<ss>>fucking, <<s>>odomy, um, buttfucking," and so on. Just when the eavesdropping _girlU decides that this has become monotonous and turns to go about _hisU business, $activeSlave.slaveName's voice rises sharply in pitch. "Aaah! "@@.gold;A<<ss>>rape!@@ Oh plea<<s>>e, <<Master>>, ohh, a<<ss>>rape, a<<ss>>rape," followed by much tearful repetition of what's happening to $him, and a final, sad <<if $PC.dick != 0>>"C-creampie,"<<else>>"Gape,"<</if>> in a defeated little voice.
						<<set $activeSlave.trust -= 2, $activeSlave.devotion += 4>>
						<<= VCheck.Anal($activeSlave, 1)>>
					<</replace>>
				<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
			<</if>>
		</span>
	<</replace>>
<</link>>

<<case "forbidden masturbation">>

<<link "Let $him earn relief">>
	<<replace "#result">>
		$He's extremely relieved that you're not going to punish $him for the rulebreaking when you tell $him that $he can touch $himself if $he
		<<if $activeSlave.belly >= 300000>>
			leans over $his _belly belly
		<<else>>
			gets on $his knees
		<</if>>
		and sucks you off. $He does a decent job, playing with $himself all the while. $He's learned that $he can get away with infractions if $he's willing to suck dick afterward. $His resistance to your will @@.mediumorchid;has increased.@@
		<<set $activeSlave.devotion -= 5>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br>Punish $him, but then let $him get off:
<<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "when $he sucks">>
		<<replace "#result">>
			You
			<<if $PC.belly >= 10000>>
				<<if $activeSlave.belly >= 300000>>
					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him,
				<<elseif $activeSlave.belly >= 5000>>
					order $him to bend over beside you so your pregnancy doesn't obstruct you as badly
				<<else>>
					lean back, pull $him over your knee and under your gravid dome of a middle
				<</if>>
			<<else>>
				<<if $activeSlave.belly >= 300000>>
					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>
				<<elseif $activeSlave.belly >= 5000>>
					spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap
				<<else>>
					pull $him down over your knee
				<</if>>
			<</if>>
			and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask to <<if $PC.dick != 0>>blow you<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through $his tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina != -1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously.
			<<run seX($activeSlave, "oral", $PC, "penetrative", 5)>>
			<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>> has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.dick == 0>>giving head<<else>>sucking cock<</if>>.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if ($activeSlave.fetish != "boobs") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "during nipple play">>
		<<replace "#result">>
			You
			<<if $PC.belly >= 10000>>
				<<if $activeSlave.belly >= 300000>>
					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip $him onto $his back, lower your gravid body down to $his level and start playing with $his nipples.
				<<elseif $activeSlave.belly >= 5000>>
					order $him to bend over beside you so your pregnancy doesn't obstruct you as badly and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples.
				<<else>>
					lean back, pull $him over your knee and under your gravid dome of a middle and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples.
				<</if>>
			<<else>>
				<<if $activeSlave.belly >= 300000>>
					tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap, $his stomach spreading your legs, and start playing with $his nipples.
				<<elseif $activeSlave.belly >= 5000>>
					spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples.
				<<else>>
					pull $him down over your knee and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples.
				<</if>>
			<</if>>
			$He writhes and sobs at the orgasm denial, since the nipple play is just barely enough to keep $him at a high level of arousal without giving relief. You switch back and forth until $he finally goes over into muscle-spasming climax during nipple stimulation alone.
			<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
			<<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of breast play has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at every brush against $his breasts.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if (($activeSlave.fetish != "pregnancy") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)) && $activeSlave.belly >= 5000>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while fondling $his belly">>
		<<replace "#result">>
			You
			<<if $activeSlave.belly >= 300000>>
				roll $him onto $his back
			<<else>>
				pull $him into a sitting position on your lap
			<</if>>
			and grope $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease $his <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from $his masturbation session.
			<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of pregnancy has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at <<if $activeSlave.pregKnown == 1>>every thought about $his pregnancy<<else>>the very thought of being pregnant<</if>>.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if canDoAnal($activeSlave)>>
	<<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "when $he takes it up the ass">>
			<<replace "#result">>
				You
				<<if $PC.belly >= 10000>>
					<<if $activeSlave.belly >= 300000>>
						tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him,
					<<elseif $activeSlave.belly >= 5000>>
						order $him to bend over beside you so your pregnancy doesn't obstruct you as badly
					<<else>>
						lean back, pull $him over your knee and under your gravid dome of a middle
					<</if>>
				<<else>>
					<<if $activeSlave.belly >= 300000>>
						tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>
					<<elseif $activeSlave.belly >= 5000>>
						spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap
					<<else>>
						pull $him down over your knee
					<</if>>
				<</if>>
				and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through $his tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously.
				<<= VCheck.Anal($activeSlave, 5)>>
				<<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>
					<<set $activeSlave.fetishStrength += 4>>
					@@.lightcoral;$His enjoyment of anal has increased.@@
				<<elseif random(1,100) > 50>>
					<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
					Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of anal sex.@@
				<</if>>
			<</replace>>
		<</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
	<</if>>
<</if>>
<<if ($activeSlave.fetish != "humiliation") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "in public">>
		<<replace "#result">>
			You bring $him out <<if $club > 0>>to $clubName<<else>>onto the street<</if>> and secure $him upright with a set of vibrators attached to all of $his erogenous zones. There's a lot of them, and they're extremely powerful; when you test the setup, $he wriggles with the intensity of the stimulation, and is about to climax when you shut it down. Without telling $him, you slave the vibrators to a program originally designed for VIP security details. It uses the cameras scattered through the area to detect when passersby are looking at $him. The more eyes on $him, the stronger the vibrations.
			<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of humiliation has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
				Before $he realizes what's happening, @@.lightcoral;$he's starting to long for humiliation.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if ($activeSlave.fetish != "submissive") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while submitting to a spanking">>
		<<replace "#result">>
			You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer $his bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has $his buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause $him just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating.
			<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of submission has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetish = "submissive", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
				Before $he realizes what's happening, @@.lightcoral;$he starts to associate submitting to you with getting off.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>
<<if ($activeSlave.fetish != "masochist") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>>
	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "while in pain">>
		<<replace "#result">>
			You order $him to
			<<if ($activeSlave.heels == 1) && shoeHeelCategory($activeSlave) == 0>>
				kneel
			<<elseif shoeHeelCategory($activeSlave) > 1>>
				teeter
			<<else>>
				stand
			<</if>>
			with $his arm<<if hasBothArms($activeSlave)>>s<</if>> over $his head and $his arm<<if hasBothLegs($activeSlave)>>s<</if>> splayed, and tell $him that if $he moves or resists $his punishment will begin again from the start.
			<<if ($activeSlave.chastityVagina) || ($activeSlave.chastityPenis == 1)>>
				$He was touching $his nipples and ass, so you flick and torture $his nipples and give $him a severe spanking.
			<<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>>
				$He was playing with $his oversized cock, so you kick and swat at the swollen monster, enjoying the way it spasms.
			<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>
				$He was touching $his limp dick and ass, so you slap and torture $his offending dick and give $him a severe spanking.
			<<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>>
				$He was desperately rubbing $his perineum and anus, the most sensitive parts $he has left, so you slap that part of $him repeatedly, enjoying the way it spasms.
			<<elseif $activeSlave.vagina == -1 || $activeSlave.clit >= 3>>
				$He was jacking it, so you force $him to get $himself hard for punishment and then deliver a series of agonizing slaps and flicks to $his offending member.
			<<elseif $activeSlave.labia > 1>>
				$His generous pussylips bear a sheen of incriminating moisture, so you slap and flick them, causing $him intense agony.
			<<else>>
				You deliver a series of agonizing slaps to $his mons.
			<</if>>
			You have to start over twice. By the end, $he's managed to orgasm to all the stimulation, but $he's crying and desperately promising never to touch $himself again without your permission. $His submission to you @@.hotpink;has increased.@@
			<<set $activeSlave.devotion += 4>>
			<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>>
				<<set $activeSlave.fetishStrength += 4>>
				@@.lightcoral;$His enjoyment of pain has increased.@@
			<<elseif random(1,100) > 50>>
				<<set $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>>
				Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= getWrittenTitle($activeSlave)>> beating $him.@@
			<</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "hates oral">>

<<link "Let $him earn a break for $his throat">>
	<<replace "#result">>
		You tell $him $he's a sex slave, and that $he needs to learn how to suck dick.
		<<if !canTalk($activeSlave) && hasAnyArms($activeSlave)>>
			$He frantically begs with gestures, pleading <<if hasBothLegs($activeSlave)>>on $his knees<<else>>desperately<</if>>.
		<<elseif !canTalk($activeSlave)>>
			$He frantically mouths pleas that you leave $his throat cock-free.
		<<else>>
			$He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape my mouth, <<Master>>!"
		<</if>>
		You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him earn a break for $his throat — for now.
		<<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>>
			You tell $him to lie back and spread $his legs, because you're going to give $him a good old fashioned missionary-position pounding. $He does so with unusual obedience<<if $activeSlave.belly >= 5000>>, $his legs hanging off the couch to give you a better angle with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> in the way<</if>>, and as you're giving $him a thorough pounding, whether out of relief, gratitude, or a desire to put on a good performance, $he certainly seems to be enjoying it more than usual.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>>
			You tell $him to bend over and spread $his ass for you, because if $he doesn't want you going in one end you're going to go in the other. $He does so with unusual obedience, and as you
			<<if ($activeSlave.anus == 1)>>
				gently but firmly pound $his still-tight ass
			<<elseif ($activeSlave.anus == 2)>>
				pound away at $his well-used backdoor
			<<else>>
				mercilessly jackhammer $his gaping hole
			<</if>>
			$he actively tries to match the rhythm of your thrusts.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			You tell $him that if $he's going to hesitate to use $his mouth when
			<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
				$he has no other hole to amuse you
			<<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>>
				$his only available hole is still virgin
			<<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
				all $his other holes are still virgin
			<<elseif $activeSlave.anus == 0>>
				$his girly little butthole is still virgin
			<</if>>
			$he's going to have to find an amazingly thorough way to please a dick if $he's going to earn $his throat a reprieve. $He looks<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> uncharacteristically<</if>> thoughtful for a moment before bending over before you, spitting in $his hand
			<<if $activeSlave.vagina == 0>>
				and thoroughly coating $his inner thighs with $his saliva.
			<<else>>
				and thoroughly coating the
				<<if $activeSlave.butt <= 2>>
					crack of $his slender
				<<elseif $activeSlave.butt <= 4>>
					crack of $his curvy
				<<elseif $activeSlave.butt <= 8>>
					crack of $his huge
				<<elseif $activeSlave.butt <= 12>>
					crevice of $his expansive
				<<elseif $activeSlave.butt <= 20>>
					ravine of $his endless
				<</if>>
				ass.
			<</if>>
			The invitation is obvious, but just to be sure $he pleads with you to satisfy yourself alongside $his
			<<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>>
				chastity. You answer $his pleading with your dick, and though it's not quite as pleasurable as pilfering an off-limits hole,
				<<if $activeSlave.vagina > -1>>
					before long $his <<if $activeSlave.vagina == 0>>virgin <</if>>cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts.
				<<else>>
					$activeSlave.slaveName's trembling whenever your thrusts slam against $his anal chastity is thoroughly entertaining.
				<</if>>
				Before long, you plaster $his belt with your cum.
			<<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>>
				virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. Before long, you plaster $his still-virgin hole with your cum.
			<<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>>
				virgin holes. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole,
				<<if $activeSlave.vagina == 0>>
					before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts.
				<<else>>
					$activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining.
				<</if>>
				Before long, you plaster $his still-virgin hole with your cum.
			<<elseif $activeSlave.anus == 0>>
				virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, $activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining. Before long, you plaster $his still-virgin hole with your cum.
			<</if>>
		<</if>>
		When you're done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll give every dick in $arcologies[0].name free access to $his throat. @@.hotpink;$He has become more obedient,@@ in the hope this will persuade you to not follow through on your threat.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Try to brute-force $his oral resistance with a public blowbang">>
	<<replace "#result">>
		Simple problems require simple solutions — $he'll get fucked in the mouth until $he either gets over $his hang-ups about oral or learns to hide them. You drag the protesting $activeSlave.slaveName out in public, chain $him low so that $his mouth is available, and tell $him that $he'll suck dicks until $he gets through five in a row without grimacing, gagging, or resisting. You have a comfortable chair brought out to you and settle in to watch the show.
		$activeSlave.slaveName tries, $he really does. But when word gets out as to the conditions of $his enslavement, $his users take a perverse enjoyment in being rougher than usual to evoke the exact reactions $he's trying to avoid. By the third failed streak, you've started to grow bored of the spectacle, but luckily you find entertainment in conversation with those who have already been entertained by poor $activeSlave.slaveName. Before long more chairs have been brought up and an impromptu salon has been set up alongside the blowbang line. By the sixth failed streak, an enterprising citizen has set up a small bar and is serving drinks. By the ninth, you've delegated watching $activeSlave.slaveName to your assistant. You personally break the eleventh streak after $he reached four, to general acclaim from your newfound friends and a toast to your virility.
		When the fourteenth streak is finally successful, there are serious talks about making these blowbang salons a regular occurrence and some backslapping directed towards you for your innovation in genteel hedonism. While you seriously doubt $activeSlave.slaveName enjoys oral sex any more than $he did at the start of the day, $he's certainly @@.green;learned to keep $his feelings on the matter to $himself.@@ $He did, however, @@.health.dec;have quite a rough time@@ of it<<if $activeSlave.skill.oral <= 30>>, though $he did learn a thing or two about sucking dick.<<= slaveSkillIncrease('oral', $activeSlave, 10)>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons.
		<<set $activeSlave.sexualFlaw = "none">>
		<<run seX($activeSlave, "oral", "public", "penetrative", random(65,80))>>
		<<run repX(500, "event", $activeSlave), healthDamage($activeSlave, 10)>>
	<</replace>>
<</link>>
<br><<link "Teach $him to see cum as a reward">>
	<<replace "#result">>
		You bring $activeSlave.slaveName into your office and stand $him in front of your leather couch. $He <<if canSee($activeSlave)>>eyes you <<elseif canHear($activeSlave)>>listens <<else>>waits silently and <</if>><<if $activeSlave.devotion < -20>>suspiciously<<else>>worriedly<</if>> as you ready a bullet vibrator.
		<<if $activeSlave.dick > 0>>
			You secure the bullet to $activeSlave.slaveName's frenulum.
		<<elseif $activeSlave.vagina == -1>>
			You secure the bullet to $his perineum.
		<<else>>
			You secure the bullet to $activeSlave.slaveName's clit.
		<</if>>
		You explain that the arcology continually monitors your vital signs, and will use them to estimate your arousal; the system controls the bullet vibrator, which will emit stimulating vibrations scaled to your pleasure. The more pleasure you feel, the more pleasant the vibrations will be, though they will not bring $him to orgasm until you climax. To demonstrate, you give the head of your cock a quick squeeze. $activeSlave.slaveName squeals in surprise at the sudden stimulation as the bullets spring to life. You tell $him to get to work. Though timid at first, as $he proceeds to blow you, $he becomes more and more enthusiastic as $his own pleasure builds. It isn't long until $he's deepthroating you enthusiastically and begging you to cum in $his mouth. You make $him hold out a bit longer, and then you complete the training session,
		<<if $PC.balls >= 30>>
			pumping cum into $his stomach until it visibly begins to swell.
		<<elseif $PC.balls >= 14>>
			pumping cum into $his stomach until it threatens to come back up.
		<<elseif $PC.balls >= 9>>
			cumming into $his mouth until it spurts from $his nose.
		<<else>>
			filling $his mouth with your cum.
		<</if>>
		$He climaxes in turn, and virtually melts into a quivering mess on your floor.
		<<if $activeSlave.dick > 0>>
			$activeSlave.slaveName's cock oozes cum from $his intense orgasm, and you command $him to clean it off the floor before $he gets back to $his duties.
		<</if>>
		<<if random(1,4) == 4>>
			@@.lightcoral;You've successfully linked cum and pleasure in $his mind,@@ guaranteeing $him a confusing few days as $he tries to reconcile this with $his hatred of oral sex.
			<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>>
		<<else>>
			This has @@.green;broken $him of $his bad habits.@@
			<<set $activeSlave.sexualFlaw = "none">>
		<</if>>
		This demonstration of your control over $him has @@.hotpink;worn down $his resistance to your commands.@@
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<<if ($activeSlave.dick > 0) && $activeSlave.balls > 0 && ($activeSlave.belly < 1500) && $activeSlave.weight < 130>> /* won't work if too pregnant */
	<br><<link "Make $him eat $his own cum">>
		<<replace "#result">>
			Your cum training tactics have two components: Cum should be linked with pleasure, and cum should not be disgusting to $activeSlave.slaveName, because even $activeSlave.slaveName produces it. To drive home these lessons, you lead $activeSlave.slaveName to your office's leather couch, arranging $his
			<<if $activeSlave.height < 150>>
				petite
			<<elseif $activeSlave.height < 160>>
				short
			<<elseif $activeSlave.height >= 170>>
				tall
			<<elseif $activeSlave.height >= 185>>
				very tall
			<</if>>
			form upside down with $his head on the cushion, $his back on the backrest, and $his <<if hasBothLegs($activeSlave)>>legs<<else>>ass<</if>> in the air. In this position, $his
			<<if ($activeSlave.dick > 10)>>
				obscene
			<<elseif ($activeSlave.dick > 9)>>
				inhuman
			<<elseif ($activeSlave.dick > 8)>>
				monstrous
			<<elseif ($activeSlave.dick > 7)>>
				imposing
			<<elseif ($activeSlave.dick > 6)>>
				massive
			<<elseif ($activeSlave.dick > 5)>>
				gigantic
			<<elseif ($activeSlave.dick > 4)>>
				huge
			<<elseif ($activeSlave.dick > 3)>>
				large
			<<elseif ($activeSlave.dick > 2)>>
				average
			<<elseif ($activeSlave.dick > 1)>>
				small
			<<elseif ($activeSlave.dick > 0)>>
				tiny
			<</if>>
			cock <<if $activeSlave.belly >= 100 || $activeSlave.weight > 30>>rests over $his <<if $activeSlave.pregKnown == 1>>early pregnancy<<else>>belly<</if>> and <</if>>hangs directly over $his anxious face.
			<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
				The aphrodisiacs in $his system already have $him so aroused $he's already dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin.
			<<elseif $activeSlave.prostate > 1>>
				$His overactive prostate has $him steadily dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin.
			<<else>>
				You sit next to $his vulnerable form on the couch as $he looks at you in anticipation.
			<</if>>
			You
			<<if canDoAnal($activeSlave)>>
				<<if ($activeSlave.anus > 2)>>
					insert a wide vibrating plug into $his gaping anus,
				<<elseif ($activeSlave.anus > 1)>>
					insert a big vibrating plug into $his ass,
				<<elseif ($activeSlave.anus > 0)>>
					insert a vibrating plug into $his tight ass,
				<<else>>
					place a bullet vibrator over the pucker of $his virgin anus,
				<</if>>
			<<else>>
				strap a strong vibrator to $his anal chastity,
			<</if>>
			secure a bullet vibrator $his quivering perineum, and another to the base of $his dick, and set them all to gradually increase the strength of their vibrations. In no time at all $he releases a
			<<if ($activeSlave.chastityPenis == 1)>>
				squirt of ejaculate from $his cock cage,
			<<elseif $activeSlave.balls > 0>>
				torrent of thick, white semen,
			<<elseif $activeSlave.prostate > 2>>
				torrent of nearly clear, watery ejaculate,
			<<elseif $activeSlave.prostate == 0>>
				pathetic dribble of semen,
			<<else>>
				pathetic dribble of watery ejaculate,
			<</if>>
			all of which lands right on $his outstretched tongue and pools in $his throat. You nudge $his chin to make $him close $his mouth and swallow. After a week of such treatment, $he @@.lightcoral;acquires a taste for semen.@@
			<<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.devotion += 4>>
		<</replace>>
	<</link>>
<</if>>

/*Written by anon, coded by Boney M*/

<<case "mindbroken morning">>

<<link "Let $him be">>
	<<replace "#result">>
		Satisfied that there's no need for immediate intervention, you head back to your desk. A few minutes later, $he heads in to finish getting ready and get to work, saving $assistant.name the necessity of directing $him. As the broken slave passes your office, you think for a moment that you see a bit of moisture glinting in $his eyes, but soon correct yourself: it's just a reflection from the glass walls of the arcology. $He makes it to $his assignment on time, and no one notices anything unusual about $him today.
	<</replace>>
	<<if $activeSlave.relationship == -3>>
		<<if def $activeSlave.kindness>>
			<<set $activeSlave.kindness += 2>>
		<<else>>
			<<set $activeSlave.kindness = 2>>
		<</if>>
	<</if>>
<</link>>
<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>
	<br><<link "See if an orgasm will cheer $him up">>
		<<replace "#result">>
			You<<if $PC.dick == 0>> don a strap-on and<</if>> slide your hands around $his
			<<if $activeSlave.belly >= 150000>>
				_belly distended
			<<elseif $activeSlave.weight > 95>>
				fat
			<<elseif $activeSlave.belly >= 5000>>
				<<if $activeSlave.bellyPreg >= 3000>>
					pregnancy swollen
				<<elseif $activeSlave.bellyImplant >= 3000>>
					implant swollen
				<<else>>
					<<print $activeSlave.inflationType>>-bloated
				<</if>>
			<<elseif $activeSlave.weight > 30>>
				pudgy
			<<elseif $activeSlave.waist < -95>>
				cartoonishly narrow
			<<elseif $activeSlave.muscles > 30>>
				ripped
			<<elseif $activeSlave.waist < -10>>
				wasp
			<<elseif $activeSlave.weight > 10>>
				soft
			<<elseif $activeSlave.muscles > 5>>
				toned
			<<elseif $activeSlave.weight >= -10>>
				trim
			<<else>>
				skinny
			<</if>>
			waist, feeling the warmth of $his skin, and gently step forward until $he's between you and the balcony railing. $He is silently obedient, not reacting at all other than to obey your direction as to where $he should go. For example, when $he feels <<if $PC.dick == 0>>the phallus<<else>>your hardening dick<</if>> pressing against $him, $he
			<<if ($activeSlave.height >= 170)>>
				unconsciously bends forward a little and cocks $his hips to position $himself
			<<else>>
				rises up on the balls of $his feet to bring $his short body up to the right height
			<</if>>
			<<if canDoVaginal($activeSlave)>>
				for penetration. $His
				<<if ($activeSlave.vagina > 2)>>
					loose cunt
				<<elseif ($activeSlave.vagina > 1)>>
					pussy
				<<else>>
					tight little pussy
				<</if>>
				is already moist in expectation, making entry easy.
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				for anal. $He relaxes $his
				<<if ($activeSlave.anus > 2)>>
					loose anus
				<<elseif ($activeSlave.anus > 1)>>
					asshole
				<<else>>
					tight little asshole
				<</if>>
				completely, making entry easy.
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
			Your hands rove, teasing $his $activeSlave.nipples nipples,
			<<if ($activeSlave.boobs > 1000)>>
				hefting $his heavy tits,
			<<elseif ($activeSlave.boobs > 300)>>
				squeezing $his healthy breasts,
			<<else>>
				pressing $him flat chest,
			<</if>>
			<<if $activeSlave.belly >= 1500>>
				massaging $his rounded belly<<if $activeSlave.belly > 10000>> and fondling $his popped navel<</if>>.
			<<else>>
				and
				<<if $activeSlave.weight > 130>>
					groping $his huge gut.
				<<elseif $activeSlave.weight > 95>>
					groping $his fat belly.
				<<elseif $activeSlave.muscles > 30>>
					fondling $his abs.
				<<elseif $activeSlave.weight > 10>>
					groping $his plush belly.
				<<else>>
					fondling $his flat stomach.
				<</if>>
			<</if>>
			$His face is complacent and unaffected even as $his body responds,
			<<if ($activeSlave.chastityPenis == 1)>>
				since $his body is used to its caged cock being neglected in favor of $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>.
			<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
				$his useless dick sporting a drop of precum.
			<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>>
				$his soft dick twitching feebly.
			<<elseif $activeSlave.dick > 4>>
				$his giant penis protruding through a gap in the railing.
			<<elseif $activeSlave.dick > 2>>
				$his penis pressing hard against the railing.
			<<elseif $activeSlave.dick > 0>>
				$his pathetic hard-on barely protruding from between $his thighs.
			<<elseif $activeSlave.clit > 0>>
				$his huge clit stiff under a brush from your fingers.
			<<elseif $activeSlave.vagina == -1>>
				$his asspussy ready and relaxed under a brush from your fingers.
			<<else>>
				$his pussy warm and wet under a brush from your fingers.
			<</if>>
			Even $his eventual orgasm is entirely mechanical, a simple tightening of $his
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina > 2)>>
					gaping cunt,
				<<elseif ($activeSlave.vagina > 1)>>
					traveled pussy,
				<<else>>
					tight vagina,
				<</if>>
			<<else>>
				<<if ($activeSlave.anus > 2)>>
					gaping
				<<elseif ($activeSlave.anus > 1)>>
					loosened
				<<else>>
					tight
				<</if>>
				sphincter,
			<</if>>
			a gasp of air into $his lungs, and a slight shiver. There is a flaw at the corner of $his mouth that might be transitory pleasure, but a look
			<<if canSee($activeSlave)>>
				into $his eye<<if hasBothEyes($activeSlave)>>s<</if>>
			<<else>>
				at $his face
			<</if>>
			confirms that it is not so.
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "masterful entertainer">>

<<link "Go clubbing">>
	<<replace "#result">>
		You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing glitzy heels, an extremely short skirt<<if $activeSlave.belly >= 5000>> barely noticeable under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, and a string bikini top so brief that $his areolae are clearly visible. As you descend through $arcologies[0].name the beats get faster and the drops get heavier. By the time you reach the club where the Free Cities' hottest DJ has a show tonight, $activeSlave.slaveName is a whirlwind of sexual energy in motion, moving <<if canHear($activeSlave)>>with every beat<<else>>wildly<</if>> and catching every eye<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>, despite how far along $he is<<elseif $activeSlave.belly >= 5000 || $activeSlave.weight > 130>>, despite how big $he is<</if>>. $His skills could have half the club lining up to fuck $him for money, but tonight $he's all yours. The entire floor is envious of you as the night wears on and $his dancing turns into sexually servicing you<<if canHear($activeSlave)>> in time with the music<</if>>.
		<<if ($activeSlave.chastityPenis == 1)>>
			The smell of $his pre-cum is noticeable even over the stink of sweat.
		<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
			$His tiny skirt does nothing to hide $his erection.
		<<elseif ($activeSlave.clit > 0)>>
			$His tiny skirt displays $his big, engorged clit.
		<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
			$His arched back and cocked hips make it very clear that $he wants $his asspussy fucked.
		<<else>>
			The smell of $his arousal is noticeable even over the stink of sweat.
		<</if>>
		<<if ($activeSlave.boobs > 1000)>>
			$His breasts get groped and mauled all night.
		<<elseif ($activeSlave.butt > 5)>>
			$He grinds $his ass against your crotch all night.
		<<else>>
			Cum joins the sweat running off $him.
		<</if>>
		The crowd is duly impressed; @@.green;your reputation has increased.@@
		<<run repX(500, "event", $activeSlave)>>
	<</replace>>
<</link>>
<<if $activeSlave.belly < 15000>>
	<br><<link "Attend a milonga">>
		<<replace "#result">>
			You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing classy heels and a gorgeous long dress cunningly designed to adhere to $him while $he dances despite the fact that it displays all of one leg, $his entire back<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, cleavage, and the sides of both breasts. $He has $his hair up in a perfect bun accented with a spray of the latest jewelry, and is wearing severe makeup that makes $him look aristocratic and elegant by turns. The host of the milonga, an old-world tango enthusiast, knows well the social graces and invites you, as the most prominent attendee, to perform the traditional demonstration tango that begins the dance. It goes wonderfully, and the entire party sighs in appreciation as you perform the classic tango. You lower $activeSlave.slaveName<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>'s heavy body<</if>> gracefully and pull $him back up into a close embrace, and breath catches in more than one throat. As tradition dictates $he dances with many partners throughout the night. One concession to Free Cities sensibilities is that the male and female roles in the tango may be filled by anyone, and $activeSlave.slaveName switches flawlessly between playing the female role to the elderly host one dance and the male role to his teenage granddaughter the next. The poor girl spends the rest of the evening staring at $activeSlave.slaveName with her tongue tied. Whoever $activeSlave.slaveName dances with, $he always subtly shows by glance and gesture that it's you $he truly wants. Everyone is quite envious of you; @@.green;your reputation has increased.@@
			<<run repX(500, "event", $activeSlave)>>
		<</replace>>
	<</link>>
<</if>>
<br><<link "Never mind Friday night; the moon's out and it's romantic on the balcony">>
	<<replace "#result">>
		You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door absolutely naked<<if $activeSlave.bellyPreg >= 1500>>, $his motherly body on full display<</if>>. $He has half a question on $his face, wondering whether this is going too far, but it vanishes when you <<if canSee($activeSlave)>>smile reassuringly at<<else>>compliment<</if>> $him. You take $him by the hand and lead $him out onto the private balcony outside your office. It's a cloudless night, and the moon is full. You order the arcology to play a classic dance medley, and $activeSlave.slaveName becomes all innocence and grace, the perfect dance partner<<if $activeSlave.bellyPreg >= 10000>>, despite $his heavy pregnancy<<elseif $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>, despite $his weight<</if>>. The only real consequence of $his nudity is
		<<if $activeSlave.boobs >= 300>>
			the extra sway of $his breasts,
		<</if>>
		<<if canPenetrate($activeSlave)>>
			$his visible erection, and
		<<elseif ($activeSlave.clit > 0)>>
			$his visibly engorged clit and
		<<elseif $activeSlave.boobs >= 300>>
			and
		<</if>>
		<<if $activeSlave.nipples != "fuckable">>the hardness of $his nipples<<else>>how swollen $his nipples are<</if>> in the cool night when the dance brings you close. $He enjoys $himself immensely and in no time at all, $he's meekly asking you to take $him inside and dance with $him on the bed. Naturally, you oblige.
	<</replace>>
	<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
	<<if ($activeSlave.toyHole == "dick" || $policies.sexualOpenness == 1) && canPenetrate($activeSlave)>>
		<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
		<<if canImpreg($PC, $activeSlave)>>
			<<= knockMeUp($PC, 20, 0, $activeSlave.ID)>>
		<</if>>
	<<elseif canDoVaginal($activeSlave)>>
		<<= VCheck.Vaginal($activeSlave, 1)>>
	<<elseif canDoAnal($activeSlave)>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<<elseif $activeSlave.boobs >= 1000>>
		<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
	<<else>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</if>>
	$His @@.hotpink;devotion to you@@ and @@.mediumaquamarine;trust in you@@ have increased.
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>

<<case "masterful whore">>

<<link "Require double repayment">>
	<<replace "#result">>
		Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he @@.yellowgreen;repay double what he owes.@@
		<<run cashX(random(150,200)*10, "event", $activeSlave)>>
	<</replace>>
<</link>>
<br><<link "Require double repayment and spend it on $him">>
	<<replace "#result">>
		Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he repay double what he owes. Slaves are not permitted to keep possessions, especially money, so you spend it on $activeSlave.slaveName directly. $He spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized<<if hasAnyLegs($activeSlave)>>, $his tired <<if hasBothLegs($activeSlave)>>feet<<else>>foot<</if>> rubbed<</if>>, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex.
		<<set $activeSlave.devotion += 10>>
	<</replace>>
<</link>>
<br><<link "Leverage the situation and reward $him">>
	<<replace "#result">>
		Archimedes might have his lever, but give you a place to set such information as this, and you can move a mountain of money. Before he knows what has beset him, your tenant is bustled out of $arcologies[0].name and replaced by a favored and hopefully more honest competitor, who @@.green;is well aware of the score here.@@ $activeSlave.slaveName, who made this possible, spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized<<if hasAnyLegs($activeSlave)>>, $his tired <<if hasBothLegs($activeSlave)>>feet<<else>>foot<</if>> rubbed<</if>>, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex, and $he @@.mediumaquamarine;trusts you@@ with all sorts of amusing whorehouse rumors.
		<<set $activeSlave.devotion += 3, $activeSlave.trust += 3>>
		<<run cashX(forceNeg(2000), "event", $activeSlave)>>
		<<set $arcologies[0].prosperity += 1>>
	<</replace>>
<</link>> //This option will cost <<print cashFormat(2000)>>//

<<case "sleeping ambivalent">>

<<link "Grope $his boob">>
	<<replace "#result">>
		$His eyes fly open as $he feels someone groping $him.
		<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
			You're mauling $his fake boob, squeezing it and making the skin of $his breast, which is already stretched rather taut by the implant, stretch a bit farther.
		<<elseif $activeSlave.boobs > 3000>>
			You're hefting and massaging $his mass of breastflesh, playing with $his <<if ($activeSlave.boobsImplant/$activeSlave.boobs) < .60>>mostly <</if>>natural boob, making $his huge soft udder bounce and jiggle.
		<<elseif $activeSlave.lactation > 0>>
			You're kneading and massaging $his udder, and the milk begins to <<if $activeSlave.nipples != "fuckable">>bead at<<else>>leak from<</if>> the cow's nipple.
		<<elseif $activeSlave.boobs > 300>>
			You've got $his whole tit in your hands, jiggling and squeezing the entire thing.
		<<else>>
			You're massaging and squeezing $his flat chest.
		<</if>>
		$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
		<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
			Though $he's smart,
		<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
			Though $he's not dumb,
		<<else>>
			$He's an idiot, and
		<</if>>
		in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
		<<switch $activeSlave.nipples>>
		<<case "inverted">>
			painfully protruding $his fully inverted nipple. $He puts up with even that, though $he cries a little as it pops out.
		<<case "partially inverted">>
			painfully protruding $his partially inverted nipple. $He puts up with that, too, though $he winces as it pops out.
		<<case "huge">>
			rolling $his huge nipple between a thumb and forefinger, hard enough to hurt. $He accepts the mammary abuse.
		<<case "fuckable">>
			forcing your entire fist into $his nipple. $He accepts the stimulation as best $he can.
		<<default>>
			playing with $his nipple, pinching it hard enough to hurt. $He accepts the mammary abuse.
		<</switch>>
		Satisfied, you leave $him to get back to sleep as best $he can.
		<<set $activeSlave.devotion += 4>>
		<<if $activeSlave.lactation > 0>>
			<<set $activeSlave.lactationDuration = 2>>
			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
		<</if>>
	<</replace>>
<</link>>
<<if $activeSlave.belly >= 5000 || $activeSlave.weight > 30>>
	<br><<link "Rub $his belly">>
		<<replace "#result">>
			<<if $activeSlave.bellyPreg >= 5000>>
				$His eyes fly open as soon as $he feels someone touching $his _belly, life-rounded, stomach.
				<<if $activeSlave.weight > 10>>
					You're massaging and teasing $his huge, soft belly.
				<<elseif $activeSlave.muscles > 5>>
					You're massaging and teasing $his taut belly and ruined abs.
				<<else>>
					You're massaging and teasing $his taut belly.
				<</if>>
				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
					Though $he's smart,
				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
					Though $he's not dumb,
				<<else>>
					$He's an idiot, and
				<</if>>
				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
				<<if $activeSlave.weight > 10>>
					sinking your hands into $his fat to get a good feel of the life growing within.
				<<else>>
					feeling for the life growing within $him.
				<</if>>
				<<if $activeSlave.weight > 30>>
					Though it takes some groping before you are met with a kick from $his unborn child.
				<<elseif $activeSlave.pregType < 3>>
					It doesn't take long before you are met with a kick from $his unborn child.
				<<else>>
					$He is so full of children that your ministrations are met with a hail of motion.
				<</if>>
				<<if $activeSlave.pregSource == -1>>Smiling at how active your children are<<else>>Satisfied<</if>>,
			<<elseif $activeSlave.bellyImplant >= 5000>>
				$His eyes fly open as soon as $he feels someone touching $his _belly stomach.
				<<if $activeSlave.weight > 10>>
					You're massaging and teasing $his huge, soft belly.
				<<elseif $activeSlave.muscles > 5>>
					You're massaging and teasing $his taut belly and ruined abs.
				<<else>>
					You're massaging and teasing $his taut belly.
				<</if>>
				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
					Though $he's smart,
				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
					Though $he's not dumb,
				<<else>>
					$He's an idiot, and
				<</if>>
				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
				<<if $activeSlave.weight > 10>>
					sinking your hands into $his fat to get a good feel of the implant hidden within.
				<<else>>
					feeling up the implant within $him.
				<</if>>
				<<if $activeSlave.weight > 30>>
					Though it takes some groping before you locate the firm sphere.
				<<elseif $activeSlave.belly < 10000>>
					It doesn't take long for you to have a solid grip on the firm sphere.
				<<else>>
					It's so huge it's hard to miss, but that just gives you more room to poke and prod at.
				<</if>>
				Satisfied,
			<<elseif $activeSlave.bellyFluid >= 5000>>
				$His eyes fly open as soon as $he feels someone touching $his _belly, <<print $activeSlave.inflationType>>-filled stomach.
				<<if $activeSlave.weight > 10>>
					You're massaging and jiggling $his huge, soft belly, enjoying the sounds it makes as you move it.
				<<elseif $activeSlave.muscles > 5>>
					You're massaging and jiggling $his taut belly and stretched abs, enjoying the sounds it makes as you move it.
				<<else>>
					You're massaging and jiggling $his taut belly, enjoying the sounds it makes as you move it.
				<</if>>
				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
					Though $he's smart,
				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
					Though $he's not dumb,
				<<else>>
					$He's an idiot, and
				<</if>>
				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by
				<<if $activeSlave.weight > 10>>
					sinking your hands into $his fat to get a good grip
				<<else>>
					wrapping your hands around the sloshing globe
				<</if>>
				and vigorously shaking. As $his gut's groaning from the sudden shift of its contents dies down, you gently apply pressure to the bloated organ, careful to only cause $his discomfort and not to disgorge $his contents. Satisfied,
			<<else>>
				$His eyes fly open as soon as $he feels someone touching $his
				<<if $activeSlave.weight > 190>>
					expansive belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and struggling to find $his belly button.
				<<elseif $activeSlave.weight > 160>>
					massive, soft belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and hidden belly button.
				<<elseif $activeSlave.weight > 130>>
					huge, soft belly. You're massaging and jiggling $his thick gut while teasing $his folds and hidden belly button.
				<<elseif $activeSlave.weight > 95>>
					big soft belly. You're massaging and jiggling $his gut while teasing $his folds and hidden belly button.
				<<else>>
					chubby middle. You're massaging and jiggling $his tiny gut.
				<</if>>
				$His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar <<if canSmell($activeSlave)>>smell<<else>>touch<</if>> and <</if>>realizes whose hand it is that's taking liberties with $him.
				<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
					Though $he's smart,
				<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
					Though $he's not dumb,
				<<else>>
					$He's an idiot, and
				<</if>>
				in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by roughly kneading $his pliant flesh, testing how well it can be molded into pleasurable valleys and ravines. Satisfied,
			<</if>>
			you leave $him to get back to sleep as best $he can.
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>>
<</if>>
<<if $PC.dick != 0>>
	<br><<link "Cum on $his face">>
		<<replace "#result">>
			You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You fancy yourself a bit of a marks<<= _womanP>>, and you don't feel the need to bend over $him to score good hits. Your load comes in three main jets: the first hits $him on the nipple, the second tracks up $his sternum and throat, and the third splashes full across $his face as $his eyes fly open<<if $PC.vagina != -1>>, each of these accompanied by some less directionally perfect girlcum<</if>>. $He sputters with surprise and then outrage, but <<if !canSee($activeSlave)>>once $he recognizes your <<if canTaste($activeSlave)>>taste<<else>>presence<</if>> and<<else>>then $he<</if>> realizes who it is standing over $him <<if canSee($activeSlave)>>and<<else>>does $he<</if>> @@.gold;freezes in terror.@@
			<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
				$He's quick, and $he immediately realizes
			<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
				$He's not dumb, and $he quickly realizes
			<<else>>
				$He gradually manages to calculate
			<</if>>
			that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your cum.
			<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
		<</replace>>
	<</link>>
<<else>>
	<br><<link "Squirt on $his face">>
		<<replace "#result">>
			You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You're on excellent terms with your cunt, and you know just what it takes to make yourself squirt. When you feel the heat building just right, you quickly straddle $his face without touching $him, angling yourself carefully and increasing the pace of your schlicking. In no time at all, a jet of femcum splashes onto $his face and down across $his chest. $He sputters with surprise and then outrage, but then $he <<if canSee($activeSlave)>>realizes whose pussy $he's staring straight into<<else>>recognizes your <<if canTaste($activeSlave)>>flavor<<else>>presence<</if>><</if>> and @@.gold;freezes in terror.@@
			<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
				$He's quick, and $he immediately realizes
			<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>>
				$He's not dumb, and $he quickly realizes
			<<else>>
				$He gradually manages to calculate
			<</if>>
			that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your pussyjuice.
			<<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>>
		<</replace>>
	<</link>>
<</if>>
<br><<link "Just watch $him for a little while">>
	<<replace "#result">>
		You stand there for a while, watching the exhausted slave sleep. It's an oddly restful sight, and the aesthetics of $his slumbering little movements hold your attention for a time.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You watch the subtle movements going on within $his womb as well.<</if>> After a while, you head to your own bed. Several of $his fellow slaves came and went as you watched $him, but if they're surprised by the sight, they have the presence of mind not to show it.
		<br><br>
		One of them quietly lets $him know about the incident the next day, though, and the overall impact on $his mental state is surprisingly positive. In a more normal human setting, the news that someone watched $him sleep last night without $his consent or even knowledge at the time would disturb $him greatly. However, it's not uncommon for slaves in the dormitory to wake up to the sounds of the occupant of the bedroll next to theirs getting fucked, and without any consent, either. Perhaps you're odd, $he's obviously thinking, but @@.mediumaquamarine;perhaps you won't rape $him while $he sleeps.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>

<<case "sexy succubus">>

<<link "Let $him eat">>
	<<replace "#result">>
		You tell $him $he's a good little succubus, and you're going to let $him feed. $He knows exactly what you mean, and
		<<if $activeSlave.belly >= 300000>>
			leans onto $his _belly stomach
		<<else>>
			<<if $activeSlave.belly >= 5000>>gently lowers $himself<<else>>gets<</if>> to $his knees
		<</if>>
		quickly, pressing $him $activeSlave.nipples nipples against your thighs and grasping your hips to give $himself leverage for some very aggressive oral. After
		<<if $PC.dick != 0>>
			a couple of lush sucks at each of your balls<<if $PC.vagina != -1>> and some eager nuzzling of your pussylips<</if>>, $he moves straight to a hard blowjob, deepthroating your cock and almost ramming $his head against you.<<if $PC.vagina != -1>> $He keeps $his tongue stuck out, and whenever $he gets you fully hilted, $he manages to reach your pussylips with it.<</if>> $He <<if $activeSlave.fetish == "cumslut">>doesn't have to pretend to be starving for your cum.<<else>>does a good job of acting like $he's authentically starving for your cum.<</if>> $He groans with satisfaction when you blow your load down $his gullet,
		<<else>>
			nuzzling $his nose against your moist cunt, $he starts to eat you out like $he's starving, sparing no time for subtlety, lapping up your female juices with evident relish. You run your fingers through $his $activeSlave.slaveName hair, telling $him $he'll have to survive on pussyjuice. $He replies, but you hold $his head hard against you as $he does, turning whatever $he says into an unintelligible, delectable mumbling into your womanhood. $He groans with satisfaction when you stiffen with orgasm, giving $him a final gush of girlcum,
		<</if>>
		and <<if $activeSlave.belly >= 5000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> bulk up<<else>>gets to $his feet<</if>> licking $his lips and patting $his _belly stomach.
		<<if $activeSlave.belly >= 1500>>
			"That wa<<s>> <<s>>uch a big meal <<Master>>, look how full it made me!" $He teases, pretending $his
			<<if $activeSlave.bellyPreg >= 1500>>
				gravid belly is filled with your fluids.
			<<elseif $activeSlave.bellyImplant >= 1500>>
				distended belly is filled with your fluids.
			<<else>>
				wobbling, <<print $activeSlave.inflationType>>-filled belly is filled with your fluids.
			<</if>>
			<<if $PC.balls >= 30>>
				Seeing as $he took the entirety of your inhuman load, there is some truth to $his words.
			<</if>>
		<</if>>
		$He's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part of a vampiric sex
		<<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 95)>>
			demon, and it's a role the incorrigible cumslut @@.hotpink;loves.@@
			<<set $activeSlave.devotion += 2>>
		<<elseif ($activeSlave.fetish == "cumslut")>>
			demon, and it's a role that @@.lightcoral;reinforces $his oral fixation.@@
			<<set $activeSlave.fetishStrength += 4>>
		<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
			demon, and the role @@.lightcoral;focuses $his attention on $his mouth.@@
			<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "cumslut">>
		<<else>>
			demon.
		<</if>>
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<<if canDoVaginal($activeSlave) && ($PC.dick != 0)>>
	<br><<link "Feed $him">>
		<<replace "#result">>
			<<setSpokenPlayerPronouns $activeSlave>>
			You tell $him $he's a good little succubus, and you're going to feed $him.
			<<if $activeSlave.boobs > 2000>>
				Reaching up under $his breasts for the top edge of $his outfit
			<<else>>
				Grabbing $his outfit's top edge
			<</if>>
			and seizing $him behind a knee with your other hand, you sling $him across
			<<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>>
				an unfortunate nearby tabletop. Once the table finishes its creaking and promises to hold $his weight, $he
			<<else>>
				a convenient tabletop nearby. $He
			<</if>>
			spreads $his legs for you, smiling with anticipation, $his
			<<if $activeSlave.vaginaLube > 0>>
				cunt already soaking wet.
			<<elseif $activeSlave.labia > 0>>
				prominent petals swollen with arousal.
			<<elseif $activeSlave.clit > 0>>
				big bitch button stiff with arousal.
			<<else>>
				cunt flushing with arousal.
			<</if>>
			$He reaches down around $his own ass and spreads $his pussy for you, only releasing $his fingertip grip on $his labia when $he feels you hilt yourself inside $his
			<<if $activeSlave.vagina > 2>>
				cavernous
			<<elseif $activeSlave.vagina > 1>>
				comfortable
			<<elseif $activeSlave.vagina > 0>>
				caressing
			<<else>>
				needy
			<</if>>
			channel.
			<<= VCheck.Vaginal($activeSlave, 1)>>
			You're here to rut, not make love, and you give it to $him hard, forcing <<if $activeSlave.voice >= 3>>high squeals<<else>>animal grunts<</if>> out of $him. $He climaxes strongly, and the glorious feeling finishes you as well, bringing rope after rope of your cum jetting into $him. $He groans at the feeling, and as $he <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 190>>slowly <</if>>gets to $his feet $he uses a hand to transfer a <<if canTaste($activeSlave)>>taste<<else>>bit<</if>> of the mixture of your seed and <<if $PC.vagina != -1>>both of your<<else>>$his<</if>> pussyjuice to $his mouth.
			<<if $activeSlave.belly >= 750000>>
				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope <<heP>> can handle them all!" $He groans, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. "<<Master>>! They won't <<s>>top! Oh... <<S>>o full... I can't <<s>>top con<<c>>eiving!" $He rolls onto $his back and clutches $his absurd stomach. "<<S>>o tight! <<S>>o full! <<S>>o Good! I need more! Oh, <<Master>>..." $He may be getting a little too into the fantasy.
				<<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>>
					A gush of fluid flows from $his pussy, snapping $him out of $his roleplay. "<<Master>>! I need... One'<<s>> coming now!" You rub $his contracting stomach, enjoying the feeling of the life within shifting to take advantage of the free space. You sigh and lean down, the vessel of your spawn needs help after pinning $himself in such a compromising position. Holding $his belly clear of $his crotch, you watch $him steadily push out $his child before spasming with orgasm and freeing it effortlessly into the world. After collecting it for a servant to handle, you help the exhausted $girl back to $his feet. $He thanks you sincerely for the assist before going to clean $himself up. You barely have time to turn away before another splash catches your attention. "<<Master>>... Another'<<s>>, mmmmh, coming..."
				<</if>>
			<<elseif $activeSlave.belly >= 600000>>
				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope <<heP>> can handle them all!" $He teases, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger.
			<<elseif $activeSlave.belly >= 450000>>
				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> <<s>>o good! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope <<heP>> can handle them all!" $He teases, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger.
			<<elseif $activeSlave.belly >= 300000>>
				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> <<s>>o good! I feel them moving! They're ready to come out <<Master>>!" $He teases, cradling $his _belly belly and pretending it just grew that huge.
			<<elseif $activeSlave.belly >= 150000>>
				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me, look how big I'm getting!" $He teases, cradling $his _belly belly and pretending it just rapidly became that large.
			<<elseif $activeSlave.belly >= 5000>>
				"Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you!" $He teases, cradling $his _belly belly and pretending it just grew that big.
			<<else>>
				"Oh <<Master>>! I feel it! Your <<s>>eed is being devoured by my eggs! I can't wait to <<s>>ee how happy they make you!" $He teases, rubbing $his belly and pretending to conceive.
			<</if>>
			$He's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part of a sex demon whose hunger knows no
			<<set $activeSlave.trust += 4>>
			<<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 95)>>
				end, and it's a role the pregnancy fetishist @@.hotpink;loves.@@
				<<set $activeSlave.devotion += 2>>
			<<elseif ($activeSlave.fetish == "pregnancy")>>
				end, and it's a role that @@.lightcoral;reinforces $his love of insemination.@@
				<<set $activeSlave.fetishStrength += 4>>
			<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
				end, and the role @@.lightcoral;focuses $his attention on insemination.@@
				<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "pregnancy">>
			<<else>>
				end.
			<</if>>
		<</replace>>
	<</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave) && ($activeSlave.anus > 0) && ($PC.dick != 0)>>
	<br><<link "Fuck $him without feeding $him">>
		<<replace "#result">>
			<<setSpokenPlayerPronouns $activeSlave>>
			You tell $him $he's a good little succubus. Thinking $he understands, $he
			<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
				turns and hugs the nearest wall,
				<<if $activeSlave.belly >= 300000>>
					sliding $his _belly belly down it until it parts $his legs. $He shuffles onto it to offer you $his needy cunt.
				<<else>>
					going up on tiptoe and cocking $his hips to offer you $his needy cunt.
				<</if>>
				$He moans as your dick
				<<if $activeSlave.vagina > 2>>
					enters $his big cunt.
				<<elseif $activeSlave.vagina > 1>>
					fills $his wet cunt.
				<<else>>
					slides slowly inside $his tight cunt.
				<</if>>
				As you fuck $him, you ask $him how succubi feed. "W-well," $he gasps, struggling to gather $his wits,
			<<else>>
				<<if $activeSlave.belly >= 300000>>
					leans onto $his _belly belly
				<<else>>
					gets down on $his knees
				<</if>>
				and starts to suck you off. $He deepthroats you eagerly, stretching to tickle your balls with $his tongue as $he gets you all the way in, and then shifting a hand to roll them around as $he sucks. As $he blows you, you ask $him how succubi feed. "Well," $he gasps, popping your dickhead free of $his mouth and replacing the sucking with a stroking hand,
			<</if>>
			"<<Master>>, they can eat a _womanP'<<s>> e<<ss>>en<<c>>e by <<s>>wallowing _hisP cum or getting _himP to ejaculate in<<s>>ide their pu<<ss>>ie<<s>>."
			<br><br>
			You ask $him whether $he would like to feed off you. "Oh ye<<s>> <<Master>>, plea<<s>>e. Plea<<s>>e feed me," $he begs. Too bad, you tell $him; $he gets to go hungry. After all, succubi can't feed using their butts.
			<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
				You withdraw from $his cunt and stuff your cock up $his ass without pausing or softening your thrusting at all.
			<<else>>
				You pull $him to $his feet by the hair, spin $him around, shove $him up against the wall, and stuff your cock up $his ass.
			<</if>>
			<<if $activeSlave.anus > 2>>
				It's not like $his experienced butt can't take an assraping, but
			<<elseif $activeSlave.anus > 1>>
				$His practiced ass relaxes and accommodates your dick, but
			<<else>>
				$His tight asshole spasms with pain as it stretches to accommodate you, and
			<</if>>
			$he whines at your sudden aggression, wiggling within your dominating grip. You fill $his ass with cum as $he struggles, still playing $his part, begging you not to cum in $his bottom, since succubi can't live on buttsex.
			<<set $activeSlave.trust += 4>>
			<<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 95)>>
				It's a role the submissive slut @@.hotpink;loves.@@
				<<set $activeSlave.devotion += 2>>
			<<elseif ($activeSlave.fetish == "submissive")>>
				It's a role that @@.lightcoral;reinforces $his submissive streak.@@
				<<set $activeSlave.fetishStrength += 4>>
			<<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>>
				The role @@.lightcoral;focuses $his attention on submission.@@
				<<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "submissive">>
			<<else>>
				$He @@.hotpink;plays the role well.@@
			<</if>>
			<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
			<<else>>
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<</if>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</replace>>
	<</link>>
<</if>>

<<case "PA flirting">>

<<link "Tell your personal assistant to fuck $him already">>
	<<replace "#result">>
		<<setSpokenAssistantPronouns $activeSlave>>
		You ask $assistant.name whether _heA's going anywhere with all this flirting. _HisA avatar looks at $activeSlave.slaveName. "Hear that,
		<<switch $assistant.appearance>>
		<<case "monstergirl">>
			human?" _heA growls. "You're all mine!"
			<br><br>
			"Oh noo, I'm being <<s>>acrifi<<c>>ed to a rape mon<<s>>ter,"
		<<case "shemale">>
			slut?" _heA says, smacking _hisA lips. "You're all mine!"
			<br><br>
			"Oh noo, there'<<s>> no way that thing will fit in<<s>>ide me,"
		<<case "amazon">>
			slave?" _heA roars, rubbing _hisA palms together powerfully. "You're my prize!"
			<br><br>
			"Oh noo, I've been captured by a horny amazon,"
		<<case "businesswoman">>
			bitch?" _heA says icily, making a steeple with _hisA fingers. "You'll satisfy me! Now!"
			<br><br>
			"Oh noo, I'm a <<s>>lave to a horny older <<= _womanA>>'<<s>> lewd de<<s>>ire<<s>>,"
		<<case "fairy" "pregnant fairy">>
			cutie?" _heA says, giggling devilishly. "You're aaaaaall miiiine!"
			<br><br>
			"Oh noo, I'm a <<s>>lave to a horny fairy'<<s>> lewd de<<s>>ire<<s>>,"
		<<case "schoolgirl">>
			cutie?" _heA says eagerly, already reaching down to start schlicking away. "You get to be my FWB!"
			<br><br>
			"Oh noo, I have to <<s>>ati<<s>>fy a naughty little <<s>>chool<<= _girlA>>,"
		<<case "goddess">>
			$girl?" _heA says beatifically. "When I'm through with you, you'll be as pregnant as I!"
			<br><br>
			"Oh noo, I'm about to be impregnated by a godde<<ss>>,"
		<<case "hypergoddess">>
			$girl?" _heA says beatifically. "When I'm through with you, you'll be struggling to move!"
			<br><br>
			"Oh noo, I'm about to be bur<<s>>t by a <<s>>lut godde<<ss>>,"
		<<case "loli">>
			$girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?"
			<br><br>
			"Oh noo, I'm about to be dominated by a <<loliA>>,"
		<<case "preggololi">>
			$girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?"
			<br><br>
			"Oh noo, I'm about to be dominated by a <<s>>lutty <<loliA>>,"
		<<case "angel">>
			$girl?" _heA says beatifically. "I'm going to show you divine skill!"
			<br><br>
			"Oh noo, I'm going to be taken to heaven,"
		<<case "cherub">>
			cutie?" _heA says cutely, already reaching down to start schlicking away. "You get to be my best friend for the evening!"
			<br><br>
			"Oh noo, I'm going to get bapti<<s>>ed by a <<s>>quirting little angel,"
		<<case "incubus">>
			dick-sleeve?" _heA says dominantly, already at full mast. "I'm going to use you till all you can think of is cock!"
			<br><br>
			"Oh noo, I'm going to fucked out of my mind,"
		<<case "succubus">>
			bitch?" _heA says dominantly, already wet. "I'm going to ride you till you're all used up!"
			<br><br>
			"Oh noo, I'm going to have my <<s>>e<<x>>ual e<<ss>>ence <<s>>tolen,"
		<<case "imp">>
			whore?" _heA says eagerly. "I'm going to torment you till you scream in pleasure!"
			<br><br>
			"Oh noo, I'd better <<s>>tart licking if I don't want to <<s>>uffer,"
		<<case "witch">>
			sexy?" _heA says eagerly, hiking _hisA dress to reveal a squirming cock. "For once a spell gone wrong is working out!"
			<br><br>
			"Oh noo, I'm going to get violated by a terrible witch,"
		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
			nest?" _heA says eagerly, forming multiple cocks out of _hisA body. "I'm going to fill you with eggs!"
			<br><br>
			"Oh noo, I'm going to be a nur<<s>>ery for a freak,"
		<</switch>>
		the $desc gasps with mock horror. Your personal assistant gives $him rapid-fire orders, making $him set up sex toys in the corner of your office to conform to _hisA avatar.
		<br><br>
		<<setNonlocalPronouns $seeDicks>>
		The next slave on the inspection enters and approaches you, sitting imperturbably behind your desk, but stops and stares when _heU notices what's going on in the corner of your office. A wallscreen in the corner shows $assistant.name's avatar
		<<switch $assistant.appearance>>
		<<case "monstergirl">>
			with both _hisA cocks up the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is
			<<if $activeSlave.belly >= 300000>>
				face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
			<<elseif $activeSlave.belly >= 5000>>
				face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
			<<else>>
				face-down,
			<</if>>
			with two fuckmachines pounding
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				$him: one in the pussy, one in the ass.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
				<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
			<<elseif canDoVaginal($activeSlave)>>
				$his pussy.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative", 2)>>
			<<else>>
				$his ass.
				<<run seX($activeSlave, "anal", "assistant", "penetrative", 2)>>
			<</if>>
		<<case "shemale">>
			with _hisA third leg inside
			<<if canDoVaginal($activeSlave)>>
				the pussy of an avatar of $activeSlave.slaveName. Below this, the slave $himself is taking vaginal from a fuckmachine with an absurdly big dildo.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
			<<else>>
				the ass of an avatar of $activeSlave.slaveName. Below this, the slave $himself is taking anal from a fuckmachine with an absurdly big dildo.
				<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
			<</if>>
		<<case "amazon">>
			powerfully fucking an avatar of $activeSlave.slaveName with a beautiful carved bone and worked leather strap-on.
			<<if canDoVaginal($activeSlave)>>
				Below this, the slave $himself is taking hard vaginal from a fuckmachine.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
			<<else>>
				Below this, the slave $himself is taking hard anal from a fuckmachine.
				<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
			<</if>>
		<<case "angel" "businesswoman" "cherub" "loli" "preggololi" "schoolgirl">>
			being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating.
			<<run seX($activeSlave, "oral", "assistant", "penetrative")>>
		<<case "fairy">>
			<<if $activeSlave.height < 35>>
				<<if $activeSlave.dick > 0>>bouncing on $activeSlave.slaveName's lap and eagerly taking $his cock, finally enjoying sex with someone _hisA size. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, bloated with cum.<<else>>legs tied to one another as they scissor enthusiastically, covered in sexual fluids from the waist down, Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>>
			<<else>>
				bouncing on $activeSlave.slaveName's <<if $activeSlave.dick > 0>>cock, distending _hisA belly with each thrust<<else>>hard clit<</if>> while a vine is gently penetrating below $him. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll pussy <<if $activeSlave.dick > 0>>bloated with cum<</if>> while a flexible dildo gently thrusts into $his
				<<if canDoVaginal($activeSlave)>>
					pussy. It's an ejaculating model, and it's currently pumping a large volume of semen into $his cunt.
					<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
				<<else>>
					ass. It's an ejaculating model, and it's currently pumping a large volume of semen into $his ass.
					<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
				<</if>>
			<</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 hand<<if hasBothArms($activeSlave)>>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.
				<<run seX($activeSlave, "oral", "assistant", "penetrative")>>
				<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
					<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
					<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
				<<elseif canDoVaginal($activeSlave)>>
					<<run seX($activeSlave, "vaginal", "assistant", "penetrative", 2)>>
				<<else>>
					<<run seX($activeSlave, "anal", "assistant", "penetrative", 2)>>
				<</if>>
			<</if>>
		<<case "goddess">>
			gently making love to an avatar of $activeSlave.slaveName, whose
			<<if $activeSlave.bellyPreg >= 1500>>
				_belly pregnant belly is growing ever more full of children.
			<<elseif $activeSlave.belly >= 1500>>
				_belly belly is growing ever larger and kicks begin to dot its surface.
			<<else>>
				belly is becoming distended.
			<</if>>
			Below this, the slave $himself
			<<if isItemAccessible.entry("a huge empathy belly", "bellyAccessory", $activeSlave) == true>>
				has a huge empathy belly hanging from $his middle and is
			<<else>>
				is
			<</if>>
			taking a fuckmachine
			<<if canDoVaginal($activeSlave)>>
				in $his cunt;
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
			<<else>>
				up $his butt;
				<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
			<</if>>
			it's 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.
		<<case "hypergoddess">>
			gently making love to an avatar of $activeSlave.slaveName, whose
			<<if $activeSlave.bellyPreg >= 450000>>
				_belly pregnant belly is rapidly ballooning with life and pushing $him upwards from the sheer size of the squirming mass.
			<<elseif $activeSlave.bellyPreg >= 1500>>
				_belly pregnant belly is growing taut and beginning to bulge from the amount of children growing within $him.
			<<elseif $activeSlave.belly >= 1500>>
				_belly belly is growing taut and beginning to bulge from the amount of children growing within $him.
			<<else>>
				belly is becoming massively distended.
			<</if>>
			Below this, the slave $himself
			<<if isItemAccessible.entry("a huge empathy belly", "bellyAccessory", $activeSlave) == true>>
				has a huge empathy belly hanging from $his middle and is
			<<else>>
				is
			<</if>>
			taking a fuckmachine
			<<if canDoVaginal($activeSlave)>>
				in $his cunt;
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
			<<else>>
				up $his butt;
				<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
			<</if>>
			it's 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.
		<<case "incubus">>
			powerfully fucking an avatar of $activeSlave.slaveName with a dick sized to perfectly fill $him.
			<<if canDoVaginal($activeSlave)>>
				Below this, the slave $himself is taking hard vaginal from a fuckmachine;
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative")>>
			<<else>>
				Below this, the slave $himself is taking hard anal from a fuckmachine;
				<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
			<</if>>
			it's 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.
		<<case "succubus">>
			<<if canPenetrate($activeSlave)>>
				riding $activeSlave.slaveName's dick. Below this, the slave $himself is humping a realistic fake pussy built into a finely crafted female lower body.
				<<run seX($activeSlave, "penetrative", "assistant", "vaginal")>>
			<<else>>
				being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating.
				<<run seX($activeSlave, "oral", "assistant", "penetrative")>>
			<</if>>
		<<case "imp">>
				being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn while the imp yanks a chain connected to $his nipples with one hand and smacks $him with a riding crop with the other. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating; a pair of <<if $activeSlave.nipples != "fuckable">>clamps attached to $his nipples randomly jerking<<else>>vibrators wedged in $his nipples violently vibrating<</if>> and a whip lined wheel steadily slapping at $his ass and back.
			<<run seX($activeSlave, "oral", "assistant", "penetrative")>>
		<<case "witch">>
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is
				<<if $activeSlave.belly >= 300000>>
					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
				<<elseif $activeSlave.belly >= 5000>>
					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
				<<else>>
					face-down,
				<</if>>
				with multiple vibrating dildos quivering in $his ass and pussy.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative", 2)>>
				<<run seX($activeSlave, "anal", "assistant", "penetrative", 2)>>
			<<elseif canDoVaginal($activeSlave)>>
				with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is
				<<if $activeSlave.belly >= 300000>>
					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
				<<elseif $activeSlave.belly >= 5000>>
					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
				<<else>>
					face-down,
				<</if>>
				with multiple vibrating dildos quivering in $his pussy.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative", 4)>>
			<<else>>
				with _hisA prehensile cocks crammed into the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is
				<<if $activeSlave.belly >= 300000>>
					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
				<<elseif $activeSlave.belly >= 5000>>
					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
				<<else>>
					face-down,
				<</if>>
				with multiple vibrating dildos quivering in $his ass.
				<<run seX($activeSlave, "anal", "assistant", "penetrative", 4)>>
			<</if>>
		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
			with _hisA tentacles crammed into every available hole in an avatar of $activeSlave.slaveName, rapidly pumping eggs into $his quickly swelling body.
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				Below this, the slave $himself
				<<if isItemAccessible.entry("a huge empathy belly", "bellyAccessory", $activeSlave) == true>>
					has a huge empathy belly strapped to $his middle and
				<</if>>
				is
				<<if $activeSlave.belly >= 300000>>
					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
				<<elseif $activeSlave.belly >= 5000>>
					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
				<<else>>
					face-down,
				<</if>>
				while a fuckmachine powerfully fucks $his mouth, ass and pussy.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative", 4)>>
				<<run seX($activeSlave, "anal", "assistant", "penetrative", 4)>>
				<<run seX($activeSlave, "oral", "assistant", "penetrative", 3)>>
			<<elseif canDoVaginal($activeSlave)>>
				Below this, the slave $himself
				<<if isItemAccessible.entry("a huge empathy belly", "bellyAccessory", $activeSlave) == true>>
					has a huge empathy belly strapped to $his middle and
				<</if>>
				is
				<<if $activeSlave.belly >= 300000>>
					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
				<<elseif $activeSlave.belly >= 5000>>
					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
				<<else>>
					face-down,
				<</if>>
				with multiple vibrating dildos quivering in $his pussy.
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative", 8)>>
				<<run seX($activeSlave, "oral", "assistant", "penetrative", 3)>>
			<<else>>
				Below this, the slave $himself
				<<if isItemAccessible.entry("a huge empathy belly", "bellyAccessory", $activeSlave) == true>>
					has a huge empathy belly strapped to $his middle and
				<</if>>
				is
				<<if $activeSlave.belly >= 300000>>
					face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>,
				<<elseif $activeSlave.belly >= 5000>>
					face-down, $his rear up in the air to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room,
				<<else>>
					face-down,
				<</if>>
				with multiple vibrating dildos quivering in $his ass.
				<<run seX($activeSlave, "anal", "assistant", "penetrative", 8)>>
				<<run seX($activeSlave, "oral", "assistant", "penetrative", 3)>>
			<</if>>
			At different intervals, an undulation moves down the dildo, forcing $him to stretch wide to allow it to pass into $his body. Each "egg" forced into $him coincides with another blast from the ejaculating model, and it's filled $him so completely that each gush of fake cum flows down $his legs to join the puddle on the floor.
		<</switch>>
		"@@.hotpink;Good $girl,@@" $assistant.name says. The new slave turns resolutely away from the arresting sight and gets on with the inspection, doing _hisU best to ignore the lewd noises coming from that part of the room.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<br><<link "Get the slave to get to the point">>
	<<replace "#result">>
		You tell $activeSlave.slaveName that $he and your personal assistant really should get a room. $He looks at $assistant.name's avatar, and then back up at you. $He gives you a mischievous look, and then bends down to whisper to the avatar behind $his hand.
		<<switch $assistant.appearance>>
		<<case "monstergirl">>
			"Why not," the monster<<= _girlA>> chuckles,
		<<case "shemale">>
			"Oh yeah, sure," the shemale giggles,
		<<case "amazon">>
			"Fuck yes," the amazon exclaims,
		<<case "businesswoman">>
			"Because you asked," the business<<= _womanA>> says,
		<<case "fairy" "pregnant fairy">>
			"Of course, cutie!" the fairy giggles,
		<<case "schoolgirl">>
			"Aw, hot! Of course," the school<<= _girlA>> giggles,
		<<case "goddess" "hypergoddess">>
			"Oh, lovely," the goddess says beatifically,
		<<case "loli">>
			"K-kay," the _loliA says naïvely,
		<<case "preggololi">>
			"Okay," the _loliA says excitedly,
		<<case "angel">>
			"What? But..." the angel says reluctantly,
		<<case "cherub">>
			"Sounds fun," the cherub says with a giggle,
		<<case "incubus">>
			"I'd never turn down getting my dick sucked," the incubus beams,
		<<case "succubus">>
			"You know it," the succubus exclaims,
		<<case "imp">>
			"Fuck yes," the imp shouts,
		<<case "witch">>
			"That would be nice," the witch says with a blush,
		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
			"Like you had a choice," the creature screams,
		<</switch>>
		and directs $him to an unoccupied room with the necessary sex toys.
		<br><br>
		Several minutes later, $assistant.name's avatar reappears on your desk,
		<<if ($activeSlave.fetishKnown == 0) || ($activeSlave.fetish == "none")>>
			making love to an avatar of $activeSlave.slaveName.
		<<elseif $activeSlave.fetish == "buttslut">>
			fucking an avatar of $activeSlave.slaveName up the ass. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar, which is a little overwhelmed, waves weakly.
			<<if canDoAnal($activeSlave)>>
				<<run seX($activeSlave, "anal", "assistant", "penetrative")>>
			<</if>>
		<<elseif $activeSlave.fetish == "cumslut">>
			getting oral from an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves, since $his mouth is full.
			<<run seX($activeSlave, "oral", "assistant", "penetrative")>>
		<<elseif $activeSlave.fetish == "sadist">>
			getting spanked by an avatar of $activeSlave.slaveName. "Oh, ah, e-excellent idea, <<= properTitle()>>, ow," _heA says, and the slave's avatar waves.
		<<elseif $activeSlave.fetish == "masochist">>
			raining spanks on an avatar of $activeSlave.slaveName as it kisses and licks $his lower legs. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves weakly, since $his mouth is busy.
			<<run seX($activeSlave, "oral", "assistant", "penetrative")>>
		<<elseif $activeSlave.fetish == "dom">>
			getting fucked by an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves cheerily.
			<<run seX($activeSlave, "penetrative", "assistant", "anal")>>
		<<elseif $activeSlave.fetish == "submissive">>
			along with a crowd of copies of $himself. They're gangbanging an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar waves weakly.
			<<run seX($activeSlave, "oral", "assistant", "penetrative", 5)>>
			<<if canDoAnal($activeSlave)>>
				<<run seX($activeSlave, "anal", "assistant", "penetrative", 5)>>
			<</if>>
			<<if canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", "assistant", "penetrative", 5)>>
			<</if>>
		<<elseif $activeSlave.fetish == "boobs">>
			kissing and sucking the nipples of an avatar of $activeSlave.slaveName. "Excellent idea, <<= properTitle()>>," _heA breaks off to say, and the slave's avatar waves.
			<<run seX($activeSlave, "mammary", "assistant", "penetrative")>>
		<<elseif $activeSlave.fetish == "pregnancy">>
			<<switch $assistant.appearance>>
			<<case "goddess" "hypergoddess" "incubus" "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
				fucking a heavily pregnant avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<= properTitle()>>," _heA says, thrusting hard and swelling $his partner's belly a bit more; the slave's avatar, which is a little overwhelmed and very full, waves weakly, before returning $his hand to $his overfilled middle.
			<<default>>
				fucking an avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<= properTitle()>>," _heA says, and the slave's avatar, which is a little overwhelmed, waves weakly.
			<</switch>>
			<<if canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
			<<else>>
				<<run seX($activeSlave, "anal", $PC, "penetrative")>>
			<</if>>
		<<else>>
			making sweet love to an avatar of $activeSlave.slaveName, in the missionary position. "Excellent idea, <<= properTitle()>>," _heA says, and then goes back to kissing the slave's delighted avatar.
			<<if canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
			<<else>>
				<<run seX($activeSlave, "anal", $PC, "penetrative")>>
			<</if>>
		<</if>>
		$activeSlave.slaveName probably isn't thinking about how far this is from vanilla human sexuality at the moment. But if $he took a moment to reflect, you muse, $he might be surprised at what @@.mediumaquamarine;$he's learned to be comfortable with.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>

<<case "dick wringing">>

<<link "Address $his problem together">>
	<<replace "#result">>
		You step in and give $him a quick kiss on the lips, telling $him you'd be happy to. $He was confident you would, but the tenderness makes $his breath catch a little. You take $him by $his
		<<if $activeSlave.weight > 130>>
			fat
		<<elseif $activeSlave.weight > 95>>
			chubby
		<<elseif $activeSlave.muscles > 30>>
			strong
		<<elseif $activeSlave.shoulders < 0>>
			pretty little
		<<elseif $activeSlave.shoulders > 1>>
			broad
		<<else>>
			feminine
		<</if>>
		shoulders and keep kissing $him, steering $him backwards into your office. $He gets the idea and cooperates as best $he can, giggling <<if $activeSlave.voice == 0>>mutely<<else>>cutely<</if>> into your mouth as $his hot and increasingly horny body bumps against your own.
		<br><br>
		When $his
		<<if $activeSlave.butt > 12>>
			monumental ass
		<<elseif $activeSlave.butt > 7>>
			titanic ass
		<<elseif $activeSlave.butt > 4>>
			big butt
		<<else>>
			cute rear
		<</if>>
		touches the edge of your desk, the
		<<if $activeSlave.height > 180>>
			tall $desc leans back
		<<elseif $activeSlave.height > 155>>
			$desc reclines
		<<else>>
			short $desc hops up
		<</if>>
		to lie across it, using a hand to lay $his inhumanly big dick
		<<if $activeSlave.belly > 10000>>
			onto $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly.
		<<elseif $activeSlave.weight > 160>>
			across $his gut.
		<<elseif $activeSlave.boobs > 5000>>
			in the warm canyon formed by $his inhumanly big boobs.
		<<elseif $activeSlave.weight > 95>>
			across $his soft belly.
		<<elseif $activeSlave.belly > 1500>>
			over $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly.
		<<elseif $activeSlave.muscles > 30>>
			across $his ripped abs.
		<<elseif $activeSlave.weight > 10>>
			across $his plush stomach.
		<<else>>
			up $his stomach.
		<</if>>
		$He spreads $his legs as wide as they'll go, and reaches down to spread $his buttocks even wider, offering you $his
		<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
			holes.
		<<elseif canDoVaginal($activeSlave)>>
			pussy.
		<<else>>
			asshole.
		<</if>>
		$He <<if $activeSlave.voice == 0>>tries to groan<<else>>groans<</if>> with anticipation of the coming relief as you slide <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> past $his
		<<if canDoVaginal($activeSlave)>>
			pussylips and inside $his womanhood.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			sphincter and inside $his asspussy.
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
		<br><br>
		It doesn't take long. $His <<if $activeSlave.scrotum == 0>>invisible but overfull balls<<else>>balls tighten and<</if>> shoot cum into $his soft python of a dick, but not a drop appears at its tip. Gasping at the mixed relief and discomfort, $he lets $his butt go and wriggles around to grab $his dick around its base with both hands. $He squeezes it from base to tip to bring out its contents. $He's so huge that $he's able to reach down with $his lips and get $his cockhead into $his mouth, the meat filling it entirely. $He sucks industriously, swallowing $his own load. $He was just trying to relieve the pressure, but the added stimulation brings $him to climax again. Silenced by $his own dickhead, $he shudders deliciously and starts over, wringing more cum into $his own mouth. You change angles, bringing the hard head of <<if $PC.dick != 0>>your own penis<<else>>your phallus<</if>> against $his prostate and forcing an agonizing third climax.
		<br><br>
		$He's so discombobulated by this that $he goes limp, offering no resistance as you extract yourself, <<if $PC.dick != 0>>straddle $his torso, and press your dick inside $his mouth to climax there, adding your own ejaculate<<else>>slip out of the harness with the ease of long practice, and straddle $his face so that your climax adds a good quantity of your pussyjuice<</if>> to everything $he's already gotten down<<if $PC.vagina != -1>><<if $PC.dick != 0>> and leaving quite a lot of your pussyjuice on $his chin<</if>><</if>>. When you finally release $him, $he slithers down to the floor, utterly spent.
		<<if !canTalk($activeSlave)>>
			$He raises a shaky hand to @@.mediumaquamarine;gesture thanks.@@
		<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>
			"@@.mediumaquamarine;Thank you,@@ <<Master>>," $he lisps weakly.
		<<else>>
			"@@.mediumaquamarine;Thank you,@@ <<Master>>," $he murmurs in a tiny voice.
		<</if>>
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<br><<link "Use $his trouble to dominate $him">>
	<<replace "#result">>
		You step in and trace a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand across $his lips before inserting two fingers into $his mouth. $He looks puzzled, but obediently begins to suck on your fingers. You use your other hand to explore $his body, titillating the heavily aroused $desc until $he's on the verge of orgasm. Without warning, you place an elastic band around the slave's dickhead. $He writhes with discomfort, but knows better than to protest. It's tight, but not agonizingly so. $He'll be able to cum, but not a drop will get out. Grabbing $him by a nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>>, you pull $him down to $his knees, enjoying the motion of $his body as $he wriggles with the discomfort of being tugged this way, the uncomfortable thing squeezing the tip of $his cock, and the suspicion that this is going to be tough.
		<br><br>
		Once $he's in position, you
		<<if $activeSlave.butt > 12>>
			struggle to wrap your arms around $his bountiful buttcheeks,
		<<elseif $activeSlave.butt > 7>>
			heft $his ridiculous buttcheeks possessively,
		<<elseif $activeSlave.butt > 4>>
			give $his huge ass a possessive squeeze,
		<<else>>
			run your hands across $his bottom,
		<</if>>
		and then shove <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>>
		<<if canDoVaginal($activeSlave)>>
			inside $his cunt.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			up $his butt.
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
		$His cock is so long that it drags along the floor as you pound
		<<if $activeSlave.belly >= 300000>>
			$him against $his _belly dome of a stomach.
		<<elseif $activeSlave.boobs > 12000>>
			$him, $his enormous tits serving as a cushion for $his torso to rest against.
		<<elseif $activeSlave.boobs > 7000>>
			$him, accompanied by the nipples that cap $his absurd boobs.
		<<else>>
			$him.
		<</if>>
		<br><br>
		$He's so pent up that $he reaches $his first climax quickly, filling $his capped dick with cum. $He <<if $activeSlave.voice == 0>>tries to moan<<else>>moans<</if>> at the combination of relief and pressure inside $his dick, and then slumps a little when $he feels the <<if $PC.dick != 0>>penis<<else>>hard phallus<</if>> inside $him fuck $him even harder, forcing $him towards a second orgasm. And after that one, a third. And a fourth.
		<br><br>
		When you finally climax yourself, you stand, leaving $him writhing at your feet with $his huge soft cock positively pressurized. Considering the situation, you kneel down at $his side, deciding what to do. Stroking $him in a mockery of reassurance, you grab $his agonized member, producing a <<if $activeSlave.voice == 0>>gaping, silent scream<<else>>little shriek<</if>>.
		<<if $activeSlave.toyHole == "dick" && ($PC.preg == 0 || $PC.vagina == 0)>>
			You maneuver the massive thing into your own <<if $PC.preg == 0 && $PC.vagina != -1>>pussy<<else>>asshole<</if>>, slide a finger in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>moans with expectation<<else>>begs abjectly to unleash $his<</if>>, and pop the elastic off. You get to watch $his face as $he floods your <<if $PC.preg == 0 && $PC.vagina != -1>>womanhood<<else>>bowels<</if>> with cum, your stomach taking on a distinctive swell as $his pent-up load empties into you.
			<<if $PC.vagina != -1>>
				<<run seX($activeSlave, "penetrative", $PC, "vaginal")>>
			<<else>>
				<<run seX($activeSlave, "penetrative", $PC, "anal")>>
			<</if>>
			<<if canImpreg($PC, $activeSlave)>>
				<<= knockMeUp($PC, 50, 0, $activeSlave.ID)>>
			<</if>>
		<<else>>
			You maneuver the massive thing inside the slave's own well-fucked <<if $activeSlave.vagina > -1>>pussy<<else>>asshole<</if>>, and then slide fingers in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>cries desperately<<else>>begs abjectly for mercy<</if>>. Popping the elastic off, you get to watch $his face as $he floods $his own <<if $activeSlave.vagina > -1>>womanhood<<else>>bowels<</if>> with cum.
			<<if canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
				<<if canGetPregnant($activeSlave) && canBreed($activeSlave, $activeSlave) && $activeSlave.vasectomy != 1>> /* can't miss the opportunity to knock $himself up */
					<<= knockMeUp($activeSlave, 20, 0, $activeSlave.ID, 1)>>
				<</if>>
			<<else>>
				<<run seX($activeSlave, "anal", $PC, "penetrative")>>
			<</if>>
		<</if>>
		The cum pressurization brought $him almost to half-hardness, and as this effect diminishes, $his dick slides out again, releasing a lewd torrent of cum. $He cries with overstimulation, relief, pain, and humiliation, @@.hotpink;groveling below you@@ in utter subjugation.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>

<<case "fucktoy tribbing">>

<<link "Make love to $him">>
	<<replace "#result">>
		You crane your neck down and kiss $him on the lips. $He awakens slowly, gently, $his <<= App.Desc.eyesColor($activeSlave)>> fluttering open, looking black in the nighttime gloom. $He smiles into your mouth, and you feel $his pulse quicken through the extensive contact down your bodies. You interlace your fingers between $hers and turn, pressing $him back down into the soft sheets. $He opens $himself for you, spreading $his legs wide and embracing you with them, making sure to run $his heels up the backs of your calves in a way that sends a shiver up your spine. Feeling this through your kissing mouths, $he smiles into you, a pleased expression $he maintains as you
		<<if $activeSlave.belly >= 300000 && $PC.belly >= 5000>>
			struggle to find a position to handle both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and
		<<elseif $activeSlave.belly >= 300000>>
			struggle to find a position to handle $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and
		<<elseif $activeSlave.belly >= 5000 && $PC.belly >= 5000>>
			shift into a position to better accommodate both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and
		<<elseif $PC.belly >= 5000>>
			shift into a position to better accommodate your pregnancy and
		<<elseif $activeSlave.belly >= 5000>>
			shift into a position to better accommodate $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and
		<</if>>
		begin to gently press your womanhood against $hers.
		<br><br>
		<<if ($activeSlave.fetishKnown == 0)>>
			Knowing little about $his sexual peccadilloes, but confident that $he'll do $his best to enjoy your lovemaking, you continue this shockingly intimate intercourse until $he climaxes.
		<<elseif ($activeSlave.fetish == "none")>>
			Knowing $him to be quite endearingly vanilla, you continue this shockingly intimate intercourse until $he climaxes, kissing $him all the way through your soft missionary lovemaking.
		<<elseif $activeSlave.fetish == "buttslut">>
			Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide a hand around behind and under $him so you can tease $his ass. $He gives $his butt a little wiggle of thanks, and orgasms promptly.
			<<run seX($activeSlave, "anal", $PC, "penetrative")>>
		<<elseif $activeSlave.fetish == "cumslut">>
			Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide your tongue into $his mouth, making your kisses so frankly sexual and penetrative that you're practically making oral love at the same time as you do it missionary style.
		<<elseif $activeSlave.fetish == "sadist">>
			You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more conventional pleasures, if only for the moment. $He complies with pleasure, climaxing with surprising speed; perhaps $he appreciates the change.
		<<elseif $activeSlave.fetish == "masochist">>
			Knowing $his tastes and wanting the intimacy of mutual pleasure, you nip $his lower lip in your teeth with each kiss, and rake your nails across $his flanks just hard enough to hurt a little. $He climaxes quickly to the mixed pain and missionary intimacy.
		<<elseif $activeSlave.fetish == "dom">>
			You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more equal pleasures, if only for the moment. $He complies with something like relief, climaxing with surprising speed; perhaps $he appreciates a turn on the bottom.
		<<elseif $activeSlave.fetish == "submissive">>
			Being on the bottom for some missionary lovemaking is very much to $his tastes, and $he rises to the point of climax with almost indecent speed. You slow your pace to nothing more than a gentle pressure now and then, and keep $him on the edge of orgasm for a long time.
		<<elseif $activeSlave.fetish == "boobs">>
			Knowing $his tastes and wanting the intimacy of mutual pleasure, you make sure your nipples line up <<if $activeSlave.nipples == "fuckable">>and interlock <</if>>with $hers as best you can. You note the buck of pleasure this produces each time you get it perfectly right as you make love to $him.
		<<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.pregKnown == 1>>
			Being on the bottom for some missionary lovemaking is very much to $his tastes, even though $he is already pregnant. $He builds to orgasm slowly, reveling in the feeling of being your $woman.
		<<elseif $activeSlave.fetish == "pregnancy">>
			Being on the bottom for some missionary lovemaking is very much to $his tastes, even though the encounter isn't particularly likely to get $him pregnant. $He builds to orgasm slowly, reveling in the feeling of being your $woman.
		<</if>>
		<<if canFemImpreg($PC, $activeSlave)>>
			<<= knockMeUp($PC, 5, 0, $activeSlave.ID)>>
		<</if>>
		As you made love to $him, the gentle motions, feminine sighs, and delicate aroma of pleasure woke the other slaves in bed with you, and they began their own intimacy with each other. As you go back to sleep, you're surrounded with something very like Sapphic paradise. $activeSlave.slaveName nestles up to you once more, embracing you with @@.mediumaquamarine;trust born of love.@@
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Fuck $him">>
	<<replace "#result">>
		You feel your libido building, building, building within you, an endless cycle that mounts rapidly to an inevitable explosion. It comes, and you perform a catlike glide around until your head is at $his feet. As you did, you infiltrated one of your legs between $hers from its convenient starting point. $He wakes suddenly to the feeling of being manhandled, and then comes fully awake to the shockingly intimate sensation of your pussies pressed together as closely as physically possible.
		<br><br>
		Holding $his upper thighs with your hands to pull $him against you, you grind into $him, fucking $him about as comprehensively as it's possible for someone without a cock to fuck a $woman. $He's most definitely up for it, and you see $his eyes fly wide in the gloom as the full weight of the pleasure crashes into $him. It's not exactly a position for lovemaking, since your faces are about as far apart as they can possibly be during sex, but kissing be damned, you're here to fuck. Naturally, this evolution wakes everyone else up too, and before long, there's a regular lesbian orgy going on. When it's over, $activeSlave.slaveName finds $himself returning exhaustedly to sleep, one of your arms curled
		<<if $activeSlave.belly >= 5000>>
			under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>
		<<else>>
			around $his middle
		<</if>>
		to cup $his pussy possessively. $He finds that @@.hotpink;$he doesn't mind.@@ $He's your $girl.
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "vaginal", $PC, "penetrative")>>
		<<if canFemImpreg($PC, $activeSlave)>>
			<<= knockMeUp($PC, 5, 0, $activeSlave.ID)>>
		<</if>>
	<</replace>>
<</link>>

<<case "cow milking">>

<<link "Treat $him right">>
	<<replace "#result">>
		You give $him a reassuring swat across the rump and tell $him you'd be happy to. You head toward the utility area with the milkers, and $he follows eagerly behind you,
		<<if $activeSlave.fetish == "boobs">>
			very ready to have you touch $his favorite part of $his body.
		<<else>>
			pleased you'd do this for $him and very ready to relieve the pressure in $his tits.
		<</if>>
		To $his surprise, you seat yourself on a stool and draw $him onto your lap rather than sitting $him at a milking machine. Reaching behind yourself, you give the $desc cow on your lap a broad bucket, and tell $him to hold it
		<<if $activeSlave.belly >= 5000>>
			under $his breasts as best $he can, given $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly.
		<<else>>
			on $his lap.
		<</if>>
		Then you reach around $him and take $his
		<<if $activeSlave.boobs > 6000>>
			gargantuan
		<<elseif $activeSlave.boobs > 2000>>
			huge
		<<else>>
			heavy
		<</if>>
		udders in your hands. $He gasps as $he realizes exactly how you plan to do this, and adjusts the bucket so it's below both of $his nipples at once.
		<br><br>
		$He instinctually expects the rhythmic tugging that the milkers usually produce, but what $he gets is a methodical massage of $his breasts, both at once. They're large enough to be more than a single handful, so you go bit by bit, ensuring that no part of $his udders goes untouched. $His nipples start to gush milk without help after a few moments of this, and $he groans with relief and satisfaction as $he feels $his breasts begin to empty and enjoys the sensation of the massage.
		<<if $activeSlave.fetish == "boobs">>
			$He orgasms strongly soon after the first jet of milk, producing an especially thick squirt.
		<</if>>
		After you're satisfied, you move your hands to $his nipples and milk $him like a cow, getting the last drops of milk out of $him
		<<if $activeSlave.fetish == "boobs">>
			and producing a shuddering series of aftershocks.
		<<else>>
			and bringing $him to a surprise orgasm.
		<</if>>
		When $he's done, $he leans back into you for a moment before setting the milk bucket down, a wordless gesture of @@.mediumaquamarine;considerable trust.@@ It means a lot to $him that you would milk $him yourself.
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
		<<set $activeSlave.lactationDuration = 2>>
		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
	<</replace>>
<</link>>
<br><<link "Treat $him like a cow">>
	<<replace "#result">>
		You ask $him if $he really wants to be treated like a cow. $He nods, a bit hesitantly, sensing a certain danger but not really knowing what else to do. You lead $him to the utility area of the penthouse, where the milkers are, but stop $him when $he starts for one. Instead, you
		<<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 hand<<if hasBothArms($activeSlave)>>s<</if>> on the other, so $he's <<if hasAllLimbs($activeSlave)>>on all fours<<else>>bent over<</if>> with $his udders hanging beneath $him<<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
		<<if canDoVaginal($activeSlave) && $PC.dick != 0>>
			a little cow pussy. You walk around behind $him and fuck $him hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.
			<<= VCheck.Vaginal($activeSlave, 1)>>
			When you're finished, you step away, leaving your cum to run out of $his cunt and down $his thighs,
		<<elseif canDoAnal($activeSlave) && $PC.dick != 0>>
			some cow ass. You walk around behind $him and buttfuck $his hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.
			<<= VCheck.Anal($activeSlave, 1)>>
			When you're finished, you step away, leaving your cum to drip out of $his gaped asshole,
		<<else>>
			a little cow tongue action.
			<<if $PC.vagina != -1>>
				You stand up and grind your pussy against the cow's upturned mouth, humping $his face hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.<<if $PC.dick != 0>> You pull away when you're about halfway there, only to shove your cock down $his throat instead.<</if>> When you're finished, you step away, leaving $his face thoroughly coated in girlcum<<if $PC.dick != 0>> and $his mouth full of your load<</if>>,
			<<else>>
			<</if>>
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		and ask $him what cows say. "Um, moo?" $he responds in a small,
		@@.hotpink;submissive@@ voice.
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "mammary", $PC, "penetrative")>>
		<<set $activeSlave.lactationDuration = 2>>
		<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
	<</replace>>
<</link>><<if $PC.dick != 0>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>><</if>>

<<case "refreshment delivery">>

<<link "Enjoy some oral with your refreshments">>
	<<replace "#result">>
		There were many things about being an arcology owner you didn't properly understand before you became one. One of the smallest and yet most enjoyable is the unlimited availability of
		<<if $PC.refreshmentType == 0>>
			a good $PC.refreshment
		<<elseif $PC.refreshmentType == 1>>
			a glass of $PC.refreshment
		<<elseif $PC.refreshmentType == 2>>
			a plate of $PC.refreshment
		<<elseif $PC.refreshmentType == 3>>
			$PC.refreshment
		<<elseif $PC.refreshmentType == 4>>
			a syringe of $PC.refreshment
		<<elseif $PC.refreshmentType == 5>>
			bottles of $PC.refreshment
		<<elseif $PC.refreshmentType == 6>>
			tabs of $PC.refreshment
		<</if>>
		and <<if $PC.dick != 0>>a blowjob<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>some cunnilingus<</if>>. Turning to $activeSlave.slaveName, you
		<<if $PC.refreshmentType == 0>>
			select a $PC.refreshment,
		<<elseif $PC.refreshmentType == 1>>
			pour yourself some $PC.refreshment,
		<<elseif $PC.refreshmentType == 2>>
			serve yourself a plate of $PC.refreshment,
		<<elseif $PC.refreshmentType == 3>>
			prepare a line of $PC.refreshment,
		<<elseif $PC.refreshmentType == 4>>
			select a syringe of $PC.refreshment,
		<<elseif $PC.refreshmentType == 5>>
			carefully tap out enough pills of $PC.refreshment to satisfy you,
		<<elseif $PC.refreshmentType == 6>>
			carefully pick up a tab of $PC.refreshment,
		<</if>>
		relieve the slave of the tray, and <<if !canSee($activeSlave)>>audibly <</if>>widen your legs slightly<<if $PC.belly >= 5000>> as you slide forward<</if>> in your chair. $He
		<<if $activeSlave.belly >= 300000>>
			gently leans onto $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly
		<<elseif $activeSlave.belly >= 5000>>
			gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to its knees
		<<else>>
			immediately drops to $his knees
		<</if>>
		and gets to work,
		<<if $activeSlave.skill.oral >= 100>>
			using all of $his mastery in giving oral pleasure.
		<<elseif $activeSlave.skill.oral > 60>>
			using all of $his skills in giving oral pleasure.
		<<else>>
			doing $his best despite $his mediocre oral skills.
		<</if>>
		<<if $activeSlave.teeth == "pointy">>
			You can feel the extreme care $he has to take to keep $his shark-like teeth clear of you.
		<<elseif $activeSlave.lips > 40>>
			$His huge lips are soft and pillowy against you.
		<<elseif $activeSlave.teeth == "fangs">>
			You can feel the slight hesitations as $he takes care to not poke you with $his fangs.
		<<elseif $activeSlave.teeth == "fang">>
			$His fang adds some thrill as it rubs against you.
		<<elseif $activeSlave.teeth == "gapped">>
			You can feel the slight hesitations as $he takes care to not pinch you between $his front teeth.
		<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
			You can feel the slight hesitations as $he takes care to keep $his braces off you.
		<</if>>
		You take your time,
		<<if $PC.refreshmentType == 0>>
			smoking meditatively
		<<elseif $PC.refreshmentType == 1>>
			taking meditative sips
		<<elseif $PC.refreshmentType == 2>>
			taking meditative bites
		<<elseif $PC.refreshmentType == 3>>
			enjoying your $PC.refreshment high
		<<elseif $PC.refreshmentType == 4>>
			injecting a fix into your arm
		<<elseif $PC.refreshmentType == 5>>
			popping a few $PC.refreshment
		<<elseif $PC.refreshmentType == 6>>
			holding the tab under your tongue
		<</if>>
		and running a thoughtful hand
		<<if $activeSlave.hLength > 1>>
			through $activeSlave.slaveName's $activeSlave.hColor hair
		<<else>>
			across $activeSlave.slaveName's scalp
		<</if>>
		while you look at the view out your office windows. This isn't the first time you've done this, nor will it be the last, and $activeSlave.slaveName is @@.hotpink;used to being used as a serving $girl.@@
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Show $him a special way to enjoy refreshments">>
		<<replace "#result">>
			<<if $PC.refreshmentType != 2>>
				You tell $him to hop up on the desk. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his complete lack of surprise, you tell $him to pull $his legs back and spread $his hole<<if canDoVaginal($activeSlave)>>s<</if>>. As $he opens $himself for you, $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> that you're doing something with
				<<if $PC.refreshmentType == 0>>
					the $PC.refreshment,
				<<elseif $PC.refreshmentType == 1>>
					the bottle of $PC.refreshment,
				<<elseif $PC.refreshmentType == 2>>
					the plate of $PC.refreshment,
				<<elseif $PC.refreshmentType == 3>>
					the bag of $PC.refreshment,
				<<elseif $PC.refreshmentType == 4>>
					the syringe of $PC.refreshment,
				<<elseif $PC.refreshmentType == 5>>
					the bottle of $PC.refreshment,
				<<elseif $PC.refreshmentType == 6>>
					the tabs of $PC.refreshment,
				<</if>>
				and <<if $activeSlave.trust > 50>>relaxes, trusting you completely<<else>>does $his best to relax<</if>>. $He gasps when $he feels
				<<if $PC.refreshmentType == 0>>
					the head of the lit $PC.refreshment, warm from your mouth, being gently inserted into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You give $him precise muscular instructions, which $he does $his best to obey, and before long, $he's slowly smoking it using $his fuckhole. $His body is very permeable there, and the effects of the it hit $him very quickly.
				<<elseif $PC.refreshmentType == 1>>
					the cool tip of a small enema bulb being gently inserted into $his ass. You press the $PC.refreshment into $him slowly. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly.
				<<elseif $PC.refreshmentType == 3>>
					$PC.refreshment being gently inserted into $his ass. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly.
				<<elseif $PC.refreshmentType == 4>>
					the tip of the syringe penetrate $his <<if $activeSlave.dick > 0>>cock head<<elseif $activeSlave.vagina == -1>>tiny front hole<<else>>clit<</if>> and the sting of the contents being forced into $his sex organ. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly.
				<<elseif $PC.refreshmentType == 5>>
					your finger pushing a pill deep into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly.
				<<elseif $PC.refreshmentType == 6>>
					finger pushing a tab into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but it quickly dissolves and $his body is very sensitive there, so the effects hit $him very quickly.
				<</if>>
				You go back to work, letting the slave loll around on your desk, enjoying the effects. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun.
			<<else>>
				You tell $him to hop up on the desk and face you. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his surprise, you <<if $PC.boobs >= 300>>unfasten your top, freeing your breasts, and <</if>>uncover your <<if $PC.dick != 0>>stiffening cock<<if $PC.vagina != -1>> and moistening pussy<</if>><<else>>moistening pussy<</if>>. Taking some $PC.refreshment in your fingers, you massage it onto your erect
				<<if $PC.dick != 0 && $PC.boobs >= 300>>
					nipples and dick
				<<elseif $PC.vagina != -1 && $PC.boobs >= 300>>
					nipples and clit
				<<elseif $PC.dick != 0>>
					dick
				<<else>>
					clit
				<</if>>
				making sure to cover yourself completely. You recline in your seat, beckoning to $activeSlave.slaveName to lick you clean. $He eagerly complies, eager to get a <<if canTaste($activeSlave)>>taste<<else>>bit<</if>> of $PC.refreshment after nothing but slave food for so long.
				<<if $activeSlave.skill.oral > 60>>
					$He is extremely skilled with $his tongue; before long, not only are you completely cleaned, but you can barely feel your crotch from $his masterful sucking.
				<<elseif $activeSlave.skill.oral > 30>>
					$He is quite skilled with $his tongue; before long, you are both cleaned off and enjoying some $PC.refreshment after the powerful orgasm $he coaxed out of you.
				<<elseif $activeSlave.skill.oral > 10>>
					$He has basic skill with $his tongue; before long, you are nearly cleaned of all the $PC.refreshment. With one final lick, $he takes the last <<if canTaste($activeSlave)>>taste<<else>>drop<</if>> of it and brings you to climax at the same time.
				<<else>>
					$He has no idea how to make this pleasurable; $he is merely greedily lapping up the $PC.refreshment off your body. As $he nears finishing your crotch, you grab $his head and hold $him to yourself until you are satisfied with $his licking.
				<</if>>
				You go back to work, letting the slave sits back on your desk, licking $his lips of the combined <<if canTaste($activeSlave)>>taste<<else>>feeling<</if>> of you and $PC.refreshment. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun<<if canTaste($activeSlave)>> and tasty<</if>>.
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<</if>>
			<<set $activeSlave.trust += 4>>
		<</replace>>
	<</link>>
<</if>>
<<if $PC.refreshmentType == 0>>
	<br><<link "Put your $PC.refreshment out on $him">>
		<<replace "#result">>
			You select a $PC.refreshment and start smoking, ordering $him to stick around and get $his tits out. $He sees nothing too unusual about this, and obeys complaisantly, standing beside you with $his breasts bare. You reach over and play with $him as you smoke, teasing $his
			<<if $activeSlave.nipples == "huge">>
				massive, erect nipples.
			<<elseif $activeSlave.nipples == "inverted">>
				painfully tender inverted nipples.
			<<elseif $activeSlave.nipples == "partially inverted">>
				tender, partially inverted nipples.
			<<elseif $activeSlave.nipples == "fuckable">>
				nipplecunts with your fingers.
			<<elseif $activeSlave.lactation > 0>>
				motherly nipples.
			<<else>>
				nipples and playing with $his boobs.
			<</if>>
			Deciding that you're done with the $PC.refreshment, you pull a long draw of smoke into your mouth, bringing the coal at its foot to a fine glow. Then you pull it out of your mouth and press it against the slave's defenseless $activeSlave.skin <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>pregnant belly<<else>>breast<</if>>. $He <<if $activeSlave.voice == 0>>makes the horrible rasping noise that $his mute throat substitutes for screams of agony<<else>>shrieks with agony<</if>>, flinching away instinctively, and collapses to the ground<<if $activeSlave.fetish == "masochist">>, orgasming from the sudden rush of stimulation<</if>>. Writhing in pain, $he cherishes the burn on $his <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>stomach<<else>>breast<</if>> with both hands, $his sobbing only interrupted by ragged gasps for breath. You order $him to go get $his burn looked at, and go back to your work. $He scrabbles toward the door, weeping,<<if $activeSlave.fetish == "masochist">> horrified at $himself for getting off to that, @@.hotpink;more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;eager to get away.@@
			<<set $activeSlave.trust -= 5>>
			<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
		<</replace>>
	<</link>>
<</if>>

<<case "tittymonster inspection">>

<<link "Continue $his inspection as scheduled">>
	<<replace "#result">>
		You're already late for this little meeting; you wouldn't want to keep $him here when you both have more productive things to do. $His inspection is exemplarily routine; $he has nothing significant to report. When all is said and done, you dismiss $him, and $he stands up, <<if $activeSlave.devotion > 20>>genuinely<<else>>quickly<</if>> thanks you for your time, and leaves.
	<</replace>>
<</link>>
<br>
<<link "Use $him as a cushion">>
	<<replace "#result">>
		You tell $him $he's looking very nice today. Surprised, $he manages <<if $activeSlave.devotion > 20>>to thank you prettily, wondering<<else>>to thank you hesitantly, worrying about<</if>> what comes next. You pick up a tablet, come around your desk, and fold yourself into a lotus position, just in front of $him and with your back to $him. Struck by this strange and trusting maneuver, $he keeps still, letting you get yourself situated. You slide backward until you are pressed against the mound of breasts behind you, and then relax into their soft, fleshy mass. Your back nestles naturally into $his cleavage, and the give of $his huge mammaries conforms to you, allowing you to rest your elbows comfortably on each breast as though they were armrests. Feeling the weight of you against $his chest, $activeSlave.slaveName throws $his arms back, bracing $himself against the floor.<<if $activeSlave.belly >= 15000>> You can feel $his full, taut, <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> just barely once you have sunk deep into $his cleavage.<</if>> You begin to tap away at the tablet, and $he realizes <<if $activeSlave.devotion > 20>>with pleased surprise<<else>>with mixed resentment and relief<</if>> that you intend to use $him as a sort of human cushion for a while. From where $he's sitting, $he <<if canSee($activeSlave)>>can easily read over your shoulder, and you make no attempt to stop $him<<else>>could read over your shoulder, if $he could see<</if>>; keeping secrets from your slaves is generally impractical, and <<if $activeSlave.devotion > 20>>this $desc is trustworthy<<else>>there's nothing $he could do with your secrets, even if $he were to try<</if>>. After an hour or so, you inspect $him and dismiss $him, and $he leaves @@.mediumaquamarine;trusting $his bizarre place@@ in your world.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Enjoy $his helplessness">>
		<<replace "#result">>
			You give $him no orders at all, since $his helplessness makes $him <<if $activeSlave.devotion > 20>>cooperation<<else>>consent<</if>> completely unnecessary for what you're planning. $He makes to turn as you come around behind $him, but $he can manage only a partial crane of $his shoulders and neck to <<if canSee($activeSlave)>>see<<else>>figure out<</if>> what you're doing. Seizing $his ankles, you haul $his legs out from under $his boobs and body, and then push $him forward, balancing $his body atop $his tits as though they were an exercise ball. <<if $activeSlave.devotion > 20>>$He giggles at this<<else>>$He struggles a little at the sudden discomfort<</if>>, and tries to steady $himself with $his hands, so you pull them around behind $him and pin $his arms to $his $activeSlave.skin back with one of your hands. You <<if $PC.dick != 0>>shove your dick up<<else>>pull on a strap-on with your other hand and insert it into<</if>> $his defenseless
			<<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. Then you fuck $him.
			<<= VCheck.Simple($activeSlave, 1)>>
			<br><br>
			You're physically fit to begin with, and between that and all the practice you get, you pride yourself on your <<if $PC.dick != 0>><<if $PC.vagina != -1>>master level futa skills<<else>>cocksmanship<</if>><<else>>power with a strap-on<</if>>. You can fuck hard, and $activeSlave.slaveName gets fucked hard. Having all of $his weight on $his tits, and being sawed back and forth on top of those tits, is not comfortable.
			<<if canDoVaginal($activeSlave)>>
				<<if $activeSlave.vagina < 3>>
					Worse, only the most veteran cunt could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it.
				<</if>>
			<<else>>
				<<if $activeSlave.anus < 3>>
					Worse, only the most veteran asspussy could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it.
				<</if>>
			<</if>>
			<<if $activeSlave.voice == 0>>Since $he cannot groan, $he begins to gasp raggedly<<else>>$He begins to grunt and groan<</if>> with each forward thrust as you penetrate $him, pressing $him forward across $his cushion of boobs. $He tries to take some of the weight off with $his feet, but after some vain scrabbling $he's obliged to @@.hotpink;give up and take it.@@
			<br><br>
			When you're finished, you withdraw and drop $him, letting $him slump against $his sore breasts. $He's too tired and overstimulated to do anything but stay limp, and $his relaxed <<if canDoVaginal($activeSlave)>>pussy<<else>>butthole<</if>> <<if $PC.dick != 0>>releases drips of your cum to go sliding down $his thighs<<else>>glistens attractively with lube<</if>>. You direct
			<<if $boobAccessibility == 1 || $pregAccessibility == 1>>
				the accessibility assistance functions of your office to
			<<else>>
				the slaves who helped $him in to return and
			<</if>>
			help $him get cleaned up, and turn to your desk to get some work done as they struggle with the mountain of exhausted, fucked-out tits discarded in the middle of your office.
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "bonded love">>

<<link "Tell $him $he's a good slave">>
	<<replace "#result">>
		Without turning your head, you tell $him $he's a very good slave. $He laughs happily<<if canTalk($activeSlave)>>, though of course this is silent<<else>> throatily<</if>>, $his warm breath gusting against your ear. It took confidence for $him to come in here and tell $him $he loved you, and $he @@.mediumaquamarine;trusts you more@@ for responding this way. $He plants a light kiss on your cheek and walks quickly out of your office, hurrying to go about $his day's business, but careful to strut $his stuff for you on $his way out.
		<<if $activeSlave.butt < 3>>
			$His nice little butt moves cutely as $he goes. $His small buttocks leave
			<<if !canDoAnal($activeSlave)>>
				$his anal chastity visible from the rear as $he walks.
			<<elseif $activeSlave.analArea > 3>>
				the huge area of puckered skin around $his asspussy clearly visible from the rear, and $his asshole works lewdly with the motion.
			<<elseif $activeSlave.anus > 1>>
				$his asshole visible, the pucker of $his backdoor lewdly available.
			<<else>>
				$his tight anus visible from the rear as $he walks.
			<</if>>
		<<elseif $activeSlave.butt < 6>>
			$His healthy butt bounces as $he goes. $His big buttocks mostly conceal
			<<if !canDoAnal($activeSlave)>>
				$his anal chastity, but there's the occasional tempting glimpse.
			<<elseif $activeSlave.analArea > 3>>
				the huge area of puckered skin around $his asspussy, but $his butthole is so well used that it's obvious from the rear that $he takes it up the ass. A lot.
			<<elseif $activeSlave.anus > 1>>
				$his backdoor, but there's the occasional cute glimpse of $his experienced anus.
			<<else>>
				what's between them, but there's the occasional cute glimpse of $his tight rosebud.
			<</if>>
		<<else>>
			$His gigantic ass jiggles as $he goes. $His enormous buttocks mostly stay together as $he moves,
			<<if !canDoAnal($activeSlave)>>
				completely swallowing $his anal chastity.
			<<elseif $activeSlave.analArea > 3>>
				almost concealing the huge area of puckered skin around $his lewd asspussy.
			<<elseif $activeSlave.anus > 1>>
				completely concealing $his welcoming backdoor.
			<<else>>
				completely concealing $his tight asshole.
			<</if>>
		<</if>>
		$He pauses for an instant in the doorway, turns over $his shoulder to give you a sexy wink, and is gone.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Tell $him you love $him too">>
	<<replace "#result">>
		You turn towards $him and direct the full weight of your gaze into $his eyes. <<if canSee($activeSlave)>>$His eyelids flicker with the shock of the shared look<<else>>$His eyes may not be capable of sight, but $he can feel your gaze<</if>>, so close, but $he bears it, biting $his lower lip. Then you kiss $him. The released tension is too much for $him, and $he moans, slumping against you a little as you kiss $him like a lover. $He's so lost in it that when you break the kiss, $his mouth stays slightly open and pursues yours slightly, hungry for more. You place a finger against $his moist lips, making $him wait a moment, and tell $him that you love $him too. $He makes <<if $activeSlave.voice == 0>>a quiet moaning sound, deep in $his useless throat,<<else>>an almost animal sound, somewhere between a sob and a moan,<</if>> and as you withdraw your finger, $he kisses you back. $He knows $he has a job to do today, and it's waiting for $him, so when you give $him no indication that you'd like $him to stay, $he withdraws, keeping $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> on yours, doing $his best to @@.hotpink;make love to you@@ with $his gaze.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>

<<case "bad dream">>

/* TODO: add a positive variant */

<<link "Let $him be">>
	<<replace "#result">>
		It may be for the best to not disturb $his unpeaceful slumber, you decide. Admiring the attractive view for just a moment longer, you turn back and head to your own bed. The next morning, it appears as though $activeSlave.slaveName doesn't even remember this nightmare.
	<</replace>>
<</link>>
<br><<link "Hug $him">>
	<<replace "#result">>
		You reach out to hug $him, but as soon as your hand touches $his shoulder, $he writhes instinctively away. <<if canSee($activeSlave)>>$His eyes fly open, searching frantically for $his assailant. Seeing that it's you, $he screams and scrabbles away even harder. After making it a few feet, $he collects $his wits enough to bring $himself to a stop and stop screaming, though $he continues to sob, staring at you in terror<<else>>$He gropes frantically for $his assailant, before making contact with you. $He screams and scrabbles away, only stopping when $he collides with the nearest solid object. <<if canHear($activeSlave)>>Only after several call outs that it is you does $he stop screaming, though $he continues to sob, listening to your every breath in terror<<else>>After screaming $himself hoarse, $he realizes that $his assault has abruptly ended, and gently feels around $his surroundings with a shaking hand to discover $himself back in $his room<</if>><</if>>. $He remains frozen in place as you slowly advance on $him and give $him a light embrace. $His tears gradually stop, but $he does not relax, <<if canSee($activeSlave)>>remaining dumbly stiff<<else>>continuing to quake in fear<</if>> within your arms. Eventually you let $him go, and $he crawls pathetically back under $his sheet, still weeping softly. It seems $he is @@.gold;more afraid of you@@ than ever, and if you thought that a simple hug could win $him over, you were wrong.
		<<if canSee($activeSlave)>>
			<<set $activeSlave.trust -= 4>>
		<<elseif canHear($activeSlave)>>
			<<set $activeSlave.trust -= 5>>
		<<else>>
			<<set $activeSlave.trust -= 6>>
		<</if>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Rape $him">>
		<<replace "#result">>
			You snatch the sheet off $him, shove $his uppermost shoulder down so $his face is smashed into the pillow, and bring your knees down between $his legs, spreading them to force $hers apart. You use the hand that isn't controlling $his torso to locate $his
			<<if canDoVaginal($activeSlave)>>
				<<if $activeSlave.vagina > 2>>
					amusingly loose cunt
				<<elseif $activeSlave.vagina > 1>>
					large womanhood
				<<elseif $activeSlave.vagina > 0>>
					tight pussy
				<<else>>
					poor virgin pussy
				<</if>>
			<<else>>
				<<if $activeSlave.anus > 2>>
					amusingly broad asshole
				<<elseif $activeSlave.anus > 1>>
					big butthole
				<<elseif $activeSlave.anus > 0>>
					tight rosebud
				<<else>>
					poor virgin anus
				<</if>>
			<</if>>
			in the dark as $he begins to @@.gold;struggle and scream.@@ $He comes fully awake when $he feels your rough fingers searching for and then finding $his
			<<if ($activeSlave.vagina >= 0) && canDoVaginal($activeSlave)>>vagina<<else>>crinkled hole<</if>>, and $his noise increases to the point where it becomes annoying. You stuff $his face into the pillow and take $him mercilessly, using the pillow to cut off $his breath whenever $he struggles too much, until oncoming suffocation forces $him to go still and take it like a good little bitch.
			<br><br>
			@@.mediumorchid;Sometimes dreams do come true.@@
			<br><br>
			<<= VCheck.Simple($activeSlave, 1)>>
			<<set $activeSlave.trust -= 4, $activeSlave.devotion -= 4>>
		<</replace>>
	<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>

<<case "shower slip">>

<<link "Carry $him to where $he needs to go">>
	<<replace "#result">>
		You scoop $him up into a bridal carry. $He <<if $activeSlave.voice == 0>>gasps, since $he can't squeal<<else>>squeals cutely<</if>>, holding on for dear life, and keeps $his face nestled against $his <<= getWrittenTitle($activeSlave)>>.
		<<set _carried = 1>>
		<<if $activeSlave.belly >= 300000>>
			<<if $activeSlave.bellyPreg > 3000>>
				$His _belly pregnancy
			<<else>>
				$His _belly belly
			<</if>>
			makes holding $him extremely difficult, not including just how much it weighs, so you're forced to quickly return $him to $his feet.
			<<set _carried = 0>>
		<<elseif $activeSlave.boobs > 40000>>
			$His expansive tits not only weigh $him down, but also keep you from holding $him up for long.
			<<set _carried = 0>>
		<<elseif $activeSlave.weight > 160>>
			$He's certainly an armful and a little too fat for you to hold for long.
			<<set _carried = 0>>
		<<elseif $activeSlave.balls > 200>>
			$His tremendous balls serve as an imposing anchor, quickly forcing you to lower $him back to the ground.
			<<set _carried = 0>>
		<<elseif $activeSlave.dick > 30>>
			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
				$His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
			<<else>>
				$His hanging dick adds tremendously to $his weight and touches the floor, preventing you from really carrying $him very far.
				<<set _carried = 0>>
			<</if>>
		<<elseif $activeSlave.belly >= 100000>>
			<<if $activeSlave.bellyPreg > 3000>>
				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
					$His pregnancy is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
				<<else>>
					$His pregnancy is truly gigantic and a little too big for you to safely carry without the risk of dropping, quickly forcing you to lower $him.
					<<set _carried = 0>>
				<</if>>
			<<else>>
				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
					$His _belly belly is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
				<<else>>
					$His _belly belly is truly an armful and a little to heavy for you to carry, quickly forcing you to lower $him.
					<<set _carried = 0>>
				<</if>>
			<</if>>
		<<elseif $activeSlave.boobs > 25000>>
			$His enormous boobs
			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
				add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
			<<else>>
				add tremendously to $his weight and are awkward to manage, quickly forcing you to lower $him.
				<<set _carried = 0>>
			<</if>>
		<<elseif $activeSlave.weight > 130>>
			$He's a
			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
				fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
			<<else>>
				fatty and a little too big and heavy for you to hold for long.
				<<set _carried = 0>>
			<</if>>
		<<elseif $activeSlave.balls > 100>>
			$His enormous balls
			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
				add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance, even though you have to step awkwardly to avoid kneeing $his sensitive sack.
			<<else>>
				add tremendously to $his weight and dangle ponderously, quickly forcing you to lower $him or risk accidentally kneeing the sensitive sack.
				<<set _carried = 0>>
			<</if>>
		<<elseif $activeSlave.dick > 20>>
			$His dangling cock adds tremendously to $his weight and is awkward to walk with, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.butt > 18>>
			$His expansive ass
			<<if $arcologies[0].FSPhysicalIdealist != "unset">>
				adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
			<<else>>
				adds tremendously to $his weight and is awkward to handle, quickly forcing you to lower $him.
				<<set _carried = 0>>
			<</if>>
		<<elseif $activeSlave.boobs > 8000>>
			$His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.weight > 95>>
			$He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.height > 180>>
			$He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.weight > 30>>
			$He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.bellyPreg >= 10000>>
			$He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.bellyImplant >= 10000>>
			$His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.bellyFluid >= 10000>>
			$His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance.
		<<elseif $activeSlave.height > 160>>
			$He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him.
		<<elseif $activeSlave.weight > 10>>
			$He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him.
		<<else>>
			You could carry the little slave like this as long as you like.
		<</if>>
		<<if _carried == 1>>
			Knowing that $he'll need to get dressed before the next part of $his day, you carry $him to <<if $activeSlave.rules.living == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He remains perfectly limp, letting $himself be carried without a word. When you set $him on $his feet,
		<<else>>
			Knowing that $he'll need to get dressed before the next part of $his day, you help $him to <<if $activeSlave.rules.living == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He lets you do most of the work, letting $himself be guided without a word. When you set $him on $his bed,
		<</if>>
		there's a little unaccountable moisture in $his <<= App.Desc.eyesColor($activeSlave)>> @@.mediumaquamarine;for some reason.@@ $He gives you a kiss and thanks you prettily.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && $activeSlave.belly < 15000>>
	<br><<link "Scoop $him up and fuck $him">>
		<<replace "#result">>
			You squat down, and $he plants $his feet, expecting to be given a swat on the bottom and sent on $his way. Instead, you run your hands down $his
			<<if $activeSlave.weight > 130>>
				well-padded
			<<elseif $activeSlave.weight > 95>>
				padded
			<<elseif $activeSlave.muscles > 30>>
				heavily muscled
			<<elseif $activeSlave.weight > 30>>
				chubby
			<<elseif $activeSlave.weight > 10>>
				plush
			<<elseif $activeSlave.muscles > 5>>
				toned
			<<else>>
				soft
			<</if>>
			thighs, producing a shiver from the $desc, and lift $him up against your chest, pinning $him there with your hands supporting the backs of $his knees. Giggling<<if $activeSlave.voice == 0>> mutely<</if>>, $he finds $himself held in a fetal position with $his back pressed against your <<if $PC.boobs >= 300>>tits<<else>>chest<</if>>.
			<<if $activeSlave.boobs > 40000>>
				$His expansive tits not only weigh $him down, but also force you to push $him against the shower wall for added support.
			<<elseif $activeSlave.weight > 160>>
				$He's certainly an armful and a little too fat, forcing you to push $him against the shower wall for added support.
			<<elseif $activeSlave.balls > 200>>
				$His tremendous balls serve as an imposing anchor, quickly forcing you to push $him against the shower wall for added support.
			<<elseif $activeSlave.dick > 30>>
				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
					$His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
				<<else>>
					$His hanging dick adds tremendously to $his weight and touches the floor, quickly forcing you to push $him against the shower wall for added support.
				<</if>>
			<<elseif $activeSlave.boobs > 25000>>
				$His enormous boobs
				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
					add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
				<<else>>
					add tremendously to $his weight and are awkward to manage, quickly forcing you to push $him against the shower wall for added support.
				<</if>>
			<<elseif $activeSlave.weight > 130>>
				$He's a
				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
					fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
				<<else>>
					fatty and a little too big and heavy, quickly forcing you to push $him against the shower wall with a wet slap.
				<</if>>
			<<elseif $activeSlave.balls > 100>>
				$His enormous balls
				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
					add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
				<<else>>
					add tremendously to $his weight and dangle ponderously, quickly forcing you to push $him against the shower wall for added support.
				<</if>>
			<<elseif $activeSlave.dick > 20>>
				$His dangling cock adds tremendously to $his weight and dangles heavily, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.butt > 18>>
				$His expansive ass
				<<if $arcologies[0].FSPhysicalIdealist != "unset">>
					adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
				<<else>>
					adds tremendously to $his weight and is awkward to handle, quickly forcing you to push $him against the shower wall for added support.
				<</if>>
			<<elseif $activeSlave.boobs > 8000>>
				$His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.weight > 95>>
				$He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.height > 180>>
				$He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.weight > 30>>
				$He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.bellyPreg >= 10000>>
				$He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.bellyImplant >= 10000>>
				$His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.bellyFluid >= 10000>>
				$His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him.
			<<elseif $activeSlave.height > 160>>
				$He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease.
			<<elseif $activeSlave.weight > 10>>
				$He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease.
			<<else>>
				You can hold the little slave like this as long as you like.
			<</if>>
			You shift your grip to hold $him with one hand so you can
			<<if $PC.dick != 0>>
				maneuver your cock inside $him, and then resume your original hold so you can slide $him up and down your shaft. <<if $PC.vagina != -1>>You make sure $he's really hilted at the height of each stroke, putting some nice pressure on your pussy.<</if>>
			<<else>>
				slide your fingers inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>, since you're not putting $him down to get a strap-on. Knowing $he can't reach your cunt to return the favor like this, $he relaxes and lets you play with $him.
			<</if>>
			Helpless, $he has nothing to do but <<if canSee($activeSlave)>>watch $himself get fucked in a full length mirror. $He stares, fascinated, and the sight<<else>>let $his hands wander across $his body. Teasing $his nipples<<if $activeSlave.bellyPreg >= 5000>> and pregnant belly<</if>><</if>> gets $him off quickly,
			<<if $activeSlave.dick == 0>>
				$his muscles tensing prettily with female orgasm.
			<<elseif ($activeSlave.chastityPenis == 1)>>
				a dribble of cum flowing from the tip of $his chastity cage.
			<<elseif canAchieveErection($activeSlave)>>
				$his stiffly waving cock jetting cum onto the floor.
			<<elseif $activeSlave.dick > 6>>
				$his absurd cock twitching lazily as $his ejaculate makes it down its length.
			<<elseif $activeSlave.balls == 0>>
				$his bitchclit dribbling weakly.
			<<elseif $activeSlave.dick > 0>>
				$his limp dick twitching as $he cums.
			<<else>>
				making $him shudder.
			<</if>>
			When you're done, you let $him down, and the first thing $he does is spin in your embrace to give you an @@.hotpink;earnest kiss.@@
			<<= VCheck.Simple($activeSlave, 1)>>
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>

<<case "happy dance">>

<<link "Enjoy the show">>
	<<replace "#result">>
		There are low leather ottomans scattered all over the penthouse, for rest, relaxation, and sex. You seat yourself on the nearest one, enjoying the spectacle. $He feels your eyes on $him, a sensation $he knows well, and turns with a little smile on $his $activeSlave.faceShape face, putting an extra swing in $his hips<<if $activeSlave.belly >= 5000>>, causing $his weighty middle to swing wide<</if>>. $He's still dancing alone, but now $he's giving you a private show. You give $him the proper music, instructing $assistant.name to play the track $he was humming.
		<br><br>
		$He advances on you slowly, sensually, relishing the beat and doing $his best to show off $his body.
		<<if $activeSlave.dick > 0>>
			$His
			<<if ($activeSlave.chastityPenis == 1)>>
				chastity cage sways
			<<elseif canAchieveErection($activeSlave)>>
				erection waves back and forth
			<<elseif $activeSlave.dick > 6>>
				soft python of a cock swings lewdly
			<<else>>
				bitchclit bounces
			<</if>>
			with $his rhythm.
		<</if>>
		<<if $activeSlave.vagina > -1>>
			$His
			<<if ($activeSlave.chastityVagina)>>
			<<elseif $activeSlave.clit > 1>>
				chastity catches your eye
			<<elseif $activeSlave.labia > 0>>
				generous petals catch your eye
			<<elseif $activeSlave.vaginaLube > 1>>
				wet cunt glistens
			<<else>>
				womanhood is $his center
			<</if>>
			as $he moves.
		<</if>>
		$He gives you an excellent nude lap dance, expressing the art at the level only the finest old world strippers can manage. The interaction is all about you, your eyes on $his body, your desire for $his touch, and finally your <<if $PC.dick != 0>>cum flowing into $his mouth as $he sucks your dick<<if $PC.vagina != -1>> and the wetness against $his fingers as they tease your pussy<</if>><<else>>pussyjuice coating $his lips as $he eats you out<</if>>. $He @@.mediumaquamarine;knows $his place@@ very well.
		<<set $activeSlave.trust += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Dance along with $him">>
	<<replace "#result">>
		$He doesn't <<if canSee($activeSlave)>>see<<else>>notice<</if>> you advance on $him; $he's facing away from you, and in any case, $he's lost in $his own little world. At the same moment, however, $he begins to hear the track you're humming, in perfect synchrony with the way $he's humming it, and senses a presence at $his side. You timed it perfectly, directing the sound system here to play the right track, match it to $him, and fade it in as you approached and began to dance beside $him.
		<<if $PC.title == 0>>
			You've got a woman's body, and you match $his moves, though an observer might see greater power and dominance in the way you dance.
		<<else>>
			You make your moves the masculine companion to $hers, moving like a paragon of frank male
			<<if $PC.belly >= 1500>>
				sexuality, despite the fecund curve to your stomach.
			<<elseif $PC.boobs >= 300>>
				sexuality, despite the pair of breasts bouncing on your chest.
			<<else>>
				sexuality.
			<</if>>
		<</if>>
		<br><br>
		There's a momentary flaw in $his rhythm, a catch in $his breath as $he realizes what you're doing, but $he gets right back into it, displaying $his pleasure with nothing more than a ghost of a smile
		<<if canSee($activeSlave) || canHear($activeSlave)>>
			and a
			<<if canSee($activeSlave)>>
				widening of $his eye<<if hasBothEyes($activeSlave)>>s<</if>> as $he looks you up and down
			<<else>>
				slight perk of $his ears as $he tracks your motion
			<</if>>
		<</if>>.
		$He doesn't shove $himself against you; that would be coarse. Instead $he dances alluringly, just out of your grasp. Taking the dominant role, you encircle $him in your arms and draw $him in close, $his heat perceptible against your skin before the very first graze of $his $activeSlave.skin body against yours. $He continues to dance gorgeously as $he helps you out of your clothes.
		<br><br>
		When you're nude, $he turns $his back to you and starts to grind, letting you feel $his
		<<if $activeSlave.weight > 160>>
			rippling
		<<elseif $activeSlave.weight > 95>>
			thick
		<<elseif $activeSlave.weight > 30>>
			chubby
		<<elseif $activeSlave.muscles > 95>>
			ripped
		<<elseif $activeSlave.muscles > 30>>
			muscled
		<<elseif $activeSlave.weight > 10>>
			plush
		<<elseif ($activeSlave.muscles > 5)>>
			toned
		<<elseif $activeSlave.weight < -10>>
			thin
		<<else>>
			soft
		<</if>>
		body all up and down your front. Feeling your <<if $PC.dick == 0>>building heat, $he begins to incorporate gentle caresses of your womanhood<<else>>erection brushing against $him, $he begins to corral it between $his buttocks and thighs<</if>>, and you return the favor by teasing $his nipples<<if canDoVaginal($activeSlave)>>, pussylips, clit,<</if>> and even $his ass. You orgasm one after the other, and as the music fades, $he @@.hotpink;throws $his arms around you.@@
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>

<<case "plimb help">>

<<link "Help $him into $his P-Limbs">>
	<<replace "#result">>
		You decide to help $him yourself rather than having a slave do it.
		<<if $activeSlave.ID == $BodyguardID>>Swinging your legs out of bed and heading towards $him<<else>>Heading towards $his part of the sleeping area<</if>>, you're struck by how <<if $activeSlave.belly >= 5000>>round<<else>>small<</if>> $he looks without $his prosthetics. Just a little $activeSlave.skin thing, without the
		<<if getLimbCount($activeSlave, 3) > 2>>
			sexy artificial limbs that let $him delight anyone who fucks $him with vibrating fingertips.
		<<elseif getLimbCount($activeSlave, 4) > 2>>
			incredible artificial limbs so perfect that many mistake them for the real thing.
		<<elseif getLimbCount($activeSlave, 5) > 2>>
			armored artificial limbs that make $him a deadly war machine.
		<<elseif getLimbCount($activeSlave, 6) > 2>>
			advanced artificial limbs that let $him delight sexual partners, fight enemies, and even live a normal life.
		<<else>>
			artificial limbs that allow $him a semblance of a normal life.
		<</if>>
		$He's not frightened, trusting <<if $activeSlave.ID == $BodyguardID>>you to help $him, or detail a slave to do so<<else>>$assistant.name to bring help<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> that you mean to assist $him yourself, $he breaks out in a huge grateful smile and thanks you profusely.
		<br><br>
		<<if $activeSlave.ID == $BodyguardID>>First, you extricate $his limbs from the malfunctioning machine. <</if>>As you take up $his first arm and kneel down to attach it to $him, $he rolls and hoists that shoulder up towards it, $his
		<<if $activeSlave.belly >= 5000>>
			<<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> body straining to twist
		<<elseif $activeSlave.muscles > 30>>
			strong body easily twisting
		<<elseif $activeSlave.muscles > 5>>
			toned body readily twisting
		<<else>>
			soft body straining to twist
		<</if>>
		on the sheet despite $his limblessness. When the gleaming halves of the attachment are <<if $showInches == 2>>half an inch<<else>>a few millimeters<</if>> apart, the magnetic seals take over and pull them into perfect alignment. Acting out of pure habit, $he actuates all the muscle group equivalents on the arm, one by one, testing function.
		<br><br>
		With one arm and the remaining three limbs within reach, $he can take care of $himself, but $he reaches out to touch your leg lightly from $his place on the ground. <<if getRightArmID($activeSlave) === 4 || getRightArmID($activeSlave) === 6>>The hand is just as soft and warm as $his original would have been.<<else>>$His hand is smooth and cool.<</if>>
		<<if !canTalk($activeSlave)>>
			$He uses $his one hand to rapidly spell out a polite request. $He asks you to attach the rest of $his limbs, too.
		<<else>>
			"<<Master>>, would you plea<<s>>e attach the re<<s>>t of them for me?" $he asks politely.
		<</if>>
		A transitory nervousness crosses $his $activeSlave.faceShape face as $he asks, but clears into @@.mediumaquamarine;trusting happiness@@ when you nod and pick up $his other arm. $He tests each limb as it's attached, and then tests them all by getting up into a kneel and giving you a hug.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Fuck $him before you help $him">>
		<<replace "#result">>
			You decide to have some fun with the temporarily helpless slave. You
			<<if $activeSlave.ID == $BodyguardID>>get out of bed<<else>>head to where $he's waiting for help<</if>> and scoop $him up, $his limblessness making it comically easy. With $his torso cradled in your grasp and $his head nestled into the crook of your arm, you carry $his <<if $activeSlave.ID == $BodyguardID>>back towards your bed<<else>>back towards your suite<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>figures out<</if>> what you're doing, $he turns $his head and gives your <<if $PC.boobs >= 300>>breast on that side<<else>>chest<</if>> an anticipatory kiss. When you set $him down on the bed, $he <<if canSee($activeSlave)>>stares<<else>>smiles<</if>> up at you invitingly and gives $his four P-Limb anchor points a glinting wiggle, a gesture that might mean anything. $His <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>, in any case, is presented openly for your use.
			<br><br>
			After fingering your helpless toy experimentally, you
			<<if $PC.dick != 0>>
				<<if canDoVaginal($activeSlave)>>
					slide yourself inside $him and start fucking $him.
					<<= VCheck.Vaginal($activeSlave, 1)>>
				<<else>>
					push yourself up $his butt and start fucking $him.
					<<= VCheck.Anal($activeSlave, 1)>>
				<</if>>
			<<else>>
				straddle $his face, riding $his eager mouth while you use your hands on $his <<if canDoVaginal($activeSlave)>>cunt<<else>>hole<</if>>.
				<<run seX($activeSlave, "oral", $PC, "penetrative")>>
			<</if>>
			$He has no control at all, but $he trusts you not to hurt $him and is soon enjoying $himself. $He can't seem to stop $himself from trying to move P-Limbs that aren't there, forgetting that $he's not wearing them whenever the arousal builds high enough to make $him forgetful. Eventually $he stops trying to restrain $himself, realizing that you're enjoying $his delicious wriggling beneath you. $He orgasms hard,
			<<if $PC.dick != 0>>
				<<if canDoVaginal($activeSlave)>>the walls of $his pussy squeezing your shaft<<else>>$his anus tightening around the base of your dick<</if>>.
			<<else>>
				moaning $his climax into your pussy with abandon.
			<</if>>
			<br><br>
			When you've climaxed yourself, $he looks back towards where $his P-Limbs are waiting, but you're not done with $his yet. You pick $him up again and bring $him into the shower. $He tries to help you, but again, $he gives up after a while, letting you wash $him. As you're rinsing the soap off $him, $he @@.hotpink;thanks you devotedly.@@ With the water streaming down $his face, you barely notice $his gentle tears.
			<<set $activeSlave.devotion += 4>>
		<</replace>>
	<</link>><<if ((($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))) && $PC.dick != 0>> //This option will take $his virginity//<</if>>
<</if>>

<<case "orchiectomy please">>

<<link "Order $him to behave $himself">>
	<<replace "#result">>
		You give $him stern orders to be a good $girl and behave $himself, regardless of $his silly moods. You don't deign to directly deny $his request for a genital reconfiguration, and $he has the presence of mind not to ask for an explicit denial. $He offers you profoundly submissive promises to control $his emotions and be a good slave, though $he can't hide a glimmer of @@.gold;fear@@ that $he'll fail and suffer punishment.
		<<set $activeSlave.trust -= 2>>
	<</replace>>
<</link>>
<br><<link "Reassure $him about $his body">>
	<<replace "#result">>
		You tell $him you aren't planning to do that to $him. You explain that $he might be feeling like $he's fully integrated into a life of sexual slavery now, but $he's not even close; $he's got a long way to go before $he's perfectly devoted and trusting. The words might sound harsh, but you deliver them kindly, making the statement one of hope. $He listens without disappointment, and brightens further when you predict that in a few weeks, $he'll get used to $his body's chemistry and accept it. Finally, you add, $his current configuration is the best for $his sex drive. $He bites $his lip and gives you a daring little look when $he <<if canHear($activeSlave)>>hears<<else>>understands<</if>> that, but you decide to keep $him waiting and send $him on $his way. $He @@.hotpink;thanks you@@ without dissembling, not realizing how profoundly $his life has changed, for $him to be reassured by that.
		<<set $activeSlave.devotion += 4>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave)>>
	<br><<link "Agree and make sure $he doesn't regret it">>
		<<replace "#result">>
			You agree and send $him straight to the surgery. $He looks a little hesitant, as though the prospect is intimidating now that it's actually about to happen, but $he complies obediently. You direct $assistant.name to bring $him back to your office as soon as $he's fully recovered. The curatives applied right after surgery hasten $his recovery, and $he's back the next day, standing a little gingerly, $his limp dick looking a bit sore. $He greets you properly, and comes over willingly when you recline in your chair and <<if canSee($activeSlave)>>crook a finger at<<else>>beckon<</if>> $him. <<if canSee($activeSlave)>>As $he approaches, $he notices that <<if $PC.dick != 0>>you've got your<<if $PC.vagina != -1>> futa<</if>> dick out<<else>>you're wearing a strap-on<</if>>, and looks a little apprehensive<<else>>$He approaches gingerly, still slightly sore<</if>>, but $he sits down obediently, <<if $PC.dick != 0>>your erection<<else>>the phallus<</if>> coming to rest between $his legs and lower buttocks, resting against $his perineum and the smooth, recently healed patch of skin at the base of $his dick where $his ballsack used to be. $He gasps at the sensation of <<if $PC.dick != 0>>your hot cock<<if $PC.vagina != -1>> and the wet pussy beneath it<</if>><<else>>the hard thing<</if>> pressed against $his most intimate area, but $he doesn't flinch away.
			<br><br>
			You take your time with $him, leaning back in your chair so that $he's lying
			<<if $PC.boobs >= 1400>>
				against your enormous <<if $PC.boobsImplant != 0>>fake breasts<<else>>cow tits<</if>>.
			<<elseif $PC.boobs >= 1200>>
				against your huge<<if $PC.boobsImplant != 0>> firm<<else>> soft<</if>> breasts.
			<<elseif $PC.boobs >= 1000>>
				against your big<<if $PC.boobsImplant != 0>> firm<</if>> breasts.
			<<elseif $PC.boobs >= 300>>
				against your tits
			<<elseif $PC.title == 0>>
				against your flat chest
			<<else>>
				on your chest
			<</if>>
			and bringing $his head around so you can make out. You play with $his
			<<if $activeSlave.boobs > 1000>>
				udders
			<<elseif $activeSlave.boobs > 300>>
				boobs
			<<else>>
				nipples
			<</if>>
			for a while, slowly starting to grind <<if $PC.dick != 0>>your dick<<if $PC.vagina != -1>> and the pussy attached to it<</if>><<else>>the strap-on<</if>> back and forth between $his legs. $He starts to ride you, and starts to beg you to fuck $him. You take $him under the arms and pull $him up, letting <<if $PC.dick != 0>>your erection<<else>>the dildo<</if>> spring free; $he takes the cue and lines its head up with $his
			<<if $activeSlave.anus > 2>>
				asspussy.
			<<elseif $activeSlave.anus > 1>>
				asshole.
			<<else>>
				tight pucker.
			<</if>>
			<<= VCheck.Anal($activeSlave, 1)>>
			$He shivers with pleasure as you lower $him onto it and $he feels the pressure
			<<if $activeSlave.prostate > 0>>
				against $his prostate.
			<<else>>
				in $his rectum.
			<</if>>
			$He's so aroused that $he climaxes immediately, shuddering as $his
			<<if $activeSlave.dick > 6>>
				monstrous floppy dick twitches, dripping
			<<elseif $activeSlave.dick > 3>>
				big but now permanently soft dick drips
			<<elseif $activeSlave.dick > 1>>
				little bouncing bitch dick dribbles
			<<else>>
				shockingly tiny penis dribbles
			<</if>>
			<<if $activeSlave.prostate > 2>>
				an obscene
			<<elseif $activeSlave.prostate > 1>>
				a large
			<<elseif $activeSlave.prostate == 0>>
				a negligible
			<<else>>
				a small
			<</if>>
			amount of clear fluid. By the time you carry $his @@.hotpink;limply submissive@@ body to the shower, $he's orgasmed twice more to your artful anal lovemaking.
			<<set $activeSlave.devotion += 4>>
			<<set $activeSlave.balls = 0>>
			<<set $activeSlave.scrotum = 0>>
			<<run healthDamage($activeSlave, 1)>>
		<</replace>>
	<</link>><<if $activeSlave.anus == 0>> //This option will take $his virginity//<</if>>
<</if>>

<<case "mean girls">>

<<link "Tolerating verbal abuse is part of a public servant's job">>
	<<replace "#result">>
		You inform your personal assistant that you aren't planning to take any action. If you took notice every time a citizen offered a slave on public duty any insult, you'd never be doing anything else. The only interesting part of the interaction was the possible value of the pretty girls, but enslaving them would likely have been difficult and expensive, given their families' probable wealth and influence. As for $activeSlave.slaveName, $he's not deeply affected.
		<<if $activeSlave.energy > 95>>
			$He's so horny that petty insults can't compete for $his attention with $his constant, oppressive need to get off.
		<<elseif $activeSlave.trust > 95 && $activeSlave.devotion >= -20>>
			$He's confident that $he's a good slave, no matter what some visitors from outside the arcology say.
		<<elseif $activeSlave.trust > 95>>
			It just gives $him more of a reason to work against you.
		<<elseif $activeSlave.devotion > 20>>
			$He tells $himself that they were wrong, and carries on.
		<<else>>
			It's not like the unhappy slave doesn't tell $himself much worse things.
		<</if>>
	<</replace>>
<</link>>
<br><<link "Enslave them all">>
	<<replace "#result">>
		<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
			<<run newSlave(_newSlaves[_ress])>> /* skip New Slave Intro */
			<<run cashX(forceNeg(8333), "slaveTransfer", _newSlaves[_ress])>>
		<</for>>
		<<set _newSlaves[0].clothes = "no clothing">>
		<<set _newSlaves[1].clothes = "no clothing">>
		<<set _newSlaves[2].clothes = "no clothing">>
		<<replace "#art-frame">>
			/* 000-250-006 */
			<<if $seeImages == 1>>
				<div class="imageColumn">
					<div class="imageRef medImg">
						<<= SlaveArt($activeSlave, 2, 0)>>
					</div>
					<div class="imageRef medImg">
						<<= SlaveArt(_newSlaves[0], 2, 0)>>
					</div>
					<div class="imageRef medImg">
						<<= SlaveArt(_newSlaves[1], 2, 0)>>
					</div>
					<div class="imageRef medImg">
						<<= SlaveArt(_newSlaves[2], 2, 0)>>
					</div>
				</div>
			<</if>>
			/* 000-250-006 */
		<</replace>>

		You seize a tablet and hurry out of your office, working furiously and using every feature of $assistant.name to the utmost. These bitches have offended you, and you quickly frame the structure of an appropriate revenge. By the time you get to where $activeSlave.slaveName is still being heckled by spoiled, drunken harpies, everyone else present in that arcology hall has mysteriously received urgent messages and gone elsewhere. $activeSlave.slaveName <<if canSee($activeSlave)>>sees you approach, and stares at you<<else>>recognizes your dominant footsteps approaching, and turns to face you<</if>>, $his sudden intense look alerting your vile little guests to your presence. One of them attempts to frame an insult for the interloper, but one of _his2 friends pokes _him2 in the side and whispers something in _his2 ear and _he2 goes silent, staring at you with wide eyes.
		<<if $PC.title != 1>>_He2 then winces, visibly realizing that you're likely aware that _he2 called $activeSlave.slaveName's owner $his "Master". Somehow, the mistake seems important to _him2 now that you're standing here, effortlessly dominating the space for all your femininity.<</if>>
		<br><br>
		You hold the tablet out to them wordlessly. It's displaying security footage of the three of them, boarding a public VTOL transport for another arcology nearby. The prominent timestamp is thirty minutes in the future. The scene changes, showing them partying in one of that arcology's nightclubs. You clear your throat, dragging their attention away from the counterfeited footage, and describe in detail the other evidence — tickets, identification checks, biometrics — that will prove they left your arcology and visited two others before regrettably disappearing. One of them tries, with utter predictability, to threaten you with _his2 father, but you tell _him2 bluntly that if he does make the effort, he'll be looking in the wrong place.
		<br><br>
		<<run Enunciate(_newSlaves[1])>>
		"We <<sh>>ouldn't have come here," one of them says dully. _He3's wrong in that they would have had no trouble at all if they hadn't offended you, but right in that here, they put themselves entirely under your power. Tourists would never visit if this were widely known, but fortunately, you've been successful at concealing this. They begin to cry, and then to beg, and then the drones bag them and take them away.
		<br><br><span id="result2">
			<<link "Let your public servant take revenge on them">>
				<<replace "#result2">>
					Although they don't know it, your trio of new captures escape the usual choice of introductions to life among your sex slaves. In order to ensure that their fate has been properly obscured, you keep them in confinement for a while. After that, the usual beautification your slaves undergo will eliminate any possibility of their being recognized, even on public duty. That doesn't mean they have it easy, though. You delegate $activeSlave.slaveName to break them in, letting $him visit each of them whenever $he wants and treat them however $he wants.
					<<if ($activeSlave.energy > 95) || ($activeSlave.devotion > 50)>>
						$He approaches the task
						<<if $activeSlave.energy > 95>>
							eagerly, seeing it as an opportunity to sate $his urges
						<<else>>
							dutifully, seeing it as $his responsibility to break them well for you
						<</if>>
						as well as to get some petty revenge.
						<<switch $activeSlave.fetish>>
						<<case "submissive">>
							$He's a sub, but this actually means that $he can do a reasonable dom impression when $he works at it. $He certainly has experience with what works, even if it's from the other side. The erstwhile rich girls are required to kiss $his feet, literally.
						<<case "cumslut">>
							As a cumslut, $he derives considerable enjoyment from seeing others drink ejaculate, too. In this case, $he enjoys forcing the erstwhile rich girls to choke down liters of the stuff.
						<<case "humiliation">>
							$He can't publicly humiliate them, since that would defeat the whole purpose of sequestering them until the trail goes really cold. Unfortunately for them, that doesn't stop $him from humiliating them to each other, and $he forces them to perform various sex acts on $him while the others watch.
							<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
								<<run seX(_newSlaves[_ress], "oral", $activeSlave, "penetrative", 10)>>
							<</for>>
							<<set $oralTotal += 30>>
						<<case "buttslut">>
							$He has a one track mind, and that track is anal sex. So, $he assrapes them, enjoying their sobbed apologies while $he <<if canPenetrate($activeSlave)>>fills their backdoors with $his cum<<else>>uses a dildo on them<</if>>.
							<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
								<<run seX(_newSlaves[_ress], "anal", $activeSlave, "penetrative", 10)>>
							<</for>>
						<<case "boobs">>
							$He forces them to <<if $activeSlave.nipples == "fuckable">>eat out $his nipples<<elseif $activeSlave.lactation > 0>>nurse from $him<<else>>suck $his nipples until $he orgasms<</if>>, mostly for how much $he enjoys the sensation, but also for the revulsion it produces.
							<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
								<<run seX(_newSlaves[_ress], "oral", $activeSlave, "mammary", 10)>>
							<</for>>
							<<if $activeSlave.lactation > 0>>
								<<set $activeSlave.lactationDuration = 2>>
								<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
							<<else>>
								<<= induceLactation($activeSlave, 5)>>
							<</if>>
						<<case "pregnancy">>
							$He doesn't have permission to impregnate them, but they don't know that, and $he lies shamelessly. <<if canPenetrate($activeSlave)>>They beg $him not to cum inside them, but $he does anyway,<<else>>$He uses a strap-on with a reservoir to fill them with cum,<</if>> and they cry themselves to sleep every night.
							<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
								<<run seX(_newSlaves[_ress], "vaginal", $activeSlave, "penetrative", 10)>>
							<</for>>
						<<case "dom">>
							$He prizes the opportunity to be dominant, and makes the most of it. Rather than doing something pedestrian like force them to fuck $him, $he forces them to fuck each other, punishing them for hesitation until they're eating each other out even while they cry.
							<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
								<<run seX(_newSlaves[_ress], "oral", _newSlaves[_ress], "penetrative", 20)>>
							<</for>>
						<<case "sadist">>
							Their tears aren't a means for $him; they're an end. $He extracts them with greed, enjoying the sensation of being <<if $activeSlave.dick > 0>>sucked off<<elseif $activeSlave.vagina == -1>>rimmed<<else>>eaten out<</if>> by one sobbing rich bitch while $he forces another to spank _his3 friend's pussy.
							<<for _ress = 0; _ress < _newSlaves.length; _ress++>>
								<<run seX(_newSlaves[_ress], "oral", $activeSlave, "penetrative", 20)>>
							<</for>>
						<<case "masochist">>
							As a masochist, $he's naturally inclined to be on the receiving end, but in this case $he makes an exception for the sake of justice. And it's to $his victims' anguish that $he does, because $he knows pain like a lover, and inflicts it in excruciating crescendos without leaving a single mark.
						<</switch>>
						The horrible experience is certainly @@.gold;educational@@ for your new slaves, and $activeSlave.slaveName is @@.hotpink;well pleased.@@ Tolerating insults is part of being a public slave, but getting this opportunity to take $his pent-up frustrations out on some deserving targets is a @@.mediumaquamarine;trust building@@ exercise for $him. It seems their insults really did upset $him.
						<<for _ress = 0; _ress < _newSlaves.length; _ress++>><<set _newSlaves[_ress].trust -= 4>><</for>>
						<<set $activeSlave.devotion += 5, $activeSlave.trust += 5>>
					<<else>>
						$He obeys, but isn't so far gone into sexual slavery that $he's willing to really throw $himself into the task. $His visits are terrifying enough, though. Simply seeing their own likely futures reflected in $him is usually enough to leave your new slaves crying themselves to sleep.
					<</if>>
				<</replace>>
			<</link>>
		</span>
	<</replace>>
<</link>> //This option will cost <<print cashFormat(25000)>>//

<<case "torpedo squeeze">>

<<link "Give them a surprise massage">>
	<<replace "#result">>
		You move stealthily up behind $him in a predatory crouch, your arms forward and your fingers spread. When $he reaches up to <<if $activeSlave.makeup != 0>>do $his eyes<<else>>massage $his forehead<</if>>, you take advantage of $his newly vulnerable flanks and reach around $him to take $his torpedo tits in hand. $He <<if $activeSlave.voice != 0>>howls<<else>>makes the raspy noise that mute slaves make when<</if>> in shock, writhing away from the grasping digits. Your hands aren't particularly cold, but $he's deliciously warm from the shower and you're holding onto $him firmly. $His
		<<if $activeSlave.butt > 12>>
			titanic ass
		<<elseif $activeSlave.butt > 5>>
			massive ass
		<<elseif $activeSlave.butt > 2>>
			plush bottom
		<<else>>
			trim behind
		<</if>>
		bumps into you as $he recoils, and $he freezes, realizing who you are. You slide your grip back towards $him, down away from the point of each tit, grab $his back where $he's broader, and knead $him gently, moving forward down $his breasts.
		<<if $activeSlave.fetish == "boobs">>
			<<if $activeSlave.fetishKnown != 1>>
				$His chest swells in your embrace as $he sucks in $his breath, stiffening with arousal. $He seems to @@.lightcoral;love breast play,@@ and if properly encouraged, might orgasm to it.
				<<set $activeSlave.fetishKnown = 1>>
			<<else>>
				$He stiffens with arousal, since breast play is the main sexual event as far as $he's concerned.
				<<if canAchieveErection($activeSlave) && ($activeSlave.chastityPenis == 1)>>There's an audible little smack as $he achieves an erection, bringing $his dickhead against the bottom of the counter.<</if>>
			<</if>>
		<<elseif $activeSlave.devotion > 50>>
			$He softens into your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>, wriggling $his back into you to get comfortable.
		<<elseif $activeSlave.devotion > 20>>
			$He makes an effort to relax, and you can feel the stiffness go out of $his back, pressed against your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>.
		<<else>>
			$He remains stiff and afraid, shivering a little against your <<if $PC.boobs >= 300>>bosom<<else>>chest<</if>>.
		<</if>>
		$He expects to get fucked, but you just massage $his breasts thoroughly, give $his <<if $activeSlave.pregKnown == 1>>belly<<else>>butt<</if>> a possessive pat, and continue on your way. $He thanks you <<if $activeSlave.devotion > 50>>with touching sincerity<<elseif $activeSlave.devotion > 20>>sincerely<<else>>hesitantly<</if>> and returns to $his business, @@.mediumaquamarine;smiling a little.@@
		<<set $activeSlave.trust += 4>>
		<<if $activeSlave.lactation > 0>>
			<<set $activeSlave.lactationDuration = 2>>
			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
		<<else>>
			<<= induceLactation($activeSlave, 3)>>
		<</if>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Make $him bounce them painfully">>
		<<replace "#result">>
			Appearing behind $him, you order $him to bounce up and down. You don't mention $his prominent tits, but $he knows exactly what you mean and is
			<<if $activeSlave.devotion > 50>>eager to please<<elseif $activeSlave.devotion > 20>>willing to please<<else>>willing to debase $himself to avoid punishment<</if>>.
			$He bounces up and down, watching for your reaction in the mirror. Harder, you tell $him, and $he bounces harder. Harder, you tell $him again, and then again. $He jumps up and down hard enough that $his promontories slap painfully against $him,
			<<if $activeSlave.fetish == "masochist">>
				<<if $activeSlave.fetishKnown != 1>>
					making $him gasp with arousal. $He stares at $himself in shock, and then at your reflection, mystified and a little frightened that you might have seen. You did see, and you're not perplexed. $activeSlave.slaveName is a @@.lightcoral;sexual masochist,@@ and if properly encouraged, can probably be trained to be a proper slut for pain.
					<<set $activeSlave.fetishKnown = 1>>
				<<else>>
					making the masochistic $desc gasp with arousal.
				<</if>>
			<<elseif $activeSlave.devotion > 50>>
				extracting a gasp as $he willingly causes $himself considerable discomfort at your command.
			<<elseif $activeSlave.devotion > 20>>
				making $him wince. $He starts to look afraid.
			<<else>>
				and $he starts to cry, more from fear than from the pain.
			<</if>>
			<br><br>
			Pleased, you tell $him to keep it up as best $he can, and trap $his hips against the edge of the counter before sliding <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>>into $his pussy<<else>>up $his asshole<</if>>. It's not a comfortable angle, and between the rough penetration and the continued mammary torture,<<if $activeSlave.fetish == "masochist">>$he orgasms promptly<<if $activeSlave.balls > 0>>, scattering cum all over the counter<</if>><<else>>tears begin to run down $his cheeks<</if>>. When you climax, you grab the undersides of $his breasts and hoist $him up in a parody of exaltation, thrusting as far into $him as you can manage<<if $PC.dick != 0>> and <<if canDoVaginal($activeSlave)>>coming inside $him<<else>>blowing your load in $his butt<</if>><</if>>. The thrust, the lift, and the harsh hold on $his poor boobs extracts <<if $activeSlave.voice != 0>>a shriek<<else>>the pathetic little gasping noise that mute slaves make when in agony<</if>> from $his<<if $activeSlave.lactation > 0>>, not to mention <<if $activeSlave.lactation == 1>>a few drops of milk<<else>>an ejaculation-like stream of milk<</if>> from each of $his nipples<</if>>. You discard your toy on the counter,
			<<if $activeSlave.fetish == "masochist">>
				leaving the poor pain addict in a state of @@.hotpink;high sexual satiation,@@ even if $he does move $his battered breasts gingerly as $he climbs down.
				<<set $activeSlave.devotion += 4>>
			<<else>>
				leaving $him to climb down $himself, @@.gold;fearfully@@ watching your receding back as $he gets off the counter, favoring $his battered breasts.
				<<set $activeSlave.trust -= 4>>
			<</if>>
			<<= VCheck.Simple($activeSlave, 1)>>
		<</replace>>
	<</link>><<if (($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>


<<case "subjugation blues">>

<<link "Surgically alter $him to be of the inferior $arcologies[0].FSSubjugationistRace race, and give $him a public debut">>
	<<replace "#result">>
		Some slaves have a bigger potential price to pay for disobedience than they realize. $activeSlave.slaveName is $activeSlave.race, which is
		<<if $activeSlave.race != $arcologies[0].FSSupremacistRace>>
			not particularly noteworthy.
		<<else>>
			advantageous to $him, as it is generally unpopular to enslave a $girl of the superior race.
		<</if>>
		However, $he's about to learn that $his racial appearance isn't immutable, and in your arcology, it can make a big difference in how $he is treated. You escort the struggling <<if $activeSlave.pregKnown == 1 && $activeSlave.bellyPreg >= 1500>>mother-to-be<<else>>$girl<</if>> to the surgery center and instruct $assistant.name to alter $his appearance so that $he appears to be <<print $arcologies[0].FSSubjugationistRace>>. The full meaning of your instructions
		<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>
			slowly start to dawn on <<print $activeSlave.slaveName>>'s stupid face
		<<else>>
			spark a quick reaction <<if canSee($activeSlave)>>from <<print $activeSlave.slaveName>>'s intelligent eyes<<else>>on <<print $activeSlave.slaveName>>'s intelligent face<</if>>
		<</if>>
		and $he whimpers and begs for you to reconsider even as $he's strapped onto the operating table.
		<br><br>
		By the time $he wakes up from the anesthesia, you've already made the necessary alterations to $his permanent records, which now clearly indicate that $he was born <<print $arcologies[0].FSSubjugationistRace>>, and as such, can be rightfully regarded as the racially inferior fuck-animal $he now is. Of course, your fellow slaveowners and the slave market will be savvy enough to see through the alterations you've forced upon $him, but when you make $him available for a day of use in the public square, all your average citizen knows is that the $girl they are fucking is simply a worthless $arcologies[0].FSSubjugationistRace slut who doesn't deserve much more than a stomach full of cum. The surgery @@.health.dec;negatively effects $his health,@@ but by the end of a long day $he'll likely never forget, $he has gotten a crash course in what it means to be a $arcologies[0].FSSubjugationistRace slave in your arcology, and any evidence that $he was born $activeSlave.race has been efficiently expunged from $his records. <<if ($activeSlave.vagina == 0 || $activeSlave.anus == 0)>>@@.lime;All vestiges of $his virginity have been unceremoniously stripped away@@.<</if>> The experience has @@.hotpink;broken down $his resistance,@@ and your willingness to go to such extremes to subjugate $him @@.gold;greatly increases $his fear of you.@@
		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 10, $activeSlave.anus++>>
		<<run seX($activeSlave, "anal", "public", "penetrative", 25)>>
		<<run seX($activeSlave, "oral", "public", "penetrative", 35)>>
		<<if $activeSlave.vagina > -1>>
			<<set $activeSlave.vagina++>>
			<<run seX($activeSlave, "vaginal", "public", "penetrative", 20)>>
		<</if>>
		<<= knockMeUp($activeSlave, 100, 2, -2, 1)>>
		<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
		<<run surgeryDamage($activeSlave, 20)>>
		<<set $activeSlave.race = $arcologies[0].FSSubjugationistRace>>
		<<set $activeSlave.skin = randomRaceSkin($arcologies[0].FSSubjugationistRace)>>
		<<run setEyeColor($activeSlave, randomRaceEye($arcologies[0].FSSubjugationistRace))>>
		<<set $activeSlave.hColor = randomRaceHair($arcologies[0].FSSubjugationistRace)>>
		<<set $activeSlave.override_Skin = 1, $activeSlave.override_Eye_Color = 1, $activeSlave.override_H_Color = 1>>
	<</replace>>
<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take $his virginity and ignore $his chastity//<</if>>
<br><<link "No surgery today, but give $him something to think about">>
	<<setNonlocalPronouns $seeDicks>>
	<<replace "#result">>
		You stroke <<print $activeSlave.slaveName>>'s $activeSlave.skin cheek and tell $him that $he has much more to lose than $he realizes. You decide to give $him a tour of the arcology to show $him what you mean. You make sure to <<if canSee($activeSlave)>>point out<<else>>explain<</if>> everything that makes living in your arcology as a $arcologies[0].FSSubjugationistRace slut special.
		<<if $dairy > 0>>
			There are the specially calibrated "<<print $arcologies[0].FSSubjugationistRace>> only" industrial human milking machines in $dairyName which have been set for maximum milking efficiency, disregarding any need for slave comfort.
		<<else>>
			There are the segregated milking stalls, where only the dirtiest and most dilapidated machines are reserved for filthy $arcologies[0].FSSubjugationistRace sluts.
		<</if>>
		<<if $club > 0>>
			There are the "refresher" sinks in $clubName where normal slaves can go to periodically clean the cum out of their holes before returning to service more citizens — but such a luxury is off limits to $arcologies[0].FSSubjugationistRace animals, who simply have to work through their long shifts with ever increasing amount of ejaculate covering their worthless bodies.
		<<else>>
			There are the "animal fuckers" in the public square — groups of racial purists who specifically seek out slaves of the inferior $arcologies[0].FSSubjugationistRace race to mistreat through extreme public use.
		<</if>>
		<<if $clinic > 0>>
			While $clinicName is available to normal slaves to recover from injuries and general ill health, such things aren't afforded to $arcologies[0].FSSubjugationistRace whores. They have to work through it, no matter the outcome.
			<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
				A slave in the throes of labor catches $his attention. Assisted birth is a luxury; gravid $arcologies[0].FSSubjugationistRace whores receive no aid with childbirth, nor are contraceptives wasted on them.
			<</if>>
		<<else>>
			As you tour, you pass an exhausted $arcologies[0].FSSubjugationistRace _girlU struggling to give birth. _HeU'll be left to handle the act alone as medical care is seldom given to $arcologies[0].FSSubjugationistRace mongrels.
			<<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>>
				It's a common occurrence for pregnant subhumans, since they aren't worth the cost of contraception.
			<</if>>
		<</if>>
		Finally
		<<if $arcade > 0>>
			you take $him over to $arcadeName, and <<if canSee($activeSlave)>>give $him an up close view of<<else>>let $him feel<</if>> the brutal ring gag used to pry open the $arcologies[0].FSSubjugationistRace sluts' mouths for relentless cock-milking purposes.
		<<else>>
			you take $him over to the glory hole area, where distinct labels adorn the holes reserved for members of the slave race, and $arcologies[0].FSSubjugationistRace fuck-holes are afforded "special attention" by "sympathetic" citizens of the arcology.
		<</if>>
		<br><br>
		At first $activeSlave.slaveName is confused as to why you are showing $him these things, but you soon make your point clear. You explain that if $he doesn't start accepting $his role, you can easily alter $his appearance and force $him to accept a much different role instead. You see $his <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> stupid <<if canSee($activeSlave)>>eyes<<else>>face<</if>> finally start to show signs of understanding<<else>>intelligent <<if canSee($activeSlave)>>eyes<<else>>face<</if>> quickly realize what you are talking about<</if>> and $he starts to whimper helplessly, begging you not to turn $him into a $arcologies[0].FSSubjugationistRace subhuman. By the end of the tour $he better realizes exactly what it means to be a slave. $He is starting to understand the @@.hotpink;power you have over $him,@@ and @@.gold;$he fears you even more because of it.@@
		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 10>>
	<</replace>>
<</link>>
<br><<link "Discipline $him normally. Artificial racial subjugation is going too far">>
	<<replace "#result">>
		You look $activeSlave.slaveName over, and something about $him makes you reconsider playing games with $his racial appearance. <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>Perhaps $his natural $activeSlave.race supremacy is too sacrosanct for you to go to such lengths. <</if>>You'll not make such an extreme example of $him. Still, $he is a disobedient slave, and $he cannot be allowed to openly defy your orders and inspections. You
		<<if $activeSlave.belly >= 300000>>
			shove $him onto $his _belly belly, expose $his bare ass
		<<else>>
			take $him over your knee, expose $his bare ass
		<</if>>
		and spank $him hard and relentlessly. $He screams and whines and struggles, and you call in an obedient slave to help keep control of $him as you punish $his reddened bottom. You also make sure to tell $him how lucky $he is that $he isn't one of those worthless subhuman $arcologies[0].FSSubjugationistRace sluts, and that $he is getting off easy. But you also remind $him that there are worse owners to belong to, and if $he continues to resist your will, you will be very selective about who you sell $him to.
		<br><br>
		By the time you've finished with $his sensitive ass, it shines red, and $he is crying and whimpering in pain. You send $him away, having @@.hotpink;dampened $his resistance a bit,@@ and @@.gold;scared $him with your tales of how much worse life could be@@ for $him
		<<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>
			if $he weren't born of the supreme race.
		<<else>>
			under a less forgiving owner.
		<</if>>
		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
	<</replace>>
<</link>>

<<case "transition anxiety">>

<<if canDoAnal($activeSlave)>>
	<<link "Fuck $him">>
		<<replace "#result">>
			You announce that you're going to fuck $his <<if $activeSlave.anus == 0>>virgin <</if>>asspussy. To your complete lack of surprise, $he can't hide $his horror at the prospect of <<if $PC.dick != 0>>having a cock inside $him<<else>>being fucked with a strap-on<</if>>, and $his <<if canSee($activeSlave)>>wide, <<= App.Desc.eyesColor($activeSlave)>> track<<else>>terrified face follows<</if>> your movements closely as you stand up and <<if $PC.dick != 0>>reveal the formidable member<<else>>don the strap-on<</if>> you're about to breed $him with. You order $him to <<if hasAnyLegs($activeSlave)>>kneel<<else>>get<</if>> on the couch, which $he does, @@.gold;cringing in fear of being buttfucked, but knowing disobedience will be worse;@@ and then you order $him to reach down and spread $his butt for you, as wide as it'll go. $He complies,
			<<if $activeSlave.butt > 12>>
				grabbing as much flesh as $he can of each monstrous buttock and heaving them as far apart as $he can manage in an attempt
			<<elseif $activeSlave.butt > 6>>
				taking a handful of each massive buttock and heaving them apart to reveal $his
			<<elseif $activeSlave.butt > 3>>
				pulling $his plush buttocks apart
			<<else>>
				even though $his cute ass doesn't have to be spread
			<</if>>
			to reveal $his
			<<if $activeSlave.anus > 2>>
				whorish anal slit.
			<<elseif $activeSlave.butt > 1>>
				relaxed rear hole.
			<<else>>
				tight little rosebud.
			<</if>>
			You let $him soak in $his discomfort, <<if $PC.dick != 0>>stroking your cock gently<<else>>rubbing a little lube on the tip of your phallus<</if>> and letting $him see how big it is. $His cringing even extends to $his asshole,
			<<if $activeSlave.analArea > 3>>
				the huge area of crinkled skin
			<<elseif $activeSlave.analArea > 1>>
				the crinkled skin around $his anus
			<<else>>
				$his little pucker
			<</if>>
			tensing as $he anticipates anal sex.
			<<set $activeSlave.trust -= 3>>
			<br><br><span id="result2">
				<<link "Make sure $he gets off on it">>
					<<replace "#result2">>
						You press <<if $PC.dick != 0>>yourself<<else>>your weapon<</if>> past $his sphincter with care, and $his posture softens a little as $he realizes you aren't going to hurt $him. Once you've hilted <<if $PC.dick != 0>>your cock<<else>>the strap-on<</if>> inside $him, you caress $his
						<<if $activeSlave.belly >= 150000>>
							_belly distended
						<<elseif $activeSlave.weight > 95>>
							fat
						<<elseif $activeSlave.belly >= 5000>>
							<<if $activeSlave.bellyPreg >= 3000>>
								pregnancy swollen
							<<elseif $activeSlave.bellyImplant >= 3000>>
								implant swollen
							<<else>>
								<<print $activeSlave.inflationType>>-bloated
							<</if>>
						<<elseif $activeSlave.weight > 30>>
							chubby
						<<elseif $activeSlave.waist < -95>>
							narrow
						<<elseif $activeSlave.muscles > 30>>
							muscular
						<<elseif $activeSlave.waist < -10>>
							wasp
						<<elseif $activeSlave.weight > 10>>
							soft
						<<elseif $activeSlave.muscles > 5>>
							toned
						<<else>>
							thin
						<</if>>
						waist, running your hands across $his skin. Then you <<if $activeSlave.clitPiercing == 3>>activate $his smart frenulum piercing<<else>>secure a couple of little egg vibes to $his dick<</if>>. $He gasps as the vibration starts, and then gasps again as $his anus tightens involuntarily with the stimulation, squeezing the <<if $PC.dick != 0>>warm penis<<else>>phallus<</if>> that fills it. $He <<if $activeSlave.voice > 0>>moans openly<<else>>rasps mutely<</if>> as you pull out and then thrust into $him. Much against $his will, $he <<if canAchieveErection($activeSlave)>>quickly becomes erect<<else>>starts to drip precum, which is $his ballsless body's way of showing arousal<</if>>.
						<<if $activeSlave.fetish == "buttslut">>
						<<if $activeSlave.fetishKnown == 1>>
							<<if $activeSlave.fetishStrength > 95>>
								Every time $he takes it up the butt, $he's reminded that $he's a natural buttslut, and the reminder @@.lightsalmon;helps $him relax and accept sodomy.@@
								<<set $activeSlave.fetishStrength += 10>>
							<<else>>
								$He knows $he gets off easily on anal stimulation, but taking it like this still isn't $his favorite activity. Still, the <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation does its work, and $he @@.hotpink;submits to having $his favorite hole pleasured.@@
								<<set $activeSlave.devotion += 3>>
							<</if>>
						<<else>>
							You notice that $he stiffens again, looking down at $his traitorous member in shock at how much $he enjoys the sensation of <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation. @@.lightsalmon;$He's a buttslut!@@
							<<set $activeSlave.fetishKnown = 1>>
						<</if>>
						<</if>>
						<<= VCheck.Anal($activeSlave, 1)>>
						Not long after you penetrate $him, $he
						<<if $activeSlave.balls > 0>>
							squirts a weak ejaculation onto the couch.
						<<else>>
							shivers and releases some watery fluid.
						<</if>>
						$He had almost forgotten that $he was being fucked like a girl, and stiffens uncomfortably when $he feels you <<if $PC.dick != 0>>fill $his rectum with your hot seed<<else>>grip $his hips harder and shake with your own climax<</if>>. As $he gets up from the couch, $he seems @@.hotpink;subdued and submissive.@@ After all, if $he's submitting to you, that absolves $him of responsibility for what $he's becoming.
						<<set $activeSlave.devotion += 5>>
					<</replace>>
				<</link>>
				<br><<link "Rape $him">>
					<<replace "#result2">>
						You grab $his hips, getting a good grip, and spear the poor $desc without any hint of mercy. $He <<if $activeSlave.voice > 0>>screams in pain and fear<<else>>sucks in a great sobbing gasp<</if>>, and tries to wriggle away despite $his intention of submitting to your use, but you hold $him in place and rape $his ass.
						<<= VCheck.Anal($activeSlave, 1)>>
						$He tries to maintain $his position, crying openly, but eventually slides off $his perch on the couch, pulling $his hole off your <<if $PC.dick != 0>>dick<<else>>strap-on<</if>>. You grab $him by <<if $activeSlave.hLength > 20>>hair<<else>>neck<</if>> and smash $his face into the angle of the couch, leaving $his poor butt completely vulnerable. $He can't see you line up to ream $him again, but $he knows it's coming and cries, quivering. After a while, you haul $him up to $his feet and keep fucking $him, the uncomfortable angle of standing anal forcing new <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> out of $him. You pour degradation into $his ear as you take your pleasure from $his unhappy body, telling $him that $he's your fuckmeat. $He believes you, and when you finally orgasm and let $him slide off your hateful <<if $PC.dick != 0>>penis<<else>>strap-on<</if>>, $he's @@.gold;already terrified@@ of the next time you feel like fucking $him.
						<<set $activeSlave.trust -= 5>>
					<</replace>>
				<</link>>
			</span>
		<</replace>>
	<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
<</if>>
<br><<link "Humiliate $him in public">>
	<<replace "#result">>
		You get up from behind your desk, drawing an apprehensive <<if canSee($activeSlave)>>stare<<else>>look<</if>>. To $his bemusement, you order $him to follow you and leave your office. $He hurries to obey, $his footsteps pattering along behind you, but they become much more hesitant as you make your way out of the penthouse and $he realizes that $he's about to be in public, naked. You don't bother looking back, knowing that $he's sufficiently afraid of you to obey. On the border between your private domain and the public hustle and bustle of the arcology's public life, $he stops for a long moment before scurrying to catch up with you, barely even noticing that @@.hotpink;$he just swallowed $his sense of shame@@ to obey you and avoid punishment. You stroll along, greeting leading citizens and taking in the hum of your people. $activeSlave.slaveName grows increasingly embarrassed under the hot stares of passersby, cringing closer and closer to your protective side as $he notices how <<if canSee($activeSlave)>>many gazes rest with open hunger on<<else>>many lewd comments focus on<</if>> $his mouth, $his crotch, and $his ass.
		<<set $activeSlave.devotion += 3>>
		<br><br><span id="result2">
			<<link "Make $him perform oral on you, right here">>
				<<replace "#result2">>
					You reach around, place a dominating hand on $his shoulder, pull $him around in front of you, and push $him down to $his knees. $He quickly realizes what's coming, and $his $activeSlave.skin cheeks blush furiously as you reveal your <<if $PC.dick != 0>>meaty dick<<else>>flushed pussy<</if>> and offer it to $him. $He gets busy, burying $his head against you with a speed that seems surprising until it occurs to you that this allows $him to hide $his face. Deciding to accept this tiny compromise, you run a possessive hand <<if $activeSlave.hLength < 5>>across $his smooth scalp<<elseif $activeSlave.hLength < 20>>through $his short hair<<else>>through $his tresses<</if>> and murmur praise for $his enthusiasm. $He stiffens at the implication that $he wants to be <<if $PC.dick != 0>>polishing your penis<<else>>eating you out<</if>> in broad daylight, but after a slight pause $he decides that this isn't bad. As <<if $PC.dick != 0>>$his head continues to bob back and forth as $he sucks your dick<<else>>$he continues nuzzling $his nose and mouth against your wet cunt<</if>>, $he fails to notice $his @@.hotpink;second major submission today.@@
					<<if $activeSlave.fetish == "humiliation">>
						<<if $activeSlave.fetishKnown == 1>>
							Since $he has a humiliation fetish, the embarrassment has been arousing $him even as it's been torturing $him. Unsatisfied with just this, $his need to be shamed obliges $him to cock $his hips and make sure onlookers can see $his asspussy as $he services you with $his mouth.
							<<if $activeSlave.fetishStrength > 95>>
								@@.lightsalmon;$His need for humiliation has deepened.@@
								<<set $activeSlave.fetishStrength += 10>>
							<<else>>
								Such abject sluttery @@.hotpink;helps convince $him of $his status as a slave $girl.@@
								<<set $activeSlave.devotion += 3>>
							<</if>>
						<<else>>
							To your surprise, $he even starts to glance around, checking to verify that $he's still being watched. @@.lightsalmon;$He's a humiliation slut!@@
							<<set $activeSlave.fetishKnown = 1>>
						<</if>>
					<</if>>
					<<set $activeSlave.devotion += 5>>
					<<run seX($activeSlave, "oral", $PC, "penetrative")>>
				<</replace>>
			<</link>>
			<br><<link "Make $him cum in public">>
				<<replace "#result2">>
					You produce three little egg vibrators, which instantly steal $his anxious attention away from the passersby who <<if canSee($activeSlave)>>stare<<else>>whistle catcalls<</if>> at $him. You require $him to hold $his dick out while you use an elastic band to attach one of the vibrators to the underside of its head. $He doesn't get to touch $himself much anymore, and the half-forgotten sensations of doing so almost make $him forget that $he's naked in public, and almost certainly about to do something very embarrassing. Then you order $him to hold $his dick up and place another vibrator <<if $activeSlave.scrotum > 0>>against $his sensitive scrotum<<else>>against the sensitive skin where $his scrotum used to be<</if>>. Finally, you order $him to bend over and offer you $his asshole. $He obeys, with apprehension, and is actually relieved when you just place the final vibrator against, but not inside, $his <<if $activeSlave.anus > 1>>asspussy<<else>>pucker<</if>>. $He finds $himself ordered to kneel and put $his hands on $his head; and ordering $him to hold this position, you use remote control of the vibrators to force $him to cum twice. $He can't <<if canSee($activeSlave)>>tear $his eyes away from<<else>>tune out<</if>> the citizens who stare and laugh as $he <<if $activeSlave.balls > 0>>spurts $his seed<<else>>dribbles weakly<</if>> onto the floor.
					<<if $activeSlave.fetish == "humiliation">>
						<<if $activeSlave.fetishKnown == 1>>
							<<if $activeSlave.fetishStrength > 95>>
								Though $he's still unhappy about being a slave $girl, @@.lightsalmon;appetite for humiliation has deepened.@@
								<<set $activeSlave.fetishStrength += 10>>
							<<else>>
								The abject humiliation slut climaxes harder each time, and can't stop $himself @@.mediumaquamarine;glancing at you with something like trust.@@
								<<set $activeSlave.trust += 3>>
							<</if>>
						<<else>>
							With a mix of horror and dawning arousal, $he discovers that $he enjoys the stares. @@.lightsalmon;$He's a humiliation slut!@@
							<<set $activeSlave.fetishKnown = 1>>
						<</if>>
					<</if>>
					As $he follows you back to your penthouse, $he seems almost cheerful, and will definitely be @@.mediumaquamarine;more trusting of strange orders@@ in the future.
					<<set $activeSlave.trust += 5>>
				<</replace>>
			<</link>>
		</span>
	<</replace>>
<</link>>

<<case "breast expansion blues">>

<<link "Let $him know $he'll be growing as fast as possible">>
	<<replace "#result">>
		Rather than punishing $him directly, you address yourself to your personal assistant. You order _himA to make a note in $activeSlave.slaveName's drug schedule that $he's to remain on a breast expansion regime until further notice. The $desc's face falls as $he <<if canHear($activeSlave)>>hears this, and $assistant.name <<elseif canSee($activeSlave)>>reads this order on a small screen provided by $assistant.name, who <<else>>slowly realizes this, and $assistant.name <</if>>doesn't help matters by
		<<if $assistant.personality == 0>>
			confirming the order in disturbingly clinical tones.
		<<elseif $assistant.appearance == "monstergirl">>
			using _hisA avatar's tentacle hair to caress _hisA own tits as _heA concurs in disturbingly kind tones.
		<<elseif $assistant.appearance == "shemale">>
			shaking _hisA avatar's enormous endowments, making a lewd comment, and then giving _himselfA a titjob.
		<<elseif $assistant.appearance == "amazon">>
			observing that a good slave $girl should have big tits, since strong warriors like fertile, big-boobed <<= $girl>>s back home to breed with.
		<<elseif $assistant.appearance == "businesswoman">>
			having _hisA avatar give $activeSlave.slaveName a disturbingly appraising glance, as though $he and $his breasts are an interesting entry on a balance sheet.
		<<elseif $assistant.appearance == "schoolgirl">>
			bending _hisA avatar over to show off _hisA cleavage, and then giving _hisA tits a jiggle, as though the point wasn't clear enough already.
		<<elseif $assistant.appearance == "goddess">>
			hefting _hisA own motherly breasts and telling $activeSlave.slaveName that $he should be happy, since bigger breasts are a sign of health and fertility.
		<<elseif $assistant.appearance == "hypergoddess">>
			massaging _hisA own heaving breasts and telling $activeSlave.slaveName that $he should be happy, since bigger breasts are a sign of health and fertility.
		<<elseif $assistant.appearance == "loli">>
			<<if $assistant.fsAppearance == "asset expansionist">>
				playing with _hisA oversized breasts under _hisA swimsuit and telling $activeSlave.slaveName that being busty is amazing.
			<<elseif $assistant.fsAppearance == "pastoralist">>
				cupping _hisA pitiful milk nubs and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be busty.
			<<elseif $assistant.fsAppearance == "transformation fetishist">>
				playing with _hisA absurd implants and telling $activeSlave.slaveName that being busty is great, though $he'd look better with big fake balloons for breasts.
			<<else>>
				cupping _hisA nonexistent breasts and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be busty.
			<</if>>
		<<elseif $assistant.appearance == "preggololi">>
			<<if $assistant.fsAppearance == "asset expansionist">>
				playing with _hisA oversized breasts under _hisA swimsuit and telling $activeSlave.slaveName that being busty is amazing.
			<<elseif $assistant.fsAppearance == "pastoralist">>
				cupping _hisA milky handfuls and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be that busty.
			<<elseif $assistant.fsAppearance == "transformation fetishist">>
				playing with _hisA absurd implants and telling $activeSlave.slaveName that being busty is great, though $he'd look better with big fake balloons for breasts.
			<<else>>
				cupping _hisA tiny breasts and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be busty.
			<</if>>
		<<elseif $assistant.appearance == "fairy">>
			groping the air as if there were an imaginary pair of tits in front of _himA and telling $activeSlave.slaveName that $his oversized funbags would be wonderful for _himA to bounce and play on.
		<<elseif $assistant.appearance == "pregnant fairy">>
			bouncing on the balls of _hisA feet to emphasize _hisA own small but bouncy breasts and giving $activeSlave.slaveName a knowing wink.
		<<elseif $assistant.appearance == "angel">>
			loudly musing how many hungry children $activeSlave.slaveName could feed and how many more could be added to that number.
		<<elseif $assistant.appearance == "cherub">>
			making groping gestures at $activeSlave.slaveName's tits.
		<<elseif $assistant.appearance == "incubus">>
			shouting lewd comments about $activeSlave.slaveName's tits while masturbating furiously.
		<<elseif $assistant.appearance == "succubus">>
			<<if $assistant.fsAppearance == "asset expansionist">>
				openly groping _hisA own immense breasts while dropping comments about how big you like 'em.
			<<elseif $assistant.fsAppearance == "pastoralist">>
				openly groping _hisA milk filled quad-breasts while dropping comments about how you love 'em big and milky.
			<<elseif $assistant.fsAppearance == "transformation fetishist">>
				openly groping _hisA own immense chest balloons while dropping comments about filling $activeSlave.slaveName with the biggest implants possible.
			<<else>>
				pushing _hisA breasts together and shaking them back and forth as they steadily swell.
			<</if>>
		<<elseif $assistant.appearance == "imp">>
			making pinching gestures at $activeSlave.slaveName's nipples and pretending to slap all that tit flesh.
		<<elseif $assistant.appearance == "witch">>
			<<if $assistant.fsAppearance == "asset expansionist">>
				casting a spell and bloating _hisA breasts to insane proportions.
			<<elseif $assistant.fsAppearance == "pastoralist">>
				running _hisA hands across _hisA many breasts, tweaking a nipple here and rubbing a tit there.
			<<elseif $assistant.fsAppearance == "transformation fetishist">>
				bouncing _hisA oversized and overly round breasts back and forth.
			<<else>>
				pulling down the top of _hisA dress to reveal _hisA ample cleavage.
			<</if>>
		<<elseif $assistant.appearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
			reshapes _hisA arms into a pair of suckers and multiple needles designed to inject prey with growth accelerants as _heA slowly moves towards $activeSlave.slaveName.
		<<else>>
			purring that _heA'd love to.
		<</if>>
		You talk through the $activeSlave.slaveName's medical condition with $him, and give $him a <<if $PC.skill.medicine >= 100>>personal examination with the speed and accuracy of years of general practice<<else>>thorough exam<</if>>. Once this is done, you give $assistant.name technical directions to make minor changes to $activeSlave.slaveName's drug regime, designed to make $his @@.lime;breasts grow just slightly faster.@@ The effect is minimal, but the point is made. $He's still not happy to be transformed into a big-breasted sex slave, but $he's relieved that was $his only punishment for expressing $his unhappiness about it.
		<<if $activeSlave.geneMods.NCS == 0>>
			<<set $activeSlave.boobs += 100>>
		<<else>>
			<<set $activeSlave.boobs += 50>>
		<</if>>
	<</replace>>
<</link>>
<<if $activeSlave.lactation < 2>>
	<<link "Augment $his breast growth with lactation implants">>
		<<replace "#result">>
			You announce that you're resolved to continue growing $his breasts, and since $he feels like a cow, plan to help $him fulfill $his image of $himself. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you drag $him to the remote surgery for an impromptu lactation implant installation. When $he comes to, $he immediately realizes $his breasts are larger than ever. As $he brings a hand to each of the full mounds, a moan laced with relief and disdain escapes $his lips; along with a strong gush of milk from $his engorged breasts. $He has been taught a harsh lesson about questioning your will, a lesson $he will be reminded of every time $he has to empty $his ever swelling breasts of their excessive milk. As with all surgery @@.health.dec;$his health has been slightly affected.@@
			<<set $activeSlave.trust -= 5, $activeSlave.lactation = 2>>
			<<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), surgeryDamage($activeSlave, 10)>>
		<</replace>>
	<</link>> //This option will cost <<print cashFormat($surgeryCost)>>//
<</if>>
<<if canGetPregnant($activeSlave) && $PC.dick != 0>>
	<<link "Give $his bust a boost by knocking $him up">>
		<<replace "#result">>
			You announce that you're resolved to continue growing $his breasts, and plan to increase their rate of growth in the coming months. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you easily tip $him off balance and to the ground; mounting $his
			<<if $activeSlave.mpreg == 1>>
				<<if $activeSlave.anus == 0>>
					virgin
				<<else>>
					exposed
				<</if>>
				ass
			<<else>>
				<<if $activeSlave.vagina == 0>>
					virgin
				<<else>>
					exposed
				<</if>>
				pussy
			<</if>>
			as $he struggles to lift $his swollen breasts from the floor.
			<<if $activeSlave.mpreg == 1>>
				<<= VCheck.Anal($activeSlave, 10)>>
			<<else>>
				<<= VCheck.Vaginal($activeSlave, 10)>>
			<</if>>
			$He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow $him into $his distended breasts until you cum deep inside $his fertile hole. You return to your desk, leaving $him to sob into $his unwelcome bust as cum pools from $his abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch $him in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed $his coming child, $he will likely be too distracted by $his swelling middle to complain about their added weight.
			<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
			<<= knockMeUp($activeSlave, 100, 2, -1, 1)>>
		<</replace>>
	<</link>><<if $activeSlave.vagina == 0>> //This option will take $his virginity//<<elseif $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take $his anal virginity//<</if>>
<</if>>
<br><<link "Praise $his breasts and reassure $him">>
	<<replace "#result">>
		You decide to reassure $him, and sit $him on your lap<<if $PC.belly >= 100000>> as best $he can<</if>>.
		<<if $activeSlave.height > 185>>
			$He's a big $girl, and has trouble fitting there, but you put $him there anyway, enjoying the absurdity.
		<<elseif $activeSlave.bellyPreg >= 1500>>
			$His pregnancy is very apparent to you in this posture, and $he's quite aware of it too.
		<<elseif $activeSlave.butt > 3>>
			$His big soft butt is nice and comfortable on your thighs.
		<<else>>
			$He's hesitant, but obeys anyway.
		<</if>>
		Pulling $him back against your
		<<if $PC.belly > 1500>>
			pregnant belly,
		<<elseif $PC.boobs >= 300>>
			own bosom,
		<<elseif $PC.title == 0>>
			flat chest,
		<<else>>
			muscular chest,
		<</if>>
		you reach around $him and take over the breast-cradling responsibilities. You say nothing for a while, just hefting $his weighty udders, rolling them from side to side slightly. After letting $him get used to the gentle treatment, you tell $him that you're $his owner, and you find big breasts very attractive. You tell $him that you understand that they can be uncomfortable at times, but you expect $him to tolerate that without complaint. It isn't easy to be pretty, but it's easier to be a pretty slave than to be a homely one. This last point affects $him, and $he seems to @@.mediumaquamarine;take heart in the idea that you're improving $him,@@ at least from your perspective. After all, $he's sitting atop <<if $PC.dick != 0>>your hard dick, which $he can definitely feel<<else>>your hot cunt, which $he can probably detect<</if>> through your clothes. $He does understand that having $his <<= getWrittenTitle($activeSlave)>> enjoy touching $his boobs will be advantageous to $him.
		<<set $activeSlave.trust += 5>>
		<<if $activeSlave.lactation > 0>>
			<<set $activeSlave.lactationDuration = 2>>
			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
		<<else>>
			<<= induceLactation($activeSlave, 3)>>
		<</if>>
	<</replace>>
<</link>>
<<if $activeSlave.nipples != "fuckable">>
	<br><<link "Weight $his breasts as punishment">>
		<<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 hand<<if hasBothArms($activeSlave)>>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.
			<<elseif $activeSlave.nipplesPiercing == 1>>
				remove $his nipple piercings, one by one, and replace them with big rings. Then you give each of them a tug to ensure it's ready to bear some serious pulling.
			<<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 hand<<if hasBothArms($activeSlave)>>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.
			<<case "spherical">>
				$His implant-stuffed tits retain their rounded shape despite the tugging.
			<<case "downward-facing">>
				The nipples that cap $his downward-facing udders are tugged even farther towards the ground.
			<<case "torpedo-shaped">>
				$His torpedoes are long enough that the weights are a long way from $his chest, allowing them to tug $his nipples a long way down.
			<<case "wide-set">>
				$His wide-set tits are dragged together for once as their nipples are tugged downward.
			<<case "saggy">>
				$His poor, saggy boobs cause $his real trouble, letting the weights tug $his nipples quite a ways down.
			<<default>>
				$His heavy breasts let the weights tug $his nipples down to face at the ground.
			<</switch>>
			The first time $he tries begging, you add another weight to each breast, which drives $him over the edge into open crying. You leave $him there for a while, letting anyone who comes into the office experience the sight of $activeSlave.slaveName alternately sobbing, trying not to sob because doing so jiggles $his boobs, and then sobbing again because $his boobs hurt.
			<<set $activeSlave.trust -= 5>>
		<</replace>>
	<</link>>
<</if>>

<<case "gaped asshole">>

<<link "Give $him the surgery">>
	<<replace "#result">>
		You schedule $him for the surgery. Like all invasive procedures, it @@.health.dec;affects $his health,@@ but @@.lime;$he's effectively an anal virgin again.@@ $He @@.mediumaquamarine;trusts you a bit more@@ for granting $his request, and is eager for buttsex that's more interesting than having a hotdog thrown down $his hallway.
		<<set $activeSlave.trust += 3, $activeSlave.anus = 0, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>>
		<<run surgeryDamage($activeSlave, 10)>>
		<<if $activeSlave.skill.anal > 10>><<set $activeSlave.skill.anal -= 10>><</if>>
		<br><br>
		<span id="result2">
			<<link "Break $him in again">>
				<<replace "#result2">>
					$His ass is yours all over again. As soon as $his newly tight rosebud has recovered enough, you visit $him in the surgery, without even waiting for $him to leave it. You flip $him over on the recovery bed and force <<if $PC.dick != 0>>your cock<<else>>a strap-on<</if>> up $his butt while $he wriggles with eager discomfort, squealing in pretended horror. $His renewed anal virginity was very brief; $his ass is once again @@.lime;broken in for penetration.@@ For $his part, $he @@.hotpink;thoroughly enjoyed losing $his anal cherry,@@ again.
					<<set $activeSlave.devotion += 5, $activeSlave.anus = 1>>
					<<run seX($activeSlave, "anal", $PC, "penetrative")>>
					<<= knockMeUp($activeSlave, 5, 1, -1, 1)>>
				<</replace>>
			<</link>> //This option will take $his anal virginity//
		</span>
	<</replace>>
<</link>>
<br><<link "Fill $his gape">>
	<<replace "#result">>
		You announce that you can fill $him just fine, and you'll make $him feel it just as though $he were an anal virgin again. $He looks simultaneously intrigued and apprehensive<<if !canDoAnal($activeSlave)>> as you remove $his anal chastity<</if>>, but starts to get to $his knees like a good anal slut. You stop $him before $he can
		<<if $activeSlave.belly >= 300000>>
			lean onto $his _belly belly
		<<else>>
			face the ground
		<</if>>
		and offer you $his ass. You're going to need some lubricant for this, but the $desc's saliva should be plenty. As you <<if $PC.dick != 0>>aim your dick<<else>>swiftly pull on a strap-on and aim it<</if>> at $his face, $he realizes that $his spit is going to be the only relief $his fucked-out butt is going to have for whatever you're planning. $He blows you with desperate eagerness, doing $his absolute best to coat your<<if $PC.dick != 1>> weapon's<</if>> shaft with as much saliva as $he can. You pull it free of $his mouth with a wet pop, and $he immediately faces the floor, cocking $his hips and spreading $his huge asspussy for you.
		<br><br>
		After watching the way it contracts slightly as $he breathes hard for a while, letting $him feel the apprehension, you shove <<if $PC.dick != 0>>yourself<<else>>the phallus<</if>> inside $him. $He takes it without any reaction at all, and $his gaped hole cups it only loosely. Grabbing $him by the shoulders, you haul $his torso up so it's against your
		<<if $PC.belly >= 5000>>
			pregnancy<<if $PC.belly >= 10000>>, capped by its popped navel<</if>>,
		<<elseif $PC.boobs >= 300>>
			breasts, capped by their rock-hard nipples,
		<<elseif $PC.title == 0>>
			flat chest, capped by its rock-hard nipples,
		<<else>>
			muscular chest,
		<</if>>
		and push three of your fingers into $his mouth. $He gags, surprised, but you shove them in farther, collecting as much spit as you can reach. Then you let $him fall back down again. $He knows what you're going to do, and moans as you slide your fingers in alongside your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>>, taking huge shuddering gasps as $he feels $his sphincter accommodate the abuse. Slowly, you slide your thumb in as well, pushing it around <<if $PC.dick != 0>>your stiff prick<<else>>the unyielding phallus<</if>> until you're holding it as if masturbating. And then you masturbate. Inside $his ass. $He begins to scream, but manages to prevent $himself from resisting. $He does $his desperate best to take your crushing abuse of $his worn-out hole, and collapses when you finally orgasm and let $him go. $He does $his best to offer some sort of @@.hotpink;submissive thanks,@@ but is barely coherent, and crawls off to shower again, $his lewd sphincter pulsing as $he goes.
		<<set $activeSlave.devotion += 5>>
		<<= VCheck.Anal($activeSlave, 1)>>
		<<includeDOM App.Events.eventFetish($activeSlave, "buttslut")>>
		<<includeDOM App.Events.eventFetish($activeSlave, "masochist")>>
	<</replace>>
<</link>>
<<if $HeadGirlID != 0>>
	<br><<link "Double up on $his ass with your Head Girl">>
		<<setLocalPronouns _S.HeadGirl 2>>
		<<replace "#result">>
			You page _S.HeadGirl.slaveName for some assistance filling up a loose hole, and _he2 comes quickly, <<if canPenetrate(_S.HeadGirl)>>precum already visible at the tip of _his2 erection<<else>>bringing a strap-on<</if>>. When _he2 arrives, it's to the sight of $activeSlave.slaveName sitting on your lap<<if !canDoAnal($activeSlave)>>, anal chastity discarded<</if>>, with your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> up $his ridiculous anal gape, waiting for a second phallus while your hands tease $his $activeSlave.nipples nipples. Seeing that backup has arrived, you lean back and shift your grip to the back of the receptacle's lower thighs, pulling $him up and shifting $his hips to offer your Head Girl another berth in $activeSlave.slaveName's ass. This pulls $his loose sphincter up, producing a little gape above the top of your invading shaft, and _S.HeadGirl.slaveName loses no time in fucking it. _He2 gives $activeSlave.slaveName a kiss, but soon breaks the lip lock, since _he2's more interested in making eyes at you over your mutual anal conquest's shuddering shoulder. As
			<<if $PC.dick != 0>>
				<<if canPenetrate(_S.HeadGirl)>>
					your dicks slide against each other,
				<<else>>
					your dick slides against _his2 strap-on,
				<</if>>
			<<else>>
				<<if canPenetrate(_S.HeadGirl)>>
					your strap-on slides against _his2 dick,
				<<else>>
					your strap-ons slide against each other,
				<</if>>
			<</if>>
			your trusty Head Girl whispers that @@.hotpink;_he2 loves you.@@ $activeSlave.slaveName makes an inarticulate noise of anal distress that probably means @@.hotpink;approximately the same thing.@@
			<<set $activeSlave.devotion += 4>>
			<<= VCheck.Anal($activeSlave, 2)>>
			<<if canImpreg($activeSlave, _S.HeadGirl)>>
				<<= knockMeUp($activeSlave, 5, 1, $HeadGirlID, 1)>>
			<</if>>
			<<set _S.HeadGirl.devotion += 4>>
			<<includeDOM App.Events.eventFetish($activeSlave, "buttslut")>>
			<<includeDOM App.Events.eventFetish($activeSlave, "submissive")>>
		<</replace>>
	<</link>>
<</if>>

<<case "ara ara">>

<<link "Praise $his outlook">>
	<<replace "#result">>
		You speak from where you are, and without preamble, startling both slaves badly. Doing their best to recover, they listen as you tell $activeSlave.slaveName that $he has a good, praiseworthy outlook on life as a sex slave.
		<<if $activeSlave.energy > 80>>
			$His extreme appetite for sex will serve $him well. It's important to love what you do, and if $he wakes up every morning wanting to get fucked, $he'll enjoy $his life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>.
		<<elseif $activeSlave.fetish == "humiliation">>
			$He should feel lucky to have a fetish for public use. It's important to love what you do, and if being openly passed around gets $him off, $he'll enjoy $his life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>.
		<<elseif $activeSlave.devotion > 50>>
			It's great that $he's internalized $his role, and wants to do well. As long as $he wants to perform well and applies $himself, you're confident that $he'll continue to improve and become a better and more valuable slave.
		<<elseif $activeSlave.devotion > 20>>
			$His obedience is commendable. You understand that $he struggles with $his life as an involuntary sex object at times. $He'll learn to do better, and as $he improves, $he'll be all right as long as $he obeys you and does $his best.
		<<else>>
			To describe $his situation bluntly, the best possible approach for $him is to obey you and do $his best. There's not really any possible outcome in which slaves can lose out by doing their best to be useful and valuable. It's in $his interest to do $his best.
		<</if>>
		"Yes, <<Master>>," they chorus automatically. You turn and go. $activeSlave.slaveName is taken a bit aback by your apparent omnipresence in the penthouse, but reminds $himself that your guidance seemed straightforward and genuine. $He's @@.mediumaquamarine;confirmed in $his understanding@@ of what it means to be a good $desc.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<br><<link "Let $him know you think $he's attractive, too">>
	<<setNonlocalPronouns $seeDicks>>
	<<replace "#result">>
		The slaves continue their gossip until $activeSlave.slaveName feels a pair of <<if $PC.title == 1>>strong<<else>>firm, feminine<</if>> hands grip the sides of $his
		<<if $activeSlave.belly >= 150000>>
			_belly distended
		<<elseif $activeSlave.weight > 95>>
			fat
		<<elseif $activeSlave.belly >= 5000>>
			<<if $activeSlave.bellyPreg >= 3000>>
				pregnancy swollen
			<<elseif $activeSlave.bellyImplant >= 3000>>
				implant swollen
			<<else>>
				<<print $activeSlave.inflationType>>-bloated
			<</if>>
		<<elseif $activeSlave.weight > 30>>
			pudgy
		<<elseif $activeSlave.waist < -95>>
			cartoonishly narrow
		<<elseif $activeSlave.muscles > 30>>
			ripped
		<<elseif $activeSlave.waist < -10>>
			wasp
		<<elseif $activeSlave.weight > 10>>
			soft
		<<elseif $activeSlave.muscles > 5>>
			toned
		<<elseif $activeSlave.weight >= -10>>
			trim
		<<else>>
			skinny
		<</if>>
		waist. $He starts but doesn't try to turn, and shivers as you run your hands up
		<<if $activeSlave.weight > 130>>
			the thick, soft flesh that pads $his ribs
		<<elseif $activeSlave.muscles > 30>>
			the muscles that jacket $his ribs
		<<elseif $activeSlave.weight > 30>>
			the soft flesh that pads $his ribs
		<<else>>
			$his ribcage
		<</if>>
		and forward
		<<if $activeSlave.boobs > 3000>>
			into the soft, weighty place formed by the overhang of $his massive breasts
		<<elseif $activeSlave.boobs > 300>>
			to cup $his breasts
		<<else>>
			to clasp $him around the sternum
		<</if>>
		and pull $him back into your arms. The other slave watches silently, awaiting some cue as to whether _heU's to join in or return to breakfast; you give _himU a flick of your chin, and _heU turns away, leaving you with $activeSlave.slaveName, embracing among the eating slaves.
		<br><br>
		You whisper into $his ear that you think $he's attractive, <<if $PC.dick != 0>>and point out that $he can feel the proof between $his buttocks. You're hard, and your stiff prick is poking $him in the rear. $He gasps and shifts a little, and you nestle your dick even closer into the warm place between $his legs and ass.<<else>>and tell $him that you can prove it. You grab one of $his hands and pull it around behind $him, between you, making $him feel your pussy. $He gasps at how wet it is.<</if>> "An old <<s>>lave like me, <<Master>>?" $he echoes in a small voice. An old slave like $him, you confirm, and tell $him that right now,
		<<if $PC.dick != 0 && (canDoVaginal($activeSlave) || canDoAnal($activeSlave))>>
			<<if canDoVaginal($activeSlave)>>
				you've decided to fuck $his pussy. $He starts at the sudden vulgarity, even with your cock resting against the soft skin between the bottom of $his vulva and $his anus, and shudders with sudden pleasure as you use a hand to guide yourself inside $his welcoming channel.
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				$his ass is yours. $He starts at the sudden vulgarity, even though <<if canHear($activeSlave)>>hearing<<else>>discovering<</if>> that the cock that's pressing against $his butt will be going inside it soon can't be that surprising. $He cocks $his hips obediently, letting you force your dick up $his asshole.
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
			You take $him standing,
		<<else>>
			some oral sex from a slave like $him sounds just right. You push $him to $his knees and
			<<if $PC.dick != 0>>
				push your dick into $his mouth,
			<<else>>
				hold $his mouth to your cunt,
			<</if>>
			taking your pleasure from $him
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		right there among your breakfasting slaves, who try to ignore you or watch with appreciation, according to their own natures. When you're finished, you <<if $PC.dick != 0>>spin $him around and kiss $him,<<else>>pull $him up to $his feet and kiss $him, tasting yourself on $his lips and<</if>> making sure $he knows @@.hotpink;you appreciate $his mature body@@ just as much as <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>$his customers do<<else>>your citizens do<</if>>.
		<<set $activeSlave.devotion += 5>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $PC.dick != 0>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0) && $PC.dick != 0>> //This option will take $his anal virginity//<</if>>

<<case "arcade sadist">>

<<link "Ask $him about $his fantasy">>
	<<setNonlocalPronouns $seeDicks>>
	<<replace "#result">>
		<<set _pussy = App.Entity.facilities.arcade.employees().some(s => s.vagina > 0)>>
		<<set _balls = App.Entity.facilities.arcade.employees().some(s => s.balls > 0)>>
		You order $him to explain further. "<<Master>>," $he <<say>>s carefully, "it'<<s>> $arcadeName. There'<<s>> a <<s>>pe<<c>>ific pla<<c>>e there, and, well, I can't de<<s>>cribe it. It'<<s>> in the <<s>>ervi<<c>>e area under $arcadeName. Can I <<sh>>ow you what I mean?" Intrigued, you order $him to show you the place $he's talking about, and lead $him to $arcadeName through the access hallway. $He points to the service tunnel under one of the rows of inmates, which allows trusted slaves to clean up and perform maintenance.
		<<if $activeSlave.belly >= 100000>>
			Once you've managed to shove the massive slut
		<<elseif $activeSlave.belly >= 5000>>
			Once you've helped the <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> $girl fit
		<<else>>
			Once you've led $him
		<</if>>
		in there, $he stops and <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>><<if $PC.belly >= 100000>> as you struggle to join $him in the increasingly cramped space<<elseif $PC.belly >= 5000>> as you gently slip your motherly body in after $him<</if>>.
		Inside the industrial access corridor, above you both is a row of bodies. The slaves' faces and hips are pressed against the apertures that present their holes to customers, but the rest of them is visible from here.
		<br><br>
		There is little noise; the slaves are closely restrained. Indeed, you have to look closely to see that they're being fucked at all. Here and there, though, there are signs. When someone fucks a slave's face, _hisU throat bulges, and _heU often gags and struggles a little within the restraints. When their <<if _pussy>>pussies<<else>>assholes<</if>> get fucked, there's also some involuntary struggling, and if the phallus being thrust into them is particularly large, a rhythmic bulging of their abdomens can be discerned.
		<<if $arcadeUpgradeInjectors == 1>>
			The bodies frequently jerk as electrostimulation is applied to force them to tighten their holes.
		<<elseif $arcadeUpgradeInjectors == 2>>
			The quiet hissing of the drug injectors adds a menacing undertone, and the bodies frequently jerk as electrostimulation is applied to force them to tighten their holes.
		<</if>>
		<<if $arcadeUpgradeCollectors == 1>>
			The pumping collectors attached to the slaves' breasts<<if _dick>> and cocks<</if>> carry the white fluid away to be processed elsewhere.
		<</if>>
		The overall effect is subtle, but powerful. There's a sense of total servitude, overlaid with a certain feeling, or perhaps even a scent, of mindless despair. There's no wonder $activeSlave.slaveName likes it; there's an infinite supply of uncomplicated human anguish here.
		<br><br>
		<span id="result2">
			<<if $PC.belly < 5000 && $activeSlave.belly < 5000>>
				<<link "Fuck $him here">>
					<<replace "#result2">>
						You reach out for $activeSlave.slaveName, not taking your eyes off the mesmerizing sight above. $He's enjoying the spectacle too, and is so aroused that your rough handling of $his breasts almost brings $him to an immediate orgasm. <<if $activeSlave.nipples != "fuckable">>Pinching<<else>>Hooking<</if>> $his $activeSlave.nipples nipples to stop $him from getting off too soon, you
						<<if $PC.dick == 0>>
							hug $him to your chest and start playing with $his pussy, commanding $him to reach around and do the same for you.
							<<run seX($activeSlave, "oral", $PC, "penetrative")>>
						<<elseif canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
							pull $him up to the right height and slide your dick inside $him, keeping both of you on your feet so you can take $him standing.
							<<= VCheck.Vaginal($activeSlave, 1)>>
						<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
							shove your cock roughly up $his asshole, letting $him struggle a little as $he finds the right angle to take standing anal here.
							<<= VCheck.Anal($activeSlave, 1)>>
						<<else>>
							slide your stiff prick up between the virgin's thighs for some intercrural sex.
						<</if>>
						As you fuck<<if $activeSlave.belly >= 5000 || $PC.belly >= 5000 || $activeSlave.weight > 160 || $activeSlave.boobs > 40000 || $activeSlave.butt > 10>> in the cramped corridor<</if>>, $his <<if canSee($activeSlave)>>gaze flicks up and down along the row<<elseif canHear($activeSlave)>>ears perk up at the subtle sounds<<else>>expression indicates that $he's become lost in $his thoughts<</if>> of suffering bodies. $He climaxes again and again, shuddering at each new subtle sign that another one of the slaves here is being degraded by yet another cock inserted into yet another of _hisU defenseless holes. By the time you're satisfied, $he's so exhausted that $his legs are shuddering uncontrollably as $he struggles to remain standing with you. You drop $him, leaving $him to find $his own way out of this place. You look back from the entrance, seeing that $he's following you on shaky legs, <<if canSee($activeSlave)>>staring at<<else>>facing<</if>> you with a profound look of mixed @@.mediumaquamarine;trust for your understanding of $his horrible sadism,@@ and deep unease that this is what truly gets $him off.
					<</replace>>
					<<set $activeSlave.trust += 5>>
				<</link>>
			<<else>>
				Fucking $him here would be interesting; unfortunately, there just isn't enough room for two mothers-to-be.
			<</if>>
			<br><<link "Teach $him about true sadism">>
				<<set _ress = App.Entity.facilities.arcade.employees().random()>>
				<<setLocalPronouns _ress 2>>
				<<replace "#result2">>
					$He seems to be focusing on the purely physical aspects of the degradation here. The true meaning of this place is so much more, and you decide to share it with $him. You call $his name, tearing $his attention away from the spectacle mere <<if $showInches == 2>>inches<<else>>centimeters<</if>> over your heads, and <<if canSee($activeSlave)>>point<<else>>direct $him<</if>> to a particular slave. You tell $activeSlave.slaveName that this particular Arcade inmate's name is
					<<= SlaveFullName(_ress)>>. You tell $him that _he2 is _ress.actualAge years old, that _he2 is _ress.nationality, and that _he2 was once <<= convertCareer(_ress)>>. You list more details of _his2 life before _he2 was placed here to be fucked endlessly. $activeSlave.slaveName's eyes widen as you recite the details of the prior life of this piece of human sexual equipment and the sheer weight of the intellectual sadism smashes into $him. Then the slave above you both jerks a little. <<if $activeSlave.dick == 0>>There's no visible sign _his2 pussy's being fucked, so it must be<<else>>_His2 cock hardens involuntarily, indicating that it's<</if>> going into _his2 ass. You resume, mentioning that _he2's been buttfucked _ress.counter.anal times.
					$activeSlave.slaveName jerks suddenly, <<if canAchieveErection($activeSlave)>>shooting $his cum onto the floor<<elseif $activeSlave.vagina < 0>>dribbling a little<<elseif $activeSlave.vaginaLube > 0>>squirting onto the floor<<else>>orgasming<</if>>. $He came without being touched. $He <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> the mess $he made just by being in the presence of the arcology's @@.hotpink;undisputed preeminent sadist;@@ $he shudders at the sheer gothic glory of it. $He has a new moment to think of when $he feels like @@.lightsalmon;indulging $his own sadism.@@
				<</replace>>
				<<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+10, 0, 100)>>
			<</link>>
		</span>
	<</replace>>
<</link>>
<br><<link "Just fuck $him">>
	<<replace "#result">>
		You're not particularly interested in what $he dreams about when $he gets the chance, and you tell $him so. Whatever sadistic little fantasies $he keeps locked away to bring out when $he's got a moment to satiate $his perversions is less interesting to you than the prospect of
		<<if $PC.dick == 0>>
			$his mouth on your cunt. So, you shove $him down to sit on the couch and straddle $his face, cutting off any further whimsies by pressing your wet pussy against $his lips. $He eats you out obediently, accepting
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<<elseif canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>>
			giving it to $him. So, you shove $him down to sit on the couch, nudge $his legs apart, kneel between them, and pound $his pussy. You fuck $him so hard that $he doesn't have the attention for further whimsies, and $he accepts
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>>
			fucking $his butt. So, you shove $him down to <<if hasAnyLegs($activeSlave)>>kneel<<else>>get<</if>> on the couch facing away from you, and ram your cock up $his asshole. You assfuck $him so hard that $he doesn't have the attention for further whimsies, and $he accepts
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			$him sucking your dick. So, you shove $him down to sit on the couch and give $him your cock to keep $his mouth occupied, cutting off any further whimsies. $He blows you obediently, accepting
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		the implicit message that @@.hotpink;$he's your slut@@ in the real world, whatever thoughts $he may find appealing in the privacy of $his own mind.
	<</replace>>
	<<set $activeSlave.devotion += 3>>
<</link>>

<<case "servant maid">>

<<link "Stop $him">>
	<<replace "#result">>
		You look $activeSlave.slaveName up and down slowly before informing $him that $he has one more duty left to perform.
		<br><br><span id="result2">
			<<if canDoAnal($activeSlave)>>
				<<link "Clean out $his ass with an enema and fuck it">>
					<<replace "#result2">>
						You tell $activeSlave.slaveName that $he forgot to clean one thing in $his office — $himself. As $he looks at you in confusion, you rise from your chair and lightly press $his chest down on your desk. $He lays there obediently, only letting out a gasp as the cold tip of an enema bulb penetrates $his ass. As a result of $his slave diet and daily anal preparation, the insertion of the enema is little more a bit of roleplaying spectacle. When you retrieve the enema from $his rectum you remark, <<if $PC.dick == 0>>as you don a strap-on, <</if>>that you'll need to inspect $his asshole personally with a vigorous assfucking. Soon $activeSlave.slaveName finds $himself being pounded so forcefully that a small pool of drool begins to form beneath $his open mouth, staining the surface of your desk that $he so meticulously cleaned. $He @@.mediumaquamarine;resolves to trust you more in the future,@@ since you took a personal interest in $his cleanliness.
						<<= VCheck.Anal($activeSlave, 1)>>
						<<set $activeSlave.trust += 4>>
					<</replace>>
				<</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>>
			<</if>>
			<br><<link "Have $him lick you clean">>
				<<replace "#result2">>
					You recline in your chair and inform $activeSlave.slaveName that $he has one last thing to clean in your office. $He understands your meaning quickly, sinks to $his knees and <<if $activeSlave.belly >= 5000>>struggles to crawl<<else>>crawls<</if>> beneath your desk to kneel between your legs. Soon enough you feel the sensation of $his lips wrapping obediently about one of your toes, fellating the appendage with some enthusiasm. $He works $his way through your various digits, taking some solace in the simplicity of $his task, before a sudden understanding dawns on $him. $He runs $his tongue up your leg, cleansing your skin with $his tongue as best $he can, before heading for your
					<<if $PC.dick != 0>>cock<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>cunt<</if>>
					but you lay a hand on $his forehead and halt $him — $he'll do that last.
					<<if $PC.boobs >= 300 || $PC.title == 0>>
						Soon enough $he manages to lick all the way up from your feet to your breasts, cleansing your <<if $PC.belly >= 60000>>massively gravid <<elseif $PC.belly >= 5000>>motherly <</if>>body with $his wet tongue all the way. $He hesitates before teasingly laying a single lap on your nipples, so you take $his head and hold it against your breasts to enjoy $his skillful tongue on your nipples.<<if $PC.lactation > 0>> $He even gets a special treat to savor, fresh from $his <<= getWrittenTitle($activeSlave)>>'s milky breasts. $He makes sure your sore breasts are sufficiently relieved.<</if>>
					<<else>>
						Soon enough $he manages to lick all the way up from your feet to your <<if $PC.belly >= 10000>>taut dome of a stomach<<elseif $PC.belly >= 5000>>pregnancy strained abs<<else>>abs<</if>>, pecs, and collarbone, cleansing your body with $his wet tongue all the way. $He lavishes particular attention on every nook and groove of your chiseled body, clearly eager to please $his muscular <<if $PC.belly >= 5000>>(and very pregnant) <</if>><<= getWrittenTitle($activeSlave)>>.
					<</if>>
					When $he's satisfied that every other <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your body has been bathed by $his tongue, $he moves for your
					<<if $PC.dick == 0>>
						cunt, and laps at you enthusiastically
					<<else>>
						cock, and runs $his tongue all over its surface<<if $PC.vagina != -1>> before turning $his attentions to lavish the same wet service to your pussy<</if>>
					<</if>>
					This extravagant display of $his subservience leaves $him more sure of $his @@.hotpink;submission@@ to you than before.
					<<set $activeSlave.devotion += 4>>
					<<run seX($activeSlave, "oral", $PC, "penetrative")>>
				<</replace>>
			<</link>>
		</span>
	<</replace>>
<</link>>
<br><<link "Let $him go">>
	<<replace "#result">>
		You grant $him your assent to leave, and $he hurries off to go on with $his day. $His @@.mediumaquamarine;trust@@ for you grows as a result of allowing $him to go about $his duties unmolested.
		<<set $activeSlave.trust += 2>>
	<</replace>>
<</link>>

<<case "young PC age difference">>

<<link "Gently acclimate $him to the age difference with some lovemaking">>
	<<replace "#result">>
		As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into your arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyesColor($activeSlave)>>. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years your senior $he is<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years your senior $he is<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy. Instead, you
		<<if $activeSlave.belly >= 300000>>
			help $him to <<if hasBothLegs($activeSlave)>>$his feet<<else>>stand up<</if>> and guide $him to bed, aiding the <<if $activeSlave.bellyPreg >= 3000>>child-laden<<else>>tremendously swollen<</if>> older $woman onto the sheets before gently mounting $him.
		<<else>>
			<<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed older $woman down on the sheets before gently positioning yourself on top of $him.
		<</if>>
		Together, the two of you make fiercely intimate love, while you <<if canHear($activeSlave)>>whisper romantic reassurances into $his ear, <</if>>nip at $his neck,
		<<if $activeSlave.bellyPreg >= 300000>>
			run your hands across $his squirming brood,
		<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
			stroke $his pregnant belly,
		<<elseif $activeSlave.belly >= 5000>>
			caress the curve of $his _belly belly,
		<</if>>
		and bring $him to climax again and again. After a final frantic orgasm together in $his
		<<if canDoVaginal($activeSlave)>>
			pussy
		<<else>>
			anus
		<</if>>
		$he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his young <<= getWrittenTitle($activeSlave)>>.
		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
		<<if canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<br><<link "Cruelly torment $him about the age difference">>
	<<replace "#result">>
		As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $his bent over
		<<if $activeSlave.belly >= 300000>>
			$his _belly belly
		<<else>>
			your desk
		<</if>>
		and begun spanking $his
		<<if $activeSlave.butt > 12>>
			absurd ass,
		<<elseif $activeSlave.butt > 6>>
			massive behind,
		<<elseif $activeSlave.butt > 3>>
			bountiful bottom,
		<<else>>
			cute ass,
		<</if>>
		$he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so young a <<= getWrittenTitle($activeSlave)>>, $he begins to sob quietly
		<<if $activeSlave.belly >= 300000>>
			<<if $activeSlave.boobs > 600>>
				into $his breasts.
			<<else>>
				into $his hands.
			<</if>>
		<<else>>
			against the hard surface of your desk.
		<</if>>
		<br><br>
		By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by a cruel <<= getWrittenTitle($activeSlave)>>, nearly half $his age. Even when you accompany each brutal thrust with a harsh spank and a harsher jab at the dearth in years between the two of you, $he merely winces at the
		<<if canDoVaginal($activeSlave)>>
			force
		<<else>>
			anal pain
		<</if>>
		of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@
		<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
		<<if canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<<if isFertile($activeSlave)>>
	<br><<link "Give $him an afternoon off for some quality time with a local Frat House">>
		<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
		<<replace "#art-frame">>
			/* 000-250-006 */
			<<if $seeImages == 1>>
				<<if $imageChoice == 1>>
					<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
				<<else>>
					<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
				<</if>>
			<</if>>
			/* 000-250-006 */
		<</replace>>
		<<set $activeSlave.clothes = _clothesTemp>>
		<<replace "#result">>
			You direct $assistant.name to clear $activeSlave.slaveName's schedule and to find a local Frat House willing to 'host' a $woman of $his age and experience. Perhaps a group of virile college boys running a train on $activeSlave.slaveName might accustom $him to younger sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like a frumpy old world MILF and is clearly skeptical about your age-play therapy.
			<br><br>
			$activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems young cock agrees with $him, and by the state of $his
			<<if $activeSlave.mpreg == 1>>
				cum-drenched asshole
			<<else>>
				messy pussy
			<</if>>
			$his youthful partners particularly enjoyed filling $him with their potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his Frat House excursion. It seems that being bred by a bunch of horny college boys has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons.
			<<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>>
			<<set $activeSlave.pregType = setPregType($activeSlave)>>
			<<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>>
			<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>>
			<<if $activeSlave.mpreg == 1>>
				<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
				<<if $activeSlave.anus == 0>>
					<<set $activeSlave.anus++>>
				<</if>>
			<<else>>
				<<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>>
				<<if $activeSlave.vagina == 0>>
					<<set $activeSlave.vagina++>>
				<</if>>
			<</if>>
		<</replace>>
	<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>>
<</if>>

<<case "old PC age difference">>

<<link "Gently acclimate $him to the age difference with some lovemaking">>
	<<replace "#result">>
		As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into your arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his <<= App.Desc.eyesColor($activeSlave)>>. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years $his senior you are<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years $his senior you are<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy.
		Instead, you
		<<if $activeSlave.belly >= 300000>>
			help $him to <<if hasBothLegs($activeSlave)>>$his feet<<else>>stand up<</if>> and guide $him to bed, aiding the
			<<if $activeSlave.physicalAge <= 3>>
				<<if $activeSlave.bellyPreg >= 3000>>
					bursting at the seams with life
				<<else>>
					nearly circular
				<</if>>
				little $girl
			<<elseif $activeSlave.physicalAge < 13>>
				<<if $activeSlave.bellyPreg >= 3000>>
					poor overfilled and ready to pop
				<<else>>
					tremendously swollen
				<</if>>
				$girl
			<<elseif $activeSlave.physicalAge < 18>>
				<<if $activeSlave.bellyPreg >= 3000>>
					child-filled
				<<else>>
					tremendously swollen
				<</if>>
				teen
			<<else>>
				<<if $activeSlave.bellyPreg >= 3000>>
					child-laden
				<<else>>
					tremendously swollen
				<</if>>
				young lady
			<</if>>
			onto the sheets before gently mounting $him.
		<<else>>
			<<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed
			<<if $activeSlave.physicalAge <= 3>>
				little $girl
			<<elseif $activeSlave.physicalAge < 13>>
				$girl
			<<elseif $activeSlave.physicalAge < 18>>
				teen
			<<else>>
				young lady
			<</if>>
			down on the sheets before gently positioning yourself on top of $him.
		<</if>>
		Together, the two of you make fiercely intimate love, while you <<if canHear($activeSlave)>>whisper romantic reassurances into $his ear, <</if>>nip at $his neck,
		<<if $activeSlave.bellyPreg >= 300000>>
			run your hands across $his squirming brood,
		<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>
			stroke $his pregnant belly,
		<<elseif $activeSlave.belly >= 5000>>
			caress the curve of $his _belly belly,
		<</if>>
		and bring $him to climax again and again. After a final frantic orgasm together in $his
		<<if canDoVaginal($activeSlave)>>
			pussy
		<<else>>
			anus
		<</if>>
		$he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his aged <<= getWrittenTitle($activeSlave)>>.
		<<set $activeSlave.devotion += 4, $activeSlave.trust += 4>>
		<<if canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<br><<link "Cruelly torment $him about the age difference">>
	<<replace "#result">>
		As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $him bent over
		<<if $activeSlave.belly >= 300000>>
			$his _belly belly
		<<else>>
			your desk
		<</if>>
		and begun spanking $his
		<<if $activeSlave.butt > 12>>
			absurd ass,
		<<elseif $activeSlave.butt > 6>>
			massive behind,
		<<elseif $activeSlave.butt > 3>>
			bountiful bottom,
		<<else>>
			cute ass,
		<</if>>
		$he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so old a <<= getWrittenTitle($activeSlave)>>, $he begins to sob quietly
		<<if $activeSlave.belly >= 300000>>
			<<if $activeSlave.boobs > 600>>
				into $his breasts.
			<<else>>
				into $his hands.
			<</if>>
		<<else>>
			against the hard surface of your desk.
		<</if>>
		<br><br>
		By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by so cruel an old <<Master>>. Even when you accompany each brutal thrust with a harsh spank and a harsh jab at the dearth in years between the two of you, $he merely winces at the
		<<if canDoVaginal($activeSlave)>>
			force
		<<else>>
			anal pain
		<</if>>
		of your coupling. Judging by the <<if !canSee($activeSlave)>>exceptionally <</if>>empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $him into compliance.@@
		<<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>>
		<<if canDoVaginal($activeSlave)>>
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<else>>
			<<= VCheck.Anal($activeSlave, 1)>>
		<</if>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<<if isFertile($activeSlave)>>
	<br><<link "Give $him an afternoon off for some quality time with a local retirement community">>
		<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "no clothing">>
		<<replace "#art-frame">>
			/* 000-250-006 */
			<<if $seeImages == 1>>
				<<if $imageChoice == 1>>
					<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
				<<else>>
					<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
				<</if>>
			<</if>>
			/* 000-250-006 */
		<</replace>>
		<<set $activeSlave.clothes = _clothesTemp>>
		<<replace "#result">>
			You direct $assistant.name to clear $activeSlave.slaveName's schedule and to find a local retirement community willing to 'host' a $girl of $his age. Perhaps a group of venerable graybeards running a train on $activeSlave.slaveName might accustom $him to older sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like an old world school<<= $girl>> and is clearly skeptical about your age-play therapy.
			<br><br>
			$activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems a good fucking from experienced older men agrees with $him, and by the state of $his
			<<if $activeSlave.mpreg == 1>>
				cum-drenched asshole
			<<else>>
				messy pussy
			<</if>>
			$his aged partners particularly enjoyed filling $him with their still potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his excursion. It seems that being bred by a bunch of horny old men has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons.
			<<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>>
			<<set $activeSlave.pregType = setPregType($activeSlave)>>
			<<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>>
			<<set $activeSlave.fetish = "pregnancy", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 5>>
			<<if $activeSlave.mpreg == 1>>
				<<run seX($activeSlave, "anal", "public", "penetrative", 10)>>
				<<if $activeSlave.anus == 0>>
					<<set $activeSlave.anus++>>
				<</if>>
			<<else>>
				<<run seX($activeSlave, "vaginal", "public", "penetrative", 10)>>
				<<if $activeSlave.vagina == 0>>
					<<set $activeSlave.vagina++>>
				<</if>>
			<</if>>
		<</replace>>
	<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> //and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>>
<</if>>

<<case "nice guys">>

<<link "Let the boys be">>
	<<replace "#result">>
		The circumstances are somewhat novel, but are ultimately not worthy of your time and attention. You do, however, direct $assistant.name to deploy more public servants to the area in a bid to direct the tourists' attention away from $activeSlave.slaveName. In time, the boys lose interest and wander off to leer at the other slaves suddenly populating the area. $activeSlave.slaveName @@.mediumaquamarine;trusts@@ you more for disentangling $him from a potentially awkward situation.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<br><<link "Educate them in the role of a public servant">>
	<<replace "#result">>
		You instruct $assistant.name to have $activeSlave.slaveName give the tourists a real Free Cities welcome, as befitting one of your public servants.
		<br><br>
		Some time later, you return to the video feed to see $activeSlave.slaveName giving each of the boys a hug goodbye. The boys reciprocate $his affection warmly, even as they try to ignore the fact that $his $activeSlave.skin face and chest are spattered with their cum. $activeSlave.slaveName has certainly given the tourists a crash course in Free Cities culture and @@.green;improved your reputation@@ at the same time.
		<<run seX($activeSlave, "oral", $PC, "penetrative", 6)>>
		<<run repX(1250, "event", $activeSlave)>>
	<</replace>>
<</link>>
<<if (canDoVaginal($activeSlave) && $activeSlave.vagina != 0) || (canDoAnal($activeSlave) && $activeSlave.anus != 0)>>
	<br><<link "Instruct the slave to offer sex to the highest bidder">>
		<<replace "#result">>
			You instruct $assistant.name to have $activeSlave.slaveName offer $his body to the highest bidder among the eager tourists. Though the boys are initially taken aback by $his forwardness, a rapid yet red-faced bidding war takes place. As soon as the winning bid is decided, $activeSlave.slaveName sinks to $his knees in front of the winner and unbuckles his pants, soon taking his hardening member deep into $his mouth.
			<br><br>
			Some time later, you return to the video feed to see
			<<if $activeSlave.bellyPreg >= 750000>>
				the lucky winner carefully taking $activeSlave.slaveName from behind as he gingerly caresses $his straining, squirming pregnancy.
			<<elseif $activeSlave.belly >= 750000>>
				the lucky winner taking $activeSlave.slaveName from behind with his arms wrapped as far around $his _belly middle as possible.
			<<elseif $activeSlave.boobs > 25000>>
				the lucky winner's head poking out from beneath pair of humongous breasts as $activeSlave.slaveName rides him.
			<<elseif $activeSlave.bellyPreg >= 450000>>
				the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his arms wrapped around $his _belly pregnant belly.
			<<elseif $activeSlave.belly >= 450000>>
				the lucky winner taking $activeSlave.slaveName roughly in missionary, his arms wrapped around $his massively distended belly.
			<<elseif $activeSlave.weight > 190>>
				the lucky winner's head poking out from beneath $activeSlave.slaveName's humongous belly as $he rides him.
			<<elseif $activeSlave.butt > 10>>
				the lucky winner wrapping his arms around $activeSlave.slaveName's massive ass as he struggles to get deep enough into it to penetrate $him.
			<<elseif $activeSlave.bellyFluid >= 5000>>
				the lucky winner playfully jiggling $activeSlave.slaveName's <<print $activeSlave.inflationType>>-filled belly as $he rides him vigorously to give $his stomach that extra bounce for him.
			<<elseif $activeSlave.clit >= 3>>
				the lucky winner gazing down at the clit rubbing against his stomach as $activeSlave.slaveName rides him.
			<<elseif $activeSlave.boobs > 5000>>
				the lucky winner's head enveloped by a pair of massive breasts as $activeSlave.slaveName rides him.
			<<elseif $activeSlave.belly >= 150000>>
				<<if $activeSlave.bellyPreg > 0>>
					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands gently cradling $his _belly pregnant belly.
				<<else>>
					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his _belly swollen belly.
				<</if>>
			<<elseif $activeSlave.dick > 6>>
				the lucky winner gazing down at the lengthy cock slapping against his stomach as $activeSlave.slaveName rides him.
			<<elseif $activeSlave.weight > 130>>
				the lucky winner groping $activeSlave.slaveName's jiggling body as $he gently rides him.
			<<elseif $activeSlave.belly >= 1500>>
				<<if $activeSlave.bellyPreg > 0>>
					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands cradling $his pregnant belly.
				<<else>>
					the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his swollen belly.
				<</if>>
			<<elseif $activeSlave.dick > 3>>
				the lucky winner gazing down at a cock slapping against his stomach as $activeSlave.slaveName rides him.
			<<elseif $activeSlave.anus > 2>>
				the lucky winner pounding ass like it's his last day in the Free Cities.
			<<elseif $activeSlave.dick > 0>>
				the lucky winner gingerly prodding the tiny cock slapping against his stomach as $activeSlave.slaveName rides him.
			<<elseif $activeSlave.visualAge > 35>>
				the lucky winner double checking with $activeSlave.slaveName that $he isn't his mother, even as $he rides his cock and gives him pointers on his lack of technique.
			<<elseif $activeSlave.lips > 40>>
				the lucky winner with a pair of plush lips wrapped around his cock, his hands gripping onto a $activeSlave.hColor-haired head for dear life as $activeSlave.slaveName sucks him dry.
			<<elseif $activeSlave.face > 60>>
				the lucky winner staring in awe at the beautiful face of $activeSlave.slaveName, as $he rides him tenderly.
			<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>
				the lucky winner engaged in a lively debate with $activeSlave.slaveName as he takes $him from behind.
			<<else>>
				the lucky winner taking $activeSlave.slaveName in every position he can think of, which is amusingly not very many at all.
			<</if>>
			<br><br>
			In the end, the boy sates his lust on $activeSlave.slaveName till he can't continue. His compatriots, having had their own voyeuristic fill, drag their overstimulated friend off and wander away in search of their accommodation.
			<<if canDoVaginal($activeSlave)>>
				<<run seX($activeSlave, "vaginal", "public", "penetrative", 5)>>
				<<if canDoAnal($activeSlave)>>
					<<run seX($activeSlave, "anal", "public", "penetrative", 2)>>
					<<if $activeSlave.anus == 0>>
						<<set $activeSlave.anus++>>
					<</if>>
				<</if>>
				<<if $activeSlave.vagina == 0>>
					<<set $activeSlave.vagina++>>
				<</if>>
			<<else>>
				<<run seX($activeSlave, "anal", "public", "penetrative", 5)>>
				<<if $activeSlave.anus == 0>>
					<<set $activeSlave.anus++>>
				<</if>>
			<</if>>
			<<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>>
				<<= knockMeUp($activeSlave, 15, 2, 0, 1)>>
			<</if>>
			<<run seX($activeSlave, "oral", "public", "penetrative", 2)>>
			<<run cashX(2000, "event", $activeSlave)>>
		<</replace>>
	<</link>>
<</if>>

<<case "desperate null">>

<<link "Take pity">>
	<<replace "#result">>
		Deciding to take pity, you stand up<<if $PC.dick == 0>>, pull on a strap-on,<</if>> and approach $his crumpled, weeping form. You reach down and take $his clasped hands in yours, pulling $him gently <<if hasBothLegs($activeSlave)>>to $his feet<<else>>upright<</if>> and giving $him a quick cuddle. You make it just long enough to reassure $him that you care for $him, but not long enough to frustrate $him even further; $his extreme horniness is only sharpened by the hug and the way it traps $his arm<<if hasBothArms($activeSlave)>>s<</if>> between $his
		<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
			fake boobs
		<<elseif $activeSlave.boobs > 4000>>
			monstrous udders
		<<elseif $activeSlave.boobs > 800>>
			big soft breasts
		<<elseif $activeSlave.boobs > 300>>
			tits
		<<else>>
			flat chest
		<</if>>
		and your
		<<if $PC.boobs >= 300>>
			bosom.
		<<elseif $PC.title == 0>>
			chest.
		<<else>>
			hard pectorals.
		<</if>>
		$He sniffles, trying to restrain $his hopes. You push $him backwards toward the couch, giving $him a kiss to really bring $him to the height of anticipation before laying $him down and sliding your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> <<if $activeSlave.anus > 1>>inside $his soft asshole<<else>>up $his tight little butt<</if>>.
		<<if $activeSlave.prostate != 0>>
			The instant <<if $PC.dick != 0>>your hard dickhead<<else>>the hard tip of your phallus<</if>> presses against $his prostate, $he orgasms, squirting <<if $activeSlave.balls == 0>>translucent fluid<<else>>cum<</if>>. $He looks like $he wants to say something, or maybe even apologize, so you shush $him with a gentle hand and pull out, letting the fluid run down <<if $activeSlave.scrotum > 0>>$his soft scrotum<<else>>the pretty skin between $his cumhole and $his anus<</if>> until it glazes $his asspussy. You use <<if $PC.dick != 0>>the tip of your cock<<else>>the head of the strap-on<</if>> to massage the fluid into the hole before penetrating it again with the extra lubrication.
		<<else>>
			Without a prostate or a strong anal fetish, $he'll have trouble climaxing to nothing but buttsex, so you make sure to tend to every erogenous zone $he has left. You guide one of $his hands down so $he can rub <<if $activeSlave.scrotum > 0>>$his scrotum<<else>>the skin between $his legs<</if>>, and make $his stimulate one of $his nipples with the other. You <<if $activeSlave.nipples != "fuckable">>pinch and rub<<else>>finger<</if>> $his other nipple, and push two fingers of your other hand into $his mouth, making $him suck them. So completely stimulated, $he finally manages to orgasm.
		<</if>>
		You make love to $him until $he's satisfied, and then carry $him to the shower to wash $him off. Under the warm water, $he @@.mediumaquamarine;stays trustingly close to your naked body,@@ without even thinking about it.
		<<set $activeSlave.trust += 5>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>><<if $activeSlave.anus == 0>>//This option will take $his anal virginity//<</if>>
<br><<link "Assrape $him">>
	<<replace "#result">>
		$He's an anal sex toy, and you decide to use $him like one. You walk over, reach down, and jerk $him <<if hasBothLegs($activeSlave)>>to $his feet<<else>>off the ground<</if>>. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin $him roughly around and use one arm to pin $his upper body mercilessly in place while you use your other hand to
		<<if $activeSlave.anus > 2>>
			manhandle your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> up $his roomy ass. It's disappointingly easy, and $he takes it without a struggle, so you reach around $his front, down between $his legs, and jam a couple of fingers up there, too.
		<<elseif $activeSlave.anus > 1>>
			shove your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> up $his anus. $He's taken hard anal before, but the angle isn't particularly comfortable, you didn't bother with lube, and you begin to rape $him vigorously without any warning.
		<<else>>
			force your <<if $PC.dick != 0>>cock<<else>>strap-on<</if>> up $his spasming anus. $He'd struggle to take it in a position far more comfortable for anal than standing straight up, and you don't even bother to take it slow.
		<</if>>
		"<<Master>>, that hurt<<s>>!" $he screams, crying even harder. "Ow, it h-hurt<<s>>! Plea<<s>>e take it out, ow, ow," $he shrieks, and then degenerates into nonverbal caterwauling.
		<<if $activeSlave.prostate != 0>>
			Then, without any warning, $he orgasms. $He's so pent up that the prostate stimulation overpowers the pain. $He shudders, gasps, and then moans, "I'm <<s>>-<<s>>uch a whore, <<Master>>," in such a tone of utter @@.hotpink;submission@@ and dejection that you climax too. Then you drop $him, letting $his slide off you, and go back to your work, leaving $him to clean $himself and the floor.
			<<set $activeSlave.devotion += 5>>
		<<else>>
			$He knows $he shouldn't wriggle, that fighting will make it even worse for $him, but you assrape $him so mercilessly that $his body revolts, trying to escape the invading phallus. You have $his arm<<if hasBothArms($activeSlave)>>s<</if>> pinioned securely, so all this struggling does is add to the fun. When you're done, you<<if $PC.dick != 0>> fill $his insides with your cum and<</if>> drop $him, ordering $him to clean $himself up. "Y-ye<<s>> <<Master>>," $he sniffles @@.gold;fearfully,@@ and hurries to obey, a little bent from $his burning backdoor. Only later does $he remember that $he still hasn't gotten off.
			<<set $activeSlave.trust -= 5>>
		<</if>>
		<<= VCheck.Anal($activeSlave, 1)>>
	<</replace>>
<</link>><<if $activeSlave.anus == 0>>//This option will take $his anal virginity//<</if>>
<br><<link "Ignore $his pleas">>
	<<replace "#result">>
		You order $him to take the next pose in the inspection series, as though $he hadn't broken down at all. There's such understated menace in your <<if canHear($activeSlave)>>voice<<else>>words<</if>> that $he <<if hasBothLegs($activeSlave)>>gets right back to $his feet<<else>>stands right back up<</if>><<if hasAnyArms($activeSlave)>>, using the back of <<if hasBothArms($activeSlave)>>a<<else>>$his<</if>> $activeSlave.skin hand to cuff away $his tears<</if>>. "Y-ye<<s>>, <<Master>>," $he sniffles, trying to get $himself under control, and then shudders.
		<<if $dairy > 0 && $dairyStimulatorsSetting == 2>>
			It's never hard to see the exact moment when your slaves remind themselves that you run an industrial Dairy, and that if they displease you, they may find themselves hydrated for milk production from fifty kilogram udders by constant machine rape down their throats and up their asses<<if isFertile($activeSlave) && $dairyPregSetting > 0>> as their wombs steadily fill with life<</if>>.
		<<elseif $arcade > 0>>
			It's never hard to see the exact moment when your slaves remind themselves that you own an Arcade, and that if they displease you, they may find themselves immured there and condemned to a universe in which the only sensory stimulation is penetration.
		<<elseif $activeSlave.trust < -20>>
			$He's no stranger to being punished, and obviously wants to avoid another round.
		<<else>>
			$He knows that there are slaves who are treated much more harshly than $he is, and doesn't want to become one of them.
		<</if>>
		$He staggers out of your office after $his inspection, doing $his best to ignore $his condition. Over the coming week, $he's continually tortured by $his libido, cruelly entombed as it is in a body which can no longer give it meaningful relief. $He manages to keep it together, mostly, and $his @@.libido.dec;sex drive diminishes noticeably.@@
		<<set $activeSlave.energy -= 5>>
	<</replace>>
<</link>>

<<case "objectifying visit">>

<<link "Use $him as a footrest">>
	<<replace "#result">>
		<<if $activeSlave.belly >= 300000>>
			You order $him to get on $his _belly belly and steady $himself, a task that $he carries out quickly and obediently. Once as comfortable as $he can possibly get perched awkwardly atop $his straining stomach,
		<<else>>
			You order $him to get beneath your desk <<if hasAllLimbs($activeSlave)>>on all fours<<else>>and bend over<</if>>, a task that $he carries out quickly and obediently. Once as comfortable as $he can be perched awkwardly underneath your desk,
		<</if>>
		$he braces
		<<if !canDoAnal($activeSlave)>>
			$himself for the inevitable molestation
		<<else>>
			$his ass for the inevitable rough anal
		<</if>>
		$he assumes must be coming. Fortunately for $him, it never does. Instead, you kick your feet up and rest them on the small of $his back. After a few hours of objectifying degradation in this way, you rise from your chair to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness.@@
		<<set $activeSlave.devotion += 5>>
	<</replace>>
<</link>>
<<if $activeSlave.boobs > 300>>
	<br><<link "Use $his breasts as stress balls">>
		<<replace "#result">>
			$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to kneel beside you and stick out $his breasts. $He is similarly unruffled when you first reach over to take one of $his
			<<if $activeSlave.boobs > 2000>>
				massive breasts
			<<elseif $activeSlave.boobs > 1000>>
				large breasts
			<<elseif $activeSlave.boobs > 400>>
				breasts
			<<else>>
				tiny breasts
			<</if>>
			in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss $him hours later, $he scurries out of your office cradling $his bruised bosom and @@.gold;trembling from $his recent objectifying experience.@@
			<<set $activeSlave.trust -= 5>>
		<</replace>>
	<</link>>
<</if>>
<<if $activeSlave.balls > 2 && $activeSlave.balls < 20>>
	<br><<link "Relieve your stress with $his balls">>
		<<replace "#result">>
			$He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to get up on your desk with $his crotch to you. $He is shudders slightly when you first reach over to take one of $his
			<<switch $activeSlave.balls>>
				<<case 10>>inhuman
				<<case 9>>titanic
				<<case 8>>gigantic
				<<case 7>>monstrous
				<<case 6>>huge
				<<case 5>>pendulous
				<<case 4>>swinging
				<<case 3>>big
				<<case 2>>average
				<<case 1>>pathetic
				<<default>>hypertrophied
			<</switch>>
			balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss $him hours later, $he staggers out of your office trying $his best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience.@@
			<<set $activeSlave.trust -= 5>>
		<</replace>>
	<</link>>
<</if>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave) || $activeSlave.belly >= 300000>>
	<br><<link "Use $him as an exercise ball">>
		<<replace "#result">>
			<<if $activeSlave.belly >= 3000000>>
				You pull your chair back from your desk and order $him to lie on $his back with $his _belly belly to the ceiling. $He isn't sure what you are up to, but it quickly dawns on $him as you straddle $his stomach and take a seat. $He groans under the massive pressure increase inside $him, but does $his best to hold your weight.
				<<if $activeSlave.preg > ($activeSlave.pregData.normalBirth / 4)>>
					You manage to get very little work done. The sheer amount of motion
					<<if $PC.dick != 0>>
						beneath your balls
						<<if $PC.vagina != -1>>
							and across your pussy quickly have your cock at full attention and pussy leaking femcum.
						<<else>>
							and between your legs quickly have your cock at full attention and dribbling precum.
						<</if>>
					<<else>>
						on your pussy and asshole quickly have you hot and bothered.
					<</if>>
					You can't stop yourself from rubbing against the squirming mass, enjoying the unique undulations across your junk. It doesn't take long to coat $his stomach in a layer of fluids. After a few hours of objectifying degradation in this way, you rise from your enjoyable seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't penetrate $him, $his experience as a sex toy for your amusement @@.hotpink;has increased $his submissiveness.@@
				<<else>>
					After a few hours of objectifying degradation in this way, you rise from your novel seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness.@@
				<</if>>
				<<set $activeSlave.devotion += 2>>
			<<else>>
				You order $him to get down on <<if hasAllLimbs($activeSlave)>>all fours<<else>>the ground<</if>> and stick $his butt up in the air, a position $he assumes with the practiced efficiency of a veteran sex slave. $He's expecting doggystyle and only lets out a perfunctory moan when you<<if $PC.dick == 0>> don a strap-on and<</if>> mount $his ass from behind.
				<<if canDoVaginal($activeSlave)>>
					<<= VCheck.Vaginal($activeSlave, 1)>>
				<<else>>
					<<= VCheck.Anal($activeSlave, 1)>>
				<</if>>
				However, $he is caught off guard when you half sit on $his ass while fucking it, using it like an exercise ball as you bounce up and down. $His
				<<if ($activeSlave.butt > 12)>>
					immense ass fully absorbs your impacts as you pummel $him into the ground,
				<<elseif ($activeSlave.butt > 5)>>
					huge ass cushions your thighs as you pummel $him into the ground,
				<<elseif ($activeSlave.butt > 2)>>
					ass provides some cushioning as you pound $him into the ground,
				<<else>>
					ass does little to cushion you as you fuck $him into the ground,
				<</if>>
				but $activeSlave.slaveName fares much worse in $him role as living exercise equipment. By the end of your power workout you manage to work up quite a sweat, while your slave lays limp in the middle of your office with $his gaped
				<<if canDoVaginal($activeSlave)>>
					cunt comically held up in the air. Using $his pussy
				<<else>>
					butt comically held up in the air. Using $his ass
				<</if>>
				in such a way @@.hotpink;nearly fucked $him senseless,@@ but $he'll remember @@.gold;your objectifying treatment of $him.@@
				<<set $activeSlave.devotion += 2, $activeSlave.trust -= 2>>
			<</if>>
		<</replace>>
	<</link>><<if $activeSlave.belly < 300000 && canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif $activeSlave.belly < 300000 && !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "implant inspection">>

<<link "Give $him a nice massage">>
	<<replace "#result">>
		You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.dick == 0>>into your lap<<else>>onto your member<<if $PC.vagina != -1>> and sliding a hand down to see to your pussy<</if>><</if>> without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, gently massaging $his <<if $activeSlave.boobs < 900>>big <<else>>huge <</if>> tits. Despite their fine craftsmanship, implants are prone to rendering breasts sore, so $he's soon groaning with relief at the attention you lavish upon them. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples, despite $his implants making them less sensitive than usual. @@.mediumaquamarine;$He has become more trusting of you.@@
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "See if they've got any bounce">>
		<<replace "#result">>
			You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly
			<<if $activeSlave.belly >= 300000>>
				shifts onto $his _belly belly,
			<</if>>
			arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter
			<<if canDoVaginal($activeSlave)>>
				$his pussy
			<<else>>
				$his ass
			<</if>>
			without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his augmented breasts: even as you pound $him hard and grope $his chest, $his tits barely move despite their rough treatment. $His unyielding breasts only encourage you to fuck $him harder, in an effort to garner any iota of movement from $his ample chest.
			<<if $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>>
				<<if canAchieveErection($activeSlave)>>
					$His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
				<<elseif $activeSlave.dick > 20>>
					$His cock doesn't help, either, flopping around on the floor as $he vacillates between pain and arousal.
				<<else>>
					$His cock doesn't help, either, flopping around feebly as $he vacillates between pain and arousal.
				<</if>>
			<<elseif $activeSlave.clit > 2>>
				$His huge clit doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal.
			<</if>>
			<<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>
				Even a switch to $his ass does little to slow your thrusts, and so $his breasts continue to rest impassively on $his chest as their owner is buttfucked senseless.
			<</if>>
			You finish with a particularly hard thrust <<if $PC.dick == 0>>and shake with climax<<else>>to spill your seed deep inside $him<</if>>, ramming forward hard enough to knock $him down to the floor. As you rise, $his discomfited form is a pretty sight, with $his perfectly rounded breasts
			<<if $activeSlave.belly >= 300000>>
				neatly stack on top each other
			<<else>>
				keeping $his body suspended off the ground
			<</if>>
			and $his well fucked butt lewdly relaxed. @@.hotpink;$He has become more submissive.@@
			<<set $activeSlave.devotion += 4>>
			<<= VCheck.Both($activeSlave, 1)>>
		<</replace>>
	<</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take $his virginity//<</if>>
<</if>>
<<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>>
	<br><<link "Show $him off in public">>
		<<replace "#result">>
			You bring $him out onto the promenade, still nude, $his impressively augmented breasts attracting open stares with their perfect roundness and perkiness.
			<<if $activeSlave.sexualFlaw == "attention whore">>
				The slut loves being the center of attention and wishes $his tits where even more eye catching.
			<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>>
				The slut loves being embarrassed, and $he blushes furiously as $his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>swell shut<</if>> with arousal despite $his implants having sapped them off some of their sensitivity.
			<<elseif ($activeSlave.energy > 95)>>
				The nympho slut loves being shown off, and $he flaunts $his implanted boobs shamelessly.
			<<elseif ($activeSlave.counter.anal > 100) && ($activeSlave.counter.oral > 100)>>
				$He's such a veteran sex slave that $he takes the stares in stride.
			<<else>>
				$He blushes a little, but tips $his chin up and follows you obediently.
			<</if>>
			When you reach a good spot, you grab $his
			<<if ($activeSlave.weight > 30)>>
				fat ass
			<<elseif ($activeSlave.weight > 10)>>
				plush hips
			<<elseif ($activeSlave.weight >= -10)>>
				trim hips
			<<elseif ($activeSlave.butt > 2)>>
				big butt
			<<else>>
				skinny ass
			<</if>>
			and
			<<if ($activeSlave.height >= 185)>>
				pull $his tall body in
			<<elseif ($activeSlave.height >= 160)>>
				pull $him up on tiptoe
			<<else>>
				push $his petite form up onto a railing
			<</if>>
			for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and
			<<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>>
				collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him.
				<<if $activeSlave.bellyPreg >= 600000>>
					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
				<</if>>
			<<elseif $activeSlave.belly >= 100000>>
				pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him.
				<<if $activeSlave.bellyPreg >= 600000>>
					Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine.
				<</if>>
			<<else>>
				hoist $his legs up so $he's pinned against your
				<<if $PC.belly >= 1500>>
					pregnancy,
				<<elseif ($PC.boobs < 300)>>
					chest,
				<<else>>
					boobs,
				<</if>>
				helpless to do anything but let you hold $him in midair and fuck $him.
			<</if>>
			<<if canDoVaginal($activeSlave)>>
				<<if ($activeSlave.vagina > 1)>>
					$His pussy can take a hard pounding, so you give it to $him.
				<<else>>
					$His poor tight pussy can barely take the pounding you're administering.
				<</if>>
				<<= VCheck.Vaginal($activeSlave, 1)>>
			<<else>>
				<<if ($activeSlave.anus > 1)>>
					$His loose butthole can take a hard pounding, so you give it to $him.
				<<else>>
					$His poor tight butthole can barely take the pounding you're administering.
				<</if>>
				<<= VCheck.Anal($activeSlave, 1)>>
			<</if>>
			$He loses all composure, gasping and panting as the massive weight of $his augmented chest weighs $him down, causing $him to all but collapse against you. Despite this, or perhaps partly because of it, $he begins to orgasm,
			<<if ($activeSlave.chastityPenis == 1)>>
				the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip.
			<<elseif canAchieveErection($activeSlave)>>
				<<if ($activeSlave.dick > 3)>>
					$his monster of a cock releasing a jet of cum with each thrust into $him.
				<<elseif ($activeSlave.dick > 3)>>
					$his huge cock releasing a jet of cum with each thrust into $him.
				<<elseif ($activeSlave.dick > 1)>>
					$his cock releasing a spurt of cum with each thrust into $him.
				<<else>>
					$his tiny dick spurting cum with each thrust into $him.
				<</if>>
			<<elseif ($activeSlave.dick > 9)>>
				$his huge, soft cock spurting cum as it wiggles to your motions.
			<<elseif ($activeSlave.dick > 0)>>
				$his soft cock scattering cum all over the place as it flops around.
			<<elseif ($activeSlave.belly >= 1500)>>
				$his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture.
			<<elseif $activeSlave.weight > 95>>
				$his soft body jiggling as $he climaxes.
			<<elseif ($activeSlave.muscles > 5)>>
				$his abs convulsing deliciously as $he climaxes.
			<<elseif canDoVaginal($activeSlave)>>
				$his pussy tightening.
			<<else>>
				$his poor anal ring tightening.
			<</if>>
			The crowd that surrounds you during this noisy spectacle @@.green;is suitably impressed.@@
			<<run repX(1250, "event", $activeSlave)>>
			<<= VCheck.Both($activeSlave, 1)>>
		<</replace>>
	<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<</if>>

<<case "gagged slave">>

<<link "Give $him something else to gag on">>
	<<replace "#result">>
		As pleasant an image as $activeSlave.slaveName's mouth filled by a $activeSlave.mouthAccessory is, one of $his mouth's primary purposes is still to provide you with ample <<if $PC.dick != 0>>blowjobs<<if $PC.vagina != -1>> and <</if>><</if>><<if $PC.vagina != -1>>cunnilingus<</if>>. With $activeSlave.slaveName already kneeling, it is merely a matter of undoing $his gag before you can put $his mouth to work.
		<<if $activeSlave.skill.oral >= 100>>
			Though $he has spent much time gagged, $his mastery at giving oral is unaffected.
		<<elseif $activeSlave.skill.oral > 60>>
			Though $he has spent much time gagged, $his oral skills still provide ample pleasure.
		<<else>>
			$His time spent gagged has limited the growth of $his mediocre oral skills, though $he is still able to provide some relief.
		<</if>>
		<<if $activeSlave.teeth == "pointy">>
			Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care not to rake you with $his shark-like teeth.
		<<elseif $activeSlave.lips > 40>>
			Though your attention is largely sapped by $his tender oral ministrations, you note that $his huge lips are soft and pillowy against you.
		<<elseif $activeSlave.teeth == "fangs" || $activeSlave.teeth == "fang">>
			Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to not poke you with $his fang<<if $activeSlave.teeth != "fang">>s<</if>>.
		<<elseif $activeSlave.teeth == "gapped">>
			Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to let you get snagged between $his front teeth.
		<<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>>
			Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to keep $his braces off you.
		<</if>>
		When you eventually move on, it is with
		<<if $activeSlave.hLength > 1>>
			a ruffle of $activeSlave.slaveName's $activeSlave.hColor hair
		<<else>>
			a rub to $activeSlave.slaveName's scalp
		<</if>>
		and the return of the gag to $his mouth. Though $his continued gagging is an uncomfortable experience, $activeSlave.slaveName enjoyed @@.hotpink;being free of it for a moment, even if just to pleasure you.@@
		<<set $activeSlave.devotion += 4>>
		<<run seX($activeSlave, "oral", $PC, "penetrative")>>
	<</replace>>
<</link>>
<br><<link "Remove the gag for a few minutes">>
	<<replace "#result">>
		You wordlessly remove the $activeSlave.mouthAccessory and watch as $activeSlave.slaveName opens and closes $his mouth testingly, as if $he has forgotten what it feels like to do so without obstruction. Though you eventually return to the gag to its rightful place in $his mouth, $he @@.mediumaquamarine;trusts you more@@ for granting $him a few moments respite from the gag.
		<<set $activeSlave.trust += 4>>
	<</replace>>
<</link>>
<br><<link "Torment $him with the gag">>
	<<replace "#result">>
		Though having a $activeSlave.mouthAccessory constrict $his mouth is torment enough, you take the time to linger and add to $his torturous existence. $activeSlave.slaveName soon discovers that the straps of a gag can always be made tighter, the
		<<if ($activeSlave.mouthAccessory == "ball gag")>>
			ball can always be made larger,
		<<elseif ($activeSlave.mouthAccessory == "bit gag")>>
			the bit can always be made thicker,
		<<elseif ($activeSlave.mouthAccessory == "ring gag")>>
			the ring can always be made wider,
		<<elseif ($activeSlave.mouthAccessory == "dildo gag")>>
			the dildo can always be made larger,
		<<elseif ($activeSlave.mouthAccessory == "massive dildo gag")>>
			the dildo can always be made wider and longer,
		<</if>>
		and the punishments rendered for daring to show any discomfort can always be harsher and stricter. Come the end of your session with $him, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of $his orgasms, @@.hotpink;and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away quickly, having learnt a harsh lesson about your power over $his body.@@
		<<set $activeSlave.trust -= 5>>
		<<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>>
	<</replace>>
<</link>>

<<case "back stretch">>

<<link "Fuck $his boobs">>
	<<replace "#result">>
		When $he <<if canSee($activeSlave)>>sees you <<if $PC.dick != 0>>get your dick out<<else>>approaching $him with sapphic lust in your eyes<</if>><<elseif canHear($activeSlave)>>hears you <<if $PC.dick != 0>>get your dick out<<else>>hungrily approach<</if>><<else>>feels your fingertips brush against $his nipples<</if>>, $he
		<<if $activeSlave.energy > 80>>grins with anticipation,
		<<elseif $activeSlave.trust > 20>>smiles appealingly,
		<<else>>does $his best to look submissive,
		<</if>>
		and offers you $his chest.
		<<if $PC.dick != 0>>
			<<if $activeSlave.belly >= 300000>>You have to straddle $his _belly stomach to get close enough, but $his tantalizing breasts are worth the strain.<</if>>
			You collect some lubrication for it by sticking your dick in $his mouth.
			<<if $activeSlave.skill.oral >= 100>>
				$He swallows you to your base, and is such a skilled cocksucker that $he salivates at will, doing $his best to get you
			<<else>>
				$He does $his best to swallow you as deeply as $he can manage, and get your cock
			<</if>>
			nice and slick. You pull your member out of $his industriously sucking mouth with a pop, and slide it between $his warm breasts. $He promptly grabs them and squeezes them together, forming a nice channel for you to fuck. As you start pounding away, $he does $his best to crane $his head down and suckle your dickhead whenever it appears between $his boobs, adding more lubrication from $his lewdly wet mouth. $He knows when you're about to climax, and makes no attempt to avoid it, opening $his mouth wide to accept your load. $He catches most of it, but your generous ejaculation spatters $his face with pearly decoration.
		<<else>>
			Deciding to do something a little more intimate than fucking $his cleavage with a strap-on, you walk forward and into $his face, pressing $him inexorably backwards as $he nuzzles your pussy until $he's forced to collapse onto the ground. Then you scoot backwards a little, until you're
			<<if $activeSlave.belly >= 10000>>
				crammed between $his _belly middle and breasts.
			<<else>>
				straddling $his ribcage just below $his breasts.
			<</if>>
			$His huge breasts rest atop your inner thighs,
			<<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
				$his skin taut against yours, from the implants.
			<<else>>
				heavy and soft and female.
			<</if>>
			You ride $him gently like this for a little while, enjoying the feminine weight of $him and the effects of this intimacy on $his face. Once you're ready for some more stimulation, you pull one of $his hands down between $his breasts; $he gets $his thumb down into $his cleavage, all the way down until it can stimulate your button and bring you to a soft orgasm. Pleased, you slide down until you're face to face with $him, and give $him a kiss.
		<</if>>
		$He
		<<if $activeSlave.energy > 80>>was looking after $himself with a hand the whole time, and $he @@.mediumaquamarine;smiles gratefully at you@@ with satisfaction.
		<<elseif $activeSlave.trust > 20>>giggles a little, @@.mediumaquamarine;pleased with $himself.@@
		<<else>>smiles hesitantly, clearly thinking that @@.mediumaquamarine;$he did well.@@
		<</if>>
		<<set $activeSlave.trust += 5>>
		<<includeDOM App.Events.eventFetish($activeSlave, "boobs")>>
	<</replace>>
<</link>>
<br><<link "Hurt $him">>
	<<replace "#result">>
		You decide to exercise a little maliciousness. You take a step forward, producing a look of
		<<if $activeSlave.energy > 80>>lustful anticipation<<elseif $activeSlave.trust > 20>>expectation<<else>>trepidation<</if>>,
		but then you stop, <<if canSee($activeSlave)>>wordlessly<<elseif canHear($activeSlave)>>loudly<<else>>nudging and<</if>> gesturing at $him to continue. $He does, bending $him back forward and backward, concave and convex, rolling $himself around on $his hips a little, and making $his <<if $activeSlave.belly >= 5000>>_belly belly and <</if>>breasts move mesmerizingly. Eventually, $he stretches deeply enough that<<if $activeSlave.trust <= 50>> $he lets $his guard down and<</if>> $his eyes close again.
		<<switch $activeSlave.nipples>>
		<<case "tiny">>
			$His tiny little nipples are too small to grab and pull effectively, so you simply flick them, aiming a vicious high-velocity fingernail at each of them, using both hands.
		<<case "puffy">>
			$His puffy nipples provide shamefully easy targets. You grab them in a mercilessly tight grip and haul, jerking $his whole body forward until $he's about to topple over.
		<<case "partially inverted">>
			You grab each of $his nipples around the margins of $his areolae, and squeeze them with such force that, partially inverted as they are, they protrude instantly.
		<<case "inverted">>
			You seize each of $his inverted nipples, your thumbs uppermost, squeezing $his sensitive, hidden nipples inside their fleshy prisons with cruel force.
		<<case "huge">>
			$His huge nipples provide you an excellent grip as you grab them and haul on them, jerking $his whole body forward until $he's about to topple over.
		<<case "fuckable">>
			You cram a fist into each of $his nipples and spread your fingers wide, making sure that you don't come loose as you jerk $his body forward.
		<<default>>
			You grab each of $his nipples in a merciless grip and pinch them with abandon, adding a cruel twist as soon as you've got them held tightly enough.
		<</switch>>
		$His <<= App.Desc.eyesColor($activeSlave)>> fly open and $he
		<<if $activeSlave.voice == 1>>
			bellows with pain, $his deep voice very loud.
		<<elseif $activeSlave.voice == 2>>
			screams at the tops of $his lungs.
		<<elseif $activeSlave.voice == 3>>
			shrieks, $his high, girlish voice very shrill.
		<</if>>
		The sudden agony discombobulates $him so badly that for a few moments, $he has no idea what's going on, and $his hands fly forward reflexively. $He manages to stop $himself at the last minute, realizing that trying to knock your hands away from $his poor nipples would be a very bad idea indeed. $He looks up at you with <<if canSee($activeSlave)>>huge eyes<<else>>terror splashed across $his face<</if>>, mewling helplessly, @@.gold;tears beginning to collect at the corners of $his eyes.@@ Pleased, you turn and go.
		<<set $activeSlave.trust -= 5>>
		<<includeDOM App.Events.eventFetish($activeSlave, "masochist")>>
	<</replace>>
<</link>>
<<if $activeSlave.lactation > 0>>
	<br><<link "Drink from $him">>
		<<replace "#result">>
			$His <<if canSee($activeSlave)>>eyes widen<<else>>face light up<</if>> with surprise when you
			<<if $activeSlave.belly >= 300000>>
				lean against $his _belly stomach.
			<<else>>
				kneel down in front of $him.
			<</if>>
			$He begins to straighten, to face you, but you place a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand on $his chest, right between $his breasts, and keep $him leaning backward. Then, without any preamble, you take $his right breast in both of your hands, bend forward, and take $his nipple into your mouth. $He gasps<<if canTalk($activeSlave)>>, <<say>>s "Oh, <<Master>>"<</if>> quietly, and then begins to moan as you begin to suck powerfully,
			<<switch $activeSlave.nipples>>
			<<case "tiny">>
				drawing $his tiny nipple entirely into your mouth.
			<<case "puffy">>
				engorging $his soft, puffy nipple until it fills your mouth.
			<<case "partially inverted">>
				pulling $his partially inverted nipple straight out and into your mouth.
			<<case "inverted">>
				gradually pulling at $his inverted nipple until it's finally forced to pop out and into your mouth.
			<<case "huge">>
				$his huge nipple filling your mouth comfortably.
			<<case "fuckable">>
				drawing an unreasonable amount of breast into your mouth just to keep a seal.
			<<case "flat">>
				pulling $his nipple and the areolae around it into your mouth.
			<<default>>
				pulling $his soft nipple and some of the areolae around it into your mouth.
			<</switch>>
			$His rich milk begins to flow across your tongue, creamy and with a hint of vanilla. $He breathes faster and faster as $he becomes aroused, but then the stimulation peaks. You keep drinking from $him, making no move to stop nursing and start fucking $him. $He sighs with sudden contentment, realizing that you're going to drink every drop $he has, and $his sudden relaxation sends a little extra gush of milk into your mouth. $He @@.hotpink;definitely enjoys the experience,@@ leaning back compliantly as you drain that breast and then $his left one, too.
			<<if $activeSlave.boobs > 25000 || ($activeSlave.boobs > 10000 && $activeSlave.lactation > 1)>>Your clothes feel tight around your middle for the rest of the day; you may have indulged a little too much.<</if>>
			<<set $activeSlave.devotion += 5>>
			<<includeDOM App.Events.eventFetish($activeSlave, "boobs")>>
			<<set $activeSlave.lactationDuration = 2>>
			<<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>>
		<</replace>>
	<</link>>
<</if>>

<<case "modest clothes">>

<<link "No">>
	<<replace "#result">>
		You tell $him no. $He's a good enough slave that making a simple request and having you return a straightforward negative without punishment @@.mediumaquamarine;makes $him just slightly more trusting.@@ It's nice to be allowed to ask things.
		<<set $activeSlave.trust += 2>>
	<</replace>>
<</link>>
<br><<link "Show $him how much you like $his usual outfit">>
	<<replace "#art-frame">>
		/* 000-250-006 */
		<<if $seeImages == 1>>
			<<if $imageChoice == 1>>
				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<<else>>
				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<</if>>
		<</if>>
		/* 000-250-006 */
	<</replace>>
	<<replace "#result">>
		You tell $him to go get dressed as usual. $His face falls a little, but there was no condemnation in your tone, and $he hurries off,
		<<if $activeSlave.dick > 6>>
			monstrous cock dangling.
		<<elseif $activeSlave.balls > 4>>
			big balls dangling.
		<<elseif $activeSlave.bellyFluid >= 5000 || $activeSlave.weight > 95>>
			big belly jiggling.
		<<elseif $activeSlave.belly >= 5000>>
			as fast as $his swollen belly will allow.
		<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
			fake tits bouncing.
		<<elseif $activeSlave.butt > 4>>
			$his big booty jiggling.
		<<elseif $activeSlave.boobs > 2000>>
			udders jiggling.
		<<else>>
			giving you a nice view of $his naked rear.
		<</if>>
		$He returns quickly, in $his proper
		<<switch $activeSlave.clothes>>
		<<case "a toga">>
			toga.
		<<case "a huipil">>
			huipil.
		<<case "a long qipao" "a slutty qipao">>
			qipao.
		<<case "a penitent nuns habit">>
			habit.
		<<case "a slave gown" "a ball gown">>
			gown.
		<<case "a comfortable bodysuit">>
			bodysuit.
		<<case "a leotard">>
			leotard.
		<<case "a bunny outfit">>
			bunny outfit.
		<<case "a nice nurse outfit">>
			nurse outfit.
		<<case "a slutty nurse outfit">>
			slutty nurse outfit.
		<<case "a schoolgirl outfit">>
			school clothes.
		<<case "a hijab and abaya">>
			hijab and abaya.
		<<case "a kimono">>
			kimono.
		<<case "a nice maid outfit">>
			maid outfit.
		<<case "a slutty maid outfit">>
			skimpy maid outfit.
		<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
			dress.
		<<case "a latex catsuit">>
			latex catsuit.
		<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
			uniform.
		<<case "battlearmor">>
			battlearmor.
		<<case "Imperial Plate">>
			imperial armor.
		<<case "lederhosen">>
			lederhosen.
		<<case "spats and a tank top">>
			spats.
		<<case "a burkini" "a monokini">>
			swimsuit.
		<<case "a chattel habit" "a fallen nuns habit">>
			slutty habit.
		<<case "a cheerleader outfit">>
			cheerleader outfit.
		<<case "a cybersuit">>
			cybersuit.
		<<case "a tight Imperial bodysuit">>
			imperial bodysuit.
		<<case "an apron">>
			apron.
		<<case "a scalemail bikini">>
			scalemail bikini.
		<<case "a slutty outfit">>
			slutty outfit.
		<<case "a string bikini">>
			string bikini.
		<<case "a succubus outfit">>
			succubus getup.
		<<case "a hijab and blouse" "conservative clothing">>
			conservative clothes.
		<<case "a bimbo outfit">>
			bimbo outfit.
		<<case "a courtesan dress">>
			courtesan dress.
		<<default>>
			$activeSlave.clothes.
		<</switch>>
		You tell $him that you like how $he looks, and that $he's pretty. $He wasn't expecting such a blunt compliment, and <<if canSee($activeSlave)>>$his <<= App.Desc.eyesColor($activeSlave)>> flick down to<<else>>$he faces<</if>> the ground for a moment as $he blushes. "T-thank you, <<Master>>," $he stutters.
		<br><br>
		You add that $he looks so good that $he had better take $his nice clean
		<<switch $activeSlave.clothes>>
		<<case "a toga">>
			toga
		<<case "a huipil">>
			huipil
		<<case "a long qipao" "a slutty qipao">>
			qipao
		<<case "a penitent nuns habit">>
			habit
		<<case "a slave gown" "a ball gown">>
			gown
		<<case "a comfortable bodysuit">>
			bodysuit
		<<case "a leotard">>
			leotard
		<<case "a bunny outfit">>
			bunny outfit
		<<case "a nice nurse outfit">>
			nurse outfit
		<<case "a slutty nurse outfit">>
			slutty nurse outfit
		<<case "a schoolgirl outfit">>
			school clothes
		<<case "a hijab and abaya">>
			hijab and abaya
		<<case "a kimono">>
			kimono
		<<case "a nice maid outfit">>
			maid outfit
		<<case "a slutty maid outfit">>
			skimpy maid outfit
		<<case "a biyelgee costume" "a dirndl" "a halter top dress" "a mini dress" "a maternity dress">>
			dress
		<<case "a latex catsuit">>
			latex catsuit
		<<case "a military uniform" "a mounty outfit" "a red army uniform" "a schutzstaffel uniform" "a slutty schutzstaffel uniform">>
			uniform
		<<case "battlearmor">>
			battlearmor
		<<case "Imperial Plate">>
			imperial armor
		<<case "lederhosen">>
			lederhosen
		<<case "spats and a tank top">>
			spats
		<<case "a burkini" "a monokini">>
			swimsuit
		<<case "a chattel habit" "a fallen nuns habit">>
			slutty habit
		<<case "a cheerleader outfit">>
			cheerleader outfit
		<<case "a cybersuit">>
			cybersuit
		<<case "a tight Imperial bodysuit">>
			imperial bodysuit
		<<case "an apron">>
			apron
		<<case "a scalemail bikini">>
			scalemail bikini
		<<case "a slutty outfit">>
			slutty outfit
		<<case "a string bikini">>
			string bikini
		<<case "a succubus outfit">>
			succubus getup
		<<case "a hijab and blouse" "conservative clothing">>
			conservative clothes
		<<case "a bimbo outfit">>
			bimbo outfit
		<<case "a courtesan dress">>
			courtesan dress
		<<default>>
			$activeSlave.clothes
		<</switch>>
		off again, because
		<<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>>
			you're going to <<if $PC.dick>>fuck<<else>>trib<</if>> $his senseless.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave) && $activeSlave.anus != 0>>
			you're going to fuck $his butt<<if $activeSlave.balls>> until $he cums<</if>>.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			$he's going to <<if $PC.dick>>suck your dick until you cover $him in cum<<else>>eat you out until $he's got your pussyjuice running down $his chin<</if>>.
			<<run seX($activeSlave, "oral", $PC, "penetrative")>>
		<</if>>
		$He giggles at the sudden lewdness, and quickly strips naked again, complimented and @@.hotpink;eager to be used.@@
		<<set $activeSlave.devotion += 5>>
	<</replace>>
<</link>>
<br><<link "Put $him in a string bikini">>
	<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "a string bikini">>
	<<replace "#art-frame">>
		/* 000-250-006 */
		<<if $seeImages == 1>>
			<<if $imageChoice == 1>>
				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<<else>>
				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<</if>>
		<</if>>
		/* 000-250-006 */
	<</replace>>
	<<set $activeSlave.clothes = _clothesTemp>>
	<<replace "#result">>
		You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thank<<s>>, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but <<= $girl>>s everywhere love trying on new clothes. $He makes an entrance when $he comes back, spinning around to show off. $He's wearing the briefest possible string bikini. The top, rather than having patches of material to cover $his nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front, <<if $activeSlave.dick>>which looks rather sad and alone, pushed aside by $his dick as it is<<elseif $activeSlave.labia>>and it's embraced completely by $his generous pussylips<<else>>and it threatens to disappear inside $his pussylips<</if>>. "Thi<<s>> feel<<s>> <<s>>o hot, <<Master>>," $he <<say>>s, and
		<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>
			blushes cutely. $He looks up at you, <<if canSee($activeSlave)>>sees<<else>>feels<</if>> the way you're staring at $him, and hangs $his head, blushing even harder.
		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
			turns around again, bending a little and cocking $his hips to show off the way the string between $his buttocks totally fails to conceal $his <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>.
		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>
			bounces $his
			<<if $activeSlave.boobsImplant>>
				fake tits.
			<<elseif $activeSlave.boobs > 8000>>
				earth-shattering tits.
			<<elseif $activeSlave.boobs > 2000>>
				huge boobs.
			<<elseif $activeSlave.boobs > 400>>
				boobs.
			<<else>>
				petite chest.
			<</if>>
			Giggling, $he bounces harder, and $his nipples escape from $his top, such as it is.
		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>
			and attempts to pull the strings over the front of $his belly. Without delay, they slide right back to the sides of the _belly dome, eliciting a giggle from the preggo slut.
		<<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">>
			sneaks a hand under the string around $his waist, tugging $his bottom up <<if $activeSlave.vagina != -1>>until the string between $his legs is pulled up into the entrance of $his womanhood<<else>>and turning sideways to suggest $his ass<</if>>. "Guy<<s>>'ll <<if $activeSlave.assignment == "whore">>pay money for<<else>>line up to fuck<</if>> thi<<s>>," $he giggles.
		<<else>>
			bounces a little, smiling. "I'm ba<<s>>ically naked," $he giggles. "Today i<<s>> going to be fun. The other $girl<<s>>'ll be jealou<<s>> you wanted me to look <<s>>o <<s>>lutty. Love you, <<Master>>."
		<</if>>
		$He's happy you indulged $him, and @@.mediumaquamarine;satisfied that you think $he's cute@@ enough to have around (practically) nude.
		<<set $activeSlave.trust += 5>>
	<</replace>>
<</link>>
<br><<link "Force uncomfortable straps on $him">>
	<<set _clothesTemp = $activeSlave.clothes, $activeSlave.clothes = "uncomfortable straps">>
	<<replace "#art-frame">>
		/* 000-250-006 */
		<<if $seeImages == 1>>
			<<if $imageChoice == 1>>
				<div class="imageRef lrgVector"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<<else>>
				<div class="imageRef lrgRender"><div class="mask">&nbsp;</div><<= SlaveArt($activeSlave, 2, 0)>></div>
			<</if>>
		<</if>>
		/* 000-250-006 */
	<</replace>>
	<<set $activeSlave.clothes = _clothesTemp>>
	<<replace "#result">>
		You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thanks, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but <<= $girl>>s everywhere love trying on new clothes. $He's wrong to be so enthusiastic. $He comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what $he was expecting, but $he did $his best to obey. $He's @@.gold;tightened $his own straps down@@ until they're just short of cutting off circulation, in an obvious effort to please you. You ask $him how $he likes $his outfit. "It'<<s>> ni<<c>>e, <<Master>>," $he <<say>>s, but $he sounds a little sad.
		<<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">>
			"I'm ju<<s>>t a worthle<<ss>> humiliation <<s>>lut. I love having <<s>>teel ring<<s>> around my hole<<s>> like thi<<s>>," $he adds.
		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">>
			$He turns to show you $his asshole, framed by a steel ring that spreads $his buttocks to keep it nice and defenseless. "I know my backpu<<ss>>y'<<s>> the be<<s>>t thing about me," $he adds.
		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">>
			$He does $his best to thrust out $his chest, making the straps creak. "I know I'm, I'm ju<<s>>t, ju<<s>>t a pair of boob<<s>>," $he adds.
		<<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>>
			$He does $his best to thrust out $his _belly belly, making the straps creak ominously. "I know I'm, I'm ju<<s>>t, ju<<s>>t a baby maker," $he adds.
		<<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">>
			$He hangs $his head. "I feel like a worthle<<ss>> <<if $activeSlave.assignment == "whore">>whore<<else>>bitch<</if>>," $he adds. "Gue<<ss>> I am."
		<<else>>
			$He indicates the steel rings that frame $his holes and keep them defenseless. "I know I'm ju<<s>>t a collection of fuckhole<<s>>," $he adds.
		<</if>>
		$He sounds like $he's trying to convince $himself, but $his @@.hotpink;abasement us not feigned.@@
		<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
	<</replace>>
<</link>>

<<case "hyperpreg stuck">>

<<link "Abuse $him">>
	<<replace "#result">>
		You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that $his <<= getWrittenTitle($activeSlave)>> is intending to do nothing, $he blushes and begins pulling on $his belly, attempting to free $himself.
		<<if ($activeSlave.broodmother == 2) && ($activeSlave.preg >= 30)>>
			$His innumerable brood are awakened by $his exertions and begin to move, testing the thin walls of the womb constraining them and causing $his belly to throb ominously. You count the number of infants distinctly outlined against your poor hyperbroodmother's straining body.
		<<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>>
			With a groan of effort, the broodmother manages to pull $his belly slightly further out through the doorway, but, in the effort, only really manages to wedge it more firmly. It bulges ominously from the added pressure.
		<<else>>
			The massively pregnant slave's belly clutches in a false contraction and $he pulls several <<if $showInches == 2>>inches<<else>>centimeters<</if>> further out through the door frame before it expands again, leaving $his even more hopelessly stuck
		<</if>>
		<br><br>
		<<if !canTalk($activeSlave)>>
			$He moans and rubs up and down what little $he can reach of $his belly while looking back at you with more urgency. It's clear $he is in severe distress.
		<<else>>
			"<<Master>>," $he says through clenched teeth. "Plea<<s>>e."
		<</if>>
		<br><br>
		You judge that you've seen enough and move forward.
		<<if $activeSlave.butt > 10>>
			Wading in between $his huge ass cheeks
		<<elseif $activeSlave.butt > 4>>
			Grabbing a handful of one generous ass cheek,
		<<else>>
			Slapping a pert ass cheek,
		<</if>>
		<<if canDoVaginal($activeSlave)>>
			you hilt yourself in $his pregnant pussy and begin pounding.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave)>>
			you hilt yourself in $his butthole and begin pounding.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			you push them together around your cock and begin pounding.
		<</if>>
		$His stomach distorts back and forth under your vigorous ministrations before, with a "pop," belly, slave, and owner come tumbling through the threshold. $He yelps in @@.gold;shock@@ and @@.red;pain@@ as $his belly impacts the ground as the sound of $his voice, coupled with the feeling of jolting up and down on top of your slave's abused gut, sends you over the edge. You ejaculate
		<<if canDoVaginal($activeSlave)>>
			into $his fertile, wanting hole
		<<elseif canDoAnal($activeSlave)>>
			into $his needy hole
		<<else>>
			across $his back
		<</if>>
		and then slide off of $him to instruct your servants to fix the door frame before they carry $him to $his duties for the day.
		<<set $activeSlave.trust -= 20>>
		<<run healthDamage($activeSlave, 20)>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<br><<link "Fuck $him">>
	<<replace "#result">>
		You can't help but be aroused by the sight of your swollen, helpless slave, and you take off your pants, revealing your erection. The slave's <<if canSee($activeSlave)>>backward glance falls on your dick<<elseif canHear($activeSlave)>>ears perk up<<else>>head tilts to face you<</if>> and $he
		<<if $activeSlave.devotion > 95>>
			licks $his lips,
			<<if hasAnyLegs($activeSlave)>>
				<<if hasBothLegs($activeSlave)>>spreading $his legs<<else>>moving $his leg<</if>> and revealing more of $his massive underbelly while angling $his wanting <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>> at the perfect angle for fucking.
			<<else>>
				wiggling the stumps of $his legs and swiveling $his hips to give you a clear angle at $his hungry <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
			<</if>>
		<<elseif $activeSlave.devotion > 50>>
			blushes, swiveling $his hips to give you easy access to $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
		<<elseif $activeSlave.devotion > 20>>
			blushes and leans into $his belly, knowing what to expect.
		<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
			moans nervously.
		<<elseif ($activeSlave.trust < -50)>>
			yelps, turning away from you and <<if canSee($activeSlave)>>reflexively <</if>>clenching $his eyes shut as $his
			<<if hasBothLegs($activeSlave)>>
				legs instinctively clench together to hide $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
			<<elseif hasAnyLegs($activeSlave)>>
				leg bends and flexes in a futile attempt to hide $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
			<<else>>
				stumps push toward each other, clearly trying (and failing) to conceal $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>.
			<</if>>
		<<else>>
			snorts derisively despite $his vulnerability.
		<</if>>
		<br><br>
		You step forward and run an appreciative hand over the surface of $his belly. $His womb is packed so full that the outline of $his squirming children is obvious under $his stretched-thin flesh. $He groans at your touch, clearly in some distress, and you promise $him that you'll free $him once you've finished up.
		<<if $activeSlave.devotion > 95>>
			The slave is clearly too aroused by your fondling to <<if canHear($activeSlave)>>hear what you're saying<<else>>interpret your body language<</if>> and leans back into you, stretching against $his tortured belly to nibble at your ear.
		<<elseif $activeSlave.devotion > 50>>
			The slave says nothing, but wiggles $his ass against your hips, making it clear $he's ready.
		<<elseif $activeSlave.devotion > 20>>
			You can see tears streaming down the slave's face from the discomfort $he's experiencing, but $he nods that $he's ready.
		<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
			The slave cries and begs you to finish quickly and help $him before $he bursts.
		<<elseif ($activeSlave.trust < -50)>>
			The shock of contact with your body causes the terrified slave's skin to contract, as if $he's trying to pull away despite $his current reality, and $his only response to your promise is sobbing.
		<<else>>
			The slave
			<<if !canTalk($activeSlave)>>
				motions for you to
			<<else>>
				responds by telling you to
			<</if>>
			just fuck $him already and let $him move on with $his day.
		<</if>>
		You let your hand wander downward
		<<if canDoVaginal($activeSlave)>>
			and then push down on the base of $his clit with finger and thumb, making $him whimper, before removing your hand and burying your cock inside $him.
			<<= VCheck.Vaginal($activeSlave, 1)>>
		<<elseif canDoAnal($activeSlave)>>
			and circle $his anus with a finger, making $him whimper, before removing your hand and burying your cock inside $him.
			<<= VCheck.Anal($activeSlave, 1)>>
		<<else>>
			and trace the edge of $his chastity with a finger, making $him whimper, before removing your hand and squeezing $his rear around your cock.
		<</if>>
		As you fuck $him, $his poor, tortured belly wobbles against the constraining door frame and the frame itself groans in protest. $He grinds in rhythm to your pistoning until the back and forth movement of $his sloshing tummy overpowers $his efforts and sends $him careening back and forth between its oceanic movements and your less than tender ministrations. The sensation of fucking a $woman who is literally a slave to the motion of $his own womb drives you over the edge and you pull out, ejaculating all over $his
		<<if $activeSlave.butt > 10>>
			enveloping ass cleavage.
		<<elseif $activeSlave.butt > 4>>
			fat, waiting ass cheeks.
		<<else>>
			pert ass.
		<</if>>
		<br><br>
		You step back, taking one last appreciative look at your trapped slave, then call a team of menials to remove the door from its foundation to free $him. Though your slave is extricated uninjured, your decision to use $him before saving $him leaves the $girl @@.gold;trusting you less.@@ You could pay to have the door widened, but then you wouldn't get this opportunity again, would you?
		<br>
		<<set $activeSlave.trust -= 10>>
		<<run healthDamage($activeSlave, 10)>>
	<</replace>>
<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take $his virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>>
<br><<link "Try the 'Butter Strategy'">>
	<<replace "#result">>
		You ponder $his predicament for a moment before settling on a solution. You procure an industrial-sized jar of curative-laced moisturizing butter — specially formulated to ease the strain of hypermassive pregnancy — and explain to your slave that, to free $him, you're going to need to completely cover $him in it so that $he can squeeze through.
		<<if $activeSlave.devotion > 95>>
			$He grins at you and then huffs, pretending to be put off by the idea.
		<<elseif $activeSlave.devotion > 50>>
			$He quirks an eyebrow, then smiles, clearly intrigued.
		<<elseif $activeSlave.devotion > 20>>
			$He nods, happy to <<if canHear($activeSlave)>>hear<<else>>know<</if>> you've considered a way to free $him without causing $him undue harm.
		<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>>
			$He had seemed uneasy when you first described your idea, but seems to resign $himself to it once you finish your description.
		<<elseif ($activeSlave.trust < -50)>>
			The wide-eyed slave nods as you describe your idea, clearly hoping you'll free $him as quickly as possible so that $he can get away from you.
		<<else>>
			$He laughs derisively at you after you describe your idea, then motions for you to get on with it.
		<</if>>
		You move toward $him and slather a generous helping of the stuff over $his back and
		<<if $activeSlave.butt > 10>>
			couch-smothering ass,
		<<elseif $activeSlave.butt > 4>>
			fat ass cheeks,
		<<else>>
			petite ass,
		<</if>>
		for the sake of "being thorough." You then move forward, covering the parts of $his belly you can reach from behind and taking special care to
		<<if ($activeSlave.boobs >= 20000)>>
			massage the soft butter into every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his colossal tits, noting with satisfaction $his distant nipples, stuck on the other side of the doorway with the bulk of $his room filling breasts, harden with arousal.
		<<elseif ($activeSlave.boobs >= 12000)>>
			massage the soft butter into $his massive tits as they push up between the arch of the doorway and $his bulging belly. You note with satisfaction $his nipples harden with arousal.
		<<elseif ($activeSlave.boobs >= 7000)>>
			massage the soft butter into $his monstrous tits, enjoying the struggle it takes to heft each butter-slick, glistening melon with both hands. You note with satisfaction $his nipples harden with arousal.
		<<elseif ($activeSlave.boobs >= 3000)>>
			massage the soft butter into each of $his huge tits. Your slave cranes $his head back a bit to avoid being smothered by $his own breasts as you work the butter into them, but you can tell $he's aroused by what you're doing — $his nipples have turned hard as rocks.
		<<elseif ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
			massage the soft butter into $his fat, fake titties, noting with satisfaction $his nipples harden with arousal.
		<<elseif ($activeSlave.boobs >= 650)>>
			massage the soft butter into $his big tits, noting with satisfaction $his nipples harden with arousal.
		<<elseif ($activeSlave.boobs >= 300)>>
			massage the soft butter into $his small, girlish chest, noting with satisfaction $his nipples harden with arousal.
		<<else>>
			massage the soft butter into $his flat chest, noting with satisfaction $his nipples harden with arousal.
		<</if>>
		<br><br>
		Satisfied with your covering of your slave's back half, you then resolve to work on $his front. Getting down on your hands and knees, you crawl through the narrow triangle of space between the base of your slave's massive belly, the floor, and the doorway. It's a tight squeeze, and you take longer than you need to in order to enjoy the sound of your slave groaning as you rub up against $his sweaty, buttered up belly, but you eventually make it through. Taking generous handfuls of butter, you slick up the front half of your slave's stomach, starting at the flattened nub of $his pressure-obliterated belly button and slowly working your way up to the round oval of baby-packed flesh being constricted by the doorway.
		<br><br>
		With your slave's body dripping with the thick moisturizer, you call out to $him to start pulling $his belly through the doorway, pushing your body up against $his stomach to help push. You didn't bother to strip your clothes while buttering $his gravid figure and, as you crush up against $him and heave, again and again, against the sheer mass of $his abdomen, you can't help but get aroused by the way your greasy clothes rub between your body and $hers with each motion. At first, $his belly is so firmly lodged that it doesn't move, but momentum eventually builds up and, with an audible "pop," the poor baby-laden breeder finally breaks free from $his containment, falling onto $his back and pulling you with $him into an absurd, buttery mass of flailing limbs and giggles. You take some time to flip $him into a position where $he won't be crushed by the weight of $his own womb, and then take some more time to enjoy the fruits of your labors.
		<br><br>
		Once finished, you allow your servants to carry your @@.hotpink;thoroughly satisfied slave@@ to the baths for a needed cleaning. You could pay to have the door widened, but then you wouldn't have such a perfect excuse to lather $him in cream, would you?
		<<set $activeSlave.devotion += 5>>
	<</replace>>
<</link>>
<br><<link "Leave $him to figure it out">>
	<<replace "#result">>
		You leave $him to get $himself out of this situation and return to your daily affairs, though not without focusing a camera on the distraught breeder first. For several hours, you enjoy the sight of $his backside struggling to squeeze through the doorway before $he finally manages to figure it out. $He @@.mediumorchid;blames you@@ for this indignity and @@.gold;worries@@ about what else you have waiting to torment $him.
		<<set $activeSlave.devotion -= 2, $activeSlave.trust -= 2>>
	<</replace>>
<</link>>

<<case "devoted fearful slave">>

<<link "Comfort $him">>
	<<replace "#result">>
		You set the $PC.refreshment aside on your desk for now, and take $him gently by the hand. You lead $him out onto the balcony of the Penthouse over to the railing. $He obediently assumes a position for you, bracing $his arm<<if hasBothArms($activeSlave)>>s<</if>> on the railing, arching $his back and sticking $his bottom out to present $himself for use. Much to $his surprise, your hand guides $him back into a comfortable position, and simply pulls $him close into you. You explain to $him that $he is a good $girl who tries $his best, and that you don't want $him to fear you. After a little coddling, you fall silent, and simply hold $him tight, watching the street lights of $arcologies[0].name blink to life one after the other, slowly transforming the arcology into a vibrant, elegant light show. $activeSlave.slaveName can hardly believe what's happening, but eventually is able to relax fully, melting into your arms like butter into a hot pan. $He rests $his head lovingly against your chest and silently appreciates the view with you. When $he eventually departs, $he does so with @@.hotpink;tears of joy,@@ @@.mediumaquamarine;rather than fear,@@ welling behind $his eyes.
		<<set $activeSlave.devotion += 15>>
		<<set $activeSlave.trust += 15>>
	<</replace>>
<</link>>
<br><<link "Gently reassure $him">>
	<<replace "#result">>
		You set the $PC.refreshment aside on your desk for now, and take $him gently by the shoulders. You assure $him that $he is a good $girl who tries $his best, and that $he won't be hurt so long as $he remains well behaved. You affectionately stroke $his shoulders with your thumbs as you speak in a further attempt to calm $him down. $He is highly receptive to your soothing touch and kind words. $He dries $his eyes, gives you an @@.hotpink;affectionate kiss@@ and @@.mediumaquamarine;thanks you prettily@@ before departing.
		<<set $activeSlave.devotion += 10>>
		<<set $activeSlave.trust += 10>>
	<</replace>>
<</link>>
<br><<link "Vindicate $his fears">>
	<<replace "#result">>
		You set the $PC.refreshment aside on your desk, then, when the slave least expects, whirl around, delivering a fierce backhand slap to $his <<if $activeSlave.face >= -10>>pretty<<else>>homely<</if>> face that nearly sends $him to the ground. You instruct $him to be more careful in future, and that you won't tolerate slaves that shy away from you for any reason, nor ones that are clumsy enough to nearly drop a serving tray while standing still. $He all but begs <<if hasAllLimbs($activeSlave)>>upon $his hands and knees<<else>>and grovels<</if>> for your forgiveness. You dismiss $him without further comment, and sit down to enjoy your evening refreshments. The battered, dejected slave slinks away, @@.gold;choking down tears.@@ $He will be @@.hotpink;less careless@@ in the future.
		<<set $activeSlave.devotion += 10>>
		<<set $activeSlave.trust -= 10>>
	<</replace>>
<</link>>

<<default>>
	<br>ERROR: bad RESS event $RESSevent
<</switch>>

<<if $cheatMode == 1>>
	<br><br>DEBUG: &nbsp;&nbsp;&nbsp;&nbsp;[[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]]
<</if>>

</span>

<</if>> /* CLOSES EVENT SELECTION */