diff --git a/devNotes/AnatomyOfAFreeCitiesEvent.txt b/devNotes/AnatomyOfAFreeCitiesEvent.txt index f7fc0426ea8c5e449d1109724247b546ebbd3de8..3e07f042d18a601987ffa9498f9d2db30a07e65f 100644 --- a/devNotes/AnatomyOfAFreeCitiesEvent.txt +++ b/devNotes/AnatomyOfAFreeCitiesEvent.txt @@ -24,7 +24,7 @@ Most events have some kind of precondition for when they happen. Scheduled event <<goto "Nonrandom Event">> <</if>> -If it is week fourteen and the player player hasn't ready seen the event, a check is then made for slaves that either are on curatives or have their implants filled by curatives. If it was sucessful then load the "bad curatives" generic event, if unsucessful set the flag anyway and read from the Nonrandom Event passage. +If it is week fourteen and the player hasn't ready seen the event, a check is then made for slaves that either are on curatives or have their implants filled by curatives. If it was successful then load the "bad curatives" generic event, if unsuccessful set the flag anyway and read from the Nonrandom Event passage. Immediate effects @@ -58,7 +58,7 @@ A slave can be linked with the macro <<EventNameLink _Slave>>. This allows the p <<SlaveTitle _Slave>> sets $desc (which ends up being a string like "slavegirl", "MILF", "futanari" and so on, depending on slave). <<SlavePronouns _Slave>> allows you to use the variables $pronoun ("she"/"he"/"it"), $pronounCap ("She"/"He"/"It"), $possessive ("her"/"his"/"its"), $possessiveCap ("Her"/"His"/"Its") and $object ("her"/"him"/"it"). There is NO variable for self-possession ("hers"/"his"/"its") and for "herself", you need to use <<= $object>>self. -One more macro initialises several others and is required when you have a slave speak and want to use direct quotes: <<Enunciate _Slave>> allows you to use <<Master>>, <<WrittenMaster>>, <<says>> (which turns into "lisps" when that's the case) and the lisping replacers <<s>>, <<ss>>, <<S>>, <<c>> and <<z>>. +One more macro initializes several others and is required when you have a slave speak and want to use direct quotes: <<Enunciate _Slave>> allows you to use <<Master>>, <<WrittenMaster>>, <<says>> (which turns into "lisps" when that's the case) and the lisping replacers <<s>>, <<ss>>, <<S>>, <<c>> and <<z>>. The text should be about large enough to fit on the screen assuming typical monitor sizes. In terms of visible text, about 1000 words are a fine limit to aim for. There's a lot to keep in mind in terms of different appearances and circumstances, so keep your document with slave variables as a reference nearby. @@ -118,7 +118,7 @@ A choice doesn't need to have a specific effect. If your event has an immediate <<if $cash >= 2000>> <br><<link "Take the poor slave girl into your custody">> <<replace "#result">> - Confronting the citizen is simplicity in itself, he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave girl and take her into your care with only minimal compensation to the citizen. As you stride away from her former owner with the girl in your arms, she leans over to plant a chaste kiss of thanks on your cheek. + Confronting the citizen is simplicity in itself; he would not dare defy you under threat of arrest by your security drones and is unlikely to garner any sympathy from the public for his degradationist behaviors. As such, you are able to take civil ownership over the poor slave girl and take her into your care with only minimal compensation to the citizen. As you stride away from her former owner with the girl in your arms, she leans over to plant a chaste kiss of thanks on your cheek. <<set $cash -= 2000>> <<set $activeSlaveOneTimeMaxAge = 22>> <<include "Generate New Slave">> @@ -136,7 +136,7 @@ A choice doesn't need to have a specific effect. If your event has an immediate <</if>> <br><<link "Publicly confront the citizen">> <<replace "#result">> - Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen@@. + Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to shirk the law. To make it clear his next offense will be his last, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approves of your rebuke of the citizen@@. <<set $rep += 500>> <</replace>> <</link>> diff --git a/devNotes/scene-guide.txt b/devNotes/scene-guide.txt index adc85a7038e1b9952967a462a866bebb7c29ecb7..ee0859f2bdfbd852c066a729db6165aa20e4ca0e 100644 --- a/devNotes/scene-guide.txt +++ b/devNotes/scene-guide.txt @@ -107,7 +107,7 @@ TODO <</if>> And then fill it in later than it is to end up with a situation where you have a dozen unclosed tags and you can't remember where they are or what they do. -2. For very simple stuff, its fine to "inline" your stuff. For example, when penetrating a slave, doing "you fuck her <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>" to show "pussy" or "ass" as necessary. However, if you need to do the same comparison a bunch of times, do something like +2. For very simple stuff, it's fine to "inline" your stuff. For example, when penetrating a slave, doing "you fuck her <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>" to show "pussy" or "ass" as necessary. However, if you need to do the same comparison a bunch of times, do something like <<if $activeSlave.vagina > -1>> <<set _targetOrifice = "vagina">> <<else>> diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 32a979c63069e1eb9b4cc685c309d5f6ea15e78b..ec98a00068c3545d3253ea24b6227b4bba26d565 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -859,6 +859,7 @@ window.lispReplace = function(text) text = text.replace("Zz", "Th"); text = text.replace("ZZ", "TH"); text = text.replace("Z", "Th"); + text = text.replace("C", "Th"); text = text.replace("Ci", "Thi"); text = text.replace("Ce", "The"); text = text.replace("Cy", "Thy"); @@ -895,6 +896,7 @@ window.lispReplace = function(text) text = text.replace("xU", "thU"); text = text.replace("xY", "thY"); text = text.replace("x", "ekth"); + text = text.replace("c", "th"); text = text.replace("ci", "thi"); text = text.replace("ce", "the"); text = text.replace("cy", "thy"); diff --git a/src/cheats/mod_editSlaveCheatNew.tw b/src/cheats/mod_editSlaveCheatNew.tw index 58d3916ffb3f71c276c5acc0ac3c6eb06ee39537..6c2ee4d2a754c390ab0a7d7d2aaef5f8b049a29c 100644 --- a/src/cheats/mod_editSlaveCheatNew.tw +++ b/src/cheats/mod_editSlaveCheatNew.tw @@ -3244,23 +3244,23 @@ <br> <<link "[a devil silhouette]">><<set $tempSlave.brand = "a devil silhouette">><</link>><<print " | ">> <<link "[a racial slur]">><<set $tempSlave.brand = "a racial slur">><</link>><<print " | ">> - <<link "[the number of children she has birthed]">><<set $tempSlave.brand = "the number of children "+$pronoun+" has birthed">><</link>><<print " | ">> + <<link "[the number of children she has birthed]">><<set $tempSlave.brand = "the number of children "+$he+" has birthed">><</link>><<print " | ">> <<link "[a gender symbol]">><<set $tempSlave.brand = "a gender symbol">><</link>><<print " | ">> - <<link "[her own personal symbol]">><<set $tempSlave.brand = $possessive+" own personal symbol">><</link>><<print " | ">> + <<link "[her own personal symbol]">><<set $tempSlave.brand = $his+" own personal symbol">><</link>><<print " | ">> <br> <<link "[a chain symbol]">><<set $tempSlave.brand = "a chain symbol">><</link>><<print " | ">> <<link "[a Vitruvian man]">><<set $tempSlave.brand = "a Vitruvian man">><</link>><<print " | ">> <<link "[a scalpel]">><<set $tempSlave.brand = "a scalpel">><</link>><<print " | ">> - <<link "[her virginity status]">><<set $tempSlave.brand = $possessive+" virginity status">><</link>><<print " | ">> - <<link "[her sexual skills]">><<set $tempSlave.brand = $possessive+" sexual skills">><</link>> + <<link "[her virginity status]">><<set $tempSlave.brand = $his+" virginity status">><</link>><<print " | ">> + <<link "[her sexual skills]">><<set $tempSlave.brand = $his+" sexual skills">><</link>> <br> - <<link "[her absolute minimum breast size]">><<set $tempSlave.brand = $possessive+" absolute minimum breast size">><</link>><<print " | ">> - <<link "[her absolute maximum breast size]">><<set $tempSlave.brand = $possessive+" absolute maximum breast size">><</link>><<print " | ">> - <<link "[her highest weigh-in]">><<set $tempSlave.brand = $possessive+" highest weigh-in">><</link>><<print " | ">> + <<link "[her absolute minimum breast size]">><<set $tempSlave.brand = $his+" absolute minimum breast size">><</link>><<print " | ">> + <<link "[her absolute maximum breast size]">><<set $tempSlave.brand = $his+" absolute maximum breast size">><</link>><<print " | ">> + <<link "[her highest weigh-in]">><<set $tempSlave.brand = $his+" highest weigh-in">><</link>><<print " | ">> <<link "[a big helping of your personal refreshment]">><<set $tempSlave.brand = "a big helping of "+$PC.refreshment >><</link>><<print " | ">> - <<link "[her body product quality]">><<set $tempSlave.brand = $possessive+" body product quality">><</link>> + <<link "[her body product quality]">><<set $tempSlave.brand = $his+" body product quality">><</link>> <br> - <<link "[her deadlift record]">><<set $tempSlave.brand = $possessive+" deadlift record">><</link>><<print " | ">> + <<link "[her deadlift record]">><<set $tempSlave.brand = $his+" deadlift record">><</link>><<print " | ">> <<link "[a religious symbol]">><<set $tempSlave.brand = "a religious symbol">><</link>><<print " | ">> <<link "[the crest of your Republic]">><<set $tempSlave.brand = "the crest of your Republic">><</link>><<print " | ">> <<link "[the symbol of the Aztec gods]">><<set $tempSlave.brand = "the symbol of the Aztec gods">><</link>><<print " | ">> diff --git a/src/endWeek/saChoosesOwnClothes.tw b/src/endWeek/saChoosesOwnClothes.tw index d0f127a56340dc8dff07b82b095110d0da8be5af..7d29f34084d6d2dadc5aed79a799096fc79dc3eb 100644 --- a/src/endWeek/saChoosesOwnClothes.tw +++ b/src/endWeek/saChoosesOwnClothes.tw @@ -575,7 +575,7 @@ window.saChoosesOwnClothes = (function() { /* quirks n flaws */ if(slave.behavioralQuirk == "sinful") { - wardrobeTastes.push({text: `and dresses up like a succubus because it makes $object feel naughty.`, clothes: "a succubus outfit"}); + wardrobeTastes.push({text: `and dresses up like a succubus because it makes ${him} feel naughty.`, clothes: "a succubus outfit"}); } else if(slave.behavioralQuirk == "fitness") { wardrobeTastes.push({text: `and wears spats and a tank top to give ${himself} a sporty look.`, clothes: "spats and a tank top"}); } diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 507e058ace19f3cfff0b06684ec6103910db043d..1ee9e7be9a48fb5256af64ffc4a577edeefc5203 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -1191,7 +1191,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $weatherToday = $niceWeather.random()>> <<set $customSlaveOrdered = 0>> -<<set $customSlave = {age: 19, health: 0, muscles: 0, lips: 15, voice: -1, heightMod: "normal", weight: 0, face: 0, race: "white", skin: 0, boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, whoreSkills: 15, combatSkills: 0, intelligence: 0, intelligenceImplant: 1, nationality: "Stateless", amp: 0, eyes: 1}>> +<<set $customSlave = {age: 19, health: 0, muscles: 0, lips: 15, voice: -1, heightMod: "normal", weight: 0, face: 0, race: "white", skin: "light", boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, whoreSkills: 15, combatSkills: 0, intelligence: 0, intelligenceImplant: 1, nationality: "Stateless", amp: 0, eyes: 1}>> <<set $huskSlaveOrdered = 0>> <<set $huskSlave = {age: 18, nationality: "Stateless", race: "white", sex: 1, virgin: 0}>> diff --git a/src/interaction/cyberConfig.tw b/src/interaction/cyberConfig.tw index 35210abd7669865b3db4c2f0ce8bcc99d4dee69c..2142337197d74cdc313905e588377a2074da5ff1 100644 --- a/src/interaction/cyberConfig.tw +++ b/src/interaction/cyberConfig.tw @@ -86,9 +86,9 @@ <<set $activeSlave.amp = 1>> Due to built-in safeties it is necessary to remove each limb separately, first releasing the lock and then waiting for automated seal release.<br> <<if ($activeSlave.devotion > 20)>> - You instruct $him to lie down on the table and proceed to remove $his limbs. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> with interest as you work.<<if ($activeSlave.devotion > 50)>> As you remove the last limb $pronoun playfully wiggles $his stumps at you.<</if>> + You instruct $him to lie down on the table and proceed to remove $his limbs. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> with interest as you work.<<if ($activeSlave.devotion > 50)>> As you remove the last limb $he playfully wiggles $his stumps at you.<</if>> <<else>> - You order $his to lie down on the table and proceed to remove $his limbs. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> with a bitter expression as you work. + You order $him to lie down on the table and proceed to remove $his limbs. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> with a bitter expression as you work. <</if>> <<case 2>> @@ -105,7 +105,7 @@ <</if>> <<case 4>> <<set $temp = 0, $nextButton = "Continue", $nextLink = "cyberConfig">> - Attaching $his limbs is a simple procedure, you simply push a connector on each limb into the socket in $his implants until the lock engages.<<if $activeSlave.PLimb == 2>> $He jumps a bit as limbs connect to $his nerves.<</if>> When you are done, $pronoun sits up and + Attaching $his limbs is a simple procedure, you simply push a connector on each limb into the socket in $his implants until the lock engages.<<if $activeSlave.PLimb == 2>> $He jumps a bit as limbs connect to $his nerves.<</if>> When you are done, $he sits up and <<if $activeSlave.amp == -2>>experimentally engages the vibe function in $his fingers. <<elseif $activeSlave.amp == -3>>runs a hand over the smooth skin of $his new legs. <<elseif $activeSlave.amp == -4>>engages and disengages the blade in $his forearm. diff --git a/src/js/slaveSummaryWidgets.tw b/src/js/slaveSummaryWidgets.tw index 32c6a9c1fbb66a3c86b0eae4e14707159f2c5f3d..af2bb48c758c373609872370fd9774c5a8757a5a 100644 --- a/src/js/slaveSummaryWidgets.tw +++ b/src/js/slaveSummaryWidgets.tw @@ -1696,6 +1696,18 @@ window.SlaveSummaryUncached = (function(){ function long_nationality(slave) { r += `<span class="tan">`; switch (slave.nationality) { + case "a Cook Islander": + r += `Cook Islander.`; + break; + case "a Liechtensteiner": + r += `Liechtensteiner.`; + break; + case "a New Zealander": + r += `New Zealander.`; + break; + case "a Solomon Islander": + r += `Solomon Islander.`; + break; case "Zimbabwean": if (slave.race === "white") { r += `Rhodesian.`; diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 220c9c9d2b4881d829054572efeb584ad31b1fae..da4ea778ba76b1703332fe98c7ac18b527a14e94 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -857,6 +857,7 @@ window.lispReplace = function(text) text = text.replace("Zz", "Th"); text = text.replace("ZZ", "TH"); text = text.replace("Z", "Th"); + text = text.replace("C", "Th"); text = text.replace("Ci", "Thi"); text = text.replace("Ce", "The"); text = text.replace("Cy", "Thy"); @@ -893,6 +894,7 @@ window.lispReplace = function(text) text = text.replace("xU", "thU"); text = text.replace("xY", "thY"); text = text.replace("x", "ekth"); + text = text.replace("c", "th"); text = text.replace("ci", "thi"); text = text.replace("ce", "the"); text = text.replace("cy", "thy"); diff --git a/src/npc/agent/agentWorkaround.tw b/src/npc/agent/agentWorkaround.tw index 86bf766107decfd37f42e521d275d3f204432131..518060f18de5f71ee9dba452761310cbbde6eee7 100644 --- a/src/npc/agent/agentWorkaround.tw +++ b/src/npc/agent/agentWorkaround.tw @@ -63,4 +63,3 @@ You order $slaves[$i].slaveName to come into your office for orders. The devoted It will mean that she'll see much less of you, something such a devoted slave may struggle with. Oppressed by the confusion and strength of her feelings, she begins to cry. <br><br>"Thank you, <<Master $slaves[$i]>>," she gasps out. "I'll do my be<<s>>t." - diff --git a/src/npc/descriptions/fAnus.tw b/src/npc/descriptions/fAnus.tw index 9a51bc6bb1a8c29568d55167819b6d6e933a4868..73cd2f1243a20cb08495afc5194abbf74c721399 100644 --- a/src/npc/descriptions/fAnus.tw +++ b/src/npc/descriptions/fAnus.tw @@ -54,7 +54,7 @@ $His anus is invitingly bleached, <<if ($activeSlave.anus == 0)>> <<if ($activeSlave.devotion > 20)>> - $He accepts your orders without comment and presents $his virgin anus for defloration. You<<if ($PC.dick == 0)>> don a strap-on and<</if>> gently sodomize $his. You gently ease into $his butthole and slowly accelerate your thrusting into $his ass. Since $he is already well broken, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His tight little ass has been broken in.@@ $He looks forward to having $his asshole fucked by you again. + $He accepts your orders without comment and presents $his virgin anus for defloration. You<<if ($PC.dick == 0)>> don a strap-on and<</if>> gently sodomize $him. You gently ease into $his butthole and slowly accelerate your thrusting into $his ass. Since $he is already well broken, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His tight little ass has been broken in.@@ $He looks forward to having $his asshole fucked by you again. <<set $activeSlave.devotion += 4>> <<elseif ($activeSlave.devotion >= -20)>> $He is clearly unhappy at the idea of taking a dick up $his butt. $He obeys orders anyway, and lies there wincing and moaning as you<<if ($PC.dick == 0)>> don a strap-on and<</if>> fuck $his ass. You gently ease into $his butthole and slowly accelerate your thrusting into $his ass. However $he still squeals in pain as you continue pounding. @@.lime;$His tight little ass has been broken in,@@ and $he @@.gold;fears further anal pain.@@ diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw index 444f28e827959a39eca73b3bc54532bb741be63e..7e4be291a2d7dbf678ce45c5fbe3aef149df8fb8 100644 --- a/src/npc/descriptions/fBoobs.tw +++ b/src/npc/descriptions/fBoobs.tw @@ -27,7 +27,7 @@ tits. <<if ($activeSlave.boobsTat == "tribal patterns")>> The tattoos on $his breasts certainly draw attention to $his nipples. <<elseif ($activeSlave.boobsTat == "scenes")>> - The tattoos on $his abdomen nicely illustrate what you mean to do with $his: a titfuck. + The tattoos on $his abdomen nicely illustrate what you mean to do with $him: a titfuck. <<elseif ($activeSlave.boobsTat == "degradation")>> The tattoos on $his chest are asking you to use those breasts, after all. <</if>> @@ -79,9 +79,9 @@ tits. <<else>> You lay $him down on the couch on $his back, lather oil onto $his breasts and gingerly straddle $his face; your needy cunt over $his mouth. <<if ($activeSlave.boobs >= 20000)>> - $His breasts are so colossal you can barely maintain this position, but they are massively fun to play with as $he eats you out. You massage your pregnancy with $his acres of breast flesh, teasing your own stretched skin with $hers. You can visibly see the vibrations running through $his tits as you quiver from the mouth working your pussy. Thoroughly soaking $his, you fall into $his endless cleavage for a short rest. + $His breasts are so colossal you can barely maintain this position, but they are massively fun to play with as $he eats you out. You massage your pregnancy with $his acres of breast flesh, teasing your own stretched skin with $hers. You can visibly see the vibrations running through $his tits as you quiver from the mouth working your pussy. Thoroughly soaking $him, you fall into $his endless cleavage for a short rest. <<elseif ($activeSlave.boobs >= 10000)>> - $His breasts are so massive you can barely maintain this position, but they are fun to play with as $he eats you out. You massage the edges of your pregnancy with $his breast flesh, teasing your own stretched skin with $hers. You can visibly see the vibrations running through $his tits as you quiver from the mouth working your pussy. Thoroughly soaking $his, you fall into $his immense cleavage for a short rest. + $His breasts are so massive you can barely maintain this position, but they are fun to play with as $he eats you out. You massage the edges of your pregnancy with $his breast flesh, teasing your own stretched skin with $hers. You can visibly see the vibrations running through $his tits as you quiver from the mouth working your pussy. Thoroughly soaking $him, you fall into $his immense cleavage for a short rest. <<elseif ($activeSlave.boobs >= 5000)>> $His breasts are so monstrous they make a fabulous rest for your pregnancy as $he eats you out. You tease $his breasts using your baby bump, rubbing it against them and vice versa. You can visibly see the vibrations running through $his tits as you quiver from the mouth working your pussy. Thoroughly soaking $him, you dismount and lean against $his monster breasts for a quick rest. <<elseif ($activeSlave.boobs >= 1000)>> @@ -205,7 +205,7 @@ tits. <<case "serve in the club">> $He goes to beautify $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>> so it can again serve as an ornament to $clubName. <<case "work as a servant">> - $He rushes to wash $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>>, afraid $he's fallen behind on the chores while you used $his. + $He rushes to wash $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>>, afraid $he's fallen behind on the chores while you used $him. <<case "rest">> $He stumbles off to wash $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>> before crawling back into bed. <<case "train slaves">> @@ -217,7 +217,7 @@ tits. <<case "be a subordinate slave">> $He moves off to wash $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>>, though it's only a matter of time before another slave decides to play with $his tits. <<case "be a servant">> - $He hurries off to wash $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>>, since $his chores didn't perform themselves while you titfucked $his. + $He hurries off to wash $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>>, since $his chores didn't perform themselves while you titfucked $him. <<case "be your Head Girl">> $He hurries off to wash $his <<if $activeSlave.boobs > 1500>>acre of cleavage<<elseif $activeSlave.boobs > 500>>generous cleavage<<else>>chest<</if>>, worried that $his charges got up to trouble while $he had $his breasts around your cock. <<case "guard you">> diff --git a/src/npc/descriptions/fButt.tw b/src/npc/descriptions/fButt.tw index 40462a84398905463f686dce0db44367637e0f64..82fd5f9e2127760a5e96495ce04b28aed83ed73a 100644 --- a/src/npc/descriptions/fButt.tw +++ b/src/npc/descriptions/fButt.tw @@ -75,20 +75,20 @@ $His anus is invitingly bleached, <<= BothVCheck()>> <<elseif ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)>> <<if ($activeSlave.devotion > 20)>> - $He accepts your orders without comment and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching with some small trepidation as you don a strap-on<</if>>. You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $his. Before long, $he's moaning loudly as you pound away. Since $he is already well broken, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in.@@ + $He accepts your orders without comment and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching with some small trepidation as you don a strap-on<</if>>. You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning loudly as you pound away. Since $he is already well broken, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in.@@ <<set $activeSlave.devotion += 10>> <<elseif ($activeSlave.devotion >= -20)>> - $He is clearly unhappy at losing $his pearl of great price to you; this probably isn't what $he imagined $his first real sex would be like.<<if ($PC.dick == 0)>>$His lower lip quivers with trepidation as $he watches you don a strap-on and maneuver to fuck $his virgin hole.<</if>> You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $his. Before long, $he's moaning as you pound away. Nevertheless, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he is @@.gold;fearful@@ that sex will continue to be painful. + $He is clearly unhappy at losing $his pearl of great price to you; this probably isn't what $he imagined $his first real sex would be like.<<if ($PC.dick == 0)>>$His lower lip quivers with trepidation as $he watches you don a strap-on and maneuver to fuck $his virgin hole.<</if>> You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning as you pound away. Nevertheless, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he is @@.gold;fearful@@ that sex will continue to be painful. <<set $activeSlave.devotion += 4>> <<else>> - As you anticipated, $he refuses to give you $his virginity. And as you expected, $he is unable to resist you. $He cries as <<if ($PC.dick == 0)>>your strap-on<<else>>your cock<</if>> opens $his fresh, tight hole. You force your way into $his pussy and continue thrusting into $his. $He sobs and cries with horror as you pound away. The rape @@.mediumorchid;decreases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he @@.gold;fears further abuse.@@ + As you anticipated, $he refuses to give you $his virginity. And as you expected, $he is unable to resist you. $He cries as <<if ($PC.dick == 0)>>your strap-on<<else>>your cock<</if>> opens $his fresh, tight hole. You force your way into $his pussy and continue thrusting into $him. $He sobs and cries with horror as you pound away. The rape @@.mediumorchid;decreases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he @@.gold;fears further abuse.@@ <<set $activeSlave.devotion -= 5>> <</if>> <<set $activeSlave.vagina++>> <<= VaginalVCheck()>> <<elseif ($activeSlave.anus == 0)>> <<if ($activeSlave.devotion > 20)>> - $He accepts your orders without comment and presents $his virgin anus for defloration. You<<if ($PC.dick == 0)>> don a strap-on and<</if>> gently sodomize $his. You gently ease yourself into $his butthole and gradually speed up your thrusts while $he slowly learns to move $his hips along with you. Since $he is already well broken, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His tight little ass has been broken in.@@ + $He accepts your orders without comment and presents $his virgin anus for defloration. You<<if ($PC.dick == 0)>> don a strap-on and<</if>> gently sodomize $him. You gently ease yourself into $his butthole and gradually speed up your thrusts while $he slowly learns to move $his hips along with you. Since $he is already well broken, this new connection with $his <<Master>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His tight little ass has been broken in.@@ <<set $activeSlave.devotion += 4>> <<elseif ($activeSlave.devotion >= -20)>> $He is clearly unhappy at the idea of taking a dick up $his butt. $He obeys orders anyway, and lies there wincing and moaning as you<<if ($PC.dick == 0)>> don a strap-on and<</if>> fuck $his ass. @@.lime;$His tight little ass has been broken in,@@ and $he @@.gold;fears further anal pain.@@ @@ -102,7 +102,7 @@ $His anus is invitingly bleached, <<if ($PC.dick == 0)>>You don a cruelly large strap-on, and you do it so $he can see it. <</if>>$He tries to refuse you, so you throw $his across the back of the couch next to your desk with $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass in the air. You finger $his anus <<if ($activeSlave.vagina != -1)>>while fucking $his pussy<<elseif ($activeSlave.amp != 1)>>while frotting $his thighs<</if>> for a bit and then switch to $his now-ready anus. $He sobs as you penetrate $his rectum. <<if ($activeSlave.dick != 0) && canAchieveErection($activeSlave)>> <<if $activeSlave.prostate == 0>> - $He lacks a prostate, denying $his any real pleasure. $His dick stays flaccid as you rape $his. + $He lacks a prostate, denying $his any real pleasure. $His dick stays flaccid as you rape $him. <<elseif ($activeSlave.dickAccessory == "chastity")>> Despite $his unwillingness to be sodomized, the prostate stimulation starts to give $his an erection, which $his dick chastity makes horribly uncomfortable. $He bucks with the pain, $his asshole spasming delightfully. <<else>> @@ -111,7 +111,7 @@ $His anus is invitingly bleached, <<elseif ($activeSlave.dickAccessory == "chastity")>> $His dick chastity keeps $his bitch cock hidden away while you use $his anus like a pussy. <<elseif ($activeSlave.dick !== 0)>> - $His flaccid dick is ground into the back of the couch as you rape $his. + $His flaccid dick is ground into the back of the couch as you rape $him. <</if>> <<= BothVCheck()>> <<elseif $activeSlave.devotion <= 50>> @@ -161,11 +161,11 @@ $His anus is invitingly bleached, <</if>> <<if ($activeSlave.bellyPreg >= 1500)>> - The poor $girl's pregnant belly makes taking a rough fuck in both $his holes uncomfortable for $his. + The poor $girl's pregnant belly makes taking a rough fuck in both $his holes uncomfortable for $him. <<elseif ($activeSlave.bellyImplant >= 1500)>> - The poor $girl's implant filled belly makes taking a rough fuck in both $his holes uncomfortable for $his. + The poor $girl's implant filled belly makes taking a rough fuck in both $his holes uncomfortable for $him. <<elseif ($activeSlave.bellyFluid >= 1500)>> - The poor $girl's sloshing belly makes taking a rough fuck in both $his holes uncomfortable for $his, though the lewd jiggling the pounding sends through it is quite a sight. + The poor $girl's sloshing belly makes taking a rough fuck in both $his holes uncomfortable for $him, though the lewd jiggling the pounding sends through it is quite a sight. <</if>> <<if ($activeSlave.anusTat == "scenes") && ($activeSlave.anus == 1)>> @@ -197,7 +197,7 @@ $His anus is invitingly bleached, <<elseif ($activeSlave.anus == 2)>> Cum drips out of $his loosened anus. <<elseif ($activeSlave.anus == 1)>> - $His still-tight ass keeps your load inside $his. + $His still-tight ass keeps your load inside $him. <</if>> <<if canWalk($activeSlave)>> @@ -217,9 +217,9 @@ $His anus is invitingly bleached, <<case "be a subordinate slave">> $He moves to the bathroom to clean $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>holes<<elseif canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>fuckhole<<else>>face<</if>>, though it's only a matter of time before another slave decides to play with $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>pussy or asshole<<elseif canDoVaginal($activeSlave)>>pussy<<elseif canDoAnal($activeSlave)>>asshole<<else>>face<</if>>. <<case "be a servant">> - $He hurries to the bathroom to clean $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>holes<<elseif canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>fuckhole<<else>>face<</if>>, since $his chores didn't perform themselves while you used $his. + $He hurries to the bathroom to clean $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>holes<<elseif canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>fuckhole<<else>>face<</if>>, since $his chores didn't perform themselves while you used $him. <<case "be your Head Girl">> - $He hurries to the bathroom to clean $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>holes<<elseif canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>fuckhole<<else>>face<</if>>, worried that $his charges got up to trouble while you had your cock in $his. + $He hurries to the bathroom to clean $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>holes<<elseif canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>fuckhole<<else>>face<</if>>, worried that $his charges got up to trouble while you had your cock in $him. <<case "guard you">> $He hurries off to wash $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>holes<<elseif canDoVaginal($activeSlave) || canDoAnal($activeSlave)>>fuckhole<<else>>face<</if>> so you'll be unguarded for as little time as possible. <<case "work in the brothel">> diff --git a/src/npc/descriptions/fLips.tw b/src/npc/descriptions/fLips.tw index 4e86b3fcc94d5388c91fee3977348bc1a96428da..1ea7df48126a0f60993dce388b4c78e3e7012d83 100644 --- a/src/npc/descriptions/fLips.tw +++ b/src/npc/descriptions/fLips.tw @@ -115,7 +115,7 @@ You tell $activeSlave.slaveName to $He has absolutely no control over how hard you grind your cunt against $his face, so you are careful not to suffocate $him. Even so, you take $him to the edge, enjoying the sight of $his absurd rear jiggling as $he struggles to breathe. Eventually you climax, giving $him a good taste of your femcum. <</if>> <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.dick != 0) && ($PC.dick != 0)>> - $He comes over eagerly, with hunger <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He gets to $his knees, hurriedly takes you into $his <<if $seeRace == 1>>$activeSlave.race <</if>>mouth, and gives the blowjob $his all. As a cumslut $he's almost desperate to get your cum into $his mouth and <<if ($activeSlave.dickAccessory == "chastity")>>(since $his cock is off limits) frantically rubs $his nipples and asspussy<<elseif canAchieveErection($activeSlave)>>jacks $himself off<<else>>rubs $his sadly limp member<</if>> in anticipation.<<if $PC.vagina == 1>> You have more than one variety of deliciousness for $his, and $he's careful not to neglect your wet cunt.<</if>> When you finish, $he sits back with an ecstatic look on $his face and lets your cum rest in $his mouth as $he climaxes into $his $activeSlave.skin hand. $He pours $his own cum from $his hand into $his mouth so it can mingle with yours. + $He comes over eagerly, with hunger <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He gets to $his knees, hurriedly takes you into $his <<if $seeRace == 1>>$activeSlave.race <</if>>mouth, and gives the blowjob $his all. As a cumslut $he's almost desperate to get your cum into $his mouth and <<if ($activeSlave.dickAccessory == "chastity")>>(since $his cock is off limits) frantically rubs $his nipples and asspussy<<elseif canAchieveErection($activeSlave)>>jacks $himself off<<else>>rubs $his sadly limp member<</if>> in anticipation.<<if $PC.vagina == 1>> You have more than one variety of deliciousness for $him, and $he's careful not to neglect your wet cunt.<</if>> When you finish, $he sits back with an ecstatic look on $his face and lets your cum rest in $his mouth as $he climaxes into $his $activeSlave.skin hand. $He pours $his own cum from $his hand into $his mouth so it can mingle with yours. <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($PC.dick != 0)>> $He comes over eagerly, with hunger <<if canSee($activeSlave)>>in $his eyes<<else>>on $his face<</if>>. $He gets to $his knees, hurriedly takes you into $his <<if $seeRace == 1>>$activeSlave.race <</if>>mouth, and gives the blowjob $his all. As a cumslut $he's almost desperate to get your cum into $his mouth and rubs $himself in anticipation.<<if $PC.vagina == 1>> You have more than one variety of deliciousness for $him, and $he's careful not to neglect your wet cunt.<</if>> When you finish, $he sits back with an ecstatic look on $his face and lets your cum rest in $his mouth as $he climaxes. <<elseif $activeSlave.devotion < -20>> diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw index cff5b4d7004a459245a03cb9ad772a5656272044..c3ce6fb53e25bf577d98faa04811046245a07001 100644 --- a/src/npc/descriptions/fVagina.tw +++ b/src/npc/descriptions/fVagina.tw @@ -22,7 +22,7 @@ You call $him over so you can <<if ($activeSlave.vaginaTat == "tribal patterns")>> The tattoos on $his abdomen certainly drawn attention there. <<elseif ($activeSlave.vaginaTat == "scenes")>> - The tattoos on $his abdomen nicely illustrate what you mean to do to $his. + The tattoos on $his abdomen nicely illustrate what you mean to do to $him. <<elseif ($activeSlave.vaginaTat == "degradation")>> The tattoos on $his abdomen ask you to, after all. <</if>> @@ -118,9 +118,9 @@ You call $him over so you can <<elseif $activeSlave.belly >= 600000>> A position that will smother you with $his immense stomach. <<elseif $activeSlave.bellyPreg >= 300000>> - A position that will allow you to tease $his massive pregnancy as you fuck $his. + A position that will allow you to tease $his massive pregnancy as you fuck $him. <<elseif $activeSlave.belly >= 300000>> - A position that will allow you to tease $his massive belly as you fuck $his. + A position that will allow you to tease $his massive belly as you fuck $him. <<elseif $activeSlave.belly+$PC.belly >= 20000 && $activeSlave.belly >= 1500 && $PC.belly >= 1500>> A position that will be awkward with the combined size of your rounded middles. <</if>> @@ -167,7 +167,7 @@ You call $him over so you can <<if ($activeSlave.fetish == "mindbroken")>> $He accepts your orders dumbly and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching without real interest as you don a strap-on<</if>>. Since $he is mindbroken, @@.lime;losing $his virginity@@ has no impact on any part of $him other than $his vagina. <<elseif ($activeSlave.devotion > 20)>> - $He accepts your orders without comment and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching with some small trepidation as you don a strap-on<</if>>. You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $his. Before long, $he's moaning loudly as you pound away. Since $he is already well broken, this new connection with $him <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in.@@ $He looks forward to having $his pussy fucked by you again. + $He accepts your orders without comment and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching with some small trepidation as you don a strap-on<</if>>. You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning loudly as you pound away. Since $he is already well broken, this new connection with $him <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in.@@ $He looks forward to having $his pussy fucked by you again. <<set $activeSlave.devotion += 10>> <<elseif ($activeSlave.devotion >= -20)>> $He is clearly unhappy at losing $his pearl of great price to you; this probably isn't what $he imagined $his first real sex would be like.<<if ($PC.dick == 0)>>$His lower lip quivers with trepidation as $he watches you don a strap-on and maneuver to fuck $his virgin hole.<</if>> You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning as you pound away. Nevertheless, this new connection with $him <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he is @@.gold;fearful@@ that sex will continue to be painful. @@ -203,7 +203,7 @@ You call $him over so you can <</if>> You finish inside $him and leave your toy for one of your other slaves to clean and maintain. <<else>> - on the couch and straddle $his hips, bringing your already-wet pussy <<if _fSpeed > 75>>hard against $his. You grind powerfully<<elseif _fSpeed > 50>>firmly against $him. You grind vigorously<<elseif _fSpeed > 25>>against $him. You grind steadily<<else>>softly against $him. You grind gently<</if>> against $his helpless body, using $him as a living sybian until $his warmth and movement brings you to orgasm. + on the couch and straddle $his hips, bringing your already-wet pussy <<if _fSpeed > 75>>hard against $him. You grind powerfully<<elseif _fSpeed > 50>>firmly against $him. You grind vigorously<<elseif _fSpeed > 25>>against $him. You grind steadily<<else>>softly against $him. You grind gently<</if>> against $his helpless body, using $him as a living sybian until $his warmth and movement brings you to orgasm. <</if>> <<elseif !canWalk($activeSlave) && tooBigBelly($activeSlave)>> You tell $him to get situated on the couch, face down. This position pins $him down by the massive weight of $his belly, pushing $his face in amongst the cushions and keeping $his crotch in the ideal position to penetrate. $His belly serves as an anchor, allowing you to take $him doggy style without any real contribution from $him. The position muffles $his reaction entirely, other than the rhythmic jiggling of $his bulging belly as it sticks out from either side of $his torso as you <<if _fSpeed > 75>>pound $him hard and fast<<elseif _fSpeed > 50>>pound $him firmly and vigorously<<elseif _fSpeed > 25>>fuck $him steadily<<else>>fuck $him slowly and tenderly<</if>>. @@ -305,7 +305,7 @@ You call $him over so you can As a submissive $he spares no attention for $his own orgasm, so $his rock hard erection swings untended. <</if>> <<elseif ($activeSlave.dickAccessory == "chastity") || ($activeSlave.dickAccessory == "combined chastity")>> - $His cock is forgotten inside its chastity cage as you take what you want from $his. + $His cock is forgotten inside its chastity cage as you take what you want from $him. <<elseif ($activeSlave.dick != 0)>> As a submissive $he spares no attention for $his own orgasm, so $his flaccid cock swings untended. <</if>> @@ -420,9 +420,9 @@ You call $him over so you can <</if>> <<elseif (_fPosition <= 60)>> /* doggy-style */ <<if $activeSlave.bellyPreg >= 300000>> - $He arches $his back as you continue to pound $him <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>>, $his occupants enjoying the attention. As you rest your weight on $his, you run your hands along $his distended sides; + $He arches $his back as you continue to pound $him <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>>, $his occupants enjoying the attention. As you rest your weight on $him, you run your hands along $his distended sides; <<elseif $activeSlave.belly >= 300000>> - $He arches $his back as you continue to pound $him <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>>, $his belly jiggling just slightly with each thrust. As you rest your weight on $his, you run your hands along $his distended sides; + $He arches $his back as you continue to pound $him <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>>, $his belly jiggling just slightly with each thrust. As you rest your weight on $him, you run your hands along $his distended sides; <<else>> $He arches $his back as you continue to pound $him <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>>; <</if>> @@ -458,7 +458,7 @@ You call $him over so you can <<elseif ($activeSlave.dick != 0)>> When you orgasm together, $his limp, neglected cock dribbles weakly while your cock fills $his with cum. <<elseif ($activeSlave.clit > 2)>> - As you fuck $his, $he plays with $his huge clit. It's so large it almost looks like $he's jacking off a cock. + As you fuck $him, $he plays with $his huge clit. It's so large it almost looks like $he's jacking off a cock. <</if>> <<if $PC.vagina == 1>> You got so wet fucking $him that when you climax, you stand up; $he knows what that means, and hurries to eat you out. The oral attention brings you to a quick aftershock orgasm. diff --git a/src/npc/fKiss.tw b/src/npc/fKiss.tw index 6b51cec4ef8ee0a72a8dfc6c0774afd79c8a7989..513c5ca9cf4ccca0b9b3acc332fdfe6de30945d2 100644 --- a/src/npc/fKiss.tw +++ b/src/npc/fKiss.tw @@ -105,7 +105,7 @@ You tell $activeSlave.slaveName to upon $his face. $He finds the intense attention from $his <<Master>> worrying, and turns away after a moment, $his lower lip trembling with nervousness. <</if>> <<elseif ($activeSlave.trust < -20)>> - The command terrifies $his, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take a moment to gaze deeply + The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take a moment to gaze deeply <<if canSee($activeSlave)>> into $his $activeSlave.eyeColor eyes. After a mere instant of locked gazes, $he looks down fearfully, and begins to shake with terror, tears leaking silently down $his cheeks. <<else>> diff --git a/src/player/actions/fCaress.tw b/src/player/actions/fCaress.tw index a3c8c37c26e66adf34c3e6898b165d3dc7c5db02..12ac677eb7e1d05a1368fe9ab4ec0a0410523504 100644 --- a/src/player/actions/fCaress.tw +++ b/src/player/actions/fCaress.tw @@ -29,7 +29,7 @@ You tell $activeSlave.slaveName to <<if $activeSlave.fetish == "mindbroken">> $He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He doesn't react. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - $He happily complies, eager to be close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $his. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and <<if canSee($activeSlave)>>looks down with a smile, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><<else>>looks down with a smile<</if>>. + $He happily complies, eager to be close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and <<if canSee($activeSlave)>>looks down with a smile, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><<else>>looks down with a smile<</if>>. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> $He complies. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's forcibly married to disturbing, and <<if canSee($activeSlave)>> breaks eye contact<<else>> turns $his face away<</if>>. <<elseif $activeSlave.devotion < -20>> @@ -69,21 +69,21 @@ Then, you gently tilt $his <<if $activeSlave.face > 95>>overwhelmingly stunning< <</if>> with your fingertips. You use your fingers and thumbs to slowly slide along $his mouth, $his chin, $his cheeks then around $his face. You use a deft touch to thoroughly explore the shape of $his <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face > 10>>nice<<elseif $activeSlave.face >= -10>>cute<<elseif $activeSlave.face >= -40>>fair<<else>>prominent<</if>> cheekbones. Grazing $his temple and brushing $his forehead simultaneously, you smoothly motion along $his eyelids and nose and you tenderly stroke $his face with both hands as you take $his head lightly and trace around it, gently massaging as you go. You work your way down, slowly and gradually, along $his neck with one hand, then the other, briefly pausing before continuing your path down to $his shoulders and<<if ($activeSlave.fetish != "mindbroken")>> $he starts to gasp as<<else>> starts to shudder as<</if>> you slide your hands down $his side, across $his back and along $his belly taking every moment to savour the contours of $his body before going back up again to $his face. <<if ($activeSlave.fetish == "mindbroken")>> - $His posture doesn't change. $He initially only reacts slightly to your physical touch but then stops reacting completely. When you stop, $his $activeSlave.eyeColor eyes track the movements of your hands briefly but then stare blankly ahead of $his, awaiting further use of $his body. + $His posture doesn't change. $He initially only reacts slightly to your physical touch but then stops reacting completely. When you stop, $his $activeSlave.eyeColor eyes track the movements of your hands briefly but then stare blankly ahead of $him, awaiting further use of $his body. <<elseif ($activeSlave.relationship == -2)>> - $His eyes gradually close and $he slowly leans $his head back, relaxing as $he feels your caress. $He gently gasps as $he feels your warm <<if $PC.title == 1>>manly<<else>>feminine<</if>> hand. When you finally stop gently caressing $his, $his eyes remain closed and $his mouth still in a rapturous shape for a moment before $he slowly opens $his eyes and smiles at you, $he has an eager look on $his face.<<if ($activeSlave.amp != 1)>> A hand reaches dumbly up to $his face mimicking your last movements.<</if>> <<if ($activeSlave.accent >= 3)>>$He does $his best to communicate love with $his $activeSlave.eyeColor eyes, since $he does not speak $language well enough to express $himself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>$He does $his best to communicate love with $his $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>$He signs that $he loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," $he lisps dreamily.<<else>>"I love you, <<Master>>," $he says dreamily.<</if>> $He looks as though $he wants much more than your mere caress. + $His eyes gradually close and $he slowly leans $his head back, relaxing as $he feels your caress. $He gently gasps as $he feels your warm <<if $PC.title == 1>>manly<<else>>feminine<</if>> hand. When you finally stop gently caressing $him, $his eyes remain closed and $his mouth still in a rapturous shape for a moment before $he slowly opens $his eyes and smiles at you, $he has an eager look on $his face.<<if ($activeSlave.amp != 1)>> A hand reaches dumbly up to $his face mimicking your last movements.<</if>> <<if ($activeSlave.accent >= 3)>>$He does $his best to communicate love with $his $activeSlave.eyeColor eyes, since $he does not speak $language well enough to express $himself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>$He does $his best to communicate love with $his $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>$He signs that $he loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," $he lisps dreamily.<<else>>"I love you, <<Master>>," $he says dreamily.<</if>> $He looks as though $he wants much more than your mere caress. <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> As you start to touch $his <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face > 10>>lovely<<elseif $activeSlave.face >= -10>>pretty<<elseif $activeSlave.face >= -40>>homely<<else>>ugly<</if>> face, $he smiles at you and takes your hand in $hers, following its movements. $He tries hard to stop $himself from losing $himself in your masterful hands. $He takes $his tendency towards sexual dominance right up to the edge of insubordination, when $he starts to caress your face in turn. When you finally stop, $his eyes are closed and $he's smiling. <<if ($activeSlave.accent >= 3)>>$He does $his best to communicate excitement with $his $activeSlave.eyeColor eyes, since $he does not speak $language well enough to express $himself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>$He does $his best to communicate excitement with $his $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>$He signs that $he liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," $he lisps cheerfully.<<else>>"That was fun, <<Master>>," $he says cheerfully.<</if>> $He looks at you, $his eyes almost begging you to give $his more than your mere caress. <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> - $He stiffens at your touch but slowly relaxes to your fingers on $his face. As you move your fingers along $his lips, $he reacts almost as though $he's receiving oral. $He starts to gently suck your fingers, moaning into your hand and pressing $himself lewdly against your <<if $PC.boobs == 1>>prominent breasts<<else>>manly chest<</if>>.<<if ($activeSlave.teeth == "pointy")>> $He's very careful to avoid spearing your tongue with $his sharp teeth.<</if>> $He achieves a weak orgasm before you stop caressing $his. <<if ($activeSlave.accent >= 3)>>$He does $his best to communicate undiminished lust with $his $activeSlave.eyeColor eyes, since $he does not speak $language well enough to express $himself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>$He does $his best to communicate undiminished lust with $his $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>$He signs that $he liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," $he lisps lustfully.<<else>>"That was fun, <<Master>>," $he says lustfully.<</if>> $He looks at you as if $he wants more than your hands touching $him. + $He stiffens at your touch but slowly relaxes to your fingers on $his face. As you move your fingers along $his lips, $he reacts almost as though $he's receiving oral. $He starts to gently suck your fingers, moaning into your hand and pressing $himself lewdly against your <<if $PC.boobs == 1>>prominent breasts<<else>>manly chest<</if>>.<<if ($activeSlave.teeth == "pointy")>> $He's very careful to avoid spearing your tongue with $his sharp teeth.<</if>> $He achieves a weak orgasm before you stop caressing $him. <<if ($activeSlave.accent >= 3)>>$He does $his best to communicate undiminished lust with $his $activeSlave.eyeColor eyes, since $he does not speak $language well enough to express $himself.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>$He does $his best to communicate undiminished lust with $his $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>$He signs that $he liked that.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"That wath fun, <<Master>>," $he lisps lustfully.<<else>>"That was fun, <<Master>>," $he says lustfully.<</if>> $He looks at you as if $he wants more than your hands touching $him. <<elseif ($activeSlave.devotion > 50)>> $He accepts your touch with devotion, leaning $his head back at your gentle caress along $his face. $He leans $his body forward, pressing $himself against you, and you feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. $He gradually closes $his eyes and when you finally stop, <<if ($activeSlave.amp != 1)>>$he runs $his hand delightfully across $his face where you last touched $his<</if>>, a euphoric look on $his $activeSlave.skin face. <<if ($activeSlave.accent >= 3)>>$He does $his best to communicate devotion with $his $activeSlave.eyeColor eyes, since $he's not confident in $his ability to express it in $language.<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>$He does $his best to communicate devotion with $his $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>$He signs that $he loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," $he lisps jubilantly.<<else>>"I love you, <<Master>>," $he says jubilantly.<</if>> $He looks at you longingly, almost as if $he's bursting to say that $he wants more than your mere caress. <<elseif ($activeSlave.devotion > 20)>> - $He accepts your touch willingly. As you are so close to $his, you sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch across $his face. When you finally move your hand away, $his $activeSlave.eyeColor eyes gaze into yours searchingly, looking for answers that are not there. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>$His eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>$He signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>$He asks hesitantly, "I-ith that it, <<Master>>?"<<else>>$He asks hesitantly, "I-is that it, <<Master>>?"<</if>> + $He accepts your touch willingly. As you are so close to $him, you sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch across $his face. When you finally move your hand away, $his $activeSlave.eyeColor eyes gaze into yours searchingly, looking for answers that are not there. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>$His eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>$He signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>$He asks hesitantly, "I-ith that it, <<Master>>?"<<else>>$He asks hesitantly, "I-is that it, <<Master>>?"<</if>> <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust < -20)>> $He shakes at your touch fearfully. As you move your hand along $his unresisting face, $his eagerness to avoid punishment leads $his to stiffen, $his nervousness is made apparent. You continue stroking $his cheek, enjoying $his fear, and the physical intimacy slowly does its work. $He starts to relax, $his resistance easing and $his eyes start to close. When finally move your hand away, $he looks at you for a long moment, $his eyes darting up at you, before visibly catching $himself with a reminder that $he's a slave and you're $his owner. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>$His eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>$He signs hesitantly, asking if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>$He asks hesitantly, "I-ith that it, <<Master>>?"<<else>>$He asks hesitantly, "I-is that it, <<Master>>?"<</if>> <<elseif ($activeSlave.trust < -50)>> - $He is nearly frozen with fear, and does not resist as you start to caress $his face. In fact, $he barely reacts at all. $He stares at you as you move your fingers across $his stiff face, but it's like touching a statue. $He is so filled with terror that $he remains stiff even as it becomes clear to $his you're not going to hurt $his. When you bore of touching the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>$girl<</if>> and move your hand away, $he stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>$His eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>$He signs spastically, begging fearfully to know if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>$He asks nervously, "I-ith that it, <<Master>>?"<<else>>$He asks nervously, "I-is that it, <<Master>>?"<</if>> Then $he cringes. + $He is nearly frozen with fear, and does not resist as you start to caress $his face. In fact, $he barely reacts at all. $He stares at you as you move your fingers across $his stiff face, but it's like touching a statue. $He is so filled with terror that $he remains stiff even as it becomes clear to $his you're not going to hurt $him. When you bore of touching the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>$girl<</if>> and move your hand away, $he stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>$His eyes beg for an answer: is that it?<<elseif !canTalk($activeSlave)>>$He signs spastically, begging fearfully to know if that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>$He asks nervously, "I-ith that it, <<Master>>?"<<else>>$He asks nervously, "I-is that it, <<Master>>?"<</if>> Then $he cringes. <<else>> $He reflexively turns away from you, but you catch $his head with one hand and slowly but gently move your other hand along $his face. Spluttering, $he leans backwards, but you tip forward with $him and pin $him against your desk, not stopping your gentle touch on $his head. $He tries to wriggle out of your grasp desperately, but $his struggles slowly subside as $he realizes that you're not taking this any farther. When you bore of it and move your hand away, $he stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>>$His eyes demand an answer: is that it?<<elseif !canTalk($activeSlave)>>$He signs irritably, asking whether that's it.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>$He splutters, "Ith that it, <<Master>>!?"<<else>>$He splutters, "Is that it, <<Master>>!?"<</if>> <</if>> diff --git a/src/player/actions/fEmbrace.tw b/src/player/actions/fEmbrace.tw index 7f12b33a1863e7a2f64aa96e8f7b521838139a72..c803b58e4f3ca04674b81959c5adc07cab814924 100644 --- a/src/player/actions/fEmbrace.tw +++ b/src/player/actions/fEmbrace.tw @@ -15,7 +15,7 @@ You tell $activeSlave.slaveName to <<if $activeSlave.fetish == "mindbroken">> $He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He shows no reaction. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - $He lovingly complies, hurrying to come close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $his. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and <<if canSee($activeSlave)>>looks down with a smile, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><<else>>looks down with a smile<</if>>. + $He lovingly complies, hurrying to come close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and <<if canSee($activeSlave)>>looks down with a smile, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><<else>>looks down with a smile<</if>>. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> $He complies. Once $he's close, you take your reluctant wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's forcibly married to disturbing, and <<if canSee($activeSlave)>> breaks eye contact<<else>> turns $his face away<</if>>. <<elseif $activeSlave.devotion < -20>> @@ -59,7 +59,7 @@ You walk around $him and put your hands around $his abdomen,<<if ($activeSlave.a <</if>> <<if ($activeSlave.fetish == "mindbroken")>> - $His posture doesn't change. $He initially only reacts slightly to your physical touch but eventually $he relaxes in the warmth of the your embrace against $his. You know that this may only be a physiological reaction, nothing more. For a brief moment you think you detect a spark of life in $his dull eyes but just as quickly, it is gone. When you stop, $his $activeSlave.eyeColor eyes track the movements of your hands briefly but then $he stares blankly ahead of $him, not understanding what is happening. + $His posture doesn't change. $He initially only reacts slightly to your physical touch but eventually $he relaxes in the warmth of the your embrace against $him. You know that this may only be a physiological reaction, nothing more. For a brief moment you think you detect a spark of life in $his dull eyes but just as quickly, it is gone. When you stop, $his $activeSlave.eyeColor eyes track the movements of your hands briefly but then $he stares blankly ahead of $him, not understanding what is happening. <<elseif ($activeSlave.relationship == -2)>> In the warmth of your embrace, $he turns towards you, $his passionate $activeSlave.eyeColor eyes staring intently at your face. $He leans closer to you and kisses you as you hold $him. $His heart beats faster and then gradually slows as $he grows accustomed to your body against $hers. Eventually, $he relaxes totally and $his eyes gradually close, melting in your arms. When you finally stop and relax your embrace, $his eyes remain closed and $his mouth still in a rapturous shape for a moment before $he slowly opens $his eyes and smiles at you with a blissful look on $his face. <<if ($activeSlave.amp != 1)>> $His hand reaches to your arms and $he strokes them longingly.<</if>> <<if ($activeSlave.amp == 1) && !canTalk($activeSlave)>>$He slowly opens them and does $his best to communicate love with $his $activeSlave.eyeColor eyes.<<elseif !canTalk($activeSlave)>>$He signs that $he loves you.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>"I love you, <<Master>>," $he lisps dreamily.<<else>>"I love you, <<Master>>," $he says dreamily.<</if>> $He looks at you, almost begging you with $his eyes that $he wants much more than a mere embrace. <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> diff --git a/src/player/actions/fondleButt.tw b/src/player/actions/fondleButt.tw index cf09278d71a5d3a0eae7d9631ca1d97e6ceffa64..8e00ee32e1d5151b416455b06e60de6d9cabe187 100644 --- a/src/player/actions/fondleButt.tw +++ b/src/player/actions/fondleButt.tw @@ -67,7 +67,7 @@ You call $him over so you can fondle $his <<if canWalk($activeSlave)>> You strongly pull $his body closer towards you by $his buttocks, turn $him around and push $him down to bend $him over your desk. <<else>> - You move closer towards $his, turn $him around and firmly hold $him down on desk, face down so that $his butt is facing you up into the air. + You move closer towards $him, turn $him around and firmly hold $him down on desk, face down so that $his butt is facing you up into the air. <</if>> $He pretends to be unwilling but cannot disguise $his obvious joy. You see that $his rear has reddened in your rough play and you continue to squeeze $his cheeks hard and spank them with your firm hands. $He moans harder at you squeezing along the contours of $his posterior with both your hands and at $his virgin butthole as you push against it with your fingers and thumb. Eventually you decide to stop and $he squeals with delight after you give $his <<if $activeSlave.butt < 2>> @@ -506,7 +506,7 @@ You call $him over so you can fondle $his <<if ($activeSlave.amp != 1)>> You pull $his body closer towards you by $his buttocks, turn $him around and push $him down, bending $him over your desk. <<else>> - You move closer to $his, turn $him around and push $him down, face down on your desk so that $his butt is up facing towards you. + You move closer to $him, turn $him around and push $him down, face down on your desk so that $his butt is up facing towards you. <</if>> You look at $his rear while you squeeze $his cheeks and rub them with your firm hands. You wander along the outline of $his posterior with both your eyes and hands, then look at $his butthole as you trace it with your fingers and thumb. Eventually, you decide to stop and $he looks up into your eyes ecstatically,<<if ($activeSlave.amp != 1)>> as $he stands,<</if>> eager for more. <</if>> diff --git a/src/player/actions/fondleVagina.tw b/src/player/actions/fondleVagina.tw index de7078b882438f77f699c6b58ca1d929ea8a8946..bfd67a52048cd4f34fbff0777bb1e0246ce2e63d 100644 --- a/src/player/actions/fondleVagina.tw +++ b/src/player/actions/fondleVagina.tw @@ -140,7 +140,7 @@ You call $him over so you can fondle $his pretty little clit <</if>> and rub it with your fingertips as your hand nears it. $His pussy juices run down $his leg as $he begins to moan audibly<<if ($activeSlave.amp != 1)>>, grasping your wrist with $his hands tightly<</if>> and clamping $his thighs together as you continue to move your hand along $his pussy. $He moans as $he shudders in an orgasm, almost embarrassed. $He looks into your eyes expectantly. <<elseif ($activeSlave.devotion >= -20)>> - $He clearly dislikes the thought of getting fondled by you. $His lower lip quivers with trepidation as $he watches your hands move towards $his. $He has no choice but to obey if $he wants to avoid punishment. $He gasps and shakes as you gently trace along $his + $He clearly dislikes the thought of getting fondled by you. $His lower lip quivers with trepidation as $he watches your hands move towards $him. $He has no choice but to obey if $he wants to avoid punishment. $He gasps and shakes as you gently trace along $his <<if $activeSlave.labia == 1>> lovely petals <<elseif $activeSlave.labia == 2>> @@ -205,7 +205,7 @@ You call $him over so you can fondle $his <</if>> and rub it with your fingertips as your hand nears it. Except for the pussy juices trickling down $his leg, $he does not respond. <</if>> Since $he is mindbroken, $his responses to you are purely physiological and your actions have no affect on $his mentally. You leave your toy for one of your other slaves to clean and maintain. <<elseif ($activeSlave.amp == 1)>> - Since $he's a quadruple amputee, $he's yours to use as a human finger toy. While $he's lying there helpless, you move your hands towards $his. + Since $he's a quadruple amputee, $he's yours to use as a human finger toy. While $he's lying there helpless, you move your hands towards $him. <<if ($activeSlave.vagina != -1)>> You gently trace along $his <<if $activeSlave.labia == 1>> diff --git a/src/pregmod/fDick.tw b/src/pregmod/fDick.tw index 63cf980215221b32dd5805c580e6d91b6e4b25c3..caca27ee90370ce3eadb96fb337e0ef791092115 100644 --- a/src/pregmod/fDick.tw +++ b/src/pregmod/fDick.tw @@ -140,7 +140,7 @@ <<else>> twist $his dick at an odd angle <</if>> - until $he behaves. $He groans with a mix and disgust and pleasure while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his traitorous cock. $He might not want to bend to your will, but you have $his body wrapped around your little finger, even though it still leaves you doing all the work. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads deep inside you without warning. $He @@.orangered;smirks a little@@ as you glare daggers at $his. + until $he behaves. $He groans with a mix and disgust and pleasure while you bounce<<if $PC.belly >= 5000>> your gravid bulk<</if>> on $his traitorous cock. $He might not want to bend to your will, but you have $his body wrapped around your little finger, even though it still leaves you doing all the work. $He cries out lewdly, overwhelmed by your orgasmic <<if $PC.vagina == 1>>cunt<<else>>rectal<</if>> spasms, and unloads deep inside you without warning. $He @@.orangered;smirks a little@@ as you glare daggers at $him. <<set $activeSlave.trust++>> <</if>> <</if>> diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw index 3270017d20082c76b09d42bde216d4732a739595..6347fe577c031bd00d77a6741db79e544d64ee91 100644 --- a/src/pregmod/fMarry.tw +++ b/src/pregmod/fMarry.tw @@ -172,7 +172,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of $he painstakingly mouths $his displeasure, since $he cannot speak or use hands to sign. <<if $activeSlave.relationship != 0>> <<if $activeSlave.relationship == -1>> - $He desperately tries to explain that you'll never satisfy $his. + $He desperately tries to explain that you'll never satisfy $him. <<elseif $activeSlave.relationship == 4>> $He desperately tries to explain that $his love, $slaves[_m].slaveName, is better than you'll ever be. <<elseif $activeSlave.relationship == 3>> @@ -199,7 +199,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <</if>> <</if>> <</if>> - Despite $his "fortune", $he is still a slave, and undoubtedly knows that $his position could easily change should you tire of $his. $His tears may not all be genuine either, you have a feeling $he may be trying to take advantage of you. + Despite $his "fortune", $he is still a slave, and undoubtedly knows that $his position could easily change should you tire of $him. $His tears may not all be genuine either, you have a feeling $he may be trying to take advantage of you. <<set _reactionType = 2>> <<elseif $activeSlave.devotion < -20>> You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>women<<else>>girls<</if>> burst into tears, but this one is unusually effective. It seems $activeSlave.slaveName does not want to marry you, if $his prolonged, anguished sobbing is anything to go by. However, $he would have to be a fool to think there's any way out of it. You lean in and whisper that diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw index 51c76bbe247453815df6943056b473484d3d9419..1db91be048806a2eb4f2e26f7243e2e802a07dab 100644 --- a/src/pregmod/fSlaveFeed.tw +++ b/src/pregmod/fSlaveFeed.tw @@ -267,17 +267,17 @@ Next, you see to $activeSlave.slaveName. <<elseif ($milkTap.fetish == "boobs") && ($milkTap.fetishStrength > 60) && ($milkTap.devotion > 20) && ($activeSlave.devotion < -20)>> <<if canDoVaginal($activeSlave)>> - You position the restrained $activeSlave.slaveName so that you can penetrate $his <<if $activeSlave.vagina == 0>>virgin <</if>>pussy <<if $PC.dick == 0>>with a strap-on <</if>> while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $his.<<if $activeSlave.anus == 0>> $he @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in $his virgin vagina.@@<</if>> + You position the restrained $activeSlave.slaveName so that you can penetrate $his <<if $activeSlave.vagina == 0>>virgin <</if>>pussy <<if $PC.dick == 0>>with a strap-on <</if>> while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him.<<if $activeSlave.anus == 0>> $he @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in $his virgin vagina.@@<</if>> <<set $activeSlave.vaginalCount++, $vaginalTotal++>> <<elseif canDoAnal($activeSlave)>> - You position the restrained $activeSlave.slaveName so that you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $his.<<if $activeSlave.anus == 0>> $he @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in $his virgin anus.@@<</if>> + You position the restrained $activeSlave.slaveName so that you can penetrate $his <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him.<<if $activeSlave.anus == 0>> $he @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in $his virgin anus.@@<</if>> <<set $activeSlave.analCount++, $analTotal++>> <<elseif $PC.dick == 1 && $activeSlave.butt > 4>> - You position the restrained $activeSlave.slaveName so that you can rub your dick between $his huge butt cheeks while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know $he'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach, and cum soaked back, @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $his. + You position the restrained $activeSlave.slaveName so that you can rub your dick between $his huge butt cheeks while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know $he'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach, and cum soaked back, @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him. <<elseif $PC.dick == 1 && $activeSlave.amp == 0>> - You position the restrained $activeSlave.slaveName so that you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs, for a lack of anything better, while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen, cum covered stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $his. + You position the restrained $activeSlave.slaveName so that you can fuck $his <<if $activeSlave.weight > 95>>soft <</if>>thighs, for a lack of anything better, while $he is forced to drink from $milkTap.slaveName's breasts. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen, cum covered stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him. <<else>> - You position the restrained $activeSlave.slaveName so that you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $his while $he is forced to drink from $milkTap.slaveName's breasts, since $he lacks any better way to please you while you lavish attention on your eager cow. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $his. + You position the restrained $activeSlave.slaveName so that you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $his while $he is forced to drink from $milkTap.slaveName's breasts, since $he lacks any better way to please you while you lavish attention on your eager cow. With every thrust against the squirming slave, you push $him into the moaning $milkTap.slaveName forcing even more milk down $his throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much $he loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. _He2 is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from $his harness. Patting _his2 well milked breasts, you know _he2'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding $his swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over $him. <</if>> <<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> <<set $activeSlave.vagina = 1>> @@ -352,10 +352,10 @@ Next, you see to $activeSlave.slaveName. You wrap an arm around $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple to prevent _him2 from feeling left out. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>>. When you release $him from under your weight, $he drops to the ground panting from $his meal<<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> and from the pleasure you drove into $him<</if>>. Both slaves @@.hotpink;loved the attention@@, though $milkTap.slaveName even more so thanks to _his2 lighter breasts. <<set $activeSlave.devotion += 4, $milkTap.devotion += 4>> <<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> - $activeSlave.slaveName got off quite strongly from the growing pressure within $his, @@.hotpink;cementing@@ $his @@.lime;first fucking@@ as something special. + $activeSlave.slaveName got off quite strongly from the growing pressure within $him, @@.hotpink;cementing@@ $his @@.lime;first fucking@@ as something special. <<set $activeSlave.devotion += 4, $activeSlave.vagina = 1>> <<elseif canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> - $activeSlave.slaveName got off quite strongly from the growing pressure within $his, @@.hotpink;cementing@@ $his @@.lime;first anal@@ as something special. + $activeSlave.slaveName got off quite strongly from the growing pressure within $him, @@.hotpink;cementing@@ $his @@.lime;first anal@@ as something special. <<set $activeSlave.devotion += 4, $activeSlave.anus = 1>> <</if>> @@ -541,7 +541,7 @@ Next, you see to $activeSlave.slaveName. Slight moaning emanates from the fuckdoll as $activeSlave.slaveName sucks its dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off it's cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.rivalryTarget == $activeSlave.ID>> - $milkTap.slaveName grins as _his2 rival is forced to suck down loads until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with cum. $activeSlave.slaveName struggles against $his bindings until the pressure building in $his overwhelms $his, causing $him to pass out with $milkTap.slaveName's ejaculating cock still stuck in $his. You quickly remove $his from it, making sure $he gets roused from $his stupor by one last blast of cum directly to the face<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccuping pathetically<</if>><</if>>. + $milkTap.slaveName grins as _his2 rival is forced to suck down loads until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with cum. $activeSlave.slaveName struggles against $his bindings until the pressure building in $his overwhelms $him, causing $him to pass out with $milkTap.slaveName's ejaculating cock still stuck in $him. You quickly remove $his from it, making sure $he gets roused from $his stupor by one last blast of cum directly to the face<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccuping pathetically<</if>><</if>>. <<elseif $milkTap.relationshipTarget == $activeSlave.ID>> <<if $milkTap.relationship == 1>> diff --git a/src/pregmod/fSlaveSlaveVagConsummate.tw b/src/pregmod/fSlaveSlaveVagConsummate.tw index fee45e8ed23f2412b0bcaf86f692db2153e360ea..09d518d35f2e84ccb3bf17f18bec4241793e8b62 100644 --- a/src/pregmod/fSlaveSlaveVagConsummate.tw +++ b/src/pregmod/fSlaveSlaveVagConsummate.tw @@ -133,7 +133,7 @@ Next, you see to $activeSlave.slaveName. <<else>> slave wife <</if>> - 's <<if $slaverapistx.dick > 0>>_dicksize penis<<else>>massive clit<</if>> that will be penetrating $his. + 's <<if $slaverapistx.dick > 0>>_dicksize penis<<else>>massive clit<</if>> that will be penetrating $him. <<if _incestMood == "Top">> <<set _incestMood = "Both">> <<else>> diff --git a/src/pregmod/huskSlaveSwap.tw b/src/pregmod/huskSlaveSwap.tw index 33011f09dd1e34c426467309ddd2b3ddf85e5726..b625e0f96b329f3d44aa675ba111c4d33fcf740a 100644 --- a/src/pregmod/huskSlaveSwap.tw +++ b/src/pregmod/huskSlaveSwap.tw @@ -5,7 +5,7 @@ <<set _m = $slaveIndices[$swappingSlave.ID]>> <<run clearSummaryCache($slaves[_m])>> -You strap $slaves[_m].slaveName, and the body to which $pronoun will be transferred, into the remote surgery and stand back as it goes to work. +You strap $slaves[_m].slaveName, and the body to which $he will be transferred, into the remote surgery and stand back as it goes to work. <<BodySwap $slaves[_m] $activeSlave>> <<set _gps = $genePool.findIndex(function(s) { return s.ID == $slaves[_m].ID; })>> <<set $genePool[_gps].race = $slaves[_m].race, $genePool[_gps].skin = $slaves[_m].skin, $genePool[_gps].markings = $slaves[_m].markings, $genePool[_gps].origEye = $slaves[_m].origEye, $genePool[_gps].origHColor = $slaves[_m].origHColor, $genePool[_gps].origSkin = $slaves[_m].skin, $genePool[_gps].face = $slaves[_m].face, $genePool[_gps].pubicHStyle = $slaves[_m].pubicHStyle, $genePool[_gps].underArmHStyle = $slaves[_m].underArmHStyle>> /* special exception to swap genePool since the temporary body lacks an entry. Otherwise we could just call the widget using the genePool entries */ diff --git a/src/pregmod/saInflation.tw b/src/pregmod/saInflation.tw index a738f25dc21fe8d918f969aba8e255fb17f1d686..7d5da969f9c8f9eb74fc2bf1199808a65e0ca328 100644 --- a/src/pregmod/saInflation.tw +++ b/src/pregmod/saInflation.tw @@ -56,7 +56,7 @@ <<set $slaves[$i].addict -= 2>> <</if>> <<elseif random(1,100) < 40+(20*$slaves[$i].inflation)>> - All the aphrodisiacs held within $his bowels cause @@.cyan;$pronoun to become an aphrodisiac addict.@@ + All the aphrodisiacs held within $his bowels cause @@.cyan;$him to become an aphrodisiac addict.@@ <<set $slaves[$i].addict = 1>> <</if>> @@ -67,10 +67,10 @@ The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment,@@ though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. <<set $slaves[$i].health += 4>> <<elseif ($slaves[$i].health < -20)>> - @@.green;$possessiveCap poor health rapidly improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. + @@.green;$His poor health rapidly improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. <<set $slaves[$i].health += 2>> <<else>> - @@.green;$possessiveCap health improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. + @@.green;$His health improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. <</if>> <<set $slaves[$i].health += 1>> <<elseif $slaves[$i].inflation == 2>> @@ -79,10 +79,10 @@ The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment,@@ though being overfilled doesn't hasten $his recovery at all; it's just perverted. <<set $slaves[$i].health += 4>> <<elseif ($slaves[$i].health < -20)>> - @@.green;$possessiveCap poor health rapidly improves@@ under the curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted. + @@.green;$His poor health rapidly improves@@ under the curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted. <<set $slaves[$i].health += 2>> <<else>> - @@.green;$possessiveCap health improves@@ under curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted. + @@.green;$His health improves@@ under curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted. <</if>> <<set $slaves[$i].health += 6>> <<elseif $slaves[$i].inflation == 1>> @@ -91,10 +91,10 @@ The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment.@@ <<set $slaves[$i].health += 4>> <<elseif ($slaves[$i].health < -20)>> - @@.green;$possessiveCap poor health rapidly improves@@ under the curative enema. + @@.green;$His poor health rapidly improves@@ under the curative enema. <<set $slaves[$i].health += 2>> <<else>> - @@.green;$possessiveCap health improves@@ under curative enema. + @@.green;$His health improves@@ under curative enema. <</if>> <<set $slaves[$i].health += 6>> <</if>> @@ -103,7 +103,7 @@ <<set $slaves[$i].trust += 1>> <</if>> <<if $slaves[$i].health >= 90>> - $He is as healthy as $him can be. @@.yellow;$possessiveCap enema regimen has been ended.@@ + $He is as healthy as $him can be. @@.yellow;$His enema regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <</if>> <<set $slaves[$i].chem += 2, $slaves[$i].health += $curativeUpgrade*6>> @@ -115,7 +115,7 @@ <<if $slaves[$i].anus > 1>> The solution slowly tightens $his anus while inside $his bowels. Being filled to $his limit with the solution does not make it tighten any better or faster; it's just perverted. <<if random(1,100) > 60>> - By week's end, @@.lime;$possessive butthole has tightened nicely.@@ + By week's end, @@.lime;$his butthole has tightened nicely.@@ <<set $slaves[$i].anus-->> <</if>> <<else>> @@ -124,7 +124,7 @@ <<if $slaves[$i].vagina > 1>> As $his body slowly absorbs the solution, its benefits begin to affect $his pussy. Being filled to $his limit with the solution does not make it tighten any better or faster; it's just perverted. <<if random(1,100) > 80>> - By week's end, @@.lime;$possessive vagina has regained some tightness.@@ + By week's end, @@.lime;$his vagina has regained some tightness.@@ <<set $slaves[$i].vagina-->> <</if>> <<elseif $slaves[$i].vagina == 1>> @@ -135,7 +135,7 @@ <<if $slaves[$i].anus > 1>> The solution slowly tightens $his anus while inside $his bowels. Being overfilled with the solution does not make it tighten any better or faster; it's just perverted. <<if random(1,100) > 60>> - By week's end, @@.lime;$possessive butthole has tightened nicely.@@ + By week's end, @@.lime;$his butthole has tightened nicely.@@ <<set $slaves[$i].anus-->> <</if>> <<else>> @@ -144,7 +144,7 @@ <<if $slaves[$i].vagina > 1>> As $his body slowly absorbs the solution, its benefits begin to affect $his pussy. Being overfilled with the solution does not make it tighten any better or faster; it's just perverted. <<if random(1,100) > 80>> - By week's end, @@.lime;$possessive vagina has regained some tightness.@@ + By week's end, @@.lime;$his vagina has regained some tightness.@@ <<set $slaves[$i].vagina-->> <</if>> <<elseif $slaves[$i].vagina == 1>> @@ -155,7 +155,7 @@ <<if $slaves[$i].anus > 1>> The solution slowly tightens $his anus while inside $his bowels. <<if random(1,100) > 60>> - By week's end, @@.lime;$possessive butthole has tightened nicely.@@ + By week's end, @@.lime;$his butthole has tightened nicely.@@ <<set $slaves[$i].anus-->> <</if>> <<else>> @@ -164,7 +164,7 @@ <<if $slaves[$i].vagina > 1>> As $his body slowly absorbs the solution, its benefits begin to affect $his pussy. <<if random(1,100) > 80>> - By week's end, @@.lime;$possessive vagina has regained some tightness.@@ + By week's end, @@.lime;$his vagina has regained some tightness.@@ <<set $slaves[$i].vagina-->> <</if>> <<elseif $slaves[$i].vagina == 1>> @@ -175,7 +175,7 @@ <<if ["serve in the club", "work in the brothel"].includes($slaves[$i].assignment)>> $His hole<<if $slaves[$i].vagina >= 0>>s are<<else>> is<</if>> as tight as the drugs can get <<if $slaves[$i].vagina >= 0>>them<<else>>it<</if>>, but given $his assignment, $he is likely to be stretched out again so $his enema regimen continues. <<else>> - $His hole<<if $slaves[$i].vagina >= 0>>s are<<else>> is<</if>> as tight as the drugs can get <<if $slaves[$i].vagina >= 0>>them<<else>>it<</if>>. @@.yellow;$possessiveCap enema regimen has been ended.@@ + $His hole<<if $slaves[$i].vagina >= 0>>s are<<else>> is<</if>> as tight as the drugs can get <<if $slaves[$i].vagina >= 0>>them<<else>>it<</if>>. @@.yellow;$His enema regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <</if>> <</if>> @@ -185,7 +185,7 @@ <<if $slaves[$i].behavioralFlaw == "anorexic">> <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. @@ -199,7 +199,7 @@ <</if>> <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep the fattening load inside $him, @@.gold;fearing@@ punishment otherwise. @@ -214,7 +214,7 @@ <<elseif $slaves[$i].inflationMethod == 3>> <<set _saf = $slaveIndices[$slaves[$i].milkSource]>> <<if $slaves[_saf].lactation == 0>> - $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ suckles from $slaves[_saf].slaveName until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. @@ -230,7 +230,7 @@ <<elseif $slaves[$i].behavioralFlaw == "gluttonous">> <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently@@, anticipating $his next gorging. @@ -244,7 +244,7 @@ <</if>> <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his taut belly @@.mediumaquamarine;contently@@, though $he wishes $he could have swallowed it instead. @@ -259,7 +259,7 @@ <<elseif $slaves[$i].inflationMethod == 3>> <<set _saf = $slaveIndices[$slaves[$i].milkSource]>> <<if $slaves[_saf].lactation == 0>> - $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from $slaves[_saf].slaveName until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently@@, anticipating $his next gorging. @@ -275,7 +275,7 @@ <<else>> <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to keep herself filled with nearly two gallons of milk, leaving $him looking ready to burst. $He keeps herself @@.red;painfully full@@ for you. @@ -287,7 +287,7 @@ <</if>> <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to fill $his rear with nearly two gallons of milk, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps herself @@.red;painfully full@@ for you. @@ -300,7 +300,7 @@ <<elseif $slaves[$i].inflationMethod == 3>> <<set _saf = $slaveIndices[$slaves[$i].milkSource]>> <<if $slaves[_saf].lactation == 0>> - $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + $slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure keep suckling from $slaves[_saf].slaveName until $he is filled with nearly two gallons of milk, leaving $him looking ready to give birth. $He keeps herself @@.red;painfully full@@ for you. @@ -317,7 +317,7 @@ <<if $slaves[$i].behavioralFlaw == "anorexic">> <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional cum dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise. @@ -331,7 +331,7 @@ <</if>> <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional cum dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep the massive cumshot inside $him, @@.gold;fearing@@ punishment otherwise. @@ -346,7 +346,7 @@ <<elseif $slaves[$i].inflationMethod == 3>> <<set _saf = $slaveIndices[$slaves[$i].cumSource]>> <<if $slaves[_saf].balls == 0>> - $slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + $slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise. @@ -362,7 +362,7 @@ <<elseif $slaves[$i].behavioralFlaw == "gluttonous">> <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional cum dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently@@, anticipating $his next gorging. @@ -376,7 +376,7 @@ <</if>> <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional cum dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his taut belly @@.mediumaquamarine;contently@@, though $he wishes $he could have swallowed it instead. @@ -391,7 +391,7 @@ <<elseif $slaves[$i].inflationMethod == 3>> <<set _saf = $slaveIndices[$slaves[$i].cumSource]>> <<if $slaves[_saf].balls == 0>> - $slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + $slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently@@, anticipating $his next gorging. @@ -407,7 +407,7 @@ <<else>> <<if $slaves[$i].inflationMethod == 1>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional cum dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to keep herself filled with nearly two gallons of cum, leaving $him looking ready to burst. $He keeps herself @@.red;painfully full@@ for you. @@ -419,7 +419,7 @@ <</if>> <<elseif $slaves[$i].inflationMethod == 2>> <<if ($dairySlaves == 0 || $cumSlaves == 0 || $dairy == 0) && $arcologies[0].FSPastoralistLaw != 1>> - You no longer have a functional cum dairy. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + You no longer have a functional cum dairy. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to fill $his rear with nearly two gallons of cum, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps herself @@.red;painfully full@@ for you. @@ -432,7 +432,7 @@ <<elseif $slaves[$i].inflationMethod == 3>> <<set _saf = $slaveIndices[$slaves[$i].cumSource]>> <<if $slaves[_saf].balls == 0>> - $slaves[$j].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@ + $slaves[$j].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$His inflation regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure keep sucking $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $he is filled with nearly two gallons of cum, leaving $him looking ready to burst. $He keeps herself @@.red;painfully full@@ for you. diff --git a/src/pregmod/saPorn.tw b/src/pregmod/saPorn.tw index c1848493dad26ffa47d8d4b4af9c254f71277a8d..d4f51ffeffd8585f7288382aee435a1aaeb35a80 100644 --- a/src/pregmod/saPorn.tw +++ b/src/pregmod/saPorn.tw @@ -43,62 +43,62 @@ <<set $PC.hacking += 0.1>> <</if>> - The studio regularly releases clips of $possessive daily affairs. + The studio regularly releases clips of $his daily affairs. <<if $cheatMode == 1>>Decay: _decayRate Viewership: _viewership Last week's fame: _oldFame<</if>> <<if $slaves[$i].pornPrestige > 1>> - $pronounCap is widely regarded in $slaves[$i].pornFameType porn, but with so many watchers, turn over is high. + $He is widely regarded in $slaves[$i].pornFameType porn, but with so many watchers, turn over is high. <<elseif $slaves[$i].pornPrestige > 0>> <<if $slaves[$i].pornFameType == "generic">> - $pronounCap has claimed a niche in slave porn, so there is a constant cycle of new arrivals and bored ex-watchers. + $He has claimed a niche in slave porn, so there is a constant cycle of new arrivals and bored ex-watchers. <<else>> - $pronounCap has claimed a niche for <<print $object>>self in $slaves[$i].pornFameType porn, so there is a constant cycle of new arrivals and bored ex-watchers. + $He has claimed a niche for $himself in $slaves[$i].pornFameType porn, so there is a constant cycle of new arrivals and bored ex-watchers. <</if>> <<else>> - $pronounCap is borderline unknown, so $pronoun tends to hold onto what little watchers $pronoun has. + $He is borderline unknown, so $he tends to hold onto what little watchers $he has. <</if>> <<if ($slaves[$i].prestige > 1)>> - Interest in porn of $object is very high, since $pronoun's already quite prestigious. + Interest in porn of $him is very high, since $he's already quite prestigious. <<elseif ($slaves[$i].prestige > 0)>> - Interest in porn of $object is high, since $pronoun's already prestigious. + Interest in porn of $him is high, since $he's already prestigious. <</if>> <<if $slaves[$i].fuckdoll > 0>> <<elseif $slaves[$i].collar == "porcelain mask">> - $possessiveCap mask adds an air of mystery to $object, + $His mask adds an air of mystery to $him, <<if $slaves[$i].pornPrestige > 1>> - but people wonder if $pronoun is trying to hide something. + but people wonder if $he is trying to hide something. <<elseif $slaves[$i].pornPrestige > 0>> tantalizing viewers with what it hides. <<else>> - but viewers are more interested in $possessive body. + but viewers are more interested in $his body. <</if>> <<elseif $slaves[$i].face > 95>> - $possessiveCap unbelievable face siezes the attention of all who see it. + $His unbelievable face siezes the attention of all who see it. <<elseif $slaves[$i].face > 40>> - $possessiveCap gorgeous face draws viewers in and keeps them watching. + $His gorgeous face draws viewers in and keeps them watching. <<elseif $slaves[$i].face > 10>> - $possessiveCap pretty face draws viewers in. + $His pretty face draws viewers in. <<elseif $slaves[$i].face > 0>> - $possessiveCap face is attractive, but it attracts few viewers. + $His face is attractive, but it attracts few viewers. <<elseif $slaves[$i].face == 0>> - $possessiveCap face is completely average and makes no difference to $possessive viewers. + $His face is completely average and makes no difference to $his viewers. <<elseif $slaves[$i].face >= -10>> - $possessiveCap face, while attractive, is so average it turns off some viewers. + $His face, while attractive, is so average it turns off some viewers. <<elseif $slaves[$i].face >= -40>> - $possessiveCap unattractive face causes viewers to move on. + $His unattractive face causes viewers to move on. <<elseif $slaves[$i].face >= -95>> - $possessiveCap ugly face drives viewers off. + $His ugly face drives viewers off. <<else>> - $possessiveCap face chases off all but the most desperate viewers. + $His face chases off all but the most desperate viewers. <</if>> <<if $PC.hacking > 10>> - With your hacking skills, you manage to tweak search algorithms to display $possessive content more often. + With your hacking skills, you manage to tweak search algorithms to display $his content more often. <<elseif $PC.hacking < 0>> - With your lack of skill with computers you manage to misidentify $possessive content, complicating searches. + With your lack of skill with computers you manage to misidentify $his content, complicating searches. <</if>> /*Paraphilias have the highest take of viewers*/ @@ -114,7 +114,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "neglectful" || $slaves[$i].pornFameType == "orgasm denial">> - $possessiveCap lack of interest in getting off <<print $object>>self, even when at the verge of climax, makes $object a hit with viewers that enjoy orgasm denial. + $His lack of interest in getting off $himself, even when at the verge of climax, makes $him a hit with viewers that enjoy orgasm denial. <<if $slaves[$i].pornTypeNeglectful > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeNeglectful < _oldPorn>> @@ -141,7 +141,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "cum addict" || $slaves[$i].pornFameType == "bukkake">> - $possessiveCap complete obsession with cum makes $object a hit with viewers that enjoy bukkake and cum drinking. + $His complete obsession with cum makes $him a hit with viewers that enjoy bukkake and cum drinking. <<if $slaves[$i].pornTypeCumAddict > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeCumAddict < _oldPorn>> @@ -168,7 +168,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].sexualFlaw == "anal addict" || $slaves[$i].pornFameType == "anal addiction">> - $possessiveCap complete obsession with taking things up $possessive ass makes $object a hit with viewers that enjoy hardcore anal. + $His complete obsession with taking things up $his ass makes $him a hit with viewers that enjoy hardcore anal. <<if $slaves[$i].pornTypeAnalAddict > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeAnalAddict < _oldPorn>> @@ -195,7 +195,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "attention whore" || $slaves[$i].pornFameType == "exhibition">> - $possessiveCap complete obsession with being the center of attention makes $object a hit with viewers that savor $possessive frequent exhibitionism. + $His complete obsession with being the center of attention makes $him a hit with viewers that savor $his frequent exhibitionism. <<if $slaves[$i].pornTypeAttentionWhore > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeAttentionWhore < _oldPorn>> @@ -222,7 +222,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "breast growth" || $slaves[$i].pornFameType == "breast expansion">> - $possessiveCap complete obsession with the ever increasing size of $possessive tits makes $object a hit with viewers that enjoy enormous knockers and breast expansion. + $His complete obsession with the ever increasing size of $his tits makes $him a hit with viewers that enjoy enormous knockers and breast expansion. <<if $slaves[$i].pornTypeBreastGrowth > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeBreastGrowth < _oldPorn>> @@ -249,7 +249,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "abusive" || $slaves[$i].pornFameType == "abuse">> - $possessiveCap wanton enjoyment of pleasure through force amuses viewers that enjoy rape and abuse. + $His wanton enjoyment of pleasure through force amuses viewers that enjoy rape and abuse. <<if $slaves[$i].pornTypeAbusive > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeAbusive < _oldPorn>> @@ -276,7 +276,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "malicious" || $slaves[$i].pornFameType == "sexual torture">> - $possessiveCap sexual appetite of other's suffering makes $object a hit with viewers that enjoy sadism and violence. + $His sexual appetite of other's suffering makes $him a hit with viewers that enjoy sadism and violence. <<if $slaves[$i].pornTypeMalicious > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeMalicious < _oldPorn>> @@ -303,7 +303,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "self hating" || $slaves[$i].pornFameType == "self hating">> - $possessiveCap complete disregard for $possessive own wellbeing makes $object a hit with viewers that enjoy watching $object suffer. + $His complete disregard for $his own wellbeing makes $him a hit with viewers that enjoy watching $him suffer. <<if $slaves[$i].pornTypeSelfHating > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeSelfHating < _oldPorn>> @@ -330,7 +330,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "breeder" || $slaves[$i].pornFameType == "breeder">> - $possessiveCap complete obsession with getting and staying pregnant makes $object a hit with viewers with all manner of pregnancy fetish, but particularly resonates with those as focused on it as $pronoun is. + $His complete obsession with getting and staying pregnant makes $him a hit with viewers with all manner of pregnancy fetish, but particularly resonates with those as focused on it as $he is. <<if $slaves[$i].pornTypeBreeder > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeBreeder < _oldPorn>> @@ -359,7 +359,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "submissive" || $slaves[$i].pornFameType == "submissive">> - With $possessive submissive streak, $pronoun has a clear advantage when it comes to fetish smut. + With $his submissive streak, $he has a clear advantage when it comes to fetish smut. <<if $slaves[$i].pornTypeSub > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeSub < _oldPorn>> @@ -386,7 +386,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "cumslut" || $slaves[$i].pornFameType == "cum">> - With $possessive taste for cum, $pronoun has a clear advantage when it comes to ejaculate-based smut. + With $his taste for cum, $he has a clear advantage when it comes to ejaculate-based smut. <<if $slaves[$i].pornTypeCumSlut > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeCumSlut < _oldPorn>> @@ -413,7 +413,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "buttslut" || $slaves[$i].pornFameType == "buttslut">> - With $possessive fetish for asses, $pronoun finds in the company of viewers that love rear ends. + With $his fetish for asses, $he finds in the company of viewers that love rear ends. <<if $slaves[$i].pornTypeAnal > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeAnal < _oldPorn>> @@ -440,7 +440,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "humiliation" || $slaves[$i].pornFameType == "humiliating">> - With $possessive fetish for humiliation, $pronoun has a clear advantage when it comes to demeaning smut. + With $his fetish for humiliation, $he has a clear advantage when it comes to demeaning smut. <<if $slaves[$i].pornTypeHumiliation > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeHumiliation < _oldPorn>> @@ -467,7 +467,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "boobs" || $slaves[$i].pornFameType == "breast">> - With $possessive fetish for tits, $pronoun has a clear advantage when it comes to breast focused smut. + With $his fetish for tits, $he has a clear advantage when it comes to breast focused smut. <<if $slaves[$i].pornTypeBoobs > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeBoobs < _oldPorn>> @@ -494,7 +494,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "dom" || $slaves[$i].pornFameType == "dominant">> - With $possessive dominant streak, $pronoun has a clear advantage when it comes to fetish smut. + With $his dominant streak, $he has a clear advantage when it comes to fetish smut. <<if $slaves[$i].pornTypeDom > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeDom < _oldPorn>> @@ -521,7 +521,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "sadist" || $slaves[$i].pornFameType == "sadistic">> - With $possessive sadistic streak, $pronoun has a clear advantage when it comes to fetish smut. + With $his sadistic streak, $he has a clear advantage when it comes to fetish smut. <<if $slaves[$i].pornTypeSadist > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeSadist < _oldPorn>> @@ -548,7 +548,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "masochist" || $slaves[$i].pornFameType == "masochistic">> - With $possessive masochistic streak, $pronoun has a clear advantage when it comes to fetish smut. + With $his masochistic streak, $he has a clear advantage when it comes to fetish smut. <<if $slaves[$i].pornTypeMasochist > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeMasochist < _oldPorn>> @@ -575,7 +575,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "pregnancy" || $slaves[$i].pornFameType == "pregnancy fetish">> - With $possessive fetish for all things pregnancy, $pronoun has a clear advantage when it comes to fetish smut. + With $his fetish for all things pregnancy, $he has a clear advantage when it comes to fetish smut. <<if $slaves[$i].pornTypePregnancy > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypePregnancy < _oldPorn>> @@ -605,7 +605,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "fuckdoll" || $slaves[$i].pornFameType == "fuckdoll">> - $possessiveCap latex encased body attracts a variety of viewers with tastes ranging from bondage to dolls. + $His latex encased body attracts a variety of viewers with tastes ranging from bondage to dolls. <<if $slaves[$i].pornTypeFuckdoll > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeFuckdoll < _oldPorn>> @@ -632,7 +632,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "rape" || $slaves[$i].pornFameType == "rape">> - $pronounCap is too unbroken for consensual sex, but $possessive viewers wouldn't want it any other way. + $He is too unbroken for consensual sex, but $his viewers wouldn't want it any other way. <<if $slaves[$i].pornTypeRape > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeRape < _oldPorn>> @@ -659,7 +659,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "preggo" || $slaves[$i].pornFameType == "preggo">> - $possessiveCap gravid swell may be a turn off to some, but the maiesiophiliacs love it. + $His gravid swell may be a turn off to some, but the maiesiophiliacs love it. <<if $slaves[$i].pornTypePreggo > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypePreggo < _oldPorn>> @@ -686,7 +686,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "BBW" || $slaves[$i].pornFameType == "BBW">> - $possessiveCap weight gives $object a heavy allure to the chubby chasers and BBS lovers out there. + $His weight gives $him a heavy allure to the chubby chasers and BBS lovers out there. <<if $slaves[$i].pornTypeBBW > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeBBW < _oldPorn>> @@ -713,7 +713,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "loli" || $slaves[$i].pornFameType == "underage">> - $possessiveCap young age gives $object a dangerous edge and a number of careful viewers. + $His young age gives $him a dangerous edge and a number of careful viewers. <<if $slaves[$i].pornTypeLoli > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeLoli < _oldPorn>> @@ -740,7 +740,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "gainer" || $slaves[$i].pornFameType == "weight gain">> - $possessiveCap expanding waistline attracts those who enjoy seeing a girl pack on the pounds while stuffing $possessive face. + $His expanding waistline attracts those who enjoy seeing a girl pack on the pounds while stuffing $his face. <<if $slaves[$i].pornTypeGainer > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeGainer < _oldPorn>> @@ -767,7 +767,7 @@ <<set _viewerSoaking++>> <<if $slaves[$i].pornFocus == "stud" || $slaves[$i].pornFameType == "big dick">> - $possessiveCap powerful erection excites those who see it, especially when it is put to good use. + $His powerful erection excites those who see it, especially when it is put to good use. <<if $slaves[$i].pornTypeStud > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeStud < _oldPorn>> @@ -804,7 +804,7 @@ <<set $slaves[$i].pornTypeDeepThroat = Math.clamp($slaves[$i].pornTypeDeepThroat, 0, 100000)>> <<if $slaves[$i].pornFocus == "gagfuck queen" || $slaves[$i].pornFameType == "deepthroat">> - $pronounCap impresses with just how much dick can slip down $possessive throat. + $He impresses with just how much dick can slip down $his throat. <<if $slaves[$i].pornTypeDeepThroat > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeDeepThroat < _oldPorn>> @@ -830,7 +830,7 @@ <<set $slaves[$i].pornTypeStruggleFuck = Math.clamp($slaves[$i].pornTypeStruggleFuck, 0, 100000)>> <<if $slaves[$i].pornFocus == "strugglefuck queen" || $slaves[$i].pornFameType == "unwilling">> - $pronounCap impresses with $possessive ability to put up just the right amount of fight during sex. + $He impresses with $his ability to put up just the right amount of fight during sex. <<if $slaves[$i].pornTypeStruggleFuck > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeStruggleFuck < _oldPorn>> @@ -856,7 +856,7 @@ <<set $slaves[$i].pornTypePainal = Math.clamp($slaves[$i].pornTypePainal, 0, 100000)>> <<if $slaves[$i].pornFocus == "painal queen" || $slaves[$i].pornFameType == "hardcore anal">> - $pronounCap impresses with $possessive ability to push $possessive anus to its limit. + $He impresses with $his ability to push $his anus to its limit. <<if $slaves[$i].pornTypePainal > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypePainal < _oldPorn>> @@ -882,7 +882,7 @@ <<set $slaves[$i].pornTypeTease = Math.clamp($slaves[$i].pornTypeTease, 0, 100000)>> <<if $slaves[$i].pornFocus == "tease" || $slaves[$i].pornFameType == "softcore">> - $possessiveCap tantalizes viewers with $possessive suggestive moves. + $His tantalizes viewers with $his suggestive moves. <<if $slaves[$i].pornTypeTease > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeTease < _oldPorn>> @@ -908,7 +908,7 @@ <<set $slaves[$i].pornTypeRomantic = Math.clamp($slaves[$i].pornTypeRomantic, 0, 100000)>> <<if $slaves[$i].pornFocus == "romantic" || $slaves[$i].pornFameType == "romantic">> - $possessiveCap draws viewers in with $possessive genuine pleasure. + $His draws viewers in with $his genuine pleasure. <<if $slaves[$i].pornTypeRomantic > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeRomantic < _oldPorn>> @@ -934,7 +934,7 @@ <<set $slaves[$i].pornTypePervert = Math.clamp($slaves[$i].pornTypePervert, 0, 100000)>> <<if $slaves[$i].pornFocus == "perverted" || $slaves[$i].pornFameType == "really perverted">> - $possessiveCap perverted tastes shock and allure viewers in ways they didn't even realize. + $His perverted tastes shock and allure viewers in ways they didn't even realize. <<if $slaves[$i].pornTypePervert > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypePervert < _oldPorn>> @@ -960,7 +960,7 @@ <<set $slaves[$i].pornTypeCaring = Math.clamp($slaves[$i].pornTypeCaring, 0, 100000)>> <<if $slaves[$i].pornFocus == "caring" || $slaves[$i].pornFameType == "voyeur">> - $possessiveCap sincere devotion to $possessive partner's pleasure draws in viewers with an interest in watching couples fuck. + $His sincere devotion to $his partner's pleasure draws in viewers with an interest in watching couples fuck. <<if $slaves[$i].pornTypeCaring > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeCaring < _oldPorn>> @@ -986,7 +986,7 @@ <<set $slaves[$i].pornTypeUnflinching = Math.clamp($slaves[$i].pornTypeUnflinching, 0, 100000)>> <<if $slaves[$i].pornFocus == "unflinching" || $slaves[$i].pornFameType == "unspeakable">> - $possessiveCap willingness to do anything catches the attention of those who enjoy acts that should never be mentioned to others. + $His willingness to do anything catches the attention of those who enjoy acts that should never be mentioned to others. <<if $slaves[$i].pornTypeUnflinching > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeUnflinching < _oldPorn>> @@ -1012,7 +1012,7 @@ <<set $slaves[$i].pornTypeSizeQueen = Math.clamp($slaves[$i].pornTypeSizeQueen, 0, 100000)>> <<if $slaves[$i].pornFocus == "size queen" || $slaves[$i].pornFameType == "huge insertion">> - $possessiveCap intent on taking the largest things possible into her holes draws in viewers with an interest for huge insertions. + $His intent on taking the largest things possible into her holes draws in viewers with an interest for huge insertions. <<if $slaves[$i].pornTypeSizeQueen > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeSizeQueen < _oldPorn>> @@ -1034,23 +1034,23 @@ <<if _oldFame > $slaves[$i].pornFame>> - Overall, $possessive online fame @@.red;dropped@@ this week. + Overall, $his online fame @@.red;dropped@@ this week. <<elseif _oldFame < $slaves[$i].pornFame>> - Overall, $possessive online fame @@.green;rose@@ this week. + Overall, $his online fame @@.green;rose@@ this week. <<if _oldFame < 100 && $slaves[$i].pornFame >= 100 && $studioFeed == 1>> - $pronounCap @@.yellow;has accrued enough views to determine prospective porn genres.@@ + $He @@.yellow;has accrued enough views to determine prospective porn genres.@@ <</if>> <<elseif $slaves[$i].pornFame != 0>> - Surprisingly, $possessive online fame @@.yellow;remained consistant@@ this week despite how fickle watchers can be. + Surprisingly, $his online fame @@.yellow;remained consistant@@ this week despite how fickle watchers can be. <<else>> - $pronoun cap went @@.red;completely overlooked@@ this week and failed to gain any hits at all. + $he cap went @@.red;completely overlooked@@ this week and failed to gain any hits at all. <</if>> <<if $slaves[$i].pornFame > 0>> <<set _topFame = getHighestPorn($slaves[$i])>> <<set _donations = Math.floor($slaves[$i].pornFame/(random(10,15+_viewerSoaking)))>> <<if _donations > 0>> - Fans donated a total of @@.yellowgreen;<<print cashFormat(_donations)>>@@ to $possessive account this week. + Fans donated a total of @@.yellowgreen;<<print cashFormat(_donations)>>@@ to $his account this week. <<set $cash += _donations>> <</if>> <</if>> @@ -1099,117 +1099,117 @@ <<set $slaves[$i].pornFameType = _pornFameGrabBag.random()>> <<set $slaves[$i].pornPrestige = 1>> - @@.green;$pronounCap has gained a following in $slaves[$i].pornFameType pornography!@@ Thousands have enjoyed + @@.green;$He has gained a following in $slaves[$i].pornFameType pornography!@@ Thousands have enjoyed <<switch $slaves[$i].pornFameType>> <<case "generic">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her being used.">> - the sight of $object being used, + the sight of $him being used, <<case "fuckdoll">> <<set $slaves[$i].pornPrestigeDesc = "It has a following in slave pornography. Its fans relish the sight of it being used.">> - the sight of $object being used, + the sight of $him being used, <<case "rape">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her being raped.">> - the sight of $object being raped, + the sight of $him being raped, <<case "preggo">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed watching her swell with child.">> - watching $object swell with child, + watching $him swell with child, <<case "BBW">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her thick and soft body.">> - the sight of $possessive thick and soft body, + the sight of $his thick and soft body, <<case "underage">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her childish body.">> - the sight of $possessive childish body, + the sight of $his childish body, <<case "weight gain">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her eating and gaining weight.">> - the sight of $object eating and gaining weight, + the sight of $him eating and gaining weight, <<case "big dick">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her throbbing erection.">> - the sight of $possessive throbbing erection, + the sight of $his throbbing erection, <<case "deepthroat">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sounds she makes when being throatfucked.">> - the sounds $pronoun makes when being throatfucked, + the sounds $he makes when being throatfucked, <<case "unwilling">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed how she struggles during sex.">> - how $pronoun struggles during sex, + how $he struggles during sex, <<case "hardcore anal">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed watching her asshole pushed to its limit.">> - watching $possessive asshole pushed to its limit, + watching $his asshole pushed to its limit, <<case "softcore">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her lewd striptease.">> - $possessive lewd striptease, + $his lewd striptease, <<case "romantic">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the deep bond she shares with her partners.">> - the deep bond $pronoun shares with $possessive partners, + the deep bond $he shares with $his partners, <<case "really perverted">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her most perverted tendencies.">> - $possessive most perverted tendencies, + $his most perverted tendencies, <<case "voyeur">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed watching her devote herself to her partners' pleasure.">> - watching $object devote <<print $object>>self to $possessive partners' pleasure, + watching $him devote $himself to $his partners' pleasure, <<case "unspeakable">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her willingness to do things not repeated in polite company.">> - $possessive willingness to do things not repeated in polite company, + $his willingness to do things not repeated in polite company, <<case "huge insertion">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her holes filled to their limits.">> - the sight of $possessive holes filled to their limits, + the sight of $his holes filled to their limits, <<case "orgasm denial">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her ignoring her own pleasure.">> - the sight of $object ignoring $possessive own pleasure, + the sight of $him ignoring $his own pleasure, <<case "cum addiction">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed whatching her do anything and everything for cum.">> - whatching $object do anything and everything for cum, + whatching $him do anything and everything for cum, <<case "anal addiction">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed whatching her do anything for a dick in her ass.">> - whatching $object do anything for a dick in $possessive ass, + whatching $him do anything for a dick in $his ass, <<case "exhibition">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed whatching her do anything for attention.">> - whatching $object do anything for attention, + whatching $him do anything for attention, <<case "breast expansion">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed charting the growth of her breasts.">> - charting the growth of $possessive breasts, + charting the growth of $his breasts, <<case "abuse">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed watching her abuse others.">> - watching $object abuse others, + watching $him abuse others, <<case "sexual torture">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her getting off from the suffering she caused.">> - $object getting off from the suffering she caused, + $him getting off from the suffering she caused, <<case "self hating">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed watching her happily suffer.">> - watching $object happily suffer, + watching $him happily suffer, <<case "breeder">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed watching her obsess over pumping out babies.">> - watching $object obsess over pumping out babies, + watching $him obsess over pumping out babies, <<case "submissive">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her submission.">> - $possessive submission, + $his submission, <<case "cum">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her taste for cum.">> - $possessive taste for cum, + $his taste for cum, <<case "buttslut">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her rear.">> - the sight of $possessive rear, + the sight of $his rear, <<case "humiliating">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her humiliating herself.">> - $object humiliating herself, + $him humiliating herself, <<case "breast">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her breasts.">> - the sight of $possessive breasts, + the sight of $his breasts, <<case "dominant">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her dominance.">> - $possessive dominance, + $his dominance, <<case "sadistic">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her sadism.">> - $possessive sadism, + $his sadism, <<case "masochistic">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her masochism.">> - $possessive masochism, + $his masochism, <<case "pregnancy fetish">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed her fondness for pregnancy.">> - $possessive fondness for pregnancy, + $his fondness for pregnancy, <</switch>> - but $pronoun isn't famous enough to be called prestigious yet. + but $he isn't famous enough to be called prestigious yet. <</if>> <<elseif $slaves[$i].pornPrestige == 1>> <<set _failedStar = 0, _fameSwap = 0, _swapPoint = 1.2>> @@ -1219,7 +1219,7 @@ <<if $slaves[$i].pornTypeGeneral >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from her career in slave pornography. Her many fans relish the sight of her being used.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object being used, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him being used, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeGeneral*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeGeneral < 5000>> @@ -1229,7 +1229,7 @@ <<if $slaves[$i].pornTypeFuckdoll >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "It is well known from its career in slave pornography. Its many fans relish the sight of it being used.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object being used, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him being used, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeFuckdoll*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeFuckdoll < 5000>> @@ -1239,7 +1239,7 @@ <<if $slaves[$i].pornTypeRape >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her being raped.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object being raped, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him being raped, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeRape*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeRape < 5000>> @@ -1249,7 +1249,7 @@ <<if $slaves[$i].pornTypePreggo >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her swollen with child.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object swollen with child, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him swollen with child, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypePreggo*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypePreggo < 5000>> @@ -1259,7 +1259,7 @@ <<if $slaves[$i].pornTypeBBW >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her thick, soft body.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive thick and soft body, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his thick and soft body, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeBBW*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeBBW < 5000>> @@ -1269,7 +1269,7 @@ <<if $slaves[$i].pornTypeLoli >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her immature body.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive immature body, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his immature body, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeLoli*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeLoli < 5000>> @@ -1279,7 +1279,7 @@ <<if $slaves[$i].pornTypeGainer >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish how curvy she's gotten.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish how curvy <<print $pronoun>>'s gotten, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish how curvy <<print $he>>'s gotten, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeGainer*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeGainer < 5000>> @@ -1289,7 +1289,7 @@ <<if $slaves[$i].pornTypeStud >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her heavy dick.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $possessive heavy dick, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $his heavy dick, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeStud*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeStud < 5000>> @@ -1299,7 +1299,7 @@ <<if $slaves[$i].pornTypeDeepThroat >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sounds she makes when being throatfucked.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sounds $pronoun makes when being throatfucked, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sounds $he makes when being throatfucked, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeDeepThroat*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeDeepThroat < 5000>> @@ -1309,7 +1309,7 @@ <<if $slaves[$i].pornTypeStruggleFuck >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish how perfectly she struggles during sex.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish how perfectly $pronoun struggles during sex, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish how perfectly $he struggles during sex, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeStruggleFuck*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeStruggleFuck < 5000>> @@ -1319,7 +1319,7 @@ <<if $slaves[$i].pornTypePainal >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish watching her asshole pushed to its limit.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish watching $possessive asshole pushed to its limit, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish watching $his asshole pushed to its limit, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypePainal*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypePainal < 5000>> @@ -1329,7 +1329,7 @@ <<if $slaves[$i].pornTypeTease >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her lewd striptease.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive lewd striptease, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his lewd striptease, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeTease*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeTease < 5000>> @@ -1339,7 +1339,7 @@ <<if $slaves[$i].pornTypeRomantic >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the deep bond she shares with her partners.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the deep bond $pronoun shares with her partners, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the deep bond $he shares with her partners, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeRomantic*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeRomantic < 5000>> @@ -1349,7 +1349,7 @@ <<if $slaves[$i].pornTypePervert >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the depths of her pervesions.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the depths of $possessive pervesions, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the depths of $his pervesions, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypePervert*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypePervert < 5000>> @@ -1359,7 +1359,7 @@ <<if $slaves[$i].pornTypeCaring >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her devotion to her partners' pleasure.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive devotion to $possessive partners' pleasure, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his devotion to $his partners' pleasure, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeCaring*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeCaring < 5000>> @@ -1369,7 +1369,7 @@ <<if $slaves[$i].pornTypeUnflinching >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her willingness to do anything and everything.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive willingness to do anything and everything, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his willingness to do anything and everything, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeUnflinching*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeUnflinching < 5000>> @@ -1379,7 +1379,7 @@ <<if $slaves[$i].pornTypeSizeQueen >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her holes filled to their limits.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $possessive holes filled to their limits, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $his holes filled to their limits, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeSizeQueen*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeSizeQueen < 5000>> @@ -1389,7 +1389,7 @@ <<if $slaves[$i].pornTypeNeglectful >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her denying herself pleasure.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object denying <<print $object>>self pleasure, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him denying $himself pleasure, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeNeglectful*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeNeglectful < 5000>> @@ -1399,7 +1399,7 @@ <<if $slaves[$i].pornTypeCumAddict >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her doing anything for cum.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object doing anything for cum, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him doing anything for cum, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeCumAddict*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeCumAddict < 5000>> @@ -1409,7 +1409,7 @@ <<if $slaves[$i].pornTypeAnalAddict >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her doing anything for a dick up her ass.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object doing anything for a dick up $possessive ass, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him doing anything for a dick up $his ass, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeAnalAddict*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeAnalAddict < 5000>> @@ -1419,7 +1419,7 @@ <<if $slaves[$i].pornTypeAttentionWhore >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her doing anything for attention.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object doing anything for attention, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him doing anything for attention, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeAttentionWhore*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeAttentionWhore < 5000>> @@ -1429,7 +1429,7 @@ <<if $slaves[$i].pornTypeBreastGrowth >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her expanding bust.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $possessive expanding bust, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $his expanding bust, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeBreastGrowth*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeBreastGrowth < 5000>> @@ -1439,7 +1439,7 @@ <<if $slaves[$i].pornTypeAbusive >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her abusing others.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object abusing others, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him abusing others, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeAbusive*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeAbusive < 5000>> @@ -1449,7 +1449,7 @@ <<if $slaves[$i].pornTypeMalicious >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her getting off from the suffering she caused.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $object getting off from the suffering $pronoun caused, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $him getting off from the suffering $he caused, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeMalicious*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeMalicious < 5000>> @@ -1459,7 +1459,7 @@ <<if $slaves[$i].pornTypeSelfHating >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her suffering.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive suffering, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his suffering, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeSelfHating*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeSelfHating < 5000>> @@ -1469,7 +1469,7 @@ <<if $slaves[$i].pornTypeBreeder >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her obsession with having children.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive obsession with having children, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his obsession with having children, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeBreeder*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeBreeder < 5000>> @@ -1479,7 +1479,7 @@ <<if $slaves[$i].pornTypeSub >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her submissiveness.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive submissiveness, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his submissiveness, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeSub*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeSub < 5000>> @@ -1489,7 +1489,7 @@ <<if $slaves[$i].pornTypeCumSlut >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her desire for cum.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive desire for cum, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his desire for cum, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeCumSlut*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeCumSlut < 5000>> @@ -1499,7 +1499,7 @@ <<if $slaves[$i].pornTypeAnal >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her rear.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $possessive rear, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $his rear, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeAnal*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeAnal < 5000>> @@ -1509,7 +1509,7 @@ <<if $slaves[$i].pornTypeHumiliation >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her frequent humiliation.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive frequent humiliation, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his frequent humiliation, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeHumiliation*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeHumiliation < 5000>> @@ -1519,7 +1519,7 @@ <<if $slaves[$i].pornTypeBoobs >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish the sight of her breasts.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish the sight of $possessive breasts, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish the sight of $his breasts, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeBoobs*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeBoobs < 5000>> @@ -1529,7 +1529,7 @@ <<if $slaves[$i].pornTypeDom >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her dominance.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive dominance, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his dominance, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeDom*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeDom < 5000>> @@ -1539,7 +1539,7 @@ <<if $slaves[$i].pornTypeSadist >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her sadism.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive sadism, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his sadism, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeSadist*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeSadist < 5000>> @@ -1549,7 +1549,7 @@ <<if $slaves[$i].pornTypeMasochist >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her masochism.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive masochism, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his masochism, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypeMasochist*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypeMasochist < 5000>> @@ -1559,7 +1559,7 @@ <<if $slaves[$i].pornTypePregnancy >= 50000>> <<set $slaves[$i].pornPrestige = 2>> <<set $slaves[$i].pornPrestigeDesc = "She is well known from its career in slave pornography. Her many fans relish her fondness for pregnancy.">> - @@.green;$pronounCap has gained a hold in $slaves[$i].pornFameType pornography!@@ $possessiveCap many fans relish $possessive fondness for pregnancy, so it is now prestigious to own $object. + @@.green;$He has gained a hold in $slaves[$i].pornFameType pornography!@@ $His many fans relish $his fondness for pregnancy, so it is now prestigious to own $him. <<elseif _topFame.value >= $slaves[$i].pornTypePregnancy*_swapPoint>> <<set _fameSwap = 1>> <<elseif $slaves[$i].pornTypePregnancy < 5000>> @@ -1572,11 +1572,11 @@ <<if _failedStar == 1>> <<set $slaves[$i].pornPrestige = 0, $slaves[$i].pornPrestigeDesc = 0>> - @@.red;$possessiveCap popularity in $slaves[$i].pornFameType pornography has faded.@@ $pronounCap is once again relatively unknown. + @@.red;$His popularity in $slaves[$i].pornFameType pornography has faded.@@ $He is once again relatively unknown. <<set $slaves[$i].pornFameType = "none">> <</if>> <<if _fameSwap == 1>> - $possessiveCap fame in $slaves[$i].pornFameType pornography has been overwhelmed by $possessive surging popularity in other aspects. @@.yellow;$pronounCap is now better known for $possessive _topFame.type porn.@@ + $His fame in $slaves[$i].pornFameType pornography has been overwhelmed by $his surging popularity in other aspects. @@.yellow;$He is now better known for $his _topFame.type porn.@@ <<set $slaves[$i].pornFameType = _topFame.type>> <<switch _topFame.type>> <<case "generic">> @@ -1660,7 +1660,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeGeneral = 250000, $pornStarID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeGeneral>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her mid-coitus.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object mid-coitus, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him mid-coitus, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her mid-coitus">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeGeneral < 40000>> @@ -1671,7 +1671,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeFuckdoll = 250000, $pornStarFuckdollID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeFuckdoll>> <<set $slaves[$i].pornPrestigeDesc = "It is world famous for its career in slave pornography. Millions are intimately familiar with the sight of it being used.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object being used, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him being used, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing it offering itself">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeFuckdoll < 40000>> @@ -1682,7 +1682,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeRape = 250000, $pornStarRapeID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeRape>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her being raped.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object being raped, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him being raped, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her rape">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeRape < 40000>> @@ -1693,7 +1693,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypePreggo = 250000, $pornStarPreggoID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypePreggo>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her swollen with child.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object swollen with child, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him swollen with child, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her cradling her middle">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypePreggo < 40000>> @@ -1704,7 +1704,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeBBW = 250000, $pornStarBBWID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeBBW>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her thick, soft body.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive thick and soft body, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his thick and soft body, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her giving a bellyjob">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypePreggo < 40000>> @@ -1715,7 +1715,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeLoli = 250000, $pornStarLoliID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeLoli>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her immature body.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive immature body, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his immature body, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her 'innocence'">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeLoli < 40000>> @@ -1726,7 +1726,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeGainer = 250000, $pornStarGainerID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeGainer>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with how with how much weight she has gained.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with how much weight<<print $pronoun>>'s put on, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with how much weight<<print $he>>'s put on, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her trying on her old clothes">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeGainer < 40000>> @@ -1737,7 +1737,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeStud = 250000, $pornStarStudID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeStud>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her erect dick.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $possessive erect dick, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $his erect dick, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her money shot">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeStud < 40000>> @@ -1748,7 +1748,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeDeepThroat = 250000, $pornStarDeepThroatID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeDeepThroat>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sounds she makes when being throatfucked.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sounds $pronoun makes when being throatfucked, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sounds $he makes when being throatfucked, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her getting facefucked">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeDeepThroat < 40000>> @@ -1759,7 +1759,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeStruggleFuck = 250000, $pornStarStruggleFuckID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeStruggleFuck>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with how perfectly she struggles during sex.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with how perfectly $pronoun struggles during sex, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with how perfectly $he struggles during sex, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her struggling">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeStruggleFuck < 40000>> @@ -1770,7 +1770,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypePainal = 250000, $pornStarPainalID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypePainal>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with seeing her asshole pushed to its limit.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with seeing $possessive asshole pushed to its limit, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with seeing $his asshole pushed to its limit, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her taking an enormous dick up her ass">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypePainal < 40000>> @@ -1781,7 +1781,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeTease = 250000, $pornStarTeaseID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeTease>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her lewd striptease.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive lewd striptease, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his lewd striptease, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her stripping">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeTease < 40000>> @@ -1792,7 +1792,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeRomantic = 250000, $pornStarRomanticID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeRomantic>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the deep bond she shares with her partners.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the deep bond $pronoun shares with her partners, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the deep bond $he shares with her partners, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her sharing an orgasm with her partner">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeRomantic < 40000>> @@ -1803,7 +1803,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypePervert = 250000, $pornStarPervertID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypePervert>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the depths of her pervesions.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the depths of $possessive pervesions, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the depths of $his pervesions, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her doing something perverted">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypePervert < 40000>> @@ -1814,7 +1814,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeCaring = 250000, $pornStarCaringID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeCaring>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her devotion to her partners' pleasure.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive devotion to $possessive partners' pleasure, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his devotion to $his partners' pleasure, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her bringing her partner to orgasm">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeCaring < 40000>> @@ -1825,7 +1825,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeUnflinching = 250000, $pornStarUnflinchingID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeUnflinching>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her willingness to do things not repeated in polite company.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive willingness to do things not repeated in polite company, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his willingness to do things not repeated in polite company, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her doing something unmentionable">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeUnflinching < 40000>> @@ -1836,7 +1836,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeSizeQueen = 250000, $pornStarSizeQueenID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeSizeQueen>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her holes filled to their limits.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $possessive holes filled to their limits, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $his holes filled to their limits, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her belly bulging from within">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeSizeQueen < 40000>> @@ -1847,7 +1847,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeNeglectful = 250000, $pornStarNeglectfulID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeNeglectful>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her denying herself pleasure.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object denying <<print $object>>self pleasure, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him denying $himself pleasure, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her pleasing a line of partners without cuming once">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeNeglectful < 40000>> @@ -1858,7 +1858,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeCumAddict = 250000, $pornStarCumAddictID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeCumAddict>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her doing anything for cum.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object doing anything for cum, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him doing anything for cum, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her bathing in a tub of cum">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeCumAddict < 40000>> @@ -1869,7 +1869,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeAnalAddict = 250000, $pornStarAnalAddictID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeAnalAddict>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her well-versed anus.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object doing anything for a dick up $possessive ass, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him doing anything for a dick up $his ass, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her taking a series of huge cocks up her ass">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeAnalAddict < 40000>> @@ -1880,7 +1880,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeAttentionWhore = 250000, $pornStarAttentionWhoreID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeAttentionWhore>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her doing anything for attention.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object going to any length for attention, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him going to any length for attention, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her flashing strangers">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeAttentionWhore < 40000>> @@ -1891,7 +1891,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeBreastGrowth = 250000, $pornStarBreastGrowthID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeBreastGrowth>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the history of her growing bust.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with history of her growing bust, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with history of her growing bust, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her having her tits measured">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeBreastGrowth < 40000>> @@ -1902,7 +1902,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeAbusive = 250000, $pornStarAbusiveID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeAbusive>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her abusive tendencies.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive abusive tendencies, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his abusive tendencies, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " taking what she wants by force">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeAbusive < 40000>> @@ -1913,7 +1913,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeMalicious = 250000, $pornStarMaliciousID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeMalicious>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her hunger for making others suffer.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $possessive torturing others, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $his torturing others, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her tormenting her prey">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeMalicious < 40000>> @@ -1924,7 +1924,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeSelfHating = 250000, $pornStarSelfHatingID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeSelfHating>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her suffering.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $object suffering, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $him suffering, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her orgasming from pain">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeSelfHating < 40000>> @@ -1935,7 +1935,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeBreeder = 250000, $pornStarBreederID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeBreeder>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her obsession with being pregnant.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive obsession with having children, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his obsession with having children, so it is now extremely prestigious to own $him. <<if $slaves[$i].births > 0>> <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her having an orgasmic birth">> <<else>> @@ -1950,7 +1950,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeSub = 250000, $pornStarSubID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeSub>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her submissiveness.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive submissiveness, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his submissiveness, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her sumbmission">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeSub < 40000>> @@ -1961,7 +1961,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeCumSlut = 250000, $pornStarCumSlutID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeCumSlut>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her taste for cum.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive taste for cum, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his taste for cum, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her drinking a glass of cum">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeCumSlut < 40000>> @@ -1972,7 +1972,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeAnal = 250000, $pornStarAnalID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeAnal>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with the sight of her rear.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $possessive rear, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with the sight of $his rear, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her shaking her booty">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeAnal < 40000>> @@ -1983,7 +1983,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeHumiliation = 250000, $pornStarHumiliationID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeHumiliation>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her frequent humiliation.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive frequent humiliation, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his frequent humiliation, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her humiliated in public">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeHumiliation < 40000>> @@ -1994,7 +1994,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeBoobs = 250000, $pornStarBoobsID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeBoobs>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her breasts.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive breasts, so it is now extremely prestigious to own $object, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his breasts, so it is now extremely prestigious to own $him, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her bare chest">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeBoobs < 40000>> @@ -2005,7 +2005,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeDom = 250000, $pornStarDomID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeDom>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her dominant streak.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive dominant streak, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his dominant streak, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her seated upon her obediant toy">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeDom < 40000>> @@ -2016,7 +2016,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeSadist = 250000, $pornStarSadistID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeSadist>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her sadistic streak.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive sadistic streak, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his sadistic streak, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her whipping her lover">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeSadist < 40000>> @@ -2027,7 +2027,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypeMasochist = 250000, $pornStarMasochistID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypeMasochist>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her masochistic streak.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive masochistic streak, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his masochistic streak, so it is now extremely prestigious to own $him. <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her being whipped">> <<set $trinkets.push(_desc)>> <<elseif $slaves[$i].pornTypeMasochist < 40000>> @@ -2038,7 +2038,7 @@ <<set $slaves[$i].pornPrestige = 3, $slaves[$i].pornTypePregnancy = 250000, $pornStarPregnancyID = $slaves[$i].ID>> <<set $slaves[$i].pornFame = $slaves[$i].pornTypePregnancy>> <<set $slaves[$i].pornPrestigeDesc = "She is world famous for her career in slave pornography. Millions are intimately familiar with her pregnancy kink.">> - @@.green;$pronounCap has become world famous for $possessive career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $possessive pregnancy kink, so it is now extremely prestigious to own $object. + @@.green;$He has become world famous for $his career in $slaves[$i].pornFameType pornography!@@ Millions are now intimately familiar with $his pregnancy kink, so it is now extremely prestigious to own $him. <<if $slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1>> <<set _desc = "a framed shot from porn starring " + $slaves[$i].slaveName + " showing her getting knocked up">> <<elseif $slaves[$i].dick > 0>> @@ -2057,7 +2057,7 @@ <<if _failedStar == 1>> <<set $slaves[$i].pornPrestige = 1>> - @@.red;$possessiveCap popularity in $slaves[$i].pornFameType pornography has dropped considerably,@@ though $pronoun still retains a core fanbase. + @@.red;$His popularity in $slaves[$i].pornFameType pornography has dropped considerably,@@ though $he still retains a core fanbase. <<switch $slaves[$i].pornFameType>> <<case "generic">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her being used.">> @@ -2133,7 +2133,7 @@ <</if>> <<if $slaves[$i].pornPrestige > 2>> - Further paid publicity cannot increase $possessive fame, so subsidy of porn featuring $object has stopped. + Further paid publicity cannot increase $his fame, so subsidy of porn featuring $him has stopped. <<set $slaves[$i].pornFameSpending = 0>> <</if>> <</if>> @@ -2551,11 +2551,11 @@ <<if _failedStar == 1>> <<set $slaves[$i].pornPrestige = 0, $slaves[$i].pornPrestigeDesc = 0>> - With no new $slaves[$i].pornFameType content coming out, @@.red;$possessive popularity has faded away.@@ + With no new $slaves[$i].pornFameType content coming out, @@.red;$his popularity has faded away.@@ <<set $slaves[$i].pornFameType = "none">> <<elseif _failedStar == 2>> <<set $slaves[$i].pornPrestige = 1>> - With the lack of any new content, @@.red;$possessive popularity in $slaves[$i].pornFameType pornography has dropped considerably,@@ though some viewers still cling to the hope that <<print $pronoun>>'ll come back. + With the lack of any new content, @@.red;$his popularity in $slaves[$i].pornFameType pornography has dropped considerably,@@ though some viewers still cling to the hope that <<print $he>>'ll come back. <<switch $slaves[$i].pornFameType>> <<case "generic">> <<set $slaves[$i].pornPrestigeDesc = "She has a following in slave pornography. Thousands have enjoyed the sight of her being used.">> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index f400714d2e893d953be246f41bbc879449d0b33d..7d07ce606459ff43471ce59415ca377964f174c3 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -575,7 +575,7 @@ <<else>> While soaking in the spa's pool, $slaves[$i].slaveName's water breaks. As $he begins to ready herself for birth, <<if $Attendant != 0>>$Attendant.slaveName pulls her out of the pool and glares at her<<else>>the other bathers watch curiously<</if>>. <<ClothingBirth>> - $His and <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child are quickly dried off as $he begins nursing it. A servant soon arrives to take her children away. + $He and <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child are quickly dried off as $he begins nursing it. A servant soon arrives to take her children away. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 9c7b021e019bd2c2ff8eb4e8ea564ed0c8cca86e..e0c3184cf5af833f0679a1e6e0d43257619b6d81 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -910,10 +910,6 @@ <<set $arcologies[0].FSPhysicalIdealistLaw = 0>> <</if>> -<<if ndef $TCR>> - <<set $TCR = {schoolUpgrade: 0, schoolPresent: 0, schoolProsperity: 0, subsidize: 0, schoolAnnexed: 0, studentsBought: 0, schoolSale: 0}>> -<</if>> - <<if ndef $FSPromenade>> <<set $FSPromenade = {Subjugationist: 0, Supremacist: 0, GenderRadicalist: 0, GenderFundamentalist: 0, Paternalist: 0, Degradationist: 0, BodyPurist: 0, TransformationFetishist: 0, YouthPreferentialist: 0, MaturityPreferentialist: 0, SlimnessEnthusiast: 0, AssetExpansionist: 0, Pastoralist: 0, PhysicalIdealist: 0, ChattelReligionist: 0, RomanRevivalist: 0, AztecRevivalist: 0, EgyptianRevivalist: 0, EdoRevivalist: 0, ArabianRevivalist: 0, ChineseRevivalist: 0, Repopulationist: 0, Eugenics: 0, Hedonism: 0}>> <</if>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 9f684bb1fc0a738ad2cae940c3b4dce510085476..4d02ab4438b01d9f9eb6aeb693a78dc02e5742bc 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -4180,7 +4180,7 @@ The menials assigned to care for her have been struggling for several weeks to f feared how you would react. <<elseif ($activeSlave.trust < -50)>> was terrified of how you might respond. - <<else>> argued you couldn’t be trusted. + <<else>> argued you couldn't be trusted. <</if>> You make a mental note to punish her caretakers and then set out to see her predicament for yourself. <br><br> @@ -19959,19 +19959,19 @@ You tell her kindly that you understand, and that she'll be trained to address t <<link "Abuse her">> <<EventNameDelink $activeSlave>> <<replace "#result">> -You lean against a wall and take a moment to enjoy your slave’s discomfort. Realizing that her <<Master>> is intent to do nothing, she blushes and begins pulling on her belly, attempting to free herself. +You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that her <<Master>> is intent to do nothing, she blushes and begins pulling on her belly, attempting to free herself. <<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>> - Her innumerable brood are awakened by her exertions and begin to move, testing the thin walls of the womb constraining them and causing her belly to wobble ominously. You count the number of infant feet distinctly outlined against your poor hyperbroodmother’s straining womb. + Her innumerable brood are awakened by her exertions and begin to move, testing the thin walls of the womb constraining them and causing her belly to wobble ominously. You count the number of infant feet distinctly outlined against your poor hyperbroodmother's straining womb. <<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>> With a groan of effort, the broodmother manages to pull her belly slightly further out through the doorway, but, in the effort, only really manages to wedge it more firmly. It bulges ominously. <<else>> - The massively pregnant slave’s belly clutches in a false contraction and she pulls several inches further out through the doorframe before it expands again, leaving her even more hopelessly stuck + The massively pregnant slave's belly clutches in a false contraction and she pulls several inches further out through the doorframe before it expands again, leaving her even more hopelessly stuck <</if>> <br><br> <<if !canTalk($activeSlave)>> - She moans and rubs up and down what little she can reach of her belly while looking back at you with more urgency. It’s clear she is in severe distress. + She moans and rubs up and down what little she can reach of her belly while looking back at you with more urgency. It's clear she is in severe distress. <<else>> - “<<Master>>,†she says through clenched teeth. “Please.†+ "<<Master>>," she says through clenched teeth. "Please." <</if>> <br><br> You judge that sufficient time has passed and move forward. @@ -19982,7 +19982,7 @@ You judge that sufficient time has passed and move forward. <<else>> Slapping a pert ass cheek, <</if>> -you hilt yourself in her pregnant pussy and begin pounding. Her belly distorts back and forth under your vigorous ministrations before, with a “pop,†belly, slave, and owner go tumbling through the doorway. She yelps in @@.gold;shock@@ and @@.red;pain@@ as her belly smacks the ground and the sound of her 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 into her fertile, wanting pussy and then slide off of her to instruct your servants to widen the door before they carry her to her duties for the day. +you hilt yourself in her pregnant pussy and begin pounding. Her belly distorts back and forth under your vigorous ministrations before, with a "pop," belly, slave, and owner go tumbling through the doorway. She yelps in @@.gold;shock@@ and @@.red;pain@@ as her belly smacks the ground and the sound of her 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 into her fertile, wanting pussy and then slide off of her to instruct your servants to widen the door before they carry her to her duties for the day. <br> <<set $activeSlave.health -= 20, $activeSlave.trust -= 20>> <</replace>> @@ -19992,7 +19992,7 @@ you hilt yourself in her pregnant pussy and begin pounding. Her belly distorts b <<link "Fuck her">> <<EventNameDelink $activeSlave>> <<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 backward glance falls on your dick and she +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 backward glance falls on your dick and she <<if $activeSlave.devotion > 95>> licks her lips, <<if $activeSlave.amp == 1>> @@ -20017,17 +20017,17 @@ You can’t help but be aroused by the sight of your swollen, helpless slave, an snorts dersively despite her helplessness. <</if>> <br><br> -You step forward and run an appreciative hand over the surface of her belly. Her womb is packed so full that the outline of her squirming children is obvious under her stretched-thin flesh. She groans at your touch, clearly in some distress, and you promise her that you’ll free her once you’ve finished up. +You step forward and run an appreciative hand over the surface of her belly. Her womb is packed so full that the outline of her squirming children is obvious under her stretched-thin flesh. She groans at your touch, clearly in some distress, and you promise her that you'll free her once you've finished up. <<if $activeSlave.devotion > 95>> - The slave is clearly too aroused by your touch to hear what you’re saying and leans back into you, stretching against her tortured belly to nibble at your ear. + The slave is clearly too aroused by your touch to hear what you're saying and leans back into you, stretching against her tortured belly to nibble at your ear. <<elseif $activeSlave.devotion > 50>> - The slave says nothing, but wiggles her ass against your hips, making it clear she’s ready. + The slave says nothing, but wiggles her ass against your hips, making it clear she's ready. <<elseif $activeSlave.devotion > 20>> - You can see tears streaming down the slave’s face from the discomfort she’s experiencing, but she nods that she’s ready. + You can see tears streaming down the slave's face from the discomfort she's experiencing, but she nods that she's ready. <<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>> The slave cries and begs you to finish quickly and help her before she bursts. <<elseif ($activeSlave.trust < -50)>> - The shock of contact with your body causes the terrified slave’s skin to contract, as if she’s trying to pull away despite her current reality, and her only response to your promise is sobbing. + The shock of contact with your body causes the terrified slave's skin to contract, as if she's trying to pull away despite her current reality, and her only response to your promise is sobbing. <<else>> The slave <<if !canTalk($activeSlave)>> @@ -20054,20 +20054,20 @@ You step back, taking one last appreciatively look at your trapped slave, then c <</link>> <br> -<<link "Try the “Butter Strategyâ€">> +<<link "Try the "Butter Strategy"">> <<EventNameDelink $activeSlave>> <<replace "#result">> -You ponder her 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 her, you’re going to need to completely cover her in it so that she can squeeze through. +You ponder her 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 her, you're going to need to completely cover her in it so that she can squeeze through. <<if $activeSlave.devotion > 95>> She grins at you and then huffs, pretending to be put off by the idea. <<elseif $activeSlave.devotion > 50>> She quirks an eyebrow, then smiles, clearly intrigued. <<elseif $activeSlave.devotion > 20>> - She nods, happy to hear you’ve considered a way to free her without causing her undue harm. + She nods, happy to hear you've considered a way to free her without causing her undue harm. <<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>> She had seemed uneasy when you first described your idea, but seems to resign herself 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 her as quickly as possible so that she can get away from you. + The wide eyed slave nods as you describe your idea, clearly hoping you'll free her as quickly as possible so that she can get away from you. <<else>> She laughs derisively at you after you describe your idea, then motions for you to get on with it. <</if>> @@ -20079,7 +20079,7 @@ You move toward her and slather a generous helping of the stuff over her back an <<else>> petite ass, <</if>> -for the sake of “being thorough.†You then move forward, covering the parts of her belly you can reach from behind and taking special care to +for the sake of "being thorough." You then move forward, covering the parts of her belly you can reach from behind and taking special care to <<if ($activeSlave.boobs >= 20000)>> massage the soft butter into every inch of her colossal tits, noting with satisfaction as her distant nipples,stuck on the other side of the doorway with the bulk of her room filling breasts, harden with arousal. <<elseif ($activeSlave.boobs >= 12000)>> @@ -20087,7 +20087,7 @@ for the sake of “being thorough.†You then move forward, covering the parts <<elseif ($activeSlave.boobs >= 7000)>> massage the soft butter into her monstrous tits, enjoying the struggle it takes to heft each butterslick, glistening watermelon with both hands. You note with satisfaction as her nipples harden with arousal. <<elseif ($activeSlave.boobs >= 3000)>> - massage the soft butter into each of her huge, headsized tits. Your slave cranes her head back a bit to avoid being smothered by her own breasts as you work the butter into them, but you can tell she’s aroused by what you’re doing--her nipples have turned hard as rocks. + massage the soft butter into each of her huge, headsized tits. Your slave cranes her head back a bit to avoid being smothered by her own breasts as you work the butter into them, but you can tell she's aroused by what you're doing--her nipples have turned hard as rocks. <<elseif ($activeSlave.boobsImplant > 250)>> massage the soft butter into her fat, fake titties, noting with satisfaction as her nipples harden with arousal. <<elseif ($activeSlave.boobs >= 650)>> @@ -20096,9 +20096,9 @@ for the sake of “being thorough.†You then move forward, covering the parts massage the soft butter into her small, girlish chest, noting with satisfaction as her nipples harden with arousal. <</if>> <br><br> -Satisfied with your covering of your slave’s back half, you then resolve to work on her 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 squeeze up against her 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 her pressure obliterated belly button and slowly working your way up to the round oval of baby packed flesh being constricted by the doorway. +Satisfied with your covering of your slave's back half, you then resolve to work on her 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 squeeze up against her 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 her 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 her to start pulling her belly through the doorway, pushing your body up against her stomach to help push. You didn’t bother to strip your clothes while buttering her body and, as you crush up against her and heave, again and again, against the sheer mass of her 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, her 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 her containment, falling onto her back and pulling you with her into an absurd, buttery mass of flailing limbs and giggles. You take some time to flip her into a position where she won’t be crushed by the weight of her own womb, and then take some more time to enjoy the fruits of your labors. +With your slave's body dripping with the thick moisturizer, you call out to her to start pulling her belly through the doorway, pushing your body up against her stomach to help push. You didn't bother to strip your clothes while buttering her body and, as you crush up against her and heave, again and again, against the sheer mass of her 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, her 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 her containment, falling onto her back and pulling you with her into an absurd, buttery mass of flailing limbs and giggles. You take some time to flip her into a position where she won't be crushed by the weight of her 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 and instruct them to continuously expand the doorway, as necessary, to attempt to prevent her getting stuck again. <br> diff --git a/src/uncategorized/customSlave.tw b/src/uncategorized/customSlave.tw index 46625d62afd5c178479d5a3535e9a2a4c5d4a2e1..16d9105157b79303e27b21a9c151b033c53fe6f3 100644 --- a/src/uncategorized/customSlave.tw +++ b/src/uncategorized/customSlave.tw @@ -15,8 +15,10 @@ <<elseif $customSlave.age < 15>>13-14 years old. <<elseif $customSlave.age < 18>>15-17 years old. <<elseif $customSlave.age < 20>>18-19 years old. -<<elseif $customSlave.age < 25>>20-24 years old. -<<elseif $customSlave.age < 30>>25-29 years old. +<<elseif $customSlave.age < 25 && $retirementAge >= 25>>20-24 years old. +<<elseif $customSlave.age < 25 && $retirementAge >= 20>>20+ years old. +<<elseif $customSlave.age < 30 && $retirementAge >= 30>>25-29 years old. +<<elseif $customSlave.age < 30 && $retirementAge >= 25>>25+ years old. <<elseif $customSlave.age < 40 && $retirementAge >= 40>>30-39 years old. <<elseif $customSlave.age < 40 && $retirementAge >= 30>>30+ years old. <<elseif $customSlave.age < 50 && $retirementAge >= 50>>40-49 years old. @@ -25,7 +27,19 @@ <<elseif $customSlave.age < 60 && $retirementAge >= 50>>50+ years old. <<elseif $customSlave.age < 70 && $retirementAge >= 70>>60-69 years old. <<elseif $customSlave.age < 70 && $retirementAge >= 60>>60+ years old. -<<else>>70+ years old. +<<elseif $customSlave.age < 80 && $retirementAge >= 80>>70-79 years old. +<<elseif $customSlave.age < 80 && $retirementAge >= 70>>70+ years old. +<<elseif $customSlave.age < 90 && $retirementAge >= 90>>80-89 years old. +<<elseif $customSlave.age < 90 && $retirementAge >= 80>>80+ years old. +<<elseif $customSlave.age < 100 && $retirementAge >= 100>>90-99 years old. +<<elseif $customSlave.age < 100 && $retirementAge >= 90>>90+ years old. +<<elseif $customSlave.age < 110 && $retirementAge >= 110>>100-109 years old. +<<elseif $customSlave.age < 110 && $retirementAge >= 100>>100+ years old. +<<elseif $customSlave.age < 120 && $retirementAge >= 120>>110-119 years old. +<<elseif $customSlave.age < 120 && $retirementAge >= 110>>110+ years old. +<<elseif $customSlave.age < 130 && $retirementAge >= 130>>120-129 years old. +<<elseif $customSlave.age < 130 && $retirementAge >= 120>>120+ years old. +<<else>>130+ years old. <</if>> </span> <<if $minimumSlaveAge >= 0 && $minimumSlaveAge <= 2>> @@ -84,16 +98,32 @@ <</link>> | <</if>> +<<if $retirementAge >= 25>> <<link "20-24">> <<set $customSlave.age = 24>> <<CustomSlaveAge>> <</link>> | +<<elseif $retirementAge >= 20>> +<<link "20+">> + <<set $customSlave.age = 20>> + <<CustomSlaveAge>> +<</link>> +<<else>> +<</if>> +<<if $retirementAge >= 30>> <<link "25-29">> <<set $customSlave.age = 29>> <<CustomSlaveAge>> <</link>> | +<<elseif $retirementAge >= 25>> +<<link "25+">> + <<set $customSlave.age = 25>> + <<CustomSlaveAge>> +<</link>> +<<else>> +<</if>> <<if $retirementAge >= 40>> <<link "30-39">> <<set $customSlave.age = 39>> @@ -146,11 +176,89 @@ <</link>> <<else>> <</if>> -<<if $retirementAge >= 70>> +<<if $retirementAge >= 80>> +<<link "70-79">> + <<set $customSlave.age = 79>> + <<CustomSlaveAge>> +<</link>> +| +<<elseif $retirementAge >= 70>> <<link "70+">> <<set $customSlave.age = 70>> <<CustomSlaveAge>> <</link>> +<<else>> +<</if>> +<<if $retirementAge >= 90>> +<<link "80-89">> + <<set $customSlave.age = 89>> + <<CustomSlaveAge>> +<</link>> +| +<<elseif $retirementAge >= 80>> +<<link "80+">> + <<set $customSlave.age = 80>> + <<CustomSlaveAge>> +<</link>> +<<else>> +<</if>> +<<if $retirementAge >= 100>> +<<link "90-99">> + <<set $customSlave.age = 99>> + <<CustomSlaveAge>> +<</link>> +| +<<elseif $retirementAge >= 90>> +<<link "90+">> + <<set $customSlave.age = 90>> + <<CustomSlaveAge>> +<</link>> +<<else>> +<</if>> +<<if $retirementAge >= 110>> +<<link "100-109">> + <<set $customSlave.age = 109>> + <<CustomSlaveAge>> +<</link>> +| +<<elseif $retirementAge >= 100>> +<<link "100+">> + <<set $customSlave.age = 100>> + <<CustomSlaveAge>> +<</link>> +<<else>> +<</if>> +<<if $retirementAge >= 120>> +<<link "110-119">> + <<set $customSlave.age = 119>> + <<CustomSlaveAge>> +<</link>> +| +<<elseif $retirementAge >= 110>> +<<link "110+">> + <<set $customSlave.age = 110>> + <<CustomSlaveAge>> +<</link>> +<<else>> +<</if>> +<<if $retirementAge >= 130>> +<<link "120-129">> + <<set $customSlave.age = 129>> + <<CustomSlaveAge>> +<</link>> +| +<<elseif $retirementAge >= 120>> +<<link "120+">> + <<set $customSlave.age = 120>> + <<CustomSlaveAge>> +<</link>> +<<else>> +<</if>> +<<if $retirementAge >= 130>> +<<link "130+">> + <<set $customSlave.age = 130>> + <<CustomSlaveAge>> +<</link>> <</if>> <br> @@ -1034,7 +1142,7 @@ Nationality: $customSlave.nationality. <br><br> <<link "Reset custom order form">> - <<set $customSlave = {age: 19, health: 0, muscles: 0, lips: 15, heightMod: "normal", weight: 0, face: 0, race: "white", skin: 0, boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, whoreSkills: 15, combatSkills: 0, intelligence: 0, intelligenceImplant: 1, nationality: "Stateless", amp: 0, eyes: 1}>> + <<set $customSlave = {age: 19, health: 0, muscles: 0, lips: 15, heightMod: "normal", weight: 0, face: 0, race: "white", skin: "light", boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, whoreSkills: 15, combatSkills: 0, intelligence: 0, intelligenceImplant: 1, nationality: "Stateless", amp: 0, eyes: 1}>> <<goto "Custom Slave">> <</link>> diff --git a/src/uncategorized/growthResearchInstitute.tw b/src/uncategorized/growthResearchInstitute.tw index baf48742f5ef4b31ba2cdb2e87fd76548da8dbfe..309d88077a9714251a850c01dc40c87544c08bb3 100644 --- a/src/uncategorized/growthResearchInstitute.tw +++ b/src/uncategorized/growthResearchInstitute.tw @@ -7,7 +7,7 @@ <<set $nextButton = "Continue", $nextLink = "Bulk Slave Intro", $slaveMarket = "GRI", $returnTo = "Main", $newSlaveIndex = 0>> <</if>> -//The Growth Research Institute (GRI) is not primarily a slave school at all, but rather the world leader in female growth hormone development. It operates research centers in the Free Cities to avoid traditional medical research laws. GRI runs several slave schools to raise healthy, unmodified subjects for use in trials. After a year of experimental hormone treatment they are sold. <<if $GRI.schoolUpgrade != 0>><br><br>You have endowed <<if $GRI.schoolUpgrade == 1>>a research focus on advanced curatives, most subjects now leave the GRI at unnatural levels of vitality.<<else>>a research focus on milk production, subjects' breasts are bigger and milkier than ever.<</if>> As a major <<if $PC.title == 0>>benefactrix<<else>>benefactor<</if>> of the institution, you also receive a discount on them.<</if>>// +//The Growth Research Institute (GRI) is not primarily a slave school at all, but rather the world leader in female growth hormone development. It operates research centers in the Free Cities to avoid traditional medical research laws. GRI runs several slave schools to raise healthy, unmodified subjects for use in trials. After a year of experimental hormone treatment they are sold. <<if $GRI.schoolUpgrade != 0>><br><br>You have endowed <<if $GRI.schoolUpgrade == 1>>a research focus on advanced curatives; most subjects now leave the GRI at unnatural levels of vitality.<<else>>a research focus on milk production; subjects' breasts are bigger and milkier than ever.<</if>> As a major <<if $PC.title == 0>>benefactrix<<else>>benefactor<</if>> of the institution, you also receive a discount on them.<</if>>// <br><br>GRI offers a fresh graduate for inspection via video call. The interview takes place in the graduate's bare-metal holding cell. Disturbingly, it is strongly reminiscent of an enclosure for a lab animal, only scaled up to contain a lab animal of human dimensions. diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index 1ddaed2d5559985380834f06db80c1df5f88a187..312b71f328abae6462c559894cd8607faa7fde44 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -2160,9 +2160,9 @@ $His scars make $him look like $he's in the right place. <<elseif $activeSlave.balls >= 50>> <<if ($activeSlave.amp != 1)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as a thick cascade of cum pours from the tip of $his cock. The HA-HGH must be having an effect, painfully expanding $his testicles. <<elseif $activeSlave.balls >= 37>> - <<if ($activeSlave.amp != 1)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as cum freely flows from the tip of $his cock, pooling under $his. The HA-HGH must be having an effect, painfully expanding $his testicles. + <<if ($activeSlave.amp != 1)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as cum freely flows from the tip of $his cock, pooling under $him. The HA-HGH must be having an effect, painfully expanding $his testicles. <<elseif $activeSlave.balls >= 20>> - <<if ($activeSlave.amp != 1)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as precum pools under $his. The HA-HGH must be having an effect, painfully expanding $his testicles. + <<if ($activeSlave.amp != 1)>>$He massages $his balls uncomfortably<<else>>$He squirms in response to the pressure in $his balls<</if>> as precum pools under $him. The HA-HGH must be having an effect, painfully expanding $his testicles. <</if>> <<case "female hormone injections" "male hormone injections">> $He looks very ill, likely a side effect of the extreme hormone injections. diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw index 594683b87479f6d41970994265d6f2ef3fd63cb6..e22d84cd8a514cb57ec7c08b3aa84c3bc9025ebf 100644 --- a/src/uncategorized/matchmaking.tw +++ b/src/uncategorized/matchmaking.tw @@ -33,17 +33,20 @@ Their relationship would probably be somewhat artificial at first, and they'd ha You could marry her yourself, but that would have to wait, since you already have a wedding planned this week. <<else>> Of course, you could marry her yourself, since you've decide to enable marriage between slaves and owners in your domain. Marriage with her wouldn't be binding, of course, since she'd still be a slave. She'd probably be pleased, however. + <<link "Marry her">> <<replace "#result">> +<<run Enunciate($eventSlave)>> + <<set $weddingSlaveID = $eventSlave.ID>> You tell $eventSlave.slaveName that you're going to marry her. (A proposal, of course, would be inappropriate, even in so enlightened a place as your arcology.) You're not exactly lacking in ways to make <<if $eventSlave.actualAge > 30>>women<<else>>girls<</if>> burst into tears, but this one is unusually effective. When she's gotten herself under control again, <<if $eventSlave.amp == 1>>looking somewhat embarrassed that she can't wipe her own tears<<else>>distractedly cuffing away her tears<</if>> and consciously breathing deeply, <<if canTalk($eventSlave)>> - she says, "Thank you, <<Master $eventSlave>>. I am going to do my <<if SlaveStatsChecker.checkForLisp($eventSlave)>>betht<<else>>best<</if>> to be a + she says, "Thank you, <<Master>>. I am going to do my be<<s>>t to be a <<if ($eventSlave.fetishKnown == 1) && ($eventSlave.fetishStrength > 60)>> <<if ($eventSlave.fetish == "submissive")>> - perfect submissive wife to you, + perfect <<s>>ubmi<<ss>>ive wife to you, <<elseif ($eventSlave.fetish == "cumslut")>> perfect oral wifey, <<elseif ($eventSlave.fetish == "humiliation")>> @@ -55,9 +58,9 @@ You tell $eventSlave.slaveName that you're going to marry her. (A proposal, of c <<elseif ($eventSlave.fetish == "pregnancy")>> perfect barefoot breeding wife, <<elseif ($eventSlave.fetish == "dom")>> - perfect, you know, sharing wife with other <<if SlaveStatsChecker.checkForLisp($eventSlave)>>thlaveth<<else>>slaves<</if>>, + perfect, you know, <<s>>haring wife with other <<s>>lave<<s>>, <<elseif ($eventSlave.fetish == "sadist")>> - perfect wife to <<if SlaveStatsChecker.checkForLisp($eventSlave)>>uthe on other thlaveth<<else>>use on other slaves<</if>>, + perfect wife to u<<s>>e on other <<s>>lave<<s>>, <<elseif ($eventSlave.fetish == "masochist")>> good, beaten wife, <<else>> @@ -66,7 +69,7 @@ You tell $eventSlave.slaveName that you're going to marry her. (A proposal, of c <<else>> good wife, <</if>> - <<Master $eventSlave>>. Oh, thank you, <<Master $eventSlave>>," she blubbers, and starts crying again. + <<Master>>. Oh, thank you, <<Master>>," she blubbers, and starts crying again. <<elseif $eventSlave.amp != 1>> she shakily signs her thanks twice in a row before breaking down again. <<else>> diff --git a/src/uncategorized/randomIndividualEvent.tw b/src/uncategorized/randomIndividualEvent.tw index 5a5b7f2057c0a6e3ad27ceee7bd2fe9c13985f11..fd287d76a0b66432a50b214993e0e3ec06b90972 100644 --- a/src/uncategorized/randomIndividualEvent.tw +++ b/src/uncategorized/randomIndividualEvent.tw @@ -2,146 +2,146 @@ <<set $showEncyclopedia = 0>> <<if $eventSlave == 0>> - <<if $cheatMode == 1>> - <<set $nextButton = "Refresh", $nextLink = "Random Individual Event", $returnTo = "Random Individual Event">> - ''One of the following eligible slaves would have been selected for an individual random event:'' - <br> - <<for $i = 0; $i < $eligibleSlaves.length; $i++>> - <<capture $i>> - <<set $eventSlave = getSlave($eligibleSlaves[$i])>> - <<if $eventSlave.slaveSurname>> - <<if $surnameOrder != 1>> - <<switch $eventSlave.nationality>> - <<case "Cambodian" "Chinese" "Hungarian" "Japanese" "Korean" "Mongolian" "Taiwanese" "Vietnamese">> - <<set _slaveName = $eventSlave.slaveSurname + " " + $eventSlave.slaveName>> - <<default>> - <<set _slaveName = $eventSlave.slaveName + " " + $eventSlave.slaveSurname>> - <</switch>> + <<if $cheatMode == 1>> + <<set $nextButton = "Refresh", $nextLink = "Random Individual Event", $returnTo = "Random Individual Event">> + ''One of the following eligible slaves would have been selected for an individual random event:'' + <br> + <<for $i = 0; $i < $eligibleSlaves.length; $i++>> + <<capture $i>> + <<set $eventSlave = getSlave($eligibleSlaves[$i])>> + <<if $eventSlave.slaveSurname>> + <<if $surnameOrder != 1>> + <<switch $eventSlave.nationality>> + <<case "Cambodian" "Chinese" "Hungarian" "Japanese" "Korean" "Mongolian" "Taiwanese" "Vietnamese">> + <<set _slaveName = $eventSlave.slaveSurname + " " + $eventSlave.slaveName>> + <<default>> + <<set _slaveName = $eventSlave.slaveName + " " + $eventSlave.slaveSurname>> + <</switch>> + <<else>> + <<set _slaveName = $eventSlave.slaveName + " " + $eventSlave.slaveSurname>> + <</if>> <<else>> - <<set _slaveName = $eventSlave.slaveName + " " + $eventSlave.slaveSurname>> + <<set _slaveName = $eventSlave.slaveName>> <</if>> - <<else>> - <<set _slaveName = $eventSlave.slaveName>> - <</if>> - <br><<print "[[_slaveName|Random Individual Event][$eventSlave = getSlave($eligibleSlaves[$i])]]">> - <</capture>> - <</for>> - <br><br>[[Switch to Random Nonindividual Event|Random Nonindividual Event][$activeSlave = 0, $eventSlave = 0]] - <<else>> - <<set $eventSlave = getSlave($eligibleSlaves.random())>> - <<goto "Random Individual Event">> - <</if>> + <br><<print "[[_slaveName|Random Individual Event][$eventSlave = getSlave($eligibleSlaves[$i])]]">> + <</capture>> + <</for>> + <br><br>[[Switch to Random Nonindividual Event|Random Nonindividual Event][$activeSlave = 0, $eventSlave = 0]] + <<else>> + <<set $eventSlave = getSlave($eligibleSlaves.random())>> + <<goto "Random Individual Event">> + <</if>> <<else>> -/* initialize event lists as arrays [], not objects {} */ -<<set $events = [], $RESSevent = [], $RESSTRevent = [], $RETSevent = [], $RECIevent = [], $activeSlave = 0, $groomSlave = 0, $brideSlave = 0, $legendaryFacility = 0>> + /* initialize event lists as arrays [], not objects {} */ + <<set $events = [], $RESSevent = [], $RESSTRevent = [], $RETSevent = [], $RECIevent = [], $activeSlave = 0, $groomSlave = 0, $brideSlave = 0, $legendaryFacility = 0>> -/* SUB CHECKS */ + /* SUB CHECKS */ -<<set $REAnalCowgirlSubIDs = [], $RETasteTestSubIDs = [], $RESimpleAssaultIDs = [], $REInterslaveBeggingIDs = [], $RECockmilkInterceptionIDs = [], $REShowerForceSubIDs = [], $RESadisticDescriptionSubIDs = [], $REIfYouEnjoyItSubIDs = [], $REBoobCollisionSubIDs = [], $RERepressedAnalVirginSubIDs = []>> + <<set $REAnalCowgirlSubIDs = [], $RETasteTestSubIDs = [], $RESimpleAssaultIDs = [], $REInterslaveBeggingIDs = [], $RECockmilkInterceptionIDs = [], $REShowerForceSubIDs = [], $RESadisticDescriptionSubIDs = [], $REIfYouEnjoyItSubIDs = [], $REBoobCollisionSubIDs = [], $RERepressedAnalVirginSubIDs = []>> -<<for $i = 0; $i < $slaves.length; $i++>> -<<if $slaves[$i].fetish != "mindbroken">> - <<if canWalk($slaves[$i])>> - <<if canTalk($slaves[$i])>> - <<if isSlaveAvailable($slaves[$i])>> - <<if $slaves[$i].devotion <= 20>> - <<if ($slaves[$i].fetish != "buttslut") || ($slaves[$i].fetishKnown == 0)>> - <<if $slaves[$i].anus != 0>> - <<set $REShowerForceSubIDs.push($slaves[$i].ID)>> - <<set $REIfYouEnjoyItSubIDs.push($slaves[$i].ID)>> - <<else>> - <<set $RESadisticDescriptionSubIDs.push($slaves[$i].ID)>> - <</if>> - <</if>> - <<if $slaves[$i].anus != 0 && canDoAnal($slaves[$i])>> - <<if $slaves[$i].vagina != 0 && canDoVaginal($slaves[$i])>> - <<if $slaves[$i].belly < 2000>> - <<if $slaves[$i].combatSkill == 0>> - <<if $slaves[$i].muscles <= 30>> - <<set $RESimpleAssaultIDs.push($slaves[$i].ID)>> - <</if>> - <</if>> - <</if>> + <<for $i = 0; $i < $slaves.length; $i++>> + <<if $slaves[$i].fetish != "mindbroken">> + <<if canWalk($slaves[$i])>> + <<if canTalk($slaves[$i])>> + <<if isSlaveAvailable($slaves[$i])>> + <<if $slaves[$i].devotion <= 20>> + <<if ($slaves[$i].fetish != "buttslut") || ($slaves[$i].fetishKnown == 0)>> + <<if $slaves[$i].anus != 0>> + <<set $REShowerForceSubIDs.push($slaves[$i].ID)>> + <<set $REIfYouEnjoyItSubIDs.push($slaves[$i].ID)>> + <<else>> + <<set $RESadisticDescriptionSubIDs.push($slaves[$i].ID)>> + <</if>> + <</if>> + <<if $slaves[$i].anus != 0 && canDoAnal($slaves[$i])>> + <<if $slaves[$i].vagina != 0 && canDoVaginal($slaves[$i])>> + <<if $slaves[$i].belly < 2000>> + <<if $slaves[$i].combatSkill == 0>> + <<if $slaves[$i].muscles <= 30>> + <<set $RESimpleAssaultIDs.push($slaves[$i].ID)>> + <</if>> + <</if>> + <</if>> + <</if>> + <</if>> + <<else>> + <<if $slaves[$i].boobs > 3000>> + <<set $REBoobCollisionSubIDs.push($slaves[$i].ID)>> + <</if>> + <<if $slaves[$i].releaseRules != "restrictive" && $slaves[$i].releaseRules != "masturbation">> + <<if $slaves[$i].energy > 40>> + <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> + <<set $REInterslaveBeggingIDs.push($slaves[$i].ID)>> + <</if>> + <</if>> + <</if>> + <</if>> + <<if $slaves[$i].devotion >= -20>> + <<if $slaves[$i].devotion <= 60>> + <<if $slaves[$i].fetish != "buttslut">> + <<if $slaves[$i].anus != 0 && canDoAnal($slaves[$i])>> + <<set $REAnalCowgirlSubIDs.push($slaves[$i].ID)>> + <</if>> + <</if>> + <</if>> + <</if>> + <</if>> + <<if $slaves[$i].assignmentVisible == 1>> + <<if $slaves[$i].livingRules == "luxurious">> + <<if $slaves[$i].devotion >= -20>> + <<if $slaves[$i].anus != 0>> + <<set $RETasteTestSubIDs.push($slaves[$i].ID)>> + <</if>> + <</if>> + <</if>> + <</if>> + <<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i])>> + <<if $slaves[$i].devotion > 50>> + <<if $slaves[$i].amp == 0>> + <<set $RERepressedAnalVirginSubIDs.push($slaves[$i].ID)>> + <</if>> + <</if>> + <</if>> <</if>> - <</if>> - <<else>> - <<if $slaves[$i].boobs > 3000>> - <<set $REBoobCollisionSubIDs.push($slaves[$i].ID)>> - <</if>> - <<if $slaves[$i].releaseRules != "restrictive" && $slaves[$i].releaseRules != "masturbation">> - <<if $slaves[$i].energy > 40>> - <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> - <<set $REInterslaveBeggingIDs.push($slaves[$i].ID)>> - <</if>> - <</if>> - <</if>> - <</if>> - <<if $slaves[$i].devotion >= -20>> - <<if $slaves[$i].devotion <= 60>> - <<if $slaves[$i].fetish != "buttslut">> - <<if $slaves[$i].anus != 0 && canDoAnal($slaves[$i])>> - <<set $REAnalCowgirlSubIDs.push($slaves[$i].ID)>> - <</if>> - <</if>> - <</if>> <</if>> - <</if>> - <<if $slaves[$i].assignmentVisible == 1>> - <<if $slaves[$i].livingRules == "luxurious">> - <<if $slaves[$i].devotion >= -20>> - <<if $slaves[$i].anus != 0>> - <<set $RETasteTestSubIDs.push($slaves[$i].ID)>> + <<if $slaves[$i].assignment == "work in the dairy" || $slaves[$i].assignment == "get milked">> + <<if $slaves[$i].balls>> + <<if $slaves[$i].dick>> + <<if $slaves[$i].vasectomy == 0 && $slaves[$i].ballType == "human">> + <<if canDoAnal($slaves[$i])>> + <<set $RECockmilkInterceptionIDs.push($slaves[$i].ID)>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> - <</if>> - <</if>> - <<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i])>> - <<if $slaves[$i].devotion > 50>> - <<if $slaves[$i].amp == 0>> - <<set $RERepressedAnalVirginSubIDs.push($slaves[$i].ID)>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <<if $slaves[$i].assignment == "work in the dairy" || $slaves[$i].assignment == "get milked">> - <<if $slaves[$i].balls>> - <<if $slaves[$i].dick>> - <<if $slaves[$i].vasectomy == 0 && $slaves[$i].ballType == "human">> - <<if canDoAnal($slaves[$i])>> - <<set $RECockmilkInterceptionIDs.push($slaves[$i].ID)>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> -<</if>> -<</for>> + <</for>> -<<if $eventSlave.assignment == "be a servant">> - <<run generateRandomEventPoolServant($eventSlave)>> -<<else>> - <<run generateRandomEventPoolStandard($eventSlave)>> -<</if>> + <<if $eventSlave.assignment == "be a servant">> + <<run generateRandomEventPoolServant($eventSlave)>> + <<else>> + <<run generateRandomEventPoolStandard($eventSlave)>> + <</if>> -/* EVENT STRIPPING */ -/* obsolete? Slave is chosen before this is ever reached and as such has no use? -<<if $normalizedEvents == 1>> - <<for $i = 0; $i < $events.length; $i++>> - <<if $events.count($events[$i]) > 1>> - <<set $events.deleteAt($i), $i-->> + /* EVENT STRIPPING */ + /* obsolete? Slave is chosen before this is ever reached and as such has no use? + <<if $normalizedEvents == 1>> + <<for $i = 0; $i < $events.length; $i++>> + <<if $events.count($events[$i]) > 1>> + <<set $events.deleteAt($i), $i-->> + <</if>> + <</for>> <</if>> - <</for>> -<</if>> -*/ -/* EVENT RANDOMIZATION */ -<<set $events = populateEventArray()>> + */ + /* EVENT RANDOMIZATION */ + <<set $events = populateEventArray()>> -<<if $cheatMode == 1>> - <<goto "random event select">> -<<else>> - <<goto "random event roll">> -<</if>> + <<if $cheatMode == 1>> + <<goto "random event select">> + <<else>> + <<goto "random event roll">> + <</if>> <</if>> /* CLOSES SLAVE SELECT */ diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index c430ded490e617e82be846b00935016a6f9506e3..a5ae95cd4c8af95d971eeec303e3e81ef0cead21 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -2,1309 +2,1310 @@ <<set $showEncyclopedia = 0>> <<if $eventSlave == 0>> - <<set $eventSlave = $slaves.random()>> - <<if $cheatMode == 1>> - <<set $nextButton = "Refresh", $nextLink = "Random Nonindividual Event", $returnTo = "Random Nonindividual Event">> - ''Any one of your slaves would have been selected for a random non-individual event:'' - <br> - <<for $i = 0; $i < $slaves.length; $i++>> - <<if $slaves[$i].slaveSurname>> - <<if $surnameOrder != 1>> - <<switch $slaves[$i].nationality>> - <<case "Cambodian" "Chinese" "Hungarian" "Japanese" "Korean" "Mongolian" "Taiwanese" "Vietnamese">> - <<set _slaveName = $slaves[$i].slaveSurname + " " + $slaves[$i].slaveName>> - <<default>> - <<set _slaveName = $slaves[$i].slaveName + " " + $slaves[$i].slaveSurname>> - <</switch>> + <<set $eventSlave = $slaves.random()>> + <<if $cheatMode == 1>> + <<set $nextButton = "Refresh", $nextLink = "Random Nonindividual Event", $returnTo = "Random Nonindividual Event">> + ''Any one of your slaves would have been selected for a random non-individual event:'' + <br> + <<for $i = 0; $i < $slaves.length; $i++>> + <<if $slaves[$i].slaveSurname>> + <<if $surnameOrder != 1>> + <<switch $slaves[$i].nationality>> + <<case "Cambodian" "Chinese" "Hungarian" "Japanese" "Korean" "Mongolian" "Taiwanese" "Vietnamese">> + <<set _slaveName = $slaves[$i].slaveSurname + " " + $slaves[$i].slaveName>> + <<default>> + <<set _slaveName = $slaves[$i].slaveName + " " + $slaves[$i].slaveSurname>> + <</switch>> + <<else>> + <<set _slaveName = $slaves[$i].slaveName + " " + $slaves[$i].slaveSurname>> + <</if>> <<else>> - <<set _slaveName = $slaves[$i].slaveName + " " + $slaves[$i].slaveSurname>> + <<set _slaveName = $slaves[$i].slaveName>> <</if>> - <<else>> - <<set _slaveName = $slaves[$i].slaveName>> - <</if>> - <br><<print "[[_slaveName|Random Nonindividual Event][$eventSlave = $slaves[" + $i + "]]]">> - <</for>> - <br><br>[[Switch to RIE Eligibility Check|RIE Eligibility Check][$activeSlave = 0, $eventSlave = 0]] - <<else>> - <<goto "Random Nonindividual Event">> - <</if>> -<<else>> -<<silently>> -/* initialize event lists as arrays [], not objects {} */ -<<set $events = [], $RecETSevent = [], $REFIevent = [], $PESSevent = [], $PETSevent = [], $REFSevent = [], $activeSlave = 0, $groomSlave = 0, $brideSlave = 0, $recruiterSlave = 0>> - -<<set $seed = 0>> - -<<if $eventSlave.fuckdoll == 0>> - -<<if $nicknamesAllowed == 1>> -<<if $eventSlave.assignment != "be confined in the arcade">> -<<set $toSearch = $eventSlave.slaveName.toLowerCase()>> -<<if ($toSearch.indexOf("'") == -1)>> - <<if ($week-$eventSlave.weekAcquired >= 4)>> - <<if ($eventSlave.devotion >= -20)>> - <<set $events.push("RE nickname")>> - <<set $events.push("RE nickname")>> - <<set $events.push("RE nickname")>> - <<set $events.push("RE nickname")>> - <<set $seed = 1>> /* tells RE nickname to set nextLink to RIE Eligibility Check */ + <br><<print "[[_slaveName|Random Nonindividual Event][$eventSlave = $slaves[" + $i + "]]]">> + <</for>> + <br><br>[[Switch to RIE Eligibility Check|RIE Eligibility Check][$activeSlave = 0, $eventSlave = 0]] <<else>> - <<set $events.push("RE nickname")>> - <<set $events.push("RE nickname")>> - <<set $seed = 1>> /* tells RE nickname to set nextLink to RIE Eligibility Check */ - <</if>> - <</if>> -<</if>> /* closes nickname check */ -<</if>> -<</if>> /* closes no nicknames option */ - -<</if>> /* CLOSES FUCKDOLL CHECK */ - -<<set $legendaryFacility = 1>> -<<if $legendaryWhoreID != 0>> - <<set $events.push("RE legendary whore")>> -<</if>> -<<if $legendaryEntertainerID != 0>> - <<set $events.push("RE legendary entertainer")>> -<</if>> -<<if $legendaryCowID != 0>> - <<set $events.push("RE legendary cow")>> -<</if>> -<<if $legendaryBallsID != 0>> - <<set $events.push("RE legendary balls")>> -<</if>> -<<if $legendaryWombID != 0>> - <<set $events.push("RE legendary womb")>> -<</if>> -<<if $legendaryAbolitionistID != 0>> -<<set $events.push("RE former abolitionist")>> -<</if>> - -<<if $shelterAbuse <= 5>> -<<if $shelterGirlsIDs.length > 0>> -<<set $events.push("RE shelter inspection")>> -<</if>> -<</if>> - -/* Relationship Events */ - -<<if $familyTesting == 0>> - -<<set _relatedSlaves = $slaves.filter(function(s) { return s.relation != 0; })>> - -<<set _devMothers = _relatedSlaves.filter(function(s) { return s.relation == "mother" && s.devotion > 50 && s.anus != 0 && s.relationshipTarget != s.relationTarget && canWalk(s); })>> -<<for _devMothers.length > 0>> - <<set $devMother = _devMothers.pluck()>> - <<set $devDaughter = getSlave($devMother.relationTarget)>> - <<if (def $devDaughter) && $devDaughter.devotion > 50 && $devDaughter.anus != 0 && canWalk($devDaughter)>> - <<set $events.push("RE devoted mother daughter")>> - <<set $devMother = $devMother.ID>> - <<set $devDaughter = $devDaughter.ID>> - <<break>> - <</if>> -<</for>> - -<<set _resMothers = _relatedSlaves.filter(function(s) { return s.relation == "mother" && s.devotion < 10 && s.anus != 0 && s.relationshipTarget != s.relationTarget && canWalk(s); })>> -<<for _resMothers.length > 0>> - <<set $mother = _resMothers.pluck()>> - <<set $daughter = getSlave($mother.relationTarget)>> - <<if (def $daughter) && $daughter.devotion < 10 && $daughter.anus != 0 && canWalk($daughter)>> - <<set $events.push("RE resistant mother daughter")>> - <<set $mother = $mother.ID>> - <<set $daughter = $daughter.ID>> - <<break>> - <</if>> -<</for>> - -<<set _youngerSisters = _relatedSlaves.filter(function(s) { return s.relation == "sister" && canPenetrate(s); })>> -<<for _youngerSisters.length > 0>> - <<set $youngerSister = _youngerSisters.pluck()>> - <<set $olderSister = getSlave($youngerSister.relationTarget)>> - <<if (def $olderSister) && $olderSister.anus == 0 && $youngerSister.devotion > ($olderSister.devotion+20)>> - <<set $events.push("RE sibling revenge")>> - <<set $youngerSister = $youngerSister.ID>> - <<set $olderSister = $olderSister.ID>> - <<break>> - <</if>> -<</for>> - -<<set _twins = _relatedSlaves.filter(function(s) { return s.relation == "twin" && s.anus > 0 && s.devotion > 50 && canWalk(s); })>> -<<for _twins.length > 0>> - <<set $alphaTwin = _twins.pluck()>> - <<set $betaTwin = getSlave($alphaTwin.relationTarget)>> - <<if (def $betaTwin) && $betaTwin.anus > 0 && $betaTwin.devotion > 50 && canWalk($betaTwin)>> - <<set $events.push("RE devoted twins")>> - <<set $alphaTwin = $alphaTwin.ID>> - <<set $betaTwin = $betaTwin.ID>> - <<break>> - <</if>> -<</for>> - -<<else>> /* $familyTesting == 1 */ - -<<set _relatedSlaves = $slaves.filter(function(s) { return s.daughters > 0 || s.sisters > 0; })>> - -<<set _devMothers = _relatedSlaves.filter(function(s) { return s.daughters > 0 && s.devotion > 50 && s.anus != 0 && canWalk(s); })>> -<<for _devMothers.length > 0>> - <<set $devMother = _devMothers.pluck()>> - <<set $devDaughter = randomDaughter($devMother)>> - <<if (def $devDaughter) && ($devDaughter.devotion > 50) && ($devDaughter.anus != 0) && canWalk($devDaughter)>> - <<set $events.push("RE devoted mother daughter")>> - <<set $devMother = $devMother.ID>> - <<set $devDaughter = $devDaughter.ID>> - <<break>> - <</if>> -<</for>> - -<<set _resMothers = _relatedSlaves.filter(function(s) { return s.daughters > 0 && s.devotion < 10 && s.anus != 0 && canWalk(s); })>> -<<for _resMothers.length > 0>> - <<set $mother = _resMothers.pluck()>> - <<set $daughter = randomDaughter($mother)>> - <<if (def $daughter) && ($daughter.devotion < 10) && ($daughter.anus != 0) && canWalk($daughter)>> - <<set $events.push("RE resistant mother daughter")>> - <<set $mother = $mother.ID>> - <<set $daughter = $daughter.ID>> - <<break>> - <</if>> -<</for>> - -<<set _youngerSisters = _relatedSlaves.filter(function(s) { return s.sisters > 0 && canPenetrate(s); })>> -<<for _youngerSisters.length > 0>> - <<set $youngerSister = _youngerSisters.pluck()>> - <<set $olderSister = randomSister($youngerSister)>> - <<if (def $olderSister) && ($olderSister.anus == 0) && $youngerSister.devotion > ($olderSister.devotion+20)>> - <<set $events.push("RE sibling revenge")>> - <<set $youngerSister = $youngerSister.ID>> - <<set $olderSister = $olderSister.ID>> - <<break>> - <</if>> -<</for>> - -<<set _twins = _relatedSlaves.filter(function(s) { return s.sisters > 0 && s.anus > 0 && s.devotion > 50 && canWalk(s); })>> -<<for _twins.length > 0>> - <<set $alphaTwin = _twins.pluck()>> - <<set $betaTwin = randomTwinSister($alphaTwin)>> - <<if (def $betaTwin) && ($betaTwin.anus > 0) && ($betaTwin.devotion > 50) && canWalk($betaTwin)>> - <<set $events.push("RE devoted twins")>> - <<set $alphaTwin = $alphaTwin.ID>> - <<set $betaTwin = $betaTwin.ID>> - <<break>> - <</if>> -<</for>> - -<</if>> /* closes extended family mode */ - -/* Fetish Interest Events */ - -<<set $buttslutID = 0, $cumslutID = 0, $humiliationID = 0, $subID = 0, $pregnancyID = 0, $masochistID = 0, $boobsID = 0>> - -<<for $i = 0; $i < $slaves.length; $i++>> - <<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 95) && isSlaveAvailable($slaves[$i])>> - <<if ($slaves[$i].fetish == "buttslut")>> - <<if $buttslutID == 0>> - <<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i])>> - <<set $buttslutID = $slaves[$i].ID>> - <</if>> - <</if>> - <<elseif ($slaves[$i].fetish == "cumslut")>> - <<if ($cumslutID == 0)>> - <<if !["dildo gag", "massive dildo gag", "ball gag", "bit gag"].includes($slaves[$i].collar)>> - <<set $cumslutID = $slaves[$i].ID>> - <</if>> - <</if>> - <<elseif ($slaves[$i].fetish == "submissive")>> - <<if ($subID == 0)>> - <<if (($slaves[$i].anus > 0 && canDoAnal($slaves[$i])) || ($slaves[$i].vagina > 0 && canDoVaginal($slaves[$i])) && $slaves[$i].belly < 30000)>> - <<set $subID = $slaves[$i].ID>> - <</if>> + <<goto "Random Nonindividual Event">> + <</if>> +<<else>> + <<silently>> + /* initialize event lists as arrays [], not objects {} */ + <<set $events = [], $RecETSevent = [], $REFIevent = [], $PESSevent = [], $PETSevent = [], $REFSevent = [], $activeSlave = 0, $groomSlave = 0, $brideSlave = 0, $recruiterSlave = 0>> + + <<set $seed = 0>> + + <<if $eventSlave.fuckdoll == 0>> + + <<if $nicknamesAllowed == 1>> + <<if $eventSlave.assignment != "be confined in the arcade">> + <<set $toSearch = $eventSlave.slaveName.toLowerCase()>> + <<if ($toSearch.indexOf("'") == -1)>> + <<if ($week-$eventSlave.weekAcquired >= 4)>> + <<if ($eventSlave.devotion >= -20)>> + <<set $events.push("RE nickname")>> + <<set $events.push("RE nickname")>> + <<set $events.push("RE nickname")>> + <<set $events.push("RE nickname")>> + <<set $seed = 1>> /* tells RE nickname to set nextLink to RIE Eligibility Check */ + <<else>> + <<set $events.push("RE nickname")>> + <<set $events.push("RE nickname")>> + <<set $seed = 1>> /* tells RE nickname to set nextLink to RIE Eligibility Check */ + <</if>> + <</if>> + <</if>> /* closes nickname check */ <</if>> - <<elseif ($slaves[$i].fetish == "humiliation")>> - <<if (($slaves[$i].anus > 0 && canDoAnal($slaves[$i])) || ($slaves[$i].vagina > 0 && canDoVaginal($slaves[$i])) && $slaves[$i].belly < 30000)>> - <<if ($humiliationID == 0)>> - <<set $humiliationID = $slaves[$i].ID>> - <</if>> + <</if>> /* closes no nicknames option */ + + <</if>> /* CLOSES FUCKDOLL CHECK */ + + <<set $legendaryFacility = 1>> + <<if $legendaryWhoreID != 0>> + <<set $events.push("RE legendary whore")>> + <</if>> + <<if $legendaryEntertainerID != 0>> + <<set $events.push("RE legendary entertainer")>> + <</if>> + <<if $legendaryCowID != 0>> + <<set $events.push("RE legendary cow")>> + <</if>> + <<if $legendaryBallsID != 0>> + <<set $events.push("RE legendary balls")>> + <</if>> + <<if $legendaryWombID != 0>> + <<set $events.push("RE legendary womb")>> + <</if>> + <<if $legendaryAbolitionistID != 0>> + <<set $events.push("RE former abolitionist")>> + <</if>> + + <<if $shelterAbuse <= 5>> + <<if $shelterGirlsIDs.length > 0>> + <<set $events.push("RE shelter inspection")>> + <</if>> + <</if>> + + /* Relationship Events */ + + <<if $familyTesting == 0>> + + <<set _relatedSlaves = $slaves.filter(function(s) { return s.relation != 0; })>> + + <<set _devMothers = _relatedSlaves.filter(function(s) { return s.relation == "mother" && s.devotion > 50 && s.anus != 0 && s.relationshipTarget != s.relationTarget && canWalk(s); })>> + <<for _devMothers.length > 0>> + <<set $devMother = _devMothers.pluck()>> + <<set $devDaughter = getSlave($devMother.relationTarget)>> + <<if (def $devDaughter) && $devDaughter.devotion > 50 && $devDaughter.anus != 0 && canWalk($devDaughter)>> + <<set $events.push("RE devoted mother daughter")>> + <<set $devMother = $devMother.ID>> + <<set $devDaughter = $devDaughter.ID>> + <<break>> <</if>> - <<elseif ($slaves[$i].fetish == "boobs")>> - <<if ($slaves[$i].lactation > 0)>> - <<if ($boobsID == 0)>> - <<set $boobsID = $slaves[$i].ID>> - <</if>> + <</for>> + + <<set _resMothers = _relatedSlaves.filter(function(s) { return s.relation == "mother" && s.devotion < 10 && s.anus != 0 && s.relationshipTarget != s.relationTarget && canWalk(s); })>> + <<for _resMothers.length > 0>> + <<set $mother = _resMothers.pluck()>> + <<set $daughter = getSlave($mother.relationTarget)>> + <<if (def $daughter) && $daughter.devotion < 10 && $daughter.anus != 0 && canWalk($daughter)>> + <<set $events.push("RE resistant mother daughter")>> + <<set $mother = $mother.ID>> + <<set $daughter = $daughter.ID>> + <<break>> <</if>> - <<elseif ($slaves[$i].fetish == "pregnancy")>> - <<if ($pregnancyID == 0)>> - <<if ($slaves[$i].bellyPreg >= 5000)>> - <<set $pregnancyID = $slaves[$i].ID>> - <</if>> + <</for>> + + <<set _youngerSisters = _relatedSlaves.filter(function(s) { return s.relation == "sister" && canPenetrate(s); })>> + <<for _youngerSisters.length > 0>> + <<set $youngerSister = _youngerSisters.pluck()>> + <<set $olderSister = getSlave($youngerSister.relationTarget)>> + <<if (def $olderSister) && $olderSister.anus == 0 && $youngerSister.devotion > ($olderSister.devotion+20)>> + <<set $events.push("RE sibling revenge")>> + <<set $youngerSister = $youngerSister.ID>> + <<set $olderSister = $olderSister.ID>> + <<break>> <</if>> - <<elseif ($slaves[$i].fetish == "masochist")>> - <<if ($masochistID == 0)>> - <<if ($slaves[$i].anus > 0 && canDoAnal($slaves[$i])) || ($slaves[$i].vagina > 0 && canDoVaginal($slaves[$i]))>> - <<set $masochistID = $slaves[$i].ID>> - <</if>> + <</for>> + + <<set _twins = _relatedSlaves.filter(function(s) { return s.relation == "twin" && s.anus > 0 && s.devotion > 50 && canWalk(s); })>> + <<for _twins.length > 0>> + <<set $alphaTwin = _twins.pluck()>> + <<set $betaTwin = getSlave($alphaTwin.relationTarget)>> + <<if (def $betaTwin) && $betaTwin.anus > 0 && $betaTwin.devotion > 50 && canWalk($betaTwin)>> + <<set $events.push("RE devoted twins")>> + <<set $alphaTwin = $alphaTwin.ID>> + <<set $betaTwin = $betaTwin.ID>> + <<break>> <</if>> - <</if>> - <</if>> -<</for>> + <</for>> -<<set $buttslutInterestTargetID = 0, $cumslutInterestTargetID = 0, $submissiveInterestTargetID = 0, $humiliationInterestTargetID = 0, $boobsInterestTargetID = 0, $pregnancyInterestTargetID = 0, $masochistInterestTargetID = 0>> + <<else>> /* $familyTesting == 1 */ -<<for $i = 0; $i < $slaves.length; $i++>> -<<if ($slaves[$i].speechRules != "restrictive")>> - <<if isSlaveAvailable($slaves[$i])>> - <<if ($slaves[$i].fetish == "none") || ($slaves[$i].fetishStrength <= 60)>> - <<if ($buttslutID != 0) && ($buttslutInterestTargetID == 0)>> - <<set $REFIevent.push("buttslut")>> - <<set $buttslutInterestTargetID = $slaves[$i].ID>> - <</if>> - <<if ($cumslutID != 0) && ($cumslutInterestTargetID == 0)>> - <<if $PC.dick == 1>> - <<set $REFIevent.push("cumslut")>> - <</if>> - <<set $cumslutInterestTargetID = $slaves[$i].ID>> + <<set _relatedSlaves = $slaves.filter(function(s) { return s.daughters > 0 || s.sisters > 0; })>> + + <<set _devMothers = _relatedSlaves.filter(function(s) { return s.daughters > 0 && s.devotion > 50 && s.anus != 0 && canWalk(s); })>> + <<for _devMothers.length > 0>> + <<set $devMother = _devMothers.pluck()>> + <<set $devDaughter = randomDaughter($devMother)>> + <<if (def $devDaughter) && ($devDaughter.devotion > 50) && ($devDaughter.anus != 0) && canWalk($devDaughter)>> + <<set $events.push("RE devoted mother daughter")>> + <<set $devMother = $devMother.ID>> + <<set $devDaughter = $devDaughter.ID>> + <<break>> <</if>> - <<if ($subID != 0) && ($submissiveInterestTargetID == 0)>> - <<set $REFIevent.push("submissive")>> - <<set $submissiveInterestTargetID = $slaves[$i].ID>> + <</for>> + + <<set _resMothers = _relatedSlaves.filter(function(s) { return s.daughters > 0 && s.devotion < 10 && s.anus != 0 && canWalk(s); })>> + <<for _resMothers.length > 0>> + <<set $mother = _resMothers.pluck()>> + <<set $daughter = randomDaughter($mother)>> + <<if (def $daughter) && ($daughter.devotion < 10) && ($daughter.anus != 0) && canWalk($daughter)>> + <<set $events.push("RE resistant mother daughter")>> + <<set $mother = $mother.ID>> + <<set $daughter = $daughter.ID>> + <<break>> <</if>> - <<if ($humiliationID != 0) && ($humiliationInterestTargetID == 0)>> - <<set $REFIevent.push("humiliation")>> - <<set $humiliationInterestTargetID = $slaves[$i].ID>> + <</for>> + + <<set _youngerSisters = _relatedSlaves.filter(function(s) { return s.sisters > 0 && canPenetrate(s); })>> + <<for _youngerSisters.length > 0>> + <<set $youngerSister = _youngerSisters.pluck()>> + <<set $olderSister = randomSister($youngerSister)>> + <<if (def $olderSister) && ($olderSister.anus == 0) && $youngerSister.devotion > ($olderSister.devotion+20)>> + <<set $events.push("RE sibling revenge")>> + <<set $youngerSister = $youngerSister.ID>> + <<set $olderSister = $olderSister.ID>> + <<break>> <</if>> - <<if ($boobsID != 0) && ($boobsInterestTargetID == 0)>> - <<set $REFIevent.push("boobs")>> - <<set $boobsInterestTargetID = $slaves[$i].ID>> + <</for>> + + <<set _twins = _relatedSlaves.filter(function(s) { return s.sisters > 0 && s.anus > 0 && s.devotion > 50 && canWalk(s); })>> + <<for _twins.length > 0>> + <<set $alphaTwin = _twins.pluck()>> + <<set $betaTwin = randomTwinSister($alphaTwin)>> + <<if (def $betaTwin) && ($betaTwin.anus > 0) && ($betaTwin.devotion > 50) && canWalk($betaTwin)>> + <<set $events.push("RE devoted twins")>> + <<set $alphaTwin = $alphaTwin.ID>> + <<set $betaTwin = $betaTwin.ID>> + <<break>> <</if>> - <<if ($pregnancyID != 0) && ($pregnancyInterestTargetID == 0)>> - <<set $REFIevent.push("pregnancy")>> - <<set $pregnancyInterestTargetID = $slaves[$i].ID>> + <</for>> + + <</if>> /* closes extended family mode */ + + /* Fetish Interest Events */ + + <<set $buttslutID = 0, $cumslutID = 0, $humiliationID = 0, $subID = 0, $pregnancyID = 0, $masochistID = 0, $boobsID = 0>> + + <<for $i = 0; $i < $slaves.length; $i++>> + <<if ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 95) && isSlaveAvailable($slaves[$i])>> + <<if ($slaves[$i].fetish == "buttslut")>> + <<if $buttslutID == 0>> + <<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i])>> + <<set $buttslutID = $slaves[$i].ID>> + <</if>> + <</if>> + <<elseif ($slaves[$i].fetish == "cumslut")>> + <<if ($cumslutID == 0)>> + <<if !["dildo gag", "massive dildo gag", "ball gag", "bit gag"].includes($slaves[$i].collar)>> + <<set $cumslutID = $slaves[$i].ID>> + <</if>> + <</if>> + <<elseif ($slaves[$i].fetish == "submissive")>> + <<if ($subID == 0)>> + <<if (($slaves[$i].anus > 0 && canDoAnal($slaves[$i])) || ($slaves[$i].vagina > 0 && canDoVaginal($slaves[$i])) && $slaves[$i].belly < 30000)>> + <<set $subID = $slaves[$i].ID>> + <</if>> + <</if>> + <<elseif ($slaves[$i].fetish == "humiliation")>> + <<if (($slaves[$i].anus > 0 && canDoAnal($slaves[$i])) || ($slaves[$i].vagina > 0 && canDoVaginal($slaves[$i])) && $slaves[$i].belly < 30000)>> + <<if ($humiliationID == 0)>> + <<set $humiliationID = $slaves[$i].ID>> + <</if>> + <</if>> + <<elseif ($slaves[$i].fetish == "boobs")>> + <<if ($slaves[$i].lactation > 0)>> + <<if ($boobsID == 0)>> + <<set $boobsID = $slaves[$i].ID>> + <</if>> + <</if>> + <<elseif ($slaves[$i].fetish == "pregnancy")>> + <<if ($pregnancyID == 0)>> + <<if ($slaves[$i].bellyPreg >= 5000)>> + <<set $pregnancyID = $slaves[$i].ID>> + <</if>> + <</if>> + <<elseif ($slaves[$i].fetish == "masochist")>> + <<if ($masochistID == 0)>> + <<if ($slaves[$i].anus > 0 && canDoAnal($slaves[$i])) || ($slaves[$i].vagina > 0 && canDoVaginal($slaves[$i]))>> + <<set $masochistID = $slaves[$i].ID>> + <</if>> + <</if>> <</if>> - <<if ($masochistID != 0) && ($masochistInterestTargetID == 0)>> - <<set $REFIevent.push("masochist")>> - <<set $masochistInterestTargetID = $slaves[$i].ID>> + <</if>> + <</for>> + + <<set $buttslutInterestTargetID = 0, $cumslutInterestTargetID = 0, $submissiveInterestTargetID = 0, $humiliationInterestTargetID = 0, $boobsInterestTargetID = 0, $pregnancyInterestTargetID = 0, $masochistInterestTargetID = 0>> + + <<for $i = 0; $i < $slaves.length; $i++>> + <<if ($slaves[$i].speechRules != "restrictive")>> + <<if isSlaveAvailable($slaves[$i])>> + <<if ($slaves[$i].fetish == "none") || ($slaves[$i].fetishStrength <= 60)>> + <<if ($buttslutID != 0) && ($buttslutInterestTargetID == 0)>> + <<set $REFIevent.push("buttslut")>> + <<set $buttslutInterestTargetID = $slaves[$i].ID>> + <</if>> + <<if ($cumslutID != 0) && ($cumslutInterestTargetID == 0)>> + <<if $PC.dick == 1>> + <<set $REFIevent.push("cumslut")>> + <</if>> + <<set $cumslutInterestTargetID = $slaves[$i].ID>> + <</if>> + <<if ($subID != 0) && ($submissiveInterestTargetID == 0)>> + <<set $REFIevent.push("submissive")>> + <<set $submissiveInterestTargetID = $slaves[$i].ID>> + <</if>> + <<if ($humiliationID != 0) && ($humiliationInterestTargetID == 0)>> + <<set $REFIevent.push("humiliation")>> + <<set $humiliationInterestTargetID = $slaves[$i].ID>> + <</if>> + <<if ($boobsID != 0) && ($boobsInterestTargetID == 0)>> + <<set $REFIevent.push("boobs")>> + <<set $boobsInterestTargetID = $slaves[$i].ID>> + <</if>> + <<if ($pregnancyID != 0) && ($pregnancyInterestTargetID == 0)>> + <<set $REFIevent.push("pregnancy")>> + <<set $pregnancyInterestTargetID = $slaves[$i].ID>> + <</if>> + <<if ($masochistID != 0) && ($masochistInterestTargetID == 0)>> + <<set $REFIevent.push("masochist")>> + <<set $masochistInterestTargetID = $slaves[$i].ID>> + <</if>> + <</if>> <</if>> <</if>> + <</for>> + + /* Multislave Events */ + + <<set $devotedSlaves = $slaves.filter(function(s) { return s.devotion > 50 && canWalk(s) && s.assignment != "be your agent" && s.assignment != "live with your agent"; })>> + <<if def $devotedSlaves[3]>> + <<set $devotedSlaves = $devotedSlaves.shuffle()>> + <<set $devotedSlaves.length = 4>> + <<set $devotedSlaves[0] = $devotedSlaves[0].ID>> + <<set $devotedSlaves[1] = $devotedSlaves[1].ID>> + <<set $devotedSlaves[2] = $devotedSlaves[2].ID>> + <<set $devotedSlaves[3] = $devotedSlaves[3].ID>> + <<set $events.push("RE devotees")>> <</if>> -<</if>> -<</for>> - -/* Multislave Events */ - -<<set $devotedSlaves = $slaves.filter(function(s) { return s.devotion > 50 && canWalk(s) && s.assignment != "be your agent" && s.assignment != "live with your agent"; })>> -<<if def $devotedSlaves[3]>> - <<set $devotedSlaves = $devotedSlaves.shuffle()>> - <<set $devotedSlaves.length = 4>> - <<set $devotedSlaves[0] = $devotedSlaves[0].ID>> - <<set $devotedSlaves[1] = $devotedSlaves[1].ID>> - <<set $devotedSlaves[2] = $devotedSlaves[2].ID>> - <<set $devotedSlaves[3] = $devotedSlaves[3].ID>> - <<set $events.push("RE devotees")>> -<</if>> - -<<if $fuckSlaves > 1>> - <<set $bedSlaves = $slaves.filter(function(s) { return s.devotion > 50 && (s.assignment == "please you" || s.assignment == "serve in the master suite" || s.assignment == "be your Concubine") && s.amp != 1 && canDoAnal(s); })>> - <<if def $bedSlaves[1]>> - <<set $bedSlaves = $bedSlaves.shuffle()>> - <<set $bedSlaves.length = 2>> - <<set $bedSlaves[0] = $bedSlaves[0].ID>> - <<set $bedSlaves[1] = $bedSlaves[1].ID>> - <<set $events.push("RE full bed")>> - <</if>> -<</if>> -<<if $fuckSlaves > 3>> - <<set $events.push("RE staffed morning")>> -<</if>> - -<<if $dairyRestraintsSetting >= 2>> - <<set $rebelSlaves = $slaves.filter(function(s) { return s.devotion < -20 && s.assignment != "be confined in the arcade" && canWalk(s) && s.assignment != "work in the dairy"; })>> -<<else>> - <<set $rebelSlaves = $slaves.filter(function(s) { return s.devotion < -20 && s.assignment != "be confined in the arcade" && canWalk(s); })>> -<</if>> -<<if $rebelSlaves.length > 1>> - <<set $rebelSlaves = $rebelSlaves.shuffle()>> - <<set $rebelSlaves.length = 2>> - <<set $rebelSlaves[0] = $rebelSlaves[0].ID>> - <<set $rebelSlaves[1] = $rebelSlaves[1].ID>> - <<set $events.push("RE rebels")>> -<</if>> - -<<if $brothelSlaves > 3>> - <<set $events.push("RE busy brothel")>> -<</if>> -<<if $brothelSlaves > 5>> - <<set $events.push("RE brothel function")>> -<</if>> -<<if $clubSlaves > 3>> - <<set $events.push("RE busy club")>> -<</if>> -<<if $dairySlaves > 3>> -<<if $dairyRestraintsSetting < 2>> - <<set $events.push("RE busy dairy")>> -<</if>> -<</if>> -<<if $servantsQuartersSlaves > 3>> - <<set $events.push("RE busy servants quarters")>> -<</if>> -<<if $arcadeSlaves > 3>> - <<set $events.push("RE busy arcade")>> -<</if>> -<<if $masterSuiteSlaves > 3>> - <<if $Concubine != 0>> - <<set $events.push("RE busy master suite")>> - <</if>> -<</if>> - -/* Position Events */ - -<<if ($HeadGirl != 0)>> - <<if ($Concubine != 0)>> <<if $fuckSlaves > 1>> - <<if canTalk($Concubine)>> - <<if canSee($Concubine)>> - <<if canWalk($Concubine)>> - <<set $events.push("PE headgirl concubine")>> + <<set $bedSlaves = $slaves.filter(function(s) { return s.devotion > 50 && (s.assignment == "please you" || s.assignment == "serve in the master suite" || s.assignment == "be your Concubine") && s.amp != 1 && canDoAnal(s); })>> + <<if def $bedSlaves[1]>> + <<set $bedSlaves = $bedSlaves.shuffle()>> + <<set $bedSlaves.length = 2>> + <<set $bedSlaves[0] = $bedSlaves[0].ID>> + <<set $bedSlaves[1] = $bedSlaves[1].ID>> + <<set $events.push("RE full bed")>> + <</if>> <</if>> + <<if $fuckSlaves > 3>> + <<set $events.push("RE staffed morning")>> <</if>> + + <<if $dairyRestraintsSetting >= 2>> + <<set $rebelSlaves = $slaves.filter(function(s) { return s.devotion < -20 && s.assignment != "be confined in the arcade" && canWalk(s) && s.assignment != "work in the dairy"; })>> + <<else>> + <<set $rebelSlaves = $slaves.filter(function(s) { return s.devotion < -20 && s.assignment != "be confined in the arcade" && canWalk(s); })>> + <</if>> + <<if $rebelSlaves.length > 1>> + <<set $rebelSlaves = $rebelSlaves.shuffle()>> + <<set $rebelSlaves.length = 2>> + <<set $rebelSlaves[0] = $rebelSlaves[0].ID>> + <<set $rebelSlaves[1] = $rebelSlaves[1].ID>> + <<set $events.push("RE rebels")>> <</if>> + + <<if $brothelSlaves > 3>> + <<set $events.push("RE busy brothel")>> <</if>> + <<if $brothelSlaves > 5>> + <<set $events.push("RE brothel function")>> + <</if>> + <<if $clubSlaves > 3>> + <<set $events.push("RE busy club")>> + <</if>> + <<if $dairySlaves > 3>> + <<if $dairyRestraintsSetting < 2>> + <<set $events.push("RE busy dairy")>> + <</if>> + <</if>> + <<if $servantsQuartersSlaves > 3>> + <<set $events.push("RE busy servants quarters")>> + <</if>> + <<if $arcadeSlaves > 3>> + <<set $events.push("RE busy arcade")>> + <</if>> + <<if $masterSuiteSlaves > 3>> + <<if $Concubine != 0>> + <<set $events.push("RE busy master suite")>> + <</if>> <</if>> - <<set $j = $slaves.findIndex(function(s) { return s.ID != $HeadGirl.ID && s.devotion < 20; })>> + /* Position Events */ - <<if canPenetrate($HeadGirl) && ($HeadGirl.balls > 0)>> - <<if $j != -1>> - <<set $PESSevent.push("headgirl dickgirl")>> /* requires valid $slaves[$j] */ + <<if ($HeadGirl != 0)>> + + <<if ($Concubine != 0)>> + <<if $fuckSlaves > 1>> + <<if canTalk($Concubine)>> + <<if canSee($Concubine)>> + <<if canWalk($Concubine)>> + <<set $events.push("PE headgirl concubine")>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> - <<if ($universalRulesImpregnation == "HG")>> - <<if ($HeadGirl.devotion > 95)>> - <<set $PESSevent.push("worshipful impregnatrix")>> /* does not use $j */ + <<set $j = $slaves.findIndex(function(s) { return s.ID != $HeadGirl.ID && s.devotion < 20; })>> + + <<if canPenetrate($HeadGirl) && ($HeadGirl.balls > 0)>> + <<if $j != -1>> + <<set $PESSevent.push("headgirl dickgirl")>> /* requires valid $slaves[$j] */ + <</if>> + + <<if ($universalRulesImpregnation == "HG")>> + <<if ($HeadGirl.devotion > 95)>> + <<set $PESSevent.push("worshipful impregnatrix")>> /* does not use $j */ + <</if>> + <</if>> <</if>> + + <<if ($HeadGirl.devotion > 95)>> + <<if ($slaves.length > 4)>> + <<set $PESSevent.push("loving headgirl")>> /* uses $j if valid, but not required */ + <</if>> + <<if ($week > 20)>> + <<if ($HeadGirl.trust > 95)>> + <<if ($HeadGirl.intelligence > 1)>> + <<set $PESSevent.push("worried headgirl")>> /* does not use $j */ + <</if>> + <</if>> + <</if>> <</if>> + <</if>> - <<if ($HeadGirl.devotion > 95)>> - <<if ($slaves.length > 4)>> - <<set $PESSevent.push("loving headgirl")>> /* uses $j if valid, but not required */ + <<if ($Bodyguard != 0)>> + + /*<<set $events.push("PE pit fight invite")>>*/ + + <<if ($Bodyguard.combatSkill != 0)>> + <<set $PESSevent.push("bodyguard bedtime")>> <</if>> - <<if ($week > 20)>> - <<if ($HeadGirl.trust > 95)>> - <<if ($HeadGirl.intelligence > 1)>> - <<set $PESSevent.push("worried headgirl")>> /* does not use $j */ + + <<if ($Bodyguard.devotion > 45)>> + <<set $PESSevent.push("bodyguard beatdown")>> <</if>> + + <<if ($Bodyguard.relationship == 0)>> + <<if ($Bodyguard.relationshipRules == "permissive")>> + <<if ($Bodyguard.fetish != "mindbroken")>> + <<set $j = $slaves.findIndex(function(s) { return s.ID != $Bodyguard.ID && s.relationship == 0 && s.devotion > -20; })>> + <<if $j != -1>> + <<set $events.push("PE lonely bodyguard")>> /* requires valid $slaves[$j] */ + <</if>> + <</if>> + <</if>> <</if>> + + <<if ($Bodyguard.combatSkill == 0)>> + <<set $events.push("PE combat training")>> + <<set $events.push("PE combat training")>> + <<set $events.push("PE combat training")>> <</if>> + <</if>> -<</if>> + <<if ($Milkmaid != 0) && ($dairySlaves >= 5) && ($Milkmaid.health >= 70)>> + <<if ($Milkmaid.muscles > 5)>> + <<set $PESSevent.push("tired milkmaid")>> + <</if>> + <<if canAchieveErection($Milkmaid)>> + <<set $PESSevent.push("tired collectrix")>> + <</if>> + <</if>> -<<if ($Bodyguard != 0)>> + <<if ($Stewardess != 0) && ($servantsQuartersSlaves > 0) && ($Stewardess.actualAge >= 35 || $AgePenalty == 0)>> + <<set $PETSevent.push("stewardess beating")>> + <</if>> - /*<<set $events.push("PE pit fight invite")>>*/ + <<if ($Madam != 0) && ($brothelSlaves >= 5) && ($Madam.actualAge >= 35 || $AgePenalty == 0) && ($Madam.whoreSkill >= 100)>> + <<set $PESSevent.push("madam strategy")>> + <</if>> - <<if ($Bodyguard.combatSkill != 0)>> - <<set $PESSevent.push("bodyguard bedtime")>> + <<if ($DJ != 0) && ($clubSlaves >= 5) && ($DJ.face > 95) && ($DJ.entertainSkill >= 100)>> + <<set $PESSevent.push("DJ publicity")>> <</if>> - <<if ($Bodyguard.devotion > 45)>> - <<set $PESSevent.push("bodyguard beatdown")>> + <<if ($Schoolteacher != 0) && ($schoolroomSlaves > 0) && ($Schoolteacher.intelligence >= 1) && ($Schoolteacher.actualAge >= 35)>> + <<set $PETSevent.push("aggressive schoolteacher")>> <</if>> - <<if ($Bodyguard.relationship == 0)>> - <<if ($Bodyguard.relationshipRules == "permissive")>> - <<if ($Bodyguard.fetish != "mindbroken")>> - <<set $j = $slaves.findIndex(function(s) { return s.ID != $Bodyguard.ID && s.relationship == 0 && s.devotion > -20; })>> - <<if $j != -1>> - <<set $events.push("PE lonely bodyguard")>> /* requires valid $slaves[$j] */ - <</if>> + <<if ($Wardeness != 0) && ($cellblockSlaves > 0) && canTalk($Wardeness)>> + <<set $PETSevent.push("abusive wardeness")>> <</if>> + + <<if ($Attendant != 0) && ($spaSlaves > 0) && canTalk($Attendant)>> + <<set $PETSevent.push("comforting attendant")>> <</if>> + + <<if ($Nurse != 0) && ($clinicSlaves > 0) && ($Nurse.energy > 95) || (($Nurse.fetishStrength > 60) && ($Nurse.fetish == "sadist" || $Nurse.fetish == "dom"))>> + <<set $subSlave = $slaves.find(function(s) { return s.anus != 0 && s.assignment == "get treatment in the clinic"; })>> + <<if (def $subSlave)>> + <<set $PETSevent.push("nurse molestation")>> + <</if>> <</if>> - <<if ($Bodyguard.combatSkill == 0)>> - <<set $events.push("PE combat training")>> - <<set $events.push("PE combat training")>> - <<set $events.push("PE combat training")>> + <<if ($Concubine != 0)>> + <<if canWalk($Concubine)>> + <<if canSee($Concubine)>> + <<set $PESSevent.push("loving concubine")>> + <</if>> + <<if canTalk($Concubine)>> + <<set $events.push("PE concubine interview")>> + <</if>> + <</if>> <</if>> -<</if>> + /* Acquisition Events */ -<<if ($Milkmaid != 0) && ($dairySlaves >= 5) && ($Milkmaid.health >= 70)>> - <<if ($Milkmaid.muscles > 5)>> - <<set $PESSevent.push("tired milkmaid")>> + <<set $events.push("RE recruit")>> + <<if random(1,100) < $rep/200>> + <<set $events.push("RE recruit")>> <</if>> - <<if canAchieveErection($Milkmaid)>> - <<set $PESSevent.push("tired collectrix")>> + <<if $ProRecruitment == 1>> + <<if random(1,100) < $rep/200>> + <<set $events.push("RE recruit")>> + <</if>> <</if>> -<</if>> - -<<if ($Stewardess != 0) && ($servantsQuartersSlaves > 0) && ($Stewardess.actualAge >= 35 || $AgePenalty == 0)>> - <<set $PETSevent.push("stewardess beating")>> -<</if>> - -<<if ($Madam != 0) && ($brothelSlaves >= 5) && ($Madam.actualAge >= 35 || $AgePenalty == 0) && ($Madam.whoreSkill >= 100)>> - <<set $PESSevent.push("madam strategy")>> -<</if>> - -<<if ($DJ != 0) && ($clubSlaves >= 5) && ($DJ.face > 95) && ($DJ.entertainSkill >= 100)>> - <<set $PESSevent.push("DJ publicity")>> -<</if>> - -<<if ($Schoolteacher != 0) && ($schoolroomSlaves > 0) && ($Schoolteacher.intelligence >= 1) && ($Schoolteacher.actualAge >= 35)>> - <<set $PETSevent.push("aggressive schoolteacher")>> -<</if>> + <<if $AntiEnslavementRep == 0>> + <<if random(1,100) < $rep/300>> + <<set $events.push("RE recruit")>> + <</if>> + <</if>> + <<if $AntiEnslavementCash == 0>> + <<if random(1,100) < $rep/300>> + <<set $events.push("RE recruit")>> + <</if>> + <</if>> + <<set $recruit = []>> -<<if ($Wardeness != 0) && ($cellblockSlaves > 0) && canTalk($Wardeness)>> - <<set $PETSevent.push("abusive wardeness")>> -<</if>> + <<if $boomerangSlave>> + <<if $boomerangWeeks > 5>> + <<set $events.push("RE boomerang")>> + <<if $boomerangWeeks > 10>> + <<set $events.push("RE boomerang")>> + <</if>> + <</if>> + <</if>> -<<if ($Attendant != 0) && ($spaSlaves > 0) && canTalk($Attendant)>> - <<set $PETSevent.push("comforting attendant")>> + <<if $seeDicks != 100>> /*XX ACQUISITIONS*/ -<</if>> + <<set $recruit.push("repo milf housekeeper")>> + <<set $recruit.push("spoiled daughter")>> + <<set $recruit.push("desperate university milf")>> + <<set $recruit.push("female debtor")>> + <<set $recruit.push("desperate milf")>> + <<if $seePreg != 0>> + <<if $arcologies[0].FSRestart == "unset">> + <<set $recruit.push("desperate preg")>> + <</if>> + <<if random(1,1000) < 5>> + <<set $recruit.push("wandering homeless")>> + <</if>> + <<if $PC.medicine >= 50>> + <<set $recruit.push("desperate birth")>> + <</if>> + <<set $recruit.push("blind homeless")>> + <<set $recruit.push("farm cow")>> + <<if ($mercenaries >= 5)>> + <<set $recruit.push("female runaway")>> + <</if>> + <<if $seeHyperPreg == 1>> + <<if $cheatMode == 1>> + <<set $recruit.push("overwhelmed farmgirl")>> + <</if>> + <<set $recruit.push("blessed vessel")>> + <</if>> + <<if $PC.medicine > 50 && $PC.hacking > 75 && random(0,100) > 75>> + <<set $recruit.push("embryo appropriation")>> + <</if>> + <<set $recruit.push("blessed virgin")>> + <</if>> + <<set $recruit.push("female SD")>> + <<set $recruit.push("female SD 2")>> + <<set $recruit.push("female SE")>> + <<set $recruit.push("CCS angel")>> + <<set $recruit.push("CCS DA")>> + <<set $recruit.push("racer loser")>> + <<set $recruit.push("racer winner")>> + <<set $recruit.push("repo housekeeper")>> + <<set $recruit.push("repo nanny")>> + <<set $recruit.push("farm virgin cow")>> + <<set $recruit.push("orphan rebellious female")>> + <<set $recruit.push("captured teen")>> + <<if ($cash > 20000)>> + <<set $recruit.push("school sale")>> + <</if>> + <<if ($HeadGirl.devotion > 50) && ($HeadGirl.entertainSkill >= 100)>> + <<set $recruit.push("female recruit")>> + <</if>> + <<if ($HeadGirl.devotion > 50) && ($HeadGirl.whoreSkill >= 100)>> + <<set $recruit.push("whore recruit")>> + <</if>> + <<if $PC.hacking >= 50 && random(0,100) < $PC.hacking>> + <<set $recruit.push("held POW")>> + <</if>> + <<if($pedo_mode == 1 || $minimumSlaveAge <= 13) && $PC.hacking >= 100 && random(0,100) > 95 && $cash >= 100000>> + <<set $recruit.push("rogue cyborg")>> + <</if>> + <<if $arcologyUpgrade.drones == 1>> + <<set $events.push("RE malefactor")>> + <<set $malefactor = ["liberator", "whore", "businesswoman", "addict"]>> + <<if $seePreg != 0>> + <<set $malefactor.push("anchorBaby")>> + <</if>> + <<if $seeDicks != 0>> + <<set $malefactor.push("rapist")>> + <</if>> + <<if $minimumSlaveAge <= 12>> + <<set $malefactor.push("orphanloli")>> + <</if>> + <<if $arcologies[0].FSPaternalist < 50>> + <<set $malefactor.push("escapee")>> + <</if>> + <<set $malefactor = $malefactor.random()>> + <<if ($rep/150) > random(1,100)>> + <<set $events.push("RE malefactor")>> + <</if>> + <</if>> -<<if ($Nurse != 0) && ($clinicSlaves > 0) && ($Nurse.energy > 95) || (($Nurse.fetishStrength > 60) && ($Nurse.fetish == "sadist" || $Nurse.fetish == "dom"))>> - <<set $subSlave = $slaves.find(function(s) { return s.anus != 0 && s.assignment == "get treatment in the clinic"; })>> - <<if (def $subSlave)>> - <<set $PETSevent.push("nurse molestation")>> <</if>> -<</if>> -<<if ($Concubine != 0)>> - <<if canWalk($Concubine)>> - <<if canSee($Concubine)>> - <<set $PESSevent.push("loving concubine")>> - <</if>> - <<if canTalk($Concubine)>> - <<set $events.push("PE concubine interview")>> - <</if>> - <</if>> -<</if>> + <<if $seeDicks != 0>> /*XY ACQUISITIONS*/ + + <<set $recruit.push("male debtor")>> + <<set $recruit.push("tg addict")>> + <<set $recruit.push("male SD")>> + <<set $recruit.push("MTF SE")>> + <<set $recruit.push("DG SE")>> + <<set $recruit.push("gang leader")>> + <<set $recruit.push("racer DG chaser")>> + <<set $recruit.push("farm bull")>> + <<set $recruit.push("orphan femboy")>> + <<if ($mercenaries >= 5)>> + <<set $recruit.push("DG runaway")>> + <<if $seePreg != 0>> + <<set $recruit.push("herm runaway")>> + <</if>> + <</if>> + <<if ($cash > 20000)>> + <<set $recruit.push("school trap")>> + <</if>> + <<if ($HeadGirl.devotion > 50) && ($HeadGirl.dick > 0)>> + <<set $recruit.push("male recruit")>> + <</if>> + <<if $seeDicks != 100>> + <<if ($HeadGirl.devotion > 50)>> + <<set $RecETSevent.push("mismatched pair")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("matched pair")>> + <</if>> + <<if $seePreg != 0>> + <<if ($rep/400) > random(1,100) && $arcologies[0].FSRestart == "unset">> + <<set $RecETSevent.push("identical herm pair")>> + <</if>> + <<if ($rep/400) > random(1,100) && $arcologies[0].FSRestart == "unset">> + <<set $RecETSevent.push("incest mother son")>> + <</if>> + <<if ($rep/400) > random(1,100) && $arcologies[0].FSRestart == "unset">> + <<set $RecETSevent.push("incest father daughter")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest brother sister")>> + <</if>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest twins mixed")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("identical pair")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("posh mother daughter")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest sister sister")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest twin sister")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest mother daughter")>> + <</if>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest brother brother")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest twin brother")>> + <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest father son")>> + <</if>> -/* Acquisition Events */ + <<else>> /*XX ACQUISITIONS*/ -<<set $events.push("RE recruit")>> -<<if random(1,100) < $rep/200>> - <<set $events.push("RE recruit")>> -<</if>> -<<if $ProRecruitment == 1>> -<<if random(1,100) < $rep/200>> - <<set $events.push("RE recruit")>> -<</if>> -<</if>> -<<if $AntiEnslavementRep == 0>> -<<if random(1,100) < $rep/300>> - <<set $events.push("RE recruit")>> -<</if>> -<</if>> -<<if $AntiEnslavementCash == 0>> -<<if random(1,100) < $rep/300>> - <<set $events.push("RE recruit")>> -<</if>> -<</if>> -<<set $recruit = []>> - -<<if $boomerangSlave>> -<<if $boomerangWeeks > 5>> - <<set $events.push("RE boomerang")>> - <<if $boomerangWeeks > 10>><<set $events.push("RE boomerang")>><</if>> -<</if>> -<</if>> - -<<if $seeDicks != 100>> /*XX ACQUISITIONS*/ - -<<set $recruit.push("repo milf housekeeper")>> -<<set $recruit.push("spoiled daughter")>> -<<set $recruit.push("desperate university milf")>> -<<set $recruit.push("female debtor")>> -<<set $recruit.push("desperate milf")>> -<<if $seePreg != 0>> - <<if $arcologies[0].FSRestart == "unset">> - <<set $recruit.push("desperate preg")>> - <</if>> - <<if random(1,1000) < 5>> - <<set $recruit.push("wandering homeless")>> - <</if>> - <<if $PC.medicine >= 50>> - <<set $recruit.push("desperate birth")>> - <</if>> - <<set $recruit.push("blind homeless")>> - <<set $recruit.push("farm cow")>> - <<if ($mercenaries >= 5)>> - <<set $recruit.push("female runaway")>> - <</if>> - <<if $seeHyperPreg == 1>> - <<if $cheatMode == 1>> - <<set $recruit.push("overwhelmed farmgirl")>> - <</if>> - <<set $recruit.push("blessed vessel")>> - <</if>> - <<if $PC.medicine > 50 && $PC.hacking > 75 && random(0,100) > 75>> - <<set $recruit.push("embryo appropriation")>> - <</if>> - <<set $recruit.push("blessed virgin")>> -<</if>> -<<set $recruit.push("female SD")>> -<<set $recruit.push("female SD 2")>> -<<set $recruit.push("female SE")>> -<<set $recruit.push("CCS angel")>> -<<set $recruit.push("CCS DA")>> -<<set $recruit.push("racer loser")>> -<<set $recruit.push("racer winner")>> -<<set $recruit.push("repo housekeeper")>> -<<set $recruit.push("repo nanny")>> -<<set $recruit.push("farm virgin cow")>> -<<set $recruit.push("orphan rebellious female")>> -<<set $recruit.push("captured teen")>> -<<if ($cash > 20000)>> - <<set $recruit.push("school sale")>> -<</if>> -<<if ($HeadGirl.devotion > 50) && ($HeadGirl.entertainSkill >= 100)>> - <<set $recruit.push("female recruit")>> -<</if>> -<<if ($HeadGirl.devotion > 50) && ($HeadGirl.whoreSkill >= 100)>> - <<set $recruit.push("whore recruit")>> -<</if>> -<<if $PC.hacking >= 50 && random(0,100) < $PC.hacking>> - <<set $recruit.push("held POW")>> -<</if>> -<<if($pedo_mode == 1 || $minimumSlaveAge <= 13) && $PC.hacking >= 100 && random(0,100) > 95 && $cash >= 100000>> - <<set $recruit.push("rogue cyborg")>> -<</if>> -<<if $arcologyUpgrade.drones == 1>> - <<set $events.push("RE malefactor")>> - <<set $malefactor = ["liberator", "whore", "businesswoman", "addict"]>> - <<if $seePreg != 0>> - <<set $malefactor.push("anchorBaby")>> - <</if>> - <<if $seeDicks != 0>> - <<set $malefactor.push("rapist")>> - <</if>> - <<if $minimumSlaveAge <= 12>> - <<set $malefactor.push("orphanloli")>> - <</if>> - <<if $arcologies[0].FSPaternalist < 50>> - <<set $malefactor.push("escapee")>> - <</if>> - <<set $malefactor = $malefactor.random()>> - <<if ($rep/150) > random(1,100)>> - <<set $events.push("RE malefactor")>> - <</if>> -<</if>> - -<</if>> - -<<if $seeDicks != 0>> /*XY ACQUISITIONS*/ - -<<set $recruit.push("male debtor")>> -<<set $recruit.push("tg addict")>> -<<set $recruit.push("male SD")>> -<<set $recruit.push("MTF SE")>> -<<set $recruit.push("DG SE")>> -<<set $recruit.push("gang leader")>> -<<set $recruit.push("racer DG chaser")>> -<<set $recruit.push("farm bull")>> -<<set $recruit.push("orphan femboy")>> -<<if ($mercenaries >= 5)>> - <<set $recruit.push("DG runaway")>> - <<if $seePreg != 0>> - <<set $recruit.push("herm runaway")>> - <</if>> -<</if>> -<<if ($cash > 20000)>> - <<set $recruit.push("school trap")>> -<</if>> -<<if ($HeadGirl.devotion > 50) && ($HeadGirl.dick > 0)>> - <<set $recruit.push("male recruit")>> -<</if>> -<<if $seeDicks != 100>> - <<if ($HeadGirl.devotion > 50)>> - <<set $RecETSevent.push("mismatched pair")>> - <</if>> - <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("matched pair")>> - <</if>> - <<if $seePreg != 0>> - <<if ($rep/400) > random(1,100) && $arcologies[0].FSRestart == "unset">> - <<set $RecETSevent.push("identical herm pair")>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("identical pair")>> <</if>> - <<if ($rep/400) > random(1,100) && $arcologies[0].FSRestart == "unset">> - <<set $RecETSevent.push("incest mother son")>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("posh mother daughter")>> <</if>> - <<if ($rep/400) > random(1,100) && $arcologies[0].FSRestart == "unset">> - <<set $RecETSevent.push("incest father daughter")>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest sister sister")>> <</if>> <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest brother sister")>> + <<set $RecETSevent.push("incest twin sister")>> <</if>> + <<if ($rep/400) > random(1,100)>> + <<set $RecETSevent.push("incest mother daughter")>> + <</if>> + <</if>> + + <<set $recruit.push("starving artist")>> <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest twins mixed")>> - <</if>> - <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("identical pair")>> - <</if>> - <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("posh mother daughter")>> - <</if>> - <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest sister sister")>> - <</if>> - <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest twin sister")>> + <<set $RecETSevent.push("addict mother daughter")>> <</if>> - <<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest mother daughter")>> - <</if>> -<</if>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest brother brother")>> -<</if>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest twin brother")>> -<</if>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest father son")>> -<</if>> - -<<else>> /*XX ACQUISITIONS*/ - -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("identical pair")>> -<</if>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("posh mother daughter")>> -<</if>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest sister sister")>> -<</if>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest twin sister")>> -<</if>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("incest mother daughter")>> -<</if>> - -<</if>> - -<<set $recruit.push("starving artist")>> -<<if ($rep/400) > random(1,100)>> - <<set $RecETSevent.push("addict mother daughter")>> -<</if>> -<<if $seeHyperPreg == 1 && $seePreg != 0 && $arcologies[0].FSRestart == "unset" && random(1,100) <= 5>> - <<set $RecETSevent.push("desperate broodmother")>> -<</if>> -<<if ($rep/250) > random(1,100)>> - <<set $recruit.push("immigrant")>> -<</if>> - -<<if ($PC.dick == 1) && ($PC.vagina == 0) && ($PC.boobs == 0) && ($PC.title == 1)>> - <<if ($rep/250) > random(1,100)>> - <<set $recruit.push("handsome PC")>> - <<set $recruit.push("handsome PC")>> + <<if $seeHyperPreg == 1 && $seePreg != 0 && $arcologies[0].FSRestart == "unset" && random(1,100) <= 5>> + <<set $RecETSevent.push("desperate broodmother")>> <</if>> -<<elseif ($PC.dick == 0) && ($PC.boobs == 1) && ($PC.title == 0)>> <<if ($rep/250) > random(1,100)>> - <<set $recruit.push("womanly PC")>> - <<set $recruit.push("womanly PC")>> + <<set $recruit.push("immigrant")>> <</if>> -<<elseif ($PC.dick == 1) && ($PC.boobs == 1)>> - <<if ($rep/250) > random(1,100)>> - <<set $recruit.push("shemale PC")>> - <<set $recruit.push("shemale PC")>> - <</if>> -<</if>> - -<<if $familyTesting == 1>> - -<<set _recruiterSlaves = $slaves.filter(function(s) { return s.fuckdoll == 0 && s.canRecruit == 1 && s.devotion > 50 && canWalk(s); })>> -<<for _recruiterSlaves.length > 0>> - <<set $recruiterSlave = _recruiterSlaves.pluck()>> - <<if random(1,100) > 90+(totalRelatives($recruiterSlave)*2)>> - <<set $j = $genePool.findIndex(function(o) { return o.ID == $recruiterSlave.ID; })>> - <<if $j != -1>> - <<set $events.push("RE relative recruiter")>> - <<set $recruiterSlave = $recruiterSlave.ID>> - <<break>> - <<else>> /* no matching slave object in the slavesOriginal array */ - <<set $i = $slaveIndices[$recruiterSlave.ID]>> - <<set $slaves[$i].canRecruit = 0>> - <<set $recruiterSlave = -1>> + + <<if ($PC.dick == 1) && ($PC.vagina == 0) && ($PC.boobs == 0) && ($PC.title == 1)>> + <<if ($rep/250) > random(1,100)>> + <<set $recruit.push("handsome PC")>> + <<set $recruit.push("handsome PC")>> + <</if>> + <<elseif ($PC.dick == 0) && ($PC.boobs == 1) && ($PC.title == 0)>> + <<if ($rep/250) > random(1,100)>> + <<set $recruit.push("womanly PC")>> + <<set $recruit.push("womanly PC")>> + <</if>> + <<elseif ($PC.dick == 1) && ($PC.boobs == 1)>> + <<if ($rep/250) > random(1,100)>> + <<set $recruit.push("shemale PC")>> + <<set $recruit.push("shemale PC")>> <</if>> <</if>> -<</for>> - -<<else>> /* extended family mode == 0 */ -<<set _recruiterSlaves = $slaves.filter(function(s) { return s.recruiter != 0 && s.fuckdoll == 0 && s.devotion > 50 && s.relation == 0 && canWalk(s); })>> -<<for _recruiterSlaves.length > 0>> - <<set $recruiterSlave = _recruiterSlaves.pluck()>> - <<set $j = $genePool.findIndex(function(o) { return o.ID == $recruiterSlave.ID; })>> - <<if $j != -1>> - <<set $events.push("RE relative recruiter")>> - <<set $recruiterSlave = $recruiterSlave.ID>> - <<break>> - <<else>> /* no matching slave object in the slavesOriginal array -- bug? */ - <<set $i = $slaveIndices[$recruiterSlave.ID]>> - <<set $slaves[$i].canRecruit = 0>> - <<set $recruiterSlave = -1>> - <</if>> -<</for>> + <<if $familyTesting == 1>> + + <<set _recruiterSlaves = $slaves.filter(function(s) { return s.fuckdoll == 0 && s.canRecruit == 1 && s.devotion > 50 && canWalk(s); })>> + <<for _recruiterSlaves.length > 0>> + <<set $recruiterSlave = _recruiterSlaves.pluck()>> + <<if random(1,100) > 90+(totalRelatives($recruiterSlave)*2)>> + <<set $j = $genePool.findIndex(function(o) { return o.ID == $recruiterSlave.ID; })>> + <<if $j != -1>> + <<set $events.push("RE relative recruiter")>> + <<set $recruiterSlave = $recruiterSlave.ID>> + <<break>> + <<else>> /* no matching slave object in the slavesOriginal array */ + <<set $i = $slaveIndices[$recruiterSlave.ID]>> + <<set $slaves[$i].canRecruit = 0>> + <<set $recruiterSlave = -1>> + <</if>> + <</if>> + <</for>> + + <<else>> /* extended family mode == 0 */ + + <<set _recruiterSlaves = $slaves.filter(function(s) { return s.recruiter != 0 && s.fuckdoll == 0 && s.devotion > 50 && s.relation == 0 && canWalk(s); })>> + <<for _recruiterSlaves.length > 0>> + <<set $recruiterSlave = _recruiterSlaves.pluck()>> + <<set $j = $genePool.findIndex(function(o) { return o.ID == $recruiterSlave.ID; })>> + <<if $j != -1>> + <<set $events.push("RE relative recruiter")>> + <<set $recruiterSlave = $recruiterSlave.ID>> + <<break>> + <<else>> /* no matching slave object in the slavesOriginal array -- bug? */ + <<set $i = $slaveIndices[$recruiterSlave.ID]>> + <<set $slaves[$i].canRecruit = 0>> + <<set $recruiterSlave = -1>> + <</if>> + <</for>> -<</if>> /* closes extended family mode */ + <</if>> /* closes extended family mode */ -<<if $FSAnnounced == 1>> - <<set $FSAcquisitionEvents = []>> - <<if $arcologies[0].FSSupremacist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Supremacist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSSubjugationist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Subjugationist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSGenderRadicalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Gender Radicalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSRepopulationFocus > random(1,100)>> - <<set $FSAcquisitionEvents.push("Repopulation Efforts")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSRestart > random(1,100)>> - <<set $FSAcquisitionEvents.push("Eugenics")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $seePreg != 0>> - <<if $arcologies[0].FSGenderFundamentalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Gender Fundamentalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <</if>> - <<if $arcologies[0].FSPaternalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Paternalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSDegradationist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Degradationist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSBodyPurist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Body Purist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSTransformationFetishist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Transformation Fetishist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSYouthPreferentialist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Youth Preferentialist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSMaturityPreferentialist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Maturity Preferentialist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSSlimnessEnthusiast > random(1,100)>> - <<set $FSAcquisitionEvents.push("Slimness Enthusiast")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSAssetExpansionist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Asset Expansionist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $seePreg != 0>> - <<if $arcologies[0].FSPastoralist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Pastoralist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <</if>> - <<if $arcologies[0].FSPhysicalIdealist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Physical Idealist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSHedonisticDecadence > random(1,100)>> - <<set $FSAcquisitionEvents.push("Hedonistic Decadence")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSChattelReligionist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Chattel Religionist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSSupremacist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Supremacist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSSubjugationist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Subjugationist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSGenderRadicalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Gender Radicalist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $seePreg != 0>> - <<if $arcologies[0].FSGenderFundamentalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Gender Fundamentalist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <</if>> - <<if $arcologies[0].FSPaternalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Paternalist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSDegradationist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Degradationist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSBodyPurist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Body Purist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSTransformationFetishist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Transformation Fetishist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSYouthPreferentialist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Youth Preferentialist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSMaturityPreferentialist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Maturity Preferentialist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSSlimnessEnthusiast > random(1,100)>> - <<set $FSAcquisitionEvents.push("Slimness Enthusiast Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSAssetExpansionist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Asset Expansionist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSPastoralist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Pastoralist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSPhysicalIdealist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Physical Idealist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSHedonisticDecadence > random(1,100)>> - <<set $FSAcquisitionEvents.push("Hedonistic Decadence Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSChattelReligionist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Chattel Religionist Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSRepopulationFocus > random(1,100)>> - <<set $FSAcquisitionEvents.push("Repopulation Efforts Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSRestart > random(1,100)>> - <<set $FSAcquisitionEvents.push("Eugenics Two")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSRomanRevivalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Roman Revivalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSAztecRevivalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Aztec Revivalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSEdoRevivalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Edo Revivalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSArabianRevivalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Arabian Revivalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSChineseRevivalist > random(1,100)>> - <<set $FSAcquisitionEvents.push("Chinese Revivalist")>> - <<set $events.push("RE FS acquisition")>> - <</if>> - <<if $arcologies[0].FSEgyptianRevivalist > random(1,100)>> - <<set $events.push("RE FSEgyptianRevivalist acquisition")>> - <</if>> - <<if $arcologies[0].FSPaternalistDecoration == 100 && $minimumSlaveAge <= 14 && $week >= 100 && (ndef $swanSong || $swanSong == 0)>> - <<set $recruit.push("paternalist swan song")>> - <</if>> - <<set $FSNonconformistEvents = []>> - <<if $arcologies[0].FSSupremacist < 95 && $arcologies[0].FSSupremacist > 50>> - <<set $FSNonconformistEvents.push("Supremacist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSSubjugationist < 95 && $arcologies[0].FSSubjugationist > 50>> - <<set $FSNonconformistEvents.push("Subjugationist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSRepopulationFocus < 95 && $arcologies[0].FSRepopulationFocus > 50>> - <<set $FSNonconformistEvents.push("Repopulation Efforts")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSRestart < 95 && $arcologies[0].FSRestart > 50>> - <<set $FSNonconformistEvents.push("Eugenics")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSGenderRadicalist < 95 && $arcologies[0].FSGenderRadicalist > 50>> - <<set $FSNonconformistEvents.push("Gender Radicalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSGenderFundamentalist < 95 && $arcologies[0].FSGenderFundamentalist > 50>> - <<set $FSNonconformistEvents.push("Gender Fundamentalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSPaternalist < 95 && $arcologies[0].FSPaternalist > 50>> - <<set $FSNonconformistEvents.push("Paternalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSDegradationist < 95 && $arcologies[0].FSDegradationist > 50>> - <<set $FSNonconformistEvents.push("Degradationist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSBodyPurist < 95 && $arcologies[0].FSBodyPurist > 50>> - <<set $FSNonconformistEvents.push("Body Purist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSTransformationFetishist < 95 && $arcologies[0].FSTransformationFetishist > 50>> - <<set $FSNonconformistEvents.push("Transformation Fetishist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSYouthPreferentialist < 95 && $arcologies[0].FSYouthPreferentialist > 50>> - <<set $FSNonconformistEvents.push("Youth Preferentialist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSMaturityPreferentialist < 95 && $arcologies[0].FSMaturityPreferentialist > 50>> - <<set $FSNonconformistEvents.push("Maturity Preferentialist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSSlimnessEnthusiast < 95 && $arcologies[0].FSSlimnessEnthusiast > 50>> - <<set $FSNonconformistEvents.push("Slimness Enthusiast")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSAssetExpansionist < 95 && $arcologies[0].FSAssetExpansionist > 50>> - <<set $FSNonconformistEvents.push("Asset Expansionist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSPastoralist < 95 && $arcologies[0].FSPastoralist > 50>> - <<set $FSNonconformistEvents.push("Pastoralist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSPhysicalIdealist < 95 && $arcologies[0].FSPhysicalIdealist > 50>> - <<set $FSNonconformistEvents.push("Physical Idealist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSHedonisticDecadence < 95 && $arcologies[0].FSHedonisticDecadence > 50>> - <<set $FSNonconformistEvents.push("Hedonistic Decadence")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSChattelReligionist < 95 && $arcologies[0].FSChattelReligionist > 50>> - <<set $FSNonconformistEvents.push("Chattel Religionist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSRomanRevivalist < 95 && $arcologies[0].FSRomanRevivalist > 50>> - <<set $FSNonconformistEvents.push("Roman Revivalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSAztecRevivalist < 95 && $arcologies[0].FSAztecRevivalist > 50>> - <<set $FSNonconformistEvents.push("Aztec Revivalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSEdoRevivalist < 95 && $arcologies[0].FSEdoRevivalist > 50>> - <<set $FSNonconformistEvents.push("Edo Revivalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSArabianRevivalist < 95 && $arcologies[0].FSArabianRevivalist > 50>> - <<set $FSNonconformistEvents.push("Arabian Revivalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSChineseRevivalist < 95 && $arcologies[0].FSChineseRevivalist > 50>> - <<set $FSNonconformistEvents.push("Chinese Revivalist")>> - <<set $events.push("RE FS nonconformist")>> - <</if>> - <<if $arcologies[0].FSEgyptianRevivalist < 95 && $arcologies[0].FSEgyptianRevivalist > 50>> - <<set $FSNonconformistEvents.push("Egyptian Revivalist")>> - <<set $events.push("RE FS nonconformist")>> + <<if $FSAnnounced == 1>> + <<set $FSAcquisitionEvents = []>> + <<if $arcologies[0].FSSupremacist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Supremacist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSSubjugationist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Subjugationist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSGenderRadicalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Gender Radicalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSRepopulationFocus > random(1,100)>> + <<set $FSAcquisitionEvents.push("Repopulation Efforts")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSRestart > random(1,100)>> + <<set $FSAcquisitionEvents.push("Eugenics")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $seePreg != 0>> + <<if $arcologies[0].FSGenderFundamentalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Gender Fundamentalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <</if>> + <<if $arcologies[0].FSPaternalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Paternalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSDegradationist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Degradationist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSBodyPurist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Body Purist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSTransformationFetishist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Transformation Fetishist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSYouthPreferentialist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Youth Preferentialist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSMaturityPreferentialist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Maturity Preferentialist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSSlimnessEnthusiast > random(1,100)>> + <<set $FSAcquisitionEvents.push("Slimness Enthusiast")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSAssetExpansionist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Asset Expansionist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $seePreg != 0>> + <<if $arcologies[0].FSPastoralist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Pastoralist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <</if>> + <<if $arcologies[0].FSPhysicalIdealist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Physical Idealist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSHedonisticDecadence > random(1,100)>> + <<set $FSAcquisitionEvents.push("Hedonistic Decadence")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSChattelReligionist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Chattel Religionist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSSupremacist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Supremacist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSSubjugationist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Subjugationist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSGenderRadicalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Gender Radicalist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $seePreg != 0>> + <<if $arcologies[0].FSGenderFundamentalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Gender Fundamentalist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <</if>> + <<if $arcologies[0].FSPaternalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Paternalist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSDegradationist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Degradationist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSBodyPurist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Body Purist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSTransformationFetishist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Transformation Fetishist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSYouthPreferentialist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Youth Preferentialist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSMaturityPreferentialist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Maturity Preferentialist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSSlimnessEnthusiast > random(1,100)>> + <<set $FSAcquisitionEvents.push("Slimness Enthusiast Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSAssetExpansionist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Asset Expansionist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSPastoralist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Pastoralist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSPhysicalIdealist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Physical Idealist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSHedonisticDecadence > random(1,100)>> + <<set $FSAcquisitionEvents.push("Hedonistic Decadence Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSChattelReligionist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Chattel Religionist Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSRepopulationFocus > random(1,100)>> + <<set $FSAcquisitionEvents.push("Repopulation Efforts Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSRestart > random(1,100)>> + <<set $FSAcquisitionEvents.push("Eugenics Two")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSRomanRevivalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Roman Revivalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSAztecRevivalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Aztec Revivalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSEdoRevivalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Edo Revivalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSArabianRevivalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Arabian Revivalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSChineseRevivalist > random(1,100)>> + <<set $FSAcquisitionEvents.push("Chinese Revivalist")>> + <<set $events.push("RE FS acquisition")>> + <</if>> + <<if $arcologies[0].FSEgyptianRevivalist > random(1,100)>> + <<set $events.push("RE FSEgyptianRevivalist acquisition")>> + <</if>> + <<if $arcologies[0].FSPaternalistDecoration == 100 && $minimumSlaveAge <= 14 && $week >= 100 && (ndef $swanSong || $swanSong == 0)>> + <<set $recruit.push("paternalist swan song")>> + <</if>> + <<set $FSNonconformistEvents = []>> + <<if $arcologies[0].FSSupremacist < 95 && $arcologies[0].FSSupremacist > 50>> + <<set $FSNonconformistEvents.push("Supremacist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSSubjugationist < 95 && $arcologies[0].FSSubjugationist > 50>> + <<set $FSNonconformistEvents.push("Subjugationist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSRepopulationFocus < 95 && $arcologies[0].FSRepopulationFocus > 50>> + <<set $FSNonconformistEvents.push("Repopulation Efforts")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSRestart < 95 && $arcologies[0].FSRestart > 50>> + <<set $FSNonconformistEvents.push("Eugenics")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSGenderRadicalist < 95 && $arcologies[0].FSGenderRadicalist > 50>> + <<set $FSNonconformistEvents.push("Gender Radicalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSGenderFundamentalist < 95 && $arcologies[0].FSGenderFundamentalist > 50>> + <<set $FSNonconformistEvents.push("Gender Fundamentalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSPaternalist < 95 && $arcologies[0].FSPaternalist > 50>> + <<set $FSNonconformistEvents.push("Paternalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSDegradationist < 95 && $arcologies[0].FSDegradationist > 50>> + <<set $FSNonconformistEvents.push("Degradationist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSBodyPurist < 95 && $arcologies[0].FSBodyPurist > 50>> + <<set $FSNonconformistEvents.push("Body Purist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSTransformationFetishist < 95 && $arcologies[0].FSTransformationFetishist > 50>> + <<set $FSNonconformistEvents.push("Transformation Fetishist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSYouthPreferentialist < 95 && $arcologies[0].FSYouthPreferentialist > 50>> + <<set $FSNonconformistEvents.push("Youth Preferentialist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSMaturityPreferentialist < 95 && $arcologies[0].FSMaturityPreferentialist > 50>> + <<set $FSNonconformistEvents.push("Maturity Preferentialist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSSlimnessEnthusiast < 95 && $arcologies[0].FSSlimnessEnthusiast > 50>> + <<set $FSNonconformistEvents.push("Slimness Enthusiast")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSAssetExpansionist < 95 && $arcologies[0].FSAssetExpansionist > 50>> + <<set $FSNonconformistEvents.push("Asset Expansionist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSPastoralist < 95 && $arcologies[0].FSPastoralist > 50>> + <<set $FSNonconformistEvents.push("Pastoralist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSPhysicalIdealist < 95 && $arcologies[0].FSPhysicalIdealist > 50>> + <<set $FSNonconformistEvents.push("Physical Idealist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSHedonisticDecadence < 95 && $arcologies[0].FSHedonisticDecadence > 50>> + <<set $FSNonconformistEvents.push("Hedonistic Decadence")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSChattelReligionist < 95 && $arcologies[0].FSChattelReligionist > 50>> + <<set $FSNonconformistEvents.push("Chattel Religionist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSRomanRevivalist < 95 && $arcologies[0].FSRomanRevivalist > 50>> + <<set $FSNonconformistEvents.push("Roman Revivalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSAztecRevivalist < 95 && $arcologies[0].FSAztecRevivalist > 50>> + <<set $FSNonconformistEvents.push("Aztec Revivalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSEdoRevivalist < 95 && $arcologies[0].FSEdoRevivalist > 50>> + <<set $FSNonconformistEvents.push("Edo Revivalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSArabianRevivalist < 95 && $arcologies[0].FSArabianRevivalist > 50>> + <<set $FSNonconformistEvents.push("Arabian Revivalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSChineseRevivalist < 95 && $arcologies[0].FSChineseRevivalist > 50>> + <<set $FSNonconformistEvents.push("Chinese Revivalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> + <<if $arcologies[0].FSEgyptianRevivalist < 95 && $arcologies[0].FSEgyptianRevivalist > 50>> + <<set $FSNonconformistEvents.push("Egyptian Revivalist")>> + <<set $events.push("RE FS nonconformist")>> + <</if>> <</if>> -<</if>> -/* SCHOOL EVENTS */ + /* SCHOOL EVENTS */ -<<if $cash > 50000>> - <<set $RESEndowment = []>> - <<if $TSS.schoolUpgrade == 0>> - <<if ($TSS.studentsBought > 1) || ($TSS.schoolPresent != 0)>> - <<set $events.push("RES Endowment")>> - <<if $TSS.studentsBought > 2>> - <<set $events.push("RES Endowment")>> + <<if $cash > 50000>> + <<set $RESEndowment = []>> + <<if $TSS.schoolUpgrade == 0>> + <<if ($TSS.studentsBought > 1) || ($TSS.schoolPresent != 0)>> + <<set $events.push("RES Endowment")>> + <<if $TSS.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <</if>> + <<set $RESEndowment.push("TSS")>> + <</if>> + <</if>> + <<if $GRI.schoolUpgrade == 0>> + <<if ($GRI.studentsBought > 1) || ($GRI.schoolPresent != 0)>> + <<set $events.push("RES Endowment")>> + <<if $GRI.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <</if>> + <<set $RESEndowment.push("GRI")>> + <</if>> + <</if>> + <<if $SCP.schoolUpgrade == 0>> + <<if ($SCP.studentsBought > 1) || ($SCP.schoolPresent != 0)>> + <<set $events.push("RES Endowment")>> + <<if $SCP.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <</if>> + <<set $RESEndowment.push("SCP")>> + <</if>> + <</if>> + <<if $LDE.schoolUpgrade == 0>> + <<if ($LDE.studentsBought > 1) || ($LDE.schoolPresent != 0)>> + <<set $events.push("RES Endowment")>> + <<if $LDE.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <</if>> + <<set $RESEndowment.push("LDE")>> + <</if>> + <</if>> + <<if $TGA.schoolUpgrade == 0>> + <<if ($TGA.studentsBought > 1) || ($TGA.schoolPresent != 0)>> + <<set $events.push("RES Endowment")>> + <<if $TGA.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <</if>> + <<set $RESEndowment.push("TGA")>> + <</if>> + <</if>> + <<if $HA.schoolUpgrade == 0>> + <<if ($HA.studentsBought > 1) || ($HA.schoolPresent != 0)>> + <<set $events.push("RES Endowment")>> + <<if $HA.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <</if>> + <<set $RESEndowment.push("HA")>> + <</if>> + <</if>> + <<if $TCR.schoolUpgrade == 0>> + <<if ($TCR.studentsBought > 1) || ($TCR.schoolPresent != 0)>> + <<set $events.push("RES Endowment")>> + <<if $TCR.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <</if>> + <<set $RESEndowment.push("TCR")>> + <</if>> + <</if>> + <<if $TFS.schoolUpgrade == 0>> + <<if ($TFS.studentsBought > 1) || ($TFS.schoolPresent != 0) || (($TFS.studentsBought > 0) && ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1))>> + <<set $events.push("RES Endowment")>> + <<set $RESEndowment.push("TFS")>> + <<if $TFS.studentsBought > 2>> + <<set $events.push("RES Endowment")>> + <<set $RESEndowment.push("TFS")>> + <</if>> + <<if ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>> + <<set $events.push("RES Endowment")>> + <<set $RESEndowment.push("TFS")>> + <</if>> + <</if>> <</if>> - <<set $RESEndowment.push("TSS")>> - <</if>> - <</if>> - <<if $GRI.schoolUpgrade == 0>> - <<if ($GRI.studentsBought > 1) || ($GRI.schoolPresent != 0)>> - <<set $events.push("RES Endowment")>> - <<if $GRI.studentsBought > 2>> - <<set $events.push("RES Endowment")>> - <</if>> - <<set $RESEndowment.push("GRI")>> - <</if>> - <</if>> - <<if $SCP.schoolUpgrade == 0>> - <<if ($SCP.studentsBought > 1) || ($SCP.schoolPresent != 0)>> - <<set $events.push("RES Endowment")>> - <<if $SCP.studentsBought > 2>> - <<set $events.push("RES Endowment")>> - <</if>> - <<set $RESEndowment.push("SCP")>> - <</if>> - <</if>> - <<if $LDE.schoolUpgrade == 0>> - <<if ($LDE.studentsBought > 1) || ($LDE.schoolPresent != 0)>> - <<set $events.push("RES Endowment")>> - <<if $LDE.studentsBought > 2>> - <<set $events.push("RES Endowment")>> - <</if>> - <<set $RESEndowment.push("LDE")>> - <</if>> - <</if>> - <<if $TGA.schoolUpgrade == 0>> - <<if ($TGA.studentsBought > 1) || ($TGA.schoolPresent != 0)>> - <<set $events.push("RES Endowment")>> - <<if $TGA.studentsBought > 2>> - <<set $events.push("RES Endowment")>> - <</if>> - <<set $RESEndowment.push("TGA")>> - <</if>> - <</if>> - <<if $HA.schoolUpgrade == 0>> - <<if ($HA.studentsBought > 1) || ($HA.schoolPresent != 0)>> - <<set $events.push("RES Endowment")>> - <<if $HA.studentsBought > 2>> - <<set $events.push("RES Endowment")>> - <</if>> - <<set $RESEndowment.push("HA")>> - <</if>> - <</if>> - <<if $TCR.schoolUpgrade == 0>> - <<if ($TCR.studentsBought > 1) || ($TCR.schoolPresent != 0)>> - <<set $events.push("RES Endowment")>> - <<if $TCR.studentsBought > 2>> - <<set $events.push("RES Endowment")>> - <</if>> - <<set $RESEndowment.push("TCR")>> - <</if>> - <</if>> - <<if $TFS.schoolUpgrade == 0>> - <<if ($TFS.studentsBought > 1) || ($TFS.schoolPresent != 0) || (($TFS.studentsBought > 0) && ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1))>> - <<set $events.push("RES Endowment")>> - <<set $RESEndowment.push("TFS")>> - <<if $TFS.studentsBought > 2>> - <<set $events.push("RES Endowment")>> - <<set $RESEndowment.push("TFS")>> - <</if>> - <<if ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>> - <<set $events.push("RES Endowment")>> - <<set $RESEndowment.push("TFS")>> - <</if>> - <</if>> - <</if>> -<</if>> - -<<set $RESMove = []>> -<<if $TSS.schoolUpgrade != 0>> -<<if $TSS.schoolPresent == 0>> -<<if $TSS.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("TSS")>> -<</if>> -<</if>> -<</if>> -<<if $GRI.schoolUpgrade != 0>> -<<if $GRI.schoolPresent == 0>> -<<if $GRI.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("GRI")>> -<</if>> -<</if>> -<</if>> -<<if $SCP.schoolUpgrade != 0>> -<<if $SCP.schoolPresent == 0>> -<<if $SCP.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("SCP")>> -<</if>> -<</if>> -<</if>> -<<if $LDE.schoolUpgrade != 0>> -<<if $LDE.schoolPresent == 0>> -<<if $LDE.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("LDE")>> -<</if>> -<</if>> -<</if>> -<<if $TGA.schoolUpgrade != 0>> -<<if $TGA.schoolPresent == 0>> -<<if $TGA.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("TGA")>> -<</if>> -<</if>> -<</if>> -<<if $HA.schoolUpgrade != 0>> -<<if $HA.schoolPresent == 0>> -<<if $HA.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("HA")>> -<</if>> -<</if>> -<</if>> -<<if $TCR.schoolUpgrade != 0 && $TCR.schoolPresent == 0 && $TCR.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("TCR")>> -<</if>> -<<if $TFS.schoolUpgrade != 0>> -<<if $TFS.schoolPresent == 0>> -<<if $TFS.schoolAnnexed == 0>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("TFS")>> - <<if ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>> - <<set $events.push("RES Move")>> - <<set $events.push("RES Move")>> - <<set $RESMove.push("TFS")>> - <<set $RESMove.push("TFS")>> <</if>> -<</if>> -<</if>> -<</if>> -<<set $RESSale = []>> -<<if $cash > 10000>> -<<if $rep > 6000>> - <<if $seeDicks != 100>> - <<if $TSS.studentsBought == 0>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("TSS")>> + <<set $RESMove = []>> + <<if $TSS.schoolUpgrade != 0>> + <<if $TSS.schoolPresent == 0>> + <<if $TSS.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("TSS")>> + <</if>> <</if>> - <<if $GRI.studentsBought == 0>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("GRI")>> + <</if>> + <<if $GRI.schoolUpgrade != 0>> + <<if $GRI.schoolPresent == 0>> + <<if $GRI.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("GRI")>> + <</if>> <</if>> - <<if $SCP.studentsBought == 0>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("SCP")>> + <</if>> + <<if $SCP.schoolUpgrade != 0>> + <<if $SCP.schoolPresent == 0>> + <<if $SCP.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("SCP")>> + <</if>> <</if>> - <<if $seePreg != 0>> - <<if $TCR.studentsBought == 0>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("TCR")>> + <</if>> + <<if $LDE.schoolUpgrade != 0>> + <<if $LDE.schoolPresent == 0>> + <<if $LDE.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("LDE")>> <</if>> <</if>> - <<if $HA.studentsBought == 0>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("HA")>> + <</if>> + <<if $TGA.schoolUpgrade != 0>> + <<if $TGA.schoolPresent == 0>> + <<if $TGA.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("TGA")>> + <</if>> <</if>> <</if>> - <<if $seeDicks != 0>> - <<if $LDE.studentsBought == 0>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("LDE")>> + <<if $HA.schoolUpgrade != 0>> + <<if $HA.schoolPresent == 0>> + <<if $HA.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("HA")>> + <</if>> <</if>> - <<if $TGA.studentsBought == 0>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("TGA")>> + <</if>> + <<if $TCR.schoolUpgrade != 0 && $TCR.schoolPresent == 0 && $TCR.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("TCR")>> + <</if>> + <<if $TFS.schoolUpgrade != 0>> + <<if $TFS.schoolPresent == 0>> + <<if $TFS.schoolAnnexed == 0>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("TFS")>> + <<if ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>> + <<set $events.push("RES Move")>> + <<set $events.push("RES Move")>> + <<set $RESMove.push("TFS")>> + <<set $RESMove.push("TFS")>> + <</if>> + <</if>> <</if>> - <<if ($TFS.studentsBought == 0)>> - <<set $events.push("RES Sale")>> - <<set $RESSale.push("TFS")>> - <<if ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>> - <<set $events.push("RES Sale")>> + <</if>> + + <<set $RESSale = []>> + <<if $cash > 10000>> + <<if $rep > 6000>> + <<if $seeDicks != 100>> + <<if $TSS.studentsBought == 0>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("TSS")>> + <</if>> + <<if $GRI.studentsBought == 0>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("GRI")>> + <</if>> + <<if $SCP.studentsBought == 0>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("SCP")>> + <</if>> + <<if $seePreg != 0>> + <<if $TCR.studentsBought == 0>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("TCR")>> + <</if>> + <</if>> + <<if $HA.studentsBought == 0>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("HA")>> + <</if>> + <</if>> + <<if $seeDicks != 0>> + <<if $LDE.studentsBought == 0>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("LDE")>> + <</if>> + <<if $TGA.studentsBought == 0>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("TGA")>> + <</if>> + <<if ($TFS.studentsBought == 0)>> <<set $events.push("RES Sale")>> - <<set $RESSale.push("TFS")>> - <<set $RESSale.push("TFS")>> + <<set $RESSale.push("TFS")>> + <<if ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>> + <<set $events.push("RES Sale")>> + <<set $events.push("RES Sale")>> + <<set $RESSale.push("TFS")>> + <<set $RESSale.push("TFS")>> + <</if>> + <</if>> <</if>> <</if>> <</if>> -<</if>> -<</if>> -<<if $justiceEvents.length > 0>> - <<if ($seeExtreme == 0) || ($seeDicks == 0)>> - <<set $justiceEvents.delete("slave training")>> - <</if>> - <<if $justiceEvents.length > 2>> - <<set $events.push("JE slave dispute")>> - <<set $events.push("JE slave dispute")>> - <<else>> - <<set $events.push("JE slave dispute")>> + <<if $justiceEvents.length > 0>> + <<if ($seeExtreme == 0) || ($seeDicks == 0)>> + <<set $justiceEvents.delete("slave training")>> + <</if>> + <<if $justiceEvents.length > 2>> + <<set $events.push("JE slave dispute")>> + <<set $events.push("JE slave dispute")>> + <<else>> + <<set $events.push("JE slave dispute")>> + <</if>> <</if>> -<</if>> -<<if $minimumSlaveCost > 3000>> - <<set $events.push("RE shipping container")>> -<</if>> + <<if $minimumSlaveCost > 3000>> + <<set $events.push("RE shipping container")>> + <</if>> -<<if $corpCash > 50000>> - <<set $events.push("REM merger")>> -<</if>> + <<if $corpCash > 50000>> + <<set $events.push("REM merger")>> + <</if>> -<<if $rep-10000 > random(1,12500)>> + <<if $rep-10000 > random(1,12500)>> <<set $events.push("RE royal blood")>> -<</if>> + <</if>> -<<if $mercenaries > 0>> + <<if $mercenaries > 0>> <<set $events.push("RE AWOL")>> <<set $events.push("RE Poker Night")>> -<</if>> + <</if>> -<<if $arcologies[0].prosperity >= 100 && ($rep > random(1,30000))>> - <<set _milfSlaves = $slaves.filter(function(s) { return s.devotion > 20 && canTalk(s) && canWalk(s) && (s.assignment == "serve the public" || s.assignment == "serve in the club"); })>> - <<if _milfSlaves.length > 0>> - <<set $events.push("RE milf tourist")>> - <<set $milfSlaveID = _milfSlaves.random()>> - <<set $milfSlaveID = $milfSlaveID.ID>> + <<if $arcologies[0].prosperity >= 100 && ($rep > random(1,30000))>> + <<set _milfSlaves = $slaves.filter(function(s) { return s.devotion > 20 && canTalk(s) && canWalk(s) && (s.assignment == "serve the public" || s.assignment == "serve in the club"); })>> + <<if _milfSlaves.length > 0>> + <<set $events.push("RE milf tourist")>> + <<set $milfSlaveID = _milfSlaves.random()>> + <<set $milfSlaveID = $milfSlaveID.ID>> + <</if>> <</if>> -<</if>> -<<if $RegularParties == 1>> - <<if ($PC.vagina == 1 && $PC.title == 0) && (random(0,99) < $seeDicks)>> - <<set $events.push("RE male citizen hookup")>> - <<else>> - <<set $events.push("RE citizen hookup")>> + <<if $RegularParties == 1>> + <<if ($PC.vagina == 1 && $PC.title == 0) && (random(0,99) < $seeDicks)>> + <<set $events.push("RE male citizen hookup")>> + <<else>> + <<set $events.push("RE citizen hookup")>> + <</if>> + <<if $rep-10000 > random(1,10000)>> + <<if ($PC.vagina == 1 && $PC.boobs == 1 && $PC.title == 0) && (random(0,99) < $seeDicks)>> + <<set $events.push("RE male arcology owner")>> + <<else>> + <<set $events.push("RE female arcology owner")>> + <</if>> + <</if>> <</if>> - <<if $rep-10000 > random(1,10000)>> - <<if ($PC.vagina == 1 && $PC.boobs == 1 && $PC.title == 0) && (random(0,99) < $seeDicks)>> - <<set $events.push("RE male arcology owner")>> - <<else>> - <<set $events.push("RE female arcology owner")>> + + <<set $REM = []>> + <<if random(1,100) > $slaveCostFactor*40>> + <<set $events.push("REM fluctuations")>> + <<set $events.push("REM fluctuations")>> + <<set $REM = 1>> <</if>> + <<if random(1,100) < $slaveCostFactor*60>> + <<set $events.push("REM fluctuations")>> + <<set $events.push("REM fluctuations")>> + <<set $REM = -1>> <</if>> -<</if>> -<<set $REM = []>> -<<if random(1,100) > $slaveCostFactor*40>> - <<set $events.push("REM fluctuations")>> - <<set $events.push("REM fluctuations")>> - <<set $REM = 1>> -<</if>> -<<if random(1,100) < $slaveCostFactor*60>> - <<set $events.push("REM fluctuations")>> - <<set $events.push("REM fluctuations")>> - <<set $REM = -1>> -<</if>> - -/* FUTURE SOCIETY EVENTS */ + /* FUTURE SOCIETY EVENTS */ <<if $arcologies[0].FSBodyPurist > random(25,100)>> <<set $REFSevent.push("body purism encounter")>> @@ -1331,30 +1332,29 @@ <<set $REFSevent.push("degradationist encounter")>> <</if>> + /* EVENT RANDOMIZATION */ -/* EVENT RANDOMIZATION */ - -<<for $i = 0; $i < $RecETSevent.length; $i++>> - <<set $events.push("RecETS")>> -<</for>> -<<for $i = 0; $i < $REFIevent.length; $i++>> - <<set $events.push("REFI")>> -<</for>> -<<for $i = 0; $i < $PESSevent.length; $i++>> - <<set $events.push("PESS")>> -<</for>> -<<for $i = 0; $i < $PETSevent.length; $i++>> - <<set $events.push("PETS")>> -<</for>> -<<for $i = 0; $i < $REFSevent.length; $i++>> - <<set $events.push("REFS")>> -<</for>> -<<if $cheatMode == 1>> - <<goto "random event select">> -<<else>> - <<goto "random event roll">> -<</if>> + <<for $i = 0; $i < $RecETSevent.length; $i++>> + <<set $events.push("RecETS")>> + <</for>> + <<for $i = 0; $i < $REFIevent.length; $i++>> + <<set $events.push("REFI")>> + <</for>> + <<for $i = 0; $i < $PESSevent.length; $i++>> + <<set $events.push("PESS")>> + <</for>> + <<for $i = 0; $i < $PETSevent.length; $i++>> + <<set $events.push("PETS")>> + <</for>> + <<for $i = 0; $i < $REFSevent.length; $i++>> + <<set $events.push("REFS")>> + <</for>> + <<if $cheatMode == 1>> + <<goto "random event select">> + <<else>> + <<goto "random event roll">> + <</if>> -<</silently>> + <</silently>> <</if>> /* CLOSES SLAVE SELECT */ diff --git a/src/uncategorized/reAnalPunishment.tw b/src/uncategorized/reAnalPunishment.tw index 6459b5fcc8689b9703fe41a1c10ce97a5918ebab..4ac709cf79bc75f29fc46ea0fcb36263728ac10c 100644 --- a/src/uncategorized/reAnalPunishment.tw +++ b/src/uncategorized/reAnalPunishment.tw @@ -1,33 +1,23 @@ -:: RE anal punishment +:: RE anal punishment [nobr] -<<nobr>> - -<<set $nextButton = "Continue">> -<<set $nextLink = "AS Dump">> -<<set $returnTo = "Next Week">> +<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "RIE Eligibility Check">> <<set $activeSlave = $eventSlave>> -As you're making the rounds through your penthouse, you hear $HeadGirl.slaveName speaking in the tones she uses to castigate misbehaving slaves in the next room. When you appear in the doorway, you have little chance to survey the situation before <<EventNameLink $activeSlave>>, apparently the miscreant, flings herself at your feet. She clings to one of your legs convulsively, choking on tears as she stares up at you and tries to muster an explanation. After two false starts, she manages to start begging. -<<if SlaveStatsChecker.checkForLisp($activeSlave)>> - "Pleathe, <<Master>>," she wails miserably. "Pleathe don't let her rape my butt." -<<else>> - "Please, <<Master>>," she wails miserably. "Please don't let her rape my butt." -<</if>> +<<run Enunciate($activeSlave)>> + +As you're making the rounds through your penthouse, you hear $HeadGirl.slaveName speaking in the tones she uses to castigate misbehaving slaves in the next room. When you appear in the doorway, you have little chance to survey the situation before <<EventNameLink $activeSlave>>, apparently the miscreant, flings herself at your feet. She clings to one of your legs convulsively, choking on tears as she stares up at you and tries to muster an explanation. After two false starts, she manages to start begging. "Plea<<s>>e, <<Master>>," she wails miserably. "Plea<<s>>e don't let her rape my butt." <br><br> You shoot an amused glance at $HeadGirl.slaveName, who smiles back as she explains the slave's minor sin and her intention to sodomize the malefactor. She does not bother to keep an edge of anticipation out of her voice, and $activeSlave.slaveName cries harder and clings to you with renewed force as your Head Girl pronounces her intention with cruel clarity.<<if $activeSlave.boobs > 4000>> The supplicant's breasts are so huge that her embrace of your leg has completely surrounded it in deliciously heaving breastflesh.<<elseif $activeSlave.boobs > 1000>> The weight of the supplicant's breasts is quite noticeable as her embrace of your leg presses them against it.<</if>> You look down at $activeSlave.slaveName. She stares back with huge wet $activeSlave.eyeColor eyes, doing her best to implore you with her gaze, and scooting her rear in towards your foot in an unconscious effort to protect it from the promised assrape. She's quite authentically terrified; her whole body is shaking. <br><br> $HeadGirl.slaveName is very much acting within her duties, and $activeSlave.slaveName has now misbehaved twice by trying to go over your Head Girl's head by appealing to you. $HeadGirl.slaveName is ready to carry out the sentence: <<if ($HeadGirl.dick > 2) && canAchieveErection($HeadGirl) && ($HeadGirl.dickAccessory != "chastity") && ($HeadGirl.dickAccessory != "combined chastity")>>her cock is fully erect, and she's keeping it hard with one hand. She slaps its head against her other palm<<elseif $HeadGirl.dick > 0>>since her dick isn't an appropriate instrument for inflicting anal pain, she's got an elephantine dildo ready. She slaps it against her palm<<else>>She's got an elephantine dildo ready, and she slaps it against her palm<</if>>, forcing a frightened moan from $activeSlave.slaveName. -<</nobr>>\ +<br><br> <span id="result"> <<link "Carry on">> - <<replace "#name">>\ - $activeSlave.slaveName\ - <</replace>>\ + <<EventNameDelink $activeSlave>> <<replace "#result">> - <<nobr>> You ignore $activeSlave.slaveName - no small feat, since the poor <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>> is clinging to your leg - and tell $HeadGirl.slaveName to carry on. Your Head Girl @@.mediumaquamarine;puffs up a bit with pride,@@ and orders the weeping slave to present her anus. The <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>> does not resist, but neither does she comply. $HeadGirl.slaveName jabs a thumb into $activeSlave.slaveName's side, right above her kidney, driving the wind out of the slave with a pained grunt. She arches her back involuntarily and her grip on you loosens, and $HeadGirl.slaveName drags her off you. She jabs her again, depriving her victim of breath completely, and then takes her by the ankle, dragging the slave across the floor with comic effect. The slave leaves a trail of tears across the flooring as she vanishes into the room. As you continue making your rounds, you hear a drawn-out howl followed by rhythmic screaming. <<set $activeSlave.analCount += 1>> <<set $analTotal += 1>> @@ -37,43 +27,24 @@ $HeadGirl.slaveName is very much acting within her duties, and $activeSlave.slav <</nobr>> <</replace>> <</link>> -<<link "Take part">> - <<replace "#name">>\ - $activeSlave.slaveName\ - <</replace>>\ +<br><<link "Take part">> + <<EventNameDelink $activeSlave>> <<replace "#result">> - <<nobr>> You explain $activeSlave.slaveName's double crime to her, and tell $HeadGirl.slaveName to get started. Your Head Girl orders the weeping slave to present her anus. The <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>> does not resist, but neither does she comply. $HeadGirl.slaveName jabs a thumb into $activeSlave.slaveName's side, right above her kidney, driving the wind out of the slave with a pained grunt. She arches her back involuntarily and her grip on you loosens, so $HeadGirl.slaveName drags her off you, telling $activeSlave.slaveName that it'll hurt less if she cooperates and assumes the proper position. She doesn't, so $HeadGirl.slaveName assfucks her lying flat on the floor, with the poor girl sobbing loudly as $HeadGirl.slaveName <<if ($HeadGirl.dick > 2) && canAchieveErection($HeadGirl) && ($HeadGirl.dickAccessory != "chastity") && ($HeadGirl.dickAccessory != "combined chastity")>>pistons her cock in and out of her rectum<<else>>rams the massive dildo up her butt<</if>>. <br><br> After enjoying the spectacle for a while, you judge that the slave's sphincter is loose enough and tell $HeadGirl.slaveName to flip the bitch over. @@.hotpink;She obeys, chuckling,@@ sitting herself down and hauling the reluctant slave onto her lap by seizing a nipple and pulling it into position so the agonized slave is forced to follow. <<if ($HeadGirl.dick > 2) && canAchieveErection($HeadGirl) && ($HeadGirl.dickAccessory != "chastity") && ($HeadGirl.dickAccessory != "combined chastity")>>$HeadGirl.slaveName reinserts her dick, <<else>>$HeadGirl.slaveName maneuvers the dildo down over her own crotch, approximating the position of a natural cock and using its base to stimulate herself. She reinserts it,<</if>> intentionally missing twice to keep the experience unpleasant despite her victim's well-fucked backdoor. <br><br> - $activeSlave.slaveName, now facing upward rather than having her face ground into the floor, notices for the first time that <<if $PC.dick == 1>>you've got your dick out and hard<<else>>you've donned one of your punishment-sized strap-ons<</if>>. Her $activeSlave.eyeColor eyes @@.gold;fly open with horror@@ as you kneel down and smack its head against her <<if $activeSlave.vagina > -1>>poor pussy<<else>>stretched taint<</if>>, but she doesn't realize how comprehensively fucked she is until you press it against the top of her already-stretched anal sphincter. - <<if SlaveStatsChecker.checkForLisp($activeSlave)>> - "Pleathe no, <<Master>>! It won't fit! Pleathe <<if $activeSlave.vagina > 0>>put it in my puthy<<else>>let me thuck it<</if>> inthtead," she begs desperately. "I p-promithe - <<else>> - "Please no, <<Master>>! It won't fit! Please <<if $activeSlave.vagina > 0>>put it in my pussy<<else>>let me suck it<</if>> instead," she begs desperately. "I p-promise - <</if>> - I'll be a g-good giiAAIIEEHH," she howls. She gasps for air, tears streaming down her $activeSlave.skin cheeks, and then continues: "AAAH! FUCK! TAKE IT OUUUT! N-NOOO, - <<if SlaveStatsChecker.checkForLisp($activeSlave)>> - PLEATHE DON'T THRUTHT - <<else>> - PLEASE DON'T THRUST - <</if>> - - AAAH! AAAH! AAAH!" + $activeSlave.slaveName, now facing upward rather than having her face ground into the floor, notices for the first time that <<if $PC.dick == 1>>you've got your dick out and hard<<else>>you've donned one of your punishment-sized strap-ons<</if>>. Her $activeSlave.eyeColor eyes @@.gold;fly open with horror@@ as you kneel down and smack its head against her <<if $activeSlave.vagina > -1>>poor pussy<<else>>stretched taint<</if>>, but she doesn't realize how comprehensively fucked she is until you press it against the top of her already-stretched anal sphincter. "Plea<<s>>e no, <<Master>>! It won't fit! Plea<<s>>e <<if $activeSlave.vagina > 0>>put it in my pu<<ss>>y<<else>>let me <<s>>uck it<</if>> in<<s>>tead," she begs desperately. "I p-promi<<s>>e I'll be a g-good giiAAIIEEHH," she howls. She gasps for air, tears streaming down her $activeSlave.skin cheeks, and then continues: "AAAH! FUCK! TAKE IT OUUUT! N-NOOO, PLEA<<S>>E DON'T THRU<<S>>T - AAAH! AAAH! AAAH!" <<set $activeSlave.trust -= 5, $activeSlave.analCount += 1>> <<set $analTotal += 1>> <<set $HeadGirl.devotion += 4, $HeadGirl.penetrativeCount += 1>> <<set $penetrativeTotal += 1>> <<set $slaves[$slaveIndices[$HeadGirl.ID]] = $HeadGirl>> - <</nobr>> <</replace>> <</link>> -<<link "Take pity">> - <<replace "#name">>\ - $activeSlave.slaveName\ - <</replace>>\ +<br><<link "Take pity">> + <<EventNameDelink $activeSlave>> <<replace "#result">> - <<nobr>> You tell $HeadGirl.slaveName you've decided to be merciful, just this once. $activeSlave.slaveName holds your leg even harder, @@.mediumaquamarine;sobbing her thanks@@ over and over until you reach down, pat her head, and tell her it will be all right, calming the hysterical <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>>. $HeadGirl.slaveName, meanwhile, stammers an apology. She hurries about her business, @@.gold;badly puzzled@@ and more than a little shaken. She thought she had the authority to anally rape misbehaving slaves, but she's no longer so sure of her rights and responsibilities. <<set $activeSlave.trust += 4>> <<set $slaves[$slaveIndices[$HeadGirl.ID]].trust -= 15>> diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 5678a1e6ba131b4384c4cc6e407dfb97d282806a..356d23caddc4f1e88ba2c91bdf3415fb6d208634 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -429,8 +429,8 @@ <<case "Maturity Preferentialist">> <<set $contractCost = 1000>> -<<set $activeSlaveOneTimeMinAge = ($retirementAge-4)>> -<<set $activeSlaveOneTimeMaxAge = ($retirementAge-2)>> +<<set $activeSlaveOneTimeMinAge = $fertilityAge + $minimumSlaveAge>> +<<set $activeSlaveOneTimeMaxAge = Math.max($activeSlaveOneTimeMinAge,$retirementAge-2)>> <<set $one_time_age_overrides_pedo_mode = 1>> /% A mature woman. %/ <<include "Generate New Slave">> <<set $activeSlave.origin = "She offered herself to you for enslavement after deciding you were her best hope of a good life as a slave.">> @@ -538,7 +538,7 @@ <<set $contractCost = 3000>> <<set $activeSlaveOneTimeMinAge = 25>> -<<set $activeSlaveOneTimeMaxAge = $retirementAge>> +<<set $activeSlaveOneTimeMaxAge = ($retirementAge-2)>> <<set $one_time_age_overrides_pedo_mode = 1>> <<include "Generate New Slave">> <<set $activeSlave.origin = "She offered herself to you for enslavement because she felt your arcology was the best place for a woman of her appearance.">> @@ -611,7 +611,7 @@ <<set $one_time_age_overrides_pedo_mode = 1>> <<include "Generate New Slave">> <<set $activeSlave.origin = "She offered herself to you to escape enslavement in her homeland for being older and unmarried.">> -<<set $activeSlave.age = random(28,$retirementAge)>> +<<set $activeSlave.age = random(28,$retirementAge-2)>> <<set $activeSlave.boobs += random(6,15)*200>> <<set $activeSlave.nipples = "inverted">> <<set $activeSlave.areolae = 3>> diff --git a/src/uncategorized/recruiterSelect.tw b/src/uncategorized/recruiterSelect.tw index cc3fd7d92b002903cc6e991552e05ce226583d46..4e1ced6094c6c00d4d86d32529c04dbda10f6418 100644 --- a/src/uncategorized/recruiterSelect.tw +++ b/src/uncategorized/recruiterSelect.tw @@ -21,7 +21,7 @@ <br><br>Your recruiter will <<if $recruiterTarget != "other arcologies">>target ''$recruiterTarget.''<<else>>spread your arcology's culture to neighboring arcologies.<</if>> __Assign a different focus:__ <br> [[Desperate whores|Recruiter Select][$recruiterTarget = "desperate whores"]] //Likely to be skilled but unhealthy// <br> [[Young migrants|Recruiter Select][$recruiterTarget = "young migrants"]] //Young and inexperienced but unhealthy// -<br> [[Recent Divorcees|Recruiter Select][$recruiterTarget = "recent divorcees"]] //Will be mature// +<br> [[Recent divorcees|Recruiter Select][$recruiterTarget = "recent divorcees"]] //Will be mature// <<if ($seeDicks != 100) && $seePreg != 0>> <br> [[Expectant mothers|Recruiter Select][$recruiterTarget = "expectant mothers"]] //Will be pregnant, and likely unhealthy// <</if>> diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index f20e47583fd285d0bf1044da9790c08821efaba1..def5f3475ddf6cee0a8578040aab317f31116831 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -28,7 +28,7 @@ Work on her face: <br> -$possessiveCap $activeSlave.faceShape face is +$His $activeSlave.faceShape face is <<if $activeSlave.face < -95>> very ugly. <<elseif $activeSlave.face < -40>> @@ -54,9 +54,9 @@ $possessiveCap $activeSlave.faceShape face is <</if>> <<if $activeSlave.indentureRestrictions >= 2>> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <<elseif $activeSlave.faceImplant > 95>> - //$possessiveCap's face cannot sustain further cosmetic surgery// + //$His's face cannot sustain further cosmetic surgery// <<else>> <<set _artificiality = 25-5*Math.trunc($PC.medicine/50)-5*$surgeryUpgrade>> //Facial surgery can either rework it and improve its attractiveness, or simply make it more attractive. No facial surgery is perfect and each surgery will make it look less natural. @@ -103,26 +103,26 @@ $possessiveCap $activeSlave.faceShape face is [[Just improve attractiveness|Surgery Degradation][$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),$cash -= $surgeryCost,$activeSlave.health -= 10,$surgeryType = "face"]] <<if ($activeSlave.ageImplant > 1)>> <br> - //$pronounCap's had a multiple facelifts and other cosmetic procedures in an effort to preserve $possessive youth.// + //$He's had a multiple facelifts and other cosmetic procedures in an effort to preserve $his youth.// <<elseif ($activeSlave.ageImplant > 0)>> <br> - //$pronounCap's had a face lift and other minor cosmetic procedures to make $possessive look younger.// + //$He's had a face lift and other minor cosmetic procedures to make $his look younger.// <<elseif ($activeSlave.physicalAge >= 25) && ($activeSlave.visualAge >= 25)>> <br> - //$pronounCap's old enough that a face lift and other minor cosmetic procedures could make $possessive look younger.// + //$He's old enough that a face lift and other minor cosmetic procedures could make $his look younger.// [[Age lift|Surgery Degradation][$activeSlave.ageImplant = 1,$activeSlave.faceImplant = Math.clamp($activeSlave.faceImplant+_artificiality,0,100),$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "age"]] <</if>> <</if>> <<if $activeSlave.origEye == "implant">> <br> - $pronounCap has artificial eyes. + $He has artificial eyes. <<elseif ($activeSlave.eyes <= -2)>> <br> - $pronounCap is blind. + $He is blind. <<else>> <br> - $pronounCap has working + $He has working <<if $activeSlave.eyes == -1 && $activeSlave.eyes != -3>> eyes, but is nearsighted. <<if ($activeSlave.origEye != "implant")>> @@ -145,7 +145,7 @@ $possessiveCap $activeSlave.faceShape face is /*<<if ($activeSlave.eyes != -3)>> <<if ($activeSlave.eyes >= -2)>> | <</if>> | [[Remove eyes|Surgery Degradation][$activeSlave.eyeColor = "empty",$activeSlave.origEye = "none",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "remove eyes"]] - <<if ($activeSlave.eyes != -2)>>//This will greatly restrict $possessive//<</if>> + <<if ($activeSlave.eyes != -2)>>//This will greatly restrict $his//<</if>> <</if>>*/ <</if>> <<if ($cyberMod == 1) && ($stockpile.ocularImplant > 0) && ($activeSlave.origEye != "implant")>> @@ -156,7 +156,7 @@ $possessiveCap $activeSlave.faceShape face is <</if>> <br> -$pronounCap has +$He has <<if $activeSlave.lips <= 10>> thin, unattractive lips. <<elseif $activeSlave.lips <= 20>> @@ -168,23 +168,23 @@ $pronounCap has <<elseif $activeSlave.lips <= 95>> huge, obviously augmented lips. <<else>> - a facepussy: $possessive lips are so huge that they're always a bit parted in the middle, forming a moist, inviting hole for cock. + a facepussy: $his lips are so huge that they're always a bit parted in the middle, forming a moist, inviting hole for cock. <</if>> <<if $activeSlave.lipsImplant == 0>> <<elseif $activeSlave.lipsImplant <= 10>> - $pronounCap has moderate lip implants. + $He has moderate lip implants. <<elseif $activeSlave.lipsImplant <= 20>> - $pronounCap has large lip implants. + $He has large lip implants. <<else>> - $pronounCap has enormous lip implants. + $He has enormous lip implants. <</if>> <<if $activeSlave.indentureRestrictions >= 2>> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <<elseif ($activeSlave.lips <= 75) || (($activeSlave.lips <= 95) && ($seeExtreme == 1))>> <<if $activeSlave.lipsImplant > 0>> - [[Replace with the next size up|Surgery Degradation][$activeSlave.lipsImplant += 20,$activeSlave.lips += 20,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "lips"]] //This will reduce $possessive oral skills// + [[Replace with the next size up|Surgery Degradation][$activeSlave.lipsImplant += 20,$activeSlave.lips += 20,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "lips"]] //This will reduce $his oral skills// <<else>> - [[Lip implants|Surgery Degradation][$activeSlave.lipsImplant = 20,$activeSlave.lips += 20,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "lips"]] //This will reduce $possessive oral skills// + [[Lip implants|Surgery Degradation][$activeSlave.lipsImplant = 20,$activeSlave.lips += 20,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "lips"]] //This will reduce $his oral skills// <</if>> <</if>> <<if $activeSlave.lipsImplant != 0>> @@ -201,35 +201,35 @@ $pronounCap has <br> <<switch $activeSlave.teeth>> <<case "crooked">> - $pronounCap has crooked teeth. + $He has crooked teeth. [[Apply braces|Surgery Degradation][$activeSlave.teeth = "straightening braces",$cash -= $surgeryCost,$surgeryType = "braces"]] <<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>> | [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "sharp"]] <</if>> <<case "straightening braces">> - $possessiveCap crooked teeth are in braces. + $His crooked teeth are in braces. [[Remove braces|Remote Surgery][$activeSlave.teeth = "crooked",$surgeryType = "removeBraces"]] <<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>> | [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "sharp"]] <</if>> <<case "cosmetic braces">> - $pronounCap has braces on $possessive straight teeth. + $He has braces on $his straight teeth. [[Remove braces|Remote Surgery][$activeSlave.teeth = "normal"]] <<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>> | [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "sharp"]] <</if>> <<case "removable">> - $pronounCap has prosthetic teeth that can be removed for extreme oral sex. + $He has prosthetic teeth that can be removed for extreme oral sex. <<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>> [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "sharp"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "oral"]] <</if>> <<case "pointy">> - $possessiveCap teeth have been replaced with sturdy, realistic implants that mimic the dentition of a predator. + $His teeth have been replaced with sturdy, realistic implants that mimic the dentition of a predator. <<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>> [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Normal dental implants|Surgery Degradation][$activeSlave.teeth = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "oral"]] <</if>> <<default>> - $pronounCap has normal, healthy teeth. + $He has normal, healthy teeth. [[Unnecessary braces|Surgery Degradation][$activeSlave.teeth = "cosmetic braces",$cash -= $surgeryCost,$surgeryType = "braces"]] <<if ($seeExtreme == 1) && ($activeSlave.indentureRestrictions < 1)>> | [[Replace them with removable prosthetics|Surgery Degradation][$activeSlave.teeth = "removable",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "teeth"]] | [[Replace them with sharp teeth|Surgery Degradation][$activeSlave.teeth = "pointy",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "sharp"]] @@ -238,16 +238,16 @@ $pronounCap has <br> <<if $activeSlave.voice == 0>> - $pronounCap has been made a surgical mute. + $He has been made a surgical mute. <<elseif $activeSlave.voice == 1>> - $pronounCap has a deep voice. + $He has a deep voice. <<elseif $activeSlave.voice == 2>> - $pronounCap has a feminine voice. + $He has a feminine voice. <<elseif $activeSlave.voice == 3>> - $pronounCap has a high, girly voice. + $He has a high, girly voice. <</if>> <<if $activeSlave.voiceImplant != 0>> - $pronounCap has had surgery on $possessive voice box to raise $possessive voice. + $He has had surgery on $his voice box to raise $his voice. <</if>> <<if ($activeSlave.voice != 0) && ($activeSlave.voiceImplant == 0) && ($activeSlave.voice < 3)>> <<if $activeSlave.indentureRestrictions < 1>> @@ -265,11 +265,11 @@ $pronounCap has <<if $activeSlave.scars > 0>> <br> - $pronounCap has notable facial scarring. + $He has notable facial scarring. [[Remove scars|Surgery Degradation][$activeSlave.scars = 0, $cash -= $surgeryCost, $activeSlave.health -= 5, $surgeryType = "scarRemov"]] <<elseif $activeSlave.scars == 0>> <br> - $possessiveCap face is unscarred. [[Give a menacing scar|Surgery Degradation][$activeSlave.scars = 5, $cash -= $surgeryCost, $activeSlave.health -= 5, $surgeryType = "scarFear"]] | + $His face is unscarred. [[Give a menacing scar|Surgery Degradation][$activeSlave.scars = 5, $cash -= $surgeryCost, $activeSlave.health -= 5, $surgeryType = "scarFear"]] | [[Give an exotic scar|Surgery Degradation][$activeSlave.scars = 6, $cash -= $surgeryCost, $activeSlave.health -= 5, $surgeryType = "scarExo"]] <</if>> @@ -278,7 +278,7 @@ $pronounCap has Work on her chest: <br> - $possessiveCap + $His <<if $activeSlave.boobs < 300>><<print either("androgynous", "flat")>> chest is barely there. <<elseif $activeSlave.boobs < 400>><<print either("pointy", "tiny")>>, <<print $activeSlave.boobs>>cc chest only fills an A-cup. <<elseif $activeSlave.boobs < 500>><<print either("perky", "small")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "boobs", "bosom")>> would fill a B-cup. @@ -299,28 +299,28 @@ Work on her chest: <<elseif $activeSlave.boobs < 4300>><<print either("shocking", "massive")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> would fill a Q-cup. <<elseif $activeSlave.boobs < 4700>><<print either("unreal", "jaw-dropping")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> would fill an R-cup. <<elseif $activeSlave.boobs < 5100>><<print either("tremendous", "astounding")>>, <<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> would fill an S-cup. - <<elseif ($activeSlave.amp == 1)>><<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> fill out an enormous custom bra; $possessive tits dominate $possessive entire frame. - <<else>><<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> fill out an enormous custom bra; $possessive tits dominate $possessive entire frame. + <<elseif ($activeSlave.amp == 1)>><<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> fill out an enormous custom bra; $his tits dominate $his entire frame. + <<else>><<print $activeSlave.boobs>>cc <<print either("tits", "breasts", "mammaries", "udders")>> fill out an enormous custom bra; $his tits dominate $his entire frame. <</if>> <<if $activeSlave.boobsImplant > 600>> - $pronounCap has <<print $activeSlave.boobsImplant>>cc fillable breast implants. + $He has <<print $activeSlave.boobsImplant>>cc fillable breast implants. <<elseif $activeSlave.boobsImplant > 400>> - $pronounCap has large, <<print $activeSlave.boobsImplant>>cc breast implants. + $He has large, <<print $activeSlave.boobsImplant>>cc breast implants. <<elseif $activeSlave.boobsImplant > 200>> - $pronounCap has moderate, <<print $activeSlave.boobsImplant>>cc breast implants. + $He has moderate, <<print $activeSlave.boobsImplant>>cc breast implants. <<elseif $activeSlave.boobsImplant > 0>> - $pronounCap has small, <<print $activeSlave.boobsImplant>>cc breast implants. + $He has small, <<print $activeSlave.boobsImplant>>cc breast implants. <</if>> <br> <<if $activeSlave.boobs > 25000>> - //$possessiveCap breasts are as large as $pronoun can physically support// + //$His breasts are as large as $he can physically support// <<elseif $activeSlave.boobs > 10000 && $arcologies[0].FSTransformationFetishistResearch != 1>> - //$possessiveCap breasts are as large as $pronoun can physically support// + //$His breasts are as large as $he can physically support// <<elseif $activeSlave.indentureRestrictions >= 2>> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <<elseif $activeSlave.breastMesh == 1>> - //$possessiveCap supportive mesh implant blocks implantation// + //$His supportive mesh implant blocks implantation// <<elseif $activeSlave.boobsImplant == 0>> [[String implants|Surgery Degradation][$activeSlave.boobsImplant = 400, $activeSlave.boobsImplantType = 1,$activeSlave.boobs += 400,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]] | [[Standard implants|Surgery Degradation][$activeSlave.boobsImplant = 400,$activeSlave.boobs += 400,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "boobs"]] | @@ -374,32 +374,32 @@ Work on her chest: <br> <<if $activeSlave.boobsImplant != 0>> - The shape of $possessive breasts is determined by $possessive implants. + The shape of $his breasts is determined by $his implants. <<else>> <<if $activeSlave.boobs <= 250>> - $pronounCap's so flat-chested that $possessive breasts don't have much shape. + $He's so flat-chested that $his breasts don't have much shape. <<else>> <<switch $activeSlave.boobShape>> <<case "perky">> They're perky, with nipples that point slightly upwards. <<case "downward-facing">> - They're not attractively shaped; $possessive nipples pointing downward. + They're not attractively shaped; $his nipples pointing downward. <<case "torpedo-shaped">> - They're torpedo-shaped, projecting some way from $possessive chest. + They're torpedo-shaped, projecting some way from $his chest. <<case "wide-set">> - They're wide-set, with nipples pointing away from $possessive sternum. + They're wide-set, with nipples pointing away from $his sternum. <<case "saggy">> - They're not attractively shaped, with $possessive nipples pointing down. + They're not attractively shaped, with $his nipples pointing down. <<default>> They're nicely rounded and rest naturally. <</switch>> <<if $activeSlave.indentureRestrictions >= 2>> - //$possessiveCap indenture does not allow breast restructuring// + //$His indenture does not allow breast restructuring// <<elseif $activeSlave.breastMesh == 1>> - //$possessiveCap supportive mesh implant prevents reconstruction// + //$His supportive mesh implant prevents reconstruction// <<else>> <<if ($activeSlave.boobShape == "saggy") || ($activeSlave.boobShape == "downward-facing")>> - [[Breast lift|Surgery Degradation][$activeSlave.boobShape = "normal", $activeSlave.health -= 20,$cash -= $surgeryCost, $surgeryType = "breastLift"]]<<if $activeSlave.preg > 20 || ($activeSlave.boobs >= 5000 && $activeSlave.boobs < 8000)>>//$possessiveCap current state may result in $possessive breasts becoming saggy again//<</if>> + [[Breast lift|Surgery Degradation][$activeSlave.boobShape = "normal", $activeSlave.health -= 20,$cash -= $surgeryCost, $surgeryType = "breastLift"]]<<if $activeSlave.preg > 20 || ($activeSlave.boobs >= 5000 && $activeSlave.boobs < 8000)>>//$His current state may result in $his breasts becoming saggy again//<</if>> <<else>> <<if ($activeSlave.boobShape == "normal")>> [[Reshape them to be perkier|Surgery Degradation][$activeSlave.boobShape = "perky",$cash -= $surgeryCost,$activeSlave.health -= 10,$surgeryType = "breastReconstruction"]] @@ -417,21 +417,21 @@ Work on her chest: <<if $surgeryUpgrade == 1>> <br> - $pronounCap has $activeSlave.nipples nipples. + $He has $activeSlave.nipples nipples. <<if $activeSlave.indentureRestrictions >= 2>> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <<elseif $activeSlave.indentureRestrictions == 1>> - //$possessiveCap indenture forbids extreme body modification// + //$His indenture forbids extreme body modification// <<else>> /* split for possible dicknips later on, should lcd wish to attempt it again. */ <<if $activeSlave.nipples == "fuckable">> [[Restore their shape and function|Surgery Degradation][$activeSlave.nipples = "huge",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "areolae"]] <<else>> <<if $activeSlave.boobs < 500>> - //$possessiveCap breasts are too small to support reshaping $possessive nipples to be penetratable// + //$His breasts are too small to support reshaping $his nipples to be penetratable// <<elseif $activeSlave.boobs-$activeSlave.boobsImplant < 500>> - //$possessiveCap implants are too large to support reshaping $possessive nipples to be penetratable// + //$His implants are too large to support reshaping $his nipples to be penetratable// <<elseif $activeSlave.nipples != "huge">> - //$possessiveCap nipples are too small to be made fuckable// + //$His nipples are too small to be made fuckable// <<else>> [[Reshape them to support being penetrated|Surgery Degradation][$activeSlave.nipples = "fuckable",$activeSlave.nipplesPiercing = 0,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "nippleCunts"]]<<if $activeSlave.nipplesPiercing > 0>> //Will remove piercings.//<</if>> <</if>> @@ -441,19 +441,19 @@ Work on her chest: <br> <<if $activeSlave.areolae == 0>> - $possessiveCap areolae are fairly normal. + $His areolae are fairly normal. <<elseif $activeSlave.areolae == 1>> - $possessiveCap areolae are large but still fairly normal. + $His areolae are large but still fairly normal. <<elseif ($activeSlave.areolae > 1) && ($activeSlave.areolae < 4)>> <<if $activeSlave.indentureRestrictions < 2>> - $pronounCap has big areolae that could be reshaped into a pattern. Graft skin to make $possessive areolae: + $He has big areolae that could be reshaped into a pattern. Graft skin to make $his areolae: [[Heart-shaped|Surgery Degradation][$activeSlave.areolae = 4,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "areolae"]] | [[Star-shaped|Surgery Degradation][$activeSlave.areolae = 5,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "areolae"]] | <</if>> <<elseif $activeSlave.areolae == 4>> - $possessiveCap huge areolae have been surgically altered to be heart-shaped. + $His huge areolae have been surgically altered to be heart-shaped. <<else>> - $possessiveCap huge areolae have been surgically altered to be star-shaped. + $His huge areolae have been surgically altered to be star-shaped. <</if>> <<if $activeSlave.areolae > 1>> <<if $activeSlave.indentureRestrictions < 2>> @@ -467,15 +467,15 @@ Work on her chest: <br> <<if $activeSlave.lactation == 0>> - $pronounCap is not lactating. + $He is not lactating. <<elseif $activeSlave.lactation == 2>> - $pronounCap is implanted with slow-release pro-lactation drugs. + $He is implanted with slow-release pro-lactation drugs. <<else>> - $pronounCap is lactating naturally. + $He is lactating naturally. <</if>> <<if $activeSlave.lactation < 2>> <<if $activeSlave.indentureRestrictions < 2>> - [[Implant slow-release pro-lactation drugs|Surgery Degradation][$activeSlave.lactation = 2,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "lactation"]] //This may increase $possessive natural breast size// + [[Implant slow-release pro-lactation drugs|Surgery Degradation][$activeSlave.lactation = 2,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "lactation"]] //This may increase $his natural breast size// <</if>> <</if>> <<if $activeSlave.lactation > 1>> @@ -488,15 +488,15 @@ Work on her midriff: <<if $activeSlave.indentureRestrictions >= 2 && $activeSlave.weight > 30>> <br> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <<elseif $activeSlave.weight > 30>> <br> <<if $activeSlave.weight > 190>> - $pronounCap is extremely fat. [[Major liposuction|Surgery Degradation][$activeSlave.health -= 40, $cash -= $surgeryCost, $surgeryType = "liposuction"]] + $He is extremely fat. [[Major liposuction|Surgery Degradation][$activeSlave.health -= 40, $cash -= $surgeryCost, $surgeryType = "liposuction"]] <<elseif $activeSlave.weight > 130>> - $pronounCap is fat. [[Heavy liposuction|Surgery Degradation][$activeSlave.health -= 20, $cash -= $surgeryCost, $surgeryType = "liposuction"]] + $He is fat. [[Heavy liposuction|Surgery Degradation][$activeSlave.health -= 20, $cash -= $surgeryCost, $surgeryType = "liposuction"]] <<elseif $activeSlave.weight > 30>> - $pronounCap is overweight. [[Liposuction|Surgery Degradation][$activeSlave.health -= 10, $cash -= $surgeryCost, $surgeryType = "liposuction"]] + $He is overweight. [[Liposuction|Surgery Degradation][$activeSlave.health -= 10, $cash -= $surgeryCost, $surgeryType = "liposuction"]] <</if>> <<if $surgeryUpgrade == 1>> | [[Fat grafting|fat grafting workaround][$activeSlave.health -= 40, $cash -= $surgeryCost*2, $availabeFat = Math.round($activeSlave.weight/10), $boobFat = 0, $buttFat = 0, $surgeryType = "fat graft"]] @@ -504,7 +504,7 @@ Work on her midriff: <</if>> <br> -$pronounCap has +$He has <<if $activeSlave.waist > 95>>a masculine <<elseif $activeSlave.waist > 40>>an ugly <<elseif $activeSlave.waist > 10>>an unattractive @@ -527,55 +527,55 @@ waist. <br> -$pronounCap's +$He's <<if $activeSlave.pregKnown > 0>> pregnant. <<elseif $activeSlave.womb.length == 0 && $activeSlave.broodmother > 0>> - got a dormant broodmother implant in $possessive womb. + got a dormant broodmother implant in $his womb. <<elseif $activeSlave.preg > 0>> - showing unusual discomfort as $possessive stomach is inspected. A quick test reveals that @@.lime;$pronoun is pregnant.@@ + showing unusual discomfort as $his stomach is inspected. A quick test reveals that @@.lime;$he is pregnant.@@ <<set $activeSlave.pregKnown = 1>> <<elseif $activeSlave.bellyImplant > 0>> - got a <<print $activeSlave.bellyImplant>>cc implant filled implant located in $possessive abdomen. + got a <<print $activeSlave.bellyImplant>>cc implant filled implant located in $his abdomen. <<if $activeSlave.cervixImplant == 1 >> - $pronounCap also has micropump filter installed in $possessive cervix feeding into the implant. + $He also has micropump filter installed in $his cervix feeding into the implant. <</if>> <<elseif $activeSlave.bellyFluid >= 1500>> - got a <<print $activeSlave.inflationType>>-filled implant located in $possessive abdomen. + got a <<print $activeSlave.inflationType>>-filled implant located in $his abdomen. <<if $activeSlave.cervixImplant == 1 >> - $pronounCap also has micropump filter installed in $possessive cervix feeding into the implant. + $He also has micropump filter installed in $his cervix feeding into the implant. <</if>> <<elseif $activeSlave.bellyImplant == 0>> - got an empty fillable implant located in $possessive abdomen. + got an empty fillable implant located in $his abdomen. <<if $activeSlave.cervixImplant == 1 >> - $pronounCap also has micropump filter installed in $possessive cervix feeding into the implant. + $He also has micropump filter installed in $his cervix feeding into the implant. <</if>> <<else>> got a normal stomach. <</if>> <<if $activeSlave.indentureRestrictions >= 2>> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <<elseif $activeSlave.breedingMark == 1 && $propOutcome == 1>> - //You are forbidden from affecting $possessive fertility// + //You are forbidden from affecting $his fertility// <<elseif $activeSlave.preg > 0 || $activeSlave.inflation > 0 || $activeSlave.broodmother > 0>> - //$pronounCap is unable to support an abdominal implant at this time// + //$He is unable to support an abdominal implant at this time// <<elseif $activeSlave.bellyImplant >= 750000>> - //$possessiveCap abdominal implant is so far beyond its maximum limit it is at risk of rupturing// + //$His abdominal implant is so far beyond its maximum limit it is at risk of rupturing// <<elseif $activeSlave.bellyImplant >= 600000>> - //$possessiveCap abdominal implant is greatly beyond its maximum limit// + //$His abdominal implant is greatly beyond its maximum limit// <<elseif $activeSlave.bellyImplant >= 450000>> - //$possessiveCap abdominal implant is over-filled// + //$His abdominal implant is over-filled// <<elseif $activeSlave.bellyImplant >= 400000>> - //$possessiveCap abdominal implant is at its capacity// + //$His abdominal implant is at its capacity// <<elseif $activeSlave.bellyImplant > 130000 && $arcologies[0].FSTransformationFetishistResearch != 1>> - //$possessiveCap abdominal implant is at its capacity// + //$His abdominal implant is at its capacity// <<elseif $activeSlave.bellyImplant == -1 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && $bellyImplants == 1>> [[Implant fillable abdominal implant|Surgery Degradation][$activeSlave.bellyImplant = 0,$activeSlave.preg = -2, $activeSlave.bellyPain += 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "bellyIn"]] <<elseif $activeSlave.bellyImplant == -1 && $bellyImplants == 1>> [[Implant a fillable abdominal implant|Surgery Degradation][$activeSlave.bellyImplant = 0, $cash -= $surgeryCost, $activeSlave.bellyPain += 2, $activeSlave.health -= 50, $surgeryType = "bellyInMale"]] <<elseif $activeSlave.bellyPain == 2>> - //$possessiveCap body cannot handle more filler this week// + //$His body cannot handle more filler this week// <<elseif $activeSlave.bellyImplant > -1 && $activeSlave.bellyPain == 0>> [[Add inert filler|Surgery Degradation][$activeSlave.bellyImplant += 200, $activeSlave.bellyPain += 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "bellyUp"]] | [[Add a considerable amount of inert filler|Surgery Degradation][$activeSlave.bellyImplant += 500, $activeSlave.bellyPain += 1,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "bellyUp"]] @@ -594,31 +594,31 @@ $pronounCap's <<if $activeSlave.cervixImplant != 1 && $cervixImplants == 1 && $activeSlave.vagina > -1>> /* slave should have vagina */ <br> [[Install cervix micropump filter|Surgery Degradation][$activeSlave.cervixImplant = 1, $cash -= $surgeryCost, $surgeryType = "cervixPump"]]<br> - //Will allow $possessive belly implant to slowly swell as people cum in $possessive vagina// + //Will allow $his belly implant to slowly swell as people cum in $his vagina// <</if>> <</if>> <<if $activeSlave.bellySagPreg > 0>> <br> <<if $activeSlave.belly >= 1500>> - $pronounCap has a sagging midriff, ruined from excessive pregnancy. It is currently filled out by $possessive swollen belly and cannot safely be worked on. + $He has a sagging midriff, ruined from excessive pregnancy. It is currently filled out by $his swollen belly and cannot safely be worked on. <<else>> - $pronounCap has a sagging midriff, ruined from excessive pregnancy. + $He has a sagging midriff, ruined from excessive pregnancy. [[Tummy tuck|Surgery Degradation][$activeSlave.bellySag = 0,$activeSlave.bellySagPreg = 0,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "tummyTuck"]] <</if>> <<elseif $activeSlave.bellySag > 0>> <br> <<if $activeSlave.belly >= 1500>> - $pronounCap has a sagging midriff, ruined from excessive distention. It is currently filled out by $possessive swollen belly and cannot safely be worked on. + $He has a sagging midriff, ruined from excessive distention. It is currently filled out by $his swollen belly and cannot safely be worked on. <<else>> - $pronounCap has a sagging midriff, ruined from excessive distention. + $He has a sagging midriff, ruined from excessive distention. [[Tummy tuck|Surgery Degradation][$activeSlave.bellySag = 0,$activeSlave.bellySagPreg = 0,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "tummyTuck"]] <</if>> <</if>> <<if ($activeSlave.cSec == 1)>> <br> - $pronounCap has an unsightly c-section scar. + $He has an unsightly c-section scar. [[Remove Caesarean scar|Surgery Degradation][$activeSlave.cSec = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "bellyscar"]] <</if>> @@ -626,29 +626,29 @@ $pronounCap's Work on her butt: <br> -$pronounCap's got a +$He's got a <<if $activeSlave.butt <= 1>>flat and <<print either("skinny", "slim", "taut")>> ass. <<elseif $activeSlave.butt <= 2>><<print either("small, sleek", "small but rounded", "rounded, small")>> rear end. <<elseif $activeSlave.butt <= 3>><<print either("big and healthy", "curved and plump", "healthy and plump")>> derriere. <<elseif $activeSlave.butt <= 4>><<print either("juicy and large butt", "big bubble butt", "curvy and enticing butt")>>. <<elseif $activeSlave.butt <= 5>><<print either("juicy and huge", "a huge", "massive and undeniable")>> rear end. -<<elseif ($activeSlave.amp == 1)>>ridiculous ass. It's so big it would jiggle as $pronoun walked - if $pronoun could walk. -<<else>>ridiculous ass. It's so big it jiggles as $pronoun walks. +<<elseif ($activeSlave.amp == 1)>>ridiculous ass. It's so big it would jiggle as $he walked - if $he could walk. +<<else>>ridiculous ass. It's so big it jiggles as $he walks. <</if>> <<if $activeSlave.buttImplant == 0>> <<elseif $activeSlave.buttImplant == 1>> - $pronounCap has moderate butt implants. + $He has moderate butt implants. <<elseif $activeSlave.buttImplant > 1>> - $pronounCap has enormous butt implants. + $He has enormous butt implants. <</if>> <<if $activeSlave.indentureRestrictions >= 2>> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <<elseif $activeSlave.butt > 19>> - //$possessiveCap butt is as large as $pronoun can physically support// + //$His butt is as large as $he can physically support// <<elseif $activeSlave.butt > 7 && $arcologies[0].FSTransformationFetishistResearch != 1>> - //$possessiveCap butt is as large as $pronoun can physically support// + //$His butt is as large as $he can physically support// <<elseif $activeSlave.buttImplant == 0>> [[Implants|Surgery Degradation][$activeSlave.buttImplant = 1,$activeSlave.butt += 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "butt"]] | [[String implants|Surgery Degradation][$activeSlave.buttImplant = 1,$activeSlave.butt += 1,$activeSlave.buttImplantType = 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "butt"]] @@ -680,13 +680,13 @@ Work on her sex: <<if $activeSlave.vagina > -1>> <br> <<if $activeSlave.labia == 0>> - $pronounCap has minimal pussylips. + $He has minimal pussylips. <<elseif $activeSlave.labia == 1>> - $pronounCap has pretty, noticeable pussylips. + $He has pretty, noticeable pussylips. <<elseif $activeSlave.labia == 2>> - $pronounCap has large pussylips. + $He has large pussylips. <<elseif $activeSlave.labia > 2>> - $pronounCap has extremely large pussylips. + $He has extremely large pussylips. <</if>> <<if $activeSlave.labia > 0>> <<if $activeSlave.indentureRestrictions < 2>> @@ -701,7 +701,7 @@ Work on her sex: <</if>> <<if $activeSlave.dick == 0>> <br> - $pronounCap has + $He has <<if $activeSlave.clit == 0>> a small clit<<if ($seeCircumcision == 1) && $activeSlave.foreskin > 0>> with a hood<</if>>. <<elseif $activeSlave.clit == 1>> @@ -734,13 +734,13 @@ Work on her sex: <<if ($activeSlave.preg > -2) && ($activeSlave.preg < 1) && ($activeSlave.vagina > -1) && ($activeSlave.ovaries != 0) && ($activeSlave.pubertyXX == 0)>> <br> - $pronounCap has not had $possessive first period. + $He has not had $his first period. <<elseif ($activeSlave.preg > -2) && ($activeSlave.preg < 1) && ($activeSlave.vagina > -1) && ($activeSlave.ovaries != 0)>> <br> - $pronounCap has a working womb. + $He has a working womb. <<elseif ($activeSlave.preg <= -2) && ($activeSlave.vagina > -1) && ($activeSlave.ovaries != 0)>> <br> - $pronounCap has a sterile womb. + $He has a sterile womb. <</if>> <<if isFertile($activeSlave) && $activeSlave.preg == 0>> @@ -759,10 +759,10 @@ Work on her sex: <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> <<if ($activeSlave.pubertyXX == 0)>> <br> - $pronounCap has ovaries but has not had $possessive first period. + $He has ovaries but has not had $his first period. <<else>> <br> - $pronounCap has working ovaries. + $He has working ovaries. <</if>> [[Oophorectomy|Surgery Degradation][$activeSlave.ovaries = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "ster"]] <</if>> @@ -771,23 +771,23 @@ Work on her sex: <<if $seeExtreme == 1 && $seeHyperPreg == 1 && $seePreg != 0 && $permaPregImplant == 1>> <br> <<if $activeSlave.assignment == "work in the dairy" && $dairyPregSetting > 0>> - $possessiveCap womb is already rented out for the production of calves. + $His womb is already rented out for the production of calves. <<else>> <<if isFertile($activeSlave) && $activeSlave.ovaryAge <= 46>> - $pronounCap could be made into a broodmother. + $He could be made into a broodmother. <<elseif $activeSlave.broodmother > 0>> - $pronounCap has been made into a <<if $activeSlave.broodmother > 1>>hyper-<</if>>broodmother. + $He has been made into a <<if $activeSlave.broodmother > 1>>hyper-<</if>>broodmother. <<if $activeSlave.womb.length == 0 >> [[Remove a pregnancy generator|Surgery Degradation][$activeSlave.preg = 0,$activeSlave.pregWeek = -2,$activeSlave.pregSource = 0,$activeSlave.pregWeek = 0,$activeSlave.pregKnown = 0,$activeSlave.pregType = 0,$activeSlave.broodmother = 0,$activeSlave.broodmotherFetuses = 0,$activeSlave.broodmotherOnHold = 0,$cash -= $surgeryCost,$activeSlave.pregControl = "none",$activeSlave.health -= 10,$surgeryType = "pregRemove"]] <<else>> - $pronounCap is pregnant right now, so $possessive broodmother implant can't be safely extracted. + $He is pregnant right now, so $his broodmother implant can't be safely extracted. <</if>> <<else>> - $possessiveCap body cannot support being a broodmother. + $His body cannot support being a broodmother. <</if>> <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> <<if isFertile($activeSlave)>> - [[Implant a pregnancy generator|Surgery Degradation][$activeSlave.preg = 1,$activeSlave.pregWeek = 1,$activeSlave.pregKnown = 1,$activeSlave.pregType = 1,$activeSlave.broodmother = 1,$activeSlave.broodmotherFetuses = 1,$cash -= $surgeryCost,$activeSlave.pregControl = "none",$activeSlave.health -= 10,$surgeryType = "preg"]] //This will have severe effects on $possessive health and mind// + [[Implant a pregnancy generator|Surgery Degradation][$activeSlave.preg = 1,$activeSlave.pregWeek = 1,$activeSlave.pregKnown = 1,$activeSlave.pregType = 1,$activeSlave.broodmother = 1,$activeSlave.broodmotherFetuses = 1,$cash -= $surgeryCost,$activeSlave.pregControl = "none",$activeSlave.health -= 10,$surgeryType = "preg"]] //This will have severe effects on $his health and mind// <</if>> <</if>> <</if>> @@ -796,7 +796,7 @@ Work on her sex: <<if $activeSlave.mpreg == 1>> <<if $activeSlave.preg > 0>> <br> - $possessiveCap anal womb cannot be removed while $pronoun is pregnant. + $His anal womb cannot be removed while $he is pregnant. <<else>> <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> <br> @@ -807,7 +807,7 @@ Work on her sex: <<if $activeSlave.vagina > -1>> <br> - $pronounCap has a + $He has a <<if $activeSlave.vagina == 0>> virgin pussy. <<elseif $activeSlave.vagina == 1>> @@ -824,67 +824,67 @@ Work on her sex: <</if>> <<if ($activeSlave.vagina > 3)>> <br> - $possessiveCap vagina could benefit from surgical repair. - [[Repair pussy|Surgery Degradation][$activeSlave.vagina = 3,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $possessive vaginal skills// + $His vagina could benefit from surgical repair. + [[Repair pussy|Surgery Degradation][$activeSlave.vagina = 3,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $his vaginal skills// <<elseif ($surgeryUpgrade == 1) && ($activeSlave.indentureRestrictions < 2)>> <<if ($activeSlave.vagina > 1)>> <br> - $possessiveCap vaginal muscles could benefit from microsurgical rejuvenation. - [[Tighten pussy|Surgery Degradation][$activeSlave.vagina = 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $possessive vaginal skills// + $His vaginal muscles could benefit from microsurgical rejuvenation. + [[Tighten pussy|Surgery Degradation][$activeSlave.vagina = 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $his vaginal skills// <<elseif ($activeSlave.vagina > 0)>> <br> - $possessiveCap pussy is as tight as a virgin's, and $possessive hymen could be restored. - [[Restore virginity|Surgery Degradation][$activeSlave.vagina = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $possessive vaginal skills// + $His pussy is as tight as a virgin's, and $his hymen could be restored. + [[Restore virginity|Surgery Degradation][$activeSlave.vagina = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "vagina"]] //This will reduce $his vaginal skills// <</if>> <</if>> <<if ($activeSlave.vagina > -1) && ($activeSlave.dick > 0)>> <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> <br> - Since $pronoun has both a penis and a vagina, it's possible to remove $possessive pussy and leave $possessive sexually functional. - [[Remove pussy|Surgery Degradation][$activeSlave.vagina = -1,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregSource = 0,$activeSlave.vaginalSkill = 0,$activeSlave.vaginalAccessory = "none",$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "vaginaRemoval"]] <<if $activeSlave.ovaries == 1>>//This will remove $possessive ovaries as well//<</if>> + Since $he has both a penis and a vagina, it's possible to remove $his pussy and leave $his sexually functional. + [[Remove pussy|Surgery Degradation][$activeSlave.vagina = -1,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregSource = 0,$activeSlave.vaginalSkill = 0,$activeSlave.vaginalAccessory = "none",$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "vaginaRemoval"]] <<if $activeSlave.ovaries == 1>>//This will remove $his ovaries as well//<</if>> <</if>> <<elseif $activeSlave.vagina > -1>> <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> <br> - $possessiveCap pussy can be removed at the cost of $possessive sexual functionality, leaving $object a null. - [[Remove pussy|Surgery Degradation][$activeSlave.vagina = -1,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregSource = 0,$activeSlave.vaginalSkill = 0,$activeSlave.vaginalAccessory = "none",$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "vaginaRemoval"]] <<if $activeSlave.ovaries == 1>>//This will remove $possessive ovaries as well//<</if>> + $His pussy can be removed at the cost of $his sexual functionality, leaving $him a null. + [[Remove pussy|Surgery Degradation][$activeSlave.vagina = -1,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregSource = 0,$activeSlave.vaginalSkill = 0,$activeSlave.vaginalAccessory = "none",$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "vaginaRemoval"]] <<if $activeSlave.ovaries == 1>>//This will remove $his ovaries as well//<</if>> <</if>> <</if>> <<if ($activeSlave.dick == 0) && ($activeSlave.vagina == -1)>> <br> - $pronounCap is a null, possessing neither penis nor vagina. + $He is a null, possessing neither penis nor vagina. <<elseif ($seeCircumcision == 1) && ($activeSlave.indentureRestrictions < 2)>> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina == -1) && ($activeSlave.foreskin == 0)>> <br> - $pronounCap has a circumcised penis. + $He has a circumcised penis. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina == -1) && ($activeSlave.foreskin >= 1)>> <br> - $pronounCap has an uncircumcised penis. + $He has an uncircumcised penis. <<elseif ($activeSlave.dick != 0) && ($activeSlave.ovaries != 0) && ($activeSlave.foreskin == 0)>> <br> - $pronounCap has a circumcised penis and a vagina. + $He has a circumcised penis and a vagina. <<elseif ($activeSlave.dick != 0) && ($activeSlave.ovaries != 0) && ($activeSlave.foreskin >= 1)>> <br> - $pronounCap has an uncircumcised penis and a vagina. + $He has an uncircumcised penis and a vagina. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1) && ($activeSlave.foreskin == 0)>> <br> - $pronounCap has a circumcised penis and a<<if $activeSlave.genes == "XY">>n artificial<</if>> vagina. + $He has a circumcised penis and a<<if $activeSlave.genes == "XY">>n artificial<</if>> vagina. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1) && ($activeSlave.foreskin >= 1)>> <br> - $pronounCap has an uncircumcised penis and a<<if $activeSlave.genes == "XY">>n artificial<</if>> vagina. + $He has an uncircumcised penis and a<<if $activeSlave.genes == "XY">>n artificial<</if>> vagina. <</if>> <<else>> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina == -1)>> <br> - $pronounCap has a penis. + $He has a penis. <<elseif ($activeSlave.dick != 0) && ($activeSlave.ovaries != 0)>> <br> - $pronounCap has a penis and a vagina. + $He has a penis and a vagina. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> <br> - $pronounCap has a penis and a<<if $activeSlave.genes == "XY">>n artificial<</if>> vagina. + $He has a penis and a<<if $activeSlave.genes == "XY">>n artificial<</if>> vagina. <</if>> <</if>> @@ -916,13 +916,13 @@ Work on her sex: <<if ($activeSlave.balls > 0)>> <<if ($activeSlave.balls == 1)>> <br> - $possessiveCap testicles are vestigial, but $pronoun has balls. Technically. They are + $His testicles are vestigial, but $he has balls. Technically. They are <<elseif ($activeSlave.balls > 1)>> <br> - $pronounCap has testicles + $He has testicles <</if>> <<if ($activeSlave.scrotum > 0)>> - located in $possessive scrotum. + located in $his scrotum. <br> <<if $activeSlave.indentureRestrictions < 1>> [[Move them inside abdomen and remove scrotum|Surgery Degradation][$activeSlave.scrotum = 0,$cash -= $surgeryCost, $activeSlave.health -= 20, $surgeryType = "relocate"]] @@ -930,9 +930,9 @@ Work on her sex: //This will have a negative impact on cum production// <<else>> <<if ($activeSlave.genes == "XY")>> - relocated inside $possessive abdomen, and $possessive scrotum has been removed. + relocated inside $his abdomen, and $his scrotum has been removed. <<else>> - implanted inside $possessive abdomen. + implanted inside $his abdomen. <</if>> <</if>> <<if ($seeExtreme == 1)>> @@ -943,11 +943,11 @@ Work on her sex: <</if>> <<if ($activeSlave.vasectomy == 1)>> <br> - $pronounCap has had a vasectomy and shoots blanks when $pronoun cums<<if $activeSlave.pubertyXY == 0>>, or would, if $pronoun were potent<</if>>. + $He has had a vasectomy and shoots blanks when $he cums<<if $activeSlave.pubertyXY == 0>>, or would, if $he were potent<</if>>. [[Reverse vasectomy|Surgery Degradation][$activeSlave.vasectomy = 0,$cash -= $surgeryCost, $activeSlave.health -= 10, $surgeryType = "vasectomy undo"]] <<else>> <br> - $pronounCap has working testicles<<if $activeSlave.pubertyXY == 0>>, though $pronoun isn't potent<</if>>. + $He has working testicles<<if $activeSlave.pubertyXY == 0>>, though $he isn't potent<</if>>. <<if $activeSlave.indentureRestrictions < 1>> [[Clamp vas deferens to cull potency|Surgery Degradation][$activeSlave.vasectomy = 1,$cash -= $surgeryCost, $activeSlave.health -= 10, $surgeryType = "vasectomy"]] <</if>> @@ -956,11 +956,11 @@ Work on her sex: <<if $activeSlave.prostate>> <br> - $pronounCap has a <<if $activeSlave.prostate > 2>>hyperactive, ejaculation enhancing<<elseif $activeSlave.prostate > 1>>hyperactive<<else>>normal<</if>> prostate. + $He has a <<if $activeSlave.prostate > 2>>hyperactive, ejaculation enhancing<<elseif $activeSlave.prostate > 1>>hyperactive<<else>>normal<</if>> prostate. <<if $activeSlave.prostate >= 2 && $prostateImplants == 1>> <<if $activeSlave.prostate < 3>> <<if $activeSlave.indentureRestrictions < 2>> - [[Implant prostate with an ejaculation boosting implant|Surgery Degradation][$activeSlave.prostate = 3,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "ejaculation"]] //This will thin $possessive ejaculate but greatly increase its quantity// + [[Implant prostate with an ejaculation boosting implant|Surgery Degradation][$activeSlave.prostate = 3,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "ejaculation"]] //This will thin $his ejaculate but greatly increase its quantity// <</if>> <</if>> <<if $activeSlave.prostate == 3>> @@ -989,7 +989,7 @@ Work on her sex: Work on her asshole: <br> -$pronounCap has +$He has <<if $activeSlave.anus == 0>> a virgin asshole. <<elseif $activeSlave.anus == 1>> @@ -1003,17 +1003,17 @@ $pronounCap has <</if>> <<if ($activeSlave.anus > 3)>> <br> - $possessiveCap anal sphincter could benefit from surgical repair. - [[Repair asshole|Surgery Degradation][$activeSlave.anus = 3,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $possessive anal skills// + $His anal sphincter could benefit from surgical repair. + [[Repair asshole|Surgery Degradation][$activeSlave.anus = 3,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $his anal skills// <<elseif ($surgeryUpgrade == 1) && ($activeSlave.indentureRestrictions < 2)>> <<if ($activeSlave.anus > 1)>> <br> - $possessiveCap anal sphincter could benefit from microsurgical rejuvenation. - [[Tighten asshole|Surgery Degradation][$activeSlave.anus = 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $possessive anal skills// + $His anal sphincter could benefit from microsurgical rejuvenation. + [[Tighten asshole|Surgery Degradation][$activeSlave.anus = 1,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $his anal skills// <<elseif ($activeSlave.anus > 0)>> <br> - $possessiveCap butthole is fairly narrow, but could be tightened to virgin status. - [[Restore anal virginity|Surgery Degradation][$activeSlave.anus = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $possessive anal skills// + $His butthole is fairly narrow, but could be tightened to virgin status. + [[Restore anal virginity|Surgery Degradation][$activeSlave.anus = 0,$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "anus"]] //This will reduce $his anal skills// <</if>> <</if>> @@ -1024,11 +1024,11 @@ Apply a retro-virus treatment: <br> <<if $activeSlave.inducedNCS == 0>> <<if ($activeSlave.indentureRestrictions >= 1)>> - //$possessiveCap indenture forbids induced NCS as it is both extreme body modification and elective surgery// + //$His indenture forbids induced NCS as it is both extreme body modification and elective surgery// <<elseif $activeSlave.health < 0>> She's too unhealthy for the Induced @@.orange;NCS@@ Treatment <<else>> - [[Induced NCS Treatment|Surgery Degradation][$activeSlave.inducedNCS = 1,$cash -= $surgeryCost * 4, $activeSlave.health -= 80,$surgeryType = "retrograde virus injection NCS"]] //This will induce @@.orange;NCS@@ in $possessive genetic code// + [[Induced NCS Treatment|Surgery Degradation][$activeSlave.inducedNCS = 1,$cash -= $surgeryCost * 4, $activeSlave.health -= 80,$surgeryType = "retrograde virus injection NCS"]] //This will induce @@.orange;NCS@@ in $his genetic code// <</if>> <<else>> //She already has Induced @@.orange;NCS@@// @@ -1041,17 +1041,17 @@ Deal with her hair: <br> <<if $activeSlave.bald == 0 || $activeSlave.hStyle != "bald">> - $pronounCap naturally grows $activeSlave.origHColor hair from her head. - [["Surgically remove " + $possessive + " ability to grow hair"|Surgery Degradation][$cash -= $surgeryCost,$activeSlave.bald = 1,$surgeryType = "hair removal"]] + $He naturally grows $activeSlave.origHColor hair from her head. + [["Surgically remove " + $his + " ability to grow hair"|Surgery Degradation][$cash -= $surgeryCost,$activeSlave.bald = 1,$surgeryType = "hair removal"]] <<else>> - $pronounCap is no longer capable of growing hair on her head. + $He is no longer capable of growing hair on her head. <</if>> <br> <<if ($activeSlave.underArmHStyle != "bald" && $activeSlave.underArmHStyle != "hairless") || ($activeSlave.pubicHStyle != "bald" && $activeSlave.pubicHStyle != "hairless")>> - $pronounCap <<if $activeSlave.physicalAge >= 12>>naturally grows<<else>>will someday grow<</if>> $activeSlave.origHColor body hair. - [["Surgically remove " + $possessive + " ability to grow body hair"|Surgery Degradation][$cash -= $surgeryCost,$surgeryType = "body hair removal"]] + $He <<if $activeSlave.physicalAge >= 12>>naturally grows<<else>>will someday grow<</if>> $activeSlave.origHColor body hair. + [["Surgically remove " + $his + " ability to grow body hair"|Surgery Degradation][$cash -= $surgeryCost,$surgeryType = "body hair removal"]] <<else>> - $possessiveCap $activeSlave.skin skin is silky smooth and hair free from her neck to her toes. + $His $activeSlave.skin skin is silky smooth and hair free from her neck to her toes. <</if>> <br><br> @@ -1061,7 +1061,7 @@ Alter her Race: <<set $toSearch = $activeSlave.race>> <<if $toSearch.indexOf("surgically") == -1>> <<if $activeSlave.indentureRestrictions < 1>> - $pronounCap is $activeSlave.race. Surgically alter $object to look more: + $He is $activeSlave.race. Surgically alter $him to look more: [[Caucasian|Surgery Degradation][$activeSlave.race = "surgically altered to look white",$activeSlave.skin = either("pale", "light", "fair"),$activeSlave.eyeColor = either("blue", "brown", "green"),$activeSlave.hColor = either("black", "blonde", "red", "brown"),$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "race"]] | [[Latina|Surgery Degradation][$activeSlave.race = "surgically altered to look latina",$activeSlave.skin = either("light olive", "brown", "dark brown", "tanned", "dark olive"),$activeSlave.hColor = either("black", "black", "brown", "brown"),$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "race"]] | [[Black|Surgery Degradation][$activeSlave.race = "surgically altered to look black",$activeSlave.skin = either("black", "brown", "dark brown"),$activeSlave.hColor = either("black", "black", "black", "brown"),$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "race"]] | @@ -1074,10 +1074,10 @@ Alter her Race: [[Southern European|Surgery Degradation][$activeSlave.race = "surgically altered to look southern european",$activeSlave.skin = either("fair", "light olive", "tanned", "pale"),$activeSlave.hColor = "black",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "race"]] | [[Semitic|Surgery Degradation][$activeSlave.race = "surgically altered to look semitic",$activeSlave.skin = either("light", "light olive" "tanned", "dark olive"),$activeSlave.hColor = "black", "brown",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "race"]] <<else>> - //$possessiveCap indenture forbids elective surgery// + //$His indenture forbids elective surgery// <</if>> <<else>> - $pronounCap is $activeSlave.race. + $He is $activeSlave.race. <</if>> <br><br> @@ -1085,34 +1085,34 @@ Work on her structurally: <br> <<if $activeSlave.indentureRestrictions < 1>> <<if ($activeSlave.shoulders < -1)>> - $pronounCap has very narrow shoulders. + $He has very narrow shoulders. <<elseif ($activeSlave.shoulders < 0)>> - $pronounCap has narrow shoulders. + $He has narrow shoulders. <<elseif ($activeSlave.shoulders < 1)>> - $pronounCap has average shoulders. + $He has average shoulders. <<elseif ($activeSlave.shoulders < 2)>> - $pronounCap has broad shoulders. + $He has broad shoulders. <<elseif ($activeSlave.shoulders == 2)>> - $pronounCap has very broad shoulders. + $He has very broad shoulders. <</if>> <<if ($activeSlave.shouldersImplant == 0)>> - $pronounCap has a natural shoulder structure. + $He has a natural shoulder structure. <<elseif ($activeSlave.shouldersImplant > 3)>> - $possessiveCap shoulders have been completely rebuilt to be massively wider. + $His shoulders have been completely rebuilt to be massively wider. <<elseif ($activeSlave.shouldersImplant > 2)>> - $possessiveCap shoulders have been heavily restructured to broaden them. + $His shoulders have been heavily restructured to broaden them. <<elseif ($activeSlave.shouldersImplant > 1)>> - $possessiveCap shoulders have been repeatedly restructured to broaden them. + $His shoulders have been repeatedly restructured to broaden them. <<elseif ($activeSlave.shouldersImplant > 0)>> - $possessiveCap shoulders have been restructured to broaden them. + $His shoulders have been restructured to broaden them. <<elseif ($activeSlave.shouldersImplant < -3)>> - $possessiveCap shoulders have been completely rebuilt to be massively narrower. + $His shoulders have been completely rebuilt to be massively narrower. <<elseif ($activeSlave.shouldersImplant < -2)>> - $possessiveCap shoulders have been heavily restructured to narrow them. + $His shoulders have been heavily restructured to narrow them. <<elseif ($activeSlave.shouldersImplant < -1)>> - $possessiveCap shoulders have been repeatedly restructured to narrow them. + $His shoulders have been repeatedly restructured to narrow them. <<elseif ($activeSlave.shouldersImplant < 0)>> - $possessiveCap shoulders have been restructured to narrow them. + $His shoulders have been restructured to narrow them. <</if>> <<if ($activeSlave.shouldersImplant == 0)>> <<if $activeSlave.shoulders > -2 && $activeSlave.shoulders < 2>> @@ -1136,36 +1136,36 @@ Work on her structurally: <<if $activeSlave.indentureRestrictions < 1>> <<if ($activeSlave.hips < -1)>> - $pronounCap has very narrow hips. + $He has very narrow hips. <<elseif ($activeSlave.hips < 0)>> - $pronounCap has narrow hips. + $He has narrow hips. <<elseif ($activeSlave.hips < 1)>> - $pronounCap has average hips. + $He has average hips. <<elseif ($activeSlave.hips < 2)>> - $pronounCap has broad hips. + $He has broad hips. <<elseif ($activeSlave.hips < 3)>> - $pronounCap has very broad hips. + $He has very broad hips. <<elseif ($activeSlave.hips == 3)>> - $pronounCap has doorway-jamming hips. + $He has doorway-jamming hips. <</if>> <<if ($activeSlave.hipsImplant == 0)>> They have not been altered. <<elseif ($activeSlave.hipsImplant > 3)>> - $possessiveCap pelvis has been completely rebuilt to be massively wider. + $His pelvis has been completely rebuilt to be massively wider. <<elseif ($activeSlave.hipsImplant > 2)>> - $possessiveCap pelvis has been heavily broadened. + $His pelvis has been heavily broadened. <<elseif ($activeSlave.hipsImplant > 1)>> - $possessiveCap pelvis has been repeatedly broadened. + $His pelvis has been repeatedly broadened. <<elseif ($activeSlave.hipsImplant > 0)>> - $possessiveCap pelvis has been broadened. + $His pelvis has been broadened. <<elseif ($activeSlave.hipsImplant < -3)>> - $possessiveCap pelvis has been completely rebuilt to be massively narrower. + $His pelvis has been completely rebuilt to be massively narrower. <<elseif ($activeSlave.hipsImplant < -2)>> - $possessiveCap pelvis has heavily narrowed. + $His pelvis has heavily narrowed. <<elseif ($activeSlave.hipsImplant < -1)>> - $possessiveCap pelvis has been repeatedly narrowed. + $His pelvis has been repeatedly narrowed. <<elseif ($activeSlave.hipsImplant < 0)>> - $possessiveCap pelvis has been narrowed. + $His pelvis has been narrowed. <</if>> <<if ($activeSlave.hipsImplant == 0)>> <<if $activeSlave.hips > -2 && $activeSlave.hips < 3 && $surgeryUpgrade == 1>> @@ -1192,11 +1192,11 @@ Work on her structurally: <<if ($activeSlave.amp == 0)>> <<if ($activeSlave.heightImplant == 0)>> - $pronounCap has normal femurs and humeri. + $He has normal femurs and humeri. <<elseif ($activeSlave.heightImplant > 0)>> - $possessiveCap femurs, humeri, and other major bones have been lengthened. + $His femurs, humeri, and other major bones have been lengthened. <<elseif ($activeSlave.heightImplant < 0)>> - $possessiveCap femurs, humeri, and other major bones have been shortened. + $His femurs, humeri, and other major bones have been shortened. <</if>> <<if ($activeSlave.heightImplant == 0)>> <<if $activeSlave.indentureRestrictions < 1>> @@ -1217,13 +1217,13 @@ Work on her structurally: <</if>> <br> <<if ($activeSlave.heels == 0) && ($activeSlave.amp == 0)>> - $pronounCap has healthy calves. + $He has healthy calves. <<elseif ($activeSlave.heels == 1) && ($activeSlave.amp == 0)>> - $possessiveCap calves have been altered so that $pronoun cannot walk in anything but very high heels. + $His calves have been altered so that $he cannot walk in anything but very high heels. <</if>> <<if ($activeSlave.heels == 0) && ($seeExtreme == 1)>> <<if $activeSlave.indentureRestrictions < 1>> - [[Shorten tendons|Surgery Degradation][$activeSlave.heels = 1,$activeSlave.shoes = "heels",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "heels"]] //Prevents $possessive from walking in anything but very high heels// + [[Shorten tendons|Surgery Degradation][$activeSlave.heels = 1,$activeSlave.shoes = "heels",$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "heels"]] //Prevents $his from walking in anything but very high heels// <</if>> <</if>> <<if ($activeSlave.heels == 1)>> @@ -1234,9 +1234,9 @@ Work on her structurally: <<if ($activeSlave.amp == 0)>> - $pronounCap has healthy limbs. + $He has healthy limbs. <<else>> - $pronounCap is a quadruple amputee + $He is a quadruple amputee <<if $activeSlave.PLimb == 1 && $activeSlave.amp == 1>> and has been implanted with a <<if $cyberMod>>basic<</if>> PLimb interface. <<elseif $activeSlave.PLimb == 2 && $activeSlave.amp == 1>> @@ -1259,19 +1259,19 @@ Work on her structurally: <<if $cyberMod == 0>> <<if $activeSlave.amp == 0>> <<if ($activeSlave.indentureRestrictions < 1) && ($seeExtreme == 1)>> - [[Remove arms and legs|Surgery Degradation][$activeSlave.amp = 1,$activeSlave.heels = 0,$activeSlave.shoes = "none",$activeSlave.legAccessory = "none",$activeSlave.heightImplant = 0,$activeSlave.legsTat = 0,$activeSlave.armsTat = 0,$cash -= $surgeryCost,$activeSlave.health -= 40,$activeSlave.nails = 0,$activeSlave.PLimb = 0,$surgeryType = "amp1"]] //This will greatly restrict $possessive// + [[Remove arms and legs|Surgery Degradation][$activeSlave.amp = 1,$activeSlave.heels = 0,$activeSlave.shoes = "none",$activeSlave.legAccessory = "none",$activeSlave.heightImplant = 0,$activeSlave.legsTat = 0,$activeSlave.armsTat = 0,$cash -= $surgeryCost,$activeSlave.health -= 40,$activeSlave.nails = 0,$activeSlave.PLimb = 0,$surgeryType = "amp1"]] //This will greatly restrict $his// <</if>> <<elseif $activeSlave.PLimb != 1 && $activeSlave.amp == 1>> <<if ($activeSlave.indentureRestrictions < 1) && ($seeExtreme == 1)>> - [[Implant prosthetic interface|Surgery Degradation][$activeSlave.PLimb = 1,$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "prostheticInterface"]] //This will allow $possessive to use prosthetic limbs// + [[Implant prosthetic interface|Surgery Degradation][$activeSlave.PLimb = 1,$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "prostheticInterface"]] //This will allow $his to use prosthetic limbs// <</if>> <</if>> <<else>> <<if $activeSlave.amp == 0>> <<if ($activeSlave.indentureRestrictions < 1) && ($seeExtreme == 1) && (($stockpile.basicPLimbInterface + $stockpile.advPLimbInterface) == 0)>> - [[Remove arms and legs|Surgery Degradation][$activeSlave.amp = 1,$activeSlave.heels = 0,$activeSlave.shoes = "none",$activeSlave.legAccessory = "none",$activeSlave.heightImplant = 0,$activeSlave.legsTat = 0,$activeSlave.armsTat = 0,$activeSlave.releaseRules = "restrictive",$cash -= $surgeryCost, $activeSlave.health -= 40,$activeSlave.nails = 0,$surgeryType = "amp"]] //This will greatly restrict $possessive// + [[Remove arms and legs|Surgery Degradation][$activeSlave.amp = 1,$activeSlave.heels = 0,$activeSlave.shoes = "none",$activeSlave.legAccessory = "none",$activeSlave.heightImplant = 0,$activeSlave.legsTat = 0,$activeSlave.armsTat = 0,$activeSlave.releaseRules = "restrictive",$cash -= $surgeryCost, $activeSlave.health -= 40,$activeSlave.nails = 0,$surgeryType = "amp"]] //This will greatly restrict $his// <<elseif ($activeSlave.indentureRestrictions < 1) && ($seeExtreme == 1)>> - [[Remove arms and legs|Surgery Degradation][$activeSlave.amp = 1,$activeSlave.heels = 0,$activeSlave.shoes = "none",$activeSlave.legAccessory = "none",$activeSlave.heightImplant = 0,$activeSlave.legsTat = 0,$activeSlave.armsTat = 0,$activeSlave.releaseRules = "restrictive",$cash -= $surgeryCost, $activeSlave.health -= 40,$activeSlave.nails = 0,$surgeryType = "amp1"]] //This will greatly restrict $possessive// + [[Remove arms and legs|Surgery Degradation][$activeSlave.amp = 1,$activeSlave.heels = 0,$activeSlave.shoes = "none",$activeSlave.legAccessory = "none",$activeSlave.heightImplant = 0,$activeSlave.legsTat = 0,$activeSlave.armsTat = 0,$activeSlave.releaseRules = "restrictive",$cash -= $surgeryCost, $activeSlave.health -= 40,$activeSlave.nails = 0,$surgeryType = "amp1"]] //This will greatly restrict $his// <</if>> <<elseif ($activeSlave.amp == 1) && ($activeSlave.PLimb == 0)>> <<if ($stockpile.basicPLimbInterface > 0)>> | @@ -1311,7 +1311,7 @@ Work on her structurally: <<if $activeLimbs == 0>> <<if ($activeSlave.readyLimbs.length < 5 && $activeSlave.amp >= 0) || ($activeSlave.readyLimbs.length < 4 && $activeSlave.amp < 0)>> /* missing at least one type of limb */ - The prosthesis facility is not currently building a set of artificial limbs for $object. + The prosthesis facility is not currently building a set of artificial limbs for $him. <br> Construct prosthetics: @@ -1399,7 +1399,7 @@ Work on her structurally: <</if>> <</if>> <<else>> - The prosthesis facility has already built a complete set of artificial limbs of every type for $object. + The prosthesis facility has already built a complete set of artificial limbs of every type for $him. <</if>> <<elseif $activeLimbs.weeksToCompletion > 0>> The prosthesis facility is currently building a set of @@ -1415,19 +1415,19 @@ Work on her structurally: <<default>> standard artificial <</switch>> - limbs for $object, which is projected to be ready for attachment in $activeLimbs.weeksToCompletion <<if $activeLimbs.weeksToCompletion == 1>>week<<else>>weeks<</if>>. + limbs for $him, which is projected to be ready for attachment in $activeLimbs.weeksToCompletion <<if $activeLimbs.weeksToCompletion == 1>>week<<else>>weeks<</if>>. <<link "Discard">> <<set _i = $limbs.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> <<set $limbs.deleteAt(_i)>> <<goto "Remote Surgery">> <</link>> <<else>> - The prosthesis facility has constructed $possessive prosthetic limbs. + The prosthesis facility has constructed $his prosthetic limbs. <br> <<if $activeSlave.amp == 0>> - // $pronounCap must be an amputee to attach prosthetic limbs // + // $He must be an amputee to attach prosthetic limbs // <<elseif $activeSlave.PLimb == 0>> - // $pronounCap must have a prosthetic interface installed to attack prosthetic limbs // + // $He must have a prosthetic interface installed to attack prosthetic limbs // <<else>> <<link "Attach">> <<if $activeSlave.amp < 0>> @@ -1496,26 +1496,26 @@ Work on her structurally: <br> <<if $seeExtreme == 1>> <<if $activeSlave.fuckdoll == 0>> - <br>$pronounCap is a normal sex slave, not a living sex toy. + <br>$He is a normal sex slave, not a living sex toy. <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> - [[Encase in a Fuckdoll suit|Surgery Degradation][$activeSlave.subTarget=0, $activeSlave.sentence=0, $activeSlave.training=0, $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, $activeSlave.inflation=0, $activeSlave.inflationType="none", $activeSlave.inflationMethod=0, $activeSlave.milkSource=0, $activeSlave.cumSource=0, $surgeryType = "fuckdoll"]] //This is permanent and will greatly restrict $possessive// + [[Encase in a Fuckdoll suit|Surgery Degradation][$activeSlave.subTarget=0, $activeSlave.sentence=0, $activeSlave.training=0, $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, $activeSlave.inflation=0, $activeSlave.inflationType="none", $activeSlave.inflationMethod=0, $activeSlave.milkSource=0, $activeSlave.cumSource=0, $surgeryType = "fuckdoll"]] //This is permanent and will greatly restrict $his// <</if>> <<else>> - <br>$pronounCap is encased in a Fuckdoll suit. [[Extract it|Surgery Degradation][$activeSlave.fuckdoll=0, $activeSlave.clothes="no clothing", $activeSlave.shoes="none", $surgeryType = "fuckdollExtraction"]] + <br>$He is encased in a Fuckdoll suit. [[Extract it|Surgery Degradation][$activeSlave.fuckdoll=0, $activeSlave.clothes="no clothing", $activeSlave.shoes="none", $surgeryType = "fuckdollExtraction"]] <</if>> <</if>> <<if ($seeExtreme == 1)>> <<if $activeSlave.fetish != "mindbroken">> - <br>$pronounCap is mentally competent. + <br>$He is mentally competent. <<elseif $activeSlave.fetish == "mindbroken">> - <br>$possessiveCap mind is gone; $pronoun has either been chemically lobotomized, or has lost $possessive mind due to extreme abuse. + <br>$His mind is gone; $he has either been chemically lobotomized, or has lost $his mind due to extreme abuse. <</if>> <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> <<if $activeSlave.fetish != "mindbroken">> [[Chemically lobotomize|Surgery Degradation][$activeSlave.fetish = "mindbroken",$activeSlave.fetishKnown = 1,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "mindbreak"]] - //Warning: this is permanent and irreversible. It will destroy $possessive will and $possessive ability to remember anything but the simplest skills.// + //Warning: this is permanent and irreversible. It will destroy $his will and $his ability to remember anything but the simplest skills.// <</if>> <</if>> <</if>> @@ -1523,11 +1523,11 @@ Work on her structurally: <<if $bodyswapAnnounced == 1 && $activeSlave.indenture < 0>> <br> <<if $activeSlave.bodySwap == 0>> - $pronounCap is in her native body. + $He is in her native body. <<elseif $activeSlave.origBodyOwner != "">> - $pronounCap currently occupies <<print $activeSlave.origBodyOwner>>'s body. + $He currently occupies <<print $activeSlave.origBodyOwner>>'s body. <<else>> - $pronounCap is no longer in her native body. + $He is no longer in her native body. <</if>> <<if $activeSlave.indenture == -1>> [[Swap her body with another of your stock's|Slave Slave Swap Workaround]] diff --git a/src/uncategorized/saTakeClasses.tw b/src/uncategorized/saTakeClasses.tw index 669aa42f412eb6e4bf5d0a47c1c097711889a07e..cb9dec8a51aeb1dca43e075c882812c74cdd299f 100644 --- a/src/uncategorized/saTakeClasses.tw +++ b/src/uncategorized/saTakeClasses.tw @@ -199,7 +199,7 @@ <<set $slaves[$i].speechRules = "accent elimination">> <</if>> <<elseif ($slaves[$i].accent == 3)>> - $He has @@.green;learned functional $language,@@ and can make <<print $him>>self understood, though $his $slaves[$i].nationality accent is still quite heavy. + $He has @@.green;learned functional $language,@@ and can make $himself understood, though $his $slaves[$i].nationality accent is still quite heavy. <<set $slaves[$i].accent -= 1>> <</if>> <<else>> diff --git a/src/uncategorized/seBirth.tw b/src/uncategorized/seBirth.tw index 719d46c194e879956359276c404ee2645d2d0df3..be4e64710a3243cb0cfa5c3d091458a36e103860 100644 --- a/src/uncategorized/seBirth.tw +++ b/src/uncategorized/seBirth.tw @@ -5,13 +5,13 @@ Refactoring this passage. Main idea for structure: 1. Making all checks about where and how slave give birth (health too). 2. Showing scene (widget with preparations) -3. Make calculation of birth process. All live babies will be added to slave property .curBabies as array. They will be it as long, as slave not give next birth. Enought time for any processing. +3. Make calculation of birth process. All live babies will be added to slave property .curBabies as array. They will be in it as long as slave not give next birth. Enough time for any processing. 4. Showing scene of birth based on calculation (broodmother and normal is merged in one scene, just with variations). 5. Dealing with babies - they are in separate array, no need to mess with mother .pregType or .preg now. 6. Setting up postpartum -7. Dealing with moter critical states. +7. Dealing with mother critical states. -I need to break single passage to several widgets, as it's been overcomplicated monster with too many nested if's - true horror for me. :) At least for testing and bugfixing time, later it's can be merged back, if needed for processing speed up. +I need to break single passage to several widgets, as it's been overcomplicated monster with too many nested if's - true horror for me. :) At least for testing and bugfixing time, later it can be merged back, if needed for processing speed up. */ <<set $nextButton = "Continue">> diff --git a/src/uncategorized/seCustomSlaveDelivery.tw b/src/uncategorized/seCustomSlaveDelivery.tw index 7895bb1fa151199a1a4f1ddeaf282ec3a9a54541..af4da62b42c68214d4db901b86616bc18f29e1ea 100644 --- a/src/uncategorized/seCustomSlaveDelivery.tw +++ b/src/uncategorized/seCustomSlaveDelivery.tw @@ -26,9 +26,21 @@ <<elseif $customSlave.age == 19>> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 19>> +<<elseif $customSlave.age == 20 && $retirementAge == 20>> + <<set $activeSlaveOneTimeMinAge = 20>> + <<set $activeSlaveOneTimeMaxAge = 20>> +<<elseif $customSlave.age == 20>> + <<set $activeSlaveOneTimeMinAge = 20>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> <<elseif $customSlave.age == 24>> <<set $activeSlaveOneTimeMinAge = 20>> <<set $activeSlaveOneTimeMaxAge = 24>> +<<elseif $customSlave.age == 25 && $retirementAge == 25>> + <<set $activeSlaveOneTimeMinAge = 25>> + <<set $activeSlaveOneTimeMaxAge = 25>> +<<elseif $customSlave.age == 25>> + <<set $activeSlaveOneTimeMinAge = 25>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> <<elseif $customSlave.age == 29>> <<set $activeSlaveOneTimeMinAge = 25>> <<set $activeSlaveOneTimeMaxAge = 29>> @@ -71,9 +83,60 @@ <<elseif $customSlave.age == 70 && $retirementAge == 70>> <<set $activeSlaveOneTimeMinAge = 70>> <<set $activeSlaveOneTimeMaxAge = 70>> -<<else>> +<<elseif $customSlave.age == 70>> <<set $activeSlaveOneTimeMinAge = 70>> <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> +<<elseif $customSlave.age == 79>> + <<set $activeSlaveOneTimeMinAge = 70>> + <<set $activeSlaveOneTimeMaxAge = 79>> +<<elseif $customSlave.age == 80 && $retirementAge == 80>> + <<set $activeSlaveOneTimeMinAge = 80>> + <<set $activeSlaveOneTimeMaxAge = 80>> +<<elseif $customSlave.age == 80>> + <<set $activeSlaveOneTimeMinAge = 80>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> +<<elseif $customSlave.age == 79>> + <<set $activeSlaveOneTimeMinAge = 80>> + <<set $activeSlaveOneTimeMaxAge = 89>> +<<elseif $customSlave.age == 90 && $retirementAge == 90>> + <<set $activeSlaveOneTimeMinAge = 90>> + <<set $activeSlaveOneTimeMaxAge = 90>> +<<elseif $customSlave.age == 90>> + <<set $activeSlaveOneTimeMinAge = 90>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> +<<elseif $customSlave.age == 79>> + <<set $activeSlaveOneTimeMinAge = 90>> + <<set $activeSlaveOneTimeMaxAge = 99>> +<<elseif $customSlave.age == 100 && $retirementAge == 100>> + <<set $activeSlaveOneTimeMinAge = 100>> + <<set $activeSlaveOneTimeMaxAge = 100>> +<<elseif $customSlave.age == 100>> + <<set $activeSlaveOneTimeMinAge = 100>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> +<<elseif $customSlave.age == 109>> + <<set $activeSlaveOneTimeMinAge = 100>> + <<set $activeSlaveOneTimeMaxAge = 109>> +<<elseif $customSlave.age == 110 && $retirementAge == 110>> + <<set $activeSlaveOneTimeMinAge = 110>> + <<set $activeSlaveOneTimeMaxAge = 110>> +<<elseif $customSlave.age == 110>> + <<set $activeSlaveOneTimeMinAge = 110>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> +<<elseif $customSlave.age == 119>> + <<set $activeSlaveOneTimeMinAge = 110>> + <<set $activeSlaveOneTimeMaxAge = 119>> +<<elseif $customSlave.age == 120 && $retirementAge == 120>> + <<set $activeSlaveOneTimeMinAge = 120>> + <<set $activeSlaveOneTimeMaxAge = 120>> +<<elseif $customSlave.age == 120>> + <<set $activeSlaveOneTimeMinAge = 120>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> +<<elseif $customSlave.age == 129>> + <<set $activeSlaveOneTimeMinAge = 120>> + <<set $activeSlaveOneTimeMaxAge = 129>> +<<else>> + <<set $activeSlaveOneTimeMinAge = 130>> + <<set $activeSlaveOneTimeMaxAge = $retirementAge-1>> <</if>> <<set $ageAdjustOverride = 1>> <<set $one_time_age_overrides_pedo_mode = 1>> @@ -184,34 +247,34 @@ <<default>> <<set $activeSlave.nationality = hashChoice($nationalities)>> <</switch>> -<<elseif $customSlave.race == "ethnicity is unimportant">> +<<elseif $activeSlave.race == "ethnicity is unimportant">> <<run nationalityToRace($activeSlave)>> <<else>> <</if>> <<if $activeSlave.race == "black">> - <<if $customSlave.skin == "left natural">><<set $activeSlave.skin = either("black", "brown", "dark brown")>><</if>> + <<if $activeSlave.skin == "left natural">><<set $activeSlave.skin = either("black", "brown", "dark brown")>><</if>> <<set $activeSlave.hColor = either("black", "black", "black", "brown")>> <<set $activeSlave.hStyle = either("shoulder-length", "short", "very short", "shaved bald", "crinkled")>> <<elseif $activeSlave.race == "white">> - <<if $customSlave.skin == "left natural">><<set $activeSlave.skin = either("pale", "light", "fair")>><</if>> + <<if $activeSlave.skin == "left natural">><<set $activeSlave.skin = either("pale", "light", "fair")>><</if>> <<set $activeSlave.eyeColor = either("blue", "brown", "green")>> <<set $activeSlave.hColor = either("black", "blonde", "red", "brown")>> <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> <<elseif $activeSlave.race == "latina">> - <<if $customSlave.skin == "left natural">><<set $activeSlave.skin = either("light olive", "brown", "dark brown", "tanned", "dark olive")>><</if>> + <<if $activeSlave.skin == "left natural">><<set $activeSlave.skin = either("light olive", "brown", "dark brown", "tanned", "dark olive")>><</if>> <<set $activeSlave.hColor = either("black", "black", "brown", "brown")>> <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> <<elseif $activeSlave.race == "asian">> - <<if $customSlave.skin == "left natural">><<set $activeSlave.skin = either("light olive", "dark olive", "light")>><</if>> + <<if $activeSlave.skin == "left natural">><<set $activeSlave.skin = either("light olive", "dark olive", "light")>><</if>> <<set $activeSlave.hColor = either("black")>> <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> <<elseif ($activeSlave.race == "indo-aryan") || ($activeSlave.race == "malay") || ($activeSlave.race == "pacific islander") || ($activeSlave.race == "amerindian")>> - <<if $customSlave.skin == "left natural">><<set $activeSlave.skin = either("pale", "dark", "light")>><</if>> + <<if $activeSlave.skin == "left natural">><<set $activeSlave.skin = either("pale", "dark", "light")>><</if>> <<set $activeSlave.hColor = either("black")>> <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> <<elseif ($activeSlave.race == "middle eastern") || ($activeSlave.race == "semitic") || ($activeSlave.race == "southern european")>> - <<if $customSlave.skin == "left natural">><<set $activeSlave.skin = either("tanned", "dark olive", "light olive")>><</if>> + <<if $activeSlave.skin == "left natural">><<set $activeSlave.skin = either("tanned", "dark olive", "light olive")>><</if>> <<set $activeSlave.hColor = either("black")>> <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> <</if>> diff --git a/src/uncategorized/seRetirement.tw b/src/uncategorized/seRetirement.tw index c7153abaf8426000512447644cb60815c2118261..8a0032252d1a065ebe904fc40eb0af8311850ac8 100644 --- a/src/uncategorized/seRetirement.tw +++ b/src/uncategorized/seRetirement.tw @@ -36,7 +36,7 @@ She is retiring into citizenship, with a substantial annuity that will provide h <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> She is glad she no longer has to be your slave wife, as she never wanted to be in the first place, though she will miss taking advantage of the position. She understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to dream of the idea, and goes through the process with unremitting joy, doing her best to embarrass you. <<elseif $activeSlave.devotion < -20>> - She is glad she no longer has to be your slave wife, as she never wanted to be in the first place. She understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to dream of the idea, and goes through the process with unremitting joy, doing her best to avoid embarrassing you while she’s still subject to your whims and your punishments. + She is glad she no longer has to be your slave wife, as she never wanted to be in the first place. She understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to dream of the idea, and goes through the process with unremitting joy, doing her best to avoid embarrassing you while she's still subject to your whims and your punishments. <<else>> She is glad she no longer has to be your slave wife, as she never wanted to be in the first place. She understands that marriages between slaves and slave owners are predicated on the slave relationship. She knows that her retirement has come, meaning that her slave relationship to you is ending. She's had a long time to get used to the idea, and gets through the process dutifully, doing her best to avoid embarrassing you. <</if>> diff --git a/src/uncategorized/seWedding.tw b/src/uncategorized/seWedding.tw index 6e6e48ef8b6aa4ce1f78ae6892ec79399c44528f..866bf66c0510680bd3edb4037d00f83a5aff62fa 100644 --- a/src/uncategorized/seWedding.tw +++ b/src/uncategorized/seWedding.tw @@ -400,15 +400,15 @@ <</if>> <br><br> <<if $activeSlave.fetish == "mindbroken">> - $activeSlave.slaveName is mindbroken, so you gather her up and hold her in front of you, pulling her panties off as you do. She follows your motions like a ragdoll. You maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull her knees up to give your guests a good view as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. She is left to face them, staring off into space. Though she faces the crowd, her mind is empty; this might as well be any other fucking to her. She twitches ever so slightly when your seed flows into her, orgasming robotically to @@.green;applause from your guests.@@ You’ll fuck her repeatedly over the next few days, ensuring impregnation. + $activeSlave.slaveName is mindbroken, so you gather her up and hold her in front of you, pulling her panties off as you do. She follows your motions like a ragdoll. You maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull her knees up to give your guests a good view as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. She is left to face them, staring off into space. Though she faces the crowd, her mind is empty; this might as well be any other fucking to her. She twitches ever so slightly when your seed flows into her, orgasming robotically to @@.green;applause from your guests.@@ You'll fuck her repeatedly over the next few days, ensuring impregnation. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> Then, you <<if $activeSlave.amp == 1>>gather her up and hold her in front of you, pulling her panties off as you do. Showing considerable dexterity, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take her hand and pull her to her feet while she shimmies out of her panties. She cocks her hips for you and you slide your cock inside her before taking her knees and drawing them up to hold her in midair, impaled on you<</if>>. She is left to face your guests, watching raptly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, it's @@.mediumaquamarine;concrete proof that she's special to you.@@ She gasps when your seed flows into her, orgasming herself to @@.green;applause from your guests.@@ You'll fuck her repeatedly over the next few days, ensuring impregnation. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $activeSlave.slaveName is unwilling, so you gather her up and hold her in front of you, pulling her panties off as you do. She was crying before, but this causes her to tremble and tear up in anticipation of what’s next. Ignoring this, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull her knees up to give your guests a good view of the consummation.<</if>> She is left to face them, watching sullenly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, this is torture. She gasps when your seed flows into her, faking an orgasm to @@.green;applause from your guests.@@ At this, she shoots you a dirty look, blaming you for this indignity. You’ll fuck her repeatedly over the next few days, ensuring impregnation, despite her efforts to defy you. + $activeSlave.slaveName is unwilling, so you gather her up and hold her in front of you, pulling her panties off as you do. She was crying before, but this causes her to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull her knees up to give your guests a good view of the consummation.<</if>> She is left to face them, watching sullenly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, this is torture. She gasps when your seed flows into her, faking an orgasm to @@.green;applause from your guests.@@ At this, she shoots you a dirty look, blaming you for this indignity. You'll fuck her repeatedly over the next few days, ensuring impregnation, despite her efforts to defy you. <<elseif $activeSlave.devotion < -20>> - $activeSlave.slaveName is unwilling, so you gather her up and hold her in front of you, pulling her panties off as you do. She was crying before, but this causes her to tremble and sob loudly in anticipation of what’s next. Ignoring this, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull her knees up to give your guests a good view of the consummation.<</if>> She is left to face them, watching sullenly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, this is torture. She gasps when your seed flows into her, orgasming unwillingly @@.green;applause from your guests.@@ At this, she completely breaks down, blubbering like a child at the unwelcome warmth in her lower belly. You’ll fuck her repeatedly over the next few days, ensuring impregnation, despite her protesting. + $activeSlave.slaveName is unwilling, so you gather her up and hold her in front of you, pulling her panties off as you do. She was crying before, but this causes her to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $activeSlave.amp != 1>> Then you pull her knees up to give your guests a good view of the consummation.<</if>> She is left to face them, watching sullenly as you fuck her fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, this is torture. She gasps when your seed flows into her, orgasming unwillingly @@.green;applause from your guests.@@ At this, she completely breaks down, blubbering like a child at the unwelcome warmth in her lower belly. You'll fuck her repeatedly over the next few days, ensuring impregnation, despite her protesting. <<else>> - $activeSlave.slaveName isn’t particularly excited about what’s coming, but she’s fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if $activeSlave.amp == 1>>gather her up and hold her in front of you, pulling her panties off as you do. Showing considerable dexterity, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take her hand and pull her to her feet while she shimmies out of her panties. She cocks her hips for you and you slide your cock inside her before taking her knees and drawing them up to hold her in midair, impaled on you<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, it is what it is. She gasps when your seed flows into her, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck her repeatedly over the next few days, ensuring impregnation. + $activeSlave.slaveName isn't particularly excited about what's coming, but she's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if $activeSlave.amp == 1>>gather her up and hold her in front of you, pulling her panties off as you do. Showing considerable dexterity, you maneuver your dick inside her while holding her against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take her hand and pull her to her feet while she shimmies out of her panties. She cocks her hips for you and you slide your cock inside her before taking her knees and drawing them up to hold her in midair, impaled on you<</if>>. Though her face is towards the crowd, her mind is concentrated on your hard cock, pumping in and out of her at an angle; to her, it is what it is. She gasps when your seed flows into her, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck her repeatedly over the next few days, ensuring impregnation. <</if>> <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1>> <<set $activeSlave.pregType = setPregType($activeSlave)>> @@ -518,11 +518,11 @@ <<elseif $weddingPlanned == 2>> The ceremony to bind <<= SlaveFullName($activeSlave)>> to you as your slave wife is an all day affair. <<if $activeSlave.fetish == "mindbroken">> - She spent the day before resting and preparing herself, if you can call sitting around mindlessly preparing. She spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of physical reaction than anything. The theory is that she’ll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave’s responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave’s utter emptiness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she’s extracted and taken off to be bathed. + She spent the day before resting and preparing herself, if you can call sitting around mindlessly preparing. She spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of physical reaction than anything. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed. <br><br> - She returns shortly, looking exhausted but otherwise uncaring. She’s naked still, her skin clean and $activeSlave.skin, and is led to you for the ceremony by another slave. The only evident signs that she’s had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She can’t conceal her tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. + She returns shortly, looking exhausted but otherwise uncaring. She's naked still, her skin clean and $activeSlave.skin, and is led to you for the ceremony by another slave. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She can't conceal her tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle her in your arms, and by the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave’s chest rises and falls with her breathing. + Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle her in your arms, and by the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> She spent the day before resting and preparing herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed. <br><br> @@ -530,23 +530,23 @@ <br><br> Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle her in your arms, and by the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - She spent the day before resting and trying to ready herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that she’ll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave’s responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave’s utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she’s extracted and taken off to be bathed. + She spent the day before resting and trying to ready herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed. <br><br> - She returns shortly, looking exhausted and annoyed. She’s naked still, her skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that she’s had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her tiredness and look stronger than she is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. + She returns shortly, looking exhausted and annoyed. She's naked still, her skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her tiredness and look stronger than she is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time she’s home, she’s fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave’s chest rises and falls with her breathing. She squirms slightly in her sleep to the unwelcome feeling of your arm around her. + Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing. She squirms slightly in her sleep to the unwelcome feeling of your arm around her. <<elseif $activeSlave.devotion < -20>> - She spent the day before resting and crying to herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that she’ll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave’s responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave’s utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she’s extracted and taken off to be bathed. + She spent the day before resting and crying to herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed. <br><br> - She returns shortly, looking exhausted and depressed. She’s naked still, her skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that she’s had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her tiredness out of fear of punishment, and she leans against you for support despite her feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. + She returns shortly, looking exhausted and depressed. She's naked still, her skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her tiredness out of fear of punishment, and she leans against you for support despite her feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time she’s home, she’s fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave’s chest rises and falls with her breathing. + Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing. <<else>> - She spent the day before resting and reluctantly preparing herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as she takes cock after cock. The theory is that she’ll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave’s responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave’s lack of passion. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she’s extracted and taken off to be bathed. + She spent the day before resting and reluctantly preparing herself, and this was a necessary precaution. She spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as she takes cock after cock. The theory is that she'll be bound to you as your slave wife from this day onward, so she must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside her, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, she's extracted and taken off to be bathed. <br><br> - She returns shortly, looking exhausted. She’s naked still, her skin clean and $activeSlave.skin, and comes to stand by you for the ceremony. The only evident signs that she’s had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. + She returns shortly, looking exhausted. She's naked still, her skin clean and $activeSlave.skin, and comes to stand by you for the ceremony. The only evident signs that she's had sex with more than a hundred people today is her ass, which looks rather well traveled, and her tiredness. She does her best to conceal her it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for her, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around her neck, since she lacks fingers to wear it on<<else>>on her finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against you, so tired that she’s grateful for the break from standing. By the time she’s home, she’s fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave’s chest rises and falls with her breathing. + Once the ceremony is complete, you scoop up your new slave wife to carry her back into the master bedroom. She rests her head against you, so tired that she's grateful for the break from standing. By the time she's home, she's fast asleep. You set her gently down on the bed and curl up behind her, feeling the animal warmth of her body as the exhausted slave's chest rises and falls with her breathing. <</if>> <br> <<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>> diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index 29757231fbb8173e8afe81a489c86cd2d469473f..6818f3c838826bcababae4743112ee6708a30eb9 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -2032,7 +2032,7 @@ As the remote surgery's long recovery cycle completes, When $he <<if $activeSlave.amp == 1>>is carried<<else>>walks<</if>> out of the surgery $he immediately notices the chill on $his head and realizes that $he is bald.<br> <<if $activeSlave.devotion > 50>> <<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 50)>> - $He is @@.hotpink;turned on@@ by how humiliating this is for $his and @@.mediumaquamarine;can't wait@@ for the next time you decide to show $his off. + $He is @@.hotpink;turned on@@ by how humiliating this is for $him and @@.mediumaquamarine;can't wait@@ for the next time you decide to show $his off. <<set $activeSlave.trust += 5>> <<set $activeSlave.devotion += 5>> <<else>> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 4e2daaf02c5549cb79d1bd74ada7eba9d64e1f64..ece0a7ca5c0293de205475597f9ccf3aa84b6816 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -601,7 +601,7 @@ <<elseif ($activeSlave.anus < 2) && (_partnerSlave.dick > 1)>> $activeSlave.slaveName is writhing with the mixed pain and pleasure of having $his tight ass stretched by $his _activeSlaveRel's nice cock. <<elseif ($activeSlave.anus < 2)>> - $activeSlave.slaveName's tight anus and _partnerSlave.slaveName's little dick work well together; $activeSlave.slaveName can take it easily, and _partnerSlave.slaveName gets to fuck a hole that's tight, even for $his. + $activeSlave.slaveName's tight anus and _partnerSlave.slaveName's little dick work well together; $activeSlave.slaveName can take it easily, and _partnerSlave.slaveName gets to fuck a hole that's tight, even for $him. <</if>> <<elseif (_partnerSlave.dick > 1)>> a finger fuck, since $his _activeSlaveRel is impotent. @@ -634,10 +634,10 @@ with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's turgid cock. <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<elseif (_partnerSlave.dick > 1) && (_partnerSlave.anus > 0)>> - with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's limp cock. $He has a finger up poor impotent _partnerSlave.slaveName's butt to stimulate _his2 prostate so _he2 can cum for $his. + with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's limp cock. $He has a finger up poor impotent _partnerSlave.slaveName's butt to stimulate _his2 prostate so _he2 can cum for $him. <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<elseif (_partnerSlave.dick > 1)>> - with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's limp cock. $He has a finger massaging poor impotent _partnerSlave.slaveName's perineum in the hope of stimulating _him2 so _he2 can cum for $his. + with $activeSlave.slaveName hungrily sucking $his _activeSlaveRel's limp cock. $He has a finger massaging poor impotent _partnerSlave.slaveName's perineum in the hope of stimulating _him2 so _he2 can cum for $him. <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> <<else>> and $activeSlave.slaveName is sating $his oral fixation for the moment by eagerly polishing $his _activeSlaveRel's pearl. @@ -1178,7 +1178,7 @@ <<case "a chattel habit">> $His chattel habit leaves $his <<if $activeSlave.boobs < 300>>flat <</if>>tits virtuously bare. <<case "a penitent nuns habit">> - $His habit chafes $his nipples so harshly that it would probably be a relief to $his to have it stripped off $his. + $His habit chafes $his nipples so harshly that it would probably be a relief to $his to have it stripped off $him. <<case "a comfortable bodysuit">> $His bodysuit is tight enough to show off <<if $activeSlave.boobs < 300>>just how flat $he is<<else>>every contour of $his chest<</if>>. <<case "a latex catsuit">> @@ -1290,7 +1290,7 @@ <<case "a scalemail bikini">> As $he moves, $his scaly lingerie leaves almost the entire line of $his hips naked and enticing. <<case "clubslut netting">> - As $he moves, $his clubslut netting moves with $his, leaving nothing to the imagination. + As $he moves, $his clubslut netting moves with $him, leaving nothing to the imagination. <<case "a cheerleader outfit">> As $he moves, $his pleated cheerleader bounces up and down flirtily. <<case "cutoffs and a t-shirt">> @@ -1315,7 +1315,7 @@ <<case "a halter top dress">> $His beautiful halter top dress seems to be sculpted around $his bottom. <<case "a ball gown">> - $His fabulous silken ball gown is tailored to fit $his and accentuates the shape of $his butt. + $His fabulous silken ball gown is tailored to fit $him and accentuates the shape of $his butt. <<case "a slutty nurse outfit">> $His tight skirt flatters $his ass. <<case "a schoolgirl outfit">> @@ -2328,21 +2328,21 @@ <<if ($activeSlave.amp == 1) && ($activeSlave.vagina != -1)>> $He's wearing a 'beautiful halter top dress' designed specifically for an amputee. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> - $His beautiful halter top dress is almost sculpted around $his, but $his cock tents the fabric as $he moves. + $His beautiful halter top dress is almost sculpted around $him, but $his cock tents the fabric as $he moves. <<elseif ($activeSlave.dick != 0)>> - $His beautiful halter top dress is almost sculpted around $his; but $his cock tents the fabric as $he moves. + $His beautiful halter top dress is almost sculpted around $him; but $his cock tents the fabric as $he moves. <<else>> - $His beautiful halter top dress is almost sculpted around $his. + $His beautiful halter top dress is almost sculpted around $him. <</if>> <<case "a ball gown">> <<if ($activeSlave.amp == 1) && ($activeSlave.vagina != -1)>> $He's wearing a 'fabulous silken ball gown' designed specifically for an amputee. <<elseif ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> - $His fabulous silken ball gown is draped around $his, but $his cock tents the fabric as $he moves. + $His fabulous silken ball gown is draped around $him, but $his cock tents the fabric as $he moves. <<elseif ($activeSlave.dick != 0)>> - $His fabulous silken ball gown is draped around $his; but $his cock tents the fabric as $he moves. + $His fabulous silken ball gown is draped around $him; but $his cock tents the fabric as $he moves. <<else>> - $His fabulous silken ball gown is draped around $his. + $His fabulous silken ball gown is draped around $him. <</if>> <<case "slutty business attire">> <<if ($activeSlave.dick > 4)>> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 81572f32c514b5641e4a8aeae23c999d03bf438d..f24143a5d04bffb8583edecdaa212b8d6de0a072 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -130,7 +130,7 @@ <<case "restrictive latex">> $activeSlave.slaveName's <<if $activeSlave.boobs > 2000>> - breasts protrude through holes in $his latex suit, which are too small for them, painfully constricting $his and making them seem even bigger. + breasts protrude through holes in $his latex suit, which are too small for them, painfully constricting $him and making them seem even bigger. <<elseif $activeSlave.boobs > 800>> breasts protrude through holes in $his latex suit. <<elseif $activeSlave.boobs < 300>> @@ -4251,7 +4251,7 @@ $He's got a <</if>> <<else>> <<if ($activeSlave.assignment == "work in the dairy") && ($dairyPregSetting > 1)>> - The dildo's ejaculate includes a drug that encourages vaginal lubrication, which is having a drastic effect on $his, since $he's already very gifted in that regard. The dildo makes a wet noise every time it thrusts into $his, and femcum streams into a catchbasin beneath $him. The smell of pussy is overwhelming. + The dildo's ejaculate includes a drug that encourages vaginal lubrication, which is having a drastic effect on $him, since $he's already very gifted in that regard. The dildo makes a wet noise every time it thrusts into $him, and femcum streams into a catchbasin beneath $him. The smell of pussy is overwhelming. <<elseif ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac")>> The combination of the aphrodisiacs and $his natural tendency to produce a lot of female lubricant is having a drastic effect. $His cunt is absolutely beribboned with femcum, and $he smells strongly of wet, clean pussy. <<elseif ($activeSlave.energy > 95)>> @@ -7142,7 +7142,7 @@ $He has <<if $activeSlave.belly >= 1000000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName's unfathomable, hyper-swollen, implant-filled belly is wrapped with tight chains. Despite how tightly they’re pulled together, they fail to sink into the firm globe of her belly at all, shifting over it and agitating $his flesh with each of $his movements. + $activeSlave.slaveName's unfathomable, hyper-swollen, implant-filled belly is wrapped with tight chains. Despite how tightly they're pulled together, they fail to sink into the firm globe of her belly at all, shifting over it and agitating $his flesh with each of $his movements. <<else>> $activeSlave.slaveName's unfathomable, hyper-swollen pregnant belly is wrapped with tight chains. It bulges so extremely that the outlines of entire infants can be seen pressed up to either side of the chains, sometimes overlapping them so that flesh rubs up against flesh; every motion inside $him is excruciating. <</if>> @@ -12241,9 +12241,9 @@ $He has <<if $activeSlave.belly >= 1000000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName's harem girl outfit, designed with enough sheer fabric to fill a shah’s palace, has been specially tailored to drape over $his unfathomable, hyper-swollen, implant-filled belly and accentuate its size and shape. + $activeSlave.slaveName's harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over $his unfathomable, hyper-swollen, implant-filled belly and accentuate its size and shape. <<else>> - $activeSlave.slaveName's harem girl outfit, designed with enough sheer fabric to fill a shah’s palace, has been specially tailored to drape over $his unfathomable, hyper-swollen pregnancy and accentuate its size and the oceanic movement as $his belly is rocked by the actions of $his brood of innumerable children. + $activeSlave.slaveName's harem girl outfit, designed with enough sheer fabric to fill a shah's palace, has been specially tailored to drape over $his unfathomable, hyper-swollen pregnancy and accentuate its size and the oceanic movement as $his belly is rocked by the actions of $his brood of innumerable children. <</if>> <<elseif $activeSlave.belly >= 750000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> @@ -12380,16 +12380,16 @@ $He has <<if $activeSlave.belly >= 1000000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName's unfathomable, hyper-swollen, implant-filled belly is so enormous that the largest obi in the world could never wrap around it. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly’s incredible mass, causing her to resemble a geisha in repose due to her immobility. + $activeSlave.slaveName's unfathomable, hyper-swollen, implant-filled belly is so enormous that the largest obi in the world could never wrap around it. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly's incredible mass, causing her to resemble a geisha in repose due to her immobility. <<else>> - $activeSlave.slaveName's unfathomable, hyper-swollen pregnancy is so enormous that the largest obi in the world could never wrap around it. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly’s incredible, brood swollen mass, causing her to resemble nothing more than a geisha in repose, rocking on an ocean of undulating flesh. + $activeSlave.slaveName's unfathomable, hyper-swollen pregnancy is so enormous that the largest obi in the world could never wrap around it. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly's incredible, brood swollen mass, causing her to resemble nothing more than a geisha in repose, rocking on an ocean of undulating flesh. <</if>> <<elseif $activeSlave.belly >= 750000>> <<if $activeSlave.bellyFluid >= $activeSlave.bellyPreg && $activeSlave.bellyFluid >= $activeSlave.bellyImplant>> <<elseif $activeSlave.bellyImplant > 0>> - $activeSlave.slaveName's monolithic, implant-filled belly is so enormous that there is no way for $his obi to ever wrap around it to tie $his kimono. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly’s incredible mass. + $activeSlave.slaveName's monolithic, implant-filled belly is so enormous that there is no way for $his obi to ever wrap around it to tie $his kimono. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly's incredible mass. <<else>> - $activeSlave.slaveName's monolithic pregnant belly is so enormous that there is no way for $his obi to ever wrap around it to tie $his kimono. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly’s incredible mass. + $activeSlave.slaveName's monolithic pregnant belly is so enormous that there is no way for $his obi to ever wrap around it to tie $his kimono. As a result, $he leaves $his kimono open. It pools around $her when she rests atop her belly's incredible mass. <</if>> <<elseif $activeSlave.bellyPreg >= 600000>> $activeSlave.slaveName's titanic bulging pregnant belly parts the front of $his kimono leaving it gracefully hanging to its sides. @@ -13050,7 +13050,7 @@ $He has <</if>> <<if ($activeSlave.assignment != "labor in the production line") && ($activeSlave.assignment != "be confined in the arcade") && (($activeSlave.assignment != "work in the dairy") || ($dairyRestraintsSetting < 2)) && $activeSlave.belly >= 300000>> <<if $pregAccessibility == 1>> - Fortunately for $his, the penthouse is adapted for daily life with a <<if $activeSlave.bellyPreg >= 3000>>pregnant<</if>> belly + Fortunately for $him, the penthouse is adapted for daily life with a <<if $activeSlave.bellyPreg >= 3000>>pregnant<</if>> belly <<else>> $He has trouble living in your penthouse, which is not designed for girls with <<if $activeSlave.bellyPreg >= 3000>>pregnancies<<else>>bellies<</if>> <</if>> @@ -15969,7 +15969,7 @@ $He has <</if>> <<if $activeSlave.bellyImplant >= 16000>> <<if $pregAccessibility == 1>> - Fortunately for $his, the penthouse is adapted for daily life with a belly + Fortunately for $him, the penthouse is adapted for daily life with a belly <<else>> $He has trouble living in your penthouse, which is not designed for girls with bellies <</if>> @@ -15996,7 +15996,7 @@ $He has <</if>> <<if $activeSlave.bellyImplant >= 16000>> <<if $pregAccessibility == 1>> - Fortunately for $his, the penthouse is adapted for daily life with a belly + Fortunately for $him, the penthouse is adapted for daily life with a belly <<else>> $He has trouble living in your penthouse, which is not designed for girls with bellies <</if>> @@ -16023,7 +16023,7 @@ $He has <</if>> <<if $activeSlave.bellyImplant >= 16000>> <<if $pregAccessibility == 1>> - Fortunately for $his, the penthouse is adapted for daily life with a belly + Fortunately for $him, the penthouse is adapted for daily life with a belly <<else>> $He has trouble living in your penthouse, which is not designed for girls with bellies <</if>> diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw index 9dbb2745f10c9c2f48985123e6e6d790679c60f9..da1b574e1324d8e8cb7e5a363536338661822ed9 100644 --- a/src/utility/descriptionWidgetsStyle.tw +++ b/src/utility/descriptionWidgetsStyle.tw @@ -1644,7 +1644,7 @@ $His is in long dreadlocks, some with jade ornaments etched with images of <<ImageDesc>> <<case "a huipil">> - is in long dreadlocks, with a couple of small ornaments important to $his. + is in long dreadlocks, with a couple of small ornaments important to $him. <<case "a kimono">> is in long dreadlocks, some in ivory rings carved with images of <<ImageDesc>> @@ -1696,7 +1696,7 @@ $His is in dreadlocks, some with jade rings etched with images of <<ImageDesc>> <<case "a huipil">> - is in dreadlocks, with a couple of small ornaments important to $his. + is in dreadlocks, with a couple of small ornaments important to $him. <<case "a kimono">> is in dreadlocks, some in ivory rings carved with images of <<ImageDesc>> @@ -1752,7 +1752,7 @@ $His is in short dreadlocks, some in jade rings etched with images of <<ImageDesc>> <<case "a huipil">> - is in short dreadlocks, with a couple of small ornaments important to $his. + is in short dreadlocks, with a couple of small ornaments important to $him. <<case "a kimono">> is in short dreadlocks, some with ivory rings carved with images of <<ImageDesc>> @@ -2518,7 +2518,7 @@ $His <<case "dildo gag">> $He is wearing a sturdy leather collar that continues up to restrict $his jaw as well. It holds a ring gag in $his mouth, into which slots a formidable inward-facing dildo that reaches down $his throat. It can be removed to facefuck $him. <<case "massive dildo gag">> - $He is wearing a sturdy leather collar that continues up to restrict $his jaw as well. It acts as an anchor for an enormous inward-facing dildo that reaches deep down $his throat. The sheer size of the phallus forces $his mouth as wide as it will go and considerably bulges $his throat. Fortunately for $him, it is designed to allow $him to be able to breath through $his nose; though when removed, the poor girl finds <<print $him>>self incapable of closing $his mouth for some time. + $He is wearing a sturdy leather collar that continues up to restrict $his jaw as well. It acts as an anchor for an enormous inward-facing dildo that reaches deep down $his throat. The sheer size of the phallus forces $his mouth as wide as it will go and considerably bulges $his throat. Fortunately for $him, it is designed to allow $him to be able to breath through $his nose; though when removed, the poor girl finds $himself incapable of closing $his mouth for some time. <<case "preg biometrics">> <<if $activeSlave.pregSource > 0>> <<set _daddy = $slaves.find(function(s) { return s.ID == $activeSlave.pregSource; }), _daddy = _daddy.slaveName>> @@ -2605,15 +2605,15 @@ $His <<if $activeSlave.indenture > -1>> $activeSlave.indenture, the number of weeks left in $his indenture. <<elseif $SexMilestoneRetirement == 1>> - <<print $retirementSex - ($activeSlave.oralCount + $activeSlave.analCount + $activeSlave.vaginalCount + $activeSlave.penetrativeCount + $activeSlave.mammaryCount)>>, for the number of cocks between $his and $his freedom. + <<print $retirementSex - ($activeSlave.oralCount + $activeSlave.analCount + $activeSlave.vaginalCount + $activeSlave.penetrativeCount + $activeSlave.mammaryCount)>>, for the number of cocks between $him and $his freedom. <<elseif $MilkMilestoneRetirement == 1>> <<print $retirementMilk - $activeSlave.milk>>, for the amount of milk $he has yet to give. <<elseif $BirthsMilestoneRetirement == 1>> - <<print $retirementBirths - $activeSlave.births>>, for the number of pregnancies still between $his and freedom. + <<print $retirementBirths - $activeSlave.births>>, for the number of pregnancies still between $him and freedom. <<elseif $KillsMilestoneRetirement == 1>> - <<print $retirementKills - $activeSlave.pitKills>>, for the number of lives still between $his and freedom. + <<print $retirementKills - $activeSlave.pitKills>>, for the number of lives still between $him and freedom. <<elseif $PhysicalRetirementAgePolicy != 1>> - <<print (365*($retirementAge-$activeSlave.actualAge))+(7*(52-$activeSlave.birthWeek))>>, the number of days of sexual slavery ahead of $his. + <<print (365*($retirementAge-$activeSlave.actualAge))+(7*(52-$activeSlave.birthWeek))>>, the number of days of sexual slavery ahead of $him. <<else>> <<print (365*($retirementAge-$activeSlave.physicalAge))+(7*(52-$activeSlave.birthWeek))>>, the number of days of sexual slavery ahead of $him. <</if>> diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw index 1dbf8bcdcc20c0058cf5129eda27c508216e35de..18ffdc88b53ea1d4863a4e4f32738c02020b8f77 100644 --- a/src/utility/extendedFamilyWidgets.tw +++ b/src/utility/extendedFamilyWidgets.tw @@ -4,34 +4,34 @@ /*testtest PC parent passage - determines if the current slave is your mother or father*/ <<if $activeSlave.ID == $PC.mother && $activeSlave.ID == $PC.father>> - She @@.lightgreen;is both your mother and father, $pronoun impregnated <<print $object>>self with you.@@ + She @@.lightgreen;is both your mother and father, $he impregnated $himself with you.@@ <<elseif $activeSlave.ID == $PC.mother>> - $pronounCap @@.lightgreen;is your mother.@@ + $He @@.lightgreen;is your mother.@@ <<elseif $activeSlave.ID == $PC.father>> - $pronounCap @@.lightgreen;is your father.@@ + $He @@.lightgreen;is your father.@@ <</if>> <<if $activeSlave.father == -1 && $activeSlave.mother == -1>> - $pronounCap's @@.lightgreen;your child;@@ you knocked yourself up and gave birth to $object. + $He's @@.lightgreen;your child;@@ you knocked yourself up and gave birth to $him. <</if>> <<if $activeSlave.father == -1 && $activeSlave.mother != -1>> - $pronounCap's @@.lightgreen;your child;@@ you knocked $possessive mother up. + $He's @@.lightgreen;your child;@@ you knocked $his mother up. <<elseif $activeSlave.father > 0>> <<set _efw = $slaveIndices[$activeSlave.father]>> - $pronounCap was @@.lightgreen;fathered by $slaves[_efw].slaveName's@@ virile dick. + $He was @@.lightgreen;fathered by $slaves[_efw].slaveName's@@ virile dick. <</if>> <<if $activeSlave.father != -1 && $activeSlave.mother == -1>> - $pronounCap's @@.lightgreen;your child;@@ you gave birth to $object. + $He's @@.lightgreen;your child;@@ you gave birth to $him. <<elseif $activeSlave.mother > 0>> <<set _efw = $slaveIndices[$activeSlave.mother]>> - $pronounCap was @@.lightgreen;born from $slaves[_efw].slaveName's@@ fertile womb. + $He was @@.lightgreen;born from $slaves[_efw].slaveName's@@ fertile womb. <</if>> <<set _children = $slaves.filter(function(s) { return $activeSlave.ID == s.father; })>> <<if _children.length > 2>> - $pronounCap @@.lightgreen;fathered + $He @@.lightgreen;fathered <<for _efw = 0; _efw < _children.length; _efw++>> <<if _efw < _children.length-1>> _children[_efw].slaveName, @@ -40,14 +40,14 @@ <</if>> <</for>> <<elseif _children.length > 1>> - $pronounCap @@.lightgreen;fathered a pair of your slaves: _children[0].slaveName, and _children[1].slaveName.@@ + $He @@.lightgreen;fathered a pair of your slaves: _children[0].slaveName, and _children[1].slaveName.@@ <<elseif _children.length > 0>> - $pronounCap @@.lightgreen;fathered a single slave of yours: _children[0].slaveName.@@ + $He @@.lightgreen;fathered a single slave of yours: _children[0].slaveName.@@ <</if>> <<set _children = $slaves.filter(function(s) { return $activeSlave.ID == s.mother; })>> <<if _children.length > 2>> - $pronounCap @@.lightgreen;gave birth to + $He @@.lightgreen;gave birth to <<for _efw = 0; _efw < _children.length; _efw++>> <<if _efw < _children.length-1>> _children[_efw].slaveName, @@ -56,9 +56,9 @@ <</if>> <</for>> <<elseif _children.length > 1>> - $pronounCap @@.lightgreen;gave birth to a pair of your slaves: _children[0].slaveName, and _children[1].slaveName.@@ + $He @@.lightgreen;gave birth to a pair of your slaves: _children[0].slaveName, and _children[1].slaveName.@@ <<elseif _children.length > 0>> - $pronounCap @@.lightgreen;gave birth to a single one of your slaves: _children[0].slaveName.@@ + $He @@.lightgreen;gave birth to a single one of your slaves: _children[0].slaveName.@@ <</if>> @@ -67,12 +67,12 @@ <<if def $i && $slaves[$i].ID != $activeSlave.ID>> <<set $j = $slaveIndices[$slaves[$i].mother]>> <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $possessiveCap maternal @@.lightgreen;grandmother is $slaves[$j].slaveName.@@ + $His maternal @@.lightgreen;grandmother is $slaves[$j].slaveName.@@ <</if>> <<elseif $PC.ID == $activeSlave.mother>> <<set $i = $slaveIndices[$PC.mother]>> <<if def $i>> - $possessiveCap maternal @@.lightgreen;grandmother is $slaves[$i].slaveName.@@ + $His maternal @@.lightgreen;grandmother is $slaves[$i].slaveName.@@ <</if>> <</if>> @@ -81,12 +81,12 @@ <<if def $i && $slaves[$i].ID != $activeSlave.ID>> <<set $j = $slaveIndices[$slaves[$i].father]>> <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $possessiveCap maternal @@.lightgreen;grandfather is $slaves[$j].slaveName.@@ + $His maternal @@.lightgreen;grandfather is $slaves[$j].slaveName.@@ <</if>> <<elseif $PC.ID == $activeSlave.mother>> <<set $i = $slaveIndices[$PC.father]>> <<if def $i>> - $possessiveCap maternal @@.lightgreen;grandfather is $slaves[$i].slaveName.@@ + $His maternal @@.lightgreen;grandfather is $slaves[$i].slaveName.@@ <</if>> <</if>> @@ -95,12 +95,12 @@ <<if def $i && $slaves[$i].ID != $activeSlave.ID>> <<set $j = $slaveIndices[$slaves[$i].mother]>> <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $possessiveCap paternal @@.lightgreen;grandmother is $slaves[$j].slaveName.@@ + $His paternal @@.lightgreen;grandmother is $slaves[$j].slaveName.@@ <</if>> <<elseif $PC.ID == $activeSlave.father>> <<set $i = $slaveIndices[$PC.mother]>> <<if def $i>> - $possessiveCap paternal @@.lightgreen;grandmother is $slaves[$i].slaveName.@@ + $His paternal @@.lightgreen;grandmother is $slaves[$i].slaveName.@@ <</if>> <</if>> @@ -109,12 +109,12 @@ <<if def $i && $slaves[$i].ID != $activeSlave.ID>> <<set $j = $slaveIndices[$slaves[$i].father]>> <<if def $j && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].ID != $slaves[$i].ID>> - $possessiveCap paternal @@.lightgreen;grandfather is $slaves[$j].slaveName.@@ + $His paternal @@.lightgreen;grandfather is $slaves[$j].slaveName.@@ <</if>> <<elseif $PC.ID == $activeSlave.father>> <<set $i = $slaveIndices[$PC.father]>> <<if def $i>> - $possessiveCap paternal @@.lightgreen;grandfather is $slaves[$i].slaveName.@@ + $His paternal @@.lightgreen;grandfather is $slaves[$i].slaveName.@@ <</if>> <</if>> @@ -124,22 +124,22 @@ <<if def _pcMother>> <<if def _pcFather && _pcMother == _pcFather>> <<if $activeSlave.ID == $slaves[_pcMother].mother && $activeSlave.ID == $slaves[_pcFather].father>> - $pronounCap is @@.lightgreen;your sole grandparent.@@ $pronounCap impregnated <<print $object>>self with your mother/father who in turn impregnated themselves with you. + $He is @@.lightgreen;your sole grandparent.@@ $He impregnated $himself with your mother/father who in turn impregnated themselves with you. <<elseif $activeSlave.ID == $slaves[_pcMother].mother>> - $pronounCap is @@.lightgreen;your sole grandmother.@@ $pronounCap gave birth to $slaves[_pcMother].slaveName who in turn impregnated themselves with you. + $He is @@.lightgreen;your sole grandmother.@@ $He gave birth to $slaves[_pcMother].slaveName who in turn impregnated themselves with you. <<elseif $activeSlave.ID == $slaves[_pcFather].father>> - $pronounCap is @@.lightgreen;your sole grandfather.@@ $pronounCap fathered $slaves[_pcFather].slaveName who in turn impregnated themselves with you. + $He is @@.lightgreen;your sole grandfather.@@ $He fathered $slaves[_pcFather].slaveName who in turn impregnated themselves with you. <</if>> <<elseif $activeSlave.ID == $slaves[_pcMother].mother>> - $pronounCap is @@.lightgreen;your maternal grandmother.@@ + $He is @@.lightgreen;your maternal grandmother.@@ <<elseif $activeSlave.ID == $slaves[_pcMother].father>> - $pronounCap is @@.lightgreen;your maternal grandfather.@@ + $He is @@.lightgreen;your maternal grandfather.@@ <</if>> <<elseif def _pcFather>> <<if $activeSlave.ID == $slaves[_pcFather].mother>> - $pronounCap is @@.lightgreen;your paternal grandmother.@@ + $He is @@.lightgreen;your paternal grandmother.@@ <<elseif $activeSlave.ID == $slaves[_pcFather].father>> - $pronounCap is @@.lightgreen;your paternal grandfather.@@ + $He is @@.lightgreen;your paternal grandfather.@@ <</if>> <</if>> @@ -158,7 +158,7 @@ <</if>> <</for>> <<if $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> has @@.lightgreen;many grandchildren, <<for $j = 0; $j < $children.length; $j++>> @@ -195,7 +195,7 @@ <</if>> <</for>> <<if $activeSlave.genes == "XX" && $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> is @@.lightgreen;your aunt along with <<for $j = 0; $j < $children.length; $j++>> @@ -212,7 +212,7 @@ <<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XX">> <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> <<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>> - $pronounCap is @@.lightgreen;your aunt.@@ + $He is @@.lightgreen;your aunt.@@ <</if>> <</if>> <</if>> @@ -238,7 +238,7 @@ <</if>> <</for>> <<if $activeSlave.genes == "XY" && $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> is @@.lightgreen;your uncle along with <<for $j = 0; $j < $children.length; $j++>> @@ -255,7 +255,7 @@ <<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">> <<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>> <<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>> - $pronounCap is @@.lightgreen;your uncle.@@ + $He is @@.lightgreen;your uncle.@@ <</if>> <</if>> <</if>> @@ -279,7 +279,7 @@ <</if>> <</for>> <<if $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> has @@.lightgreen;many aunts, <<for $j = 0; $j < $children.length; $j++>> @@ -312,7 +312,7 @@ <</if>> <</for>> <<if $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> has @@.lightgreen;many uncles, <<for $j = 0; $j < $children.length; $j++>> @@ -347,7 +347,7 @@ <</if>> <</for>> <<if $activeSlave.genes == "XX" && $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> is @@.lightgreen;your niece along with <<for $j = 0; $j < $children.length; $j++>> @@ -388,7 +388,7 @@ <</if>> <</for>> <<if $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> has @@.lightgreen;many nieces, <<for $j = 0; $j < $children.length; $j++>> @@ -423,7 +423,7 @@ <</if>> <</for>> <<if $activeSlave.genes == "XY" && $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> is @@.lightgreen;your nephew along with <<for $j = 0; $j < $children.length; $j++>> @@ -464,7 +464,7 @@ <</if>> <</for>> <<if $children.length > 0>> - $pronounCap + $He <<if $children.length > 2>> has @@.lightgreen;many nephews, <<for $j = 0; $j < $children.length; $j++>> @@ -506,7 +506,7 @@ <</if>> <</if>> <</for>> - $pronounCap + $He <<if $children.length > 1>> @@.lightgreen;is _rel_desc _rel_type along with <<for $j = 0; $j < $children.length; $j++>> @@ -541,7 +541,7 @@ /*testtest PC twin passages - determines how many twins you have but not implemented yet*/ <<if areSisters($activeSlave, $PC) == 1>> - $pronounCap + $He <<if _twins.length > 1>> @@.lightgreen;shared a cramped womb with you, <<print _twins.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>>.@@ <<elseif _twins.length > 0>> @@ -553,7 +553,7 @@ /*testtest PC sister passages - determines how many sisters you have*/ <<if areSisters($activeSlave, $PC) < 3 && areSisters($activeSlave, $PC) > 0 && $activeSlave.genes == "XX">> - $pronounCap + $He <<if _sisters.length > 1>> @@.lightgreen;is your sister along with <<print _sisters.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>>.@@ <<elseif _sisters.length > 0>> @@ -565,7 +565,7 @@ /*testtest PC brother passages - determines how many brothers you have*/ <<if areSisters($activeSlave, $PC) < 3 && areSisters($activeSlave, $PC) > 0 && $activeSlave.genes == "XY">> - $pronounCap + $He <<if _brothers.length > 1>> @@.lightgreen;is your brother along with <<print _brothers.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>>.@@ <<elseif _brothers.length > 0>> @@ -577,7 +577,7 @@ /*testtest PC half-sister passages - determines how many half-sisters you have*/ <<if areSisters($activeSlave, $PC) == 3 && $activeSlave.genes == "XX">> - $pronounCap + $He <<if _halfsisters.length > 1>> @@.lightgreen;is your half-sister along with <<print _halfsisters.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>>.@@ <<elseif _halfsisters.length > 0>> @@ -589,7 +589,7 @@ /*testtest PC half-brother passages - determines how many half-brothers you have*/ <<if areSisters($activeSlave, $PC) == 3 && $activeSlave.genes == "XY">> - $pronounCap + $He <<if _halfbrothers.length > 1>> @@.lightgreen;is your half-brother along with <<print _halfbrothers.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>>.@@ <<elseif _halfbrothers.length > 0>> @@ -601,7 +601,7 @@ /*testtest twins? - determines how many twins a slave has*/ <<if _twins.length > 0>> - $pronounCap + $He <<if _twins.length > 2>> @@.lightgreen;shared a cramped womb with <<print _twins.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>>.@@ <<elseif _twins.length > 1>> @@ -614,18 +614,18 @@ /*testtest sister - determines how many sisters a slave has*/ <<if _sisters.length > 0>> <<if _sisters.length > 1>> - @@.lightgreen;<<print _sisters.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>> are $possessive sisters.@@ + @@.lightgreen;<<print _sisters.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>> are $his sisters.@@ <<else>> - @@.lightgreen; _sisters[0].slaveName is $possessive sister.@@ + @@.lightgreen; _sisters[0].slaveName is $his sister.@@ <</if>> <</if>> /*testtest brother - determines how many brothers a slave has*/ <<if _brothers.length > 0>> <<if _brothers.length > 1>> - @@.lightgreen;<<print _brothers.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>> are $possessive brothers.@@ + @@.lightgreen;<<print _brothers.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>> are $his brothers.@@ <<else>> - @@.lightgreen;_brothers[0].slaveName is $possessive brother.@@ + @@.lightgreen;_brothers[0].slaveName is $his brother.@@ <</if>> <</if>> @@ -640,11 +640,11 @@ and _children[_efw].slaveName <</if>> <</for>> - are half-sisters to $object.@@ + are half-sisters to $him.@@ <<elseif _children.length > 1>> - @@.lightgreen;_children[0].slaveName and _children[1].slaveName are half-sisters to $object.@@ + @@.lightgreen;_children[0].slaveName and _children[1].slaveName are half-sisters to $him.@@ <<elseif _children.length > 0>> - @@.lightgreen;_children[0].slaveName is a half-sister to $object.@@ + @@.lightgreen;_children[0].slaveName is a half-sister to $him.@@ <</if>> /*testtest half-brother - determines how many half-brothers a slave has*/ @@ -658,11 +658,11 @@ and _children[_efw].slaveName <</if>> <</for>> - are half-brothers to $object.@@ + are half-brothers to $him.@@ <<elseif _children.length > 1>> - @@.lightgreen;_children[0].slaveName and _children[1].slaveName are half-brothers to $object.@@ + @@.lightgreen;_children[0].slaveName and _children[1].slaveName are half-brothers to $him.@@ <<elseif _children.length > 0>> - @@.lightgreen;_children[0].slaveName is a half-brother to $object.@@ + @@.lightgreen;_children[0].slaveName is a half-brother to $him.@@ <</if>> <<if $cheatMode == 1>> @@ -685,7 +685,7 @@ <br>Your parents are @@.lightgreen;$children[0].slaveName and $children[1].slaveName@@. <<elseif $children.length > 0>> <<if $PC.father == $PC.mother>> - <br>Your parent is @@.lightgreen;$children[0].slaveName@@, who impregnated <<print $object>>self with you. + <br>Your parent is @@.lightgreen;$children[0].slaveName@@, who impregnated $himself with you. <<else>> <br>You know one of your parents, @@.lightgreen;$children[0].slaveName@@. <</if>> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index 8d456d77f0115f7f34dd70ac32fa35885f9c2f76..40eee460cbc273c9345f82a1bd295e0cbd5bca14 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -1340,8 +1340,10 @@ <<elseif $customSlave.age < 15>>13-14 years old. <<elseif $customSlave.age < 18>>15-17 years old. <<elseif $customSlave.age < 20>>18-19 years old. - <<elseif $customSlave.age < 25>>20-24 years old. - <<elseif $customSlave.age < 30>>25-29 years old. + <<elseif $customSlave.age < 25 && $retirementAge >= 25>>20-24 years old. + <<elseif $customSlave.age < 25 && $retirementAge >= 20>>20+ years old. + <<elseif $customSlave.age < 30 && $retirementAge >= 30>>25-29 years old. + <<elseif $customSlave.age < 30 && $retirementAge >= 25>>25+ years old. <<elseif $customSlave.age < 40 && $retirementAge >= 40>>30-39 years old. <<elseif $customSlave.age < 40 && $retirementAge >= 30>>30+ years old. <<elseif $customSlave.age < 50 && $retirementAge >= 50>>40-49 years old. @@ -1350,7 +1352,19 @@ <<elseif $customSlave.age < 60 && $retirementAge >= 50>>50+ years old. <<elseif $customSlave.age < 70 && $retirementAge >= 70>>60-69 years old. <<elseif $customSlave.age < 70 && $retirementAge >= 60>>60+ years old. - <<else>>70+ years old. + <<elseif $customSlave.age < 80 && $retirementAge >= 80>>70-79 years old. + <<elseif $customSlave.age < 80 && $retirementAge >= 70>>70+ years old. + <<elseif $customSlave.age < 90 && $retirementAge >= 90>>80-89 years old. + <<elseif $customSlave.age < 90 && $retirementAge >= 80>>80+ years old. + <<elseif $customSlave.age < 100 && $retirementAge >= 100>>90-99 years old. + <<elseif $customSlave.age < 100 && $retirementAge >= 90>>90+ years old. + <<elseif $customSlave.age < 110 && $retirementAge >= 110>>100-109 years old. + <<elseif $customSlave.age < 110 && $retirementAge >= 100>>100+ years old. + <<elseif $customSlave.age < 120 && $retirementAge >= 120>>110-119 years old. + <<elseif $customSlave.age < 120 && $retirementAge >= 110>>110+ years old. + <<elseif $customSlave.age < 130 && $retirementAge >= 130>>120-129 years old. + <<elseif $customSlave.age < 130 && $retirementAge >= 120>>120+ years old. + <<else>>130+ years old. <</if>> <</replace>> <</widget>>