diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 407ea48294bbc4421656b1aaca8293c7c095b4f6..b66186cadbc8c38f31e7a3ec5e665577ad1e6dfe 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -33724,8 +33724,6 @@ window.BaseSlave = function BaseSlave() { HGExclude: 0, ballType: "human", eggType: "human", - reservedChildren: 0, - reservedChildrenNursery: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], @@ -36835,8 +36833,6 @@ window.slavePregnancyDatatypeCleanup = function slavePregnancyDatatypeCleanup(sl slave.ovaries = Math.clamp(+slave.ovaries, 0, 1) || 0; slave.vasectomy = Math.clamp(+slave.vasectomy, 0, 1) || 0; slave.mpreg = Math.clamp(+slave.mpreg, 0, 1) || 0; - slave.reservedChildren = WombReserveCount(slave, "incubator") || 0; - slave.reservedChildrenNursery = WombReserveCount(slave, "nursery") || 0; if (slave.pregAdaptation !== 0) { slave.pregAdaptation = Math.max(+slave.pregAdaptation, 0) || 50; } @@ -37407,8 +37403,6 @@ window.childPregnancyDatatypeCleanup = function childPregnancyDatatypeCleanup(ch child.ovaries = Math.clamp(+child.ovaries, 0, 1) || 0; child.vasectomy = Math.clamp(+child.vasectomy, 0, 1) || 0; child.mpreg = Math.clamp(+child.mpreg, 0, 1) || 0; - child.reservedChildren = WombReserveCount(child, "incubator") || 0; - child.reservedChildrenNursery = WombReserveCount(child, "nursery") || 0; if (child.pregAdaptation !== 0) { child.pregAdaptation = Math.max(+child.pregAdaptation, 0) || 50; } @@ -37808,8 +37802,6 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() { V.playerAging = Math.clamp(+V.playerAging, 0, 2) || 2; } PC.newVag = Math.clamp(+PC.newVag, 0, 1) || 0; - PC.reservedChildren = WombReserveCount(PC, "incubator") || 0; - PC.reservedChildrenNursery = WombReserveCount(PC, "nursery") || 0; PC.fertDrugs = Math.clamp(+PC.fertDrugs, 0, 1) || 0; PC.forcedFertDrugs = Math.max(+PC.forcedFertDrugs, 0) || 0; PC.staminaPills = Math.clamp(+PC.staminaPills, 0, 1) || 0; @@ -37818,6 +37810,7 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() { PC.lactation = Math.max(+PC.lactation, 0) || 0; PC.lactationDuration = Math.max(+PC.lactationDuration, 0) || 0; generatePlayerPronouns(PC); + if (PC.age !== undefined) { delete PC.age; } @@ -37875,6 +37868,15 @@ window.ArcologyDatatypeCleanup = function ArcologyDatatypeCleanup() { V.fuckdolls = Math.max(+V.fuckdolls, 0) || 0; V.menialBioreactors = Math.max(+V.menialBioreactors, 0) || 0; + V.assistant = Math.clamp(+V.assistant, 0, 1) || 0; + if (typeof V.assistantPronouns != "object") { + V.assistantPronouns = {}; + } + if (typeof V.marketAssistantPronouns != "object") { + V.marketAssistantPronouns = {}; + } + generateAssistantPronouns(); + V.foodCost = Math.trunc(2500/V.economy); V.drugsCost = Math.trunc(10000/V.economy); V.rulesCost = Math.trunc(10000/V.economy); diff --git a/src/js/datatypeCleanupJS.tw b/src/js/datatypeCleanupJS.tw index f9b41a365e336a39f01672c2194fc9e27a7ee2d0..d3f7b7f66273b4d230c11186c65c45aa46f179c1 100644 --- a/src/js/datatypeCleanupJS.tw +++ b/src/js/datatypeCleanupJS.tw @@ -1229,10 +1229,16 @@ window.ArcologyDatatypeCleanup = function ArcologyDatatypeCleanup() { V.GDP = Math.max(+V.GDP, 1) || 278.6; V.NPCSlaves = Math.max(+V.NPCSlaves, 0) || 0; V.menials = Math.max(+V.menials, 0) || 0; - V.fuckdolls = Math.max(+V.fuckdolls , 0) || 0; - V.menialBioreactors = Math.max(+V.menialBioreactors , 0) || 0; + V.fuckdolls = Math.max(+V.fuckdolls, 0) || 0; + V.menialBioreactors = Math.max(+V.menialBioreactors, 0) || 0; V.assistant = Math.clamp(+V.assistant, 0, 1) || 0; + if (typeof V.assistantPronouns != "object") { + V.assistantPronouns = {}; + } + if (typeof V.marketAssistantPronouns != "object") { + V.marketAssistantPronouns = {}; + } generateAssistantPronouns(); V.foodCost = Math.trunc(2500/V.economy); diff --git a/src/js/slaveGenerationJS.tw b/src/js/slaveGenerationJS.tw index 6ec794cb8ec7e72e8028f0e619a07499ebd269cf..62987b67111b8d6fad147b4ab43957be37249629 100644 --- a/src/js/slaveGenerationJS.tw +++ b/src/js/slaveGenerationJS.tw @@ -1698,8 +1698,6 @@ window.BaseSlave = function BaseSlave() { HGExclude: 0, ballType: "human", eggType: "human", - reservedChildren: 0, - reservedChildrenNursery: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index a13da79c41af84b4f624a35c156f298f7f5edb1d..c08f056b19b82adfdf0f94d57778cf830d293f68 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -4806,7 +4806,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<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@@ /* TODO: add case for male slaves */ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>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.@@ + 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 @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>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.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -15755,7 +15755,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <<if $activeSlave.height < 35>> <<if $activeSlave.dick > 0>>bouncing on $activeSlave.slaveName's lap and eagerly taking $his cock, finally enjoying sex with someone her 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 her belly with each thrust<<else>>hard clit<</if>> while a vine is gently penetrating below $him. /* TODO: not sure which this is referring to */ 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 + bouncing on $activeSlave.slaveName's <<if $activeSlave.dick > 0>>cock, distending her 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. <<set $activeSlave.vaginalCount++, $vaginalTotal++>> @@ -20611,7 +20611,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <br><<link "Vindicate $his fears">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You set the $PC.refreshment aside on your desk, then spin around as the slave least expects it/*TODO: this sentence needs work*/, 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 upon $his hands and knees 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 future. + You set the $PC.refreshment aside on your desk, then, when the slave leasts 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 upon $his hands and knees 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 future. <<set $activeSlave.devotion += 10>> <<set $activeSlave.trust -= 10>> <</replace>> diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw index cfc86f3135fd15a26bfa361509cd3c1eec9790b7..437ec5667b2eaca103803a5757295be3e898ed20 100644 --- a/src/uncategorized/reShelterInspection.tw +++ b/src/uncategorized/reShelterInspection.tw @@ -1,6 +1,6 @@ :: RE shelter inspection [nobr] -<<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check">> +<<set $nextButton = " ", $nextLink = "RIE Eligibility Check">> <<set $activeSlaveOneTimeMinAge = 36>> <<set $activeSlaveOneTimeMaxAge = 42>> @@ -18,7 +18,7 @@ <<set $activeSlave.origin = "She was once an inspector for the Shelter, but you put a stop to that.">> <<set $activeSlave.career = "a charity worker">> <<set $activeSlave.devotion = random(-90,-75)>> -<<set $activeSlave.trust = random(-75,-60)>> +<<set $activeSlave.trust = random(75,90)>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> <<set $activeSlave.oldTrust = $activeSlave.trust>> <<set $activeSlave.health = random(30,50)>> @@ -41,17 +41,19 @@ <<set $activeSlave.sexualQuirk = either("apathetic", "idealistic")>> <<set _slave = $shelterGirlsIDs.random()>> -<<set $subSlave = getSlave(_slave)>> +<<set _Inspectee = getSlave(_slave)>> +<<set _originSlave = $genePool.find(function(s) { return s.ID == _slave; })>> /* * this check is currently unnecessary but if in the future the shelter girl IDs list is changed to updated only when acquiring shelter girls, this should be enabled * -<<if (ndef $subSlave)>> +<<if (ndef _Inspectee)>> <<set $shelterGirlsIDs.delete(_slave)>> <<goto "Random Nonindividual Event">> <</if>> */ -<<run Enunciate($subSlave)>> +<<run Enunciate(_Inspectee)>> +<<setLocalPronouns _Inspectee>> Your assistant announces a visitor in the entryway of your penthouse, and adds<<if $assistant > 0>> with disapproval<</if>> that it's an inspector from the Slave Shelter. <<if $assistant > 0>> @@ -92,7 +94,7 @@ Your assistant announces a visitor in the entryway of your penthouse, and adds<< Her avatar turns a reproving blue and shrinks a little. <</switch>> <</if>> -Not waiting to be greeted, the inspector looks up at the nearest camera and demands to be let in. She's an older woman with graying hair up in a bun, holding a tablet against her chest like a shield. "I'm here to inspect $subSlave.slaveName," she bellows up at the camera. +Not waiting to be greeted, the inspector looks up at the nearest camera and demands to be let in. She's an older woman with graying hair up in a bun, holding a tablet against her chest like a shield. "I'm here to inspect _originSlave.slaveName,<<if _originSlave.slaveName != _Inspectee.slaveName>> or as you call $him, _Inspectee.slaveName,<</if>>" she bellows up at the camera. <br><br> @@ -100,43 +102,258 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <<link "Amusing. Enslave her">> <<set $cash -= $contractCost>> <<replace "#result">> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> ushers her into your penthouse and keeps her busy for the few minutes you need to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing. Fortunately, you're cleverer and richer than most, and you succeed. You have her brought into your office, and you are pleased to see her. She's not young and she's not pretty, but her suit cannot disguise her big bottom, and she's using the tablet she has clasped protectively against her chest to conceal a huge pair of mature breasts. She knows exactly what's happened, and fixes you with a gimlet stare. "In a couple of months," she says with venom, "when you've filled me full of hormones and drugs and training, and I'm begging you to <<if $PC.dick == 1>>stick your tiny little dick up<<else>>fist<</if>> my asshole, remember this. It'll be conditioning and self-preservation and Stockholm Syndrome talking, not me. I think you're a <<if $PC.title == 1>>sad bastard<<else>>vile cunt<</if>>, and I always will." + $assistantName ushers her into your penthouse and keeps her busy for the few minutes you need to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing. Fortunately, you're cleverer and richer than most, and you succeed. You have her brought into your office, and you are pleased to see her. She's not young and she's not pretty, but her suit cannot disguise her big bottom, and she's using the tablet she has clasped protectively against her chest to conceal a huge pair of mature breasts. She knows exactly what's happened, and fixes you with a gimlet stare. "In a couple of months," she says with venom, "when you've filled me full of hormones and drugs and training, and I'm begging you to <<if $PC.dick == 1>>stick your tiny little dick up<<else>>fist<</if>> my asshole, remember this. It'll be conditioning and self-preservation and Stockholm Syndrome talking, not me. I think you're a <<if $PC.title == 1>>sad bastard<<else>>vile cunt<</if>>, and I always will." <<set $shelterAbuse += 10>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ <<include "New Slave Intro">> <</replace>> <</link>> //This will cost <<print cashFormat($contractCost)>>// -<<if ($dairy > 0) && ($dairyRestraintsSetting > 1) && ($subSlave.assignment == "work in the dairy")>> -<br><<link "The slave is attached to a milking machine, and so will be the inspector">> - <<= assignJob($activeSlave, "work in the dairy")>> - <<set $activeSlave.clothes = "no clothing">> - <<set $cash -= $contractCost/2>> +<<if $Bodyguard != 0 || $mercenaries > 1 || ($SF.Toggle && $SF.Active >= 1)>> + <br> [[Escort her off your property.|RE shelter inspection][$InspectionOption = "Escort"]] <<replace "#result">> - $subSlave.slaveName is attached to a milking machine, so it would be extremely unwise to let the inspector report on $subSlave.slaveName's industrial fate in all its gorgeous productivity. So, you greet her politely, and bring her down to $dairyName to show her $subSlave.slaveName. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by one more big-boobed milk producer. You leave the inspector's drug dosage low to start, so she can appreciate her situation for a while. When the inspector awakes, her visor is set to show an overhead view of her bay in $dairyName. She sees her breasts, already larger than she remembers, gently swaying with the pumping of the milkers.<<if $dairyFeedersSetting > 1>> She sees the huge phallus occupying her mouth, and feels nutrition sliding down her throat.<</if>><<if $dairyPregSetting > 1>> She sees her vagina drooling as it's fucked in preparation for pregnancy.<</if>><<if $dairyPregSetting > 1>> She sees a massive piston moving slowly back and forth beneath her buttocks, and understands what the ache of impossible fullness in her bottom is.<</if>> Her hands ball into fists. - <<set $shelterAbuse += 10>> - <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + You along with <<if $Bodyguard != 0>> your bodyguard <<print SlaveFullName($Bodyguard)>> and<</if>> <<if $mercenaries > 1>>a squad of $mercenariesTitle <<elseif ($SF.Toggle && $SF.Active >= 1)>>, a squad of $SF.Lower <<elseif $mercenaries > 1 && ($SF.Toggle && $SF.Active >= 1)>> a sqaud of both $mercenariesTitle and $SF.Lower <</if>> forcefully escort the inspector off your property. You barely make it back to the penthouse before the massage deeming you permanently banned from the Slave Shelter arrives. + <<set $shelterAbuse += 100>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ <</replace>> -<</link>> //This will cost <<print cashFormat($contractCost/2)>>// <</if>> -<<if ($dairyRestraintsSetting < 2) || ($subSlave.assignment != "work in the dairy")>> +<<if ($dairy > 0) && ($dairyRestraintsSetting > 1) && (_Inspectee.assignment == "work in the dairy")>> + <br><<link "The slave is attached to a milking machine in $dairyName, and so will be the inspector">> + <<= assignJob($activeSlave, "work in the dairy")>> + <<set $activeSlave.lactation = 1, $activeSlave.lactationDuration = 2>> + <<set $activeSlave.clothes = "no clothing">> + <<set $cash -= $contractCost/2>> + <<replace "#result">> + _Inspectee.slaveName is attached to a milking machine, so it would be extremely unwise to let the inspector report on _Inspectee.slaveName's industrial fate in all its gorgeous productivity. So, you greet her politely, and bring her down to $dairyName to show her _Inspectee.slaveName. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by one more big-boobed milk producer. You leave the inspector's drug dosage low to start, so she can appreciate her situation for a while. When the inspector awakes, her visor is set to show an overhead view of her bay in $dairyName. She sees her breasts, already larger than she remembers, gently swaying with the pumping of the milkers.<<if $dairyFeedersSetting > 1>> She sees the huge phallus occupying her mouth, and feels nutrition sliding down her throat.<</if>><<if $dairyPregSetting > 1>> She sees her vagina drooling as it's fucked in preparation for pregnancy.<</if>><<if $dairyPregSetting > 1>> She sees a massive piston moving slowly back and forth beneath her buttocks, and understands what the ache of impossible fullness in her bottom is.<</if>> Her hands ball into fists. + <<set $shelterAbuse += 10>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + <</replace>> + <</link>> //This will cost <<print cashFormat($contractCost/2)>>// +<<elseif ($arcade > 0) && (_Inspectee.assignment == "be confined in the arcade")>> + <br><<link "The slave is little more than a hole in $arcadeName, and so will be the inspector">> + <<= assignJob($activeSlave, "be confined in the arcade")>> + <<set $activeSlave.clothes = "no clothing">> + <<set $cash -= $contractCost/2>> + <<replace "#result">> + _Inspectee.slaveName is sealed in a box and currently in use, so it would be extremely unwise to let the inspector report on _Inspectee.slaveName's permanent position in the service industry. So, you greet her politely, and bring her down to $arcadeName to show her _Inspectee.slaveName. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by three more fuckable holes. When the inspector awakes to a dick intruding her body, the pitch blackness and sound prooofing disorienates her. + <<if $arcadeUpgradeInjectors == 1 + She gasps as a needle breaks her skin, filling her veins with a potent mixture of aphrodisiacs to help her better service the cock in her cunt. She attempts to defy, but a strong shock forces her to tighten and bring her partner to climax. + <<elseif $arcadeUpgradeCollectors == 1>> + She groans at the feeling of something sucking away at her milkless tits, but it does nothing the distract from her rape. She struggles to resist in any way she can, but she is too firmly anchored to move. + <<else>> + She struggles to resist in any way she can, but she is too firmly anchored to move. + <</if>> + Before she gets the chance to swear defiance against you, another patron rams his dick down her throat, putting a stop to that notion. Her hands ball into fists as she endures her spit-roasting. + <<set $shelterAbuse += 15>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + <</replace>> + <</link>> //This will cost <<print cashFormat($contractCost/2)>>// +<<elseif (_Inspectee.assignment == "be your agent") || (_Inspectee.assignment == "live with your agent")>> + <br><<link "Your slave is in another arcology">> + <<replace "#result">> + _Inspectee.slaveName is now a guiding force in another of the Free City's arcologies, so it would be disruptive to $his work to be called away like this. You simply pass along $his new address and send the inspector on her way. She stands there dumbfounded before hastily writing notes on her tablet. She seems quite pleased by _Inspectee.slaveName's progress. + <<set $shelterAbuse -= 15>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <</replace>> + <</link>> +<<elseif _Inspectee.fuckdoll > 0>> + <br><<link "The slave is little more than a latex wrapped doll, and so will be the inspector">> + <<set $cash -= $contractCost/2>> + <<replace "#result">> + You have her ushered up to your office, and order _Inspectee.slaveName brought in. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by one more fuckdoll. Odds are she wants to be defiant, but the suit works perfectly and leaves her no outlet to make her thoughts known. + <<set $activeSlave.toyHole="all her holes", $activeSlave.pubicHStyle="waxed", $activeSlave.livingRules="spare", $activeSlave.speechRules="restrictive", $activeSlave.releaseRules="restrictive", $activeSlave.relationshipRules="restrictive", $activeSlave.fuckdoll=1, $activeSlave.choosesOwnClothes=0, $activeSlave.clothes="a Fuckdoll suit", $activeSlave.collar="none", $activeSlave.shoes="heels",$activeSlave.legAccessory="none", $activeSlave.vaginalAccessory="none", $activeSlave.dickAccessory="none", $activeSlave.buttplug="none", $activeSlave.attrKnown=1, $activeSlave.fetishKnown=1>> + <<set $shelterAbuse += 10>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + <</replace>> + <</link>> //This will cost <<print cashFormat($contractCost/2)>>// +<<elseif ($dairyRestraintsSetting < 2) || (_Inspectee.assignment != "work in the dairy")>> <br><<link "Allow the inspection">> <<replace "#result">> - You have her ushered up to your office, and order $subSlave.slaveName brought in. + <<set _inspectionContinues = 1, _inspectionResult = 0>> + You have her ushered up to your office, and order _Inspectee.slaveName brought in. <br><br> - <<if $subSlave.origin == "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> - <<if $subSlave.fetish == "mindbroken">> + /* + <<if _Inspectee.amp == 1 && _originSlave.amp != 1>> + You may have lopped off the poor $girl's arms and legs, a fact not lost on the inspector. She can barely conceal her terror as she makes lengthy notes on her tablet before practically running out of the penthouse. + <<set $shelterAbuse += 10>> + <<elseif _Inspectee.fetish == "mindbroken">> + <<if _Inspectee.origin == "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know $he was like this when you got $him. Just - just keep trying, would you?" She leaves, looking bitter. + <<elseif _Inspectee.origin == "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know $he was like this when you got $him. Just - just keep trying, would you?" + <<if _Inspectee.pussy > 3 && _Inspectee.bellySag > 1>> + She gropes the slave's sagging middle before inspecting her ruined pussy. "Still ruined I see." + <<elseif _Inspectee.pussy <= 3 && _Inspectee.bellySag > 1>> + She gropes the slave's sagging middle before inspecting $his pussy. "Apart from the belly, $his pussy has recovered nicely." + <<elseif _Inspectee.pussy > 3 && _Inspectee.bellySag <= 1>> + She gropes the slave's middle before inspecting $his ruined pussy. "$His stomach seems to have recovered, shame you did nothing for $his poor vagina." + <<else>> + She runs her hand across the slave's restored midriff, before inspecting $his pussy. "$He is looking much better, physically, though. That's worth noting." + <<set $shelterAbuse-->> + <</if>> + She leaves, looking bitter. + <<else>> + Of course, the poor $girl is mindbroken now. The inspector is horrified, though she tries to conceal it. She makes lengthy notes on her tablet, and almost runs out of the penthouse. + <<set $shelterAbuse += 5>> + <</if>> + <<set _inspectionContinues = 0>> + <</if>> + + <<if _inspectionContinues == 1>> + <<switch _Inspectee.origin>> + <<case "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> + The inspector asks some cursory questions and is shocked when she responds. "$He came back?" she mutters, "You restored $his mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse -= 5>> + <<case "You got her at the Slave Shelter. It's not clear why her previous owner cut her arms and legs off.">> + <<if _Inspectee.amp == _originSlave.amp>> + Unsurprisingly, the poor $girl still lacks arms and legs, so the inspector just carries on. + <<else>> + The inspector stares, dumbfounded, at pair of limbs now supporting _Inspectee.slaveName. "Most owners wouldn't go through the trouble... I think I've seen enough to know you're welcome to come back and take in another girl any time." She leaves your penthouse in much better spirits than she arrived in. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse -= 3>> + <</if>> + <<case "You got her at the Slave Shelter. Her owner purposely blinded her by dumping boiling water into her eyes.">> + "I wish the scaring wasn't so bad, that way people wouldn't stare so much." + <<if _Inspectee.eyes > _originSlave.eyes>> + <<if canTalk(_Inspectee)>> + _Inspectee.slaveName quickly retorts with "But I like <<s>>eeing their eye<<s>>..." + <<else>> + _Inspectee.slaveName shakes $his head in response. + <</if>> + The inspector gasps at the realization that $he can see again. "They look just like $his old photos too..." A tear comes to her weary eye as she writes out notes on her tablet. "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse-->> + <</if>> + <<case "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> + The inspector asks some cursory questions and is shocked when $he responds. "$He came back?" she mutters, "You restored $his mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse, even though she forgot to check $his pussy. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse -= 5>> + + <<case "You got her at the Slave Shelter. Her previous owner forced her to cut off her dick and balls and cook them.">> + <<if _Inspectee.dick > _originSlave.dick>> + "I see that you've given $him a replacement tool," she reaches down and gives it an exploratory fondle, + <<if canAchieveErection(_Inspectee)>> + "it even works, that's lovely." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<else>> + "it seems to be non-functional, but it's a nice gesture at least." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <</if>> + <<set _inspectionResult-->> + <</if>> + <<if _Inspectee.balls > _originSlave.balls && _Inspectee.scrotum>> + <<if _Inspectee.dick > _originSlave.dick>> + "And these work too, right?" She asks as she points to $his dangling balls. "So $he has been fully restored, that's something." The inspector adds another positive note to the inspection. + <<set _inspectionResult-->> + <<else>> + "I take it these testicles are more than just an implant? I'm sure $he appreciates the gesture, though what good are they without a penis?" The inspector shakes her head and notes your attempt to undo the damages to _Inspectee.slaveName. + <</if>> + <</if>> + + <<if !["apathetic", "neglectful"].includes(_Inspectee.sexualFlaw) && !["odd", "anorexic"].includes(_Inspectee.behavioralFlaw) && !["none", "masochist"].includes(_Inspectee.fetish)>> + The inspector can see that her personaility is much better than before. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse -= 3>> + <</if>> + + <<case "You got her at the Slave Shelter. Her previous owner forced her to cut off her breasts and cook them.">> + <<if _Inspectee.boobs > $genePool[_Arrival].boobs>> + The inspector can see that she has a new set of breats. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse -= 2>> + <</if>> + <<if !["apathetic", "neglectful", "self hating"].includes(_Inspectee.sexualFlaw) && !["odd", "anorexic"].includes(_Inspectee.behavioralFlaw) && !["none", "masochist"].includes(_Inspectee.fetish)>> + The inspector can see that $his personaility is much better than before. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse -= 3>> + <</if>> + + <<case "You got her at the Slave Shelter. She is an enslaved Daughter of Liberty, caught some weeks after the failed coup. Her previous owner used her as a punching bag and dart board, then when he was bored of her tattooed obscenities all over her body and threw her away.">> + <<if _Inspectee.slaveName != $genePool[_Arrival].slaveName>> + The inspector notices _Inspectee.birthName new name. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her previous owner gelded her and used her for anal abuse.">> + <<if _Inspectee.anus < $genePool[_Arrival].anus>> + The inspector can see that her anus is better. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + <<if _Inspectee.dick > $genePool[_Arrival].dick>> + The inspector can see that she has a new dick. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her background is obscure, but seems to have involved terrible abuse of her huge cock and balls.">> + <<if _Inspectee.energy > $genePool[_Arrival].energy>> + The inspector notices that _Inspectee.birthName has more engery. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her holes were cruelly stretched by constant plug use.">> + <<if _Inspectee.vagina < $genePool[_Arrival].vagina && _Inspectee.anus < $genePool[_Arrival].anus>> + The inspector notices that _Inspectee.birthName's holes are tighter. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her previous owner discarded her after many pregnancies.">> + <<if _Inspectee.vagina < $genePool[_Arrival].vagina>> + The inspector notices that _Inspectee.birthName's vagina is tighter. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. She was worn out by twenty years of brothel service.">> + <<if _Inspectee.vagina < $genePool[_Arrival].vagina && _Inspectee.anus < $genePool[_Arrival].anus>> + The inspector notices that _Inspectee.birthName's holes are tighter. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. She was discarded after suffering a terrible reaction to growth hormone treatment.">> + <<if _Inspectee.chem < $genePool[_Arrival].chem>> + Upon scanning _Inspectee.birthName, the inspector finds that her chem damage has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector scans _Inspectee.birthName and finds that her chem damage has been increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <<if _Inspectee.dick < $genePool[_Arrival].dick>> + The inspector meresures _Inspectee.birthName's dick and finds that has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector meresures _Inspectee.birthName's dick and finds that has increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <<if _Inspectee.balls < $genePool[_Arrival].balls>> + The inspector meresures _Inspectee.birthName's balls and finds they has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector meresures _Inspectee.birthName's balls and finds they has been increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <<if _Inspectee.fetish != $genePool[_Arrival].fetish>> + The inspector meresures _Inspectee.birthName's balls and finds they has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector is happy that _Inspectee.birthName's balls and finds they has been increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <</switch>> + <</if>> + */ + + <<if _Inspectee.origin == "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> + <<if _Inspectee.fetish == "mindbroken">> Of course, the poor girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know she was like this when you got her. Just - just keep trying, would you?" She leaves, looking bitter. <<else>> The inspector asks some cursory questions and is shocked when she responds. "S-she came back?" she mutters, "You restored her mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse. <<set $shelterAbuse -= 5>> <</if>> - <<elseif $subSlave.origin == "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> - <<if $subSlave.fetish == "mindbroken">> + <<elseif _Inspectee.origin == "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> + <<if _Inspectee.fetish == "mindbroken">> Of course, the poor girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know she was like this when you got her. Just - just keep trying, would you?" - <<if $subSlave.pussy > 3 && $subSlave.bellySag > 1>> + <<if _Inspectee.pussy > 3 && _Inspectee.bellySag > 1>> She gropes the slave's sagging middle before inspecting her ruined pussy. "Still ruined I see." - <<elseif $subSlave.pussy <= 3 && $subSlave.bellySag > 1>> + <<elseif _Inspectee.pussy <= 3 && _Inspectee.bellySag > 1>> She gropes the slave's sagging middle before inspecting her pussy. "Apart from the belly, her pussy has recovered nicely." - <<elseif $subSlave.pussy > 3 && $subSlave.bellySag <= 1>> + <<elseif _Inspectee.pussy > 3 && _Inspectee.bellySag <= 1>> She gropes the slave's middle before inspecting her ruined pussy. "Her stomach seems to have recovered, shame you did nothing for her poor vagina." <<else>> She runs her hand across the slave's restored midriff, before inspecting her pussy. "She is looking much better, physically, though. That's worth noting." @@ -147,41 +364,41 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema The inspector asks some cursory questions and is shocked when she responds. "S-she came back?" she mutters, "You restored her mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse, even though she forgot to check her pussy. <<set $shelterAbuse -= 5>> <</if>> - <<elseif $subSlave.fetish == "mindbroken">> + <<elseif _Inspectee.fetish == "mindbroken">> Of course, the poor girl is mindbroken now. The inspector is horrified, though she tries to conceal it. She makes lengthy notes on her tablet, and almost runs out of the penthouse. <<set $shelterAbuse += 5>> - <<elseif $subSlave.trust < -20>> + <<elseif _Inspectee.trust < -20>> She is sufficiently afraid of you that she tells the inspector whatever she thinks you'd want her to say. The inspector, experienced at this, is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif $subSlave.devotion <= 20>> + <<elseif _Inspectee.devotion <= 20>> She does not like you and isn't particularly terrified of you, so she is not flattering. She's not stupid enough to really criticise you, but she is honest and makes no effort to conceal troubling particulars. The inspector takes copious notes. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif $subSlave.anus > 2>> - She cooperates with the inspector, who pulls on a pair of latex gloves and performs a complete examination. When she pulls the girl's buttocks apart and probes the slave's asshole, she pulls her hand away as if scalded. "Oh my God," she says. "$subSlave.birthName, what happened to your anus?" + <<elseif _Inspectee.anus > 2>> + She cooperates with the inspector, who pulls on a pair of latex gloves and performs a complete examination. When she pulls the girl's buttocks apart and probes the slave's asshole, she pulls her hand away as if scalded. "Oh my God," she says. "_Inspectee.birthName, what happened to your anus?" <br><br> - <<if ($subSlave.devotion < 10)>> - <<if ($subSlave.buttplug == "large plug") || ($subSlave.buttplug == "huge plug") || ($subSlave.buttplug == "long, large plug") || ($subSlave.buttplug == "long, huge plug")>> + <<if (_Inspectee.devotion < 10)>> + <<if (_Inspectee.buttplug == "large plug") || (_Inspectee.buttplug == "huge plug") || (_Inspectee.buttplug == "long, large plug") || (_Inspectee.buttplug == "long, huge plug")>> "W-well," she says, "I wear a buttplug." The inspector frowns. "A buttplug shouldn't do that!" The slave looks worried and replies, "It'<<s>> kinda big? And I wear it all the time. B-but I like it! It d-doe<<s>>n't hurt. Well, anymore." The inspector is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif ($subSlave.assignment == "whore") || ($subSlave.assignment == "work in the brothel") || ($subSlave.assignment == "serve the public") || ($subSlave.assignment == "serve in the club")>> + <<elseif (_Inspectee.assignment == "whore") || (_Inspectee.assignment == "work in the brothel") || (_Inspectee.assignment == "serve the public") || (_Inspectee.assignment == "serve in the club")>> "W-well," she says, "I get fucked there at work." The inspector frowns. "How often!?" The slave looks worried and replies, "L-let me think. Four time<<s>> today? After the third time, it u<<s>>ually <<s>>top<<s>> clo<<s>>ing up again between cock<<s>>." The inspector is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif ($subSlave.fetish == "buttslut") && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.fetish == "buttslut") && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love anal <<s>>e<<x>>! Don't judge me. I want cock up that hole right now, you bitch. I'm going to beg for butt<<s>>e<<x>> the moment you leave." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.energy > 95) && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.energy > 95) && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love <<s>>e<<x>>! Don't judge me. I take cock in all my hole<<s>>, and I like it. I'm going to beg for butt<<s>>e<<x>> the moment you leave, you bitch." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> "W-well," she says, "I'm a <<s>>lave." The inspector frowns. "What does that have to do with it?" The slave looks worried and replies, "I-it'<<s>> a hole, right? I get fucked in all my hole<<s>>." The inspector is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. <</if>> <<else>> - <<if ($subSlave.buttplug == "large plug") || ($subSlave.buttplug == "huge plug") || ($subSlave.buttplug == "long, large plug") || ($subSlave.buttplug == "long, huge plug")>> + <<if (_Inspectee.buttplug == "large plug") || (_Inspectee.buttplug == "huge plug") || (_Inspectee.buttplug == "long, large plug") || (_Inspectee.buttplug == "long, huge plug")>> "I wear a buttplug!" she says confidently. The inspector frowns. "A buttplug shouldn't do that!" The slave looks worried and replies, "It'<<s>> really big, and I wear it all the time. I like it! It keep<<s>> my hole ready for anything." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.assignment == "whore") || ($subSlave.assignment == "work in the brothel") || ($subSlave.assignment == "serve the public") || ($subSlave.assignment == "serve in the club")>> + <<elseif (_Inspectee.assignment == "whore") || (_Inspectee.assignment == "work in the brothel") || (_Inspectee.assignment == "serve the public") || (_Inspectee.assignment == "serve in the club")>> "I get fucked there at work!" she says confidently. The inspector frowns. "How often!?" The slave thinks for a moment and replies, "Four time<<s>> today. After the third time, it u<<s>>ually <<s>>top<<s>> clo<<s>>ing up again between cock<<s>>. I'm good at my job!" The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.fetish == "buttslut") && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.fetish == "buttslut") && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love anal <<s>>e<<x>>! Don't judge me. I want cock up that hole right now, you bitch. I'm going to beg for butt<<s>>e<<x>> the moment you leave." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.energy > 95) && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.energy > 95) && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love <<s>>e<<x>>! Don't judge me. I take cock in all my hole<<s>>, and I like it. I'm going to beg for butt<<s>>e<<x>> the moment you leave, you bitch." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> @@ -190,42 +407,43 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <</if>> <</if>> <<else>> - The inspector asks, "What do you do for work, $subSlave.birthName?" + The inspector asks, "What do you do for work, _Inspectee.birthName?" <br><br> - <<switch $subSlave.assignment>> + <<switch _Inspectee.assignment>> <<case "whore" "work in the brothel">> - <<if ($subSlave.fetishStrength > 95) || ($subSlave.energy > 95)>> - $subSlave.slaveName says happily, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cock, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<if (_Inspectee.fetishStrength > 95) || (_Inspectee.energy > 95)>> + _Inspectee.slaveName says happily, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cock, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> - $subSlave.slaveName says confidently, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> hard work <<s>>ometime<<s>>, but I'm okay. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. + _Inspectee.slaveName says confidently, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> hard work <<s>>ometime<<s>>, but I'm okay. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <</if>> <<case "serve the public" "serve in the club">> - <<if ($subSlave.fetishStrength > 95) || ($subSlave.energy > 95)>> - $subSlave.slaveName says happily, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cute boy<<s>> and girl<<s>>, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<if (_Inspectee.fetishStrength > 95) || (_Inspectee.energy > 95)>> + _Inspectee.slaveName says happily, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cute boy<<s>> and girl<<s>>, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> - $subSlave.slaveName says confidently, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> not bad. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. + _Inspectee.slaveName says confidently, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> not bad. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <</if>> <<case "get milked" "work in the dairy">> - <<if $subSlave.lactation > 0>> - $subSlave.slaveName says happily, "I'm a milk cow!" The inspector arches an eyebrow skeptically, and the slave continues, "I give milk. <<s>>ee?" She expresses a squirt of milk from one nipple. It'<<s>> a ni<<c>>e life. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. + <<if _Inspectee.lactation > 0>> + _Inspectee.slaveName says happily, "I'm a milk cow!" The inspector arches an eyebrow skeptically, and the slave continues, "I give milk. <<s>>ee?" She expresses a squirt of milk from one nipple. It'<<s>> a ni<<c>>e life. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <<else>> - $subSlave.slaveName says happily, "I get cockmilked!" The inspector arches an eyebrow skeptically, and the slave continues, "I give cum. It'<<s>> actually lot<<s>> of fun!" She shakes her penis for emphasis. "The machine feel<<s>> <<s>>o good. And when I'm almo<<s>>t empty, I get buttfucked to get the la<<s>>t drop out of me!" She shivers. "It'<<s>> really ni<<c>>e..." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + _Inspectee.slaveName says happily, "I get cockmilked!" The inspector arches an eyebrow skeptically, and the slave continues, "I give cum. It'<<s>> actually lot<<s>> of fun!" She shakes her penis for emphasis. "The machine feel<<s>> <<s>>o good. And when I'm almo<<s>>t empty, I get buttfucked to get the la<<s>>t drop out of me!" She shivers. "It'<<s>> really ni<<c>>e..." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <</if>> <<default>> - $subSlave.slaveName <<say>>s flatly, "Whatever my beloved <<Master>> require<<s>>. I have a good life now, and I would appre<<c>>iate it if you would <<s>>upport me by doing everything you can for <<if $PC.title == 1>>him<<else>>her<</if>>." Taken aback, the inspector says she'll put out a @@.green;good word@@ about you. + _Inspectee.slaveName <<say>>s flatly, "Whatever my beloved <<Master>> require<<s>>. I have a good life now, and I would appre<<c>>iate it if you would <<s>>upport me by doing everything you can for <<if $PC.title == 1>>him<<else>>her<</if>>." Taken aback, the inspector says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <</switch>> <</if>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ <</replace>> <</link>> <</if>> diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index 5ad9f0474f78e8c112d91dd54d20851a1bf55aa4..ca9e2f94a8c1b35885b710f180428a54a756482a 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -880,11 +880,11 @@ Work on $his sex: One has been replaced with a sperm producing analog for self-fertilization. <</switch>> <<else>> - <<if $sympatheticOvaries == 1>> + <<if $fertilityImplant == 1>> <br> [[Install fertility implants|Surgery Degradation][$activeSlave.ovaImplant = "fertility",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "ovaImplant added"]] <</if>> - <<if $fertilityImplant == 1>> + <<if $sympatheticOvaries == 1>> <br> [[Install sympathetic ovulation implants|Surgery Degradation][$activeSlave.ovaImplant = "sympathy",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "ovaImplant added"]] <</if>>