diff --git a/compile b/compile index abd76511e88f159a477bc09438bb30afd863d325..d0a52d7749a4908d69586805bf4be5a141f73a97 100755 --- a/compile +++ b/compile @@ -1,6 +1,7 @@ #!/bin/bash # Will add all *.tw files to StoryIncludes. +./sanityCheck rm -f src/config/start.tw cp src/config/start.tw.proto start.tw.tmp find src -name '*.tw' -print >>start.tw.tmp diff --git a/compile-git b/compile-git index 930b9547344d2762cc4dc91d0d9e62f8a8e88314..deb180dbb06854e3bfb862c7585c40a635732d58 100755 --- a/compile-git +++ b/compile-git @@ -1,6 +1,7 @@ #!/bin/bash # Will add all *.tw files to StoryIncludes. +./sanityCheck rm -f src/config/start.tw cp src/config/start.tw.proto start.tw.tmp find src -name '*.tw' -print >>start.tw.tmp diff --git a/devTools/check.py b/devTools/check.py new file mode 100644 index 0000000000000000000000000000000000000000..dc3491656da4b0ed3e8d54bddab45a582bc58329 --- /dev/null +++ b/devTools/check.py @@ -0,0 +1,44 @@ +#!/usr/bin/env python3 +import fileinput +import re +import sys + +def myprint(*args): + print(fileinput.filename() + ":",*args) + +pattern = re.compile(r'(<<(\/?) *(if|for|else|switch|case)[^<>]*)') + +linenumber = 0 +tagfound = [] +for line in fileinput.input(): + linenumber += 1 + for (whole,end,tag) in re.findall(pattern,line): + if tag == "else" or tag == 'case': + if len(tagfound) == 0: + myprint("Found", tag, "but with no opening tag:") + myprint(" ", linenumber,":", whole) + exit(1) + lasttag = tagfound[-1] + if (tag == "else" and lasttag["tag"] != "if") or (tag == "case" and lasttag["tag"] != "switch"): + myprint("Mismatched else: Opening tag was:") + myprint(" ",lasttag["linenumber"],":", lasttag["whole"]) + myprint("But this tag was:") + myprint(" ",linenumber,":", whole) + exit(1) + elif end != '/': + tagfound.append({"whole": whole, "linenumber":linenumber,"tag":tag}) + else: + if len(tagfound) == 0: + myprint("Found closing tag but with no opening tag:") + myprint(" ", linenumber,":", whole) + exit(1) + + lasttag = tagfound.pop() + if lasttag["tag"] != tag: + myprint("Mismatched tag: Opening tag was:") + myprint(" ",lasttag["linenumber"],":", lasttag["whole"]) + myprint("Closing tag was:") + myprint(" ",linenumber,":", whole) + exit(1) + + diff --git a/sanityCheck b/sanityCheck new file mode 100644 index 0000000000000000000000000000000000000000..2ef7f129f4ed163991c6913075786c487f929597 --- /dev/null +++ b/sanityCheck @@ -0,0 +1,41 @@ +#!/bin/bash +# Check for missing right angle bracket: <</if> +git grep "<</[^>]*>[^>]" -- 'src/*' +git grep "<<[^>]*>[^<>"$'\r]*\r'"\?$" -- 'src/*' +# Check for missing left angle bracket: </if>> +git grep "[^<]</[^<>]*>>" -- 'src/*' +# Check for accidental assignment. e.g.: <<if $foo = "hello">> +git grep "<<[ ]*if[^>=]*[^><\!=]=[^=][^>]*>>" -- 'src/*' +# Check for missing ". e.g.: <<if $foo = "hello>> +git grep "<<[^\"<>]*\"[^\"<>]*>>" -- 'src/*' +# Check for missing ". e.g.: <<if $foo = "hello) +git grep "<<[^\"<>]*\(\"[^><\"]*\"\)*[^<>\"]*\"[^<>()\"]*)" -- 'src/*' +git grep "<<[^\"<>]*\([^\"<>]*\"[^><\"]*\"\| [<>] \)*\"\([^\"<>]*\"[^><\"]*\"\| [<>] \)*\([^\"<>]\| [<>] \)*>>" -- 'src/*' +# Check for colors like: @@color:red - should be @@.red +git grep -e "@@color:" --and --not -e "@@color:rgb([0-9 ]\+,[0-9 ]\+,[0-9 ]\+)" -- "src/*" +# Check for missing $ in activeSlave or PC +git grep "<<[ ]*[^\$><_\[]*\(activeSlave\|PC\)[.]" -- "src/*" +# Check for closing bracket without opening bracket. e.g.: <<if foo)>> (but <<case "foo")>> is valid, so ignore those +git grep -e "<<[ a-zA-Z]\+[^()<>]*)" --and --not -e "<< *case" -- "src/*" +# Check for opening bracket without closing bracket. e.g.: <<if (foo>> +git grep -e "<<[ a-zA-Z]\+([^()<>]*>>" -- "src/*" +# Check for two closing brackets but one opening bracket. e.g.: <<if (foo))>> +git grep -e "<<[ a-zA-Z]\+[^()<>]*([^()]*)[^()]*)[^()<>]*>>" -- "src/*" +# Check for one closing bracket but two opening brackets. e.g.: <<if ((foo)>> +git grep -e "<<[ a-zA-Z]\+[^()<>]*([^()]*([^()]*)[^()<>]*>>" -- "src/*" +# Check for missing >>. e.g.: <<if $foo +git grep "<<[^<>]*[^,\"\[{"$'\r]\r'"\?$" -- 'src/*' +# Check for too many >>>. e.g.: <</if>>> +git grep "<<[^<>]*[<>]\?[^<>]*>>>" -- "src/*.tw" +# Check for wrong capitilization on 'activeslave' and other common typos +git grep -e "\$act" --and --not -e "\$\(activeSlave\|activeArcology\|activeStandard\|activeOrgan\|activeLimbs\)" -- "src/*" +git grep "\(csae\|[a-z] She \|attepmts\|youreslf\|advnaces\)" -- 'src/*' +git grep "\$slave\[" -- 'src/*' +# Check for strange spaces e.g. $slaves[$i]. lips +git grep "\$slaves\[\$i\]\. " -- 'src/*' +# Check using refreshmentType instead of refreshment +git grep "\$PC.refreshmentType[^ =]" -- 'src/*' + +# Check that all the tags are properly opened and closed +git ls-files "src/*.tw" | xargs -d '\n' ./devTools/check.py + diff --git a/src/cheats/mod_EditSlaveCheat.tw b/src/cheats/mod_EditSlaveCheat.tw index 34d989b80e81c471ee83a9f690036abbc528ccc3..5cc1321cd719aad6e09f0c2c69a9cb390df00d2d 100644 --- a/src/cheats/mod_EditSlaveCheat.tw +++ b/src/cheats/mod_EditSlaveCheat.tw @@ -30,10 +30,10 @@ <<else>> ''Slave Blood Relations (twin, sister, mother, daughter):'' <<textbox "$activeSlave.relation" $activeSlave.relation>> -<br> + ''Blood Relations Target ID:'' + <<textbox "$activeSlave.relationTarget" $activeSlave.relationTarget>> +<</if>> -''Blood Relations Target ID:'' -<<textbox "$activeSlave.relationTarget" $activeSlave.relationTarget>> <br> ''Relationship (-3:married to you, -2:relationship, -1:emotional slut, 0:none, 1:like, 2:friend, 3:sex friend, 4:lover, 5:married): $activeSlave.relationship |'' <br> @@ -50,8 +50,7 @@ ''Relationship Target ID:'' <<textbox "$activeSlave.relationshipTarget" $activeSlave.relationshipTarget>> <br><br> -<</if>> -<br> + ''Career ($activeSlave.career)'' <<textbox "$activeSlave.career" $activeSlave.career>> //Slave variables documentation is your friend. Will tell you exactly what to put here// diff --git a/src/events/gameover.tw b/src/events/gameover.tw index a606580760f95e4296890051e00311e18934bafd..a9191d9db0e7c69b36da1e445e9d272685cab038 100644 --- a/src/events/gameover.tw +++ b/src/events/gameover.tw @@ -44,7 +44,7 @@ Surrounding yourself with powerful has its boons, but also poses a distinct thre You look up from your desk as the locked door to your office unseals, and a dozen individuals brazenly walk into your view.<<if $Bodyguard != 0>> $Bodyguard.slaveName stands between you and them. A single glare from the leader of the bunch and she backs off, eyes to the ground.<</if>> <br><br> <<if $PC.pregSource == -1>> - <<if $PC.refreshmentType == 0>>Taking a drag from a fresh $PC.refreshmentType<<elseif $PC.refreshmentType == 1>>Taking a drink of a fresh glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>Taking a bite of a fresh $PC.refreshment<<elseif $PC.refreshmentType == 3>>Doing a line of $PC.refreshment<<else>>Injecting a hit of $PC.refreshment into your arm<</if>>, you greet your rather unwelcome guests. + <<if $PC.refreshmentType == 0>>Taking a drag from a fresh $PC.refreshment<<elseif $PC.refreshmentType == 1>>Taking a drink of a fresh glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>Taking a bite of a fresh $PC.refreshment<<elseif $PC.refreshmentType == 3>>Doing a line of $PC.refreshment<<else>>Injecting a hit of $PC.refreshment into your arm<</if>>, you greet your rather unwelcome guests. <br><br> "You are no longer worthy of being a part of our society. But you carry within you one of our heirs. A conundrum for some, but we have already solved that problem." <br><br> diff --git a/src/events/intro/initNationalities.tw b/src/events/intro/initNationalities.tw index 8ab7d7242a5aba647f2047577812d373b2f7816b..186cc9d140dc890ecdd9dca20f5963f37b619042 100644 --- a/src/events/intro/initNationalities.tw +++ b/src/events/intro/initNationalities.tw @@ -412,7 +412,7 @@ <<default>> <<set $activeArcology.FSNull = 20>> <</switch>> - <<if $PC.rumor = "social engineering">> + <<if $PC.rumor == "social engineering">> <<set $FSGotRepCreditOne = 1>> <</if>> <</if>> diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 7924a178b9c8ed4184232414223e566d336b080d..6983f1e2eb696b591706b87bec6da5b6d92c6f62 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -174,7 +174,7 @@ if (typeof SlaveStatsChecker == "undefined") { var SlaveStatsChecker = { checkForLisp: function (slave) { /* Begin mod section: toggle whether slaves lisp. */ - if (SugarCube.State.variables.disableLisping == 1) { + if (SugarCube.State && SugarCube.State.variables.disableLisping == 1) { return false; } /* End mod section: toggle whether slaves lisp. */ @@ -200,10 +200,15 @@ if (typeof FertilityAge == "undefined") { window.FertilityAge = FertilityAge; }; -window.canGetPregnant = function(slave) { +/* contraceptives (.preg == -1) do not negate this function */ +window.isFertile = function(slave) { if (!slave) { return null; - } else if (slave.pubertyXX == 0){ + } else if (slave.preg > 0) { /* currently pregnant */ + return false; + } else if (slave.preg < -1) { /* sterile */ + return false; + } else if (slave.pubertyXX == 0) { /* pregmod start */ return false; } else if (slave.physicalAge >= 47) { return false; @@ -211,51 +216,65 @@ window.canGetPregnant = function(slave) { return false; } else if (slave.bellyImplant != 0) { return false; - } else if (slave.preg != 0) { - return false; - } else if ((slave.mpreg == 1) && (canDoAnal(slave) == true)) { + } else if (slave.mpreg == 1) { + return true; /* pregmod end */ + } else if (slave.ovaries == 1) { return true; - } else if (slave.ovaries != 1) { - return false; - } else if (canDoVaginal(slave) == false) { - return false; } else { - return true; + return false; } }; -window.isFertile = function(slave) { +window.canGetPregnant = function(slave) { if (!slave) { return null; - } else if (slave.pubertyXX == 0) { - return false; - } else if (slave.physicalAge >= 47) { - return false; - } else if (slave.inflation != 0) { - return false; - } else if (slave.bellyImplant != 0) { - return false; - } else if (slave.preg > 0) { + } else if (slave.preg == -1) { /* contraceptives check */ return false; - } else if (slave.preg < -1) { + } else if (isFertile(slave) == false) { /* check other fertility factors */ return false; - } else if (slave.mpreg == 1) { + } else if ((slave.ovaries == 1) && (canDoVaginal(slave) == true)) { return true; - } else if (slave.ovaries != 1) { - return false; - } else { + } else if ((slave.mpreg == 1) && (canDoAnal(slave) == true)) { /* pregmod */ return true; + } else { + return false; } }; +/* pregmod: are slave2's sperm compatible with slave1's eggs? */ window.canBreed = function(slave1, slave2) { - if (slave1.eggType == slave2.ballType) { + if (!slave1 || !slave2) { + return null; + } else if (slave1.eggType == slave2.ballType) { return true; } else { return false; } }; +/* assuming slave1 is fertile, could slave2 impregnate slave1? slave2 must have dick and balls with compatible sperm; both slaves must not be in chastity; slave2 need not achieve erection */ +window.canImpreg = function(slave1, slave2) { + if (!slave1 || !slave2) { + return null; + } else if (slave2.dick < 1) { + return false; + } else if (slave2.balls < 1) { + return false; + } else if (slave2.dickAccessory == "chastity") { + return false; + } else if (slave2.dickAccessory == "combined chastity") { + return false; + } else if (slave2.pubertyXY == 0) { /* pregmod start */ + return false; + } else if (canBreed(slave1, slave2) == false) { + return false; /* pregmod end */ + } else if (canGetPregnant(slave1) == false) { /* includes chastity checks */ + return false; + } else { + return true; + } +}; + //hyperpreg size 2 window.hyperBellyTwo = function(slave) { if (!slave) { diff --git a/src/npc/agent/agentCompany.tw b/src/npc/agent/agentCompany.tw index 17c199ffc9451eeed2b192fee72c4480edc1b43b..ff50d11933f6ba0354517e8164f9d78b445cdbff 100644 --- a/src/npc/agent/agentCompany.tw +++ b/src/npc/agent/agentCompany.tw @@ -4,7 +4,7 @@ <<set $nextLink = "AS Dump">> <<set $returnTo = "Main">> -<assignJob $activeSlave "live with your agent">> +<<assignJob $activeSlave "live with your agent">> <<if $activeSlave.rivalry > 0>> <<for _i = 0;_i < $slaves.length;_i++>> diff --git a/src/player/actions/fondleDick.tw b/src/player/actions/fondleDick.tw index 9a1c1a752c97d3f2b652baf347ab56b86ec0b077..586bc956aa2893232fb16974a8cefe5a94ed1497 100644 --- a/src/player/actions/fondleDick.tw +++ b/src/player/actions/fondleDick.tw @@ -96,7 +96,7 @@ You call her over so you can fondle her big balls <<elseif $activeSlave.balls == 5>> lemon-sized balls - <<elseif $activeSlave.balls < 10>>>> + <<elseif $activeSlave.balls < 10>> fist-sized balls <<else>> hypertrophied balls @@ -148,7 +148,7 @@ You call her over so you can fondle her big balls <<elseif $activeSlave.balls == 5>> lemon-sized balls - <<elseif $activeSlave.balls < 10>>>> + <<elseif $activeSlave.balls < 10>> fist-sized balls <<else>> hypertrophied balls @@ -199,7 +199,7 @@ You call her over so you can fondle her big balls <<elseif $activeSlave.balls == 5>> lemon-sized balls - <<elseif $activeSlave.balls < 10>>>> + <<elseif $activeSlave.balls < 10>> fist-sized balls <<else>> hypertrophied balls @@ -250,7 +250,7 @@ You call her over so you can fondle her big balls <<elseif $activeSlave.balls == 5>> lemon-sized balls - <<elseif $activeSlave.balls < 10>>>> + <<elseif $activeSlave.balls < 10>> fist-sized balls <<else>> hypertrophied balls @@ -299,7 +299,7 @@ You call her over so you can fondle her big balls <<elseif $activeSlave.balls == 5>> lemon-sized balls - <<elseif $activeSlave.balls < 10>>>> + <<elseif $activeSlave.balls < 10>> fist-sized balls <<else>> hypertrophied balls @@ -350,7 +350,7 @@ You call her over so you can fondle her big balls <<elseif $activeSlave.balls == 5>> lemon-sized balls - <<elseif $activeSlave.balls < 10>>>> + <<elseif $activeSlave.balls < 10>> fist-sized balls <<else>> hypertrophied balls @@ -401,7 +401,7 @@ You call her over so you can fondle her big balls <<elseif $activeSlave.balls == 5>> lemon-sized balls - <<elseif $activeSlave.balls < 10>>>> + <<elseif $activeSlave.balls < 10>> fist-sized balls <<else>> hypertrophied balls diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw index fae8a8f80836e7f577ae458d244cd8276b71e179..b1f45dd09fdcabb8329aec3ad3cfcd47975ef309 100644 --- a/src/pregmod/fFeet.tw +++ b/src/pregmod/fFeet.tw @@ -20,7 +20,7 @@ <</if>> You pour lubricant in your hands, and start massaging her feet. -<<if (activeSlave.devotion < -50)>> +<<if ($activeSlave.devotion < -50)>> She tries to stay hateful despite the stimulation. <<elseif ($activeSlave.devotion < -20)>> She stays quiet, but occasionally gasps. diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw index 57a01d6b2f4a473193e1326165a09f7b055553e4..49463150f303e92193cd0ea44328851e5741ea73 100644 --- a/src/pregmod/fSlaveFeed.tw +++ b/src/pregmod/fSlaveFeed.tw @@ -225,7 +225,7 @@ Next, you see to $activeSlave.slaveName. <</if>> <<elseif ($milkTap.fetish == "boobs") && ($milkTap.fetishStrength > 60) && ($milkTap.devotion > 20) && ($activeSlave.devotion < -20)>> - You position the restrained $activeSlave.slaveName so that you can penetrate her <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while she is forced to drink from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push her into the moaning $milkTap.slaveName forcing even more milk down her throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel her stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much she loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt her 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 her belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt her belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. She is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeslave.slaveName from her harness. Patting her well milked breasts, you know she'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding her swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over her.<<if $activeSlave.anus == 0>> She @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in her virgin anus.@@<</if>> + You position the restrained $activeSlave.slaveName so that you can penetrate her <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while she is forced to drink from $milkTap.slaveName's breasts. With every thrust into the squirming slave, you push her into the moaning $milkTap.slaveName forcing even more milk down her throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel her stomach swell with milk and place your other hand to $milkTap.slaveName's free nipple, knowing just how much she loves it groped. <<if $activeSlave.inflation == 3>>You came multiple times as you felt her 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 her belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt her belly slowly round with milk under your molesting fingers<</if>> and $milkTap.slaveName even more. She is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from her harness. Patting her well milked breasts, you know she'll come out of it and be eagerly begging you for another milking soon. $activeSlave.slaveName, on the other hand, is regarding her swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over her.<<if $activeSlave.anus == 0>> She @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in her virgin anus.@@<</if>> <<set $activeSlave.analCount += 1>> <<set $analTotal += 1>> <<if $activeSlave.anus == 0>> @@ -503,7 +503,7 @@ Next, you see to $activeSlave.slaveName. <</if>> <<elseif ($milkTap.fetish == "cumslut") && ($milkTap.fetishStrength > 60) && ($milkTap.devotion > 20) && ($activeSlave.devotion < -20)>> - You position the restrained $activeSlave.slaveName so that you can penetrate her <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while she is forced to suck $milkTap.slaveName's dick. With every thrust into the squirming slave, you force the moaning $milkTap.slaveName's cock deep into her throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel her stomach swell with ejaculate and place your other hand to $milkTap.slaveName's swollen testicles, knowing just how much she loves to jettison cum. <<if $activeSlave.inflation == 3>>You came multiple times as you felt her belly slowly round with cum, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt her belly slowly round with cum, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt her belly slowly round with cum under your molesting fingers<</if>> and $milkTap.slaveName even more. She is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeslave.slaveName from her harness. Patting her spasming, dribbling cock, you know she'll come out of it and be eagerly begging you for another slave to fuck soon. $activeSlave.slaveName, on the other hand, is regarding her swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over her.<<if $activeSlave.anus == 0>> She @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in her virgin anus.@@ <</if>> + You position the restrained $activeSlave.slaveName so that you can penetrate her <<if $activeSlave.anus == 0>>virgin <</if>>ass <<if $PC.dick == 0>>with a strap-on <</if>> while she is forced to suck $milkTap.slaveName's dick. With every thrust into the squirming slave, you force the moaning $milkTap.slaveName's cock deep into her throat. You wrap an arm around $activeSlave.slaveName's middle so you may feel her stomach swell with ejaculate and place your other hand to $milkTap.slaveName's swollen testicles, knowing just how much she loves to jettison cum. <<if $activeSlave.inflation == 3>>You came multiple times as you felt her belly slowly round with cum, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt her belly slowly round with cum, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt her belly slowly round with cum under your molesting fingers<</if>> and $milkTap.slaveName even more. She is semi-conscious, drooling in @@.hotpink;pleasure and satisfaction,@@ by the time you release the bloated $activeSlave.slaveName from her harness. Patting her spasming, dribbling cock, you know she'll come out of it and be eagerly begging you for another slave to fuck soon. $activeSlave.slaveName, on the other hand, is regarding her swollen stomach @@.mediumorchid;with disgust@@ and @@.gold;fear@@ of your power over her.<<if $activeSlave.anus == 0>> She @@.mediumorchid;hates you so much more@@ that you @@.lime;broke in her virgin anus.@@ <</if>> <<set $activeSlave.analCount += 1>> <<set $analTotal += 1>> <<if $activeSlave.anus == 0>> diff --git a/src/pregmod/huskSlaveSwap.tw b/src/pregmod/huskSlaveSwap.tw index 2163ac46dbefb8a184278359200f7d852a2945d1..4e7b546eb433dbb4124cbee9475f677770032dd9 100644 --- a/src/pregmod/huskSlaveSwap.tw +++ b/src/pregmod/huskSlaveSwap.tw @@ -1,6 +1,6 @@ :: Husk Slave Swap [nobr] -<<set $nextButton = "Continue", $nextLink = "AS Dump>> +<<set $nextButton = "Continue", $nextLink = "AS Dump">> You strap $oldSlave.slaveName and the body $pronoun will transfer to into the remote surgery and stand back as it goes to work. <<BodySwap $activeSlave $oldSlave>> diff --git a/src/pregmod/huskSlaveSwapWorkaround.tw b/src/pregmod/huskSlaveSwapWorkaround.tw index 4783f8ce7a8411e63d220f1978b07fa24db66b65..061528165210d9a1cf512aa9b3bf3cd9044344af 100644 --- a/src/pregmod/huskSlaveSwapWorkaround.tw +++ b/src/pregmod/huskSlaveSwapWorkaround.tw @@ -5,7 +5,7 @@ <<nobr>> <<set $oldSlave = 0>> -<<set $swapFailure = random(1,1000)> +<<set $swapFailure = random(1,1000)>> "This operation is neither simple nor is it perfected. There are extreme health risks involved and no gauruntee of success. Strap a slave into your surgery to consent to the operation. Indentured servants<<if $incubator > 0>> and slaves with reserved children<</if>> not eligible." diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index ceb32cbe70e69ab0f2a79b0ab953c9b055fcee4f..1f625ff0e0236edd80d0fc56d293881364bcca1a 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -630,16 +630,16 @@ You slowly strip down, gauging her reactions to your show, until you are fully n <<set $activeSlave.pregSource = -1>> <<replace "#result">> <<if $activeSlave.pregType > 0>> - You don't need to perfom an exam to tell she is fertile; her nethers are swollen with need and her pussy dripping with desire<<if $activeSlave.pregType > 20>>, and her stomach is already slightly bloated with the number of fertile eggs within her womb<</if>>. She moans with pent up lust as her deeply penetrate her and begin steadily thrusting. Her tight pussy hungrily massages you dick as you near your climax, promting you to hilt yourself in her before seeding the deepest reaches of her pussy. She passed out in ecstasy, so you carry her bred body to the couch to recover and her eggs to take root. She should make the connection once her belly starts to rapidly swell with child. + You don't need to perfom an exam to know that she is fertile; her nethers are swollen with need and her pussy dripping with desire<<if $activeSlave.pregType > 20>>, and her stomach is already slightly bloated with the number of fertile eggs within her womb<</if>>. She moans with pent-up lust as you deeply penetrate her and begin steadily thrusting. Her tight pussy hungrily massages your dick as you near your climax, prompting you to hilt yourself in her before seeding the deepest reaches of her pussy. She passed out in ecstasy, so you carry her bred body to the couch to recover. She should make the connection once her belly starts to rapidly swell with child. <<else>> You perform a careful medical examination to verify fertility, and then forcefully take the girl's virginity. Whenever you feel able, you drain your balls into her cunt, only allowing her to wander off when scans verify a fertilized ovum. She didn't properly understand the scans, so she just thought it was sex; she won't realize what happened for some months at least, and in the mean time, will think she is just getting fat. Though once her child starts kicking, she might make the connection between sex and pregnancy. <</if>> <<VaginalVCheck>> <<if $arcologies[0].FSRestart != "unset" && $activeSlave.breedingMark == 0>> - The Societal Elite @@.red;disaprove@@ of this breach of eugenics. + The Societal Elite @@.red;disapprove@@ of this breach of eugenics. <<set $failedElite += 5>> <<elseif $activeSlave.breedingMark == 1>> - The Societal Elite @@.green;are pleased@@ that you are promtly putting a child in her. + The Societal Elite @@.green;are pleased@@ that you are promptly putting a child in her. <<set $failedElite -= 5>> <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> Society @@.green;approves@@ of your promptly putting a new slave in her; this advances the idea that all slaves should bear their masters' babies. diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw index 9494146d82438886993a803fc9ea611bc99b43eb..98fded8b14dc6de4213454e353927527c9f525f1 100644 --- a/src/pregmod/pRaped.tw +++ b/src/pregmod/pRaped.tw @@ -113,7 +113,7 @@ It would be prudent to up security in your arcology. That or take a guard along <<set $activeSlave.dick = 7>> <<set $activeSlave.balls = 5>> <<set $activeSlave.boobs = 0>> -<<set activeSlave.waist = 50>> +<<set $activeSlave.waist = 50>> <<set $activeSlave.oralSkill = 0>> <<set $activeSlave.analSkill = 0>> <<set $activeSlave.behavioralFlaw = "arrogant">> diff --git a/src/pregmod/physicalDevelopment.tw b/src/pregmod/physicalDevelopment.tw index 11782ee207a70cae9414dbb5559ac1af89e5c225..efb8afe14aa43d72f580ebde1027b8b70c4908eb 100644 --- a/src/pregmod/physicalDevelopment.tw +++ b/src/pregmod/physicalDevelopment.tw @@ -853,7 +853,7 @@ <<set $slaves[$i].waist -= 5>> <</if>> <</if>> -<</if>>> +<</if>> <<case 14>> <<if $slaves[$i].hormones == 2>> @@ -2100,7 +2100,7 @@ <<set $slaves[$i].waist += 5>> <</if>> <</if>> -<</if>>> +<</if>> <<case 14>> <<if $slaves[$i].hormones == 2>> @@ -2640,5 +2640,5 @@ <</if>> <</if>> -<</if>> +<</switch>> diff --git a/src/pregmod/reMaleArcologyOwner.tw b/src/pregmod/reMaleArcologyOwner.tw index 4b8de3d6826d8422af24db8939b86e61206e47d2..39af19271f245ed228c67623f0d773d0a45ff541 100644 --- a/src/pregmod/reMaleArcologyOwner.tw +++ b/src/pregmod/reMaleArcologyOwner.tw @@ -14,7 +14,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower <span id="result"> <<link "Head over and assert yourself">> <<replace "#result">> - You head over and insert yourself into the conversation between him and the woman trying to convince him to invest in her solar power concern. Your presence and power are such that she gives way rapidly, and you ostentatiously yet nonverbally assert your right to first claim to his company and conversation. After a few minutes of this public display, however, it becomes apparent that this is not what he was looking for. He is likely concerned that you are far too assertive for him to safely manage. He excuses herself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshmentType<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company. + You head over and insert yourself into the conversation between him and the woman trying to convince him to invest in her solar power concern. Your presence and power are such that she gives way rapidly, and you ostentatiously yet nonverbally assert your right to first claim to his company and conversation. After a few minutes of this public display, however, it becomes apparent that this is not what he was looking for. He is likely concerned that you are far too assertive for him to safely manage. He excuses herself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company. <</replace>> <</link>> <br><<link "Walk past him and out onto an unoccupied balcony">> diff --git a/src/pregmod/reMaleCitizenHookup.tw b/src/pregmod/reMaleCitizenHookup.tw index b682dae88377754c4736b7c0ecbf96030777fddf..f7133ed56d2ed0b80e337eb6647f74587e346b00 100644 --- a/src/pregmod/reMaleCitizenHookup.tw +++ b/src/pregmod/reMaleCitizenHookup.tw @@ -126,7 +126,7 @@ He's yours for the taking, if you want him, and if his praise and proximity were <<case "Supremacist" "Subjugationist">> flash you a view straight down his pants at his ethnically superior dick. <<case "Gender Radicalist">> - flex, popping his shirt's buttons and freeing his well crafted breats. + flex, popping his shirt's buttons and freeing his well crafted breasts. <<case "Gender Fundamentalist">> wrap his arm around you and whisper sweet nothings in your ear. <<case "Repopulationist">> @@ -148,7 +148,7 @@ He's yours for the taking, if you want him, and if his praise and proximity were <<case "Youth Preferentialist">> perfectly balance his youthful, innocent advances with the proper decorum between you and a citizen. <<case "Maturity Preferentialist">> - perfectly balance his experienced, well-tuned advnaces with the proper decorum between you and a citizen. + perfectly balance his experienced, well-tuned advances with the proper decorum between you and a citizen. <<case "Slimness Enthusiast">> turn from side to side as he flirts with you in a way that shows off his lithe, flexible body. <<case "Asset Expansionist">> @@ -181,35 +181,35 @@ He's clearly attracted to you; even the most consummate actor would have difficu Your guest restrains his eager praise now that you're in private, but his wide-eyed appreciation of your domain is compliment enough. Once in your suite, you undress him, revealing <<switch _FS>> <<case "Supremacist" "Subjugationist">> - his fresh, pure body, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + his fresh, pure body, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Gender Radicalist">> - perky fake breasts and a stiff dick as you gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + perky fake breasts and a stiff dick as you gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Gender Fundamentalist">> - a fine body with a proud erection. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting powerfully. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.preg >= 20>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobsBonus > 0>>huge breasts<<elseif $PC.boobsBonus < 0>>cute breasts<<elseif $PC.boobs == 1>>ample breasts<<else>>butt<</if>><</if>>, distracting you from the situation and allowing you to be overwhelmed by pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a fine body with a proud erection. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting powerfully. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.preg >= 20>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobsBonus > 0>>huge breasts<<elseif $PC.boobsBonus < 0>>cute breasts<<elseif $PC.boobs == 1>>ample breasts<<else>>butt<</if>><</if>>, distracting you from the situation and allowing you to be overwhelmed by pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Repopulationist">> - a hot young body with an eager erection. Before you can tip him onto your bed; he pulls your evening dress off, spins you around and lowers you, back first, onto the edge of your bed. He dominantly spears your pussy and begins thrusting powerfully. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.preg >= 20>>begins earnestly groping your pregnancy<<else>> grabs your hips and pushes even deeper into you<</if>><</if>>, distracting you from the situation and allowing you to be overwhelmed by pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<if $PC.preg < 10>>Unsatisfied with your body, he guides you into a position more favorable for conception<<else>>Crzed with lust over your baby bump, he guides you into a position more comfortable for a pregnanct woman<</if>> and carries on fucking you. By the time he is done with you, you'll be leaking cum for the rest of the evening. + a hot young body with an eager erection. Before you can tip him onto your bed; he pulls your evening dress off, spins you around and lowers you, back first, onto the edge of your bed. He dominantly spears your pussy and begins thrusting powerfully. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.preg >= 20>>begins earnestly groping your pregnancy<<else>> grabs your hips and pushes even deeper into you<</if>>, distracting you from the situation and allowing you to be overwhelmed by pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<if $PC.preg < 10>>Unsatisfied with your body, he guides you into a position more favorable for conception<<else>>Crazed with lust over your baby bump, he guides you into a position more comfortable for a pregnant woman<</if>> and carries on fucking you. By the time he is done with you, you'll be leaking cum for the rest of the evening. <<case "Eugenics">> - his glorious, flawless body, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + his glorious, flawless body, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Paternalist">> - a nice young body, with all the little attractions and flaws of a free citizen's, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a nice young body, with all the little attractions and flaws of a free citizen's, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Degradationist">> - a taut body covered in dominant tattoos and spiky piercings, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, especially one involving piercings rubbing all the right places, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a taut body covered in dominant tattoos and spiky piercings, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, especially one involving piercings rubbing all the right places, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Body Purist">> - a delectably clean young body unmarred by any trace of surgical intervention, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a delectably clean young body unmarred by any trace of surgical intervention, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Transformation Fetishist">> - a massive fake bubble butt to go with his extended erection, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, taking as much as you physically can, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a massive fake bubble butt to go with his extended erection, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, taking as much as you physically can, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Youth Preferentialist">> <<if $minimumSlaveAge < 13>> - that he is adorable, but may not be satisfying, and gently carry him to your bed. You tease him as you remove your evening dress, crawl next to him, pull him over yourself and guide his tiny penis into you. Instinct quickly takes hold as he begins thrusting and hugs tightly to your <<if $PC.preg >= 20>>pregnant belly<<else>>larger body<</if>>. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You hold him close and buck against him, trying to make up for his size, until he releases a small load into your depths. You follow not long after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Exhausted, he passes out <<if $PC.preg >= 20>>against your middle<<elseif $PC.boobsBonus > 0>>in your huge bust<<elseif $PC.boobsBonus < 0>>in your cute breasts<<elseif $PC.boobs == 1>>n your ample bust<<else>>atop you<</if>>; where he lies until you finish playing with him and move him beside you. You return to your needy crotch to finish up as he snuggles closer to your side. + that he is adorable, but may not be satisfying, and gently carry him to your bed. You tease him as you remove your evening dress, crawl next to him, pull him over yourself and guide his tiny penis into you. Instinct quickly takes hold as he begins thrusting and hugs tightly to your <<if $PC.preg >= 20>>pregnant belly<<else>>larger body<</if>>. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You hold him close and buck against him, trying to make up for his size, until he releases a small load into your depths. You follow not long after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Exhausted, he passes out <<if $PC.preg >= 20>>against your middle<<elseif $PC.boobsBonus > 0>>in your huge bust<<elseif $PC.boobsBonus < 0>>in your cute breasts<<elseif $PC.boobs == 1>>n your ample bust<<else>>atop you<</if>>; where he lies until you finish playing with him and move him beside you. You return to your needy crotch to finish up as he snuggles closer to your side. <<elseif $minimumSlaveAge < 18>> - that his whole body looks fresh, untouched, and very young, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + that his whole body looks fresh, untouched, and very young, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<else>> - that his whole body looks fresh, untouched, and quite young, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + that his whole body looks fresh, untouched, and quite young, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <</if>> <<case "Maturity Preferentialist">> - a mature body featuring an erection with years of experience. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting, hitting all the right places. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.preg >= 20>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobsBonus > 0>>huge breasts<<elseif $PC.boobsBonus < 0>>cute breasts<<elseif $PC.boobs == 1>>ample breasts<<else>>butt<</if>><</if>>, calming you and allowing you to give in to the pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, despite his age, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a mature body featuring an erection with years of experience. Before you can tip him onto your bed; he deftly slips you out of your evening dress, scoops you up and places you, back first, at the edge of your bed. He dominantly spears your pussy and begins thrusting, hitting all the right places. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You shift in discomfort at being dominated, and in response he <<if $PC.preg >= 20>>begins massaging your rounded middle<<else>>groping your <<if $PC.boobsBonus > 0>>huge breasts<<elseif $PC.boobsBonus < 0>>cute breasts<<elseif $PC.boobs == 1>>ample breasts<<else>>butt<</if>><</if>>, calming you and allowing you to give in to the pleasure. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, despite his age, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Slimness Enthusiast">> - lean muscles, a smooth waist, trim hips and a cute little ass, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + lean muscles, a smooth waist, trim hips and a cute little ass, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Asset Expansionist">> an inhumanly enormous ass to counterbalance those enormous balls and a semihard cock, unable to become fully erect. You have to struggle to get him him onto your bed. You tease him as you remove your evening dress, crawl over him and <<if $PC.newVag == 1>> @@ -229,13 +229,13 @@ He's clearly attracted to you; even the most consummate actor would have difficu <<else>> find he is too big to fit in you. You settle for the tip instead. <</if>> - Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly massaging his cock as it fills you pussy. As you feel his climax mounting, he taps you and warns you that you won't be able to handle his orgasm. + Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly massaging his cock as it fills you pussy. As you feel his climax mounting, he taps you and warns you that you won't be able to handle his orgasm. <<if $PC.preg > 20>> - For your unborn child's sake, you slide off his shaft and down to his face, planting your soaked cunt over his mouth. Reaching around behind you as he eats you out, you tease his twitching rod. As you climax, you accidentally squeeze his vulnurable balls, provoking his own massive orgasm. Shouting in surprise, you hug as close to him as you can as cascade of cum pours onto the two of you. You roll off of him and laugh at the mess your servants are going to have to clean up. + For your unborn child's sake, you slide off his shaft and down to his face, planting your soaked cunt over his mouth. Reaching around behind you as he eats you out, you tease his twitching rod. As you climax, you accidentally squeeze his vulnerable balls, provoking his own massive orgasm. Shouting in surprise, you hug as close to him as you can as cascade of cum pours onto the two of you. You roll off of him and laugh at the mess your servants are going to have to clean up. <<elseif $PC.preg > 10>> - For your growing child's sake, you slide off his shaft and down to his face, planting your soaked cunt over his mouth. Reaching around behind you as he eats you out, you tease his twitching rod. As you climax, you accidentally squeeze his vulnurable balls, provoking his own massive orgasm. Shouting in surprise, you hug as close to him as you can as cascade of cum pours onto the two of you. You roll off of him and laugh at the mess your servants are going to have to clean up. + For your growing child's sake, you slide off his shaft and down to his face, planting your soaked cunt over his mouth. Reaching around behind you as he eats you out, you tease his twitching rod. As you climax, you accidentally squeeze his vulnerable balls, provoking his own massive orgasm. Shouting in surprise, you hug as close to him as you can as cascade of cum pours onto the two of you. You roll off of him and laugh at the mess your servants are going to have to clean up. <<elseif $PC.preg > 0>> - Feeling like you should heed his advice, you slide off his shaft and down to his face, planting your soaked cunt over his mouth. Reaching around behind you as he eats you out, you tease his twitching rod. As you climax, you accidentally squeeze his vulnurable balls, provoking his own massive orgasm. Shouting in surprise, you hug as close to him as you can as cascade of cum pours onto the two of you. You roll off of him and laugh at the mess your servants are going to have to clean up. + Feeling like you should heed his advice, you slide off his shaft and down to his face, planting your soaked cunt over his mouth. Reaching around behind you as he eats you out, you tease his twitching rod. As you climax, you accidentally squeeze his vulnerable balls, provoking his own massive orgasm. Shouting in surprise, you hug as close to him as you can as cascade of cum pours onto the two of you. You roll off of him and laugh at the mess your servants are going to have to clean up. <<else>> Quivering with your own pending orgasm, you ignore him and keep going, acheiving climax as he blows a near endless load into your womb. <<if $PC.cumTap == 0>> @@ -248,27 +248,27 @@ He's clearly attracted to you; even the most consummate actor would have difficu You manage to take a respectable portion of his load before it begins backflowing out of you. He masssages your cum-filled belly as he finishes unloading across your back. "Most girls can't even come close to handling it at all, I'm impressed." <<set $PC.cumTap++>> <<elseif $PC.cumTap < 15>> - You manage to take nearly half of his load before it begins backflowing out of you. He cradles your cum-stuffed belly as he finishes unloading across your back. "Few girls can even come close to handling that much of it, I'm impressed." He helps you down, making sure to provid extra support for your huge, full-term looking, belly. + You manage to take nearly half of his load before it begins backflowing out of you. He cradles your cum-stuffed belly as he finishes unloading across your back. "Few girls can even come close to handling that much of it, I'm impressed." He helps you down, making sure to provide extra support for your huge, full-term looking, belly. <<set $PC.cumTap++>> <<elseif $PC.cumTap < 20>> - You manage to take nearly two thirds of his load before it begins backflowing out of you. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you look like a woman on the verge of childbirth. "Damn girl, you look like you're gonna pop, I'm impressed." He helps you down, making sure to provid extra support for your emormous, taut belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party. + You manage to take nearly two thirds of his load before it begins backflowing out of you. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you look like a woman on the verge of childbirth. "Damn girl, you look like you're gonna pop, I'm impressed." He helps you down, making sure to provide extra support for your enormous, taut belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party. <<set $PC.cumTap++>> <<elseif $PC.cumTap < 25>> - You manage to take nearly three fourths of his load before it begins backflowing out of you. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you grow taut and your belly button pops out. By the time you can't take any more, you look like you are ready to burst with triplets. "Damn girl, just how stretchy are you? I'm impressed." He helps you down, making sure to provid extra support for your massive, straining belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party. + You manage to take nearly three fourths of his load before it begins backflowing out of you. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you grow taut and your belly button pops out. By the time you can't take any more, you look like you are ready to burst with triplets. "Damn girl, just how stretchy are you? I'm impressed." He helps you down, making sure to provide extra support for your massive, straining belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party. <<set $PC.cumTap++>> <<else>> - You manage to take his entire load without spilling a drop. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you grow taut and your belly button pops out. By the time he's done, you look ready to birth octuplets. "I can't believe you took it all, incredible. Are you going to be ok?" He helps you down, making sure to provid extra support for your immense, straining belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party. + You manage to take his entire load without spilling a drop. You swear he cums harder as he places his hands to your swelling middle, enjoying the growth until you grow taut and your belly button pops out. By the time he's done, you look ready to birth octuplets. "I can't believe you took it all, incredible. Are you going to be ok?" He helps you down, making sure to provide extra support for your immense, straining belly. He sensually massages it, coaxing as much cum from your hungry womb that he can. But in the end, he can only get you back to the size of a woman in her final trimester. You likely won't be returning to the party. <<set $PC.cumTap++>> <</if>> <</if>> <<case "Pastoralist">> - soft, milk-fed body, and gently push him back onto your bed, giggling as his chubby belly jiggles. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle, and suprisingly comfortable given his belly) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + soft, milk-fed body, and gently push him back onto your bed, giggling as his chubby belly jiggles. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle, and suprisingly comfortable given his belly) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Physical Idealist">> - a chiseled Adonis. Before you can tip him onto your bed; he deftly pulls you out of your evening dress, scoops you up, dominantly spears your pussy and begins thrusting powerfully while holding you. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You <<if $PC.preg >= 20>>squirm in discomfort until he turns you around and gives your pregnancy room<<elseif $PC.boobsBonus > 0>>squirm in discomfort until he turns you around and uses his other arm to keep your huge breasts steady<<elseif $PC.boobsBonus < 0>>push your cute breasts against his firm pecs<<elseif $PC.boobs == 1>>push your ample breasts against his firm pecs<<else>>allow him pull your flat chest to his firm pecs<</if>>, before he starts showing off his strength. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a chiseled Adonis. Before you can tip him onto your bed; he deftly pulls you out of your evening dress, scoops you up, dominantly spears your pussy and begins thrusting powerfully while holding you. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly fucking you. You <<if $PC.preg >= 20>>squirm in discomfort until he turns you around and gives your pregnancy room<<elseif $PC.boobsBonus > 0>>squirm in discomfort until he turns you around and uses his other arm to keep your huge breasts steady<<elseif $PC.boobsBonus < 0>>push your cute breasts against his firm pecs<<elseif $PC.boobs == 1>>push your ample breasts against his firm pecs<<else>>allow him pull your flat chest to his firm pecs<</if>>, before he starts showing off his strength. With a hard, firm thrust, he cums deep into your pussy. You follow shortly after, feeling the heat of his seed in your depths as you clamp down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<case "Chattel Religionist">> - a fresh and ready body, adorned here and there with sensual devotional jewelry, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a fresh and ready body, adorned here and there with sensual devotional jewelry, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <<default>> - a hot young body, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like youreslf appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. + a hot young body, and gently push him back onto your bed. You tease him as you remove your evening dress, crawl over him and impale yourself on his eager shaft, fully taking its length, before beginning to ride him. Even a female arcology owner like yourself appreciates a good hard fuck, since regular submission to a pounding from sex slaves would be a scandal. There's little opprobium waiting for you if it's known he had you, though, and he is eagerly thrusting into your pussy. You shift into a slightly more comfortable position<<if $PC.preg >= 20>> (one that forces him to bear the weight of your heavy middle) <</if>>and ride him to orgasm. You follow shortly after, feeling the heat of his seed in the depths of your pussy as it clamps down around his dick. Thankfully, he isn't spent yet and begins anew, quickly carrying your climax to a second orgasm and drawing an adorable moan out of you. <</switch>> <<if _FS == "Asset Expansionist">> <<if $Concubine != 0>><<if $Concubine.amp != 1>> diff --git a/src/pregmod/seHuskSlaveDelivery.tw b/src/pregmod/seHuskSlaveDelivery.tw index dd9f9cc64d4a281a4d47af6390802f8cdc7cd6f4..17fe34af91a7c4d50d73d5e2a6fa61d4d6b101d9 100644 --- a/src/pregmod/seHuskSlaveDelivery.tw +++ b/src/pregmod/seHuskSlaveDelivery.tw @@ -16,11 +16,11 @@ <</if>> <<set $activeSlave.slaveName = "irrelavant">> -<<set $activeslave.birthName = "">> +<<set $activeSlave.birthName = "">> <<set $activeSlave.nationality = $huskSlave.nationality>> <<set $activeSlave.race = $huskSlave.race>> <<set $activeSlave.origin = "You reserved a mindless slave like her from the Flesh Heap.">> -<<set $activeSlave.devotion = 0)>> +<<set $activeSlave.devotion = 0>> <<set $activeSlave.trust = 0>> <<if $activeSlave.race == "black">> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 2a54da141203e2ade5f8c981a9eb22580ec3f2a1..da56f1ff36980236e8b741fde6e871da3c2ffd41 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -519,11 +519,11 @@ <<case "live with your Head Girl">> <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. She attepmts to roll over, and failing that, begins to fall back to sleep as another contraction wracks her body. Her body begins to birth another of her brood. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. She attempts to roll over, and failing that, begins to fall back to sleep as another contraction wracks her body. Her body begins to birth another of her brood. <<ClothingBirth>> She draws her child to her breast and resumes resting before $HeadGirl.slaveName returns from her duties. <<else>> - $slaves[$i].slaveName's body begins to birth another of her brood. She She attepmts to roll over, and failing that, claws at her massive belly as another contraction wracks her body. + $slaves[$i].slaveName's body begins to birth another of her brood. She attempts to roll over, and failing that, claws at her massive belly as another contraction wracks her body. <<ClothingBirth>> She struggles to collect her child and brings them to her breast. She waits for $HeadGirl.slaveName to return, hoping she will arrive before another baby makes its way out of her. <</if>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 74baf588701c1719eab4cc590af6e172082c93ed..afe63e1df70bd1c52faadb9075e14e7b239cf69f 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -197,8 +197,7 @@ The source of the many-voiced personal assistant becomes clear: probably on the <<case "sore ass">> -One night, you see <span id="name"><<print "[[$activeSlave.slaveName|Long Slave Description][$nextLink = passage(), $eventDescription = 1]]">></span> <<if ($activeSlave.amp == 1)>>scooting herself from side to side uncomfortably<<elseif ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels") && ($activeSlave.shoes != "boots") && ($activeSlave.shoes != "extreme heels")>>crawling gingerly<<elseif ($activeSlave.shoes == "heels") || ($activeSlave.shoes == "boots") || ($activeSlave.shoes == "extreme heels") ->>tottering along painfully<<else>>walking a little funny<</if>>, as though she has a sore butt. You call her over to inspect her backdoor to see if she needs care, <<if ($activeSlave.amp == 1)>>and set her helpless body down, spreading her buttocks to examine her anus.<<else>>and order her to spread her buttocks for you so you can examine her anus.<</if>> Her asshole is fine, just a little sore from hard buttfucks. She complies with you, but as you probe her gently with a finger, <<if canTalk($activeSlave) == false && ($activeSlave.amp == 1)>>she wriggles desperately and turns to mouth "it hurts <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> please don't assrape me" at you.<<elseif canTalk($activeSlave) == false>>she gestures desperately, telling you her butt hurts and asking you not to assfuck her.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>she bursts out, "<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>, mah butt ith thore! Pleathe don't athfuck me <<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>. Pleathe."<<else>>she bursts out, "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, my butt is so sore! Please don't use my ass, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Please."<</if>> +One night, you see <span id="name"><<print "[[$activeSlave.slaveName|Long Slave Description][$nextLink = passage(), $eventDescription = 1]]">></span> <<if ($activeSlave.amp == 1)>>scooting herself from side to side uncomfortably<<elseif ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels") && ($activeSlave.shoes != "boots") && ($activeSlave.shoes != "extreme heels")>>crawling gingerly<<elseif ($activeSlave.shoes == "heels") || ($activeSlave.shoes == "boots") || ($activeSlave.shoes == "extreme heels")>>tottering along painfully<<else>>walking a little funny<</if>>, as though she has a sore butt. You call her over to inspect her backdoor to see if she needs care, <<if ($activeSlave.amp == 1)>>and set her helpless body down, spreading her buttocks to examine her anus.<<else>>and order her to spread her buttocks for you so you can examine her anus.<</if>> Her asshole is fine, just a little sore from hard buttfucks. She complies with you, but as you probe her gently with a finger, <<if canTalk($activeSlave) == false && ($activeSlave.amp == 1)>>she wriggles desperately and turns to mouth "it hurts <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> please don't assrape me" at you.<<elseif canTalk($activeSlave) == false>>she gestures desperately, telling you her butt hurts and asking you not to assfuck her.<<elseif SlaveStatsChecker.checkForLisp($activeSlave)>>she bursts out, "<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>, mah butt ith thore! Pleathe don't athfuck me <<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>. Pleathe."<<else>>she bursts out, "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, my butt is so sore! Please don't use my ass, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Please."<</if>> <<case "shift doorframe">> @@ -4324,7 +4323,7 @@ You tell her kindly that you understand, and that she'll be trained to address t <br><<link "Share some refreshments with her">> <<replace "#name">>$activeSlave.slaveName<</replace>> <<replace "#result">> - You reach into the back of your desk, where your private reserves are, and wordlessly offer her a <<if $PC.refreshmentType == 0>>$PC.refreshmentType<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>line of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>>. She stares at you disbelievingly for a moment before stammering her thanks and accepting it with both hands. She holds it uncertainly, watching you get one yourself. + You reach into the back of your desk, where your private reserves are, and wordlessly offer her a <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>line of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>>. She stares at you disbelievingly for a moment before stammering her thanks and accepting it with both hands. She holds it uncertainly, watching you get one yourself. <br><br> She is first among your slaves, but she is still very much a slave. She neither receives nor expects <<if $PC.refreshmentType == 0>> diff --git a/src/uncategorized/economics.tw b/src/uncategorized/economics.tw index 93939ecfb1be36ef5821831af9b018e5e45a6b0c..8033d4574651dc349d37da06091de36f93720a4c 100644 --- a/src/uncategorized/economics.tw +++ b/src/uncategorized/economics.tw @@ -1862,7 +1862,7 @@ Your ''business assistant'' manages the menial slave market. <<set $cash+=$menialBioreactors*($seed),$menialBioreactors = 0>> <</if>> <<else>> - Prices are average, so <<if $assistant == 0>>It<<else>>She<</if>> does not make any significant moves. + Prices are average, so <<if $assistant == 0>>it<<else>>she<</if>> does not make any significant moves. <</if>> <<silently>><<MenialPopCap>><</silently>> <</if>> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index 8f182cc2ff05b0aa58925d868e5861adefb5986b..32df6153260fd638173dcfef87fc0537599b2bac 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -40,9 +40,9 @@ The firm promptly pays @@.yellowgreen;fair compensation@@ for the minor damage t Early one morning, you hear heaving coming from one of the bathrooms. On investigation, it seems that $activeSlave.slaveName woke up feeling terribly nauseous. She's in no danger, but you've hardly checked her over before more slaves stagger in. Every one of your slaves on A-HGH has been struck by the mysterious malady and has @@.red;sickened.@@ <br><br> -It doesn't take much investigation before you find other slaveowners reporting the same thing. Elementary detective work fingers a particular drug supplier as the culprit, and before long the unfortunate Pharmacuetical concern is drownning under a rain of harsh public comment and harsher private contract warfare. As the day wears on, the poor slaves feel much better, and appear positively glowing. However, their breasts swell slightly and their bellies bulge, pointing to the issue being the contamination of the A-HGH production line with fertility agents. +It doesn't take much investigation before you find other slaveowners reporting the same thing. Elementary detective work fingers a particular drug supplier as the culprit, and before long the unfortunate Pharmacuetical concern is drowning under a rain of harsh public comment and harsher private contract warfare. As the day wears on, the poor slaves feel much better, and appear positively glowing. However, their breasts swell slightly and their bellies bulge, pointing to the issue being the contamination of the A-HGH production line with fertility agents. <br><br> -The firm promptly pays @@.yollowgreen; a large compensation@@ for potentially ruining your slaves. However, you're left with the matter of all the growing bellies to deal with. Over the week, all your slaves on breast enhancers show signs of @@.yollew;early pregnancy,@@ and hyper pregnancy at that, save those who aren't fertile. They just experienced some hip and ass growth. You have no idea how much fertility agent was in the enhancers but you feel they may become a problem if left alone! +The firm promptly pays @@.yellowgreen; a large compensation@@ for potentially ruining your slaves. However, you're left with the matter of all the growing bellies to deal with. Over the week, all of your slaves on breast injections show signs of @@.yellow;early pregnancy,@@ and hyper pregnancy at that, save those who aren't fertile. They just experienced some hip and ass growth. You have no idea how much fertility agent was in the enhancers but you feel they may become a problem if left alone! <<case "strip club closing">> @@ -545,9 +545,9 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<replace "#result">> Since subjecting all the affected slaves to abortions would cause you severe losses, you've decided to let them keep the pregnancies. You hope you are prepared for all the children you'll be producing. Those who couldn't become pregnant @@.lime;gained some breast, hip and ass size@@, as well as @@.lime;began lactating@@. <<for $i = 0; $i < $slaves.length; $i++>> - <<if ($slaves[$i].drugs == "breast injections") and isFertile(slaves[$i])>> - <<set $slaves[$i].preg = 1>> - <<set $slaves[$i].pregType = random(20,29)>> + <<if ($slaves[$i].drugs == "breast injections") && canGetPregnant(slaves[$i])>> + <<set $slaves[$i].preg = 1>> + <<set $slaves[$i].pregType = random(20,29)>> <<elseif $slaves[$i].drugs == "breast injections">> <<set $slaves[$i].lactation = 1>> <<if $slaves[$i].hips < 1>> @@ -569,7 +569,7 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <</link>> <br><<link "Demand further compensation">> <<replace "#result">> - You muster all the contractual remedies available to you and join the crowd fo slaveowners laying into the hapless manufacturer. Of course, with so many attackers, there is as much infighting between them as conflict with the helpless enemy, since everyone knows the business will go bankrupt before everyone gets paid. Nevertheless you @@.yellowgreen;approximately double@@ the money you make out of the situation, plenty to deal with the pregnancies. + You muster all the contractual remedies available to you and join the crowd of slaveowners laying into the hapless manufacturer. Of course, with so many attackers, there is as much infighting between them as conflict with the helpless enemy, since everyone knows the business will go bankrupt before everyone gets paid. Nevertheless you @@.yellowgreen;approximately double@@ the money you make out of the situation, plenty to deal with the pregnancies. <<set $cash += 2000*$slaves.length>> <</replace>> <</link>> diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw index 5b13d6f0cdd74f56eaa60262e69100e1fb74fe96..151bcb3f4f15565cdcd04216889eb22027b2dac3 100644 --- a/src/uncategorized/matchmaking.tw +++ b/src/uncategorized/matchmaking.tw @@ -250,9 +250,9 @@ Despite her devotion and trust, she is still a slave, and probably knows that he <<elseif $assistantAppearance == "businesswoman">> "To consecrate the marriage," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>fellate<<else>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar sneaks a hand down her suit skirt, blushing furiously. <<elseif $assistantAppearance == "fairy">> - "To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title = 1>>groom's <<else>>bride's <</if>><<if $PC.dick = 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar spreads her legs while still hovering in the air and masturbates eagerly through her half-worn robes. + "To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar spreads her legs while still hovering in the air and masturbates eagerly through her half-worn robes. <<elseif $assistantAppearance == "pregnant fairy">> - "To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title = 1>>groom's <<else>>bride's <</if>><<if $PC.dick = 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around her large belly. + "To seal the deal," $assistantName concludes, "$eventSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around her large belly. <<elseif $assistantAppearance == "goddess">> "To consummate the marriage," $assistantName concludes, "$eventSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave complies eagerly. $assistantName's avatar looks on approvingly, cradling her perpetual pregnancy. <<elseif $assistantAppearance == "hypergoddess">> diff --git a/src/uncategorized/newGamePlus.tw b/src/uncategorized/newGamePlus.tw index b5fdfa351895fe3e55c72e1c4790eb10850f9ade..0a6d073819321cfb78149f97ce56bde6ae59cc83 100644 --- a/src/uncategorized/newGamePlus.tw +++ b/src/uncategorized/newGamePlus.tw @@ -24,7 +24,7 @@ You have the funds to bring $slavesToImportMax slaves with you (or your equivale <<if $freshPC == 0>> <<if $retainCareer == 1 && $PC.career != "arcology owner">> - <<if $week > 52>> + <<if $week > 52 || ($PC.slaving >= 100 && $PC.trading >= 100 && $PC.warfare >= 100 && $PC.slaving >= 100 && $PC.engineering >= 100 && $PC.medicine >= 100)>> You have acquired a fair amount of knowledge regarding arcologies and their day-to-day management in your time spent as one's owner qualifying you as an @@.orange;"arcology owner"!@@ Benefits include: @@.lime;20% reduced cost of construction.@@ @@.lime;Free additional starting rep along with easy rep maintenance.@@ diff --git a/src/uncategorized/pMercenaryRomeo.tw b/src/uncategorized/pMercenaryRomeo.tw index 6d780b04da442f2cd668ac5efe4d0a9f0c3e6fbf..c84e73b9f4042e52e01b4bf652d3acbdd98dca5d 100644 --- a/src/uncategorized/pMercenaryRomeo.tw +++ b/src/uncategorized/pMercenaryRomeo.tw @@ -47,7 +47,7 @@ <</nobr>>\ \ -One of your mercenaries requests an interview. He's a worn, grey-haired tank of a man, made bulkier still by heavy ceramic plate armor and lots of ammunition and gear. The murderous submachine gun favored for city fighting looks like a toy in his hands. But as he sits at your invitation and accepts a <<if $PC.refreshmentType == 0>>$PC.refreshmentType<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>a plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>line of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>> proffered by an attentive slave girl, he seems almost bashful. +One of your mercenaries requests an interview. He's a worn, grey-haired tank of a man, made bulkier still by heavy ceramic plate armor and lots of ammunition and gear. The murderous submachine gun favored for city fighting looks like a toy in his hands. But as he sits at your invitation and accepts a <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>a plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>line of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>> proffered by an attentive slave girl, he seems almost bashful. "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Sir<<else>>Ma'am<</if>>, I'll say this straight. I'd like to buy one of your slaves. I've been seeing <span id="name"><<print "[[$activeSlave.slaveName|Long Slave Description][$nextLink = passage(), $eventDescription = 1]]">></span> a lot, and she makes the years sit a little lighter on me. I've scraped together what I can, and I can pay ¤$slaveCost." It's a decent price, probably a little less than you could get at auction. It's a huge sum for a mercenary; it's probably his entire savings. You ask what he would do with her. "Well," he says, actually blushing, "I'd free her. And marry her, if she'd have me." \ diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw index 6655f8bc91c111ec9328ce49aadb0bf8eeb7499c..815c1bf4864019282f64f2534977cea5023ccb0d 100644 --- a/src/uncategorized/personalAssistantAppearance.tw +++ b/src/uncategorized/personalAssistantAppearance.tw @@ -509,7 +509,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She's recently improved her appearance to look more natural, with prettier boobs and softer hips. <<default>> She's nude aside from a crown of flowers, her modesty protected only by her massive belly. Occasionally a stream of liquid pours from her crotch along with a healthy baby. - <</switch>>> + <</switch>> <</if>> <<if ($cockFeeder == 1) && ($seed == 1)>> A recognizable little representation of one of your slaves is suckling at her milky tits, her stomach bloated with milk. The slave must be down in the kitchen, getting a meal out of the food dispensers. The goddess notices you watching, and smiles while she cradles the swollen slave to her nourishing bosom. @@ -1022,7 +1022,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "pastoralist">> She has begun leaving the top of her white linen dress open to allow her milk laden breasts to hang free. She tends to leave a trail where ever she flies. <<case "maturity preferentialist">> - She has recently updated her appearance to be more mature; an air of experience follow her as she flies around. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; polkadotted, oddly enough. + She has recently updated her appearance to be more mature; an air of experience follows her as she flies around. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; polkadotted, oddly enough. <<case "youth preferentialist">> She has recently updated her appearance to be more youthful. She frequently flutters by, enojoying her youthful vigor. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; an adorable pair of bloomers. <<case "slimness enthusiast">> @@ -1044,7 +1044,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<elseif ($seed == 4)>> A recognizable little representation of one of your slaves is lying before her. The chureb is hovering in front of her chest, head to her breast, listening to her heartbeat; the slave must be getting a checkup. She beams you a smile, the slave must be doing well. <<elseif ($seed == 5) && ($invasionVictory > 0)>> - She's fluttering around in circles with a representation of one of your security drones, steadily chasing it. When she sees you looking at her, she giggles and says, "I like this one. He did very well during the invasion." + She's fluttering around in circles with a representation of one of your security drones, steadily chasing it. When she sees you looking at her, she giggles and says, "I like this one. He did very well during the invasion." <<elseif ($seed == 6) && ($studio == 1)>> She's watching a recognizable little representation of one of your slaves masturbate while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> @@ -1091,39 +1091,39 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "gender radicalist">> She's recently begun rendering herself more androgynous. Something can be seen commonly tenting her loincloth; when ever if shifts to the side, you catch sight of a thumb sized and heavily pierced clitoris. <<case "gender fundamentalist">> - She's recently increased the size of her breast and width of her hips. The belt around her chest tightly binds her new bust and causes its flesh to bulge and jiggle delightfully. + She's recently increased the size of her breasts and width of her hips. The belt around her chest tightly binds her new bust and causes its flesh to bulge and jiggle delightfully. <<case "asset expansionist">> - She has recently taken to wearing nothing put her panties, having given up on fitting into her dress. She struggles to fly with her massive tits weighing her down and she commonly has to pause to pull her underwear out of her buttcrack. + She's had to let out her chest belt to accommodate her new excessive bust, but only a little; the belt creates a deep canyon across her chest with plenty of flesh bulging above and below the straining leather. <<case "transformation fetishist">> - She wears a simple white linen dress that struggles to cover both her big fake breasts and ass. Her short skirt feebly rests atop her panty devouring rear, giving you a lovely view. + She's had to let out her chest belt to accommodate her new excessive bust, but only a little; the belt creates a deep canyon across her fake chest and threatens to painfully pop the underlying implants. <<case "pastoralist">> - She has begun leaving the top of her white linen dress open to allow her milk laden breasts to hang free. She tends to leave a trail where ever she flies. + She's exchanged her chest belt for a pair of rings with leather straps. She wears them so tightly every motion she makes forces a gush of milk from her painfully swollen breasts. <<case "maturity preferentialist">> - She has recently updated her appearance to be more mature; an air of experience follow her as she flies around. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; polkadotted, oddly enough. + She has recently updated her appearance to be more mature; an air of experience follows her as she flies around. You can hear her plotting tortures, many you've never heard of. <<case "youth preferentialist">> - She has recently updated her appearance to be more youthful. She frequently flutters by, enojoying her youthful vigor. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; an adorable pair of bloomers. + She has recently updated her appearance to be more youthful. She frequently flutters by, enojoying her youthful vigor. She looks so innocent, but looks can be deceiving! <<case "slimness enthusiast">> - She a wears simple white linen dress with a short skirt that hangs loosely of her pleasntly thin body. Her panties are obviously a bit loose too, as she frequently has to stop, swoop down and retrieve them whenever they fall off her flat ass. + Her new, thinner body gives her plenty of excuses to pull her straps even tighter. <<case "body purist">> - She has forgone covering herself to allow her radiant, pure body to be visible to all. + She has forgone covering herself to allow her sinful, pure body to be visible to all. <<default>> - She wears only a belt, tightly bound, over her tiny breasts and a simple loincloth over her crotch, leaving most of her body in plain, but arousing, view. + She wears only a belt, tightly bound, over her tiny breasts and a simple loincloth over her crotch, leaving most of her body in plain, but arousing, sight. <</switch>> <<else>> - She wears only a belt, tightly bound, over her tiny breasts and a simple loincloth over her crotch, leaving most of her body in plain, but arousing, view. + She wears only a belt, tightly bound, over her tiny breasts and a simple loincloth over her crotch, leaving most of her body in plain, but arousing, sight. <</if>> <<if ($cockFeeder == 1) && ($seed == 1)>> - A recognizable little representation of one of your slaves is eating her out as she flutters in front of them. The slave must be down in the kitchen, getting a meal out of the food dispensers. The cherub notices you watching and shoots you a thumbs up. + She is steadily forcing a dildo the size of your arm down representation of one of your slave's throat. The slave must be down in the kitchen, getting a meal out of the food dispensers. The imp notices you watching, points to the obscene bulge in the slave's throat and laughs maniacally. <<elseif ($suppository == 1) && ($seed == 2)>> - A recognizable little representation of one of your slaves is before her, ass in the air, as she eagerly fists her rear. The slave must be receiving her drugs from one of the dildo dispensers. The chureb notices you watching and tosses you a thumbs up with her free hand. + A recognizable little representation of one of your slaves is before her, ass in the air, as she enthusiastically winds an anal pear. The slave must be receiving her drugs from one of the dildo dispensers. The imp notices you watching and laughs as she gapes the slave's asshole further, enjoying her obvious discomfort. <<elseif ($masturbationAllowed == 1) && ($seed == 3)>> - A recognizable little representation of one of your slaves is before her, ass in the air, as she eagerly fucks her with a strapon, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. She notices you watching, tosses up a thumbs up at you and increases her thrusting. + A recognizable little representation of one of your slaves is before her, perched atop a wooden horse with sexual fluids running down its sides. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the imp flys above her and roughly forces her down, eliciting a scream of surprise from the horny slave. She likly upped the output on whatever toy the slave was using. <<elseif ($seed == 4)>> - A recognizable little representation of one of your slaves is lying before her. The chureb is hovering in front of her chest, head to her breast, listening to her heartbeat; the slave must be getting a checkup. She beams you a smile, the slave must be doing well. + A recognizable little representation of one of your slaves is lying on her side before her; belly painfully distended. The imp is hovering over her holding an enema bag; the slave must be getting a checkup. She notices your gaze and squeezes the bag, forcing a burst of liquid into the slave's gut and drawing a moan of discomfort out of the girl. <<elseif ($seed == 5) && ($invasionVictory > 0)>> - She's fluttering around in circles with a representation of one of your security drones, steadily chasing it. When she sees you looking at her, she giggles and says, "I like this one. He did very well during the invasion." + She's flapping around in circles chasing a representation of one of your security drones with a mallet. When she sees you looking at her, she quickly hides the hammer behing her back, giggles and says, "He let some get away and needed to be punished!" <<elseif ($seed == 6) && ($studio == 1)>> - She's watching a recognizable little representation of one of your slaves masturbate while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + She's hovering over a recognizable little representation of one of your slaves masturbate while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into a PoV porno. <<elseif ($seed == 7) && ($marketAssistantAnnounced == 1)>> She's accompanied by your market assistant's slightly taller avatar. <<if $marketAssistantRelationship == "cute">> diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw index 2ec86b16d7f2889b15ef5b1dd81b6e81f2c39af1..aec0d77db0c68af3b44abcd0f98654a973c2915a 100644 --- a/src/uncategorized/ptWorkaround.tw +++ b/src/uncategorized/ptWorkaround.tw @@ -862,7 +862,7 @@ <<if $activeSlave.training < 100>> She keeps her head down and shows no sign of religious introspection, at least this week. <<else>> - She begins to read it when she thinks she's alone, and @@.red;talk to God@@ when she thinks only He is listening. + She begins to read it when she thinks she's alone, and @@.red;talks to God@@ when she thinks only He is listening. <<set $activeSlave.behavioralFlaw = "devout">> <<BasicTrainingDefaulter>> <</if>> diff --git a/src/uncategorized/randomIndividualEvent.tw b/src/uncategorized/randomIndividualEvent.tw index da5f111f6116cb733f618f8cf54a3a485700ca20..9c16f0631f8976856937ca99f634b17a8515495c 100644 --- a/src/uncategorized/randomIndividualEvent.tw +++ b/src/uncategorized/randomIndividualEvent.tw @@ -1609,7 +1609,7 @@ <<if ($eventSlave.balls > 4)>> <<if ($eventSlave.dick > 4)>> <<if ($eventSlave.assignment == "work in the dairy") || ($eventSlave.assignment == "get milked")>> -<<if ($eventSlave.prestige == 0>> +<<if $eventSlave.prestige == 0>> <<set $events.push("RE legendary balls")>> <</if>> <</if>> diff --git a/src/uncategorized/reFSNonconformist.tw b/src/uncategorized/reFSNonconformist.tw index c042010058ffb42fde58f0506cb6d1b682d91c29..3dfa2e17fe25b3554b056adfbe023427d0823901 100644 --- a/src/uncategorized/reFSNonconformist.tw +++ b/src/uncategorized/reFSNonconformist.tw @@ -140,7 +140,7 @@ The nonconformist is far too prominent and prosperous to make this an easy dilem <<elseif $FSNonconformist == "Eugenics">> hosts a public wedding commemorating their love. This @@.red;sets back acceptance@@ of your class system and hinders Eugenics. The Societal Elite are @@.red;furious@@ at your inaction. <<set $arcologies[0].FSRestart -= 20>> - <<set $failedElite += 100 + <<set $failedElite += 100>> <<elseif $FSNonconformist == "Gender Fundamentalist">> hosts a huge public party in a lower-class area of the arcology, staffing it with a large number of slaves with dicks. They're so filled with aphrodisiacs that they orgasm constantly when citizens use their asses. This @@.red;setts back acceptance@@ of gender traditionalism. <<set $arcologies[0].FSGenderFundamentalist -= 10>> diff --git a/src/uncategorized/reFemaleArcologyOwner.tw b/src/uncategorized/reFemaleArcologyOwner.tw index 0ca42920e7404763cada0c7dd2017d6ee8231e93..c551c37f225db06a547114b5b25c6b24be170e96 100644 --- a/src/uncategorized/reFemaleArcologyOwner.tw +++ b/src/uncategorized/reFemaleArcologyOwner.tw @@ -12,7 +12,7 @@ She strikes a fine balance in conversation with you, firm enough for a rising wo <span id="result"> <<link "Head over and assert yourself">> <<replace "#result">> - You head over and insert yourself into the conversation between her and the man trying to convince her to invest in his solar power concern. Your presence and power are such that he gives way rapidly, and you ostentatiously yet nonverbally assert your right to first claim to her company and conversation. After a few minutes of this public display, however, it becomes apparent that this is not what she was looking for. She is likely concerned that this is too much public <<if $PC.title == 1>>submission<<else>>vulnerability<</if>> for her to safely manage. She excuses herself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshmentType<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company. + You head over and insert yourself into the conversation between her and the man trying to convince her to invest in his solar power concern. Your presence and power are such that he gives way rapidly, and you ostentatiously yet nonverbally assert your right to first claim to her company and conversation. After a few minutes of this public display, however, it becomes apparent that this is not what she was looking for. She is likely concerned that this is too much public <<if $PC.title == 1>>submission<<else>>vulnerability<</if>> for her to safely manage. She excuses herself and withdraws. You return to your <<if $PC.refreshmentType == 0>>$PC.refreshment<<elseif $PC.refreshmentType == 1>>glass of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plate of $PC.refreshment<<elseif $PC.refreshmentType == 3>>pouch of $PC.refreshment<<else>>syringe of $PC.refreshment<</if>>, consoling yourself that you are not exactly starved for company. <</replace>> <</link>> <br><<link "Walk past her and out onto an unoccupied balcony">> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index 91789a1802d45768430ef580aec22c8725124f20..d4d26f7410848731ac3a2501e82c3cbd945effc9 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -300,7 +300,7 @@ She hikes up her skirt and spins around slowly. "The drugs also made my butt big <<set $activeSlave.analSkill = 0>> <<set $activeSlave.hStyle = "long and in twin schoolgirl tails">> <<set $activeSlave.pubicHStyle = "waxed">> -<<set $activeSlave.underArmHStyle = "waxed">>> +<<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.pubertyXY = 0>> <<set $activeSlave.pubertyAgeXY = 50>> diff --git a/src/uncategorized/resMove.tw b/src/uncategorized/resMove.tw index 28f35272f4308c58e7f0330397f10a1414568f6b..567b0a0c6e6859a2b5048ef453734de7df0a3677 100644 --- a/src/uncategorized/resMove.tw +++ b/src/uncategorized/resMove.tw @@ -273,7 +273,7 @@ as you suspected, <</if>> <br><br> Your assistant is a powerful analytic tool, but <<if $assistant == 0>>it<<else>>she<</if>> lacks the capacity for true creativity. <<if $assistant == 0>>It<<else>>She<</if>> did not mention the long term. It would be possible to support the -<<if ($RESMove == "TSS") || ($RESMove == "SCP)") || ($RESMove == "LDE") || ($RESMove == "TGA")>> +<<if ($RESMove == "TSS") || ($RESMove == "SCP") || ($RESMove == "LDE") || ($RESMove == "TGA")>> school's <<elseif $RESMove == "GRI">> lab's diff --git a/src/uncategorized/saDrugs.tw b/src/uncategorized/saDrugs.tw index 02ab12887b338f4ba324acaa0e2ef8bf7d30f1d7..dc811045a4ed68220544cf1ba3926218529177a1 100644 --- a/src/uncategorized/saDrugs.tw +++ b/src/uncategorized/saDrugs.tw @@ -914,7 +914,7 @@ <<set $slaves[$i].drugs = "no drugs">> <</if>> <<case "lip injections">> - <<if ($slaves[$i]. lips > 95) || (($slaves[$i]. lips > 85) && ($seeExtreme != 1))>> + <<if ($slaves[$i].lips > 95) || (($slaves[$i].lips > 85) && ($seeExtreme != 1))>> $possessiveCap lips are now so huge that further A-HGH treatment will not increase their size. @@.yellow;$possessiveCap drug regimen has been ended.@@ <<set $slaves[$i].drugs = "no drugs">> <</if>> diff --git a/src/uncategorized/saLiveWithHG.tw b/src/uncategorized/saLiveWithHG.tw index b03e977e19173923d215f059ce022a2c693786ca..80ae742874fb0dedd62a0d3f25dc5b1699d4562f 100644 --- a/src/uncategorized/saLiveWithHG.tw +++ b/src/uncategorized/saLiveWithHG.tw @@ -274,40 +274,29 @@ <</if>> <</if>> -<<if ($slaves[$i].vagina > 0) || (($slaves[$i].mpreg == 0) && ($slaves[$i].anus > 0))>> -<<if isFertile($slaves[$i])>> -<<if ($HeadGirl.fetishKnown == 1)>> -<<if ($HeadGirl.fetish == "pregnancy")>> -<<if ($HeadGirl.balls > 0)>> +<<if ($HeadGirl.fetishKnown == 1) && ($HeadGirl.fetish == "pregnancy") && canImpreg($slaves[$i], $HeadGirl)>> <<if $arcologies[0].FSRestart == "unset">> -<<if canPenetrate($HeadGirl)>> $HeadGirl.slaveName promptly @@.lime;impregnates@@ $slaves[$i].slaveName, to your Head Girl's considerable @@.hotpink;satisfaction.@@ - <<set $slaves[$i].preg = 1>> + <<set $slaves[$i].preg = 1, $slaves[$i].pregSource = $HeadGirl.ID, $HeadGirl.devotion += 4>> <<if ($slaves[$i].drugs == "super fertility drugs")>> - <<if ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pregType = random(10,20)>> - <<else>> - <<set $slaves[$i].pregType = either(3, 4, 4, 4, 5, 5, 5, 10, 10, 20)>> - <</if>> + <<if ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pregType = random(10,20)>> + <<else>> + <<set $slaves[$i].pregType = either(3, 4, 4, 4, 5, 5, 5, 10, 10, 20)>> + <</if>> <<elseif ($slaves[$i].drugs == "fertility drugs")>> - <<if ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pregType = random(2,5)>> - <<else>> - <<set $slaves[$i].pregType = either(1, 1, 2, 2, 3, 3, 4, 4, 5, 5)>> - <</if>> + <<if ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pregType = random(2,5)>> + <<else>> + <<set $slaves[$i].pregType = either(1, 1, 2, 2, 3, 3, 4, 4, 5, 5)>> + <</if>> <<else>> - <<set $slaves[$i].pregType = either(1, 1, 1, 1, 1, 1, 1, 1, 1, 2)>> + <<set $slaves[$i].pregType = either(1, 1, 1, 1, 1, 1, 1, 1, 1, 2)>> <</if>> - <<set $slaves[$i].pregSource = $HeadGirl.ID, $HeadGirl.devotion += 4>> -<</if>> <<else>> $HeadGirl.slaveName knows better than to even consider knocking up $slaves[$i].slaveName. <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if ($slaves[$i].devotion > 50)>> <<if (($slaves[$i].fetishStrength <= 95) || ($slaves[$i].fetishKnown == 0)) && ($HeadGirl.fetishKnown == 1) && ($HeadGirl.fetishStrength > 60) && ($slaves[$i].fetish != $HeadGirl.fetish)>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 6d827f14819b5b80bd07c370e8f14804d570e664..ed78a638f51accc78814787c8b86a672bc46e953 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -1793,7 +1793,7 @@ <<elseif $slaves[$i].dietCum == 1>> Her paraphilia is satisfied by what she gets to eat. <<elseif $slaves[$i].dietCum == 2>> - Other slaves in your penthouse are disturbed by her insatiable appetite for human ejaculate, which her heavy cum-diet encourages. + Other slaves in your penthouse are disturbed by her insatiable appetite for human ejaculate, which her heavy cum-diet encourages. <<elseif $feeder != 0>> Her paraphilia is satisfied by the way she gets to eat. <<elseif ($slaves[$i].assignment is "work in the dairy") && ($dairyFeedersSetting > 0)>> @@ -3027,7 +3027,7 @@ /* PUBERTY EFFECTS */ <<if $precociousPuberty == 1>> - <<if ($slaves[$i].physicalAge < $slaves[$i].pubertyAgeXX) && ($slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1) && $slaves[$i].pubertyXX == 0>> /* Female type */ + <<if ($slaves[$i].physicalAge < $slaves[$i].pubertyAgeXX) && ($slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1) && $slaves[$i].pubertyXX == 0>> /* Female type */ <<if ($slaves[$i].diet == "XX" || $slaves[$i].diet == "XXY")>> <<set $slaves[$i].pubertyAgeXX -= 0.1>> @@ -3043,34 +3043,34 @@ <<elseif ($slaves[$i].drugs == "steroids")>> <<set $slaves[$i].pubertyAgeXX += 0.2>> <<if ($slaves[$i].boobs > 100) && (random(1,100) < 30)>> - $pronounCap feels an @@.orange;unusual calmness@@ in $object belly and breasts. - <<set $slaves[$i].boobs -= 50>> + $pronounCap feels an @@.orange;unusual calmness@@ in $possessive belly and breasts. + <<set $slaves[$i].boobs -= 50>> <</if>> <<if ($slaves[$i].clit < 2) && (random(1,100) < 10)>> - $pronounCap feels @@.orange;unusual warmness@@ in $object clitoris. + $pronounCap feels @@.orange;unusual warmness@@ in $possessive clitoris. <<set $slaves[$i].clit += 1>> <</if>> <<elseif ($slaves[$i].drugs == "super fertility drugs")>> <<set $slaves[$i].pubertyAgeXX -= 0.5>> - $pronounCap feels @@.orange;unusual warm feeling@@ in $object belly and breasts. + $pronounCap feels an @@.orange;unusual warm feeling@@ in $possessive belly and breasts. <<if ($slaves[$i].boobs < 400) && (random(1,100) < 30)>> - $possessiveCap breasts feel @@.orange;heavy, hot and sensetive@@. - <<set $slaves[$i].boobs += 50>> - <<if random(1,100) < 10>> - <<set $slaves[$i].boobShape to "perky">> - <</if>> + $possessiveCap breasts feel @@.orange;heavy, hot and sensetive@@. + <<set $slaves[$i].boobs += 50>> + <<if random(1,100) < 10>> + <<set $slaves[$i].boobShape to "perky">> + <</if>> <</if>> <<if ($slaves[$i].hips < 2) && (random(1,100) < 10)>> - $pronounCap feels @@.orange;strange minor pains@@ in $object pelvis. - <<set $slaves[$i].hips += 1>> + $pronounCap feels @@.orange;strange minor pains@@ in $possessive pelvis. + <<set $slaves[$i].hips += 1>> <</if>> <<if ($slaves[$i].butt < 4) && (random(1,100) < 10)>> - $pronounCap feels @@.orange;strange weight@@ in $object rear. - <<set $slaves[$i].butt += 1>> + $pronounCap feels a @@.orange;strange weight@@ on $possessive rear. + <<set $slaves[$i].butt += 1>> <</if>> <<if ($slaves[$i].labia < 2) && (random(1,100) < 10)>> - $pronounCap feels @@.orange;unusual tenderness@@ in $object labia. - <<set $slaves[$i].labia += 1>> + $pronounCap feels an @@.orange;unusual tenderness@@ in $possessive labia. + <<set $slaves[$i].labia += 1>> <</if>> <<elseif ($slaves[$i].drugs == "hyper testicle enhancement")>> <<set $slaves[$i].pubertyAgeXX += .5>> @@ -3085,25 +3085,25 @@ <<set $slaves[$i].pubertyAgeXX += 0.4>> <</if>> <<if $slaves[$i].drugs == "hormone enhancers">> - <<if ($slaves[$i].hormones == 1)>> - <<set $slaves[$i].pubertyAgeXX -= 0.1>> - <<elseif ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pubertyAgeXX -= 0.2>> - <<elseif ($slaves[$i].hormones == -1)>> - <<set $slaves[$i].pubertyAgeXX += 0.1>> - <<elseif ($slaves[$i].hormones == -2)>> - <<set $slaves[$i].pubertyAgeXX += 0.2>> - <</if>> + <<if ($slaves[$i].hormones == 1)>> + <<set $slaves[$i].pubertyAgeXX -= 0.1>> + <<elseif ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pubertyAgeXX -= 0.2>> + <<elseif ($slaves[$i].hormones == -1)>> + <<set $slaves[$i].pubertyAgeXX += 0.1>> + <<elseif ($slaves[$i].hormones == -2)>> + <<set $slaves[$i].pubertyAgeXX += 0.2>> + <</if>> <</if>> <<if ($slaves[$i].physicalAge < $slaves[$i].pubertyAgeXX) && ($slaves[$i].physicalAge > $slaves[$i].pubertyAgeXX-3) && ($slaves[$i].pubertyAgeXX < $fertilityAge)>> - $possessiveCap body is showing signs of @@.orange;early puberty@@. + $possessiveCap body is showing signs of @@.orange;early puberty@@. <</if>> - <</if>> + <</if>> /* closes female type */ <<if ($slaves[$i].physicalAge < $slaves[$i].pubertyAgeXY) && $slaves[$i].balls >= 1 && $slaves[$i].pubertyXY == 0>> /* Male type */ - + <<if ($slaves[$i].diet == "XY" || $slaves[$i].diet == "XXY")>> <<set $slaves[$i].pubertyAgeXY -= 0.1>> <</if>> @@ -3119,40 +3119,40 @@ <<set $slaves[$i].pubertyAgeXY -= 0.2>> <<elseif ($slaves[$i].drugs == "hyper testicle enhancement")>> <<set $slaves[$i].pubertyAgeXY -= 0.5>> - $pronounCap feels @@.orange;unusual warm feeling@@ in $object groin. + $pronounCap feels an @@.orange;unusual warm feeling@@ in $possessive groin. <<if ($slaves[$i].penis < 4) && (random(1,100) < 30)>> - $possessiveCap penis feels @@.orange;heavy, hot and oversensetive@@. - <<set $slaves[$i].penis += 1>> + $possessiveCap penis feels @@.orange;heavy, hot and oversensetive@@. + <<set $slaves[$i].penis += 1>> <</if>> <<if ($slaves[$i].balls < 4) && (random(1,100) < 30)>> - $possessiveCap balls feel @@.orange;heavy, full and oversensetive@@. - <<set $slaves[$i].balls += 1>> + $possessiveCap balls feel @@.orange;heavy, full and oversensetive@@. + <<set $slaves[$i].balls += 1>> <</if>> <<elseif ($slaves[$i].drugs == "super fertility drugs")>> <<set $slaves[$i].pubertyAgeXY -= 1>> - $pronounCap feels @@.orange;unusual warm feeling@@ in $object breasts. + $pronounCap feels @@.orange;unusual warm feeling@@ in $possessive breasts. <<if ($slaves[$i].boobs < 400) && (random(1,100) < 30)>> - $possessiveCap chest feels @@.orange;hot and sensetive@@. - <<set $slaves[$i].boobs += 50>> - <<if random(1,100) < 10>> - <<set $slaves[$i].boobShape to "perky">> - <</if>> + $possessiveCap chest feels @@.orange;hot and sensetive@@. + <<set $slaves[$i].boobs += 50>> + <<if random(1,100) < 10>> + <<set $slaves[$i].boobShape to "perky">> + <</if>> <</if>> <<if ($slaves[$i].hips < 2) && (random(1,100) < 10)>> - $pronounCap feels @@.orange;strange minor pains@@ in $object pelvis. - <<set $slaves[$i].hips += 1>> + $pronounCap feels @@.orange;strange minor pains@@ in $possessive pelvis. + <<set $slaves[$i].hips += 1>> <</if>> <<if ($slaves[$i].butt < 4) && (random(1,100) < 10)>> - $pronounCap feels @@.orange;strange weight@@ in $object rear. - <<set $slaves[$i].butt += 1>> + $pronounCap feels a @@.orange;strange weight@@ to $possessive rear. + <<set $slaves[$i].butt += 1>> <</if>> <<if ($slaves[$i].dick > 1) && (random(1,100) < 30)>> - $pronounCap feels an @@.orange;unusual lightness@@ in $object penis. - <<set $slaves[$i].dick -= 1>> + $pronounCap feels an @@.orange;unusual lightness@@ in $possessive penis. + <<set $slaves[$i].dick -= 1>> <</if>> <<if ($slaves[$i].balls > 1) && (random(1,100) < 30)>> - $pronounCap feels an @@.orange;unusual emptiness@@ to $object scrotum. - <<set $slaves[$i].balls -= 1>> + $pronounCap feels an @@.orange;unusual emptiness@@ to $possessive scrotum. + <<set $slaves[$i].balls -= 1>> <</if>> <</if>> <<if ($slaves[$i].hormones == 1)>> @@ -3165,24 +3165,24 @@ <<set $slaves[$i].pubertyAgeXY -= 0.2>> <</if>> <<if $slaves[$i].drugs == "hormone enhancers">> - <<if ($slaves[$i].hormones == 1)>> - <<set $slaves[$i].pubertyAgeXY += 0.1>> - <<elseif ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pubertyAgeXY += 0.2>> - <<elseif ($slaves[$i].hormones == -1)>> - <<set $slaves[$i].pubertyAgeXY -= 0.1>> - <<elseif ($slaves[$i].hormones == -2)>> - <<set $slaves[$i].pubertyAgeXY -= 0.2>> - <</if>> + <<if ($slaves[$i].hormones == 1)>> + <<set $slaves[$i].pubertyAgeXY += 0.1>> + <<elseif ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pubertyAgeXY += 0.2>> + <<elseif ($slaves[$i].hormones == -1)>> + <<set $slaves[$i].pubertyAgeXY -= 0.1>> + <<elseif ($slaves[$i].hormones == -2)>> + <<set $slaves[$i].pubertyAgeXY -= 0.2>> + <</if>> <</if>> <<if ($slaves[$i].physicalAge < $slaves[$i].pubertyAgeXY) && ($slaves[$i].physicalAge > $slaves[$i].pubertyAgeXY-3) && ($slaves[$i].pubertyAgeXY < $potencyAge)>> - $possessiveCap body is showing signs of @@.orange;early puberty@@. + $possessiveCap body is showing signs of @@.orange;early puberty@@. <</if>> - - <</if>> - -<</if>> + + <</if>> /* closes male type */ + +<</if>> /*closes PPmod */ /* puberty - not announced for allowing surprise pregnancy */ <<if $slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1>> @@ -3204,71 +3204,75 @@ <<if $slaves[$i].inflation == 0>> /* PREGNANCY AND FERTILITY */ -<<if ($slaves[$i].preg > 0)>> /*EFFECTS OF PREGNANCY*/ - -<<if $slaves[$i].fuckdoll == 0>> -<<if $slaves[$i].fetish != "mindbroken">> -<<if ($slaves[$i].energy <= 90)>> -<<if ($slaves[$i].fetish is "pregnancy")>> - <<if ($slaves[$i].preg > 30)>> - Being a pregnancy fetishist and hugely pregnant confers an @@.green;improvement in her sexual appetite.@@ - <<set $slaves[$i].energy += 3>> - <<elseif ($slaves[$i].preg > 20)>> - Being a pregnancy fetishist and pregnant confers a @@.green;slow improvement in her sexual appetite.@@ - <<set $slaves[$i].energy += 2>> - <<elseif ($slaves[$i].preg > 5)>> - Her new pregnancy excites her and produces @@.green;very slow improvement in her sexual appetite.@@ - <<set $slaves[$i].energy += 1>> - <<elseif ($slaves[$i].preg <= 5)>> - The rigors of early pregnancy do not seem to decrease her sex drive. If anything, it seems to be exciting her. - <</if>> - <<if $slaves[$i].fetishKnown == 0>> - Given her enthusiasm, she appears to have a @@.lightcoral;pregnancy fetish@@. - <<set $slaves[$i].fetishKnown = 1>> - <</if>> -<<else>> - <<if ($slaves[$i].energy < 41)>> - <<if ($slaves[$i].preg <= 5)>> - The rigors of early pregnancy @@.red;reduce her sexual appetite.@@ - <<set $slaves[$i].energy -= 3>> - <<elseif ($slaves[$i].preg > 30)>> - Her advanced pregnancy @@.red;greatly suppresses her sexual appetite.@@ - <<set $slaves[$i].energy -= 3>> - <<elseif ($slaves[$i].preg > 20)>> - Her growing pregnancy @@.red;suppresses her sexual appetite.@@ - <<set $slaves[$i].energy -= 2>> - <<elseif ($slaves[$i].preg > 10)>> - Her visible pregnancy causes her to feel unattractive, @@.red;reducing her sex drive.@@ - <<set $slaves[$i].energy -= 1>> +<<if $slaves[$i].preg > 0>> /*EFFECTS OF PREGNANCY*/ + +<<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> + <<if $slaves[$i].fetish == "pregnancy">> + <<if $slaves[$i].preg > 30>> + Being a pregnancy fetishist and hugely pregnant confers an @@.green;improvement in her sexual appetite.@@ + <<set $slaves[$i].energy += 3>> + <<elseif $slaves[$i].preg > 20>> + Being a pregnancy fetishist and pregnant confers a @@.green;slow improvement in her sexual appetite.@@ + <<set $slaves[$i].energy += 2>> + <<elseif $slaves[$i].preg > 5>> + Her new pregnancy excites her and produces @@.green;very slow improvement in her sexual appetite.@@ + <<set $slaves[$i].energy += 1>> + <<elseif $slaves[$i].preg <= 5>> + The rigors of early pregnancy do not seem to decrease her sex drive. If anything, it seems to be exciting her. <</if>> - <<elseif ($slaves[$i].energy < 61)>> - <<if ($slaves[$i].preg <= 5)>> - The rigors of early pregnancy @@.red;slightly reduce her sexual appetite.@@ - <<set $slaves[$i].energy -= 1>> - <<elseif ($slaves[$i].preg > 30)>> - Her advanced pregnancy @@.green;increases her libido.@@ - <<set $slaves[$i].energy += 1>> + <<if $slaves[$i].fetishKnown == 0>> + Given her enthusiasm, she appears to have a @@.lightcoral;pregnancy fetish@@. + <<set $slaves[$i].fetishKnown = 1>> <</if>> - <<elseif ($slaves[$i].energy < 90)>> - <<if ($slaves[$i].preg <= 5)>> - The rigors of early pregnancy @@.red;reduce her sexual appetite.@@ - <<set $slaves[$i].energy -= 3>> - <<elseif ($slaves[$i].preg > 30)>> - Her advanced pregnancy comes with a hugely increased libido, @@.green;greatly increasing her sexual drive.@@ - <<set $slaves[$i].energy += 3>> - <<elseif ($slaves[$i].preg > 20)>> - Her growing pregnancy comes with an increased libido, @@.green;spurring her sexual appetite.@@ - <<set $slaves[$i].energy += 2>> + <<else>> + <<if $slaves[$i].energy < 41>> + <<if $slaves[$i].preg <= 5>> + The rigors of early pregnancy @@.red;reduce her sexual appetite.@@ + <<set $slaves[$i].energy -= 3>> + <<elseif $slaves[$i].preg > 30>> + Her advanced pregnancy @@.red;greatly suppresses her sexual appetite.@@ + <<set $slaves[$i].energy -= 3>> + <<elseif $slaves[$i].preg > 20>> + Her growing pregnancy @@.red;suppresses her sexual appetite.@@ + <<set $slaves[$i].energy -= 2>> + <<elseif $slaves[$i].preg > 10>> + Her visible pregnancy causes her to feel unattractive, @@.red;reducing her sex drive.@@ + <<set $slaves[$i].energy -= 1>> + <</if>> + <<elseif $slaves[$i].energy < 61>> + <<if $slaves[$i].preg <= 5>> + The rigors of early pregnancy @@.red;slightly reduce her sexual appetite.@@ + <<set $slaves[$i].energy -= 1>> + <<elseif $slaves[$i].preg > 30>> + Her advanced pregnancy @@.green;increases her libido.@@ + <<set $slaves[$i].energy += 1>> + <</if>> + <<elseif $slaves[$i].energy < 90>> + <<if $slaves[$i].preg <= 5>> + The rigors of early pregnancy @@.red;reduce her sexual appetite.@@ + <<set $slaves[$i].energy -= 3>> + <<elseif $slaves[$i].preg > 30>> + Her advanced pregnancy comes with a hugely increased libido, @@.green;greatly increasing her sexual drive.@@ + <<set $slaves[$i].energy += 3>> + <<elseif $slaves[$i].preg > 20>> + Her growing pregnancy comes with an increased libido, @@.green;spurring her sexual appetite.@@ + <<set $slaves[$i].energy += 2>> + <</if>> + <<else>> + <<if $slaves[$i].preg <= 5>> + The rigors of early pregnancy @@.red;reduce her sexual appetite.@@ + <<set $slaves[$i].energy -= 3>> + <<elseif $slaves[$i].preg > 30>> + Her advanced pregnancy, combined with her already high libido, has her practically begging for sex whenever she has a spare moment. + <<elseif $slaves[$i].preg > 20>> + Her growing pregnancy, combined with her already high libido, has her always itching for some sex. + <</if>> <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $slaves[$i].preg >= 10>> - <<if $slaves[$i].fuckdoll == 0>> - <<if $slaves[$i].fetish != "mindbroken">> + <<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> <<if ($slaves[$i].devotion) <= 20 && ($slaves[$i].pregSource == -1)>> She is filled with a feeling of @@.mediumorchid;revulsion@@ that your child is growing within her body. <<set $slaves[$i].devotion -= 1>> @@ -3281,38 +3285,38 @@ <<set $slaves[$i].trust += 1>> <</if>> <<if $slaves[$i].pregSource == $slaves[$i].ID>> - <<if $slaves[$i].sexualQuirk is "perverted">> + <<if $slaves[$i].sexualQuirk == "perverted">> She's @@.hotpink;aroused@@ at the mere concept that the baby growing in her belly was concieved by her own sperm. - <<set $slaves[$i].devotion += 1>> - <<else>> - She often becomes preoccupied with @@.gold;worry@@ that her self-concieved child will be born unhealthy. - <<set $slaves[$i].trust -= 1>> - <</if>> + <<set $slaves[$i].devotion += 1>> + <<else>> + She often becomes preoccupied with @@.gold;worry@@ that her self-concieved child will be born unhealthy. + <<set $slaves[$i].trust -= 1>> + <</if>> <</if>> <<switch $slaves[$i].pregControl>> <<case "speed up">> <<if $slaves[$i].assignment != "get treatment in the clinic" && $Nurse == 0>> - <<if $slaves[$i].devotion <= 20 && $slaves[$i].trust <= 50 && $slaves[$i].pregType >= 10>> - <<if $slaves[$i].sexualFlaw == "self hating">> - She is @@.hotpink;delirious with joy@@ over her straining womb. Every week she gets bigger, fuller and tighter; in her mind, it won't be long until she bursts, bringing her children into the world. - <<set $slaves[$i].devotion += 10>> - <<else>> - She is @@.gold;utterly terrified@@ by her straining womb. Every week she gets bigger, fuller and tighter; in her mind, it won't be long until she bursts, bringing her children into @@.mediumorchid;this wretched world.@@<<if $slaves[$i].pregType >= 20 && $slaves[$i].preg > 30>> She is absolutely huge, her stretchmark streaked orb of a belly keeps her painfully immobilized. She counts every second, hoping that she can make it to the next. Her mind @@.red;can't handle it and shatters,@@ leaving her nothing more than an overfilled broodmother.<<set $slaves[$i].fetish = "mindbroken">><</if>> + <<if $slaves[$i].devotion <= 20 && $slaves[$i].trust <= 50 && $slaves[$i].pregType >= 10>> + <<if $slaves[$i].sexualFlaw == "self hating">> + She is @@.hotpink;delirious with joy@@ over her straining womb. Every week she gets bigger, fuller and tighter; in her mind, it won't be long until she bursts, bringing her children into the world. + <<set $slaves[$i].devotion += 10>> + <<else>> + She is @@.gold;utterly terrified@@ by her straining womb. Every week she gets bigger, fuller and tighter; in her mind, it won't be long until she bursts, bringing her children into @@.mediumorchid;this wretched world.@@<<if $slaves[$i].pregType >= 20 && $slaves[$i].preg > 30>> She is absolutely huge, her stretchmark streaked orb of a belly keeps her painfully immobilized. She counts every second, hoping that she can make it to the next. Her mind @@.red;can't handle it and shatters,@@ leaving her nothing more than an overfilled broodmother.<<set $slaves[$i].fetish = "mindbroken">><</if>> + <<set $slaves[$i].devotion -= 10>> + <<set $slaves[$i].trust -= 10>> + <</if>> + <<elseif $slaves[$i].devotion <= 20 && $slaves[$i].trust <= 20>> + She is @@.gold;utterly terrified@@ by her straining womb and filled @@.mediumorchid;with disgust@@ that you've turned her into nothing more than a rapid breeding vessel. <<set $slaves[$i].devotion -= 10>> <<set $slaves[$i].trust -= 10>> + <<elseif $slaves[$i].devotion <= 80 && $slaves[$i].trust <= 80>> + She trusts you, but deep down @@.gold;she can't help but worry@@ over how fast she is growing. + <<set $slaves[$i].trust -= 2>> <</if>> - <<elseif $slaves[$i].devotion <= 20 && $slaves[$i].trust <= 20>> - She is @@.gold;utterly terrified@@ by her straining womb and filled @@.mediumorchid;with disgust@@ that you've turned her into nothing more than a rapid breeding vessel. - <<set $slaves[$i].devotion -= 10>> - <<set $slaves[$i].trust -= 10>> - <<elseif $slaves[$i].devotion <= 80 && $slaves[$i].trust <= 80>> - She trusts you, but deep down @@.gold;she can't help but worry@@ over how fast she is growing. - <<set $slaves[$i].trust -= 2>> - <</if>> <</if>> <<case "labor supressors">> <<if $slaves[$i].devotion <= 20 && ($slaves[$i].pregSource == -1)>> - She is filled with @@.mediumorchid;hate@@ that you're forcing her to continue carrying you child. + She is filled with @@.mediumorchid;hate@@ that you're forcing her to continue carrying your child. <<set $slaves[$i].devotion -= 5>> <</if>> <<case "slow gestation">> @@ -3332,117 +3336,100 @@ <<elseif $slaves[$i].preg > 30 && $slaves[$i].pregType < 50>> She often has to stop for breaks to soothe her kicking child<<if $slaves[$i].pregType > 1>>ren<</if>>. She is far enough along that she may go into early labor. <</if>> - <<if $slaves[$i].preg > 20>> - <<if random(1,100) == 69>> - <<if $slaves[$i].behavioralFlaw == "none" && $slaves[$i].behavioralQuirk == "none">> - <<set $seed to random(1,4)>> - <<if $seed == 1>> - <<set $slaves[$i].behavioralFlaw = "odd">> - The stress of her growing pregnancy leads her to begin @@.red;acting oddly@@. - <<elseif $seed == 2>> - <<set $slaves[$i].behavioralFlaw = "hates men">> - The stress of her growing pregnancy leads her to begin @@.red;disliking the company of men@@. - <<elseif $seed == 3>> - <<set $slaves[$i].behavioralFlaw = "hates women">> - The stress of her growing pregnancy leads her to begin @@.red;disliking the company of women@@. - <<else>> - <<set $slaves[$i].behavioralFlaw = "gluttonous">> - The stress of her growing pregnancy leads her to begin @@.red;taking solace in overeating@@. - <</if>> - <<elseif $slaves[$i].sexualFlaw == "none" && $slaves[$i].sexualQuirk == "none">> - <<set $seed to random(1,8)>> - <<if $seed == 1>> - <<set $slaves[$i].sexualFlaw = "hates oral">> - The stress of her growing pregnancy leads her to begin @@.red;rejecting oral sex@@. - <<elseif $seed == 2>> - <<set $slaves[$i].sexualFlaw = "hates anal">> - The stress of her growing pregnancy leads her to begin @@.red;rejecting anal sex@@. - <<elseif $seed == 3>> - <<set $slaves[$i].sexualFlaw = "hates penetration">> - The stress of her growing pregnancy leads her to begin @@.red;rejecting penetrative sex@@. - <<elseif $seed == 4>> - <<set $slaves[$i].sexualFlaw = "shamefast">> - The stress of her growing pregnancy leads her to become @@.red;paranoid about her naked body@@. - <<elseif $seed == 5>> - <<set $slaves[$i].sexualFlaw = "repressed">> - The stress of her growing pregnancy leads her to begin @@.red;rejecting sex@@. - <<elseif $seed == 6>> - <<set $slaves[$i].sexualFlaw = "apathetic">> - The stress of her growing pregnancy causes her to become @@.red;inert during sex@@. - <<elseif $seed == 7>> - <<set $slaves[$i].sexualFlaw = "crude">> - The stress of her growing pregnancy leads her to @@.red;become quite crude@@. - <<else>> - <<set $slaves[$i].sexualFlaw = "judgemental">> - The stress of her growing pregnancy causes her to become overly @@.red;judgemental of her partners@@. + <<if $slaves[$i].preg > 20 && random(1,100) == 69>> + <<if $slaves[$i].behavioralFlaw == "none" && $slaves[$i].behavioralQuirk == "none">> + <<set $seed = random(1,4)>> + <<if $seed == 1>> + <<set $slaves[$i].behavioralFlaw = "odd">> + The stress of her growing pregnancy leads her to begin @@.red;acting oddly@@. + <<elseif $seed == 2>> + <<set $slaves[$i].behavioralFlaw = "hates men">> + The stress of her growing pregnancy leads her to begin @@.red;disliking the company of men@@. + <<elseif $seed == 3>> + <<set $slaves[$i].behavioralFlaw = "hates women">> + The stress of her growing pregnancy leads her to begin @@.red;disliking the company of women@@. + <<else>> + <<set $slaves[$i].behavioralFlaw = "gluttonous">> + The stress of her growing pregnancy leads her to begin @@.red;taking solace in overeating@@. + <</if>> + <<elseif $slaves[$i].sexualFlaw == "none" && $slaves[$i].sexualQuirk == "none">> + <<set $seed = random(1,8)>> + <<if $seed == 1>> + <<set $slaves[$i].sexualFlaw = "hates oral">> + The stress of her growing pregnancy leads her to begin @@.red;rejecting oral sex@@. + <<elseif $seed == 2>> + <<set $slaves[$i].sexualFlaw = "hates anal">> + The stress of her growing pregnancy leads her to begin @@.red;rejecting anal sex@@. + <<elseif $seed == 3>> + <<set $slaves[$i].sexualFlaw = "hates penetration">> + The stress of her growing pregnancy leads her to begin @@.red;rejecting penetrative sex@@. + <<elseif $seed == 4>> + <<set $slaves[$i].sexualFlaw = "shamefast">> + The stress of her growing pregnancy leads her to become @@.red;paranoid about her naked body@@. + <<elseif $seed == 5>> + <<set $slaves[$i].sexualFlaw = "repressed">> + The stress of her growing pregnancy leads her to begin @@.red;rejecting sex@@. + <<elseif $seed == 6>> + <<set $slaves[$i].sexualFlaw = "apathetic">> + The stress of her growing pregnancy causes her to become @@.red;inert during sex@@. + <<elseif $seed == 7>> + <<set $slaves[$i].sexualFlaw = "crude">> + The stress of her growing pregnancy leads her to @@.red;become quite crude@@. + <<else>> + <<set $slaves[$i].sexualFlaw = "judgemental">> + The stress of her growing pregnancy causes her to become overly @@.red;judgemental of her partners@@. + <</if>> <</if>> <</if>> - <</if>> - <</if>> - <<if ($slaves[$i].fetish != "pregnancy")>> - <<if ($slaves[$i].fetish != "mindbroken")>> - <<if ($slaves[$i].fetishStrength <= 95)>> - <<if ($slaves[$i].oralCount+$slaves[$i].vaginalCount+$slaves[$i].analCount > 200)>> - <<if $fetishChangeChance > random(0,100)>> + <<if $slaves[$i].fetish != "pregnancy" && $slaves[$i].fetish != "mindbroken" && $slaves[$i].fetishStrength <= 95 && ($slaves[$i].oralCount+$slaves[$i].vaginalCount+$slaves[$i].analCount > 200) && $fetishChangeChance > random(0,100)>> The combination of pregnancy and constant sex has @@.pink;sexualized pregnancy for her.@@ - <<set $slaves[$i].fetish to "pregnancy", $slaves[$i].fetishKnown to 1, $slaves[$i].fetishStrength = 65>> - <</if>> - <</if>> - <</if>> + <<set $slaves[$i].fetish = "pregnancy", $slaves[$i].fetishKnown = 1, $slaves[$i].fetishStrength = 65>> <</if>> - <</if>> - <</if>> <</if>> - <<if ($slaves[$i].preg > 25) && ($slaves[$i].pregType >= 20) && ((($slaves[$i].assignment is "be your Concubine" || $slaves[$i].assignment is "serve in the master suite") && $masterSuitePregnancySlaveLuxuries is 1) || ($slaves[$i].diet == "high caloric"))>> - <<if ($slaves[$i].weight <= 65)>> + <<if ($slaves[$i].preg > 25) && ($slaves[$i].pregType >= 20) && ((($slaves[$i].assignment == "be your Concubine" || $slaves[$i].assignment == "serve in the master suite") && $masterSuitePregnancySlaveLuxuries == 1) || ($slaves[$i].diet == "high caloric"))>> + <<if ($slaves[$i].weight <= 65)>> $pronounCap has @@.lime;gained weight@@ in order to better sustain <<print $possessive>>self and $possessive children. <<set $slaves[$i].weight += 1>> <</if>> <<if (random(1,100) > 80)>> - <<if (($slaves[$i].boobs - $slaves[$i].boobsImplant) < 10000)>> - $possessiveCap breasts @@.lime;greatly swell@@ to meet the upcoming demand. - <<set $slaves[$i].boobs += 500>> - <<if $slaves[$i].boobShape != "saggy">> - <<if $slaves[$i].preg > 25>> - $possessiveCap immensely engorged @@.orange;breasts become saggy@@ in the last stages of $possessive pregnancy as her body undergoes changes in anticipation of the forthcoming birth. - <<set $slaves[$i].boobShape to "saggy">> + <<if (($slaves[$i].boobs - $slaves[$i].boobsImplant) < 10000)>> + $possessiveCap breasts @@.lime;greatly swell@@ to meet the upcoming demand. + <<set $slaves[$i].boobs += 500>> + <<if $slaves[$i].boobShape != "saggy" && $slaves[$i].preg > 25>> + $possessiveCap immensely engorged @@.orange;breasts become saggy@@ in the last stages of $possessive pregnancy as $possessive body undergoes changes in anticipation of the forthcoming birth. + <<set $slaves[$i].boobShape = "saggy">> + <</if>> <</if>> + <<if ($slaves[$i].hips < 2)>> + $possessiveCap hips @@.lime;widen@@ for $possessive upcoming birth. + <<set $slaves[$i].hips += 1>> <</if>> - <</if>> - <<if ($slaves[$i].hips < 2)>> - $possessiveCap hips @@.lime;widen@@ for $possessive upcoming birth. - <<set $slaves[$i].hips += 1>> - <</if>> - <<if ($slaves[$i].butt < 14)>> - $possessiveCap butt @@.lime;swells with added fat@@ from $possessive changing body. - <<set $slaves[$i].butt += 1>> - <</if>> - <</if>> - <<elseif ($slaves[$i].preg > 25) && ($slaves.pregType >= 10)>> - <<if random(1,100) > 80>> - <<if ($slaves[$i].boobs - $slaves[$i].boobsImplant) < 7500>> - $possessiveCap breasts @@.lime;swell@@ in preparation for $possessive growing brood. - <<set $slaves[$i].boobs += 150>> - <<if $slaves[$i].boobShape != "saggy">> - <<if $slaves[$i].preg > random(25,75)>> - $possessiveCap swollen @@.orange;breasts become saggy@@ in the last stages of $possessive pregnancy as $possessive body undergoes changes in anticipation of the forthcoming birth. - <<set $slaves[$i].boobShape to "saggy">> + <<if ($slaves[$i].butt < 14)>> + $possessiveCap butt @@.lime;swells with added fat@@ from $possessive changing body. + <<set $slaves[$i].butt += 1>> <</if>> <</if>> + <<elseif ($slaves[$i].preg > 25) && ($slaves.pregType >= 10)>> + <<if random(1,100) > 80 && (($slaves[$i].boobs - $slaves[$i].boobsImplant) < 7500)>> + $possessiveCap breasts @@.lime;swell@@ in preparation for $possessive growing brood. + <<set $slaves[$i].boobs += 150>> + <<if $slaves[$i].boobShape != "saggy">> + <<if $slaves[$i].preg > random(25,75)>> + $possessiveCap swollen @@.orange;breasts become saggy@@ in the last stages of $possessive pregnancy as $possessive body undergoes changes in anticipation of the forthcoming birth. + <<set $slaves[$i].boobShape = "saggy">> + <</if>> + <</if>> <</if>> - <</if>> - <<elseif ($slaves[$i].boobs - $slaves[$i].boobsImplant) < 1000>> + <<elseif ($slaves[$i].boobs - $slaves[$i].boobsImplant) < 1000>> <<if random(1,100) > 80>> - Pregnancy @@.lime;causes $possessive breasts to swell somewhat.@@ - <<set $slaves[$i].boobs += 50>> - <<if $slaves[$i].boobShape != "saggy">> - <<if $slaves[$i].preg > random(25,100)>> - $possessiveCap @@.orange;breasts become saggy@@ in the last stages of $possessive pregnancy as $possessive body undergoes changes in anticipation of the forthcoming birth. - <<set $slaves[$i].boobShape to "saggy">> - <</if>> + Pregnancy @@.lime;causes $possessive breasts to swell somewhat.@@ + <<set $slaves[$i].boobs += 50>> + <<if $slaves[$i].boobShape != "saggy" && $slaves[$i].preg > random(25,100)>> + $possessiveCap @@.orange;breasts become saggy@@ in the last stages of $possessive pregnancy as $possessive body undergoes changes in anticipation of the forthcoming birth. + <<set $slaves[$i].boobShape = "saggy">> + <</if>> <</if>> <</if>> - <</if>> <<if $slaves[$i].preg == 10>> $possessiveCap areolae darken with $possessive progressing pregnancy. <<else>> @@ -3450,52 +3437,50 @@ Her growing pregnancy renders her fake belly moot. <<set $slaves[$i].bellyAccessory = "none">> <</if>> - <<if $slaves[$i].preg > 20>> - <<if $slaves[$i].lactation == 0>> + <<if $slaves[$i].preg > 20 && $slaves[$i].lactation == 0>> <<if $slaves[$i].health < -20>> $pronoun's so unwell that natural lactation is unlikely. <<elseif $slaves[$i].weight <= -30>> $pronoun's so skinny that natural lactation is unlikely. <<elseif $slaves[$i].preg > random(18,30)>> - Pregnancy @@.lime;causes $object = begin lactating.@@ + Pregnancy @@.lime;causes $object to begin lactating.@@ <<set $slaves[$i].lactation = 1>> <</if>> <</if>> - <</if>> <</if>> <<else>> <<if $slaves[$i].pregType == 0>> - <<if ($slaves[$i].drugs == "super fertility drugs")>> - <<if (($masterSuitePregnancyFertilitySupplements == 1) && (($slaves[$i].assignment == "serve in the master suite") || ($slaves[_i].assignment == "be your Concubine")))>> - <<if ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pregType = random(20,29)>> - <<else>> - <<set $slaves[$i].pregType = random(10,29)>> - <</if>> - <<else>> - <<if ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pregType = random(10,29)>> + <<if ($slaves[$i].drugs == "super fertility drugs")>> + <<if (($masterSuitePregnancyFertilitySupplements == 1) && (($slaves[$i].assignment == "serve in the master suite") || ($slaves[_i].assignment == "be your Concubine")))>> + <<if ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pregType = random(20,29)>> + <<else>> + <<set $slaves[$i].pregType = random(10,29)>> + <</if>> <<else>> - <<set $slaves[$i].pregType = either(3, 4, 4, 4, 5, 5, 5, 10, 10, 20)>> + <<if ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pregType = random(10,29)>> + <<else>> + <<set $slaves[$i].pregType = either(3, 4, 4, 4, 5, 5, 5, 10, 10, 20)>> + <</if>> <</if>> - <</if>> - <<elseif ($slaves[$i].drugs is "fertility drugs")>> - <<if (($masterSuitePregnancyFertilitySupplements == 1) && (($slaves[$i].assignment == "serve in the master suite") || ($slaves[_i].assignment == "be your Concubine")))>> - <<if ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pregType = random(4,5)>> + <<elseif ($slaves[$i].drugs == "fertility drugs")>> + <<if (($masterSuitePregnancyFertilitySupplements == 1) && (($slaves[$i].assignment == "serve in the master suite") || ($slaves[_i].assignment == "be your Concubine")))>> + <<if ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pregType = random(4,5)>> + <<else>> + <<set $slaves[$i].pregType = either(2, 2, 3, 3, 3, 3, 4, 4, 5, 5)>> + <</if>> <<else>> - <<set $slaves[$i].pregType = either(2, 2, 3, 3, 3, 3, 4, 4, 5, 5)>> + <<if ($slaves[$i].hormones == 2)>> + <<set $slaves[$i].pregType = random(2,5)>> + <<else>> + <<set $slaves[$i].pregType = either(1, 1, 2, 2, 3, 3, 4, 4, 5, 5)>> + <</if>> <</if>> <<else>> - <<if ($slaves[$i].hormones == 2)>> - <<set $slaves[$i].pregType = random(2,5)>> - <<else>> - <<set $slaves[$i].pregType = either(1, 1, 2, 2, 3, 3, 4, 4, 5, 5)>> - <</if>> + <<set $slaves[$i].pregType = either(1, 1, 1, 1, 1, 1, 1, 1, 1, 2)>> <</if>> - <<else>> - <<set $slaves[$i].pregType = either(1, 1, 1, 1, 1, 1, 1, 1, 1, 2)>> - <</if>> <</if>> <</if>> @@ -3503,155 +3488,138 @@ /* IS NOT PREGNANT */ -<<if $slaves[$i].fuckdoll == 0>> -<<if $slaves[$i].fetish != "mindbroken">> -<<if isFertile($slaves[$i]) && ($slaves[$i].preg == -1)>> - <<if ($slaves[$i].devotion > 20)>> - <<if ($slaves[$i].fetish is "pregnancy")>> - <<if ($slaves[$i].fetishStrength > 60)>> - <<if ($slaves[$i].fetishKnown == 0)>> +<<if $slaves[$i].fuckdoll == 0 && isFertile($slaves[$i]) && $slaves[$i].preg == -1 && $slaves[$i].devotion > 20 && $slaves[$i].fetish == "pregnancy" && $slaves[$i].fetishStrength > 60>> + <<if $slaves[$i].fetishKnown == 0>> @@.mediumorchid;She's unhappy@@ that she's on contraceptives, revealing that she has a @@.lightcoral;deep desire to get pregnant.@@ <<set $slaves[$i].fetishKnown = 1>> <<else>> She badly wants to have a child, so @@.mediumorchid;she's unhappy@@ that she's on contraceptives. <</if>> <<set $slaves[$i].devotion -= 4>> - <</if>> - <</if>> - <</if>> -<</if>> -<</if>> <</if>> -<<if canGetPregnant($slaves[$i])>> -<<if $universalRulesImpregnation == "HG">> -<<if $HeadGirl != 0>> -<<if canBreed($slaves[$i], $HeadGirl)>> -<<if $slaves[$i].HGExclude == 0>> -<<if $HGCum == 0>> - It's $HeadGirl.slaveName's responsibility to impregnate fertile slaves, but your Head Girl can only fuck a limited number of slaves enough to ensure impregnation each week. -<</if>> -<<else>> - It's $HeadGirl.slaveName's responsibility to impregnate fertile slaves, but your Head Girl is forbidden from impregnating $slaves[$i].slaveName. -<</if>> -<<else>> - $HeadGirl.slaveName's sperm is unable to fertilize $slaves[$i].slaveName's ova, so she doesn't waste her seed trying. -<</if>> -<</if>> + +<<if isFertile($slaves[$i]) && $universalRulesImpregnation == "HG" && $HeadGirl != 0 && $HeadGirl.dick > 0>> + <<if $slaves[$i].HGExclude == 0>> + It's $HeadGirl.slaveName's responsibility to impregnate fertile slaves, but your Head Girl is forbidden from impregnating $slaves[$i].slaveName. + <<elseif !canBreed($slaves[$i], $HeadGirl)>> + It's $HeadGirl.slaveName's responsibility to impregnate fertile slaves, but $HeadGirl.slaveName's sperm is unable to fertilize $slaves[$i].slaveName's ova, so she doesn't waste her seed trying. + <<elseif $HGCum == 0>> + It's $HeadGirl.slaveName's responsibility to impregnate fertile slaves, but your Head Girl can only fuck a limited number of slaves enough to ensure impregnation each week. + <</if>> <</if>> + +<<if canGetPregnant($slaves[$i])>>/* CAN GET PREGNANT (fertile, not on contraceptives and not wearing chastity) */ + <<if ($universalRulesImpregnation == "PC" && $slaves[$i].eggType == "human")>> $slaves[$i].slaveName is ripe for breeding, so you ejaculate inside $object often. When you bore of $possessive fertile <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>, you keep $object around as you fuck other slaves so you can pull out of them, shove your cock into $object, and fill $object with your seed anyway. - <<if $slaves[$i].fuckdoll == 0>> - <<if $slaves[$i].fetish != "mindbroken">> + <<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> <<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust > -20)>> - She attempts to resist this treatment, and spends most of her days bound securely, with your cum dripping out of her <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>. This regimen fills her with @@.mediumorchid;hatred,@@ @@.gold;fear,@@ and @@.lime;a pregnancy.@@ - <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> - <<if ($slaves[$i].sexualFlaw is "none")>> - This unpleasant interlude leaves her @@.red;hating penetration@@ of her now-pregnant <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>. - <<if $slaves[$i].mpreg == 1>> - <<set $slaves[$i].sexualFlaw = "hates anal">> - <<else>> - <<set $slaves[$i].sexualFlaw = "hates penetration">> + She attempts to resist this treatment, and spends most of her days bound securely, with your cum dripping out of her <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>. This regimen fills her with @@.mediumorchid;hatred,@@ @@.gold;fear,@@ and @@.lime;a pregnancy.@@ + <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> + <<if ($slaves[$i].sexualFlaw == "none")>> + This unpleasant interlude leaves her @@.red;hating penetration@@ of her now-pregnant <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>. + <<if $slaves[$i].mpreg == 1>> + <<set $slaves[$i].sexualFlaw = "hates anal">> + <<else>> + <<set $slaves[$i].sexualFlaw = "hates penetration">> + <</if>> <</if>> - <</if>> <<elseif ($slaves[$i].devotion <= 20)>> - She complies fearfully with your use of her body. + She complies fearfully with your use of her body. <<elseif ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>> - She is @@.hotpink;absurdly pleased@@ by this treatment, @@.mediumaquamarine;trustingly@@ serving as your breeding bitch until she @@.lime;conceives.@@ She's so aroused by the constant insemination that having your dick, wet from another slave, pushed inside her to climax is often enough to bring her to orgasm in turn. - <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> - <<if ($slaves[$i].fetishStrength <= 95)>> - Such total satisfaction of her pregnancy fantasies @@.green;strengthens her fetish.@@ - <<set $slaves[$i].fetishStrength += 4>> - <</if>> + She is @@.hotpink;absurdly pleased@@ by this treatment, @@.mediumaquamarine;trustingly@@ serving as your breeding bitch until she @@.lime;conceives.@@ She's so aroused by the constant insemination that having your dick, wet from another slave, pushed inside her to climax is often enough to bring her to orgasm in turn. + <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> + <<if ($slaves[$i].fetishStrength <= 95)>> + Such total satisfaction of her pregnancy fantasies @@.green;strengthens her fetish.@@ + <<set $slaves[$i].fetishStrength += 4>> + <</if>> <<else>> - She serves you dutifully in this, @@.mediumaquamarine;trustingly@@ serving as your breeding bitch until she @@.lime;conceives.@@ - <<set $slaves[$i].trust += 5>> + She serves you dutifully in this, @@.mediumaquamarine;trustingly@@ serving as your breeding bitch until she @@.lime;conceives.@@ + <<set $slaves[$i].trust += 5>> <</if>> <</if>> - <</if>> <<set $activeSlave to $slaves[$i]>><<if $slaves[$i].mpreg == 1>><<AnalVCheck 10>><<else>><<VaginalVCheck 10>><</if>><<set $slaves[$i] to $activeSlave>> <<set $slaves[$i].preg = 1, $slaves[$i].pregSource = -1>> <<for $j = 0; $j < $slaves.length; $j++>> - <<if $HeadGirl.ID == $slaves[$j].ID>> - <<set $slaves[$j] = $HeadGirl>> - <<break>> - <</if>> + <<if $HeadGirl.ID == $slaves[$j].ID>> + <<set $slaves[$j] = $HeadGirl>> + <<break>> + <</if>> <</for>> <<elseif (($slaves[$i].vagina <= 0) || (($slaves[$i].ass <= 0) && ($slaves[$i].mpreg > 0)))>> -<<elseif ($universalRulesImpregnation == "HG") && ($slaves[$i].HGExclude == 0) && ($HGCum > 0) && ($slaves[$i].ID != $HeadGirl.ID) && canBreed($slaves[$i], $HeadGirl)>> +<<elseif ($universalRulesImpregnation == "HG") && ($slaves[$i].HGExclude == 0) && ($HGCum > 0) && ($slaves[$i].ID != $HeadGirl.ID) && canImpreg($slaves[$i], $HeadGirl)>> It's $HeadGirl.slaveName's responsibility to get $object pregnant, a task your <<if ($HeadGirl.fetish == "pregnancy") && ($HeadGirl.fetishKnown == 1) && ($HeadGirl.fetishStrength > 60)>> - pregnancy fetishist Head Girl is @@.hotpink;extremely pleased@@ to take on. - <<set $HeadGirl.devotion += 2>> - <<if ($HeadGirl.fetishStrength <= 95)>> - The opportunity @@.green;strengthens her pregnancy fetish@@ by indulgence. - <<set $HeadGirl.fetishStrength += 4>> - <</if>> + pregnancy fetishist Head Girl is @@.hotpink;extremely pleased@@ to take on. + <<set $HeadGirl.devotion += 2>> + <<if ($HeadGirl.fetishStrength <= 95)>> + The opportunity @@.green;strengthens her pregnancy fetish@@ by indulgence. + <<set $HeadGirl.fetishStrength += 4>> + <</if>> <<elseif ($HeadGirl.attrXX > 65) && ($HeadGirl.attrKnown == 1)>> - <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>-hungry Head Girl is @@.hotpink;happy@@ to take on. - <<set $HeadGirl.devotion += 1>> + <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>-hungry Head Girl is @@.hotpink;happy@@ to take on. + <<set $HeadGirl.devotion += 1>> <<else>> - Head Girl approaches dutifully. + Head Girl approaches dutifully. <</if>> - <<if $slaves[$i].fuckdoll == 0>> - <<if $slaves[$i].fetish != "mindbroken">> + <<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> <<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust > -20)>> - <<if (($HeadGirl.fetish == "sadist") || ($HeadGirl.fetish == "dom")) && ($HeadGirl.fetishKnown == 1) && ($HeadGirl.fetishStrength > 60)>> - Her interest is piqued, however, when $slaves[$i].slaveName shows signs of resistance. $HeadGirl.slaveName @@.hotpink;enthusiastically@@ @@.mediumorchid;rapes the poor girl@@ pregnant, ejaculating inside her victim more often than is really necessary for @@.lime;conception.@@ - <<set $HeadGirl.devotion += 2, $slaves[$i].devotion -= 5>> - <<else>> - $slaves[$i].slaveName tries to resist her, so $HeadGirl.slaveName is forced to @@.mediumorchid;rape the poor girl@@ pregnant, regularly ejaculating inside her until @@.lime;conception@@ is confirmed. - <<set $slaves[$i].devotion -= 4>> - <</if>> - <<if ($slaves[$i].sexualFlaw == "none")>> - This unpleasant interlude leaves her @@.red;hating penetration@@ of her violated <<if $slaves[$i].mpreg == 1>>anus<<else>>pussy<</if>>. - <<if $slaves[$i].mpreg == 1>> - <<set $slaves[$i].sexualFlaw = "hates anal">> + <<if (($HeadGirl.fetish == "sadist") || ($HeadGirl.fetish == "dom")) && ($HeadGirl.fetishKnown == 1) && ($HeadGirl.fetishStrength > 60)>> + Her interest is piqued, however, when $slaves[$i].slaveName shows signs of resistance. $HeadGirl.slaveName @@.hotpink;enthusiastically@@ @@.mediumorchid;rapes the poor girl@@ pregnant, ejaculating inside her victim more often than is really necessary for @@.lime;conception.@@ + <<set $HeadGirl.devotion += 2, $slaves[$i].devotion -= 5>> <<else>> - <<set $slaves[$i].sexualFlaw = "hates penetration">> + $slaves[$i].slaveName tries to resist her, so $HeadGirl.slaveName is forced to @@.mediumorchid;rape the poor girl@@ pregnant, regularly ejaculating inside her until @@.lime;conception@@ is confirmed. + <<set $slaves[$i].devotion -= 4>> + <</if>> + <<if ($slaves[$i].sexualFlaw == "none")>> + This unpleasant interlude leaves her @@.red;hating penetration@@ of her violated <<if $slaves[$i].mpreg == 1>>anus<<else>>pussy<</if>>. + <<if $slaves[$i].mpreg == 1>> + <<set $slaves[$i].sexualFlaw = "hates anal">> + <<else>> + <<set $slaves[$i].sexualFlaw = "hates penetration">> + <</if>> <</if>> - <</if>> <<elseif ($slaves[$i].devotion <= 20)>> - <<if (($HeadGirl.fetish == "sadist") || ($HeadGirl.fetish == "dom")) && ($HeadGirl.fetishKnown == 1) && ($HeadGirl.fetishStrength > 60)>> - Her interest is piqued, however, when it becomes clear that $slaves[$i].slaveName, though fearfully obedient, is not happy with being bred. $HeadGirl.slaveName @@.hotpink;enthusiastically@@ ensures that her victim @@.mediumorchid;does not enjoy@@ a week of being @@.lime;raped pregnant.@@ - <<set $HeadGirl.devotion += 2, $slaves[$i].devotion -= 3>> - <<else>> - $slaves[$i].slaveName, though fearfully obedient, is not happy with being bred, but $HeadGirl.slaveName @@.mediumorchid;rapes the poor girl@@ pregnant anyway, regularly ejaculating inside her until @@.lime;conception@@ is confirmed. - <<set $slaves[$i].devotion -= 2>> - <</if>> - <<if ($slaves[$i].sexualFlaw == "none")>> - This unpleasant interlude leaves her @@.red;hating penetration@@ of her violated <<if $slaves[$i].mpreg == 1>>anus<<else>>pussy<</if>>. - <<if $slaves[$i].mpreg == 1>> - <<set $slaves[$i].sexualFlaw = "hates anal">> + <<if (($HeadGirl.fetish == "sadist") || ($HeadGirl.fetish == "dom")) && ($HeadGirl.fetishKnown == 1) && ($HeadGirl.fetishStrength > 60)>> + Her interest is piqued, however, when it becomes clear that $slaves[$i].slaveName, though fearfully obedient, is not happy with being bred. $HeadGirl.slaveName @@.hotpink;enthusiastically@@ ensures that her victim @@.mediumorchid;does not enjoy@@ a week of being @@.lime;raped pregnant.@@ + <<set $HeadGirl.devotion += 2, $slaves[$i].devotion -= 3>> <<else>> - <<set $slaves[$i].sexualFlaw = "hates penetration">> + $slaves[$i].slaveName, though fearfully obedient, is not happy with being bred, but $HeadGirl.slaveName @@.mediumorchid;rapes the poor girl@@ pregnant anyway, regularly ejaculating inside her until @@.lime;conception@@ is confirmed. + <<set $slaves[$i].devotion -= 2>> + <</if>> + <<if ($slaves[$i].sexualFlaw == "none")>> + This unpleasant interlude leaves her @@.red;hating penetration@@ of her violated <<if $slaves[$i].mpreg == 1>>anus<<else>>pussy<</if>>. + <<if $slaves[$i].mpreg == 1>> + <<set $slaves[$i].sexualFlaw = "hates anal">> + <<else>> + <<set $slaves[$i].sexualFlaw = "hates penetration">> + <</if>> <</if>> - <</if>> <<elseif ($slaves[$i].devotion < 75)>> - <<if ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>> - $slaves[$i].slaveName, a pregnancy fetishist, is @@.hotpink;very willing to be bred@@ by the Head Girl, and eagerly takes her superior's cock bareback until @@.lime;conception@@ is verified. - <<set $slaves[$i].devotion += 2>> - <<if ($slaves[$i].fetishStrength <= 95)>> - Such total satisfaction of her pregnancy fantasies @@.green;strengthens her fetish.@@ - <<set $slaves[$i].fetishStrength += 4>> + <<if ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>> + $slaves[$i].slaveName, a pregnancy fetishist, is @@.hotpink;very willing to be bred@@ by the Head Girl, and eagerly takes her superior's cock bareback until @@.lime;conception@@ is verified. + <<set $slaves[$i].devotion += 2>> + <<if ($slaves[$i].fetishStrength <= 95)>> + Such total satisfaction of her pregnancy fantasies @@.green;strengthens her fetish.@@ + <<set $slaves[$i].fetishStrength += 4>> + <</if>> + <<else>> + $slaves[$i].slaveName is willing to be bred by the Head Girl, and takes her superior's cock bareback until @@.lime;conception@@ is verified. <</if>> <<else>> - $slaves[$i].slaveName is willing to be bred by the Head Girl, and takes her superior's cock bareback until @@.lime;conception@@ is verified. - <</if>> - <<else>> - <<if ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>> - $slaves[$i].slaveName, a pregnancy fetishist, considers breeding by the Head Girl @@.hotpink;a dream come true,@@ and the slaves carry on a torrid affair until @@.lime;conception@@ is verified. - <<set $slaves[$i].devotion += 2>> - <<if ($slaves[$i].fetishStrength <= 95)>> - Such total satisfaction of her pregnancy fantasies @@.green;strengthens her fetish.@@ - <<set $slaves[$i].fetishStrength += 4>> + <<if ($slaves[$i].fetish == "pregnancy") && ($slaves[$i].fetishKnown == 1) && ($slaves[$i].fetishStrength > 60)>> + $slaves[$i].slaveName, a pregnancy fetishist, considers breeding by the Head Girl @@.hotpink;a dream come true,@@ and the slaves carry on a torrid affair until @@.lime;conception@@ is verified. + <<set $slaves[$i].devotion += 2>> + <<if ($slaves[$i].fetishStrength <= 95)>> + Such total satisfaction of her pregnancy fantasies @@.green;strengthens her fetish.@@ + <<set $slaves[$i].fetishStrength += 4>> + <</if>> + <<else>> + $slaves[$i].slaveName is @@.hotpink;quite willing to be bred@@ by the Head Girl, whom she respects, and submissively takes her superior's cock bareback until @@.lime;conception@@ is verified. + <<set $slaves[$i].devotion += 1>> <</if>> - <<else>> - $slaves[$i].slaveName is @@.hotpink;quite willing to be bred@@ by the Head Girl, who she respects, and submissively takes her superior's cock bareback until @@.lime;conception@@ is verified. - <<set $slaves[$i].devotion += 1>> <</if>> - <</if>> - <</if>> <</if>> <<set $slaves[$i].preg = 1>> <<set $slaves[$i].pregSource = $HeadGirl.ID>> @@ -3659,47 +3627,40 @@ <<set $HeadGirl.penetrativeCount += 10>> <<set $penetrativeTotal += 10>> <<if $slaves[$i].mpreg == 1>> - <<set $slaves[$i].analCount += 10>> - <<set $analTotal += 10>> + <<set $slaves[$i].analCount += 10>> + <<set $analTotal += 10>> <<else>> - <<set $slaves[$i].vaginalCount += 10>> - <<set $vaginalTotal += 10>> + <<set $slaves[$i].vaginalCount += 10>> + <<set $vaginalTotal += 10>> <</if>> <<set $activeSlave = $slaves[$i]>><<if $slaves[$i].mpreg == 1>><<AnalVCheck 10>><<else>><<VaginalVCheck 10>><</if>><<set $slaves[$i] = $activeSlave>> <<for $j = 0; $j < $slaves.length; $j++>> - <<if $HeadGirl.ID == $slaves[$j].ID>> - <<set $slaves[$j] = $HeadGirl>> - <<break>> - <</if>> + <<if $HeadGirl.ID == $slaves[$j].ID>> + <<set $slaves[$j] = $HeadGirl>> + <<break>> + <</if>> <</for>> <<elseif ($slaves[$i].assignment == "be your Concubine") && ($slaves[$i].eggType == "human")>> - <<if $slaves[$i].fuckdoll == 0>> - <<if $slaves[$i].fetish != "mindbroken">> - <<if ($PC.dick == 1) && (random(1,100) > 50)>> + <<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken" && $PC.dick == 1 && random(1,100) > 50>> As your concubine, she takes care to only share her fertile <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>> with you. Her efforts paid off; @@.lime;she has gotten pregnant with your child.@@ - <<set $slaves[$i].preg = 1>> - <<set $slaves[$i].pregSource = -1>> - <</if>> - <</if>> + <<set $slaves[$i].preg = 1, $slaves[$i].pregSource = -1>> <</if>> <<elseif ($slaves[$i].assignment == "serve in the master suite")>> <<if ($PC.dick == 1) && (random(1,100) > 50) && ($slaves[$i].eggType == "human")>> - You frequently avail yourself to her fertile <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>. It's no surprise when @@.lime;she has ends up pregnant with your child.@@ - <<set $slaves[$i].preg = 1>> - <<set $slaves[$i].pregSource = -1>> + You frequently avail yourself to her fertile <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>. It's no surprise when @@.lime;she ends up pregnant with your child.@@ + <<set $slaves[$i].preg = 1, $slaves[$i].pregSource = -1>> <<else>> <<for $j = 0; $j < $MastSiIDs.length; $j++>> - <<if $MastSiIDs[$j].dick > 0 && $MastSiIDs[$j].balls > 0 && $MastSiIDs[$j].dickAccessory != "chastity" && $MastSiIDs.pubertyXY == 1 && canBreed($slaves[$i], $MastSiIDs[$j])>> - <<if $slaves[$i].ID == $MastSiIDs[$j].ID>> + <<if canImpreg($slaves[$i], $MastSiIDs[$j])>> /* catch for self-impregnation */ - <<if random(1,100) > 95>> - <<set $slaves[$i].pregSource = $slaves[$j].ID>> - <<break>> + <<if $slaves[$i].ID == $MastSiIDs[$j].ID>> + <<if random(1,100) <= 95>> + <<continue>> /* failed 5% chance; keep looking */ <</if>> - <<else>> - <<set $slaves[$i].pregSource = $MastSiIDs[$j].ID>> - <<break>> <</if>> + /* found eligible father */ + <<set $slaves[$i].pregSource = $MastSiIDs[$j].ID>> + <<break>> <</if>> <</for>> <</if>> @@ -3713,87 +3674,57 @@ Due to all the customers cumming in $possessive fertile, restrained <<if $slaves[$i].mpreg == 1>>ass<<else>>pussy<</if>>, @@.lime;$pronoun has gotten pregnant.@@ <<set $slaves[$i].preg = 1, $slaves[$i].pregSource = -2>> <<elseif (random(1,100) > 80)>> - <<if ($slaves[$i].vaginalCount > 0) || (($slaves[$i].analCount > 0) && ($slaves[$i].mpreg > 0))>> - <<if ($slaves[$i].assignment != "rest")>> - <<if ($slaves[$i].assignment != "stay confined")>> - @@.lime;$pronounCap has gotten pregnant.@@ - <<set $slaves[$i].preg = 1>> - <<for $m = 0; $m < $slaves.length; $m++>> - <<if $slaves[$i].relationshipTarget == $slaves[$m].ID>> - <<set $tempLover = $slaves[$m]>> - <<elseif $slaves[$i].rivalryTarget == $slaves[$m].ID>> - <<set $tempRival = $slaves[$m]>> - <<elseif $slaves[$i].subTarget == $slaves[$m].ID>> - <<set $tempSub = $slaves[$m]>> - <</if>> - <</for>> - <<set $seed = random(1,100)>> - <<if ($slaves[$i].relationship == -3 || $slaves[$i].relationship == -2) && $PC.dick == 1 && $slaves[$i].eggType == "human">> - <<set $slaves[$i].pregSource = -1>> - <<elseif $slaves[$i].relationship > 2 && canAchieveErection($tempLover) && $tempLover.dickAccessory != "chastity" && $tempLover.pubertyXY == 1 && canBreed($slaves[$i], $tempLover)>> - <<set $slaves[$i].pregSource = $tempLover.ID>> - <<elseif $slaves[$i].rivalry > 2 && canAchieveErection($tempRival) && $tempRival.dickAccessory != "chastity" && $tempRival.pubertyXY == 1 && canBreed($slaves[$i], $tempRival) && $seed > 95>>/* raped and knocked up by rival */ - <<set $slaves[$i].pregSource = $tempRival.ID>> - <<elseif $slaves[$i].subTarget != 0 && $slaves[$i].assignment == "be a subordinate slave">> - <<if canAchieveErection($tempSub) && $slaves[$m].dickAccessory != "chastity" && $tempSub.pubertyXY == 1 && canBreed($slaves[$i], $tempSub)>> - <<set $slaves[$i].pregSource = $tempSub.ID>> - <</if>> - <<elseif $seed > 60 && $PC.dick == 1 && $slaves[$i].eggType == "human">> - <<set $slaves[$i].pregSource = -1>> - <<elseif $seed <= 10 && $slaves[$i].eggType == "human">> - <<if $slaves[$i].assignment == "please you" && $PC.dick == 1>> + <<if ($slaves[$i].vaginalCount > 0) || (($slaves[$i].analCount > 0) && ($slaves[$i].mpreg > 0))>> /* TODO: compare to previous week totals? */ + <<if ($slaves[$i].assignment != "rest") && ($slaves[$i].assignment != "stay confined") && ($slaves[$i].assignment != "be confined in the cellblock")>> + <<for $m = 0; $m < $slaves.length; $m++>> + <<if $slaves[$i].relationshipTarget == $slaves[$m].ID>> + <<set $tempLover = $slaves[$m]>> + <<elseif $slaves[$i].rivalryTarget == $slaves[$m].ID>> + <<set $tempRival = $slaves[$m]>> + <<elseif $slaves[$i].subTarget == $slaves[$m].ID>> + <<set $tempSub = $slaves[$m]>> + <</if>> + <</for>> + <<set $seed = random(1,100)>> + <<if ($slaves[$i].relationship == -3 || $slaves[$i].relationship == -2) && $PC.dick == 1 && $slaves[$i].eggType == "human">> <<set $slaves[$i].pregSource = -1>> + <<elseif $slaves[$i].relationship > 2 && canImpreg($slaves[$i], $tempLover)>> /* erection not needed for impregnation via consensual sex play (FWB or better) */ + <<set $slaves[$i].pregSource = $tempLover.ID>> + <<elseif $slaves[$i].rivalry > 2 && $seed > 95 && canAchieveErection($tempRival) && canImpreg($slaves[$i], $tempRival)>> /* 4% chance to be raped and knocked up by bitter rival - erection needed */ + /* TODO: implement a scene for this event */ + <<set $slaves[$i].pregSource = $tempRival.ID>> + <<elseif $slaves[$i].subTarget != 0 && $slaves[$i].assignment == "be a subordinate slave" && canAchieveErection($tempSub) && canImpreg($slaves[$i], $tempSub)>> /* slave acting as top must have erection to impregnate - but gets first dibs (after relationships) if so */ + <<set $slaves[$i].pregSource = $tempSub.ID>> + <<elseif $PC.dick == 1 && $slaves[$i].eggType == "human" && ($seed > 60 || ($slaves[$i].assignment == "please you" && ($slaves[$i].toyHole == "all her holes" || $slaves[$i].toyHole == "pussy" || ($slaves[$i].mpreg == 1 && $slaves[$i].toyHole == "ass")) ))>> + <<set $slaves[$i].pregSource = -1>> + <<elseif $seed <= 10 && $slaves[$i].eggType == "human">> /* TODO: make this optional for players who want random fathers from among their own slaves only */ + <<set $slaves[$i].pregSource = -2>> <<else>> + /* default pregSource to a random citizen in case no eligible father is found below */ <<set $slaves[$i].pregSource = -2>> - <</if>> - <<elseif $slaves[$i].eggType != "human">> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$j].dick > 0 && $slaves[$j].balls > 0 && $slaves[$j].dickAccessory != "chastity" && $slaves[$j].dickAccessory != "combined chastity" && $slaves[$j].pubertyXY == 1 && canBreed($slaves[$i], $slaves[$j])>> - <<if $slaves[$i].ID is $slaves[$j].ID>> - /* catch for self-impregnation */ - <<if random(1,100) > 95>> - <<set $slaves[$i].pregSource = $slaves[$j].ID>> - <<break>> + /* pick a random starting point in the slave array and iterate (wrapping around) until finding eligible father or coming back to starting point */ + <<set $sourceSeed = random(0,$slaves.length-1)>> + <<for $m = $sourceSeed + 1; $m != $sourceSeed; $m++>> + <<if $m == $slaves.length>><<set $m = 0>><</if>> /* wrap around */ + <<if canImpreg($slaves[$m], $slaves[$i])>> + /* self-impregnation check */ + <<if $slaves[$m].ID == $slaves[$i].ID && random(1,100) < 95>> + <<continue>> /* 95% chance not to self-impregnate */ <</if>> - <<else>> - <<set $slaves[$i].pregSource = $slaves[$j].ID>> + <<set $slaves[$i].pregSource = $slaves[$m].ID>> /* passed the checks above, so this is an eligible father */ <<break>> <</if>> - <</if>> - <</for>> - <<if $slaves[$i].pregSource < 1>> - <<set $slaves[$i].preg = 0>> - <<set $slaves[$i].pregType = 0>> + <</for>> + <</if>> + /* pregmod: random citizens cannot father non-human children */ + <<if $slaves[$i].pregSource == -2 && $slaves[$i].eggType != "human">> <<set $slaves[$i].pregSource = 0>> + <<else>> + <<set $slaves[$i].preg = 1>> + @@.lime;$pronounCap has gotten pregnant.@@ <</if>> - <<else>> - <<set $sourceSeed = random(0,$slaves.length-1)>> - /* random starting point in the slave array */ - <<set $slaves[$i].pregSource = -2>> - /* temp .pregSource incase no matches are found */ -/*starts one above starting point and advances until it reaches starting point again or finds a suitable slave. */ - <<for $m = $sourceSeed+1; $m != $sourceSeed; $m++>> - <<if $m >= $slaves.length>> /* oob catch */ - <<set $m = -1>> - <<elseif $slaves[$m].dick > 0 && $slaves[$m].balls > 0 && $slaves[$m].dickAccessory != "chastity" && $slaves[$j].dickAccessory != "combined chastity" && $slaves[$m].pubertyXY == 1 && canBreed($slaves[$i], $slaves[$j])>> - <<if $slaves[$i].ID == $slaves[$m].ID>> - /* catch for self-impregnation */ - <<if random(1,100) > 95>> - <<set $slaves[$i].pregSource = $slaves[$m].ID>> - <<set $m = $sourceSeed-1>> - <</if>> - <<else>> - <<set $slaves[$i].pregSource = $slaves[$m].ID>> - <<set $m = $sourceSeed-1>> - <</if>> - <<elseif $m >= $slaves.length-1>> - <<set $m = -1>> - <</if>> - <</for>> - <</if>> - <</if>> - <</if>> - <</if>> + <</if>> /* closes invalid assignments check */ + <</if>> /* closes non-zero sex acts check */ <</if>> <</if>> /* CLOSES CAN GET PREGNANT */ <<if $slaves[$i].preg < 1>> @@ -3847,7 +3778,7 @@ <<print $slaves[$i].inflationType>>s <</switch>> with the weight of the fake belly resting on $possessive swollen stomach, forcing it to be removed. - <<set $slaves[$i].bellyAccessory to "none">> + <<set $slaves[$i].bellyAccessory = "none">> <</if>> <</if>> <<if $slaves[$i].fetish != "mindbroken" && $slaves[$i].fuckdoll == 0>> @@ -3929,8 +3860,7 @@ <</if>> <</if>> -<<if $slaves[$i].bellySag > 0>> -<<if $slaves[$i].preg < 10 && $slaves[$i].inflation == 0 && $slaves[$i].bellyImplant < 2000>> +<<if $slaves[$i].bellySag > 0 && !visibleBelly($slaves[$i])>> <<if $slaves[$i].muscles > 95>> <<if (random(1,100) > 1)>> $possessiveCap stretched, extreme muscles @@.green;firm up readily@@ after $possessive pregnancy. @@ -3965,7 +3895,6 @@ <</if>> <</if>> <</if>> -<</if>> <<if $slaves[$i].bellyImplant > 8000>> <<if $slaves[$i].fuckdoll == 0>> @@ -4149,20 +4078,20 @@ Society does not disapprove of your keeping a slave of the $arcologies[0].FSSupremacistRace race, since $pronoun is not in a publicly degrading role. <</if>> <<if $slaves[$i].preg > 0>> - <<if $slaves[$i].pregSource > 0>> - <<for $j to 0; $j < $slaves.length; $j++>> - <<if $slaves[$i].pregSource == $slaves[$j].ID>> - <<if $slaves[$i].race != $slaves[$j].race>> - Society @@.red;strongly disapproves@@ of your allowing a pure $arcologies[0].FSSupremacistRace slave to be miscegenated by $slaves[$j].slaveName. - <<FSChangePorn "Supremacist" -2>> - <<else>> - Society @@.green;strongly approves@@ of your using slave breeders like $slaves[$i].slaveName to propagate the $arcologies[0].FSSupremacistRace race. - <<FSChangePorn "Supremacist" 2>> + <<if $slaves[$i].pregSource > 0>> + <<for $j to 0; $j < $slaves.length; $j++>> + <<if $slaves[$i].pregSource == $slaves[$j].ID>> + <<if $slaves[$i].race != $slaves[$j].race>> + Society @@.red;strongly disapproves@@ of your allowing a pure $arcologies[0].FSSupremacistRace slave to be miscegenated by $slaves[$j].slaveName. + <<FSChangePorn "Supremacist" -2>> + <<else>> + Society @@.green;strongly approves@@ of your using slave breeders like $slaves[$i].slaveName to propagate the $arcologies[0].FSSupremacistRace race. + <<FSChangePorn "Supremacist" 2>> + <</if>> + <<break>> <</if>> - <<break>> + <</for>> <</if>> - <</for>> - <</if>> <</if>> <<if $slaves[$i].fuckdoll > 0>> Society @@.red;strongly disapproves@@ of your owning a $arcologies[0].FSSupremacistRace Fuckdoll. @@ -4284,7 +4213,7 @@ <<elseif $fakeBellies.includes($bellyAccessory)>> Society is @@.green;placated@@ by $slaves[$i].slaveName's fake belly. <<set $repGain += 0.01*$FSSingleSlaveRep>> - <<elseif !isFertile($slaves[$i]) && ($slaves[$i].preg == 0 || $slaves[$i].preg == -1)>> + <<elseif ($slaves[$i].ovaries == 0 && $slaves[$i].mpreg == 0) || ($slaves[$i].preg < -1) || ($slaves[$i].pubertyXX == 0)>> Society is @@.red;mildly disappointed@@ that $slaves[$i].slaveName is unable to become pregnant. <<FSChangePorn "Repopulationist" -1>> <<else>> @@ -4438,7 +4367,7 @@ <<FSChangePorn "Paternalist" -1>> <</if>> <</if>> - + <<if $arcologies[0].FSBodyPurist != "unset">> <<if ($slaves[$i].boobsImplant == 0) && ($slaves[$i].buttImplant == 0) && ($slaves[$i].lipsImplant == 0) && ($slaves[$i].bellyImplant == 0)>> Society @@.green;approves@@ of $slaves[$i].slaveName's natural body; this supports the fashion for surgically untouched slaves. @@ -5477,7 +5406,7 @@ <<if $slaves[$i].cervixImplant == 1>> <<if ($slaves[$i].bellyImplant >= 40000) || (($slaves[$i].bellyImplant > 10000) && ($arcologies[0].FSTransformationFetishistResearch != 1))>> - $possessiveCap cervix implant detected that the volume of filler in $slaves[$i].slaveName's belly reached $possessiveCap implant's threshold, and @@.orange;opens backflow@@ several times throughout week. + $possessiveCap cervix implant detected that the volume of filler in $slaves[$i].slaveName's belly reached $possessiveCap implant's threshold, and @@.orange;opens backflow@@ several times throughout week. <<if $arcologies[0].FSTransformationFetishistResearch != 1>> <<set $slaves[$i].bellyImplant = 10000>> <<else>> @@ -5758,7 +5687,7 @@ <</if>> <</if>> <</if>> - + <<if ($slaves[$i].dick >= 20)>> <<if $dickAccessibility == 1>> <<if ($slaves[$i].devotion > 20)>> @@ -5791,7 +5720,7 @@ <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> - + <<if ($slaves[$i].balls > 90)>> <<if $ballsAccessibility == 1>> <<if ($slaves[$i].devotion > 20)>> @@ -6200,7 +6129,7 @@ <<if $slaves[$i].breedingMark == 1>> <<if $slaves[$i].preg > 5>> <<if $slaves[$i].pregSource != -1>> - $slaves[$i].slaveName's weekly health checkup revealed she is pregnant with an unacceptable child. @@.red;Its life has been terminated, you have been fined ¤100000, and your rep amoung the Elite has been severely damaged.@@ + $slaves[$i].slaveName's weekly health checkup revealed she is pregnant with an unacceptable child. @@.red;Its life has been terminated, you have been fined ¤100000, and your rep among the Elite has been severely damaged.@@ <<set $slaves[$i].preg = 0>> <<set $slaves[$i].pregType = 0>> <<set $slaves[$i].pregSource = 0>> diff --git a/src/uncategorized/saTakeClasses.tw b/src/uncategorized/saTakeClasses.tw index 8bbd47ef9f8888a7d22793ffb65fb23ae18f13b3..ad51cb28dcce235da89bda3bbea206cac1b8cecd 100644 --- a/src/uncategorized/saTakeClasses.tw +++ b/src/uncategorized/saTakeClasses.tw @@ -161,7 +161,7 @@ takes courses in slavery<<if $schoolroomUpgradeSkills + $schoolroomUpgradeRemedi <<if ($slaves[$i].accent > 3)>> She has @@.green;learned some $language,@@ and can make her point with some gesturing, though she speaks $language horribly. <<set $slaves[$i].accent -= 1>> - <<if $slaves[$i].speechRules = "language lessons">> + <<if $slaves[$i].speechRules == "language lessons">> <<set $slaves[$i].speechRules = "accent elimination">> <</if>> <<elseif ($slaves[$i].accent == 3)>> diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw index 842684a446f597c777d53ecf011f7daa6f94c8de..0f858fe5a5d1688080913928898d3f29d19c648a 100644 --- a/src/uncategorized/saWhore.tw +++ b/src/uncategorized/saWhore.tw @@ -818,9 +818,9 @@ Her appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a da <<elseif ($slaves[$i].behavioralQuirk == "funny")>> She brings unintentional comic relief to the hard work of prostitution. <<elseif ($slaves[$i].behavioralQuirk == "adores women")>> - She's a favorite among female customers, who she greets with real enthusiasm. + She's a favorite among female customers, whom she greets with real enthusiasm. <<elseif ($slaves[$i].behavioralQuirk == "adores men")>> - She's a favorite among male customers, who she greets with frank and open lust. + She's a favorite among male customers, whom she greets with frank and open lust. <<elseif ($slaves[$i].behavioralQuirk == "fitness")>> She's eager to please customers because she finds validation in their willingness to pay for sex with her. <<elseif ($slaves[$i].behavioralQuirk == "insecure")>> diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw index 026f726e4ae2fd852b8d0457d31858edbd859174..347da71e87d6dce08bccf9c77f29bd0320f5e667 100644 --- a/src/uncategorized/seNonlethalPit.tw +++ b/src/uncategorized/seNonlethalPit.tw @@ -407,7 +407,7 @@ You review the rules - the combatants are wearing light gloves, and the fight wi <</if>> <<elseif (_loser.eyebrowPiercing > 0)>> The fight starts slowly, with the girls trading jabs. Just as the spectators are getting bored, _loser.slaveName takes a glancing blow to the eyebrow. Her piercing catches on _winner.slaveName's glove and tears out. _loser.slaveName goes after her tormentor in fury, streaming blood, the piercing forgotten on the mat. Any tendency _winner.slaveName might have had to feel badly about this is extinguished by the assault, and soon _winner.slaveName is even willing to follow up on the success by targeting pierced body parts. The fight ends with poor _loser.slaveName writhing in pain on the mat, @@.red;leaking blood@@ from several terribly shredded areas. - <<set _loser.health -= 10>> + <<set _loser.health -= 10, _loser.eyebrowPiercing = 0>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the gory spectacle, and your @@.yellowgreen;cut of the betting@@ is reasonable. <<set $cash += 1000>> @@ -452,7 +452,7 @@ You review the rules - the combatants are wearing light gloves, and the fight wi The audience is @@.green;not very impressed@@ by this easy win. <<set $rep += 25>> <</if>> -<<else>> +<<elseif canDoVaginal(_loser)>> _winner.slaveName wants to win badly enough that she takes an extremely unpleasant shortcut to victory. The instant the fight starts, she furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends herself with her arms, at which point _winner.slaveName delivers a mighty cunt punt. _loser.slaveName goes straight down, her mouth soundlessly opening and closing and tears leaking from her closed eyes while her hands desperately shield her outraged pussy. _winner.slaveName follows her down and puts the unresisting girl's head in a simple lock. <<if $pitAudience == "paid">> The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive. @@ -461,6 +461,15 @@ You review the rules - the combatants are wearing light gloves, and the fight wi The audience is @@.green;not very impressed@@ by this easy win. <<set $rep += 25>> <</if>> +<<else>> + _winner.slaveName wants to win badly enough that she takes an extremely unpleasant shortcut to victory. The instant the fight starts, she furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends herself with her arms, at which point _winner.slaveName delivers a clenched fist to _loser.slaveName's throat. _loser.slaveName staggers back, wheezing for breath with tears leaking from her closed eyes. _winner.slaveName takes advantage of _loser.slaveName's vulnerability to quickly trip and pin the coughing loser. + <<if $pitAudience == "paid">> + The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive. + <<set $cash += 500>> + <<elseif $pitAudience == "free">> + The audience is @@.green;not very impressed@@ by this easy win. + <<set $rep += 25>> + <</if>> <</if>> <</nobr>> @@ -482,31 +491,29 @@ You throw the victor's strap-on down to _winner.slaveName. She respects _loser.slaveName's anal virginity, and hauls the loser to her knees for a facefuck. <<set _loser.oralCount += 1>> <<set $oralTotal += 1>> -<<elseif (_loser.vagina < 0)>> - She shoves _loser.slaveName's face into the mat, spreads her buttocks, and spits on her asshole before penetrating it roughly. - <<set _loser.analCount += 1>> - <<set $analTotal += 1>> <<elseif (_loser.vagina == 0) && (_loser.anus == 0)>> She respects _loser.slaveName's virgin holes, and hauls the loser to her knees for a facefuck. <<set _loser.oralCount += 1>> <<set $oralTotal += 1>> -<<elseif (_loser.vagina == 0)>> +<<elseif (_loser.vagina <= 0) && canDoAnal(_loser)>> She shoves _loser.slaveName's face into the mat, spreads her buttocks, and spits on her asshole before penetrating it roughly. <<set _loser.analCount += 1>> <<set $analTotal += 1>> -<<else>> +<<elseif canDoVaginal(_loser)>> She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's cunt. <<set _loser.vaginalCount += 1>> <<set $vaginalTotal += 1>> - <<if (_winner.dick > 0) && (_winner.balls > 0) && (_winner.hormones < 1)>> - <<if isFertile(_loser)>> + <<if canAchieveErection(_winner) && canImpreg(_loser, _winner)>> <<if canTalk(_loser) == false>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> <<if random(1,100) > 50>> <<set (_loser.preg = 1)>> <<set (_loser.pregSource = _winner.ID)>> <</if>> - <</if>> <</if>> +<<else>> + She considers her options briefly, then hauls the loser to her knees for a facefuck. + <<set _loser.oralCount += 1>> + <<set $oralTotal += 1>> <</if>> <<if (_winner.energy > 95)>> @@ -529,7 +536,7 @@ You throw the victor's strap-on down to _winner.slaveName. <<set _winner.devotion -= 2>> <</if>> <<if (_winner.rivalry > 0) && (_loser.ID == _winner.rivalryTarget)>> - She @@.hotpink;relishes@@ the chance to abuse _loser.slaveName, who she dislikes. + She @@.hotpink;relishes@@ the chance to abuse _loser.slaveName, whom she dislikes. <<set _winner.devotion += 5>> <<elseif (_winner.relationship >= 0) && (_loser.ID == _winner.relationshipTarget) && (_winner.devotion >= 20)>> She accepts having to abuse _loser.slaveName, and plans to make it up to her later. @@ -599,7 +606,7 @@ You throw the victor's strap-on down to _winner.slaveName. <<set _loser.trust -= 10>> <</if>> <<if (_loser.rivalry > 0) && (_winner.ID == _loser.rivalryTarget)>> - She is @@.mediumorchid;embarrassed@@ by losing to and being raped by _winner.slaveName, who she dislikes, and @@.gold;fears@@ that it will happen again. + She is @@.mediumorchid;embarrassed@@ by losing to and being raped by _winner.slaveName, whom she dislikes, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <<elseif (_loser.relationship >= 0) && (_winner.ID == _loser.relationshipTarget) && (_loser.devotion >= 4)>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index b68900a9e2b789ab70d633fa2c608105e6c59f44..1c002b6f04ce4699cc7c4f57d5ba78b9d8935233 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -819,17 +819,11 @@ __Contraception__: <span id="fertility"><strong><<if $activeSlave.preg == -1>><< <</if>> <<if $propOutcome == 1>> -<<if $activeSlave.fuckdoll == 0>> - <<if $activeSlave.breedingMark == 0>> - <<if isFertile($activeSlave)>> - <<if $activeSlave.eggType == "human">> - <br> - [[Breeder Eligibility Exam|BreedingTest]] - <</if>> - <</if>> + <<if $activeSlave.breedingMark == 0 && $activeSlave.fuckdoll == 0 && $activeSlave.eggType == "human" && isFertile($activeSlave)>> + <br> + [[Breeder Eligibility Exam|BreedingTest]] <</if>> <</if>> -<</if>> <span id="bloating"> <<if $activeSlave.inflation > 0>> diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw index 4a9222019c51575a6c63deb8e778f00806a0712b..41c918be1ca867ee345378ac4befcad07c99e157 100644 --- a/src/uncategorized/spaReport.tw +++ b/src/uncategorized/spaReport.tw @@ -92,7 +92,7 @@ She's so intelligent she can suss out the cause of slaves' emotional issues and counsel them effectively. <<set _idleBonus++>> <</if>> - <<if isFertile($Attendant) || ($Attendant.preg > 0) || ($Attendant.birthsTotal > 0)|| ($Attendant.bellyImplant >= 2000)>> + <<if isFertile($Attendant) || ($Attendant.preg > 0) || ($Attendant.birthsTotal > 0) || ($Attendant.bellyImplant >= 2000)>> She has a natural mothering instinct and really makes her girls feel at home. <<set _idleBonus++, _healthBonus++>> <</if>> diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index 2895cd8a536aab1619d8ee7468740e9013743345..cc9cb338b8d9b0111eb8a851d0e3b4790f64ba46 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -65,14 +65,6 @@ As the remote surgery's long recovery cycle completes, <<default>> <<removeJob $activeSlave $activeSlave.assignment>> <</switch>> - As the remote surgery's long recovery cycle completes, - <<if $surgeryType == "fuckdoll">> - your new Fuckdoll <<if ($activeSlave.amp != 1)>>stumbles<<else>>is carried<</if>> out of the surgery room. The only <<if $activeSlave.vagina > -1>>areas of skin visible are those around its vulva and anus<<else>>area of skin visible is that around its anus<</if>><<if $activeSlave.lips > 95>>, though its lips are also visible as its facepussy makes the standard Fuckdoll mouth insert unnecessary<</if>>. You can see it starting to struggle against the constricting material of the Fuckdoll suit as the sedation wears off. Other than the tiny area of exposed skin and the slight movement, there's no indication that the sex doll in front of you is alive at all. - <<elseif $surgeryType == "fuckdollExtraction">> - $activeSlave.slaveName <<if ($activeSlave.amp != 1)>>walks<<else>>is carried<</if>> out of the surgery room. - <<else>> - $activeSlave.slaveName <<if ($activeSlave.amp != 1)>>walks<<else>>is carried<</if>> out of the surgery room<<if canSee($activeSlave)>> and catches sight of herself in the floor-length mirror outside the door<<else>> and is detailed the modifications done to her body, assuming she hasn't already realized them<</if>>. - <</if>> <<if $familyTesting == 1>> <<for $j = 0; $j < $slaves.length; $j++>> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 8475b937f75e1494cbcbbc9297376056db1aefbe..f2fcbdb07e83b6bbab481e3579d80653306e0c28 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -394,11 +394,11 @@ Meanwhile, <<if $activeSlave.rivalry >= 3>> - _partnerSlave.slaveName, who she hates, + _partnerSlave.slaveName, whom she hates, <<elseif $activeSlave.rivalry >= 2>> her rival _partnerSlave.slaveName <<else>> - _partnerSlave.slaveName, who she dislikes, + _partnerSlave.slaveName, whom she dislikes, <</if>> <<switch _partnerSlave.assignment>> diff --git a/src/utility/assignWidgets.tw b/src/utility/assignWidgets.tw index 4b45a4555e17be385de0b4cf8e44a9037e4c0161..a027c749be822f52a6f6129f1299c58cd58ec9e5 100644 --- a/src/utility/assignWidgets.tw +++ b/src/utility/assignWidgets.tw @@ -70,7 +70,7 @@ <</if>> <</if>> -<<set $slaves[_wi] = $args[0], $i = _wi>> /* save changes to slave array, and set $i in case we call "SA chooses own clothes" next, since it uses $slave[$i] */ +<<set $slaves[_wi] = $args[0], $i = _wi>> /* save changes to slave array, and set $i in case we call "SA chooses own clothes" next, since it uses $slaves[$i] */ <<if $slaves[_wi].choosesOwnClothes == 1>><<include "SA chooses own clothes">><<set $args[0] = $slaves[_wi]>><</if>> /* update clothes, then update $args[0] */ diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw index 12468771c452af0dcdcb7a9981e90b8aa80a840e..20f57802206049a80754037f4f43352a15cc8d3c 100644 --- a/src/utility/birthWidgets.tw +++ b/src/utility/birthWidgets.tw @@ -1204,7 +1204,7 @@ Once meal time comes around and food shoved into her cell does anyone think some <<case "be confined in the arcade">> - Or she would have been, if she weren't locked in an arcade cabinet. A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on her exposed rear. While her mouth is filled with a customer's dick, her body instinctively attempts laboring on her child<<if $slaves[$i].pregType > 1>>ren<</if>>. However, she soon finds that she is incapable of actually giving birth to her child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from her nethers, she desperately tries to get anyone's attention. The attendant rushes to her aid, but fails to get the cabinet open in time to save $slaves[$i].slaveName. Her and her child<<if $slaves[$i].pregType > 1>>ren<</if> were an unfortunate loss. + Or she would have been, if she weren't locked in an arcade cabinet. A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on her exposed rear. While her mouth is filled with a customer's dick, her body instinctively attempts laboring on her child<<if $slaves[$i].pregType > 1>>ren<</if>>. However, she soon finds that she is incapable of actually giving birth to her child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from her nethers, she desperately tries to get anyone's attention. The attendant rushes to her aid, but fails to get the cabinet open in time to save $slaves[$i].slaveName. Her and her child<<if $slaves[$i].pregType > 1>>ren<</if>> were an unfortunate loss. <<case "be confined in the cellblock">> Since she is locked in a cell, she doesn't have far to go. Reluctantly, she begins laboring on her child<<if $slaves[$i].pregType > 1>>ren<</if>>. However, she soon finds that she is incapable of actually giving birth to her child<<if $slaves[$i].pregType > 1>>ren<</if>>. As blood begins to seep from her nethers, she desperately tries to get anyone's attention. @@ -1798,4 +1798,4 @@ Her helper arrives with aid far too late. She screams when she sees $slaves[$i]. <</if>> <</if>> -<</widget>> \ No newline at end of file +<</widget>> diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw index 3a212c7b97f09e0f23f540cf885ebe41a1bab9b9..945343b0ec5e361fb01a14a12fa6282d0998aea2 100644 --- a/src/utility/descriptionWidgets.tw +++ b/src/utility/descriptionWidgets.tw @@ -4308,8 +4308,7 @@ $pronounCap's got a <<else>> <<if ($activeSlave.dick != 0) && ($activeSlave.hormones > 0) && ($activeSlave.amp == 1)>> The aphrodisiacs combined with the hormones that keep $object flaccid have $object sexually frustrated; $pronoun's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.analCount > 9)))>>unconsciously rubbing $possessive ass against whatever's next to $object, and <</if>>humping $possessive dick against whatever $pronoun can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $possessiveCap efforts force $possessive distended middle to jiggle around, stirring up the aphrodisiacs contained in $possessive gut and strengthening their effects even more.<</if>> - <<elseif ($activeSlave.dick != 0) - and ($activeSlave.balls == 0) && ($activeSlave.amp == 1)>> + <<elseif ($activeSlave.dick != 0) && ($activeSlave.balls == 0) && ($activeSlave.amp == 1)>> The aphrodisiacs combined with the lack of balls that keeps $object flaccid have $object sexually frustrated; $pronoun's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.analCount > 9)))>>unconsciously rubbing $possessive ass against whatever's next to $object, and <</if>>humping $possessive dick against whatever $pronoun can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $possessiveCap efforts force $possessive distended middle to jiggle around, stirring up the aphrodisiacs contained in $possessive gut and strengthening their effects even more.<</if>> <<elseif ($activeSlave.dick != 0) && ($activeSlave.hormones > 0)>> The aphrodisiacs combined with the hormones that keep $object flaccid have $object sexually frustrated; $pronoun's touching $possessive limp dick distractedly<<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.analCount > 9)))>> and unconsciously rubbing $possessive ass against whatever's next to $object<</if>>.<<if $activeSlave.inflationType == "aphrodisiac">> $possessiveCap efforts force $possessive distended middle to jiggle around, stirring up the aphrodisiacs contained in $possessive gut and strengthening their effects even more.<</if>> @@ -10576,4 +10575,4 @@ $pronounCap has The Societal Elites' mark designating $possessive as a breeder is prominently displayed across $possessive lower belly, beneath $possessive navel. <</if>> -<</widget>> \ No newline at end of file +<</widget>>