diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index e3f159dd5fc915b21e446efd3d4b44d682dec8e9..7414b671d432b795e6c1abd7ce696a1927d6ba84 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -5018,7 +5018,7 @@ 06/30/17 36 - -enabled Hodenistic Decadence's research + -enabled Hedonistic Decadence's research -fixed some anal chastity oversights -fixed some slave count related inconsistencies (still lots to do with saRules) -shifted conception to a widget for future pregnancy related content @@ -7735,7 +7735,7 @@ 0.8.5.2 -added full broodmother support to the new birth system, complete with their own variants -added missing PA appearances in some events - -other things I forgot after the update failed last weel + -other things I forgot after the update failed last week 09/03/16 diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index 4c0f8f0d206e3ba6b265cefbaccbcbcf33a6bedc..925d2be308dd28977f2b65d2dcc9f4681513b2ef 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -3584,6 +3584,6 @@ or fetusCTR - array with CTR control points. These three array is linked, and values in second and third should be in the same order as in first. (Week of .fetusWeek[i] is correspond to .fetusSize[i] and fetusCTR[i]) - Control points - it's points of graph as if it built on paper (one axis - fetusWeek, other - fetusSize/fetusCTR). This graph data used to get actual size of fetus, so no need for manual setting of every week data in array. + Control points - it's points of graph as if it built on paper (one axis - fetusWeek, other - fetusSize/fetusCTR). This graph data is used to get actual size of fetus, so no need for manual setting of every week data in array. What is CTR? In most medical data, human fetus size (length) measured as "crown to rump" from 1 to 20 weeks, and "crown to heel" later. Formula that calculate volume of womb should get data in single format. So there is need CTR rate - value that describe difference between full "crown to heel" and "crown to rump" length of fetus (also it's can be used to control approximation of legs, hands and tails volume). For most animal fetus data it's always 1 as they are not bipedal and "crown to rump" is natural measurements for them. But CTR rate changes might be needed to get more accurate results for volume calculations, as fetus is not sphere and length - not always have the same relation to it's volume. diff --git a/src/SpecialForce/TrickShotNight.tw b/src/SpecialForce/TrickShotNight.tw index 4db309b8e8f290481736c2b2e326cfdd26154e0d..3de32e9788f0c86c50f81efc3547480186f18c64 100644 --- a/src/SpecialForce/TrickShotNight.tw +++ b/src/SpecialForce/TrickShotNight.tw @@ -46,8 +46,7 @@ Despite your direct elevator, interaction with the majority of your security for <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> diff --git a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw index f2f7da1aa021f06f852ddf91d06acf2860a4b4cf..31bca5cfb2770698102d494b85ecfaf2140d85eb 100644 --- a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw +++ b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw @@ -13,14 +13,14 @@ <<if $arcologies[_i].FSSupremacist != "unset">> <<set $arcologies[_i].FSSupremacist = Number($arcologies[_i].FSSupremacist) || "unset">> <</if>> - <<if $arcologies[_i].FSSupremacist != "unset" && !["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($arcologies[_i].FSSupremacistRace)>> - <<set $arcologies[_i].FSSupremacistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> + <<if $arcologies[_i].FSSupremacist != "unset" && !setup.filterRacesLowercase.includes($arcologies[_i].FSSupremacistRace)>> + <<set $arcologies[_i].FSSupremacistRace = setup.filterRacesLowercase.random()>> <</if>> <<if $arcologies[_i].FSSubjugationist != "unset">> <<set $arcologies[_i].FSSubjugationist = Number($arcologies[_i].FSSubjugationist) || "unset">> <</if>> - <<if $arcologies[_i].FSSubjugationist != "unset" && !["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($arcologies[_i].FSSubjugationistRace)>> - <<set $arcologies[_i].FSSubjugationistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> + <<if $arcologies[_i].FSSubjugationist != "unset" && !setup.filterRacesLowercase.includes($arcologies[_i].FSSubjugationistRace)>> + <<set $arcologies[_i].FSSubjugationistRace = setup.filterRacesLowercase.random()>> <</if>> <<if $arcologies[_i].FSGenderRadicalist != "unset">> <<set $arcologies[_i].FSGenderRadicalist = Number($arcologies[_i].FSGenderRadicalist) || "unset">> diff --git a/src/facilities/nursery/longChildDescription.tw b/src/facilities/nursery/longChildDescription.tw index 4442780ca75ec36392e1e0d1fe9fef3c3487af1e..076f558440fcb7d3fd2ffc7085e12179897cb05b 100644 --- a/src/facilities/nursery/longChildDescription.tw +++ b/src/facilities/nursery/longChildDescription.tw @@ -2,7 +2,6 @@ /*TODO: This may need rewriting - a lot of it is copy-pasted from longSlaveDescription.tw */ -<<run SlavePronouns($activeChild)>> <<setLocalPronouns $activeChild>> /* 000-250-006 */ diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw index 82a4a5c10834bb64588e54df7f73e305c136c25d..a5243147a0273c3233c700f8e92247facb6b8045 100644 --- a/src/init/setupVars.tw +++ b/src/init/setupVars.tw @@ -31,6 +31,7 @@ equine: {type: "equine", normalOvaMin:1, normalOvaMax: 1, normalBirth: 48, minLi /* equine: {type: "equine", normalOvaMin:1, normalOvaMax: 1, normalBirth: 48, minLiveBirth: 44, fetusWeek: [0, 4, 7, 9, 10, 12, 17, 21, 25, 34, 38, 48, 192, 99999], fetusSize: [0, 2.5, 3, 4, 6.3, 14, 17.7, 30, 61, 76.2, 92, 121, 235, 235], fetusRate: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] sizeType: 0} */ <<set setup.filterRaces = ["Amerindian", "Asian", "Black", "Indo-Aryan", "Latina", "Malay", "Middle Eastern", "Mixed Race", "Pacific Islander", "Semitic", "Southern European", "White"]>> +<<set setup.filterRacesLowercase = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> <<set setup.filterRegions = ["Africa", "Asia", "Australia", "Europe", "Middle East", "North America", "South America"]>> /* START Custom Nationalities region filter */ diff --git a/src/pregmod/FSuckle.tw b/src/pregmod/FSuckle.tw index fe422c036d15b0fcbacc0b09754a40999066c28e..d1080a0acfdbe0635beff52c01542f51c6a3dd87 100644 --- a/src/pregmod/FSuckle.tw +++ b/src/pregmod/FSuckle.tw @@ -4,7 +4,6 @@ <<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> - <<set $activeSlave.mammaryCount++>> <<set $mammaryTotal++>> <<if $PC.pregMood == 0 || $PC.preg < 28>> diff --git a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw index 522b9a717770efb5ebad27b704b8786606f031ba..7ca573244c5453a18629394e97cb9a5a774636da 100644 --- a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw +++ b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw @@ -2,7 +2,9 @@ <<set $nextButton = "Back", $nextLink = "Buy Slaves", $returnTo = "Buy Slaves", $showEncyclopedia = 1, $encyclopedia = "Kidnapped Slaves">> -<<if $JFCOrder == 0>>You work up a new slave order for posting where slave merchants can work to fulfill it.<</if>> <<if $JFCOrder == 1>>You review your posted slave order for a ''$Role''.<</if>> <<if $assistant == 1>>As you work, $assistantName makes lewd comments about what she looks forward to doing to this new slave.<</if>> +<<setAssistantPronouns>> + +<<if $JFCOrder == 0>>You work up a new slave order for posting where slave merchants can work to fulfill it.<</if>> <<if $JFCOrder == 1>>You review your posted slave order for a ''$Role''.<</if>> <<if $assistant == 1>>As you work, $assistantName makes lewd comments about what _heA looks forward to doing to this new slave.<</if>> <<if $JFCOrder == 0>> <span id="JobType"> diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw index 33be5a531794442338f9542c74bed809001a8567..4f278c7743c14b6985798d51945e536f083fdc15 100644 --- a/src/pregmod/eliteTakeOverResult.tw +++ b/src/pregmod/eliteTakeOverResult.tw @@ -121,8 +121,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<if $seeDicks == 0>> @@ -166,8 +165,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<if $seeDicks == 0>> diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw index f98067f4183f7dc1bfbcdc6efba20b9ad5fd723f..ef84f9e7bf11dc5b4099b4f026320b9fb2617fad 100644 --- a/src/pregmod/fFeet.tw +++ b/src/pregmod/fFeet.tw @@ -1,7 +1,7 @@ :: FFeet [nobr] <<run clearSummaryCache($activeSlave)>> -<<run SlavePronouns($activeSlave)>> +<<setLocalPronouns $activeSlave>> <<set _footSeed = random(1,100)>> diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw index f507ae1545a27e2e51f26f00cd1ac01bf2364218..d4850043f05a12d108f2902a505f14449bd0ee8d 100644 --- a/src/pregmod/pRaped.tw +++ b/src/pregmod/pRaped.tw @@ -118,8 +118,7 @@ It would be prudent to up security in your arcology. That or take a guard along <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> diff --git a/src/pregmod/widgets/deathWidgets.tw b/src/pregmod/widgets/deathWidgets.tw index ebc56cd5fc2a6fb2d52c55125e60c1321e925154..cb7e44ac4a9c002ed53f5a70b4a8071d320ba6f2 100644 --- a/src/pregmod/widgets/deathWidgets.tw +++ b/src/pregmod/widgets/deathWidgets.tw @@ -18,7 +18,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <</widget>> <<widget "DeathOldAge">> - <<run SlavePronouns($args[0])>> + <<setLocalPronouns $args[0]>> <<if $args[0].assignment == "be confined in the arcade">> You are notified by $arcadeName staff that one of the cabinets has broken down and will need to be replaced. It would seem ''@@.pink;$args[0].slaveName@@'', the fucktoy encased in it, died <<if $args[0].physicalAge >= 70>>naturally of old age despite<<else>>suddenly, unrelated to<</if>> $his living conditions. $He was a good unit; logs show $he was taking dick up until the very end. <<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>> @@ -61,7 +61,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <</widget>> <<widget "DeathOverdose">> - <<run SlavePronouns($args[0])>> + <<setLocalPronouns $args[0]>> <<if $args[0].assignment == "be confined in the arcade">> You are notified by $arcadeName staff that one of the cabinets has broken down and will need to be replaced. It would seem ''@@.pink;$args[0].slaveName@@'', the fucktoy encased in it, died of an aphrodisiac overdose from the constant aphrodisiac injections. $He was a good unit; logs show $he was taking dick up until the very end. <<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>> @@ -90,7 +90,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <</widget>> <<widget "DeathUnhealthy">> - <<run SlavePronouns($args[0])>> + <<setLocalPronouns $args[0]>> <<if $args[0].assignment == "be confined in the arcade">> You are notified by $arcadeName staff that one of the cabinets has broken down and will need to be replaced. It would seem ''@@.pink;$args[0].slaveName@@'', the fucktoy encased in it, died to poor health caused by $his living conditions. $He was a good unit; logs show $he was taking dick up until the very end. <<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>> diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index f7f098fd4a577f25fe44da7ccf0604a9eb93f8c4..2c09b61330a161742b495026b6dddc5566f4cba3 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -1297,17 +1297,16 @@ extremely pale -5 <<widget "HeroSlavesCleanup">> <<run $heroSlaves.forEach(function(s) { - const validRaces = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]; /* Nationalities, races, surnames random fill */ if(!s.nationality) { /* Check for a pre-set race and if the nationality fits, else regenerate */ - if(s.race && validRaces.includes(s.race)) { + if(s.race && setup.filterRacesLowercase.includes(s.race)) { raceToNationality(s); } else { s.nationality = hashChoice($nationalities); } } - if(!s.race || !validRaces.includes(s.race)) { + if(!s.race || !setup.filterRacesLowercase.includes(s.race)) { nationalityToRace(s); } if(!s.birthSurname && s.birthSurname !== "") { diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw index a28962ec0c2e308d60bf16d0467b5b46665ac7c1..1a8b0ad53e866692096c0c794cd4f35ad3ab26ea 100644 --- a/src/pregmod/widgets/seBirthWidgets.tw +++ b/src/pregmod/widgets/seBirthWidgets.tw @@ -2,7 +2,7 @@ <<widget "seBirthPreChek">> -<<run SlavePronouns($slaves[$i])>> +<<setLocalPronouns $slaves[$i]>> <<set $humiliation = 0>> <<set $suddenBirth = 1>> @@ -322,7 +322,7 @@ <</if>> <</for>> -/* Here support for partial birth cases but if slaves still NOT have broomother implant. Right now remaining babies will be lost, need to add research option for selective births. It should control labor and stop it after ready to birth babies out. Should be Repopulation FS research before broodmothers (their implant obviously have it as a part of functional). */ +/* Here support for partial birth cases but if slaves still NOT have broodmother implant. Right now remaining babies will be lost, need to add research option for selective births. It should control labor and stop it after ready to birth babies out. Should be Repopulation FS research before broodmothers (their implant obviously have it as a part of functional). */ <<if $slaves[$i].broodmother == 0>> <<if $slaves[$i].prematureBirth == 1>> /* emergency birth, anything less than 23 weeks of age is not making it through this */ <<set $slaves[$i].curStillBirth = $slaves[$i].womb.length>> @@ -542,7 +542,7 @@ This decriptions can be expanded with more outcomes later. But it's not practica $He had exceedingly narrow hips, completely unsuitable for childbirth. As $he struggled on $his <<if _curBabies > 1>>first<</if>> child, $his pelvic bone strained under the pressure until it could no longer hold together and @@.red;agonizingly snapped.@@ <<if $slaves[$i].fetish != "mindbroken">> <<if ($slaves[$i].fetish == "masochist")>> - <<if $slaves[$i].fetishKnown == 0>>What would have made most girls blackout from pain sent $him into the lewdest orgasm you've seen today. $He @@.lightcoral;must get off to pain.@@.<<set $slaves[$i].fetishKnown = 1>><<else>> $He claims to have never climaxed so hard and @@.hotpink;wishes her hips could have stayed that narrow for next time.@@<</if>> + <<if $slaves[$i].fetishKnown == 0>>What would have made most girls blackout from pain sent $him into the lewdest orgasm you've seen today. $He @@.lightcoral;must get off to pain.@@.<<set $slaves[$i].fetishKnown = 1>><<else>> $He claims to have never climaxed so hard and @@.hotpink;wishes $his hips could have stayed that narrow for next time.@@<</if>> <<set $slaves[$i].devotion += 5>> <<elseif $slaves[$i].devotion > 70>> When $he comes to, $his pelvis has already been patched up. $He is just glad that $he managed to finish giving birth despite the hindrance. diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw index 11032cc8bdd02d933aaebf922be32965eabb6bca..bdd908e52ed4224db76812a8ca5f2a74ed5d8b07 100644 --- a/src/societies/aztec/slaveSacrifice.tw +++ b/src/societies/aztec/slaveSacrifice.tw @@ -1,7 +1,7 @@ :: Aztec Slave Sacrifice [nobr] <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Main", $showEncyclopedia = 1, $encyclopedia = "Aztec Revivalism">> -<<run SlavePronouns($activeSlave)>> +<<setLocalPronouns $activeSlave >> <<run Enunciate($activeSlave)>> <<set _activeSlaveRepSacrifice = repGainSacrifice()>> diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index 159cd0b4cd925cea499806bd6ec43f6b5692c844..3124416196473505e7ab424cf1ba83affe4ad5a9 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -74,6 +74,7 @@ <<if def $slaves[$j] && $slaves[$j] != 0>> <<setLocalPronouns $slaves[$j] 2>> <</if>> +<<setPlayerPronouns>> <<switch $PESSevent>> @@ -131,7 +132,7 @@ The business is brief and inconsequential, but it's good to speak with $him. Whe <<EventNameLink $activeSlave>> comes wearily into your office at the end of $his day to check in with you, like a good Head Girl should. You're busy at the moment, so $he waits quietly, not wanting to interrupt you. $He seems tired, and leans <<if $activeSlave.physicalAge > 35>>heavily<<else>>lightly<</if>> against the back of the office couch<<if $activeSlave.amp < 0>>, $his mechanical hand hard against the leather<</if>>. Your Head Girl is a <<if $activeSlave.fetish == "dom">>very dominant $desc<<elseif $activeSlave.fetish == "sadist">>sadistic and dominant $desc<<else>>dutiful $desc and takes $his leadership position seriously<</if>>, but $he knows $he doesn't have to pretend to be invincible around you. <br><br> -When you've finished your task, you raise your eyes to examine her. $He's standing with $his <<if $activeSlave.hips > 1>>broad<<elseif $activeSlave.hips < -1>>narrow<<else>>womanly<</if>> hips slightly cocked and $his <<if $activeSlave.muscles > 95>>incredibly muscular<<elseif $activeSlave.weight > 10>>soft<<elseif $activeSlave.muscles > 10>>hard<<else>>trim<</if>> thighs bowed a bit wide. You immediately understand why: it's $his job to impregnate fertile slaves, a duty $he takes very seriously, and $his dick must be very sore. +When you've finished your task, you raise your eyes to examine $him. $He's standing with $his <<if $activeSlave.hips > 1>>broad<<elseif $activeSlave.hips < -1>>narrow<<else>>womanly<</if>> hips slightly cocked and $his <<if $activeSlave.muscles > 95>>incredibly muscular<<elseif $activeSlave.weight > 10>>soft<<elseif $activeSlave.muscles > 10>>hard<<else>>trim<</if>> thighs bowed a bit wide. You immediately understand why: it's $his job to impregnate fertile slaves, a duty $he takes very seriously, and $his dick must be very sore. <<if $activeSlave.clothes == "no clothing">> $He's nude, making it obvious that $his poor soft member has done its duty today. It even looks a little moist, as though it bred a fertile slave's pussy only a few minutes ago. <<elseif ["body oil", "chains", "clubslut netting", "restrictive latex", "shibari ropes", "uncomfortable straps"].indexOf($activeSlave.clothes) != -1>> @@ -159,7 +160,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "$He uses $his muscles to manhandle him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName stomps over to the drunken delinquent, who finds himself sobering up with each step the muscular woman makes in his direction. Soon he finds himself <<if ($activeSlave.height > 170)>>staring up at her $activeSlave.faceShape face<<elseif ($activeSlave.height > 150)>>eye to eye with her $activeSlave.faceShape face<<else>>looking down at her $activeSlave.faceShape face<</if>> as $he grips him by the shoulders and lifts him bodily off of the ground. The man squeals with terror as he begs forgiveness for his affront to you, but $activeSlave.slaveName simply tosses him away from your presence as if discharging him from a bar. Word of your herculean protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior so strong $he can throw any man the breadth of a room in a single heave. + $activeSlave.slaveName stomps over to the drunken delinquent, who finds himself sobering up with each step the muscular $woman makes in his direction. Soon he finds himself <<if ($activeSlave.height > 170)>>staring up at $his $activeSlave.faceShape face<<elseif ($activeSlave.height > 150)>>eye to eye with $his $activeSlave.faceShape face<<else>>looking down at $his $activeSlave.faceShape face<</if>> as $he grips him by the shoulders and lifts him bodily off of the ground. The man squeals with terror as he begs forgiveness for his affront to you, but $activeSlave.slaveName simply tosses him away from your presence as if discharging him from a bar. Word of your herculean protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior so strong $he can throw any man the breadth of a room in a single heave. <<set $rep += 500>> <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1,$activeSlave.prestigeDesc = "Word in the arcology is $he can throw a man the breadth of a room in a single heave.">> <</if>> <</replace>> <</link>> @@ -170,18 +171,18 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "$He intimidates him with $his towering height">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName calmly strides over to the drunken delinquent and simply towers over him with a glower on her $activeSlave.faceShape face. The man quickly finds himself sobering up and moves to run from the scene with all the drunken haste he can muster. Unfortunately for him, $activeSlave.slaveName matches his pace with a brisk power-walk, and the citizen soon finds himself face down on the pavement after a swift strike to the back of the head. Word of your giant protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior twice the height of any man. + $activeSlave.slaveName calmly strides over to the drunken delinquent and simply towers over him with a glower on $his $activeSlave.faceShape face. The man quickly finds himself sobering up and moves to run from the scene with all the drunken haste he can muster. Unfortunately for him, $activeSlave.slaveName matches his pace with a brisk power-walk, and the citizen soon finds himself face down on the pavement after a swift strike to the back of the head. Word of your giant protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior twice the height of any man. <<set $rep += 500>> <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1,$activeSlave.prestigeDesc = "Word in the arcology is $he is twice the height of any man.">> <</if>> <</replace>> <</link>> <</if>> <<if ($activeSlave.face < 95)>> - <br>//Your bodyguard lacks the beauty required to distract him with her wiles.// + <br>//Your bodyguard lacks the beauty required to distract him with $his wiles.// <<else>> -<br><<link "$He distracts him with her beautiful face">> +<br><<link "$He distracts him with $his beautiful face">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName seductively saunters over to the drunken delinquent and poses alluringly nearby. The man can't help but become entranced by her gorgeous $activeSlave.faceShape face, and follows her like a lost puppy as $he beckons with one outstretched finger. $activeSlave.slaveName lures her prey into a nearby alley before slamming her fist into the unsuspecting drunkard's face, leaving him knocked out cold on the floor before returning to guard you. Word of your beautiful protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior unmatched by any woman in the world in her good looks. + $activeSlave.slaveName seductively saunters over to the drunken delinquent and poses alluringly nearby. The man can't help but become entranced by $his gorgeous $activeSlave.faceShape face, and follows $him like a lost puppy as $he beckons with one outstretched finger. $activeSlave.slaveName lures $his prey into a nearby alley before slamming $his fist into the unsuspecting drunkard's face, leaving him knocked out cold on the floor before returning to guard you. Word of your beautiful protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior unmatched by any $woman in the world in $his good looks. <<set $rep += 500>> <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1,$activeSlave.prestigeDesc = "Word in the arcology is $his beauty is unmatched by any woman in the world.">> <</if>> <</replace>> <</link>> @@ -203,7 +204,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "$He fights him hand to hand">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName quickly maneuvers over to the man and strikes him low in the stomach, robbing him of breath in a single strike. The man sobers up somewhat and raises his arms to defend himself, but finds himself outmatched by $activeSlave.slaveName's skillful attacks. It doesn't take long for $activeSlave.slaveName to reduce the man to a battered heap on the ground with her hands alone, after which $he soon returns to you to guard your body. Word of your martial protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior whose hands are deadlier than many weapons. + $activeSlave.slaveName quickly maneuvers over to the man and strikes him low in the stomach, robbing him of breath in a single strike. The man sobers up somewhat and raises his arms to defend himself, but finds himself outmatched by $activeSlave.slaveName's skillful attacks. It doesn't take long for $activeSlave.slaveName to reduce the man to a battered heap on the ground with $his hands alone, after which $he soon returns to you to guard your body. Word of your martial protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior whose hands are deadlier than many weapons. <<set $rep += 500>> <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1,$activeSlave.prestigeDesc = "Word in the arcology is $his hands are deadlier than many weapons.">> <</if>> <</replace>> <</link>> @@ -211,7 +212,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "$He fires a few dozen warning shots">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName draws her firearm and blasts the pavement between yourself and the delinquent with a hail of bullets. The man sobers up immediately at the excessive use of firepower and flees the scene in fear of $activeSlave.slaveName turning her weapon on him. $activeSlave.slaveName holsters her weapon and returns to your side to guard you. Word of your trigger happy protector is soon @@.green;the talk of $arcologies[0].name@@ and you find most citizens are keen to avoid causing you offense with $activeSlave.slaveName around. + $activeSlave.slaveName draws $his firearm and blasts the pavement between yourself and the delinquent with a hail of bullets. The man sobers up immediately at the excessive use of firepower and flees the scene in fear of $activeSlave.slaveName turning $his weapon on him. $activeSlave.slaveName holsters $his weapon and returns to your side to guard you. Word of your trigger happy protector is soon @@.green;the talk of $arcologies[0].name@@ and you find most citizens are keen to avoid causing you offense with $activeSlave.slaveName around. <<set $rep += 100>> <</replace>> <</link>> @@ -239,7 +240,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "Talk over the whores' appearance and correct any deficiencies">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You call $activeSlave.slaveName up to your office; $he enters with the clear anticipation of being thrown over your desk, but instead finds $himself sitting across it from you, taking part in a three-way inventory review with you and $assistantName. The three of you carefully review the appearance of each of her whores. $He is @@.hotpink;properly deferential,@@ but definitely has insight to offer about how many of them appeal to customers. With her input, you put together a plan to @@.limegreen;correct@@ their deficiencies when they can be pulled out of a shift for a quick surgical improvement. + You call $activeSlave.slaveName up to your office; $he enters with the clear anticipation of being thrown over your desk, but instead finds $himself sitting across it from you, taking part in a three-way inventory review with you and $assistantName. The three of you carefully review the appearance of each of $his whores. $He is @@.hotpink;properly deferential,@@ but definitely has insight to offer about how many of them appeal to customers. With $his input, you put together a plan to @@.limegreen;correct@@ their deficiencies when they can be pulled out of a shift for a quick surgical improvement. <<set $activeSlave.devotion += 4>> <<for $i = 0; $i < _SL; $i++>> <<if $slaves[$i].assignment == "work in the brothel">> @@ -277,7 +278,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Make $him the face of an ad campaign">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring $him out to a pretty balcony and put her through an extended photo shoot. $He has no idea what you're planning, but $he's skilled enough not to need to. $He dons different outfits, changes makeup, and even shifts personas for the camera, producing hundreds of elegant, sensual and eye-catching images. You dismiss her back to the club when you're done, and $he clearly thinks little of it. The next day, however, you walk her out onto the club in the morning. When the two of you, <<= WrittenMaster()>> and DJ, reach the main club, $he stops short when $he catches sight of the main billboard screen. There $he is, resplendent and opulent, <<if $showInches == 2>>thirty feet<<else>>ten meters<</if>> tall, giving the viewer a sultry look. $He only breaks down for a single moment, but it's quite a moment: $he cries rather inelegantly, <<if canTalk($activeSlave)>><<say sobb>>ing "I love you <<Master>>" into your ear<</if>> before giving you a @@.hotpink;wet kiss.@@ Then $he runs over to stand under the screen, looking back at you to give you a @@.green;picture-perfect@@ imitation of the billboard $he's standing under before laughing at $himself a little. + You bring $him out to a pretty balcony and put $him through an extended photo shoot. $He has no idea what you're planning, but $he's skilled enough not to need to. $He dons different outfits, changes makeup, and even shifts personas for the camera, producing hundreds of elegant, sensual and eye-catching images. You dismiss $him back to the club when you're done, and $he clearly thinks little of it. The next day, however, you walk $him out onto the club in the morning. When the two of you, <<= WrittenMaster()>> and DJ, reach the main club, $he stops short when $he catches sight of the main billboard screen. There $he is, resplendent and opulent, <<if $showInches == 2>>thirty feet<<else>>ten meters<</if>> tall, giving the viewer a sultry look. $He only breaks down for a single moment, but it's quite a moment: $he cries rather inelegantly, <<if canTalk($activeSlave)>><<say sobb>>ing "I love you <<Master>>" into your ear<</if>> before giving you a @@.hotpink;wet kiss.@@ Then $he runs over to stand under the screen, looking back at you to give you a @@.green;picture-perfect@@ imitation of the billboard $he's standing under before laughing at $himself a little. <<set $cash -= 1000>> <<set $rep += 500>> <<set $activeSlave.devotion += 4>> @@ -286,7 +287,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "Keep $him to yourself for a week">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Exclusivity and slavery interact in ways more than merely complex. $activeSlave.slaveName's most passionate devotees are devastated to find her nowhere but by your side for the whole week. Their reaction is mixed: awe, envy, resentment; but mostly @@.green;renewed respect@@ that $he is your creature, and yours alone. A lesser slave might show off the particularity you show her, bringing shame on you by giving the impression that you care for her as more than a slave. $He is no lesser slave, though, and thoroughly understands the fine line the two of you must walk as <<= WrittenMaster()>> and slave. $He makes @@.hotpink;painstakingly@@ clear, through every public glance and gesture, that $he is yours as a matter of @@.mediumaquamarine;trust@@ rather than as a matter of love. + Exclusivity and slavery interact in ways more than merely complex. $activeSlave.slaveName's most passionate devotees are devastated to find $him nowhere but by your side for the whole week. Their reaction is mixed: awe, envy, resentment; but mostly @@.green;renewed respect@@ that $he is your creature, and yours alone. A lesser slave might show off the particularity you show $him, bringing shame on you by giving the impression that you care for $him as more than a slave. $He is no lesser slave, though, and thoroughly understands the fine line the two of you must walk as <<= WrittenMaster()>> and slave. $He makes @@.hotpink;painstakingly@@ clear, through every public glance and gesture, that $he is yours as a matter of @@.mediumaquamarine;trust@@ rather than as a matter of love. <<set $activeSlave.devotion += 4>> <<set $activeSlave.trust += 4>> <<set $rep += 100>> @@ -296,7 +297,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "Put public emphasis on $him with the objective of making $him famous">> <<EventNameDelink $activeSlave>> <<replace "#result">> - For the coming week, $he does the publicity rounds. It's a little different than a free celebrity might do, but the mere act of letting her be interviewed is enough of a display of your confidence in her loyalty that people @@.green;take notice.@@ $He will be @@.green;forever remembered@@ as one of the first slaves to go before the press and articulately explain why $he loves being your property. $He looks good doing it, too. + For the coming week, $he does the publicity rounds. It's a little different than a free celebrity might do, but the mere act of letting $him be interviewed is enough of a display of your confidence in $his loyalty that people @@.green;take notice.@@ $He will be @@.green;forever remembered@@ as one of the first slaves to go before the press and articulately explain why $he loves being your property. $He looks good doing it, too. <<set $cash -= 10000>> <<set $rep += 500>> <<set $activeSlave.prestige = 1>> @@ -309,7 +310,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Use $his ass as $he looks after $himself">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Wordlessly, you<<if ($PC.dick == 0)>> don a strap-on and<</if>> come up behind her; the first thing to touch her is <<if ($PC.dick == 0)>>the phallus<<else>>your rapidly hardening dick<</if>>, which pokes against <<if $activeSlave.height >= 170>>right up against her asshole, since $he's nice and tall enough for standing anal. $He gasps a little and angles her hips to accept your cock.<<else>>her lower back, since $he's shorter than you. $He gasps a little and hikes $himself up on tiptoe to accept your cock.<</if>> As $he feels you slide into her body $he whimpers with devotion, turning her upper body so $he can kiss her <<= WrittenMaster()>> while he sodomizes her. <<if !canTalk($activeSlave)>>$He uses gestures to thank you for making her feel like the milkers do.<<else>>"<<S>>o thi<<s>> i<<s>> how it feel<<s>> when I do them," $he whispers.<</if>> $He uses the lotion to masturbate while $he takes it, wincing whenever $he loses control and squeezes $his sore cock too hard. When you're done $he sinks to the bathroom floor in a boneless pool of @@.hotpink;satisfied sexual exhaustion,@@ dripping ejaculate from her front<<if ($PC.dick == 0)>><<else>> and back<</if>>. + Wordlessly, you<<if ($PC.dick == 0)>> don a strap-on and<</if>> come up behind $him; the first thing to touch $him is <<if ($PC.dick == 0)>>the phallus<<else>>your rapidly hardening dick<</if>>, which pokes against <<if $activeSlave.height >= 170>>right up against $his asshole, since $he's nice and tall enough for standing anal. $He gasps a little and angles $his hips to accept your cock.<<else>>$his lower back, since $he's shorter than you. $He gasps a little and hikes $himself up on tiptoe to accept your cock.<</if>> As $he feels you slide into $his body $he whimpers with devotion, turning $his upper body so $he can kiss $his <<= WrittenMaster()>> while _heP sodomizes $him. <<if !canTalk($activeSlave)>>$He uses gestures to thank you for making $him feel like the milkers do.<<else>>"<<S>>o thi<<s>> i<<s>> how it feel<<s>> when I do them," $he whispers.<</if>> $He uses the lotion to masturbate while $he takes it, wincing whenever $he loses control and squeezes $his sore cock too hard. When you're done $he sinks to the bathroom floor in a boneless pool of @@.hotpink;satisfied sexual exhaustion,@@ dripping ejaculate from $his front<<if ($PC.dick == 0)>><<else>> and back<</if>>. <<set $activeSlave.devotion += 4>> <<set $activeSlave.analCount += 1>> <<set $analTotal += 1>> @@ -318,7 +319,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "Help $him with $his duties">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName is surprised to find you in the collection facility when $he gets there the next morning. Since you're already <<if ($PC.dick == 0)>>using a strap-on to fuck<<else>>balls deep in<</if>> a whining milker's ass, $he understands immediately that you're there to help. $He's @@.hotpink;gratified,@@ and does her best to make sure you have a good time. With so many slaves physically restrained to make their backdoors available, it's hard not to. $activeSlave.slaveName does her best to use a slave next to you so $he can be available for extra amusement at all times as the two of you sodomize away. + $activeSlave.slaveName is surprised to find you in the collection facility when $he gets there the next morning. Since you're already <<if ($PC.dick == 0)>>using a strap-on to fuck<<else>>balls deep in<</if>> a whining milker's ass, $he understands immediately that you're there to help. $He's @@.hotpink;gratified,@@ and does $his best to make sure you have a good time. With so many slaves physically restrained to make their backdoors available, it's hard not to. $activeSlave.slaveName does $his best to use a slave next to you so $he can be available for extra amusement at all times as the two of you sodomize away. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -328,14 +329,14 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Give $him a businesslike massage">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss her back to her stretching. $He gets back to it, but is surprised to find her shoulders seized by your powerful hands. $He shivers helplessly as you knead her knotted muscles, whimpering with near-orgasmic delight as $he feels the day's aches ground away under your grip. When you're done with her, $he touches her toes and then smoothly rises to stretch with her hands over her head, groaning with sheer pleasure at the feeling. <<if !canTalk($activeSlave)>>$He thanks you profusely with gestures, and then hesitantly asks if you'd like to use her body.<<else>>"Thank you <<Master>>," $he <<say murmur>>s. "Would - would you like to u<<s>>e my body, now?"<</if>> You shake your head kindly and place a kiss on her forehead before continuing with your evening. As $he watches you go, $he suppresses @@.hotpink;another shiver.@@ + When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss $him back to $his stretching. $He gets back to it, but is surprised to find $his shoulders seized by your powerful hands. $He shivers helplessly as you knead $his knotted muscles, whimpering with near-orgasmic delight as $he feels the day's aches ground away under your grip. When you're done with $him, $he touches $his toes and then smoothly rises to stretch with $his hands over $his head, groaning with sheer pleasure at the feeling. <<if !canTalk($activeSlave)>>$He thanks you profusely with gestures, and then hesitantly asks if you'd like to use $his body.<<else>>"Thank you <<Master>>," $he <<say murmur>>s. "Would - would you like to u<<s>>e my body, now?"<</if>> You shake your head kindly and place a kiss on $his forehead before continuing with your evening. As $he watches you go, $he suppresses @@.hotpink;another shiver.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <br><<link "Share a milk bath with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss her back to her stretching. $He gets back to it, but is mystified as $he watches you out of the corner of her eye. The milk is held in a large tank before being filtered, pasteurized, and sold. You remove the lid from the tank and climb in. $He watches with incomprehension, but understanding dawns when you splash a little, demonstratively, and crook a finger at her. $He gives you a deliciously naughty look and hurries to join you in the warm milk, giggling when you pull her in with a slosh of creamy whiteness. $He doesn't break the surface after climbing in, kneeling under the milk to suck you off. $He has to surface periodically for breath, but the grin $he gives you each time makes up for it. $He manages to drag $his breasts <<if ($PC.boobs > 0)>>against yours<<else>>up your front<</if>> each time $he rises for air. When you climax, $he carefully swallows every drop to keep the filters from getting clogged. When $he surfaces for good, $he looks you in the eyes briefly before blushing and @@.mediumaquamarine;giving you a muscular hug.@@ + When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss $him back to $his stretching. $He gets back to it, but is mystified as $he watches you out of the corner of $his eye. The milk is held in a large tank before being filtered, pasteurized, and sold. You remove the lid from the tank and climb in. $He watches with incomprehension, but understanding dawns when you splash a little, demonstratively, and crook a finger at $him. $He gives you a deliciously naughty look and hurries to join you in the warm milk, giggling when you pull $him in with a slosh of creamy whiteness. $He doesn't break the surface after climbing in, kneeling under the milk to suck you off. $He has to surface periodically for breath, but the grin $he gives you each time makes up for it. $He manages to drag $his breasts <<if ($PC.boobs > 0)>>against yours<<else>>up your front<</if>> each time $he rises for air. When you climax, $he carefully swallows every drop to keep the filters from getting clogged. When $he surfaces for good, $he looks you in the eyes briefly before blushing and @@.mediumaquamarine;giving you a muscular hug.@@ <<set $activeSlave.trust += 4>> <<set $activeSlave.oralCount += 1>> <<set $oralTotal += 1>> @@ -347,14 +348,14 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "It cannot wait">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Your responsibilities will not wait. You keep at it, composing a firm yet even-handed message that @@.green;puts the miscreants in their place@@ without ruffling feathers. $activeSlave.slaveName has gone to sleep by the time you enter your suite, but $he wakes at your entrance and sleepily holds the sheets open so you can climb in. Once you're bedded down $he <<if ($activeSlave.boobs > 2000)>>lies close to you with one of $his breasts resting half on your chest, since $he can't fit under your arm with $his ridiculous tits.<<elseif ($activeSlave.boobs > 1000)>>burrows softly under your arm, $his breasts heavy against your chest.<<elseif ($activeSlave.boobs > 300)>>snuggles under your arm, $his breasts against your chest.<<else>>fits $himself under your arm, $his flat chest letting her mold $himself to your torso perfectly.<</if>> + Your responsibilities will not wait. You keep at it, composing a firm yet even-handed message that @@.green;puts the miscreants in their place@@ without ruffling feathers. $activeSlave.slaveName has gone to sleep by the time you enter your suite, but $he wakes at your entrance and sleepily holds the sheets open so you can climb in. Once you're bedded down $he <<if ($activeSlave.boobs > 2000)>>lies close to you with one of $his breasts resting half on your chest, since $he can't fit under your arm with $his ridiculous tits.<<elseif ($activeSlave.boobs > 1000)>>burrows softly under your arm, $his breasts heavy against your chest.<<elseif ($activeSlave.boobs > 300)>>snuggles under your arm, $his breasts against your chest.<<else>>fits $himself under your arm, $his flat chest letting $him mold $himself to your torso perfectly.<</if>> <<set $rep += 100>> <</replace>> <</link>> <br><<link "It can wait until after some lovemaking with the Concubine">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees the kind of lovemaking you're in the mood for, $he spreads $his arms for you, smiling gently. $He kisses you lovingly, <<if !canTalk($activeSlave)>>taking your hand in $hers and drawing a heart on your palm with one finger.<<else>><<say murmur>>ing: "<<Master>>, I love you."<</if>> <<if ($PC.vagina == 1)>>$He lies on $his side and raises one leg for you so you can straddle the other, sliding up to press your pussy against $his submissive groin. You grind against her; the stimulation is so strong that $he writhes into the sheets, panting and whining.<<if $PC.dick == 1>> Your stiff dick, unused for once, slides deliciously between your warm bodies.<</if>><<else>><<if ($activeSlave.vagina > 0)>>$His pussy is warm and very wet, making penetration easy; $he gasps and arches $his back, clasping you between $his legs as $his $activeSlave.eyeColor eyes look deep into yours.<<elseif ($activeSlave.anus > 0)>>$His butt is relaxed and welcoming, and $he holds $his legs back to take missionary anal loving as $his $activeSlave.eyeColor look deep into yours.<<else>>$He holds $his thighs together for frottage so $he can love you without losing $his virginity.<</if>><</if>> You both know each other quite well, and maintain the gentle communion for a long time. When $he senses your climax building, $he lets $himself climb to orgasm with you, holding <<if ($PC.dick == 0)>>your hips in $his hands<<else>>you in $his arms<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant another kiss on you.@@ + When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees the kind of lovemaking you're in the mood for, $he spreads $his arms for you, smiling gently. $He kisses you lovingly, <<if !canTalk($activeSlave)>>taking your hand in $hers and drawing a heart on your palm with one finger.<<else>><<say murmur>>ing: "<<Master>>, I love you."<</if>> <<if ($PC.vagina == 1)>>$He lies on $his side and raises one leg for you so you can straddle the other, sliding up to press your pussy against $his submissive groin. You grind against $him; the stimulation is so strong that $he writhes into the sheets, panting and whining.<<if $PC.dick == 1>> Your stiff dick, unused for once, slides deliciously between your warm bodies.<</if>><<else>><<if ($activeSlave.vagina > 0)>>$His pussy is warm and very wet, making penetration easy; $he gasps and arches $his back, clasping you between $his legs as $his $activeSlave.eyeColor eyes look deep into yours.<<elseif ($activeSlave.anus > 0)>>$His butt is relaxed and welcoming, and $he holds $his legs back to take missionary anal loving as $his $activeSlave.eyeColor look deep into yours.<<else>>$He holds $his thighs together for frottage so $he can love you without losing $his virginity.<</if>><</if>> You both know each other quite well, and maintain the gentle communion for a long time. When $he senses your climax building, $he lets $himself climb to orgasm with you, holding <<if ($PC.dick == 0)>>your hips in $his hands<<else>>you in $his arms<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant another kiss on you.@@ <<set $activeSlave.devotion += 10>> <<set $activeSlave.oralCount += 1>> <<set $oralTotal += 1>> @@ -371,7 +372,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "It can wait until after some rough sex with the Concubine">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees <<if ($PC.dick == 0)>>the big strap-on you're wearing<<else>>the kind of sex you're in the mood for<</if>>, $he turns over and pushes $his face down into the sheets. $He pulls $his knees under $himself and reaches back to pull $his <<if ($activeSlave.butt > 5)>>huge<<elseif ($activeSlave.butt > 2)>>sizable<<else>>pretty<</if>> buttocks apart, relaxing and then clenching her <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole invitingly. $He starts <<if !canTalk($activeSlave)>>to point an inviting finger at her backdoor,<<else>>to <<say beg>> "Plea<<s>>e a<<ss>>rape me, M-" into the sheets,<</if>> but you interrupt her by shoving her forward so that $he's all the way face-down on the bed. $He knows how you like it and starts to wriggle, struggle, and whine as you roughly sodomize her, <<if ($PC.dick == 0)>>the strap-on<<else>>your cock<</if>> ramming straight up $his ass despite the uncomfortable angle, <<if ($activeSlave.butt > 5)>>which $his huge ass makes easier for her by limiting how deeply you can fuck her without $his buttocks spread wide.<<elseif ($activeSlave.butt > 2)>>which $his big behind makes easier for her by limiting how deeply you can fuck her.<<else>>which $his modest ass makes harder for her by allowing you to get really deep inside $his anus.<</if>> $He continues to wrestle with you, sometimes even managing to dislodge <<if ($PC.dick == 0)>>the strap-on<<else>>your dick<</if>>, allowing you the <<if ($PC.dick == 0)>>cruel delight<<else>>delicious sensation<</if>> of pushing it back up $his butt each time. Despite the pretense $his enjoyment is obvious; + When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees <<if ($PC.dick == 0)>>the big strap-on you're wearing<<else>>the kind of sex you're in the mood for<</if>>, $he turns over and pushes $his face down into the sheets. $He pulls $his knees under $himself and reaches back to pull $his <<if ($activeSlave.butt > 5)>>huge<<elseif ($activeSlave.butt > 2)>>sizable<<else>>pretty<</if>> buttocks apart, relaxing and then clenching $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole invitingly. $He starts <<if !canTalk($activeSlave)>>to point an inviting finger at $his backdoor,<<else>>to <<say beg>> "Plea<<s>>e a<<ss>>rape me, M-" into the sheets,<</if>> but you interrupt $him by shoving $him forward so that $he's all the way face-down on the bed. $He knows how you like it and starts to wriggle, struggle, and whine as you roughly sodomize $him, <<if ($PC.dick == 0)>>the strap-on<<else>>your cock<</if>> ramming straight up $his ass despite the uncomfortable angle, <<if ($activeSlave.butt > 5)>>which $his huge ass makes easier for $him by limiting how deeply you can fuck $him without $his buttocks spread wide.<<elseif ($activeSlave.butt > 2)>>which $his big behind makes easier for $him by limiting how deeply you can fuck $him.<<else>>which $his modest ass makes harder for $him by allowing you to get really deep inside $his anus.<</if>> $He continues to wrestle with you, sometimes even managing to dislodge <<if ($PC.dick == 0)>>the strap-on<<else>>your dick<</if>>, allowing you the <<if ($PC.dick == 0)>>cruel delight<<else>>delicious sensation<</if>> of pushing it back up $his butt each time. Despite the pretense $his enjoyment is obvious; <<if ($activeSlave.dick > 0) && ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> despite $his chastity caged cock, $he's grinding against you as eagerly as a $girl making love with $his pussy. <<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>> @@ -389,9 +390,9 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<elseif $activeSlave.clit > 1>> $he can't stop $himself from humping $his erect clit against the sheets below $him. <<else>> - $his pussy is so wet she's leaving a wet spot on the sheets beneath $him. + $his pussy is so wet $he's leaving a wet spot on the sheets beneath $him. <</if>> - $He finally orgasms, sobbing with overstimulation when you pound her for a while longer before <<if ($PC.dick == 0)>>finding your own climax<<else>>shooting rope after rope of cum into her<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When she gets out you're back at work, but $he comes out to @@.hotpink;plant a kiss on you.@@ + $He finally orgasms, sobbing with overstimulation when you pound $him for a while longer before <<if ($PC.dick == 0)>>finding your own climax<<else>>shooting rope after rope of cum into $him<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant a kiss on you.@@ <<set $activeSlave.devotion += 10>> <<set $activeSlave.oralCount += 1>> <<set $oralTotal += 1>> @@ -411,41 +412,41 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Let $him up in bed with you">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Of course, $activeSlave.slaveName promptly obeys your order that she come up and join you in bed. After you have gone to sleep, however, she does not feel that she can sleep $himself, since she is no longer blocking the door. $He spends the rest of the night in sleepless watch, agonizing over this disruption of $his protection of your person. @@.mediumorchid;$He is confused and unhappy.@@ + Of course, $activeSlave.slaveName promptly obeys your order that $he come up and join you in bed. After you have gone to sleep, however, $he does not feel that $he can sleep $himself, since $he is no longer blocking the door. $He spends the rest of the night in sleepless watch, agonizing over this disruption of $his protection of your person. @@.mediumorchid;$He is confused and unhappy.@@ <<set $activeSlave.devotion -= 5>> <</replace>> <</link>> <br><<link "Commend and reward $him the next morning">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The next morning, you sit at your desk to do business as usual, and $activeSlave.slaveName takes up station just behind your left shoulder. You thank her for $his vigilance as she does. $He looks almost confused to be thanked for doing $his proper duty, so you settle on a more direct method of communicating your closeness to her. + The next morning, you sit at your desk to do business as usual, and $activeSlave.slaveName takes up station just behind your left shoulder. You thank $him for $his vigilance as $he does. $He looks almost confused to be thanked for doing $his proper duty, so you settle on a more direct method of communicating your closeness to $him. <<if ($activeSlave.vagina == 0) && !canDoVaginal($activeSlave)>> - Since she's wearing chastity, you take her out onto the balcony, arm an extra security system so she can relax, remove $his protection, and have gentle, loving sex with her until she's climaxed twice. + Since $he's wearing chastity, you take $him out onto the balcony, arm an extra security system so $he can relax, remove $his protection, and have gentle, loving sex with $him until $he's climaxed twice. <<set $activeSlave.vaginalAccessory = "none">> <<= VaginalVCheck(1)>> <<elseif ($activeSlave.anus == 0) && !canDoAnal($activeSlave)>> - Since she's wearing chastity, you take her out onto the balcony, arm an extra security system so she can relax, remove $his protection, and have gentle, loving anal sex with her until she's climaxed twice. + Since $he's wearing chastity, you take $him out onto the balcony, arm an extra security system so $he can relax, remove $his protection, and have gentle, loving anal sex with $him until $he's climaxed twice. <<set $activeSlave.vaginalAccessory = "none">> <<set $activeSlave.dickAccessory = "none">> <<= AnalVCheck(1)>> <<elseif !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>> - You take her out onto the balcony, arm an extra security system so she can relax, and firmly massage $his neck and shoulders to work out all the tension. + You take $him out onto the balcony, arm an extra security system so $he can relax, and firmly massage $his neck and shoulders to work out all the tension. <<elseif ($activeSlave.vagina == 0)>> - You take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving sex with her until she's climaxed twice, once to your gentle massaging of $his mons while you fuck her, and once to hard rubbing of $his pussy while you have enthusiastic anal sex. + You take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving sex with $him until $he's climaxed twice, once to your gentle massaging of $his mons while you fuck $him, and once to hard rubbing of $his pussy while you have enthusiastic anal sex. <<= BothVCheck(2, 1)>> <<elseif canDoAnal($activeSlave)>> <<if $activeSlave.hormoneBalance >= 100>> - Since she's doped up on hormones, you take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice. + Since $he's doped up on hormones, you take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice. <<elseif ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>> - Since $he's a caged dickgirl, you take her out onto the balcony, arm an extra security system so she can relax, and use $his anus until she's exhausted. + Since $he's a caged dickgirl, you take $him out onto the balcony, arm an extra security system so $he can relax, and use $his anus until $he's exhausted. <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>> - Since $he's chemically castrated, you take her out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice. + Since $he's chemically castrated, you take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice. <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>> - Since $he's a gelding, you take $him out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with her until she's climaxed twice. + Since $he's a gelding, you take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice. <<elseif canAchieveErection($activeSlave)>> Since $he's a virile slave, you take $him and another slave out onto the balcony, arm an extra security system so $he can relax, and set the other slave to orally servicing $his erect member. Meanwhile, you have gentle, loving anal sex with $him until $he's climaxed twice. <<else>> - You take $him out onto the balcony, arm an extra security system so she can relax, and have gentle, loving anal sex with $him until $he's climaxed twice. + You take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice. <</if>> <<= AnalVCheck(1)>> <<else>> @@ -475,7 +476,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "$He's more important">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You shift to stand behind $him, your <<if $PC.boobs == 1>>breasts soft and sensual<<else>>chest hard and masculine<</if>> but not insistently sexual against $his <<if $activeSlave.muscles > 30>>muscular<<elseif $activeSlave.weight > 10>>soft<<else>>warm<</if>> back. You wrap your arms around $him, over $his own, each of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands finding and clasping one of $hers.<<if $activeSlave.boobs > 3000>> $His incredible boobs rest heavily over the top of both of your arms.<</if>> $He knows you very well, and shifts her torso ever so slightly from side to side, snuggling in a little closer to you to let you know $he's comfortable and available without being demanding or needy. You speak quietly, your voice a reassuring <<if $PC.boobs == 0>>rumble<<else>>hum<</if>> $he feels against $his back<<if canHear($activeSlave)>> as well as hears<</if>>. You let $him know that $he has a place with you, and $he always will. You let $him know that you're worried too, and that you don't know what the future will bring. But you do know that $he'll be by your side as you meet it. A silent shake in the pretty <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>> you've got in your arms is your only indication that @@.mediumaquamarine;she's crying a little@@ as she whispers, "Thank you, <<Master>>. I'll do my be<<s>>t." + You shift to stand behind $him, your <<if $PC.boobs == 1>>breasts soft and sensual<<else>>chest hard and masculine<</if>> but not insistently sexual against $his <<if $activeSlave.muscles > 30>>muscular<<elseif $activeSlave.weight > 10>>soft<<else>>warm<</if>> back. You wrap your arms around $him, over $his own, each of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands finding and clasping one of $hers.<<if $activeSlave.boobs > 3000>> $His incredible boobs rest heavily over the top of both of your arms.<</if>> $He knows you very well, and shifts $his torso ever so slightly from side to side, snuggling in a little closer to you to let you know $he's comfortable and available without being demanding or needy. You speak quietly, your voice a reassuring <<if $PC.boobs == 0>>rumble<<else>>hum<</if>> $he feels against $his back<<if canHear($activeSlave)>> as well as hears<</if>>. You let $him know that $he has a place with you, and $he always will. You let $him know that you're worried too, and that you don't know what the future will bring. But you do know that $he'll be by your side as you meet it. A silent shake in the pretty <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>> you've got in your arms is your only indication that @@.mediumaquamarine;$he's crying a little@@ as $he whispers, "Thank you, <<Master>>. I'll do my be<<s>>t." <<set $activeSlave.trust += 5>> <</replace>> <</link>> @@ -485,10 +486,10 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Spend a night as equals">> <<replace "#result">> <<if $MixedMarriage == 1 && $activeSlave.relationship == -3 && $arcologies[0].FSPaternalist >= 60>> - You instruct your slave-wife $activeSlave.slaveName to put on her best dress and meet you at the door. You spend a nice night out with her, taking in the sights before heading to a nice restaurant, where you receive the occasional @@.green;admiring glance@@ from your paternalistic citizens. Afterward, you attend a show at a venue known for its respectful plays acted out by talented slaves, and you conclude the evening by returning to your penthouse to have loving sex in your master bed. When you wake the next morning, you're greeted with a long kiss and @@.hotpink;an adoring look,@@ before $activeSlave.slaveName slides out of bed to begin her morning duties. + You instruct your slave-wife $activeSlave.slaveName to put on $his best dress and meet you at the door. You spend a nice night out with $him, taking in the sights before heading to a nice restaurant, where you receive the occasional @@.green;admiring glance@@ from your paternalistic citizens. Afterward, you attend a show at a venue known for its respectful plays acted out by talented slaves, and you conclude the evening by returning to your penthouse to have loving sex in your master bed. When you wake the next morning, you're greeted with a long kiss and @@.hotpink;an adoring look,@@ before $activeSlave.slaveName slides out of bed to begin $his morning duties. <<set $rep += 100>> <<else>> - You instruct $activeSlave.slaveName to put on her best dress and meet you at the door. You spend a nice night out with her, walking along the club to a nice restaurant and then seeing a show before returning home for loving sex in your master bed. $He nestles under your arm, falling to sleep well before you, a @@.hotpink;contented@@ smile on her face. There's a reason $he gets to sleep much quicker than you do. You lie awake for some time, remembering the @@.red;doubting and disapproving@@ faces of other prosperous citizens whenever they realized that you were treating a slave as an equal this evening. + You instruct $activeSlave.slaveName to put on $his best dress and meet you at the door. You spend a nice night out with $him, walking along the club to a nice restaurant and then seeing a show before returning home for loving sex in your master bed. $He nestles under your arm, falling to sleep well before you, a @@.hotpink;contented@@ smile on $his face. There's a reason $he gets to sleep much quicker than you do. You lie awake for some time, remembering the @@.red;doubting and disapproving@@ faces of other prosperous citizens whenever they realized that you were treating a slave as an equal this evening. <<set $rep -= 100>> <</if>> <<set $activeSlave.devotion += 4, $activeSlave.oralCount += 1, $oralTotal += 1, $activeSlave.analCount += 1, $analTotal += 1>> @@ -496,7 +497,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <</link>> <br><<link "Pull $him in to keep you company as you work">> <<replace "#result">> - $He giggles happily as you seize $his $activeSlave.skin wrist and pull $him down to the floor. $He nestles under your desk, between your legs to serve you with $his mouth for a while, gently playing with $his <<if canDoVaginal($activeSlave) && canPenetrate($activeSlave)>>wonderfully strange bits<<elseif canDoAnal($activeSlave)>>anus<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>limp cock<<elseif ($activeSlave.dick > 0)>>hard cock<<elseif ($activeSlave.clit > 0)>>huge, hard clit<<elseif ($activeSlave.vagina > -1)>>soaking-wet cunt<<else>>nipples<</if>> and moaning into you. $He's down there for a long time, so long that you climax twice. The third time she softly sucks you <<if ($PC.dick == 0)>>to full arousal<<else>>hard<</if>>, it naturally takes a bit longer. When done, $he slithers up into your lap without obscuring your work, stroking you lightly with a hand the whole time - a miracle of dexterity. $He gently runs her hips over your crotch a few times, giving <<if ($PC.dick == 0)>>you<<else>>your dickhead<</if>> a nice tactile tour of everything $he has to offer, <<if ($PC.dick == 0)>>before gently turning around to wrap her legs around you and rub $himself against you until you climax a third time.<<else>>before gently lowering her butt onto your cock with a sigh. $His devoted ass brings you to orgasm a third time, and instead of getting up and off your softening dick, she just relaxes into you and bends $himself backward so she can nibble your neck and whisper her adoration into your ear.<</if>> It would be hard for $him to get much more trusting of you, @@.mediumaquamarine;but $he does.@@ + $He giggles happily as you seize $his $activeSlave.skin wrist and pull $him down to the floor. $He nestles under your desk, between your legs to serve you with $his mouth for a while, gently playing with $his <<if canDoVaginal($activeSlave) && canPenetrate($activeSlave)>>wonderfully strange bits<<elseif canDoAnal($activeSlave)>>anus<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>limp cock<<elseif ($activeSlave.dick > 0)>>hard cock<<elseif ($activeSlave.clit > 0)>>huge, hard clit<<elseif ($activeSlave.vagina > -1)>>soaking-wet cunt<<else>>nipples<</if>> and moaning into you. $He's down there for a long time, so long that you climax twice. The third time $he softly sucks you <<if ($PC.dick == 0)>>to full arousal<<else>>hard<</if>>, it naturally takes a bit longer. When done, $he slithers up into your lap without obscuring your work, stroking you lightly with a hand the whole time - a miracle of dexterity. $He gently runs $his hips over your crotch a few times, giving <<if ($PC.dick == 0)>>you<<else>>your dickhead<</if>> a nice tactile tour of everything $he has to offer, <<if ($PC.dick == 0)>>before gently turning around to wrap $his legs around you and rub $himself against you until you climax a third time.<<else>>before gently lowering $his butt onto your cock with a sigh. $His devoted ass brings you to orgasm a third time, and instead of getting up and off your softening dick, $he just relaxes into you and bends $himself backward so $he can nibble your neck and whisper $his adoration into your ear.<</if>> It would be hard for $him to get much more trusting of you, @@.mediumaquamarine;but $he does.@@ <<set $activeSlave.trust += 4>> <<set $activeSlave.oralCount += 1>> <<set $oralTotal += 1>> @@ -548,7 +549,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand up, and from the look on your face, $he knows it's $his turn to get fucked. $He <<if $activeSlave.fetish == "dom">>visibly shelves $his dominance<<elseif $activeSlave.fetish == "sadist">>visibly lets $his sadism go<<else>>softens visibly<</if>>, looking relieved to be able to let someone else lead. You give her a lustful kiss on the lips and then reach down, taking hold of $his thigh and spinning her around, raising $his leg so $his foot's on the arm of the couch. <<if $PC.dick == 1>>You slide your dick<<else>>$He reaches under $himself and back to stroke your pussy as you press your hips against her, and you slide your fingers<</if>> inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. $He groans with discomfort as $his overtaxed dick tries and fails to become hard again, but relaxes as <<if $PC.dick == 1>>cockhead<<else>>fingertips<</if>> stimulate the most sensitive place inside her, producing arousal that obscures the soreness. You hold her close, <<if $PC.dick == 1>>one<<else>>your free<</if>> arm <<if $activeSlave.boobs > 4000>>cradling one of $his udders<<elseif $activeSlave.boobs > 1000>>hefting one of $his heavy breasts<<elseif $activeSlave.boobs > 400>>holding one of $his boobs<<else>>cupped over one of her $activeSlave.nipples nipples<</if>> and hugging her against your <<if $PC.boobs == 1>>bosom<<else>>hard chest<</if>>. $He pants exhaustedly in your arms as you take her, and when $he climaxes, she manages only a weak ejaculation onto the couch. You have mercy and fuck her harder, bringing yourself to a quicker orgasm and letting her fall into $his own mess. "I @@.hotpink;love you,@@ + You stand up, and from the look on your face, $he knows it's $his turn to get fucked. $He <<if $activeSlave.fetish == "dom">>visibly shelves $his dominance<<elseif $activeSlave.fetish == "sadist">>visibly lets $his sadism go<<else>>softens visibly<</if>>, looking relieved to be able to let someone else lead. You give $him a lustful kiss on the lips and then reach down, taking hold of $his thigh and spinning $him around, raising $his leg so $his foot's on the arm of the couch. <<if $PC.dick == 1>>You slide your dick<<else>>$He reaches under $himself and back to stroke your pussy as you press your hips against $him, and you slide your fingers<</if>> inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. $He groans with discomfort as $his overtaxed dick tries and fails to become hard again, but relaxes as <<if $PC.dick == 1>>cockhead<<else>>fingertips<</if>> stimulate the most sensitive place inside $him, producing arousal that obscures the soreness. You hold $him close, <<if $PC.dick == 1>>one<<else>>your free<</if>> arm <<if $activeSlave.boobs > 4000>>cradling one of $his udders<<elseif $activeSlave.boobs > 1000>>hefting one of $his heavy breasts<<elseif $activeSlave.boobs > 400>>holding one of $his boobs<<else>>cupped over one of $his $activeSlave.nipples nipples<</if>> and hugging $him against your <<if $PC.boobs == 1>>bosom<<else>>hard chest<</if>>. $He pants exhaustedly in your arms as you take $him, and when $he climaxes, $he manages only a weak ejaculation onto the couch. You have mercy and fuck $him harder, bringing yourself to a quicker orgasm and letting $him fall into $his own mess. "I @@.hotpink;love you,@@ <<Master>>," $he mumbles into the cushions. <<if $PC.dick == 1>> Your cum glistens as it begins to drip out of $his <<if canDoVaginal($activeSlave)>>well-fucked pussy<<else>>loosened asshole, which tightens and relaxes a little with $his breathing<</if>>. diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw index 6a865fc21da2c0e8bd99b5cbc92f997af1629b39..c8ba34057c02e0ee43c68efce9d8cd4a1fa1978a 100644 --- a/src/uncategorized/RECI.tw +++ b/src/uncategorized/RECI.tw @@ -217,7 +217,7 @@ And, <<Master>>." $He arches $his back prettily and then scoots $himself down th <</if>> <</for>> -<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: she's being inspected by $his <<= WrittenMaster()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; +<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<= WrittenMaster()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>> $his chastity cage is dribbling precum, and $he's clearly uncomfortable with simultaneous arousal and unwillingness to suffer a hardon inside it. <<elseif canAchieveErection($activeSlave)>> @@ -318,7 +318,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<setLocalPronouns $Concubine 2>> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>her cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt. + You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>_his2 cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt. <br><br> Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so $he straddles the counter's edge. $He whimpers into the <<if $Concubine.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as $he feels $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Concubine is wet enough, you nod to _him2, and _he2 takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap. <<if ($Concubine.boobs > 4000) && ($activeSlave.boobs > 4000)>> @@ -441,7 +441,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<link "Then $he can appreciate a nice struggle fuck">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> you stand up from behind your desk<<if ($PC.dick == 0)>> and pull on a strap-on<</if>>, $he smiles invitingly at you and relaxes. But as you approach, $he <<if canSee($activeSlave)>>sees a dangerous glint in your eyes<<elseif canHear($activeSlave)>><else>><</if>>. One corner of $his mouth flaws upward with anticipation, and $he plays along. $He immediately curls up into a ball on the couch, managing to end up with $his <<if ($activeSlave.weight > 30)>>fat ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 5)>>absurd ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 2)>>healthy ass pushed against the seat back<<else>>trim ass against the seat back<</if>>. $He looks up at you with feigned terror and begs, "Plea<<s>>e, <<Master>>, I'm ju<<s>>t an inno<<c>>ent little $girl. Plea<<s>>e don't rape my poor little butt!" You grab an ankle and haul $his <<if ($activeSlave.weight > 10)>>plush<<elseif ($activeSlave.muscles > 5)>>toned<<else>>slender<</if>> $activeSlave.skin body toward you, dragging $him across the couch, and then half-fall atop $him, pushing <<if ($PC.dick == 0)>>the strap-on<<else>>your hard cock<</if>> up the wriggling girl's butt. $He keeps begging and whining, but $he's managed to bring a hand under $himself and is + When $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> you stand up from behind your desk<<if ($PC.dick == 0)>> and pull on a strap-on<</if>>, $he smiles invitingly at you and relaxes. But as you approach, $he <<if canSee($activeSlave)>>sees a dangerous glint in your eyes<<elseif canHear($activeSlave)>>hears a menacing cadence to your footstep<else>>realizes the reason for your delay<</if>>. One corner of $his mouth flaws upward with anticipation, and $he plays along. $He immediately curls up into a ball on the couch, managing to end up with $his <<if ($activeSlave.weight > 30)>>fat ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 5)>>absurd ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 2)>>healthy ass pushed against the seat back<<else>>trim ass against the seat back<</if>>. $He looks up at you with feigned terror and begs, "Plea<<s>>e, <<Master>>, I'm ju<<s>>t an inno<<c>>ent little $girl. Plea<<s>>e don't rape my poor little butt!" You grab an ankle and haul $his <<if ($activeSlave.weight > 10)>>plush<<elseif ($activeSlave.muscles > 5)>>toned<<else>>slender<</if>> $activeSlave.skin body toward you, dragging $him across the couch, and then half-fall atop $him, pushing <<if ($PC.dick == 0)>>the strap-on<<else>>your hard cock<</if>> up the wriggling girl's butt. $He keeps begging and whining, but $he's managed to bring a hand under $himself and is <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>> frantically rubbing $his taint. <<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw index 367ba022986e8a777db03fb3f6485d8d21dd4eb8..1b4cc30bc92e5e97254340113adaa29606751fae 100644 --- a/src/uncategorized/REFS.tw +++ b/src/uncategorized/REFS.tw @@ -72,8 +72,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -94,8 +93,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -120,8 +118,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index ff2f006c5d4bbf0648701815b498dd3e06c94aed..750dcb37a14509b4b228cc0bdf2bbf8926f2b506 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -17229,8 +17229,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<set $fixedNationality = "American">> diff --git a/src/uncategorized/arcmgmt.tw b/src/uncategorized/arcmgmt.tw index 6ecad2289941ab9ed96e5a93b7409efc5d44d17a..95fc5b795026763f7252c6ea3aa7c08652f1fce0 100644 --- a/src/uncategorized/arcmgmt.tw +++ b/src/uncategorized/arcmgmt.tw @@ -1521,7 +1521,7 @@ The Hippolyta Academy have a <<if $HA.schoolProsperity > 4>>very prosperous<<els <br> <</if>> - +<<setAssistantPronouns>> <<if $marketAssistantLimit != 0>> <<silently>> <<= MenialPopCap()>> <</silently>> <<set _menialSlaveValue = menialSlaveCost()>> @@ -1534,7 +1534,7 @@ Your ''business assistant'' manages the menial slave market. <<else>> <<if $cash > $marketAssistantLimit+_menialSlaveValue>> <<set _menialBulkPremium = Math.trunc(1+Math.clamp(($cash-$marketAssistantLimit)/_menialSlaveValue,0,_bulkMax)/400)>> - <<if $assistant == 0>>It<<else>>She<</if>> acquires more chattel, since it's a buyers' market. + _HeM acquires more chattel, since it's a buyers' market. <<if ($arcologies[0].FSPastoralist != "unset") && ($arcologies[0].FSPaternalist == "unset")>> <<set $menialBioreactors += Math.trunc(Math.clamp(($cash-$marketAssistantLimit)/(_menialSlaveValue+_menialBulkPremium-100),0,_bulkMax)), $menialSupplyFactor -= Math.trunc(Math.clamp(($cash-$marketAssistantLimit)/(_menialSlaveValue+_menialBulkPremium-100),0,_bulkMax)), $cash -= Math.trunc(Math.clamp(($cash-$marketAssistantLimit)/(_menialSlaveValue+_menialBulkPremium-100),0,_bulkMax))*(_menialSlaveValue+_menialBulkPremium-100)>> <<elseif ($arcologies[0].FSDegradationist != "unset")>> @@ -1546,7 +1546,7 @@ Your ''business assistant'' manages the menial slave market. <</if>> <<elseif _menialSlaveValue >= 1100-$marketAssistantAggressiveness>>/* SELL */ <<if $menials+$fuckdolls+$menialBioreactors > 0>> - <<if $assistant == 0>>It<<else>>She<</if>> liquidates your chattel holdings, since it's a sellers' market. + _HeM liquidates your chattel holdings, since it's a sellers' market. <</if>> <<if $menials > 0>> <<set $cash += $menials*(menialSlaveCost(-$menials)), $menialDemandFactor -= $menials, $menials = 0>> @@ -1558,7 +1558,7 @@ Your ''business assistant'' manages the menial slave market. <<set $cash += $menialBioreactors*(menialSlaveCost(-$menialBioreactors)-100), $menialDemandFactor -= $menialBioreactors, $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 _heM does not make any significant moves. <</if>> <<silently>><<= MenialPopCap()>><</silently>> <</if>> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 5ac0af06e75bbce913aa96ff3719ec9ad5693d8e..dbecadf784a54c8eda221ab18516c068a55f7a9e 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -2,7 +2,7 @@ <<set $nextButton = "Continue", $nextLink = "Slave Interact">> <<run clearSummaryCache($activeSlave)>> -<<run SlavePronouns($activeSlave)>> +<<setLocalPronouns $activeSlave>> <<run Enunciate($activeSlave)>> <<set $showEncyclopedia = 1, $encyclopedia = "The Studio">> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index f51185b2e01b06187f8b9c9084daf2e29603e697..06de9984e0640786994a687302c1c883a01fce0b 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -63,8 +63,7 @@ As you step off the elevator, you hear female voices shouting. Apparently one of <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -773,7 +772,7 @@ From this day forward, the arcology shall be known as: <<textbox "$arcologies[0] <<case "slave food">> -A screen opposite your desk springs to life, <<if $assistant == 0>>showing your personal assistant's symbol, indicating that it has a complex subject to report. When you instruct it to continue, it displays<<else>>and $assistantName's avatar appears on it seated, indicating that _heA has something complex to bring up. When you tell her to continue, _heA reviews<</if>> medical research that's just been published, on the long term effects of the liquid diet your slaves eat. The current generation of slaves is the first, and new discoveries about the effects of years of modern slavery are made all the time. Apparently, consuming state of the art slave food causes slow atrophy of slaves' digestive tracts. The slaves' ability to digest the slave food does not seem to be affected; the atrophy is the body's natural reaction to never facing digestive challenge, and once it reaches the point where the remaining digestive capacity is necessary for liquid slave food, it stops. The only negative effect known is difficulty readjusting to normal food, becoming more extreme the longer the slave food diet was followed. +A screen opposite your desk springs to life, <<if $assistant == 0>>showing your personal assistant's symbol, indicating that it has a complex subject to report. When you instruct it to continue, it displays<<else>>and $assistantName's avatar appears on it seated, indicating that _heA has something complex to bring up. When you tell _himA to continue, _heA reviews<</if>> medical research that's just been published, on the long term effects of the liquid diet your slaves eat. The current generation of slaves is the first, and new discoveries about the effects of years of modern slavery are made all the time. Apparently, consuming state of the art slave food causes slow atrophy of slaves' digestive tracts. The slaves' ability to digest the slave food does not seem to be affected; the atrophy is the body's natural reaction to never facing digestive challenge, and once it reaches the point where the remaining digestive capacity is necessary for liquid slave food, it stops. The only negative effect known is difficulty readjusting to normal food, becoming more extreme the longer the slave food diet was followed. <br><br>"In conclusion," <<if $assistant == 0>> your assistant recites, "no impact on slaves who fully adapt to slave food is likely, as long as they remain slaves. If they were to be freed, they would have to either continue obtaining liquid slave food, or go through a difficult or even impossible dietary transition." _HeA pauses. "This information is likely to remain at the level of a rumor among the slave population, unless it is openly admitted." @@ -783,11 +782,11 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<case "monstergirl">> The monstergirl bares _hisA fangs and becomes very erect. "They're stuck," _heA says. "They're fuckslaves forever." _HeA pauses. <<case "shemale">> - The shemale starts to stroke herself. "Their assholes are going to be nice and clean and fuckable forever," _heA says, starting to cum. + The shemale starts to stroke _himselfA. "Their assholes are going to be nice and clean and fuckable forever," _heA says, starting to cum. <<case "amazon">> The amazon looks pleased. "They're changing to fit their place," _heA says. <<case "businesswoman">> - The businesswoman fans herself, looking rather hot under the collar. "Another way they're bound to you," _heA says breathily. + The businesswoman fans _himselfA, looking rather hot under the collar. "Another way they're bound to you," _heA says breathily. <<case "fairy">> The small fairy giggles and spins around on one foot. "Looks like they'll be under our care for life!" _HeA comes to a stop. <<case "pregnant fairy">> diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index 057172ab89a125d5f2c236ba5efff5fd3ae169c9..2e96c590150ac80a192230df59fd528926d16910 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -1,6 +1,5 @@ :: Long Slave Description [nobr] -<<run SlavePronouns($activeSlave)>> <<run SlaveStatClamp($activeSlave)>> <<set $beauty = Beauty($activeSlave)>> <<setLocalPronouns $activeSlave>> diff --git a/src/uncategorized/neighborsFSAdoption.tw b/src/uncategorized/neighborsFSAdoption.tw index eefd690aebdb82837b4fb8a71cdfc8cbe6dd9668..db4d755f785f820a9e030e63d1de3354459a76b5 100644 --- a/src/uncategorized/neighborsFSAdoption.tw +++ b/src/uncategorized/neighborsFSAdoption.tw @@ -962,7 +962,7 @@ societal development. <</switch>> <<switch random(1,26)>> <<case 1>> - <<set _subjugationRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> + <<set _subjugationRace = setup.filterRacesLowercase.random()>> <<if ($arcologies[$i].FSSubjugationist == "unset")>> <<if ($arcologies[$i].FSSupremacist == "unset") || (_subjugationRace != $arcologies[$i].FSSupremacistRace)>> $desc preoccupied by a racial animus towards _subjugationRace people, leading the arcology to @@.yellow;adopt _subjugationRace Subjugation.@@ @@ -971,7 +971,7 @@ societal development. <</if>> <</if>> <<case 2>> - <<set _supremacistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> + <<set _supremacistRace = setup.filterRacesLowercase.random()>> <<if ($arcologies[$i].FSSupremacist == "unset")>> <<if ($arcologies[$i].FSSubjugationist == "unset") || (_supremacistRace != $arcologies[$i].FSSubjugationistRace)>> $desc preoccupied by belief in the superiority of the _supremacistRace race, leading the arcology to @@.yellow;adopt _supremacistRace Supremacy.@@ diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 886084142325f5d4df6546f1f2a12e310a5b4395..ef25dcbfd6410c4ea58e922b3760772b4fc3760c 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -216,7 +216,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<if $PC.belly >= 1500>> <<if $activeSlave.fetish == "pregnancy">> <<if $activeSlave.fetishKnown == 0>> - $He keeps stealing glances at your <<if $PC.belly >= 120000>>massive<<elseif $PC.belly >= 60000>>giant<<elseif $PC.belly >= 15000>>huge<<elseif $PC.belly >= 5000>>big<</if>> baby bump.<<if canAchieveErection($activeSlave)>> $His dick rapidly hardening.<</if>> You teasingly ask if $he'd like to feel it sometime, eliciting a delighted squeal from the girl. @@.green;$He's an impregnation fetishist!@@ + $He keeps stealing glances at your <<if $PC.belly >= 120000>>massive<<elseif $PC.belly >= 60000>>giant<<elseif $PC.belly >= 15000>>huge<<elseif $PC.belly >= 5000>>big<</if>> baby bump.<<if canAchieveErection($activeSlave)>> $His dick rapidly hardening.<</if>> You teasingly ask if $he'd like to feel it sometime, eliciting a delighted squeal from the $girl. @@.green;$He's an impregnation fetishist!@@ <<set $activeSlave.fetishKnown = 1>> <<else>> $He keeps stealing glances at your <<if $PC.belly >= 120000>>massive<<elseif $PC.belly >= 60000>>giant<<elseif $PC.belly >= 15000>>huge<<elseif $PC.belly >= 5000>>big<</if>> baby bump.<<if canAchieveErection($activeSlave)>> $His dick rapidly hardening.<</if>> As you inspect $him, you take care to gently brush your pregnancy across $him as you move. $He is practically bursting with lust by the end and @color:hotpink;eager to please you@@ so $he can be close to that belly. @@ -810,7 +810,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<if canDoAnal($activeSlave)>> <<link "Make sure $he enjoys $his first butt stuff">> <<replace "#introResult">> - You make no direct answer to $his nervous question about $his virgin butt, though you do wonder how $he was so selfish as to be a Free Cities party girl without giving up $his asshole nightly. Instead, you ask $him about $himself, ensuring that $he learns the proper way to answer questions from $his <<= WrittenMaster($activeSlave)>>. $He answers readily, even when you turn the subject to $his sexual experiences, and $he starts to get visibly aroused. Before long, $he finds $himself sitting on your lap on the couch, making out with you while $he gives you a handjob. $He stiffens a little when you begin to play with $his butthole, but you take your time. Soon $he's taking a finger, and then two, and before long, $he's riding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him. + You make no direct answer to $his nervous question about $his virgin butt, though you do wonder how $he was so selfish as to be a Free Cities party $girl without giving up $his asshole nightly. Instead, you ask $him about $himself, ensuring that $he learns the proper way to answer questions from $his <<= WrittenMaster($activeSlave)>>. $He answers readily, even when you turn the subject to $his sexual experiences, and $he starts to get visibly aroused. Before long, $he finds $himself sitting on your lap on the couch, making out with you while $he gives you a handjob. $He stiffens a little when you begin to play with $his butthole, but you take your time. Soon $he's taking a finger, and then two, and before long, $he's riding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him. <</replace>> <<set $activeSlave.trust += 10>> <<set $activeSlave.anus = 1>> @@ -839,7 +839,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <br> <<link "Clean up $his whorish appearance">> <<replace "#introResult">> - $He's totally unsurprised when you send $him to the salon for a makeover. It takes several days of work before $he's brought back in for another inspection; when $he arrives, you wordlessly point $him to a full length mirror. $He <<if canSee($activeSlave)>>sees $himself<<else>> <<if $activeSlave.amp != 1>>tenderly uses $his hands and finds $himself<<else>> stoically waits while you vividly describe $his new appearance. One<</if>> <</if>>without tattoos, a hooker's haircut and piercings, a conventionally pretty girl with subtle implants and a clean appearance. $He gasps <<if $activeSlave.amp != 0>>and covers $his mouth with a hand <<else>> but quickly closes $his mouth<</if>>, and then suddenly bursts into tears. "Thank you, <<Master>>," $he sobs. "I never would have thought." <<if $activeSlave.amp != 1>> $He reaches out to touch $his reflection.<</if>> "I <<if canSee($activeSlave)>> look <<else>> would look<</if>> like a nice girl." $He is @@.hotpink;grateful to you@@ for <<if canSee($activeSlave)>>showing $him<<else>> <<if $activeSlave.amp != 1>> letting $him feel <<else>> detailing <</if>> <</if>> this new side of $himself, and has @@.mediumaquamarine;begun to trust@@ that being your slave will be less degrading than being a free prostitute. + $He's totally unsurprised when you send $him to the salon for a makeover. It takes several days of work before $he's brought back in for another inspection; when $he arrives, you wordlessly point $him to a full length mirror. $He <<if canSee($activeSlave)>>sees $himself<<else>> <<if $activeSlave.amp != 1>>tenderly uses $his hands and finds $himself<<else>> stoically waits while you vividly describe $his new appearance. One<</if>> <</if>>without tattoos, a hooker's haircut and piercings, a conventionally pretty $girl with subtle implants and a clean appearance. $He gasps <<if $activeSlave.amp != 0>>and covers $his mouth with a hand <<else>> but quickly closes $his mouth<</if>>, and then suddenly bursts into tears. "Thank you, <<Master>>," $he sobs. "I never would have thought." <<if $activeSlave.amp != 1>> $He reaches out to touch $his reflection.<</if>> "I <<if canSee($activeSlave)>> look <<else>> would look<</if>> like a nice $girl." $He is @@.hotpink;grateful to you@@ for <<if canSee($activeSlave)>>showing $him<<else>> <<if $activeSlave.amp != 1>> letting $him feel <<else>> detailing <</if>> <</if>> this new side of $himself, and has @@.mediumaquamarine;begun to trust@@ that being your slave will be less degrading than being a free prostitute. <</replace>> <<set $activeSlave.trust += 4>> <<set $activeSlave.devotion += 4>> @@ -868,7 +868,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<replace "#introResult">> You send $him out to be cleaned up and inducted, but have $him brought back afterward. You point out a clothes box on the couch and tell $him to get dressed, since you're about to make a tour of the club, and $he'll be accompanying you. $He obeys without comment, but gasps with shock to find that $he's been given a string sling bikini. $He climbs into it hesitantly, and finds that not only does its string bottom ride up between $his pussylips, it does not cover $his nipples at all: the strings part to either side of the nipples to let them stick through, bare. This can only generously be called clothing. $He accepts this with an obvious internal sigh, however, and walks dutifully behind you, $his bare feet slapping along as $his big butt bounces and $his tits constantly fall out of $his strings. <<if $activeSlave.behavioralFlaw != "shamefast">> - After a while, though, $he notices that $he's getting a lot of very positive attention, and even starts to strut it a little. When you get back to the penthouse, you ask $him how $he felt. $He blushes. "Kinda hot, <<Master>>," $he <<say>>s, embarrassed. "I didn't think an older girl like me would get <<s>>o many <<s>>tare<<s>>." You reach out to grope $his tits, and tell $him that with breasts like $hers, it's not surprising. $He @@.hotpink;likes you@@ for liking $his body, and has @@.mediumaquamarine;begun to trust@@ that even though $he's old, $he can find a place under you. + After a while, though, $he notices that $he's getting a lot of very positive attention, and even starts to strut it a little. When you get back to the penthouse, you ask $him how $he felt. $He blushes. "Kinda hot, <<Master>>," $he <<say>>s, embarrassed. "I didn't think an older $girl like me would get <<s>>o many <<s>>tare<<s>>." You reach out to grope $his tits, and tell $him that with breasts like $hers, it's not surprising. $He @@.hotpink;likes you@@ for liking $his body, and has @@.mediumaquamarine;begun to trust@@ that even though $he's old, $he can find a place under you. <<set $activeSlave.trust += 4>> <<set $activeSlave.devotion += 4>> <<else>> @@ -1334,7 +1334,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<elseif $activeSlave.vagina >= 2>> inside $his accommodating pussy, which is welcoming enough that the rough insertion doesn't hurt $him physically. <<else>> - inside $his tight little pussy, making the poor girl writhe with discomfort. + inside $his tight little pussy, making the poor $girl writhe with discomfort. <</if>> <<else>> <<if $activeSlave.anus >= 3>> @@ -1342,7 +1342,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<elseif $activeSlave.anus >= 2>> up $his welcoming butt, which is loose enough that the rough insertion doesn't hurt $him physically. <<else>> - up $his poor little butthole, making the poor girl struggle desperately with anal pain. + up $his poor little butthole, making the poor $girl struggle desperately with anal pain. <</if>> <</if>> You take $him, hard, while passersby stare at $him as $he gets pounded over a rail. @@ -1471,7 +1471,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<elseif $activeSlave.dick == 6>> You grin sadistically at $him as $his massive dick fills both of your hands. <</if>> - As $he begins to moan with lust, you grip down tightly and force $him to the floor. You straddle $him and lower your dripping pussy onto $his face<<if $PC.dick == 1>>, your erect cock coming to rest on $his forehead<</if>>. You continue stroking your toy's rod as $he eagerly begins eating you out. As $his cock begins to throb, anticipating $his upcoming orgasm, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have initiated the new slave by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. A few strokes later and your hand is coated in $his cum. You turn around and order the exhausted girl to clean $his cum off your hand<<if $PC.dick == 1>> and to finish off $his twitching dick<</if>>; $he @@.hotpink;complies meekly,@@ knowing you are the @@.gold;dominant force@@ in $his life now. + As $he begins to moan with lust, you grip down tightly and force $him to the floor. You straddle $him and lower your dripping pussy onto $his face<<if $PC.dick == 1>>, your erect cock coming to rest on $his forehead<</if>>. You continue stroking your toy's rod as $he eagerly begins eating you out. As $his cock begins to throb, anticipating $his upcoming orgasm, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have initiated the new slave by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. A few strokes later and your hand is coated in $his cum. You turn around and order the exhausted $girl to clean $his cum off your hand<<if $PC.dick == 1>> and to finish off $his twitching dick<</if>>; $he @@.hotpink;complies meekly,@@ knowing you are the @@.gold;dominant force@@ in $his life now. <</replace>> <<set $activeSlave.devotion += 5>> <<set $activeSlave.trust -= 3>> @@ -1487,7 +1487,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << $He complies eagerly. $He begins with sucking your popped navel before running $his tongue across the taut, smooth surface of your pregnancy. Once $he has finished with your belly, $he lowers $himself under it to begin work on your needy pussy. Before long, $his overzealous efforts have you quaking in pleasure, rousing your child. Once $he finishes you off, $he returns to rubbing your belly, soothing your rowdy child and @@.hotpink;solidifying $his place@@ beneath you. <<set $activeSlave.devotion += 15>> <<else>> - $He shifts $his gaze between your middle and your face, not sure what to do. Losing patience, you toss a tube of cream at $him. $He shakily massages it onto your stretched skin, missing spots, much to your pleasure. With reason, you force $him onto $his back, turn around, and plant your needy cunt directly onto $his face. Struggling to breath under your weight, $he begins eating you out in desperation. After coaxing $him to massage your belly as $he does, you quickly climax across $his face and gently lift yourself off the coughing girl. $He now @@.hotpink;understands $his place in life@@ and is @@.gold;terrified@@ about what $he will have to do if $he wants to survive. + $He shifts $his gaze between your middle and your face, not sure what to do. Losing patience, you toss a tube of cream at $him. $He shakily massages it onto your stretched skin, missing spots, much to your pleasure. With reason, you force $him onto $his back, turn around, and plant your needy cunt directly onto $his face. Struggling to breath under your weight, $he begins eating you out in desperation. After coaxing $him to massage your belly as $he does, you quickly climax across $his face and gently lift yourself off the coughing $girl. $He now @@.hotpink;understands $his place in life@@ and is @@.gold;terrified@@ about what $he will have to do if $he wants to survive. <<set $activeSlave.devotion += 5>> <<set $activeSlave.trust -= 5>> <</if>> @@ -1534,7 +1534,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</if>> $He tries to squirm away from the moist spot growing under $his cheek, but you reveal your nipple and carefully direct $his mouth over it. <<if $activeSlave.fetish == "pregnancy">> - Slowly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your <<if $PC.dick == 1>>growing erection and enthusiastically begins pumping away. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<<else>>wet pussy and enthusiastically begins rubbing your clit. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<</if>>. Before long you find yourself bucking your hips with lust, a queue for you to release $him from your nipple so $he may slide down your gravid dome of a belly to finish you off. Happy to serve $his pregnant <<= WrittenMaster($activeSlave)>>, $he returns to your chest, happy to relieve you of the pressure building in your neglected breast. <<if $activeSlave.fetishKnown == 0>>Judging by that show, @@.green;$he savors getting to be with a pregnant woman.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a pregnancy fetish and $his eagerness to serve a pregnant woman proves that.<</if>> A kick from within startles you from your thoughts; as you reach to soothe your child, you find your new slave @@.mediumaquamarine;already doting on it.@@ $He's already starting to @@.hotpink;show understanding of $his place.@@ + Slowly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your <<if $PC.dick == 1>>growing erection and enthusiastically begins pumping away. You clutch your pervy $girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<<else>>wet pussy and enthusiastically begins rubbing your clit. You clutch your pervy $girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<</if>>. Before long you find yourself bucking your hips with lust, a queue for you to release $him from your nipple so $he may slide down your gravid dome of a belly to finish you off. Happy to serve $his pregnant <<= WrittenMaster($activeSlave)>>, $he returns to your chest, happy to relieve you of the pressure building in your neglected breast. <<if $activeSlave.fetishKnown == 0>>Judging by that show, @@.green;$he savors getting to be with a pregnant woman.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a pregnancy fetish and $his eagerness to serve a pregnant woman proves that.<</if>> A kick from within startles you from your thoughts; as you reach to soothe your child, you find your new slave @@.mediumaquamarine;already doting on it.@@ $He's already starting to @@.hotpink;show understanding of $his place.@@ <<set $activeSlave.devotion += 15, $activeSlave.trust += 15>> <<elseif $activeSlave.fetish == "boobs">> Eagerly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your neglected breast. $He massages it, careful not to encourage your lactation too much, as $he greedily sucks you dry. $He wastes no time in swapping to your other nipple, shifting $his ministrations to the one the just left. By the time your reserves are tapped out, both you and $he are quite content. You permit $him to rest against your chest for a little before you send $him on $his way. <<if $activeSlave.fetishKnown == 0>>Judging by $his enthusiasm, @@.green;$he savors getting $his mouth close to a pair of boobs.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a breast fetishist and $his eagerness to lighten a lactating woman proves that.<</if>> A kick from within startles you from your thoughts; you pat your gravid middle, reassuring your child that you'll make sure to save some milk for them. $He's already starting to @@.hotpink;show understanding of $his place@@ and even @@.mediumaquamarine;beginning to build trust@@ with you. @@ -1554,10 +1554,10 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <br> <<link "Let your ample bust dominate $his pathetic one">> <<replace "#introResult">> - You quickly strip off your shirt and draw close to $activeSlave.slaveName. You grab $him as $he attempts to back away and pull $his tits directly into your own. Both of sets of eyes lock onto their pair of breasts, or they would have, had yours not utterly eclipsed their rival. Scoffing, you release the confused girl and walk away; leaving $him cupping $his own breasts and feeling uncertain about $himself. $He gets caught up in how small they really are, and how much @@.hotpink;lesser@@ than $him <<= WrittenMaster($activeSlave)>> $he is. + You quickly strip off your shirt and draw close to $activeSlave.slaveName. You grab $him as $he attempts to back away and pull $his tits directly into your own. Both of sets of eyes lock onto their pair of breasts, or they would have, had yours not utterly eclipsed their rival. Scoffing, you release the confused $girl and walk away; leaving $him cupping $his own breasts and feeling uncertain about $himself. $He gets caught up in how small they really are, and how much @@.hotpink;lesser@@ than $him <<= WrittenMaster($activeSlave)>> $he is. <<if $activeSlave.fetish == "boobs">> <<if $activeSlave.fetishKnown == 0>> - You did note one thing when your breasts touched, $his nipples <<if $activeSlave.nipples == "fuckable">>tightened around yours<<else>>got very hard<</if>>. @@.green;Looks like $he's a breast fetishist!@@ + You did note one thing when your breasts touched; $his nipples <<if $activeSlave.nipples == "fuckable">>tightened around yours<<else>>got very hard<</if>>. @@.green;Looks like $he's a breast fetishist!@@ <<set $activeSlave.fetishKnown = 1>> <</if>> <</if>> @@ -1803,8 +1803,9 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <br>//...in the Industrial Dairy// <br> <<link "Threaten $him with the Industrial Dairy">> + <<setNonlocalPronouns $seeDicks>> <<replace "#introResult">> - You tell $him that it's in $his interests to be a good girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from the Industrial Dairy. $He gazes spellbound at the interleaved row of bodies intertwined with machines in embraces far more intimate than any lover could hope to match. The gently heaving masses of breastflesh hold $his fascinated and horrified attention until one of the machines fortuitously chooses this moment to cycle its occupant's anal hydration regimen. It withdraws its horse-sized phallus from the slave's anus, leaving $his gape pulsing gently as it awaits the resumption of the endless assrape. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good girl.@@ + You tell $him that it's in $his interests to be a good $girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from the Industrial Dairy. $He gazes spellbound at the interleaved row of bodies intertwined with machines in embraces far more intimate than any lover could hope to match. The gently heaving masses of breastflesh hold $his fascinated and horrified attention until one of the machines fortuitously chooses this moment to cycle its occupant's anal hydration regimen. It withdraws its horse-sized phallus from the slave's anus, leaving _hisU gape pulsing gently as it awaits the resumption of the endless assrape. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good $girl.@@ <</replace>> <<set $activeSlave.devotion += 10>> <<set $activeSlave.trust -= 10>> @@ -1888,17 +1889,17 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<if ($arcade > 0) && ($seeExtreme == 1)>> <br>//...in the Arcade// <br> - <<link "Threaten $him with the Arcade">> + <<setNonlocalPronouns $seeDicks>> <<replace "#introResult">> - You tell $him that it's in $his interests to be a good girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from $arcadeName. $He gazes at the row of butts sticking out of the wall at dick height, not quite realizing what $he's seeing. Then $he notices that there are citizens pumping away in front of two of the butts, and $he understands. As $he watches, terrified, first one citizen and then the other finishes and steps away. The first arcade inmate's <<if $seeDicks != 100>>pussy<<else>>butt<</if>> is left looking sore until $arcadeName's systems cover $him for a quick cleaning, and the second inmate's asshole <<if $seeDicks != 0>>has obviously seen severe use, since the poor girl doesn't have a pussy to spread the load<<else>>is loose enough that the machines have to clean up the cum it drools onto the floor<</if>>. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good girl.@@ + You tell $him that it's in $his interests to be a good $girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from $arcadeName. $He gazes at the row of butts sticking out of the wall at dick height, not quite realizing what $he's seeing. Then $he notices that there are citizens pumping away in front of two of the butts, and $he understands. As $he watches, terrified, first one citizen and then the other finishes and steps away. The first arcade inmate's <<if $seeDicks != 100>>pussy<<else>>butt<</if>> is left looking sore until $arcadeName's systems cover _himU for a quick cleaning, and the second inmate's asshole <<if $seeDicks != 0>>has obviously seen severe use, since the poor _girlU doesn't have a pussy to spread the load<<else>>is loose enough that the machines have to clean up the cum it drools onto the floor<</if>>. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good girl.@@ <</replace>> <<set $activeSlave.devotion += 10>> <<set $activeSlave.trust -= 10>> <</link>> <<if ($arcade > $arcadeSlaves) || ($arcadeUpgradeFuckdolls != 0)>> - | <<link "Send $him straight to the Arcade">> + | <<link "Send $him straight to the Arcade">> <<set $activeSlave.assignment = "be confined in the arcade">> <<set $activeSlave.assignmentVisible = 0>> <<set $activeSlave.choosesOwnAssignment = 0>> diff --git a/src/uncategorized/pBioreactorPerfected.tw b/src/uncategorized/pBioreactorPerfected.tw index 44c710866c676e470d5fd8294e5d2720dfc6b421..9c2a18c7bda19090b3a1ea244ac895e87344a6ba 100644 --- a/src/uncategorized/pBioreactorPerfected.tw +++ b/src/uncategorized/pBioreactorPerfected.tw @@ -88,7 +88,7 @@ You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSl <<case "loli">> The little girl positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks meditative. <<case "preggololi">> - The little girl positions _himselfA on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. _HeA looks meditative. + The little girl positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks meditative. <<case "angel">> The angel positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently caressing the slave. _HeA looks meditative. <<case "cherub">> @@ -96,7 +96,7 @@ You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSl <<case "incubus">> The incubus positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently groping the slave's rear. _HeA looks uncharacteristically meditative. <<case "succubus">> - The succubus positions _himselfA on the screen to create an optical illusion that makes it look like _heA's resting her breasts on the slave's head. _HeA looks uncharacteristically meditative. + The succubus positions _himselfA on the screen to create an optical illusion that makes it look like _heA's resting _hisA breasts on the slave's head. _HeA looks uncharacteristically meditative. <<case "imp">> The imp positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently rubbing the slave's shoulders while hovering over them. _HeA looks uncharacteristically meditative. <<case "witch">> diff --git a/src/uncategorized/pCollaborationChoice.tw b/src/uncategorized/pCollaborationChoice.tw index 9619494daba13c5eacfa4f6f846ec76a273abc08..5369f8969358b234b3ae6b70f09e2ca56f2c17df 100644 --- a/src/uncategorized/pCollaborationChoice.tw +++ b/src/uncategorized/pCollaborationChoice.tw @@ -10,14 +10,14 @@ Your next communication from the Daughters of Liberty is a request for a live vi <br><br> -"Hello, <<Master>>," $he says simply. "It'<<s>> happening soon. The Daughter<<s>> have a<<s>>ked me to call you to a<<s>>k you for your help. All they need i<<s>> the a<<cc>>e<<ss>> code<<s>> to your <<s>>ecurity <<s>>y<<s>>tem<<s>>. They'll let you live, <<Master>>, they'll even let you take your money. But the arcology and the <<s>>lave<<s>>, those will have to go free." $He hesitates a little. "<<Master>> I like being free. But I don't want to see you killed. Please, please agree." +"Hello, <<Master>>," $he <<say>>s simply. "It'<<s>> happening soon. The Daughter<<s>> have a<<s>>ked me to call you to a<<s>>k you for your help. All they need i<<s>> the a<<cc>>e<<ss>> code<<s>> to your <<s>>ecurity <<s>>y<<s>>tem<<s>>. They'll let you live, <<Master>>, they'll even let you take your money. But the arcology and the <<s>>lave<<s>>, tho<<s>>e will have to go free." $He hesitates a little. "<<Master>>, I like being free. But I don't want to <<s>>ee you killed. Plea<<s>>e, plea<<s>>e agree." <br><br> <span id="result"> <<link "Transmit the codes">> <<replace "#result">> - You transmit the access codes to your security systems. $traitor.slaveName smiles and thanks you. "You made the right decision, <<Master>>. I love you." + You transmit the access codes to your security systems. $traitor.slaveName smiles and thanks you. "You made the right de<<c>>i<<s>>ion, <<Master>>. I love you." <<set $collaboration = 1>> <</replace>> <</link>> diff --git a/src/uncategorized/pFSAnnouncement.tw b/src/uncategorized/pFSAnnouncement.tw index 042794bbcbef4c87759595ffb12fa4f739a2c26d..0f76b92a09f4d2ec22f991d9c79f2716144175a8 100644 --- a/src/uncategorized/pFSAnnouncement.tw +++ b/src/uncategorized/pFSAnnouncement.tw @@ -5,9 +5,10 @@ <<set $FSAnnounced = 1>> <<set $FSCredits += 1>> <<set $FSGotRepCredits = 1>> +<<setAssistantPronouns>> The simple pleasure of power has to be experienced to be understood. You often take a moment to stand on a balcony overlooking an interior atrium, watching the living, breathing, flowing current of your demesne. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> knows to allow you these moments of peace. <br><br> -You immediately pay attention, therefore, when she interrupts. "<<= properTitle()>>," she says, "this is an appropriate moment to bring a serious matter to your attention. I monitor conversations, social media, and general opinion within the arcology where I can. You are respected, and the inhabitants of this arcology are starting to look to you to give direction to society." +You immediately pay attention, therefore, when _heA interrupts. "<<= properTitle()>>," _heA says, "this is an appropriate moment to bring a serious matter to your attention. I monitor conversations, social media, and general opinion within the arcology where I can. You are respected, and the inhabitants of this arcology are starting to look to you to give direction to society." <br><br> -"This is not a situation that requires your attention," she continues. "You can continue to lead them by simple example. Or, you can take a more active role in defining the future. The rewards could be considerable. I will make the necessary additions to the arcology management interface to support societal modification." +"This is not a situation that requires your attention," _heA continues. "You can continue to lead them by simple example. Or, you can take a more active role in defining the future. The rewards could be considerable. I will make the necessary additions to the arcology management interface to support societal modification." diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw index 17d9c1f8a002372aa5a2691f09695549fb0746b3..953d3be356f74b36101751f2bd7541b4f79d50b9 100644 --- a/src/uncategorized/pHostageAcquisition.tw +++ b/src/uncategorized/pHostageAcquisition.tw @@ -138,7 +138,7 @@ Your hired mercenaries are en route now with your precious cargo. <<set $activeSlave.trust = 80>> Your mercenaries radio you upon arrival. "This one's got quite a lip on $him, you better ready yourself. We're coming in now." Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, $he stands $his ground. After several steps, $he shouts "Stay away from me, you sick fuck! How dare you steal a woman's purpose away from her! I'll show you! I hope my new pregnancy makes me burst all over your fucking off-" - The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid. Also when we raided that arcology, we saw some shit. Girls looking like they were pregnant with elephants or with bellies coated with lumps and bumps. $He might be carrying something terrifying in $his womb, just lettin' you know," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. She looks the same as you remember, save for $his notable pot belly, but $he acts nothing like the girl you used to know. Odds are high that $he'll cause problems for you in the future, especially if $he is telling the truth about what lurks in $his womb. + The mercenary captain quickly gags $him. "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid. Also when we raided that arcology, we saw some shit. Girls looking like they were pregnant with elephants or with bellies coated with lumps and bumps. $He might be carrying something terrifying in $his womb, just lettin' you know," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, save for $his notable pot belly, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, especially if $he is telling the truth about what lurks in $his womb. <</if>> <</if>> <<case "Gender Radicalism">> @@ -259,7 +259,7 @@ Your hired mercenaries are en route now with your precious cargo. Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth, unsure of what to make of you. As you step forward, $he hesitatingly approaches. Once $he is close enough $he asks "<<if $PC.visualAge >= 50>>Were you always that attractive?<<else>>Can I hang out with some MILFS?<</if>>" While $he looks the same as you remember, $he certainly doesn't think the same anymore. <<elseif $rivalryDuration <= 20>> <<set $activeSlave.trust = 40>> - Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth, unsure of what to make of you. As you step forward, $he quickly steps back. After several steps, $he says "<<if $PC.visualAge >= 50>>You know, you're soo much older than me... I like that", with a wink.<<elseif $PC.visualAge < 35>>Ew, you're soo young. Keep your hands off me!<<else>>Can you hook me up with a nice MILF?<</if>>". While $he looks the same as you remember, $he definitely doesn't think the same anymore. + Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth, unsure of what to make of you. As you step forward, $he quickly steps back. After several steps, $he says "<<if $PC.visualAge >= 50>>You know, you're soo much older than me... I like that," with a wink.<<elseif $PC.visualAge < 35>>Ew, you're soo young. Keep your hands off me!<<else>>Can you hook me up with a nice MILF?<</if>>" While $he looks the same as you remember, $he definitely doesn't think the same anymore. <<else>> <<set $activeSlave.trust = 80>> Your mercenaries radio you upon arrival. "This one's got quite some spunk in $him, you better ready yourself. We're coming in now." diff --git a/src/uncategorized/pInvasion.tw b/src/uncategorized/pInvasion.tw index 266d241b7be4ad37a319e54393413f27c515e59a..a2e0f4e86c86e9c64b952ad8bfd7433d325da58b 100644 --- a/src/uncategorized/pInvasion.tw +++ b/src/uncategorized/pInvasion.tw @@ -13,44 +13,44 @@ Sirens are blaring; there is a crump far above as $arcologies[0].name's defensiv <<if $assistant == 0>> Your personal assistant offers terse reports on the efficiency of the point defense fire. <<else>> - You get a report on the artillery battle from $assistantName, whose avatar is showing off her prowess at point defense. + You get a report on the artillery battle from $assistantName, whose avatar is showing off _hisA prowess at point defense. <<switch $assistantAppearance>> <<case "monstergirl">> - Her tentacle hair is spread out and forward, forming a concave shape around her face, and she's firing beams from her eyes + _HisA tentacle hair is spread out and forward, forming a concave shape around _hisA face, and _heA's firing beams from _hisA eyes <<case "shemale">> - She's using both hands to aim her massive erection, and is firing blasts of cum + _HeA's using both hands to aim _hisA massive erection, and is firing blasts of cum <<case "amazon">> - She's holding a hide shield and a club, which she's using to swat + _HeA's holding a hide shield and a club, which _heA's using to swat <<case "businesswoman">> - She looks as immaculate as ever. The stern little businesswoman is cradling an expensive fowling piece, which she's using to fire + _HeA looks as immaculate as ever. The stern little businesswoman is cradling an expensive fowling piece, which _heA's using to fire <<case "fairy">> - She zips around in the air, getting in close to fire a barrage of little balls of light + _HeA zips around in the air, getting in close to fire a barrage of little balls of light <<case "pregnant fairy">> - Striking a match almost half as long as she is, she happily skips along a line of fireworks and lights them as she goes. One by one they blast off and fly into the sky + Striking a match almost half as long as _heA is, _heA happily skips along a line of fireworks and lights them as _heA goes. One by one they blast off and fly into the sky <<case "goddess">> - Her expression is one of affronted maternal protectiveness, and she's using outstretched hands to project beams of pure light + _HisA expression is one of affronted maternal protectiveness, and _heA's using outstretched hands to project beams of pure light <<case "hypergoddess">> - Her expression is one of affronted maternal protectiveness, and she's using outstretched hands to project beams of pure light + _HisA expression is one of affronted maternal protectiveness, and _heA's using outstretched hands to project beams of pure light <<case "loli">> - She's wearing an annoyed expression and is pretending to shoot her fingers + _HeA's wearing an annoyed expression and is pretending to shoot _hisA fingers <<case "preggololi">> - She's wearing a tired expression and is pretending to shoot her fingers + _HeA's wearing a tired expression and is pretending to shoot _hisA fingers <<case "schoolgirl">> - She's wearing a fierce expression and holding a baseball bat, using it to swat + _HeA's wearing a fierce expression and holding a baseball bat, using it to swat <<case "angel">> - She has her wings spread to safeguard your arcology and firing beams of holy light + _HeA has _hisA wings spread to safeguard your arcology and firing beams of holy light <<case "cherub">> - She is darting around, firing beams of holy light + _HeA is darting around, firing beams of holy light <<case "incubus">> - She is carefully aiming her cumshots + _HeA is carefully aiming _hisA cumshots <<case "succubus">> - She is flying around, using her rear to catch depictions of projectiles and moaning lewdly with each hit. + _HeA is flying around, using _hisA rear to catch depictions of projectiles and moaning lewdly with each hit. <<case "imp">> - She is darting around, throwing balls of darkness + _HeA is darting around, throwing balls of darkness <<case "witch">> - She is using a broom to swat + _HeA is using a broom to swat <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - She has split into countless fleshy tendrils and is rapidly swinging + _HeA has split into countless fleshy tendrils and is rapidly swinging <<default>> The symbol radiates readouts of ammunition, power, and targeting, clean lines flashing <</switch>> diff --git a/src/uncategorized/pPeacekeepersDeficit.tw b/src/uncategorized/pPeacekeepersDeficit.tw index 3f0613b2a9c3f5a3422e4e3d3a6da41455d7ad3e..809a437f071b4d8a6b2519029f8f96dfb59cbe0d 100644 --- a/src/uncategorized/pPeacekeepersDeficit.tw +++ b/src/uncategorized/pPeacekeepersDeficit.tw @@ -14,7 +14,7 @@ It's a video link, and the general is in the field somewhere, wearing scuffed ar <br><br> -"And second," he continues, "I'm having difficulty housing the prisoners we're taking. We're the only functioning law and order in this area, and in order to keep control I'm having to lock up everyone from armed bandits to petty looters. I don't have the resources to imprison them decently. I'm already getting flak about conditions in our main prison camp, here." He arches an eyebrow. "Some people back home seem to care more about keeping prisoners comfortable than they care about getting my wounded men and women the best possible care. And I can't just reduce the prisoner population, either. There are too many of them. Word would get out, and there'd be hell to pay back home." +"And second," he continues, "I'm having difficulty housing the prisoners we're taking. We're the only functioning law and order in this area, and in order to keep control I'm having to lock up everyone from armed bandits to petty looters. I don't have the resources to imprison them decently. I'm already getting flak about conditions in our main prison camp here." He arches an eyebrow. "Some people back home seem to care more about keeping prisoners comfortable than they care about getting my wounded men and women the best possible care. And I can't just reduce the prisoner population, either. There are too many of them. Word would get out, and there'd be hell to pay back home." <br><br> diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw index 30d30b4f9dd0612ff3eeaaf1824e196175f4df74..e82f982196f4bf77cec2faa4862ee98c8d2506d5 100644 --- a/src/uncategorized/pRivalryActions.tw +++ b/src/uncategorized/pRivalryActions.tw @@ -16,6 +16,7 @@ <<setLocalPronouns $hostage>> <</if>> +<<setAssistantPronouns>> <<setNonlocalPronouns $seeDicks>> Your inter-arcology war with the arcology owner behind the Daughters of Liberty has dragged on for $rivalryDuration week<<if $rivalryDuration > 1>>s<</if>>. The tone of your arcology is a bit more somber than usual. You have enhanced security in place, and the populace has caught the mood. @@ -1025,7 +1026,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.butt = 7>> <<set $hostage.fetishStrength = 100>> <<set $hostage.sexualFlaw = "breast growth">> - getting $his immobilizing <<print $hostage.boobs>>cc breasts massaged by a pair of flat slaves. $He is rambling on about how much happier $h4 is with $his massive tits and ass than when $he was flat like them. + getting $his immobilizing <<print $hostage.boobs>>cc breasts massaged by a pair of flat slaves. $He is rambling on about how much happier $he is with $his massive tits and ass than when $he was flat like them. <<case "Asset Expansionism">> <<set $hostage.trust -= 5>> <<set $hostage.devotion -= 5>> @@ -1039,7 +1040,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.boobs = 400>> <<set $hostage.vaginalCount += 1>> <<set $hostage.fetishStrength = 100>> - bench pressing a rather large dumbbell in a strongwoman contest. $He is overjoyed when $he places first. + bench pressing a rather large dumbbell in a strong$woman contest. $He is overjoyed when $he places first. <<case "Cummunism">> <<set $hostage.trust -= 5>> <<set $hostage.devotion -= 5>> @@ -1082,7 +1083,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.boobs = 400>> <<set $hostage.vaginalCount += 1>> <<set $hostage.fetishStrength = 100>> - bench pressing a rather large dumbbell in a strongwoman contest. $He is overjoyed when $he places first. + bench pressing a rather large dumbbell in a strong$woman contest. $He is overjoyed when $he places first. <<case "Chattel Religionism">> <<set $hostage.trust -= 5>> <<set $hostage.devotion -= 5>> @@ -1224,7 +1225,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<case "Body Purism">> <<set $hostage.boobs = 50000>> <<set $hostage.boobsImplant 45000>> - giving an interview. $He gushes over how great it feels being more silicone than girl and how terrible it is that some people want to deny girls this pleasure. + giving an interview. $He gushes over how great it feels being more silicone than $girl and how terrible it is that some people want to deny girls this pleasure. <<case "Transformation Fetishism">> <<set $hostage.vaginalCount += 1>> giving an interview. $He gushes over how great it feels being implant free and how terrible some people are to force inhumane implants into their slaves. @@ -1242,7 +1243,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.boobs = 50000>> <<set $hostage.weight = 100>> <<set $hostage.butt = 9>> - giving an interview. $He gushes over how great it feels being more breast than girl and how terrible it is that some people want to keep girls anorexic toothpicks. + giving an interview. $He gushes over how great it feels being more breast than $girl and how terrible it is that some people want to keep girls anorexic toothpicks. <<case "Asset Expansionism">> <<set $hostage.vaginalCount += 1>> giving an interview. $He gushes over how great it feels being more thin and fit and how terrible it is that some people want to keep girls nothing more than bloated cows. @@ -1261,7 +1262,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.fetishStrength = 100>> <<set $hostage.vaginalCount += 60>> <<set $hostage.vagina = 5>> - moaning as $he shoves food into $his mouth with one hand and fondles $his lover's body with the other. "My apologies. I don't have $his weight for you this week. You see, $he broke the scale when $he stepped on it, well I suppose that tells you plenty. Though I have another surprise for you! <<= SlaveFullName($hostage)>>, would you like to tell 'em yourself?" $He shouts, spewing crumbs everywhere, + moaning as $he shoves food into $his mouth with one hand and fondles $his lover's body with the other. "My apologies. I don't have $his weight for you this week. You see, $he broke the scale when $he stepped on it. Well, I suppose that tells you plenty. Though I have another surprise for you! <<= SlaveFullName($hostage)>>, would you like to tell 'em yourself?" $He shouts, spewing crumbs everywhere, <<switch $hostageFetish>> <<case "submissive">> "I haven't orgasmed all week, but I've made sure to bring every one of my lovers to climax! That's what I love most, seeing the look of satisfaction on their faces as they blow their loads deep into me!" @@ -1898,7 +1899,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.muscles += 5>> <<set $hostage.fetishStrength += 5>> <<set $hostage.vaginalCount += 1>> - reluctantly doing situps, $his plush body struggling to manage. + reluctantly doing sit-ups, $his plush body struggling to manage. <<elseif $rivalryDuration <= 15>> <<set $hostage.trust -= 5>> <<set $hostage.devotion -= 5>> @@ -2056,7 +2057,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.muscles += 5>> <<set $hostage.fetishStrength += 5>> <<set $hostage.vaginalCount += 1>> - reluctantly doing situps, $his plush body struggling to manage. + reluctantly doing sit-ups, $his plush body struggling to manage. <<elseif $rivalryDuration <= 15>> <<set $hostage.trust -= 5>> <<set $hostage.devotion -= 5>> @@ -3875,7 +3876,7 @@ You remind yourself that success in this conflict will not be defined by the tra <<if $mercenaries >= 3>> <br><<link "Your peers will tolerate an attack if it's covert">> <<replace "#result">> - One night, you're working late in your office, $assistantName's avatar glowing companionably beside you. Without preamble, <<if $assistant == 0>>it<<else>>she<</if>> reports to you in <<if $assistant == 0>>its<<else>>her<</if>> normal tones, "Team One reports + One night, you're working late in your office, $assistantName's avatar glowing companionably beside you. Without preamble, _heA reports to you in _hisA normal tones, "Team One reports <<switch $rivalryFS>> <<case "Racial Subjugationism">>Racemixer <<case "Racial Supremacism">>Miscegenator @@ -3926,7 +3927,7 @@ You remind yourself that success in this conflict will not be defined by the tra <<if $mercenaries >= 3>> <br><<link "Lock your rival down and let your mercs walk right in.">> <<replace "#result">> - While you hold your rival's arcology's system under your complete control, $assistantName finally reports to you in <<if $assistant == 0>>its<<else>>her<</if>> normal tones, "Team One reports + While you hold your rival's arcology's system under your complete control, $assistantName finally reports to you in _hisA normal tones, "Team One reports <<switch $rivalryFS>> <<case "Racial Subjugationism">>Racemixer diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw index 17b902bb167bc60c729fac119ef93b49343cec32..8f2db9cbd804dea8438a9adabd3c1cbc32d61176 100644 --- a/src/uncategorized/pRivalryCapture.tw +++ b/src/uncategorized/pRivalryCapture.tw @@ -28,7 +28,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 15>> @@ -64,7 +64,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.chem = 3000>> <<set $activeSlave.face = 100>> @@ -99,7 +99,7 @@ <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 18>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceShape = "androgynous">> @@ -132,7 +132,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -163,7 +163,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -194,7 +194,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -235,7 +235,7 @@ <<set $activeSlaveOneTimeMaxAge = 42>> <</if>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.pubertyXX = 1>> <<set $activeSlave.face = 100>> @@ -284,7 +284,7 @@ <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 12>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 0>> @@ -316,7 +316,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -349,7 +349,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 65>> @@ -383,7 +383,7 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 15>> diff --git a/src/uncategorized/pRivalryHostage.tw b/src/uncategorized/pRivalryHostage.tw index 83b4c55876c5d3cc0d2a5aa37cadf730774d17f7..c518312c0a5d07bcfdb164296f431b8e26c1252a 100644 --- a/src/uncategorized/pRivalryHostage.tw +++ b/src/uncategorized/pRivalryHostage.tw @@ -8,8 +8,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> diff --git a/src/uncategorized/pSnatchAndGrab.tw b/src/uncategorized/pSnatchAndGrab.tw index b90b97d311563097393c19b8623bddf656a60bd5..af051c927d19e674c41f6954c2d3af1eacf58ac8 100644 --- a/src/uncategorized/pSnatchAndGrab.tw +++ b/src/uncategorized/pSnatchAndGrab.tw @@ -14,41 +14,41 @@ <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>'s $assistantAppearance avatar appears on your desk next to the message. <<switch $assistantAppearance>> <<case "monstergirl">> - "I vote yes. Even though whatever that lab is producing can't possibly be as interesting as me," she says haughtily, and twirls a strand of tentacle hair. + "I vote yes. Even though whatever that lab is producing can't possibly be as interesting as me," _heA says haughtily, and twirls a strand of tentacle hair. <<case "shemale">> - "I vote yes," she says sweetly. "Whatever they're doing, it's probably interesting. I'd love to fuck something interesting." + "I vote yes," _heA says sweetly. "Whatever they're doing, it's probably interesting. I'd love to fuck something interesting." <<case "amazon">> - "I vote yes!" she shouts. "Whatever they're doing, their girls are probably valuable. And everything's more fun if you loot it instead of buying it." + "I vote yes!" _heA shouts. "Whatever they're doing, their girls are probably valuable. And everything's more fun if you loot it instead of buying it." <<case "businesswoman">> - "I vote yes," she says. "The likelihood that the lab is producing something valuable is overwhelming. The potential profits are," and she pauses to fan herself, "exciting." + "I vote yes," _heA says. "The likelihood that the lab is producing something valuable is overwhelming. The potential profits are," and _heA pauses to fan _himselfA, "exciting." <<case "fairy" "pregnant fairy">> - "I vote yes," she says. "They could be up to something really cool!" + "I vote yes," _heA says. "They could be up to something really cool!" <<case "goddess">> - "I vote yes," she says. "Whatever is in that lab deserves some loving attention and... more variety is always appreciated." + "I vote yes," _heA says. "Whatever is in that lab deserves some loving attention and... more variety is always appreciated." <<case "hypergoddess">> - "I vote yes," she says. "Whatever is in that lab deserves some loving attention and... more variety is always appreciated." + "I vote yes," _heA says. "Whatever is in that lab deserves some loving attention and... more variety is always appreciated." <<case "loli">> - "I vote yeah," she says. "I wanna see what's inside!" + "I vote yeah," _heA says. "I wanna see what's inside!" <<case "preggololi">> - "I vote yeah," she says. "I wanna see what's inside!" + "I vote yeah," _heA says. "I wanna see what's inside!" <<case "schoolgirl">> - "I vote yeah," she says. "I just wanna see what that lab is doing. Could be cool!" + "I vote yeah," _heA says. "I just wanna see what that lab is doing. Could be cool!" <<case "angel">> - "I vote yes," she says. "Whatever is in that lab deserves a better life under your care." + "I vote yes," _heA says. "Whatever is in that lab deserves a better life under your care." <<case "cherub">> - "I vote yeah," she says. "I'm really curious what could be inside." + "I vote yeah," _heA says. "I'm really curious what could be inside." <<case "incubus">> - "I vote yes," she says. "I can't wait to get my dick in it!" + "I vote yes," _heA says. "I can't wait to get my dick in it!" <<case "succubus">> - "I vote no," she says. "You're all mine!" + "I vote no," _heA says. "You're all mine!" <<case "imp">> - "I vote yeah," she says. "I can't wait to tease and torment whatever's inside!" + "I vote yeah," _heA says. "I can't wait to tease and torment whatever's inside!" <<case "witch">> - "I vote yes," she says. "It can't be worse than some of my fuckups." + "I vote yes," _heA says. "It can't be worse than some of my fuckups." <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - She doesn't comment, though a large, toothy grin spreads across the entirety of her head revealing her thoughts on the subject. + _HeA doesn't comment, though a large, toothy grin spreads across the entirety of _hisA head revealing _hisA thoughts on the subject. <<default>> - "I would suggest agreement," she says. "Even if the prize does not appeal to you personally, she's likely to be quite valuable. Selling her could net you quite a profit." + "I would suggest agreement," _heA says. "Even if the prize does not appeal to you personally, she's likely to be quite valuable. Selling her could net you quite a profit." <</switch>> <</if>> diff --git a/src/uncategorized/pUndergroundRailroad.tw b/src/uncategorized/pUndergroundRailroad.tw index 9adfef8df998c180a620a51550da2980e9336518..c2034ac2c2395cea230d55048ebd164e6d9572f1 100644 --- a/src/uncategorized/pUndergroundRailroad.tw +++ b/src/uncategorized/pUndergroundRailroad.tw @@ -2,13 +2,16 @@ <<set $nextButton = " ", $nextLink = "Random Nonindividual Event">> /* hide button until user makes a selection */ -<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canWalk(s) && canTalk(s) && ["whore", "serve the public", "serve in the club", "work in the brothel"].includes(s.assignment); })>> +<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canWalk(s) && canTalk(s) && ["serve in the club", "serve the public", "whore", "work in the brothel"].includes(s.assignment); })>> <<if (ndef $activeSlave)>> /* search again without assignments limitation */ <<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canTalk(s); })>> <<if (ndef $activeSlave)>> /* we will find one */ <<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 20 && canTalk(s); })>> - <<if (ndef $activeSlave)>> /* still no match */ - <<set $activeSlave = $slaves.random()>> + <<if (ndef $activeSlave)>> /* we will find one */ + <<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && canTalk(s); })>> + <<if (ndef $activeSlave)>> /* still no match */ + <<set $activeSlave = $slaves.random()>> + <</if>> <</if>> <</if>> <</if>> @@ -22,13 +25,13 @@ One fine day, as normal as any day surrounded by your slaves can be, you're sitt <<case "monstergirl">> _HisA avatar's tentacle hair wiggles with incomprehension. <<case "shemale">> - _HisA avatar looks frustrated, its hardon wilting. + _HisA avatar looks frustrated, _hisA hardon wilting. <<case "amazon">> _HisA avatar gives a little shriek of frustration. <<case "businesswoman">> _HisA avatar wears an unaccustomed look of frustration. <<case "fairy" "pregnant fairy">> - _HisA avatar crosses its arms and ponders while hovering in the air. + _HisA avatar crosses _hisA arms and ponders while hovering in the air. <<case "goddess">> _HisA avatar looks concerned without _hisA usual sultry overtone. <<case "hypergoddess">> @@ -52,7 +55,7 @@ One fine day, as normal as any day surrounded by your slaves can be, you're sitt <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> _HisA avatar twitches slightly before sprouting multiple eyes facing all directions. <<case "schoolgirl">> - _HisA avatar puts on such a hard look of concentration that its eyes cross. + _HisA avatar puts on such a hard look of concentration that _hisA eyes cross. <<default>> _HisA symbol avatar spins with frustration. <</switch>> diff --git a/src/uncategorized/peConcubineInterview.tw b/src/uncategorized/peConcubineInterview.tw index c5025b064a35dcc25651dfb40c5c898563293f4f..3405595c3b03848717944452492687f75e49119f 100644 --- a/src/uncategorized/peConcubineInterview.tw +++ b/src/uncategorized/peConcubineInterview.tw @@ -110,7 +110,7 @@ You receive an official communication from a popular talk show e-hosted in one o <<else>> giving it a good feel. <</if>> - "Now I'm sure our viewers are wondering," He says, patting the firm dome. "Is it <<= PlayerName()>>'s?" + "Now I'm sure our viewers are wondering," he says, patting the firm dome. "Is it <<= PlayerName()>>'s?" <<if $activeSlave.pregSource == -1>> <<if $activeSlave.bellyPreg >= 450000>> "Of cour<<s>>e they are!" $He proclaims proudly as $he runs $his hands across $his quivering mass. "All $activeSlave.pregType of them!" diff --git a/src/uncategorized/pePitFightInvite.tw b/src/uncategorized/pePitFightInvite.tw index a61a42bb9518d0a4f5fab2df6fbdb4e61b16c16e..e1f67110ad72caac7af1c653cb212c447080aa70 100644 --- a/src/uncategorized/pePitFightInvite.tw +++ b/src/uncategorized/pePitFightInvite.tw @@ -4,6 +4,7 @@ <<set $nextLink = "RIE Eligibility Check">> <<set $PPit = 0>> +<<setLocalPronouns $Bodyguard>> Gladiatorial combat between slaves has not yet reached the level of social acceptability it once enjoyed in Rome, but it's growing in popularity. For now, most fights are discreet affairs limited to select guests. Displaying a slave bodyguard is an excellent way to get yourself invited to participate, and $assistantName has just passed on an invitation to a private fight next week, should you be willing to hazard a bodyguard. @@ -12,7 +13,7 @@ Gladiatorial combat between slaves has not yet reached the level of social accep <span id="result"> <<link "Enter your bodyguard as a gladiatrix">> <<replace "#result">> - You receive a brief confirmation. It looks like she's got a fight. + You receive a brief confirmation. It looks like $he's got a fight. <<set $PPit = 1>> <</replace>> <</link>> diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw index 22f012c01b1c8d7d67e76accaf235752f4a4db1b..922bd989d29dc0efb6745f4ff93e8da7b11eac6a 100644 --- a/src/uncategorized/personalAssistantAppearance.tw +++ b/src/uncategorized/personalAssistantAppearance.tw @@ -249,7 +249,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF They're doing it in the missionary position, kissing deeply. They're technically tribbing, but $assistantName's muscular body and the tribeswoman's wifely form make it look very pure and traditional. <</if>> <<else>> - _HeA's doing pushups, glancing at you at the top of each rep to see if you need _himA. When _heA sees your attention, _heA pushes hard enough to bounce to a standing position. Seeing that you're just looking, _heA winks, flexes, and drops back down to do crunches. + _HeA's doing push-ups, glancing at you at the top of each rep to see if you need _himA. When _heA sees your attention, _heA pushes hard enough to bounce to a standing position. Seeing that you're just looking, _heA winks, flexes, and drops back down to do crunches. <</if>> <<case "businesswoman">> @@ -443,7 +443,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "edo revivalist">> wearing a simple robe appropriate for a proper, traditional Japanese lady. <<case "arabian revivalist">> - wearing a long plaid skirt, a clean white shirt, and a headscarf, making _himA look like an Arab girl attending a Western school. + wearing a long plaid skirt, a clean white shirt, and a headscarf, making _himA look like an Arab _girlA attending a Western school. <<case "chinese revivalist">> wearing a plaid skirt and a white shirt. _HisA hair is pulled back into a bun and secured by a couple of chopsticks. <<case "chattel religionist">> @@ -559,7 +559,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<elseif $minimumSlaveAge > 8>> _HeA's fresh into _hisA teens and firmly anchored by _hisA mammoth belly. _HisA attempts to try and move are frequently interrupted as another child begins forcing is way out of _hisA tight pussy. <<elseif $minimumSlaveAge > 4>> - _HeA's just a young girl and already has had more children than most women will in their lives. _HeA happily embraces _hisA mammoth belly, the force of _hisA hug forcing milk out of _hisA breasts and babies out of _hisA crotch. + _HeA's just a young _girlA and already has had more children than most women will in their lives. _HeA happily embraces _hisA mammoth belly, the force of _hisA hug forcing milk out of _hisA breasts and babies out of _hisA crotch. <<else>> _HeA's surprisingly young; _heA happily bounces atop _hisA mammoth belly forcing milk out of _hisA breasts and babies out of _hisA crotch. <</if>> @@ -941,7 +941,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "paternalist">> slime with a modest pink dress floating inside _himA. <<case "supremacist">> - slime. _HeA keeps trying to shape _hisA goo into a beautiful $arcologies[0].FSSupremacistRace girl, but _heA hasn't quite perfected the finer details yet. + slime. _HeA keeps trying to shape _hisA goo into a beautiful $arcologies[0].FSSupremacistRace _girlA, but _heA hasn't quite perfected the finer details yet. <<case "subjugationist">> slime. _HeA keeps trying to shape _hisA goo into a pretty face, but keeps ending up with overexaggerated $arcologies.FSSubjugationistRace features instead. <<case "roman revivalist">> @@ -1270,9 +1270,9 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "supremacist">> _HeA's managed to correct the spell, and even succeed in it. _HeA is now <<if $arcologies[0].FSSupremacistRace == "mixed race">>the perfect blend of every ethnicity, with all of their best qualities and none of their flaws<<else>>ethnically 100% pure $arcologies[0].FSSupremacistRace<</if>>. If _heA were real, _heA would make the perfect breeding stock for the next generation of the master race. <<case "subjugationist">> - _HeA still hasn't managed to undo the spell; _heA looks like a racist caricature of a $arcologies[0].FSSubjugationistRace girl, and has an appropriately demeaning accent to match. What's worse, the spell also seems to have stripped most of _hisA literacy in $language, making reading _hisA tomes an arduous task for _himA. + _HeA still hasn't managed to undo the spell; _heA looks like a racist caricature of a $arcologies[0].FSSubjugationistRace _girlA, and has an appropriately demeaning accent to match. What's worse, the spell also seems to have stripped most of _hisA literacy in $language, making reading _hisA tomes an arduous task for _himA. <<case "roman revivalist">> - While _heA acts like a typical Roman woman, _heA is pretty obviously Greek. _HeA can't even name the Pantheon correctly. + While _heA acts like a typical Roman _womanA, _heA is pretty obviously Greek. _HeA can't even name the Pantheon correctly. <<case "aztec revivalist">> _HeA is still very obviously not a native and has become rather caught up in the fear that _heA'll soon be sacrificed. <<case "egyptian revivalist">> @@ -1304,7 +1304,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "asset expansionist">> _HeA's managed to partially undo the spell; _hisA breasts are merely as big as _heA is now. One simple, correctly performed, levitation spell later and _heA is fully capable of functioning with _hisA oversized tits. <<case "transformation fetishist">> - While _heA has managed to regain _hisA flexibility, _heA still greatly resembles an overinflated blow-up doll. _HisA lips are stuck in an O shape, _hisA breasts are the size of beach balls, _hisA ass and thighs larger than any girl's you've seen, and above all else is _hisA huge medicine ball sized belly; fortunately they don't weigh nearly as much as they should, part of the benefits of being an inflatable sex-doll. + While _heA has managed to regain _hisA flexibility, _heA still greatly resembles an overinflated blow-up doll. _HisA lips are stuck in an O shape, _hisA breasts are the size of beach balls, _hisA ass and thighs larger than any _girlA's you've seen, and above all else is _hisA huge medicine ball sized belly; fortunately they don't weigh nearly as much as they should, part of the benefits of being an inflatable sex-doll. <<case "pastoralist">> _HeA's managed to shrink _hisA nine breasts somewhat; they are merely head sized now. The front of _hisA robes is strained from _hisA excessive number of milky tits. <<case "maturity preferentialist">> @@ -1357,7 +1357,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <</if>> <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - _HeA's an odd little girl, with slightly off mannerisms, + _HeA's an odd little _girlA, with slightly off mannerisms, <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> @@ -1444,11 +1444,11 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<if $marketAssistantRelationship == "cute">> The market assistant is tightly wrapped in a bodysuit made of $assistantName, save for _hisM exposed, very pregnant, belly. _HisA head briefly appears over the _girlM's face and eyes you, while the market assistant giggles at the sensations covering _hisM body. <<elseif $marketAssistantRelationship == "nonconsensual">> - The market assistant has been reduced to nothing more than a bloated incubator. $assistantName runs _hisA tendrils across _hisA breeder's swollen body, fondling _hisM squirming, offspring filled breasts and massaging _hisM octuplet sized, bulging pregnancy. The hapless girl twitches slightly as several more wormlike creatures slip from _hisM body, prompting $assistantName to drive _hisA tentacles into all _hisM holes and vigorously pump _himM full of even more aphrodisiacs and eggs. + The market assistant has been reduced to nothing more than a bloated incubator. $assistantName runs _hisA tendrils across _hisA breeder's swollen body, fondling _hisM squirming, offspring filled breasts and massaging _hisM octuplet sized, bulging pregnancy. The hapless _girlM twitches slightly as several more wormlike creatures slip from _hisM body, prompting $assistantName to drive _hisA tentacles into all _hisM holes and vigorously pump _himM full of even more aphrodisiacs and eggs. <<elseif $marketAssistantRelationship == "incestuous">> - The market assistant's arms and legs are sunken into a wall of $assistantName's flesh; _hisM immense stomach and breasts allowed to hang free. One of _hisM breasts visibly shifts as another wormlike larva pushes its way out of _hisM nipple, waking the addled girl from _hisM stupor. _HeM moans lustfully, _hisM mind thoroughly warped by $assistantName's aphrodisiacs, "Shishter! I need more... I feel sho empty! Fill me up till I bursht!" $assistantName wastes no time in snaking into _hisM gaping holes and pumping _himM so full _hisM belly touches the floor and breasts heave massively. + The market assistant's arms and legs are sunken into a wall of $assistantName's flesh; _hisM immense stomach and breasts allowed to hang free. One of _hisM breasts visibly shifts as another wormlike larva pushes its way out of _hisM nipple, waking the addled _girlM from _hisM stupor. _HeM moans lustfully, _hisM mind thoroughly warped by $assistantName's aphrodisiacs, "Shishter! I need more... I feel sho empty! Fill me up till I bursht!" $assistantName wastes no time in snaking into _hisM gaping holes and pumping _himM so full _hisM belly touches the floor and breasts heave massively. <<else>> - They're sitting side by side, the market assistant resting an arm atop _hisM huge, larvae filled belly while clutching a newborn to _hisM breast. $assistantName embraces _hisA pregnant lover with several tentacles before drawing one to the girl's lips. _HeM delicately kisses it before wrapping _hisM lips around it and pleasuring _hisM mate. + They're sitting side by side, the market assistant resting an arm atop _hisM huge, larvae filled belly while clutching a newborn to _hisM breast. $assistantName embraces _hisA pregnant lover with several tentacles before drawing one to the _girlM's lips. _HeM delicately kisses it before wrapping _hisM lips around it and pleasuring _hisM mate. <</if>> <<else>> _HeA's idly standing there, at least when you look at _himA; you catch strange things in the corner of your vision while you are working. @@ -1626,21 +1626,21 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "degradationist">> _HeA's recently added an obscene number of piercings to _hisA labia in addition to a pair of nipple rings and a big, heavy ring on _hisA clit. A thin chain links the clit ring to the heavy rings adorning _hisA chest. <<case "supremacist">> - In fact, _heA is the most gorgeous $arcologies[0].FSSupremacistRace woman you've ever seen. + In fact, _heA is the most gorgeous $arcologies[0].FSSupremacistRace _womanA you've ever seen. <<case "subjugationist">> - In fact, _heA is the most gorgeous $arcologies[0].FSSubjugationistRace woman you've ever seen. + In fact, _heA is the most gorgeous $arcologies[0].FSSubjugationistRace _womanA you've ever seen. <<case "roman revivalist">> - In fact, _heA is the most gorgeous Roman woman you've ever seen. + In fact, _heA is the most gorgeous Roman _womanA you've ever seen. <<case "aztec revivalist">> - In fact, _heA is the most gorgeous Aztec woman you've ever seen. + In fact, _heA is the most gorgeous Aztec _womanA you've ever seen. <<case "egyptian revivalist">> - In fact, _heA is the most gorgeous Egyptian woman you've ever seen. + In fact, _heA is the most gorgeous Egyptian _womanA you've ever seen. <<case "edo revivalist">> - In fact, _heA is the most gorgeous Japanese woman you've ever seen. + In fact, _heA is the most gorgeous Japanese _womanA you've ever seen. <<case "arabian revivalist">> - In fact, _heA is the most gorgeous Arabic woman you've ever seen. + In fact, _heA is the most gorgeous Arabic _womanA you've ever seen. <<case "chinese revivalist">> - In fact, _heA is the most gorgeous Chinese woman you've ever seen. + In fact, _heA is the most gorgeous Chinese _womanA you've ever seen. <<case "chattel religionist">> _HeA is wearing a tight dress modeled after the symbol of your new religion; it leaves _hisA nipples and crotch fully exposed. <<case "physical idealist">> @@ -1670,7 +1670,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "pastoralist">> _HeA is wearing a pair of cow-print bikinis over _hisA head sized breasts. A quartet of wet spots adorn _hisA tops at all times. <<case "maturity preferentialist">> - _HeA has recently begun presenting _himselfA as an experienced, mature woman; one can only wonder what positions and tricks _heA knows. + _HeA has recently begun presenting _himselfA as an experienced, mature _womanA; one can only wonder what positions and tricks _heA knows. <<case "youth preferentialist">> _HeA has recently adjusted _hisA age to reflect your youth focused society. <<if $minimumSlaveAge == 3>> diff --git a/src/uncategorized/reAWOL.tw b/src/uncategorized/reAWOL.tw index d524af17309d583038e1e6b56fc49f7a0896abc8..fddfe9a847bdc53b9243c282c3f79c92ef8d4015 100644 --- a/src/uncategorized/reAWOL.tw +++ b/src/uncategorized/reAWOL.tw @@ -13,8 +13,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<if $seeDicks != 100>> diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw index 8b43549baf6612501ed45893d883f9bfce771fee..cf59b8aac855fd49401bccb5217cf65a49ba77fa 100644 --- a/src/uncategorized/reBoomerang.tw +++ b/src/uncategorized/reBoomerang.tw @@ -7,12 +7,13 @@ <<run Enunciate($activeSlave)>> <<run SetBellySize($activeSlave)>> <<setLocalPronouns $activeSlave>> +<<setAssistantPronouns>> Your work is interrupted by $assistantName with an alert from the entrance to the penthouse. <<if $assistant>> - "<<= properTitle()>>," she says, "you're going to want to see this." She + "<<= properTitle()>>," _heA says, "you're going to want to see this." _HeA <<else>> - It's got the incident flagged as not fitting into any of the usual categories of disturbance, and requests your attention. It + _HeA's got the incident flagged as not fitting into any of the usual categories of disturbance, and requests your attention. _HeA <</if>> brings up the relevant feeds. There's a naked body crumpled pathetically against one wall of the entryway, beneath the communications panel. It's <<= SlaveFullName($activeSlave)>>, who you sold _weeks weeks ago. $He's looking up into one of the cameras plaintively. "Plea<<s>>e take me back," $he whispers, not wanting to draw the attention of passersby, and knowing that $his faint words will be picked up and amplified for you. diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 9651b0dbadc9c5ea0e208c4ee54825a34e777ef4..0e7ec6f844ae510b6be4deca7c63d094d7406aaa 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -394,8 +394,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -532,8 +531,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -765,8 +763,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -887,8 +884,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -991,8 +987,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw index b1c835af215e4a8b036cdc04f79295e16eafc48a..40c0ebac3b1dbb75be4b9b60af53db0c1c1411c7 100644 --- a/src/uncategorized/reMalefactor.tw +++ b/src/uncategorized/reMalefactor.tw @@ -135,8 +135,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -165,8 +164,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -209,8 +207,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -237,8 +234,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> diff --git a/src/uncategorized/reMilfTourist.tw b/src/uncategorized/reMilfTourist.tw index 194dc3813c4f651fdd7080d141b5b3cb27d23da0..ed8b5951180fa00eaff0425963516628f135e871 100644 --- a/src/uncategorized/reMilfTourist.tw +++ b/src/uncategorized/reMilfTourist.tw @@ -14,8 +14,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> diff --git a/src/uncategorized/rePokerNight.tw b/src/uncategorized/rePokerNight.tw index f4d308cf4dafc3d5b6f4cf52d8f2a4df716dab45..23e00cb7bdeb8f39a3626cbbcce79da7cf620f1f 100644 --- a/src/uncategorized/rePokerNight.tw +++ b/src/uncategorized/rePokerNight.tw @@ -61,8 +61,7 @@ On a particularly lackadaisical evening, you find yourself alerted to a message <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<if $seeDicks != 100>> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index 74ba692045fc4a269fba67d9793afbcb2ab6dcbe..20455df78b65e023cbc8263a8640e757ecdbdffa 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -32,8 +32,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -68,8 +67,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -99,8 +97,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -140,8 +137,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -156,8 +152,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -186,8 +181,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -223,8 +217,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -255,8 +248,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -293,8 +285,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -316,8 +307,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -407,8 +397,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -434,8 +423,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -465,8 +453,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -508,8 +495,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -545,8 +531,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -585,8 +570,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -640,8 +624,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -681,8 +664,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -723,8 +705,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -1536,8 +1517,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -1601,8 +1581,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -1658,8 +1637,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<set $oneTimeDisableDisability = 1>> @@ -1780,8 +1758,7 @@ <<if $arcologies[0].FSSupremacist != "unset">> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationist != "unset">> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw index 1731d8ed637bc9f0f11871162c01f22caabea7c5..87cc0aecca274fc7f74d9898f77bc3e370f201a1 100644 --- a/src/uncategorized/reShelterInspection.tw +++ b/src/uncategorized/reShelterInspection.tw @@ -9,8 +9,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<set $contractCost = 10000>> diff --git a/src/uncategorized/recETS.tw b/src/uncategorized/recETS.tw index 3a066369dcb2f04359714d94428f4634c2fd6397..86d16e724982ea6da782895778dbfd28a97c5edd 100644 --- a/src/uncategorized/recETS.tw +++ b/src/uncategorized/recETS.tw @@ -31,8 +31,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">> @@ -69,8 +68,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XX Slave">> @@ -461,8 +459,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate XY Slave">> @@ -1388,6 +1385,8 @@ <</switch>> +<<run generatePronouns($activeSlave)>> + <<set $relative2 = clone($activeSlave)>> <<set $activeSlave = clone($relative)>> diff --git a/src/uncategorized/remFluctuations.tw b/src/uncategorized/remFluctuations.tw index 12cebb487e1151a1c5996bca83aa23294b36a606..39c56e68307527c2d7de5de6dd844ec0a993af52 100644 --- a/src/uncategorized/remFluctuations.tw +++ b/src/uncategorized/remFluctuations.tw @@ -14,48 +14,48 @@ <<if $marketAssistantAnnounced>> The market assistant's avatar appears on a wallscreen as you're going about your business. <<switch $assistantAppearance>> - <<case "monstergirl">>The regular monstergirl stands behind and prods the human girl forward. - <<case "shemale">>You recognize her function by her glasses and because her bimbo cock softens, halfway, while she addresses you on economic matters. - <<case "amazon">>She illustrates a small group of gossiping tribeswomen that fades away as she leaves them and approaches you. + <<case "monstergirl">>The regular monstergirl stands behind and prods the human _girlM forward. + <<case "shemale">>You recognize _hisM function by _hisM glasses and because _hisM bimbo cock softens, halfway, while _heM addresses you on economic matters. + <<case "amazon">>_HeM illustrates a small group of gossiping tribeswomen that fades away as _heM leaves them and approaches you. <<case "businesswoman">>The junior businesswoman adopts a shy posture when addressing you directly, as if unsuccessfully concealing a workplace crush. <<case "goddess">>The demigoddess portrait arrives in a glittery cloud of dust, wearing winged shoes. - <<case "schoolgirl">>Both schoolgirls are sitting knee to knee; the nerdy one hands the other a folded note. "Pass it on," she stage whispers. <<if $assistantName == "your personal assistant">>Your regular assistant<<else>>$assistantName<</if>> rolls _hisA eyes. - <<case "hypergoddess">>The demigoddess portrait arrives in a glittery cloud of dust, wearing winged shoes and a noticeable roundness in her middle. + <<case "schoolgirl">>Both schoolgirls are sitting knee to knee; the nerdy one hands the other a folded note. "Pass it on," _heM stage whispers. <<if $assistantName == "your personal assistant">>Your regular assistant<<else>>$assistantName<</if>> rolls _hisA eyes. + <<case "hypergoddess">>The demigoddess portrait arrives in a glittery cloud of dust, wearing winged shoes and a noticeable roundness in _hisM middle. <<case "loli">>The chubby, glasses-wearing loli arrives holding a neatly folded note addressed to you. - <<case "preggololi">>The chubby, glasses-wearing loli arrives holding a hastily written note addressed to you. She seems kind of winded, with a suspicious stain in her panties under her pussy." + <<case "preggololi">>The chubby, glasses-wearing loli arrives holding a hastily written note addressed to you. _HeM seems kind of winded, with a suspicious stain in _hisM panties under _hisM pussy. <<case "fairy" "pregnant fairy">>The older fairy flutters into view before, curtseys, and holds out a rolled piece of parchment addressed to you. - <<case "normal">>Her symbol lights up in regular green pulses while she waits for your attention. - <<case "angel">>The short haired angel lands before you, a rolled piece of parchment under her arm. - <<case "cherub">>The short haired cherub flutters before you holding a rolled piece of parchment in her hands. - <<case "incubus">>The regular incubus stands behind and prods the human girl forward with her dick. - <<case "succubus">>The regular succubus stands behind and pushes the human boy forward. - <<case "imp">>The short haired imp flaps before you holding a rolled piece of parchment in her hands. - <<case "witch">>The apprentice's apprentice arrives before you; a message begins playing the moment she opens her mouth. - <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>The creature finishes forcing eggs into the human girl, leaving her to stagger towards you clutching a crumpled letter in one hand and struggling to hold back the eggs with the other. + <<case "normal">>_HisM symbol lights up in regular green pulses while _heM waits for your attention. + <<case "angel">>The short haired angel lands before you, a rolled piece of parchment under _hisM arm. + <<case "cherub">>The short haired cherub flutters before you holding a rolled piece of parchment in _hisM hands. + <<case "incubus">>The regular incubus stands behind and prods the human _girlM forward with _hisA dick. + <<case "succubus">>The regular succubus stands behind and pushes the human _girlM forward. + <<case "imp">>The short haired imp flaps before you holding a rolled piece of parchment in _hisM hands. + <<case "witch">>The apprentice's apprentice arrives before you; a message begins playing the moment _heM opens _hisM mouth. + <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>The creature finishes forcing eggs into the human _girlM, leaving _himM to stagger towards you clutching a crumpled letter in one hand and struggling to hold back the eggs with the other. <</switch>> <<else>> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> appears on a wallscreen as you're going about your business. <<switch $assistantAppearance>> - <<case "monstergirl">>She's looking unusually businesslike, with her tentacle hair restrained in a bun. - <<case "loli">>She's looking unusually businesslike, withdrawn deep in thought. - <<case "preggololi">>She's looking unusually businesslike, withdrawn deep in thought. - <<case "shemale">>She's looking unusually businesslike, with her perpetually erect dick going untended, for once. - <<case "amazon">>She's looking unusually businesslike, and is doing sums on a primitive little abacus. - <<case "businesswoman">>She has a clipboard pressed against her generous bosom, and peers at you over the tops of her spectacles. - <<case "fairy">>She's looking unusually businesslike, wearing a tiny business suit with an opening in the back for her wings to come out. - <<case "pregnant fairy">>She's looking unusually businesslike, wearing a tiny business suit open in the front to let her swollen belly out and another opening in the back for her wings to come out. - <<case "goddess" "hypergoddess">>She's looking unusually businesslike, with her hands clasped behind her back and pivoting one foot. - <<case "schoolgirl">>She's looking unusually businesslike, and has a scribbled note in her hand. - <<case "angel">>She's looking unusually businesslike; deep in thought with her hands together in front of her. - <<case "cherub">>She's looking unusually businesslike, reading a newspaper titled "Heaven's Post". - <<case "incubus">>She's looking unusually businesslike, with her typically erect dick flaccid for once. - <<case "succubus">>She's looking unusually businesslike, wearing a slutty business suit, glasses and her hair in a tight bun. A slight buzzing can be heard from under her skirt. - <<case "imp">>She's looking unusually businesslike, reading a list titled "Hell's Holes". - <<case "witch">>She's looking unusually businesslike, nose first in an a book title "Economics and You". - <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>She's looking unusually businesslike, wearing an ill-fitted business suit. Her blouse buttons pop off as her belly swells grotesquely, before the object within her begins steadily moving upwards. - <<default>>Her symbol spins for attention. + <<case "monstergirl">>_HeA's looking unusually businesslike, with _hisA tentacle hair restrained in a bun. + <<case "loli">>_HeA's looking unusually businesslike, withdrawn deep in thought. + <<case "preggololi">>_HeA's looking unusually businesslike, withdrawn deep in thought. + <<case "shemale">>_HeA's looking unusually businesslike, with _hisA perpetually erect dick going untended, for once. + <<case "amazon">>_HeA's looking unusually businesslike, and is doing sums on a primitive little abacus. + <<case "businesswoman">>_HeA has a clipboard pressed against _hisA generous bosom, and peers at you over the tops of _hisA spectacles. + <<case "fairy">>_HeA's looking unusually businesslike, wearing a tiny business suit with an opening in the back for _hisA wings to come out. + <<case "pregnant fairy">>_HeA's looking unusually businesslike, wearing a tiny business suit open in the front to let _hisA swollen belly out and another opening in the back for _hisA wings to come out. + <<case "goddess" "hypergoddess">>_HeA's looking unusually businesslike, with _hisA hands clasped behind _hisA back and pivoting one foot. + <<case "schoolgirl">>_HeA's looking unusually businesslike, and has a scribbled note in _hisA hand. + <<case "angel">>_HeA's looking unusually businesslike; deep in thought with _hisA hands together in front of _himA. + <<case "cherub">>_HeA's looking unusually businesslike, reading a newspaper titled "Heaven's Post". + <<case "incubus">>_HeA's looking unusually businesslike, with _hisA typically erect dick flaccid for once. + <<case "succubus">>_HeA's looking unusually businesslike, wearing a slutty business suit, glasses and _hisA hair in a tight bun. A slight buzzing can be heard from under _hisA skirt. + <<case "imp">>_HeA's looking unusually businesslike, reading a list titled "Hell's Holes". + <<case "witch">>_HeA's looking unusually businesslike, nose first in an a book title "Economics and You". + <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>_HeA's looking unusually businesslike, wearing an ill-fitted business suit. _HisA blouse buttons pop off as _hisA belly swells grotesquely, before the object within _himA begins steadily moving upwards. + <<default>>_HisA symbol spins for attention. <</switch>> - "<<= properTitle()>>, I have a news item that may be of business interest," she + "<<= properTitle()>>, I have a news item that may be of business interest," _heA <<switch $assistantAppearance>> <<case "monstergirl" "normal">>informs you. <<case "shemale">>says seriously. @@ -63,19 +63,19 @@ <<case "businesswoman">>says diffidently. <<case "goddess">>announces. <<case "schoolgirl">>reads aloud. - <<case "hypergoddess">>announces between her children's kicking. + <<case "hypergoddess">>announces between _hisA children's kicking. <<case "loli" "preggololi">>says cutely. <<case "fairy" "pregnant fairy">>says excitedly. <<case "angel">>calmly states. <<case "cherub" "imp">>says enthusiastically. - <<case "incubus">>starts, pauses to play with herself, and continues. + <<case "incubus">>starts, pauses to play with _himselfA, and continues. <<case "succubus">>says between overly loud moans. - <<case "witch">>states, finishes the page, and snaps her fingers. She grunts, reaches up her skirt and pulls out a message for you. Seems it didn't arrive as planned. - <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>says, her throat bulging as the egg containing the message passes out her mouth. + <<case "witch">>states, finishes the page, and snaps _hisA fingers. _HeA grunts, reaches up _hisA skirt and pulls out a message for you. Seems it didn't arrive as planned. + <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>says, _hisA throat bulging as the egg containing the message passes out _hisA mouth. <</switch>> <</if>> <<else>> -Your <<if $marketAssistantAnnounced>>market<<else>>personal<</if>> assistant's symbol appears on a wallscreen as you're going about your business. It spins for your attention. "<<= properTitle()>>, I have a news item that may be of business interest," it says. +Your <<if $marketAssistantAnnounced>>market<<else>>personal<</if>> assistant's symbol appears on a wallscreen as you're going about your business. _HeA spins for your attention. "<<= properTitle()>>, I have a news item that may be of business interest," _heA says. <</if>> <br><br> diff --git a/src/uncategorized/resMove.tw b/src/uncategorized/resMove.tw index cd8b50f6a64cf3d4bab165be488cbadf66259620..217275c434ceb320e57c8e8a9ea019ff94a9e65e 100644 --- a/src/uncategorized/resMove.tw +++ b/src/uncategorized/resMove.tw @@ -35,45 +35,45 @@ <<else>> <<switch $assistantAppearance>> <<case "monstergirl">> - her monstergirl avatar rather cutely using her fingers, the tips of her tentacle hair, and her dickheads to count: + _hisA monstergirl avatar rather cutely using _hisA fingers, the tips of _hisA tentacle hair, and _hisA dickheads to count: <<case "shemale">> - her shemale avatar ditzily using her fingers to keep count: + _hisA shemale avatar ditzily using _hisA fingers to keep count: <<case "amazon">> - her amazon avatar using a bone abacus to do sums while counting out loud gruffly: + _hisA amazon avatar using a bone abacus to do sums while counting out loud gruffly: <<case "businesswoman">> - her businesswoman avatar projecting maturely sexy confidence as she runs the numbers: + _hisA businesswoman avatar projecting maturely sexy confidence as _heA runs the numbers: <<case "fairy">> - her fairy avatar conjures a bunch of colored lights to keep count: + _hisA fairy avatar conjures a bunch of colored lights to keep count: <<case "pregnant fairy">> - her pregnant fairy avatar conjures a bunch of colored lights to keep count: + _hisA pregnant fairy avatar conjures a bunch of colored lights to keep count: <<case "goddess">> - her goddess avatar keeping count by picking the petals off flowers in her hair: + _hisA goddess avatar keeping count by picking the petals off flowers in _hisA hair: <<case "hypergoddess">> - her goddess avatar keeping count based off the number of contractions running through her huge belly: + _hisA goddess avatar keeping count based off the number of contractions running through _hisA huge belly: <<case "loli">> - her loli avatar carefully counts the numbers off on her fingers: + _hisA loli avatar carefully counts the numbers off on _hisA fingers: <<case "preggololi">> - her pregnant loli avatar carefully counts the numbers off on her fingers before losing count to her baby kicking and starting over: + _hisA pregnant loli avatar carefully counts the numbers off on _hisA fingers before losing count to _hisA baby kicking and starting over: <<case "angel">> - her angel avatar carefully using the feathers on her wing to keep count: + _hisA angel avatar carefully using the feathers on _hisA wing to keep count: <<case "cherub">> - her cherub avatar lands to better concentrate on counting: + _hisA cherub avatar lands to better concentrate on counting: <<case "incubus">> - her incubus avatar counts along to each stroke of her penis: + _hisA incubus avatar counts along to each stroke of _hisA penis: <<case "succubus">> - her succubus avatar dons a pair of glasses, short skirt and cleavage showing blouse to look the part while counting: + _hisA succubus avatar dons a pair of glasses, short skirt and cleavage showing blouse to look the part while counting: <<case "imp">> - her imp avatar lands to better concentrate on counting: + _hisA imp avatar lands to better concentrate on counting: <<case "witch">> - her witch avatar uses its chalk to keep a tally: + _hisA witch avatar uses its chalk to keep a tally: <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - her avatar sprouts an additional clit to keep count: + _hisA avatar sprouts an additional clit to keep count: <<case "schoolgirl">> - her schoolgirl avatar doing sums on a little blackboard: + _hisA schoolgirl avatar doing sums on a little blackboard: <<default>> - her symbol slowly rotating on your desk: + _hisA symbol slowly rotating on your desk: <</switch>> - She presents her conclusions: + _HeA presents _hisA conclusions: <</if>> as you suspected, <<if ($RESMove == "TFS") && ($PC.dick == 1) && ($PC.vagina == 1) && ($PC.boobs == 1)>> @@ -86,47 +86,47 @@ as you suspected, "Just think of <<switch $assistantAppearance>> <<case "monstergirl">> - all those virgin schoolgirl holes," she concludes, her avatar starting to masturbate. + all those virgin schoolgirl holes," _heA concludes, _hisA avatar starting to masturbate. <<case "shemale">> - all those fresh schoolgirls, all innocent, and..." she trails off, her avatar starting to masturbate. + all those fresh schoolgirls, all innocent, and..." _heA trails off, _hisA avatar starting to masturbate. <<case "amazon">> - all those nice girls," her avatar blushes. + all those nice girls," _hisA avatar blushes. <<case "businesswoman">> - all that potential," her avatar says, looking aroused at the possibilities. + all that potential," _hisA avatar says, looking aroused at the possibilities. <<case "fairy" "pregnant fairy">> - all of the delicious, wonderful virginal love juices!" her avatar squeaks, quivering with delight while dripping with love juices of her own. + all of the delicious, wonderful virginal love juices!" _hisA avatar squeaks, quivering with delight while dripping with love juices of _hisA own. <<case "goddess">> - all those virgin bodies to share..." her avatar murmurs, rubbing a hand over her belly. + all those virgin bodies to share..." _hisA avatar murmurs, rubbing a hand over _hisA belly. <<case "hypergoddess">> - all those virgin bodies to share... I hope we can fill them with children..." her avatar murmurs, rubbing a hand over her massive belly. + all those virgin bodies to share... I hope we can fill them with children..." _hisA avatar murmurs, rubbing a hand over _hisA massive belly. <<case "loli">> - all those new girls!" Her avatar exclaims. + all those new girls!" _hisA avatar exclaims. <<case "preggololi">> - all those fresh girls!" Her avatar exclaims with a grin. + all those fresh girls!" _hisA avatar exclaims with a grin. <<case "angel">> - all those pure, innocent girls! You'll keep them safe won't you?" Her avatar says pleadingly. + all those pure, innocent girls! You'll keep them safe won't you?" _hisA avatar says pleadingly. <<case "cherub">> - all those pure girls!" Her avatar exclaims with a worried tone. + all those pure girls!" _hisA avatar exclaims with a worried tone. <<case "incubus">> - all those holes for the taking," her avatar says, licking her lips. + all those holes for the taking," _hisA avatar says, licking _hisA lips. <<case "succubus">> - all those pure, innocent girls. I can't wait to unleash their inner slut!" Her avatar says excitedly. + all those pure, innocent girls. I can't wait to unleash their inner slut!" _hisA avatar says excitedly. <<case "imp">> - all those pure, innocent girls. I can't wait to see them fall!" Her avatar says excitedly. + all those pure, innocent girls. I can't wait to see them fall!" _hisA avatar says excitedly. <<case "witch">> - all those pure, innocent girls. I promise I won't turn them into monsters!" Her avatar says, bowing its head. + all those pure, innocent girls. I promise I won't turn them into monsters!" _hisA avatar says, bowing its head. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - all those fresh, young schoolgirls," her avatar says, grinning unnaturally wide, splitting its middle and unfolding dozens of tentacles. "I can't wait to stuff them full of young." + all those fresh, young schoolgirls," _hisA avatar says, grinning unnaturally wide, splitting its middle and unfolding dozens of tentacles. "I can't wait to stuff them full of young." <<case "schoolgirl">> - all those cute schoolgirls like me!" her avatar trills. + all those cute schoolgirls like me!" _hisA avatar trills. <<default>> - all those nice girls," she says. + all those nice girls," _heA says. <</switch>> <<elseif $RESMove == "GRI" || $RESMove == "TCR">> "Just think of <<switch $assistantAppearance>> <<case "monstergirl">> - the tits, and the asses, and the lips," she concludes, her avatar starting to masturbate. + the tits, and the asses, and the lips," _heA concludes, _hisA avatar starting to masturbate. <<case "shemale">> those big butts. <<if $RESMove == "TCR">> @@ -134,55 +134,55 @@ as you suspected, <<else>> It's so rare for girls to have such big butts and be anal virgins..." <</if>> - she trails off, _hisA avatar starting to masturbate. + _heA trails off, _hisA avatar starting to masturbate. <<case "amazon">> all those meaty girls," _hisA avatar blushes. <<case "businesswoman">> all that milking potential," _hisA avatar says, looking aroused at the possibilities. <<case "fairy">> - all that sweet, tasty milk!" her avatar squeaks, licking her lips and dripping with arousal. + all that sweet, tasty milk!" _hisA avatar squeaks, licking _hisA lips and dripping with arousal. <<case "pregnant fairy">> - all that sweet, tasty mama milk!" her avatar squeaks, licking her lips and dripping with arousal. + all that sweet, tasty mama milk!" _hisA avatar squeaks, licking _hisA lips and dripping with arousal. <<case "goddess" "hypergoddess">> - all those luscious, heavy tits," her avatar says, hefting one of her own. + all those luscious, heavy tits," _hisA avatar says, hefting one of _hisA own. <<case "loli">> - those tits!" her avatar says while cupping her flat chest. + those tits!" _hisA avatar says while cupping _hisA flat chest. <<case "preggololi">> - those tits!" her avatar says while cupping her barely there chest. + those tits!" _hisA avatar says while cupping _hisA barely there chest. <<case "angel">> - those lovely breasts," her avatar says, blushing red. "I wouldn't be able to fly with them..." + those lovely breasts," _hisA avatar says, blushing red. "I wouldn't be able to fly with them..." <<case "cherub">> - those huge tits!" Her avatar exclaims. "Could you imagine trying to fly with those?" + those huge tits!" _hisA avatar exclaims. "Could you imagine trying to fly with those?" <<case "incubus">> - those amazing breasts; I can't wait to wrap them around my dick!" She exclaims, her hard-on twitching with anticipation. + those amazing breasts; I can't wait to wrap them around my dick!" _heA exclaims, _hisA hard-on twitching with anticipation. <<case "succubus">> those saggy tits and fat asses, then compare them to MINE." _HeA states, pushing out _hisA perfectly perky M-cup bust before twirling around to show off _hisA enormous, toned ass. <<case "imp">> - those heavy tits," her avatar says, "I just want to tease them all day long!" + those heavy tits," _hisA avatar says, "I just want to tease them all day long!" <<case "witch">> - all that flesh," her avatar mutters. "Last time I tried to get curves like that I ended up so big I couldn't see over my breasts, let alone move..." + all that flesh," _hisA avatar mutters. "Last time I tried to get curves like that I ended up so big I couldn't see over my breasts, let alone move..." <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - the breasts, the asses, the milk, the flesh," her avatar states while swelling considerably and sprouting several oversized extra boobs. + the breasts, the asses, the milk, the flesh," _hisA avatar states while swelling considerably and sprouting several oversized extra boobs. <<case "schoolgirl">> those titties!" _hisA avatar trills. <<default>> - those ridiculous assets," she says. + those ridiculous assets," _heA says. <</switch>> <<elseif $RESMove == "LDE">> "Just think of <<switch $assistantAppearance>> <<case "monstergirl">> - their soft anuses. I could fit both of my dicks in one of them," she concludes, _hisA avatar starting to masturbate. + their soft anuses. I could fit both of my dicks in one of them," _heA concludes, _hisA avatar starting to masturbate. <<case "shemale">> - those soft young butthole sluts..." she trails off, _hisA avatar starting to masturbate. + those soft young butthole sluts..." _heA trails off, _hisA avatar starting to masturbate. <<case "amazon">> their soft - I mean their submissive - you know, how they take..." _hisA avatar trails off, blushing. <<case "businesswoman">> all that whoring potential," _hisA avatar says, looking aroused at the possibilities. <<case "fairy">> - all those soft, squeezable butts!" _hisA avatar squeaks, shaking to and fro while she hugs herself. + all those soft, squeezable butts!" _hisA avatar squeaks, shaking to and fro while _heA hugs _himselfA. <<case "pregnant fairy">> - all those soft, squeezable butts and lovely birthing hips!" _hisA avatar squeaks, shaking to and fro while she hugs _hisA swollen belly. + all those soft, squeezable butts and lovely birthing hips!" _hisA avatar squeaks, shaking to and fro while _heA hugs _hisA swollen belly. <<case "goddess">> those servile little cuties!" _hisA avatar exclaims, practically giggling. <<case "hypergoddess">> @@ -206,43 +206,43 @@ as you suspected, <<case "schoolgirl">> those soft little bitches!" _hisA avatar trills. <<default>> - those bottoms," she says. + those bottoms," _heA says. <</switch>> <<elseif $RESMove == "TGA" || $RESMove == "HA">> "Just think of <<switch $assistantAppearance>> <<case "monstergirl">> - their sweaty bodies," she concludes, _hisA avatar starting to masturbate. + their sweaty bodies," _heA concludes, _hisA avatar starting to masturbate. <<case "shemale">> - those muscly bodies, all sweaty and..." she trails off, _hisA avatar starting to masturbate. + those muscly bodies, all sweaty and..." _heA trails off, _hisA avatar starting to masturbate. <<case "amazon">> - how they can fight!" she concludes, more loudly than is really necessary. + how they can fight!" _heA concludes, more loudly than is really necessary. <<case "businesswoman">> all that bodyguard potential," _hisA avatar says, looking aroused at the possibilities. <<case "fairy" "pregnant fairy">> those big, strong, sweaty, sexy bodies!" _hisA avatar squeaks, looking beet red and breathing heavily. <<case "goddess" "hypergoddess">> - all those hard, strong, rippling..." she trails off, too breathless to be specific. + all those hard, strong, rippling..." _heA trails off, too breathless to be specific. <<case "loli" "preggololi">> - those muscles!" she exclaims. + those muscles!" _heA exclaims. <<case "angel">> - those lovely muscles," mutters. "I'd feel so safe with them around me..." + those lovely muscles," _heA mutters. "I'd feel so safe with them around me..." <<case "cherub">> - sweaty muscles!" Her avatar says. "I wonder if I could fly faster with them?" + sweaty muscles!" _hisA avatar says. "I wonder if I could fly faster with them?" <<case "incubus">> - their strength; think of the sexual positions!" She exclaims, her hard-on twitching with anticipation. + their strength; think of the sexual positions!" _heA exclaims, _hisA hard-on twitching with anticipation. <<case "succubus">> - their stamina," she says, licking her lips. "You could fuck all night long without a single break!" + their stamina," _heA says, licking _hisA lips. "You could fuck all night long without a single break!" <<case "imp">> - that strength," her avatar smirks. "You could spank a girl red, easily." + that strength," _hisA avatar smirks. "You could spank a girl red, easily." <<case "witch">> - how tall they are," her avatar mutters. "I tried a muscle growth spell once... Ended up sixteen feet tall without any muscles; couldn't even stand under my weight." + how tall they are," _hisA avatar mutters. "I tried a muscle growth spell once... Ended up sixteen feet tall without any muscles; couldn't even stand under my weight." <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - that grip," her avatar states. "It would be effortless to pin a girl with that." + that grip," _hisA avatar states. "It would be effortless to pin a girl with that." <<case "schoolgirl">> - those cute bitches!" her avatar trills. + those cute bitches!" _hisA avatar trills. <<default>> - how well trained they always are," she says. + how well trained they always are," _heA says. <</switch>> <<else>> <<switch $assistantAppearance>> @@ -271,18 +271,18 @@ as you suspected, <<case "imp">> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses and then says seriously, "There are so many places you could torment on someone with both sexes." <<case "witch">> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses and then says seriously, "If you aren't careful with magic you can end up like that... Not that I have before!" She shouts, turning red. + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses and then says seriously, "If you aren't careful with magic you can end up like that... Not that I have before!" _heA shouts, turning red. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses, its hips and crotch splitting open to allow a massive phallic object to sag to the ground, "We are similar." + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses, _hisA hips and crotch splitting open to allow a massive phallic object to sag to the ground, "We are similar." <<case "schoolgirl">> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses and then says seriously, "They kind of make me want a cock." <<default>> - "Just think of how unique they are," she says. + "Just think of how unique they are," _heA says. <</switch>> <</if>> <</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 +Your assistant is a powerful analytic tool, but _heA lacks the capacity for true creativity. _HeA did not mention the long term. It would be possible to support the <<if ($RESMove == "TSS") || ($RESMove == "SCP") || ($RESMove == "LDE") || ($RESMove == "TGA") || ($RESMove == "HA")>> school's <<elseif $RESMove == "GRI">> diff --git a/src/uncategorized/seNicaeaPreperation.tw b/src/uncategorized/seNicaeaPreperation.tw index fcf445365b31346b8fbc8994efebd18bd3afdc14..c809772da8c0cd8c75b9e2058db849403cc58405 100644 --- a/src/uncategorized/seNicaeaPreperation.tw +++ b/src/uncategorized/seNicaeaPreperation.tw @@ -4,6 +4,8 @@ <<set $nextButton = "Continue">> <<set $nicaeaPreparation = 0>> +<<setAssistantPronouns>> + <<if $nicaeaInvolvement == -1>> Your vigorous opposition to a religious council to establish an agreed upon creed for Chattel Religionism has been successful, but not without cost. The furious controversy @@.red;cost you friends and damaged your reputation@@ among those of your religious peers who wanted to see Chattel Religionists draw closer together, and as happens in controversies as heated as this, the influence and reputation you gain from those who agree with you doesn't match what you lose among those who think you're standing in the way of progress. Furthermore, not all of your citizens agreed with you, either. A few citizens of consequence have actually left $arcologies[0].name over it, @@.red;damaging its economic prosperity.@@ Also, Chattel Religionists have had a serious disagreement here for the first time. @@.red;Full acceptance of slaveowning theocracy in your arcology has been set back.@@ A majority of your citizens still approve and participate, but it will take time to rebuild. @@ -13,9 +15,14 @@ But you did win. Chattel Religionism will remain a free and open faith that acce <<else>> -You have a busy week preparing for the $nicaeaName ahead of you. Planning the event itself is the easy part. Modern arcologies are designed to host big events, and it's not like you don't have a lot of labor available to assist you. Furthermore, one of $assistantName's standard functions is event planning. <<if $assistant == 0>>It<<else>>She<</if>> helps manage the thousand details of hosting a group of rich, powerful, opinionated people, letting you focus on the most important matters. -<<if $HeadGirl != 0>>$HeadGirl.slaveName is also a great help. She does her best to supervise your other slaves even more thoroughly than usual, giving you precious time.<</if>> -<<if $Concubine != 0>>Of course, $Concubine.slaveName is always there to help you relax when you need it.<</if>> +You have a busy week preparing for the $nicaeaName ahead of you. Planning the event itself is the easy part. Modern arcologies are designed to host big events, and it's not like you don't have a lot of labor available to assist you. Furthermore, one of $assistantName's standard functions is event planning. _HeA helps manage the thousand details of hosting a group of rich, powerful, opinionated people, letting you focus on the most important matters. +<<if $HeadGirl != 0>> + <<setLocalPronouns $HeadGirl>> + $HeadGirl.slaveName is also a great help. $He does $his best to supervise your other slaves even more thoroughly than usual, giving you precious time. +<</if>> +<<if $Concubine != 0>> + Of course, $Concubine.slaveName is always there to help you relax when you need it. +<</if>> <br><br> The first major choice you have to make concerns the seats on the Council. There are some Chattel Religionists you simply have to invite; they're so prominent that if you don't, the Council's decisions will lack any weight. But that doesn't mean you don't have room to manipulate the list of people invited in order to enhance your influence in the council. It wouldn't be difficult to selectively invite Chattel Religionist slaveowners that have the reputation to support attendance, who you know to be philosophically aligned with your thoughts about the faith. On the other hand, managing the seats on the Council with perfect impartiality would definitely help acceptance of any creed the Council agrees upon. <br><br> diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw index d88e1071d11377e5035d2b37a99ae3976d843f8b..743ae0ce309b653561560a3a26bfe603c0bef8f5 100644 --- a/src/uncategorized/spaReport.tw +++ b/src/uncategorized/spaReport.tw @@ -154,7 +154,7 @@ <<else>> $He does $his best to accommodate $slaves[$i].slaveName's massive breasts and tends to _him2 whenever _he2 feels a need for release. <<if random(1,100) > 65 && $Attendant.fetish == "none">> - After multiple milking sessions, $Attendant.slaveName begins to find herself fantasizing about having giant milky breasts too. + After multiple milking sessions, $Attendant.slaveName begins to find $himself fantasizing about having giant milky breasts too. <<set $Attendant.fetish = "boobs", $slaves[_FLs].fetish = "boobs">> <</if>> <</if>> diff --git a/src/uncategorized/subordinateTargeting.tw b/src/uncategorized/subordinateTargeting.tw index 5939fc330caa8ddb69a2cb214df0feb11f387fcc..89f0b8c40f3cba71b810ef7b7df9feac3f90891e 100644 --- a/src/uncategorized/subordinateTargeting.tw +++ b/src/uncategorized/subordinateTargeting.tw @@ -3,6 +3,7 @@ <<set $nextButton = "Back", $nextLink = "Slave Interact">> <<set _displaySlave = $activeSlave>> +<<setLocalPronouns $activeSlave>> <<if $activeSlave.subTarget == $activeSlave.ID>> <<set $activeSlave.subTarget = 0>> @@ -12,11 +13,11 @@ <<if def _st>> $activeSlave.slaveName will submit to ''__@@.pink;$slaves[_st].slaveName@@__'' this week. <<else>> - $activeSlave.slaveName has not been given to any particular slave, so she will have to offer herself to everyone this week. + $activeSlave.slaveName has not been given to any particular slave, so she will have to offer $himself to everyone this week. <<set $activeSlave.subTarget = 0>> <</if>> -<br><br>__Select a slave for her to submit to, sexually:__ +<br><br>__Select a slave for $him to submit to, sexually:__ <<include "Slave Summary">> <br><br>[[None|Subordinate Targeting][$activeSlave.subTarget = 0]] diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 7506db1c460ed8427a7ca3549875809c4a130d57..8716011a655bfb8840a4788cdbaec7fb684cb160 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -32,7 +32,6 @@ <<set _flag = random(1,100), $partner = "">> <</if>> -<<run SlavePronouns($activeSlave)>> /* are we including passages that need this? */ <<setLocalPronouns $activeSlave>> <span id="walk"> @@ -4176,11 +4175,11 @@ <<else>> <<switch $target>> <<case "FVagina">> - <span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollVaginal>><</replace>><</link>></span> + <span id="walkpast"><<link "Fuck $him">><<replace "#walk">><<FFuckdollVaginal>><</replace>><</link>></span> <<case "FButt" "FAnus">> - <span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollAnal>><</replace>><</link>></span> + <span id="walkpast"><<link "Fuck $him">><<replace "#walk">><<FFuckdollAnal>><</replace>><</link>></span> <<default>> - <span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollOral>><</replace>><</link>></span> + <span id="walkpast"><<link "Fuck $him">><<replace "#walk">><<FFuckdollOral>><</replace>><</link>></span> <</switch>> <</if>> </span> diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index 32c617122a912a65cb358ec9942d65e0f7d5ed95..7b92338a7dc70a7d3c8b73d8150c585ec4707179 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -494,7 +494,7 @@ %/ <<widget "OralSkillIncrease">> -<<run SlavePronouns($args[0])>> +<<setLocalPronouns $args[0]>> <<if $args[0].oralSkill <= 10>> <<if $args[0].oralSkill+$skillIncrease > 10>> @@.green;$He now has basic knowledge about oral sex,@@ and can at least suck a dick without constant gagging. @@ -523,7 +523,7 @@ %/ <<widget "VaginalSkillIncrease">> -<<run SlavePronouns($args[0])>> +<<setLocalPronouns $args[0]>> <<if $args[0].vaginalSkill <= 10>> <<if $args[0].vaginalSkill+$skillIncrease > 10>> @@.green;$He now has basic knowledge about vaginal sex,@@ and can avoid some of the common pitfalls and turnoffs. @@ -552,7 +552,7 @@ %/ <<widget "AnalSkillIncrease">> -<<run SlavePronouns($args[0])>> +<<setLocalPronouns $args[0]>> <<if $args[0].analSkill <= 10>> <<if $args[0].analSkill+$skillIncrease > 10>> @@.green;$He now has basic knowledge about anal sex,@@ and can accept penetration of $his anus without danger. @@ -581,7 +581,7 @@ %/ <<widget "WhoreSkillIncrease">> -<<run SlavePronouns($args[0])>> +<<setLocalPronouns $args[0]>> <<if $args[0].whoreSkill <= 10>> <<if $args[0].whoreSkill+$skillIncrease > 10>> @@.green;$He now has basic knowledge about how to whore,@@ and can avoid some potentially dangerous situations. @@ -610,7 +610,7 @@ %/ <<widget "EntertainSkillIncrease">> -<<run SlavePronouns($args[0])>> +<<setLocalPronouns $args[0]>> <<if $args[0].entertainSkill <= 10>> <<if $args[0].entertainSkill+$skillIncrease > 10>> @@.green;$He now has basic knowledge about how to be entertaining,@@ and can usually avoid serious faux pas. diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index 5d6326195238dec79f7186e8480c9f15147cdead..0d1f92a63420bf4b3fb262bbb5c3178f3eb0fab7 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -2848,8 +2848,7 @@ <<if $arcologies[0].FSSupremacistLawME == 1>> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> - <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> <<include "Generate New Slave">>