diff --git a/Changelog.txt b/Changelog.txt index 78f1e847de2ae9b4ba3f7c02b02e030d297997f1..e05f052f6d78d31f49c678848d1a8e876dc34d51 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,6 +1,11 @@ Pregmod -06/14/2019 +0.10.7.1-2.6.x + + 0 + -scar system added + -player slave impregnation bug fixed + -fixes and cleaning 0.10.7.1-2.5.x diff --git a/devTools/PreCompile.sh b/devTools/PreCompile.sh index 521e454a78ca89587c2af65d9a6e72f8ac6bb740..1bfd07daf3178b857494b95db40adc0009eacae2 100755 --- a/devTools/PreCompile.sh +++ b/devTools/PreCompile.sh @@ -7,6 +7,6 @@ while true;do gen=0;cd $4; git fetch -q && if [ `git rev-list ...origin|wc -l` -gt 0 ];then git pull -q&&gen=1;fi #stackoverflow.com/a/17192101 if [[ $gen > 0 ]];then rm bin/*;./compile.sh -q&&cd bin/ mv *.h* FC-`git log -1 --format=%cd --date=format:%m-%d-%Y-%H-%M`-`git log|head -1|cut -c8-11`.html - mega-put -c *.h* $3&&mega-rm $3`mega-ls $3head -n 1` + mega-put -c *.h* $3&&mega-rm $3`mega-ls $3|head -n 1` fi clear;sleep 15m;done \ No newline at end of file diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js index 5906cb73a9f9c32668a2d2dd6934d3b4b485ff73..a65ccbc1721017922b5e9101016edd92a46466ad 100644 --- a/src/002-config/fc-version.js +++ b/src/002-config/fc-version.js @@ -1,7 +1,7 @@ App.Version = { base: "0.10.7", - pmod: "2.5.X", - release: 1047, + pmod: "2.6.X", + release: 1048, }; /* Use release as save version */ diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw index 99d02c0ac8bcb020370361dcaa2d5c2f3f3a9933..4616011f604e3e46b05e4606ede2e23c71406918 100644 --- a/src/SecExp/attackHandler.tw +++ b/src/SecExp/attackHandler.tw @@ -342,6 +342,8 @@ <<set $slaves[_i].health -= 30>> <<elseif $woundType == 3>> <<set $slaves[_i].amp = 1>> + <<set $slaves[_i].missingArms = 3>> + <<set $slaves[_i].missingLegs = 3>> <<set $slaves[_i].health = -80>> <<elseif $woundType >= 4>> <<if $slaves[_i].health >= -60>> @@ -470,6 +472,8 @@ <<set $slaves[_i].health -= 30>> <<elseif $woundType == 3>> <<set $slaves[_i].amp = 1>> + <<set $slaves[_i].missingArms = 3>> + <<set $slaves[_i].missingLegs = 3>> <<set $slaves[_i].health = -80>> <<elseif $woundType >= 4>> <<if $slaves[_i].health >= -60>> diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw index cc3663d7339cf3de1e1b8a22b2aa524093aaf10e..241fc79d0defff1c5b5be233b60b0e4feeccb5c7 100644 --- a/src/SecExp/rebellionReport.tw +++ b/src/SecExp/rebellionReport.tw @@ -669,6 +669,8 @@ <<elseif $woundType == 3>> an explosion near $him caused the loss of all $his limbs. <<set $Concubine.amp = 1>> + <<set $Concubine.missingArms = 3>> + <<set $Concubine.missingLegs = 3>> <<elseif $woundType >= 4>> a stray shot severely wounded $him. <<if $Concubine.health >= -60>> @@ -732,6 +734,8 @@ <<elseif $woundType == 3>> An explosion near _him2 caused the loss of all _his2 limbs. <<set $Bodyguard.amp = 1>> + <<set $Bodyguard.missingArms = 3>> + <<set $Bodyguard.missingLegs = 3>> <<elseif $woundType >= 4>> A stray shot severely wounded _him2. <<if $Bodyguard.health >= -60>> @@ -843,6 +847,8 @@ <<elseif $woundType == 3>> an explosion near $him caused the loss of all $his limbs. <<set $Concubine.amp = 1>> + <<set $Concubine.missingArms = 3>> + <<set $Concubine,missingLegs = 3>> <<elseif $woundType >= 4>> a stray shot severely wounded $him. <<if $Concubine.health >= -60>> @@ -955,6 +961,8 @@ <<elseif $woundType == 3>> an explosion near $him caused the loss of all $his limbs. <<set $Concubine.amp = 1>> + <<set $Concubine.missingArms = 3>> + <<set $Concubine.missingLegs = 3>> <<elseif $woundType >= 4>> a stray shot severely wounded $him. <<if $Concubine.health >= -60>> diff --git a/src/SpecialForce/Proposal.tw b/src/SpecialForce/Proposal.tw index fd04ace1eb007934f4453ade086258277c914d85..d4c8f7e746fc3c196c4ba884136ac405d9b4a517 100644 --- a/src/SpecialForce/Proposal.tw +++ b/src/SpecialForce/Proposal.tw @@ -16,6 +16,6 @@ Such a force would solve many problems. More soldiers would mean more control, w <<elseif $PC.warfare >= 50||$PC.career === "arcology owner">> <<set _price *= 0.75>> <</if>> -<br>[[Prepare for an announcement.|Security Force Naming-Colonel][$SF.Active = 1, $SF.IntroProgress = -1, App.SF.Init(), cashX(-_price, "specialForces")]] +<br>[[Prepare for an announcement.|Security Force Naming-Colonel][$SF.Active = 1, $SF.IntroProgress = -1, App.SF.Init(), cashX(forceNeg(_price), "specialForces")]] <br> //Initial costs are @@.yellowgreen;<<print cashFormat(_price)>>@@ and upon establishment the force will have significant support costs until it is self-sufficient.// <br>[[The current measures are enough|RIE Eligibility Check][$SF.Active = 0]] \ No newline at end of file diff --git a/src/SpecialForce/SpecialForce.js b/src/SpecialForce/SpecialForce.js index 5a0dd4fb98cc7d3963e8df4b5d2b0f06fcf5422d..418b23e7f91b00afe64e42b1780955a58927ffdc 100644 --- a/src/SpecialForce/SpecialForce.js +++ b/src/SpecialForce/SpecialForce.js @@ -624,7 +624,7 @@ App.SF.fsIntegration = function(input = 'Menu', textDisplay = 100, text = `\n`) text += `You bring up the topic of cultural development with the Colonel, and in doing so, you share your hopes that she might be willing to help you better acquaint the troops with your cultural mores. Her response was less than positive: `; switch (V.SF.Colonel.Core) { case "kind": - text += `"To be honest, I'm not too happy about this idea. Your plans for cultural development are too... Extreme. All we need to focus on is security, raiding, and recruiting. That is what my contract, OUR contract, states in the print. I'm sorry, but innovating upon our culture was not part of our agreement."`; + text += `"To be honest, I'm not too happy about this idea. Your plans for cultural development are too... extreme. All we need to focus on is security, raiding, and recruiting. That is what my contract, OUR contract, states in the print. I'm sorry, but innovating upon our culture was not part of our agreement."`; break; case "cruel": text += `"What the fuck? Didn't we talk about this, like, way back? No 'future society' bullshit! That was our agreement, boss. Do not bother me with this."`; diff --git a/src/SpecialForce/TrickShotNight.tw b/src/SpecialForce/TrickShotNight.tw index c857faa4afc2689c8fa82bcee6563291100b5eb1..02babdbd33cade39e2b15620365c5c8c26661bd2 100644 --- a/src/SpecialForce/TrickShotNight.tw +++ b/src/SpecialForce/TrickShotNight.tw @@ -43,130 +43,130 @@ Despite your direct elevator, interaction with the majority of your security for <br>//You lack the necessary funds to attend.// <<else>> /* cash >= 50000 */ -<br><<link "Attend the trick shot night">> - <<replace "#result">> - You instruct $assistantName to inform $SF.Lower that you will be attending their trick shot night, and after settling your affairs in the penthouse you head down to the firebase. The atmosphere in the firebase is casual, especially in comparison to the usual situations you meet them, though your security force still maintain some measure of decorum towards you as their employer. Eventually, you settle in at the table with a handful of $SF.Lower officers and turn your @@.yellowgreen;<<print cashFormat(50000)>>@@ into bullets. All that remains is to decide your strategy for the night. - <br><br> <span id="bountyresult"> + <br><<link "Attend the trick shot night">> + <<replace "#result">> + You instruct $assistantName to inform $SF.Lower that you will be attending their trick shot night, and after settling your affairs in the penthouse you head down to the firebase. The atmosphere in the firebase is casual, especially in comparison to the usual situations you meet them, though your security force still maintain some measure of decorum towards you as their employer. Eventually, you settle in at the table with a handful of $SF.Lower officers and turn your @@.yellowgreen;<<print cashFormat(50000)>>@@ into bullets. All that remains is to decide your strategy for the night. + <br><br> <span id="bountyresult"> - <<link "Play it safe">> - <<replace "#bountyresult">> - <<if random(1,100) > _shootChance>> - Despite your attempts to mitigate risk and play the safest shots possible, it seems lady luck has conspired against you this evening. However, even when your last bullet is shot, your security force pitch you a few bullets to keep you in the game for the rest of the night. You may have lost most of your ¤, but it seems you've @@.green;made some friends.@@ - <<run repX(5000, "event")>> - <<run cashX(-25000, "event")>> - <<else>> - While a careful eye for accuracy has buoyed you through the evening, ultimately lady luck is the decider in handing you the win in a number of close shots. Unfortunately your meticulous play limited your chance at a larger payout, and you only come away from the evening with @@.yellowgreen;<<print cashFormat(100000)>>@@ more than you arrived with and @@.green;the respect of your security force.@@ - <<run repX(5000, "event")>> - <<run cashX(10000, "event")>> - <</if>> - <</replace>> - <</link>> + <<link "Play it safe">> + <<replace "#bountyresult">> + <<if random(1,100) > _shootChance>> + Despite your attempts to mitigate risk and play the safest shots possible, it seems lady luck has conspired against you this evening. However, even when your last bullet is shot, your security force pitch you a few bullets to keep you in the game for the rest of the night. You may have lost most of your ¤, but it seems you've @@.green;made some friends.@@ + <<run repX(5000, "event")>> + <<run cashX(-25000, "event")>> + <<else>> + While a careful eye for accuracy has buoyed you through the evening, ultimately lady luck is the decider in handing you the win in a number of close shots. Unfortunately your meticulous play limited your chance at a larger payout, and you only come away from the evening with @@.yellowgreen;<<print cashFormat(100000)>>@@ more than you arrived with and @@.green;the respect of your security force.@@ + <<run repX(5000, "event")>> + <<run cashX(10000, "event")>> + <</if>> + <</replace>> + <</link>> - <<if random(1,100) < _shootChance>> - <br> <<link "Up the ante">> - <<replace "#bountyresult">> - <<set $activeSlaveOneTimeMinAge = 25>> - <<set $activeSlaveOneTimeMaxAge = 35>> - <<set $one_time_age_overrides_pedo_mode = 1>> - <<set $oneTimeDisableDisability = 1>> - <<if $arcologies[0].FSSupremacistLawME == 1>> - <<set $fixedRace = $arcologies[0].FSSupremacistRace>> - <<elseif $arcologies[0].FSSubjugationistLawME == 1>> - <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> - <<set $fixedRace = _races.random()>> - <</if>> - <<if $seeDicks != 100>> - <<set $activeSlave = GenerateNewSlave("XX")>> - <<else>> - <<set $activeSlave = GenerateNewSlave("XY")>> - <</if>> - <<set $activeSlave.origin = "$He put $himself up as collateral at a trick shot game, and lost.">> - <<set $activeSlave.career = "a soldier">> - <<set $activeSlave.indentureRestrictions = 2>> - <<set $activeSlave.indenture = 52>> - <<set $activeSlave.devotion = random(45,60)>> - <<set $activeSlave.trust = random(55,65)>> - <<set $activeSlave.health = random(60,80)>> - <<set $activeSlave.muscles = 60>> - <<if $activeSlave.weight > 130>> - <<set $activeSlave.weight -= 100>> - <<set $activeSlave.waist = random(-10,50)>> - <</if>> - <<set $activeSlave.anus = 0>> - <<set $activeSlave.skill.anal = 0>> - <<set $activeSlave.skill.whoring = 0>> - <<set $activeSlave.skill.combat = 1>> - <<set $activeSlave.accent = random(0,1)>> - <<set $activeSlave.behavioralFlaw = "arrogant">> - <<set $activeSlave.hLength = 1>> - <<set $activeSlave.hStyle = "buzzcut">> - <<set $activeSlave.clothes = "a military uniform">> - <<setLocalPronouns $activeSlave>> - <span id="artFrame"> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> - <<else>> - <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> - <</if>> - <</if>> - /* 000-250-006 */ - </span> - Some aggressive play and an eye for riling up your fellow players has resulted in an immense payout, and all but one of your adversaries have folded as the situation has escalated. The only player still in contention is a wily old mercenary, the veteran of $his fair share of battles on the battlefield and at the firing range. $He's short on bullets, however, and $he'll have to buy in with something else as collateral. - <br><br> <span id="aliveresult"> - - <<link "A year of servitude">> - <<set $activeSlave.clothes = "no clothing">> - <<replace "#aliveresult">> - <<if random(1,100) > _shootChance>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other security force clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ - <<run repX(5000, "event")>> - <<run cashX(-50000, "event")>> + <<if random(1,100) < _shootChance>> + <br> <<link "Up the ante">> + <<replace "#bountyresult">> + <<set $activeSlaveOneTimeMinAge = 25>> + <<set $activeSlaveOneTimeMaxAge = 35>> + <<set $one_time_age_overrides_pedo_mode = 1>> + <<set $oneTimeDisableDisability = 1>> + <<if $arcologies[0].FSSupremacistLawME == 1>> + <<set $fixedRace = $arcologies[0].FSSupremacistRace>> + <<elseif $arcologies[0].FSSubjugationistLawME == 1>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> + <<set $fixedRace = _races.random()>> + <</if>> + <<if $seeDicks != 100>> + <<set $activeSlave = GenerateNewSlave("XX")>> <<else>> - <<replace "#artFrame">> - <span id="artFrame"> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> + <<set $activeSlave = GenerateNewSlave("XY")>> + <</if>> + <<set $activeSlave.origin = "$He put $himself up as collateral at a trick shot game, and lost.">> + <<set $activeSlave.career = "a soldier">> + <<set $activeSlave.indentureRestrictions = 2>> + <<set $activeSlave.indenture = 52>> + <<set $activeSlave.devotion = random(45,60)>> + <<set $activeSlave.trust = random(55,65)>> + <<set $activeSlave.health = random(60,80)>> + <<set $activeSlave.muscles = 60>> + <<if $activeSlave.weight > 130>> + <<set $activeSlave.weight -= 100>> + <<set $activeSlave.waist = random(-10,50)>> + <</if>> + <<set $activeSlave.anus = 0>> + <<set $activeSlave.skill.anal = 0>> + <<set $activeSlave.skill.whoring = 0>> + <<set $activeSlave.skill.combat = 1>> + <<set $activeSlave.accent = random(0,1)>> + <<set $activeSlave.behavioralFlaw = "arrogant">> + <<set $activeSlave.hLength = 1>> + <<set $activeSlave.hStyle = "buzzcut">> + <<set $activeSlave.clothes = "a military uniform">> + <<setLocalPronouns $activeSlave>> + <span id="artFrame"> + /* 000-250-006 */ + <<if $seeImages == 1>> + <<if $imageChoice == 1>> + <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> + <<else>> + <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> + <</if>> + <</if>> + /* 000-250-006 */ + </span> + Some aggressive play and an eye for riling up your fellow players has resulted in an immense payout, and all but one of your adversaries have folded as the situation has escalated. The only player still in contention is a wily old mercenary, the veteran of $his fair share of battles on the battlefield and at the firing range. $He's short on bullets, however, and $he'll have to buy in with something else as collateral. + <br><br> <span id="aliveresult"> + + <<link "A year of servitude">> + <<set $activeSlave.clothes = "no clothing">> + <<replace "#aliveresult">> + <<if random(1,100) > _shootChance>> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other security force clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ + <<run repX(5000, "event")>> + <<run cashX(-50000, "event")>> <<else>> - <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> + <<replace "#artFrame">> + <span id="artFrame"> + /* 000-250-006 */ + <<if $seeImages == 1>> + <<if $imageChoice == 1>> + <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> + <<else>> + <div class="imageRef medImg"><<= SlaveArt($activeSlave, 2, 0)>></div> + <</if>> + <</if>> + /* 000-250-006 */ + </span> + <</replace>> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. A silence falls over the room as the result is declared, but after some time your opponent breaks the hush by joking that life as your slave is probably easier than fighting for $arcologies[0].name. After some awkward laughter the night continues, and at the end your former mercenary joins you on your trip back to the penthouse to submit to processing and to begin $his new life as your sexual servant. $He's not young, but $he's tough and not distrusting of you due to $his service in $SF.Lower. + <br> + <<include "New Slave Intro">> <</if>> - <</if>> - /* 000-250-006 */ - </span> - <</replace>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. A silence falls over the room as the result is declared, but after some time your opponent breaks the hush by joking that life as your slave is probably easier than fighting for $arcologies[0].name. After some awkward laughter the night continues, and at the end your former mercenary joins you on your trip back to the penthouse to submit to processing and to begin $his new life as your sexual servant. $He's not young, but $he's tough and not distrusting of you due to $his service in $SF.Lower. - <br> - <<include "New Slave Intro">> - <</if>> - <<= IncreasePCSkills('warfare', 1)>> - <</replace>> - <</link>> + <<= IncreasePCSkills('warfare', 1)>> + <</replace>> + <</link>> - <br> <<link "Dock $his wages">> - <<replace "#aliveresult">> - <<if random(1,100) > _shootChance>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other security force members clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ - <<run repX(5000, "event")>> - <<run cashX(-50000, "event")>> - <<else>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. Your opponent accepts $his defeat with grace and jokes to $his comrades that $he'll be fighting in $his underwear for the next few months, and their uproar of laughter fills the room. Though you take the lion's share of the ¤, your security force also @@.green;had a good time fraternizing with you.@@ - <<run repX(10000, "event")>> - <<run cashX(50000, "event")>> - <</if>> - <<= IncreasePCSkills('warfare', 1)>> + <br> <<link "Dock $his wages">> + <<replace "#aliveresult">> + <<if random(1,100) > _shootChance>> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other security force members clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ + <<run repX(5000, "event")>> + <<run cashX(-50000, "event")>> + <<else>> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. Your opponent accepts $his defeat with grace and jokes to $his comrades that $he'll be fighting in $his underwear for the next few months, and their uproar of laughter fills the room. Though you take the lion's share of the ¤, your security force also @@.green;had a good time fraternizing with you.@@ + <<run repX(10000, "event")>> + <<run cashX(50000, "event")>> + <</if>> + <<= IncreasePCSkills('warfare', 1)>> + <</replace>> + <</link>> + + </span> <</replace>> <</link>> + <</if>> </span> <</replace>> - <</link>> - <</if>> - - </span> - <</replace>> -<</link>> // It will cost @@.red;<<print cashFormat(50000)>>@@ to participate in the trick shot night.// + <</link>> // It will cost @@.red;<<print cashFormat(50000)>>@@ to participate in the trick shot night.// <</if>> </span> diff --git a/src/art/artJS.js b/src/art/artJS.js index ffd70b3485b4c717b1b648c313cb8e426441d9ef..b8cdfde6ca7ad800679d1dfc9ecb7e7945a5db85 100644 --- a/src/art/artJS.js +++ b/src/art/artJS.js @@ -146,16 +146,12 @@ App.Art.renderedArtElement = function(slave, artSize) { App.Art.customArtElement = function(slave, imageSize) { const fileType = slave.custom.image.format || "png"; const fileName = `resources/${slave.custom.image.filename}.${fileType}`; - var elementType = "video"; - - if(fileType === "webm" || fileType === "mp4"){ - var elementType = "video"; + let elementType = "img"; + let attributes = []; + if (fileType === "webm" || fileType === "mp4") { + elementType = "video"; + attributes = ["loop", "autoplay"]; } - else{ - var elementType = "img"; - } - - const attributes = fileType === "webm" || "mp4" ? ["loop", "autoplay"] : []; const res = document.createElement(elementType); attributes.forEach((an) => { @@ -163,8 +159,7 @@ App.Art.customArtElement = function(slave, imageSize) { }); res.setAttribute("src", fileName); - res.setAttribute("style", "'float:right; border:3px hidden'"); - + res.setAttribute("style", "float:right; border:3px hidden;object-fit: fill;height : 100%; width : 100%;"); const sz = this.artSizeToPx(imageSize); if (sz) { res.setAttribute("width", sz); diff --git a/src/endWeek/saChoosesOwnClothes.js b/src/endWeek/saChoosesOwnClothes.js index 8f9947a0035901e96f0bfe303d6888537c888b8b..f8309b269105844626a641c86ae2a220f88a6071 100644 --- a/src/endWeek/saChoosesOwnClothes.js +++ b/src/endWeek/saChoosesOwnClothes.js @@ -34,7 +34,7 @@ window.saChoosesOwnClothes = (function() { slave.bellyAccessory = corsetChoice.bellyAccessory; slave.clothes = clothingChoice.clothes; r += `${He} is fundamentally broken, but still follows some faint memories of standing within the wardrobe. `; - if (slave.amp !== 1) { + if (hasAnyLegs(slave)) { const shoeChoice = todaysShoes(slave); r += `${shoeChoice.text} `; slave.shoes = shoeChoice.shoes; @@ -44,7 +44,7 @@ window.saChoosesOwnClothes = (function() { const clothingChoice = todaysOutfit(slave); slave.clothes = clothingChoice.clothes; r += `${clothingChoice.text} `; - if (slave.amp !== 1) { + if (hasAnyLegs(slave)) { const shoeChoice = todaysShoes(slave); r += `${shoeChoice.text} `; slave.shoes = shoeChoice.shoes; @@ -81,7 +81,7 @@ window.saChoosesOwnClothes = (function() { } } - if (slave.amp !== 1) { + if (hasAnyLegs(slave)) { const shoeChoice = todaysShoes(slave); r += `${shoeChoice.text}`; slave.shoes = shoeChoice.shoes; @@ -990,7 +990,7 @@ window.saChoosesOwnClothes = (function() { const shoes = []; if (slave.fetish === "mindbroken") { - if (slave.amp !== 1 && slave.heels === 1) { + if (hasBothLegs(slave) && slave.heels === 1) { shoes.push({text: `${He} finds ${he} can inexplicably walk if ${he} wears heels; a daily lesson for ${him}, as ${he} forgets shortly after leaving.`, shoes: jsEither(["boots", "extreme heels", "heels", "pumps"])}); } shoes.push({text: `${He} vaguely remembers putting things on ${his} feet, so ${he} does.`, shoes: jsEither(["boots", "extreme heels", "flats", "heels", "pumps"])}); diff --git a/src/endWeek/saRest.js b/src/endWeek/saRest.js index 54971ddeb8481b6968f7cf9581f03b14905ea55e..dd51002ce5a3b8401be01eefbfc54aeb3a50bdaa 100644 --- a/src/endWeek/saRest.js +++ b/src/endWeek/saRest.js @@ -15,7 +15,7 @@ window.saRest = function saRest(slave) { if (slave.fuckdoll > 0) { t += ` ${He} has nothing to do but `; - if (slave.amp === 0) { + if (!hasBothLegs(slave)) { t += `lie `; } else { t += `stand `; diff --git a/src/endWeek/saServant.js b/src/endWeek/saServant.js index d0923cdef03bef49268d0e43e30f324164bcec54..3fca07d9db9fa3302eca81b996569dbd621cd1ca 100644 --- a/src/endWeek/saServant.js +++ b/src/endWeek/saServant.js @@ -6,7 +6,7 @@ window.saServant = function saServant(slave) { const V = State.variables; /* eslint-disable no-unused-vars*/ const { - he, him, his, hers, himself, boy, + he, him, his, hers, himself, boy, wife, He, His } = getPronouns(slave); /* eslint-enable */ @@ -73,7 +73,7 @@ window.saServant = function saServant(slave) { if (slave.relationship === -2) { t += ` ${He} does ${his} best to perfect your domesticity due to ${his} emotional bond to you.`; } else if (slave.relationship === -3 && slave.devotion > 50) { - t += ` ${He} does ${his} very best to be the perfect housewife, making ${him} an outstanding servant.`; + t += ` ${He} does ${his} very best to be the perfect house${wife}, making ${him} an outstanding servant.`; } if (setup.servantCareers.includes(slave.career)) { diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js index 5990280cc502a21572329af7ef94b3faddeae275..91296cad5c87f2529152080e2b9b054125248b81 100644 --- a/src/endWeek/saServeThePublic.js +++ b/src/endWeek/saServeThePublic.js @@ -520,7 +520,7 @@ window.saServeThePublic = (function saServeThePublic() { r += ` ${SkillIncrease.Anal(slave, skillIncrease)}`; } } - if (slave.amp !== 1) { + if (!isAmputee(slave)) { if (slave.skill.entertainment < 100) { r += ` ${He} gains experience as a public slut.`; skillIncrease = (10 + Math.floor((slave.intelligence + slave.intelligenceImplant) / 32)); @@ -812,7 +812,7 @@ window.saServeThePublic = (function saServeThePublic() { } } - if (slave.amp === 1) { + if (isAmputee(slaves)) { r += ` Many prefer to fuck someone with limbs, but some greatly enjoy fucking a helpless amputee.`; } diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js index ebc75b4c97a723100e341c2b66c5d865c0a1c7c4..2e5aa8683e86f0338c641fc2357e8387346fa1ca 100644 --- a/src/endWeek/saWhore.js +++ b/src/endWeek/saWhore.js @@ -633,7 +633,7 @@ window.saWhore = (function saWhore() { } else if (slave.skill.whoring > 30) { r += ` As a skilled prostitute, ${he} gets a little more money out of customers.`; } - if (slave.amp !== 1) { + if (!isAmputee(slave)) { if (slave.skill.whoring < 100) { slave.skill.whoring += 10 + Math.floor((slave.intelligence + slave.intelligenceImplant) / 32); r += ` ${He} <span class="green">gains experience as a prostitute,</span> and gets better at `; @@ -1006,7 +1006,7 @@ window.saWhore = (function saWhore() { } } - if (slave.amp === 1) { + if (isAmputee(slave)) { r += ` Many prefer to fuck a whore with limbs, but some greatly enjoy buying the use of a helpless amputee.`; } diff --git a/src/events/gameover.tw b/src/events/gameover.tw index bbb09ca033f3a6721cd6968e0261c89b17494acf..07b959a0faf05c7b9edc19bce11811a871fbffda 100644 --- a/src/events/gameover.tw +++ b/src/events/gameover.tw @@ -1,8 +1,8 @@ :: Gameover [nobr] +<<set $ui = "start">> <<switch $gameover>> <<case "bombing">> - <<set $ui = "start">> One fine day, you're strolling down the main promenade, making your usual combined inspection and public rounds. These walks are triply useful, since they allow you to keep a finger on the pulse of your demesne, identify any problems, and display yourself to the population. <br><br> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> suddenly relays a silent alarm, highlighting a scruffy individual twenty <<if $showInches == 2>>yards<<else>>meters<</if>> ahead. This person is hooded and acting oddly. You catch a glance from beneath the hood in your direction: and the figure obviously decides that it can get no closer to you. Your assistant's scanning detects the presence of an implanted bomb moments before the suicide bomber detonates themselves. @@ -10,33 +10,27 @@ The implanted bomb is small, and went off too far ahead to do anything more than stun. Three other assailants run at you from where they were waiting in the confusion, wielding improvised weapons that apparently did not set off the security scanners. Without a bodyguard, decent security systems, or any other means of personal defense, you meet your ignominious death at the end of a bludgeon fashioned from a maintenance tool. <<case "idiot ball">> - <<set $ui = "start">> <<setLocalPronouns $Bodyguard>> You quickly move to deal $Bodyguard.slaveName a slap across the face. You have an instant to realize the depth of your folly as $his combat training kicks into gear: before $he realizes what $he's doing, $he has drawn $his sword, blocked your slap (and incidentally, removed your hand in doing so), and buried the sword in your chest on the riposte. $His devotion returns to $him as $his combat instincts subside. As you fade, you see $his eyes cloud with terrible, unhealable guilt; in one sure movement, $he draws $his weapon, sets it to semi-automatic, places it under $his chin, and fires a single round. <<case "debt">> - <<set $ui = "start">> You have fallen so far into debt that it is mere child's play for another slaveowner to purchase your debt, call it in, and enslave you. The story of your remaining years may be worth telling, but it must be told elsewhere. <<case "birth complications">> - <<set $ui = "start">> Again and again, you keep bearing down. As you grow more exhausted and are no closer to giving birth, you let out a feeble cry for help. <br> <br> Some of your slaves rush to your aid, but they don't know what to do; they helplessly watch as you slowly fade away. If only you had someone you could rely on at your side, perhaps this could have been avoided. At last, the medics arrive at $assistantName's order, but it is too late to save you or your child<<if $PC.pregType > 1>>ren<</if>>. <<case "ownership">> - <<set $ui = "start">> Since you no longer possess a controlling interest in an arcology, your time of influence and power in the Free Cities is over. You remain wealthy, and your life after the part of it worth telling is not something worth regretting. A retirement full of decadence awaits you. <<case "sisters">> - <<set $ui = "start">> For the first time in a long time, you feel the need to verbalize a response, telling the matron that yes, you will join them. She seems to understand, and takes you by the hand in a surprisingly familial gesture, leading you towards the orgy. She tells you she loves you, and all her Sisters echo her. After a moments' surprise, you tell them you love them too, and feminine hands reach out to draw you into their communion. A young futa sucks your cock and then feeds you your own cum from her mouth. An older futa with an enormous penis displaces her and makes out with you while she fucks your pussy. After she finishes inside you she slides your erection inside her own womanhood and rides you while a younger futa fucks your cleavage. You have a free hand which someone fills by pressing an enormous soft breast against it and you oblige her by massaging it eagerly. The futa matron's pussy grows suddenly tighter as another futa starts to buttfuck her and then looser as the cock is removed and inserted into your asshole instead. When she cums inside you she pulls out and her cock is replaced by a greedy mouth and tongue whose owner you cannot see. The older futa presses her cockhead into a younger Sister's mouth and orgasms before sliding herself under you so you can be on top instead. A futa whispers that she wants to be closer to you and slides her cock inside the matron's pussy alongside yours as she nestles her face between your breasts. <br><br> Your appointed successor arrives in your old office to find $assistantName ready to help them take control of the arcology. Most of your assets have been liquidated to create a huge endowment for $arcologies[0].name's Sisters. They'll never have to sell one of their own again, and will be able to afford all the advanced drugs and surgeries they desire. From the most matronly futa down to their newest Sister, none of them need concern themselves with anything other than sex. <<case "major battle defeat">> - <<set $ui = "start">> <<if $attackType == "raiders">> As the horde of raiders breaks the battle lines and enters the arcology, all hell breaks loose. You citizens are raped, your slaves captured and abused, your penthouse burned. As for you, you are quickly captured and brought in front of the warlord himself. With a satisfied smile he aims his pistol to your forehead and squeezes the trigger. @@ -52,7 +46,6 @@ <</if>> <<case "Rebellion defeat">> - <<set $ui = "start">> <<if $slaveRebellion == 1>> As the furious horde of slaves invades your penthouse you are left a few precious seconds to decide your fate. You embrace for the last time your faithful revolver and just as the rebels break through your doors you squeeze the trigger. The end of your story has come and your arcology is now in the hands of whoever will take control of the vermin that dared rise up this day. @@ -63,11 +56,9 @@ <<case "Idiot Ball 2 The Dumbassening">> <<case "Idiot Ball 3 Totally Not Idiot Ball 2 Again">> - <<set $ui = "start">> As you leave your penthouse to conduct your daily rounds, you promptly get <<if $arcologyUpgrade.drones == 1>>tased by the nearest drone<<else>>tackled hard against the wall<</if>>. When you awake, it hits you like a truck; you idiotically enslaved your $PC.race ass by decreeing all <<if $gameover == "Idiot Ball 2 The Dumbassening">>non-<<print $arcologies[0].FSSupremacistRace>><<else>><<print $arcologies[0].FSSubjugationistRace>><</if>><<if $PC.race != "mixed race">>s<<else>> individuals<</if>> slaves, and since you are now a slave, lack the authority to revert the policy. The story of your remaining years may be worth telling, as is your legendary blunder, but it must be told elsewhere. <<default>> - <<set $ui = "start">> Since you are without slaves, Free Cities society no longer considers you a citizen of the first rank. Your personal story may continue, but that part of it worthy of retelling has now ended. <</switch>> diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index da050bfcb82964b6dad2124e1049c0747b99f201..b96ed088ce9b9fc68ca55c580abce856cbc04f15 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -260,10 +260,10 @@ __''General slave settings''__ /% Begin mod section: toggle whether slaves lisp. %/ <<options $disableLisping>> -<<option 1 "Disable Lisping">> - Lisping: ''slaves will not lisp''. -<<option 0 "Enable Lisping">> +<<option 1 "Enable Lisping">> Lisping: ''slaves with fat lips or heavy oral piercings will lisp''. +<<option 0 "Disable Lisping">> + Lisping: ''slaves will not lisp''. <</options>> /% End mod section: toggle whether slaves lisp. %/ @@ -1366,4 +1366,4 @@ __''Mods''__ <</if>> <br><br> -[[Cheat Start|init Nationalities][cashX(1000000, "cheating"),$girls = 3,repX(20000, "cheating"),$dojo += 1,$cheatMode = 1,$seeDesk = 0, $seeFCNN = 0, $sortSlavesBy = "devotion",$sortSlavesOrder = "descending",$sortSlavesMain = 0,$rulesAssistantMain = 1,$abbreviateDevotion = 1,$abbreviateRules = 1,$abbreviateClothes = 2,$abbreviateHealth = 1,$abbreviateDiet = 1,$abbreviateDrugs = 1,$abbreviateRace = 1,$abbreviateNationality = 1,$abbreviateGenitalia = 1,$abbreviatePhysicals = 1,$abbreviateSkills = 1,$abbreviateMental = 2,$PC.trading = 100,$PC.warfare = 100,$PC.slaving = 100,$PC.engineering = 100,$PC.medicine = 100,$PC.hacking = 100]] | //Intended for debugging: may have unexpected effects// +[[Cheat Start|init Nationalities][cashX(1000000, "cheating"),$girls = 3,repX(20000, "cheating"),$dojo += 1,$cheatMode = 1,$seeDesk = 0, $seeFCNN = 0, $sortSlavesBy = "devotion",$sortSlavesOrder = "descending",$sortSlavesMain = 0,$rulesAssistantMain = 1,$abbreviateDevotion = 1,$abbreviateRules = 1,$abbreviateClothes = 2,$abbreviateHealth = 1,$abbreviateDiet = 1,$abbreviateDrugs = 1,$abbreviateRace = 1,$abbreviateNationality = 1,$abbreviateGenitalia = 1,$abbreviatePhysicals = 1,$abbreviateSkills = 1,$abbreviateMental = 2,$PC.trading = 100,$PC.warfare = 100,$PC.slaving = 100,$PC.engineering = 100,$PC.medicine = 100,$PC.hacking = 100]] | //Intended for debugging: may have unexpected effects// \ No newline at end of file diff --git a/src/facilities/farmyard/farmyardReport.tw b/src/facilities/farmyard/farmyardReport.tw index 411652d0455edcbd18e75a25afb8b3a101b8a071..adca04eea17966e179120ba7910feb7df43008e2 100644 --- a/src/facilities/farmyard/farmyardReport.tw +++ b/src/facilities/farmyard/farmyardReport.tw @@ -49,7 +49,7 @@ <<setLocalPronouns $Farmer>> <<= SlaveFullName($Farmer)>> is serving as the Farmer. <<if $Farmer.relationship == -3 && $Farmer.devotion > 50>> - As your loving wife, $he does $his best to ensure $farmyardName runs smoothly. + As your loving $wife, $he does $his best to ensure $farmyardName runs smoothly. <<set $FarmerCashBonus += 0.25>> <</if>> <<if (_FLsFetish == 1)>> diff --git a/src/facilities/nursery/nurseryReport.tw b/src/facilities/nursery/nurseryReport.tw index a4d54f6e347e6ff5faf84ebc2ac6329380bc3d0d..c7ee5c0ff8884f2c6b611d8070cfe95a956da199 100644 --- a/src/facilities/nursery/nurseryReport.tw +++ b/src/facilities/nursery/nurseryReport.tw @@ -41,7 +41,7 @@ <<set _devBonus++>> <</if>> <<set $slaves[_FLs].devotion += _devBonus, $Matron = $slaves[_FLs]>> - <<= SlaveFullName($Matron)>> is serving as the nursery matron.<<if $Matron.relationship == -3 && $Matron.devotion > 50>> $He tries $his best to be your perfect attentive, caring and loving wife.<</if>> + <<= SlaveFullName($Matron)>> is serving as the nursery matron.<<if $Matron.relationship == -3 && $Matron.devotion > 50>> $He tries $his best to be your perfect attentive, caring and loving $wife.<</if>> <<if (_FLsFetish == 1)>> When $he is paid a visit by a slave with sexual issues to work out, $he provides $him with an understanding, willing, giving partner. $He finds real satisfaction in helping your slaves find sexual gratification, and @@.lightsalmon;becomes more caring.@@ <<elseif (_FLsFetish == 2)>> diff --git a/src/facilities/nursery/nurseryWorkaround.tw b/src/facilities/nursery/nurseryWorkaround.tw index b090b252160f5d6a756d8e60f2b900f224b535e1..dd4eb81b3004cbc98117549b048a1c63e97b5efa 100644 --- a/src/facilities/nursery/nurseryWorkaround.tw +++ b/src/facilities/nursery/nurseryWorkaround.tw @@ -128,7 +128,7 @@ <</replace>> <</link>> <<elseif _tempMom.relationship == -3 && (_tempMom.devotion >= -20)>> - <br><<link "Permit your wife to name _his2 $daughter">> + <br><<link "Permit your _wife2 to name _his2 $daughter">> <<replace "#naming">> <<ParentNames _tempMom $activeSlave>> <<set $activeSlave.birthName = $activeSlave.slaveName>> @@ -187,7 +187,7 @@ <</replace>> <</link>> <<elseif _tempDad.relationship == -3 && (_tempDad.devotion >= -20)>> - <br><<link "Permit your wife to name _his2 $daughter">> + <br><<link "Permit your _wife2 to name _his2 $daughter">> <<replace "#naming">> <<ParentNames _tempDad $activeSlave>> <<set $activeSlave.birthName = $activeSlave.slaveName>> diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 638ba4395bba6ee49562d824847068e41ffa849e..ff8ce44da32dc0a09a661974246ae05b991bffb2 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -271,7 +271,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $showBoobCCs = 1>> <<set $showHeightCMs = 1>> <<set $showDickCMs = 1>> - <<set $showInches = 0>> + <<set $showInches = 1>> <<set $showNumbers = 2>> <<set $showNumbersMax = 20>> <<set $showScores = 1>> @@ -1501,6 +1501,8 @@ You should have received a copy of the GNU General Public License along with thi <<set $PC.hacking = 0>> <</if>> +<<set $diversePronouns = 0>> + /* Security Expansion */ <<set $secExp = 0>> <<set $showSecExp = 0>> @@ -1524,4 +1526,4 @@ You should have received a copy of the GNU General Public License along with thi <<= App.SF.Init()>> -<<goto "Alpha disclaimer">> +<<goto "Alpha disclaimer">> \ No newline at end of file diff --git a/src/interaction/prostheticConfig.tw b/src/interaction/prostheticConfig.tw index a5d6e382e3ea7d53481744563d6ffb193ddeaa1e..b8f1747ecf79b368a24780b7c279c2fc9377f7c0 100644 --- a/src/interaction/prostheticConfig.tw +++ b/src/interaction/prostheticConfig.tw @@ -61,7 +61,7 @@ This room is lined with shelves and cabinets, it could be easily mistaken for a | [[Sky-Blue|Prosthetics Configuration][$activeSlave.eyeColor = "sky-blue", $prostheticsConfig = "eyeColor", cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] | [[Hazel|Prosthetics Configuration][$activeSlave.eyeColor = "hazel", $prostheticsConfig = "eyeColor", cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] | [[Pale-Grey|Prosthetics Configuration][$activeSlave.eyeColor = "pale-grey", $prostheticsConfig = "eyeColor", cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] - | [[White|Prosthetics Configuration][$activeSlave.eyeColor = "white", $prostheticsConfig = "eyeColor" ,cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] + | [[White|Prosthetics Configuration][$activeSlave.eyeColor = "white", $prostheticsConfig = "eyeColor", cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] | [[Pink|Prosthetics Configuration][$activeSlave.eyeColor = "pink", $prostheticsConfig = "eyeColor", cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] | [[Amber|Prosthetics Configuration][$activeSlave.eyeColor = "amber", $prostheticsConfig = "eyeColor", cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] | [[Red|Prosthetics Configuration][$activeSlave.eyeColor = "red", $prostheticsConfig = "eyeColor", cashX(forceNeg($modCost), "slaveMod", $activeSlave)]] @@ -153,7 +153,7 @@ This room is lined with shelves and cabinets, it could be easily mistaken for a <<if $activeSlave.fuckdoll != 0>> // A Fuckdoll can't use prosthetic limbs. // <<elseif $activeSlave.amp == 0>> - // $He must be an amputee to attach prosthetic limbs. // + // $He must be a quadruple amputee to attach prosthetic limbs. // <<elseif $activeSlave.PLimb == 0>> // $He must have a prosthetic interface installed to attach prosthetic limbs. // <<else>> @@ -168,39 +168,39 @@ This room is lined with shelves and cabinets, it could be easily mistaken for a <</switch>> installed.//<br> <<link "Detach <<= $his>> limbs" "Prosthetics Configuration">> - <<set $activeSlave.amp = 1, $prostheticsConfig = "removeLimbs">> + <<set $activeSlave.amp = 1, $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3, $prostheticsConfig = "removeLimbs">> <</link>> <br><br> <</if>> /*TODO save .legsTat and .armsTat / link them to prosthetic*/ <<if $activeSlave.amp != -1 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "basicL"}) != -1>> <<link "Attach <<= addA(setup.prosthetics.basicL.name)>>" "Prosthetics Configuration">> - <<set $activeSlave.amp = -1, $prostheticsConfig = "basicPLimbs">> + <<set $activeSlave.amp = -1, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "basicPLimbs">> <</link>> <br> <</if>> <<if $activeSlave.amp != -2 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "sexL"}) != -1>> <<link "Attach <<= addA(setup.prosthetics.sexL.name)>>" "Prosthetics Configuration">> - <<set $activeSlave.amp = -2, $prostheticsConfig = "sexPLimbs">> + <<set $activeSlave.amp = -2, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "sexPLimbs">> <</link>> <br> <</if>> <<if $activeSlave.amp != -3 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "beautyL"}) != -1>> <<link "Attach <<= addA(setup.prosthetics.beautyL.name)>>" "Prosthetics Configuration">> - <<set $activeSlave.amp = -3, $prostheticsConfig = "beautyPLimbs">> + <<set $activeSlave.amp = -3, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "beautyPLimbs">> <</link>> <br> <</if>> <<if $activeSlave.amp != -4 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "combatL"}) != -1>> <<link "Attach <<= addA(setup.prosthetics.combatL.name)>>" "Prosthetics Configuration">> - <<set $activeSlave.amp = -4, $prostheticsConfig = "combatPLimbs">> + <<set $activeSlave.amp = -4, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "combatPLimbs">> <</link>> <br> <</if>> <<if $activeSlave.amp != -5 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "cyberneticL"}) != -1>> <<if $activeSlave.PLimb == 2>> <<link "Attach <<= addA(setup.prosthetics.cyberneticL.name)>>" "Prosthetics Configuration">> - <<set $activeSlave.amp = -5, $prostheticsConfig = "cyberPLimbs">> + <<set $activeSlave.amp = -5, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "cyberPLimbs">> <</link>> <<else>> // $He must have <<= addA(setup.prosthetics.interfaceP2.name)>> installed to attach <<= addA(setup.prosthetics.cyberneticL.name)>>. // @@ -409,7 +409,7 @@ Fit prosthetics to $him: <<case "removeLimbs">> <<set $prostheticsConfig = "main", $nextButton = "Continue", $nextLink = "Prosthetics Configuration">> - <<set $activeSlave.amp = 1>> + <<set $activeSlave.amp = 1, $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3>> Due to built-in safeties it is necessary to remove each limb separately, first releasing the lock and then waiting for automated seal release.<br> <<if ($activeSlave.devotion > 20)>> You instruct $him to lie down on the table and proceed to remove $his limbs. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>> with interest as you work.<<if ($activeSlave.devotion > 50)>> As you remove the last limb $he playfully wiggles $his stumps at you.<</if>> @@ -469,7 +469,7 @@ Fit prosthetics to $him: <<set _first = 0>> <</if>> <<link "Attach <<= addA(setup.prosthetics.basicL.name)>>">> - <<set $activeSlave.amp = -1, $prostheticsConfig = "basicPLimbs">> + <<set $activeSlave.amp = -1, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "basicPLimbs">> <<replace #attach>><br><br><<include "Prosthetics Configuration">><<set $nextLink = "Remote Surgery">><</replace>> <</link>> <br> @@ -480,7 +480,7 @@ Fit prosthetics to $him: <<set _first = 0>> <</if>> <<link "Attach <<= addA(setup.prosthetics.sexL.name)>>">> - <<set $activeSlave.amp = -2, $prostheticsConfig = "sexPLimbs">> + <<set $activeSlave.amp = -2, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "sexPLimbs">> <<replace #attach>><br><br><<include "Prosthetics Configuration">><<set $nextLink = "Remote Surgery">><</replace>> <</link>> <br> @@ -491,7 +491,7 @@ Fit prosthetics to $him: <<set _first = 0>> <</if>> <<link "Attach <<= addA(setup.prosthetics.beautyL.name)>>">> - <<set $activeSlave.amp = -3, $prostheticsConfig = "beautyPLimbs">> + <<set $activeSlave.amp = -3, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "beautyPLimbs">> <<replace #attach>><br><br><<include "Prosthetics Configuration">><<set $nextLink = "Remote Surgery">><</replace>> <</link>> <br> @@ -502,7 +502,7 @@ Fit prosthetics to $him: <<set _first = 0>> <</if>> <<link "Attach <<= addA(setup.prosthetics.combatL.name)>>">> - <<set $activeSlave.amp = -4, $prostheticsConfig = "combatPLimbs">> + <<set $activeSlave.amp = -4, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "combatPLimbs">> <<replace #attach>><br><br><<include "Prosthetics Configuration">><<set $nextLink = "Remote Surgery">><</replace>> <</link>> <br> @@ -514,7 +514,7 @@ Fit prosthetics to $him: <<set _first = 0>> <</if>> <<link "Attach <<= addA(setup.prosthetics.cyberneticL.name)>>" "Prosthetics Configuration">> - <<set $activeSlave.amp = -5, $prostheticsConfig = "cyberPLimbs">> + <<set $activeSlave.amp = -5, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "cyberPLimbs">> <<replace #attach>><br><br><<include "Prosthetics Configuration">><<set $nextLink = "Remote Surgery">><</replace>> <</link>> <</if>> diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js index c06bbbc84fa8b895d709a14fef58c517d6226b32..a9ea412c1350a322ea78a534724943870f3d878c 100644 --- a/src/js/DefaultRules.js +++ b/src/js/DefaultRules.js @@ -2851,7 +2851,10 @@ window.DefaultRules = (function() { } if ((rule.autoBrand === 1)) { if ((slave.health > -20)) { - if ( /* Normal slave: */ (!slave.amp && slave.earShape !== "none") || /* Amputated slave, but we're branding something else: */ (slave.amp && !["ankles", "calves", "thighs", "feet", "hands", "lower arms", "upper arms", "wrists"].includes(rule.brandTarget)) || /* earless slave, but we are branding something else */ (slave.earShape === "none" && rule.brandTarget !== "ears")) { + if (slave.earShape === "none" && rule.brandTarget !== "ears") { + let brandPlace = ""; + + // Brand location needs to be split into a left and right if (["ankles", "calves", "feet", "hands", "lower arms", "shoulders", "upper arms", "wrists", "cheeks", "ears", "buttocks", "breasts"].includes(rule.brandTarget)) { let left; let right; @@ -2893,31 +2896,92 @@ window.DefaultRules = (function() { right = "right breast"; } if (rule.brandDesign !== slave.brand[left] && rule.brandDesign !== slave.brand[right]) { - slave.brand[left] = rule.brandDesign; - slave.brand[right] = rule.brandDesign; - if ((slave.devotion < 18)) { - slave.devotion -= 10; - } - slave.trust -= 10; - slave.health -= 20; - r += `<br>${slave.slaveName} has been branded on both ${rule.brandTarget}, with <span class="gold">fear</span>${slave.devotion < 18 ? `, <span class="mediumorchid">regard,</span>` : ``} and <span class="red">health</span> consequences.`; + brandPlace = "both"; } else if (rule.brandDesign !== slave.brand[left]) { - slave.trust -= 5; - slave.health -= 10; - r += `<br>${slave.slaveName} has been branded on the ${left}, with <span class="gold">fear</span>${slave.devotion < 18 ? `, <span class="mediumorchid">regard,</span>` : ``} and <span class="red">health</span> consequences. Their ${right} already had this brand.`; + brandPlace = "left"; } else if (rule.brandDesign !== slave.brand[right]) { - slave.trust -= 5; - slave.health -= 10; - r += `<br>${slave.slaveName} has been branded on the ${right}, with <span class="gold">fear</span>${slave.devotion < 18 ? `, <span class="mediumorchid">regard,</span>` : ``} and <span class="red">health</span> consequences. Their ${left} already had this brand.`; + brandPlace = "right"; + } + + // Check for amputations: + if (["upper arms", "lower arms", "wrists", "hands"].includes(rule.brandTarget)) { + // Arms + if (!hasLimb(slave, "left arm") && !hasLimb(slave, "right arm")) { + brandPlace = ""; + } else if (!hasLimb(slave, "left arm")) { + if (brandPlace === "both") { + brandPlace = "right"; + } if (brandPlace === "left") { + brandPlace = ""; + } + } else if (!hasLimb(slave, "right arm")) { + if (brandPlace === "both") { + brandPlace = "left"; + } if (brandPlace === "right") { + brandPlace = ""; + } + } + } else if (["thighs", "calves", "ankles", "feet"].includes(rule.brandTarget)) { + // Legs + if (!hasLimb(slave, "left leg") && !hasLimb(slave, "right leg")) { + brandPlace = ""; + } else if (!hasLimb(slave, "left leg")) { + if (brandPlace === "both") { + brandPlace = "right"; + } if (brandPlace === "left") { + brandPlace = ""; + } + } else if (!hasLimb(slave, "right leg")) { + if (brandPlace === "both") { + brandPlace = "left"; + } if (brandPlace === "right") { + brandPlace = ""; + } + } } + + // Brand location does NOT need to be split into a left and right, (and may or may not contain left OR right already.) } else if (slave.brand[rule.brandTarget] !== rule.brandDesign) { - slave.brand[rule.brandTarget] = rule.brandDesign; - if ((slave.devotion < 18)) { + if ( + (!hasLimb(slave, "left arm") && ["left upper arm", "left lower arm", "left wrist", "left hand"].includes(rule.brandTarget)) || + (!hasLimb(slave, "right arm") && ["right upper arm", "right lower arm", "right wrist", "right hand"].includes(rule.brandTarget)) || + (!hasLimb(slave, "left leg") && ["left thigh", "left calf", "left ankle", "left foot"].includes(rule.brandTarget)) || + (!hasLimb(slave, "right leg") && ["right thigh", "right calf", "right ankle", "rightfoot"].includes(rule.brandTarget)) + ) { + brandPlace = ""; + } else { + brandPlace = "anywhere"; + } + } + + // Apply brands: + if (["left", "right", "anywhere"].includes(brandPlace)) { + if (slave.devotion < 18) { slave.devotion -= 5; } slave.trust -= 5; slave.health -= 10; - r += `<br>${slave.slaveName} has been branded, with <span class="gold">fear</span>${slave.devotion < 18 ? `, <span class="mediumorchid">regard,</span>` : ``} and <span class="red">health</span> consequences.`; + r += `<br>${slave.slaveName} has been branded on the `; + if (brandPlace === "left") { + slave.brand[left] = rule.brandDesign; + r += `${left}`; + } else if (brandPlace === "right") { + slave.brand[right] = rule.brandDesign; + r += `${right}`; + } else if (brandPlace === "anywhere") { + slave.brand[rule.brandTarget] = rule.brandDesign; + r += `${rule.brandTarget}`; + } + r += `, with <span class="gold">fear</span>${slave.devotion < 18 ? `, <span class="mediumorchid">regard,</span>` : ``} and <span class="red">health</span> consequences.`; + } else if (brandPlace === "both") { + slave.brand[left] = rule.brandDesign; + slave.brand[right] = rule.brandDesign; + if ((slave.devotion < 18)) { + slave.devotion -= 10; + } + slave.trust -= 10; + slave.health -= 20; + r += `<br>${slave.slaveName} has been branded on both ${rule.brandTarget}, with <span class="gold">fear</span>${slave.devotion < 18 ? `, <span class="mediumorchid">regard,</span>` : ``} and <span class="red">health</span> consequences.`; } } } diff --git a/src/js/assayJS.js b/src/js/assayJS.js index 403b729737804eee5027ac254f09defe0d374081..3b4aee4b3b5206c91871e270e5a48d258bd06436 100644 --- a/src/js/assayJS.js +++ b/src/js/assayJS.js @@ -419,6 +419,19 @@ App.Utils.Pronouns = class { get sister() { return this.noun === "girl" ? "sister" : "brother"; } get Sister() { return capFirstChar(this.sister); } + + get wife() { return this.noun === "girl" ? "wife" : "wife"; } + get Wife() { return capFirstChar(this.wife); } + get wives() { return this.noun === "girl" ? "wives" : "wives"; } + get Wives() { return capFirstChar(this.wives); } + + /* more accurately */ + /** + get wife() { return this.noun === "girl" ? "wife" : "husband"; } + get Wife() { return capFirstChar(this.wife); } + get wives() { return this.noun === "girl" ? "wives" : "husbands"; } + get Wives() { return capFirstChar(this.wives); } + */ /** * @param {string} suffix * @returns {Object.<string, string>} diff --git a/src/js/datatypeCleanupJS.js b/src/js/datatypeCleanupJS.js index 1150685937bf1c80a6aa700a174e05f24bc231c3..f9974b18c51b9acc877e3d13061921d17dbb08b5 100644 --- a/src/js/datatypeCleanupJS.js +++ b/src/js/datatypeCleanupJS.js @@ -979,6 +979,10 @@ window.SlaveDatatypeCleanup = (function SlaveDatatypeCleanup() { } slave.heels = Math.clamp(+slave.heels, 0, 1) || 0; slave.amp = Math.clamp(+slave.amp, -5, 1) || 0; + if (slave.amp == 1) { + slave.missingArms = 3; + slave.missingLegs = 3; + } slave.PLimb = Math.clamp(+slave.PLimb, 0, 1) || 0; if (slave.voice !== 0) { slave.voice = Math.clamp(+slave.voice, 0, 3) || 1; diff --git a/src/js/economyJS.js b/src/js/economyJS.js index da6d8c8b4507b4df4d0a9867807b6cadc87ca411..b717b1ef6680f2c0e65a31506c51d1da9caaae6e 100644 --- a/src/js/economyJS.js +++ b/src/js/economyJS.js @@ -957,7 +957,7 @@ window.slaveJobValues = function() { V.DJRepBonus = 0; if (V.DJ.relationship === -3 && V.DJ.devotion > 50) { V.DJRepBonus += 0.1; - // $He tries $his best to be your energetic, cheerful wife. + // $He tries $his best to be your energetic, cheerful $wife. } if (V.DJ.eyes <= -2) { V.DJRepBonus += 0.15; diff --git a/src/js/extendedFamilyModeJS.js b/src/js/extendedFamilyModeJS.js index 303c852f7ee4d784912a2cb0ff2d4d3a1e530678..f6b912922e2d06e641bdb93fd21a7f09a2d6c867 100644 --- a/src/js/extendedFamilyModeJS.js +++ b/src/js/extendedFamilyModeJS.js @@ -246,25 +246,6 @@ window.mutualChildren = function(slave1, slave2, slaves) { }).length; }; -/** - * @param {App.Entity.SlaveState} slave - * @returns {boolean} - */ -window.isSlaveAvailable = function(slave) { - if (!slave) { - return null; - } else if (slave.assignment === "be your agent") { - return false; - } else if (slave.assignment === "live with your agent") { - return false; - } else if (slave.assignment === "be confined in the arcade") { - return false; - } else if (slave.assignment === "work in the dairy" && State.variables.dairyRestraintsSetting >= 2) { - return false; - } - return true; -}; - /* OLD window.randomRelatedSlave = function(slave, filterFunction) { if(!slave || !SugarCube) { return undefined; } @@ -457,4 +438,4 @@ window.relativeTerm = } else { return "some unknown blood connection"; } - }; + }; \ No newline at end of file diff --git a/src/js/generateGenetics.js b/src/js/generateGenetics.js index f872ce1b403f07abc1f7eae493990f79a24a2927..fa9bad4e3a262834a07aeafac86da44fade37957 100644 --- a/src/js/generateGenetics.js +++ b/src/js/generateGenetics.js @@ -571,7 +571,7 @@ window.generateGenetics = (function() { smarts = fuzzy(father.intelligence, mother.intelligence); // player is considered "good stock" while (smarts < 50) { - fuzzy(father.intelligence, mother.intelligence); + smarts = fuzzy(father.intelligence, mother.intelligence); } } else { smarts = Math.clamp(normalRandInt(75, 12.5), -100, 100); diff --git a/src/js/generateMarketSlave.js b/src/js/generateMarketSlave.js index 60f767b76ab1513489a2b2001b3146d92eac0da8..fbc3583c05bd3a65bb12eaea9d70b03b69287f5d 100644 --- a/src/js/generateMarketSlave.js +++ b/src/js/generateMarketSlave.js @@ -438,6 +438,8 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { if (V.corpSpecAmputee === 1) { r += `The corporation removes all limbs from its slaves. `; V.activeSlave.amp = 1; + V.activeSlave.missingArms = 3; + V.activeSlave.missingLegs = 3; } if (V.corpSpecMilk === 1) { r += `The corporation provides naturally lactating slaves `; @@ -940,6 +942,9 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } if (V.activeSlave.amp !== 1) { V.activeSlave.heels = jsEither([0, 0, 0, 0, 0, 1, 1]); + } else { + V.activeSlave.missingArms = 3; + V.activeSlave.missingLegs = 3; } V.activeSlave.voice = jsRandom(0, 2); V.activeSlave.face = jsRandom(-100, 20); @@ -995,6 +1000,9 @@ window.generateMarketSlave = function(market = "kidnappers", numArcology = 1) { } if (V.activeSlave.amp !== 1) { V.activeSlave.heels = 1; + } else { + V.activeSlave.missingArms = 3; + V.activeSlave.missingLegs = 3; } V.activeSlave.voice = 0; V.activeSlave.face = jsRandom(-100, -50); diff --git a/src/js/playerJS.js b/src/js/playerJS.js index 05268730a6534f70519b7f0f798bf35209701b8c..d1eca8a8582d66929f61d692983d22f82f7254e5 100644 --- a/src/js/playerJS.js +++ b/src/js/playerJS.js @@ -1,3 +1,24 @@ +/** + * Determines whether PC is fertile + * @param {object} PC + * @returns {boolean} + */ +window.isPlayerFertile = function(PC) { + if (!PC) { + return null; + } else if (PC.preg !== 0) { + /* currently pregnant, sterile, menopausal or on contraceptives */ + return false; + } else if (PC.pregWeek < 0) { + /* postpartum */ + return false; + } else if (PC.vagina === 1) { + return true; + } else { + return false; + } +}; + /** * Helper function returning PC's title * @returns {string} diff --git a/src/js/pregJS.js b/src/js/pregJS.js index 8d2220dcc0c433ee4d33e73e591792f108aba20b..b58e361c980f0f414c422a69f8e10e1378c58c02 100644 --- a/src/js/pregJS.js +++ b/src/js/pregJS.js @@ -454,8 +454,22 @@ window.knockMeUp = function(target, chance, hole, fatherID, displayOverride) { } else { r += `<span class="lime">${He} has become pregnant.</span>`; } + if (target.geneticQuirks.superfetation === 2 && target.womb.length > 0) { + if (V.seeHyperPreg === 1) { + target.fertPeak = 1; + } else { + target.fertPeak = 4; + } + } } else { target.pregKnown = 1; + if (target.geneticQuirks.superfetation === 2 && target.womb.length > 0) { + if (V.seeHyperPreg === 1) { + target.fertPeak = 1; + } else { + target.fertPeak = 4; + } + } } } else if (hole === 2) { if (target.pregWeek <= 0) { diff --git a/src/js/relationshipChecks.js b/src/js/relationshipChecks.js index 79e936e38a450cbaf9aeecb6e9d1dd9d34cf0dcd..284e052c6676cef93d5fa91ec696178b362a0a38 100644 --- a/src/js/relationshipChecks.js +++ b/src/js/relationshipChecks.js @@ -26,7 +26,7 @@ window.relationshipTerm = function(id) { } else if (id.relationship === 4) { return "lover"; } else { - return "slave wife"; + return `slave ${getPronouns(id).wife}`; } }; @@ -44,6 +44,6 @@ window.relationshipTermShort = function(id) { } else if (id.relationship === 4) { return "lover"; } else { - return "wife"; + return `${getPronouns(id).wife}`; } }; diff --git a/src/js/slaveStatsChecker.js b/src/js/slaveStatsChecker.js index f22b41c2031223b8a27eb1eaf4e73513f15b4eb7..1cf9a1e5b857cf2c7a70702495d5d1c7d22907f3 100644 --- a/src/js/slaveStatsChecker.js +++ b/src/js/slaveStatsChecker.js @@ -1,3 +1,33 @@ +/** + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.isSexuallyPure = function(slave) { + if (!slave) { + return null; + } + return (slave.vagina < 1 && slave.anus < 1 && !slave.counter.anal && !slave.counter.vaginal && !slave.counter.oral && !slave.counter.mammary && !slave.counter.penetrative && !slave.counter.publicUse); +}; + +/** + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.isSlaveAvailable = function(slave) { + if (!slave) { + return null; + } else if (slave.assignment === "be your agent") { + return false; + } else if (slave.assignment === "live with your agent") { + return false; + } else if (slave.assignment === "be confined in the arcade") { + return false; + } else if (slave.assignment === "work in the dairy" && State.variables.dairyRestraintsSetting >= 2) { + return false; + } + return true; +}; + window.SlaveStatsChecker = (function() { return { checkForLisp: hasLisp, @@ -167,11 +197,14 @@ window.SlaveStatsChecker = (function() { */ function scarScore(slave) { let score = 0; - const scars = Object.keys(slave.scar); - for (const bodypart of scars) { - const bodyparts = Object.keys(slave.scar[bodypart]); - for (const kind of bodyparts) { - score += slave.scar[bodypart][kind]; + let scars; + if (slave.hasOwnProperty("scar")) { /* For very old saves this may not be defined yet and blocks the save from loading. */ + scars = Object.keys(slave.scar); + for (const bodypart of scars) { + const bodyparts = Object.keys(slave.scar[bodypart]); + for (const kind of bodyparts) { + score += slave.scar[bodypart][kind]; + } } } return score; @@ -784,3 +817,259 @@ window.isVegetable = function(slave) { } return (slave.fetish === "mindbroken"); }; + + +/* limb checker */ + +/** + * True if slave has no limbs, neither natural nor prosthetic + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.isAmputee = function(slave) { + return slave.amp === 1; +}; + +/** + * True if slave has any natural limbs + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasAnyNaturalLimbs = function(slave) { + return slave.amp === 0; +}; + + +/** + * True if slave has any prosthetic limbs + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasAnyProstheticLimbs = function(slave) { + return slave.amp < 0; +}; + +/** + * True if slave has at least one leg + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasAnyLegs = function(slave) { + return slave.missingLegs < 3; +}; + +/** + * True if slave has at least one arm + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasAnyArms = function(slave) { + return slave.missingArms < 3; +}; + +/** + * True if slave has at least one leg and all are natural + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasAnyNaturalLegs = function(slave) { + return slave.amp === 0 && slave.missingLegs < 3; +}; + +/** + * True if slave has both legs + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasBothLegs = function(slave) { + return slave.missingLegs === 0; +}; + +/** + * True if slave has both arms + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasBothArms = function(slave) { + return slave.missingArms === 0; +}; + + +/** + * True if slave has both legs and they are natural + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasBothNaturalLegs = function(slave) { + return slave.amp === 0 && slave.missingLegs === 0; +}; + +/** + * True if slave has arms legs and they are natural + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasBothNaturalArms = function(slave) { + return slave.amp === 0 && slave.missingArms === 0; +}; + +/** + * True if slave has at least one leg and at least one arm. + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasLegAndArm = function(slave) { + return hasAnyLegs(slave) && hasAnyArms(slave); +}; + +/** + * True if slave has all limbs + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasAllLimbs = function(slave) { + return hasBothLegs(slave) && hasBothArms(slave); +}; + +/** + * True if slave has all limbs and all are natural + * + * @param {App.Entity.SlaveState} slave + * @returns {boolean} + */ +window.hasAllNaturalLimbs = function(slave) { + return hasBothNaturalLegs(slave) && hasBothNaturalArms(slave); +}; + +/** + * Returns a very short description of the specified limb ID. Uses new limb IDs. + * + * @param {number} id + * @returns {boolean} + */ +window.idToDescription = function(id) { + switch (id) { + case 0: + return "amputated"; + case 1: + return "healthy"; + case 2: + return "modern prosthetic"; + case 3: + return "advanced, sex-focused prosthetic"; + case 4: + return "advanced, beauty-focused prosthetic"; + case 5: + return "advanced, combat-focused prosthetic"; + case 6: + return "highly advanced cybernetic"; + default: + return "unknown id: " + id; + } +}; + + +/** + * Returns count of specified limb type. Uses new limb IDs: + * 0: no limb + * 1: natural + * 2: basic + * 3: sex + * 4: beauty + * 5: combat + * 6: cybernetic + * + * @param {App.Entity.SlaveState} slave + * @param {number} id + * @returns {number} + */ +window.getLimbCount = function(slave, id) { + let oldID = (id - 1) * -1; + + if (oldID < 0) { + if (slave.amp === oldID) { + return 4; + } else { + return 0; + } + } + + let n = 0; + if (hasLimb(slave, "left arm")) { + n++; + } + if (hasLimb(slave, "right arm")) { + n++; + } + if (hasLimb(slave, "left leg")) { + n++; + } + if (hasLimb(slave, "right leg")) { + n++; + } + + return n; +}; + + +/** + * True if slave has specified limb + * + * @param {App.Entity.SlaveState} slave + * @param {String} limb + * @returns {boolean} + */ +window.hasLimb = function(slave, limb) { + switch (limb) { + case "left arm": + return slave.missingArms !== 1 && slave.missingArms !== 3; + case "right arm": + return slave.missingArms < 2; + case "left leg": + return slave.missingLegs !== 1 && slave.missingLegs !== 3; + case "right leg": + return slave.missingLegs < 2; + default: + // eslint-disable-next-line no-console + console.error(`Unknown limb` + limb); + } +}; + + +/** + * Returns limb ID of the specified limb. Uses new IDs. + * 0: no limb + * 1: natural + * 2: basic + * 3: sex + * 4: beauty + * 5: combat + * 6: cybernetic + * + * @param {App.Entity.SlaveState} slave + * @param {String} limb + * @returns {number} + */ +window.getLimbID = function(slave, limb) { + if (slave.amp < 0) { + return (slave.amp * -1) +1; + } + + if (hasLimb(slave, limb)) { + return 1; + } else { + return 0; + } +}; diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js index 8ba81753fddc1f22237a381147f8cd256ecef437..81110a4541c767d6b599aea6672307138526c898 100644 --- a/src/js/slaveSummaryWidgets.js +++ b/src/js/slaveSummaryWidgets.js @@ -3670,7 +3670,7 @@ window.SlaveSummaryUncached = (function() { } else if (slave.mother === -1) { res += `Your ${getPronouns(slave).daughter}`; if (slave.relationship === -3) { - res += ` & wife`; + res += ` & ${getPronouns(slave).wife}`; handled = 1; } else if (slave.relationship === -2) { res += ` & lover`; @@ -3694,7 +3694,7 @@ window.SlaveSummaryUncached = (function() { } else if (slave.father === -1 && slave.mother !== -1) { res += `Your ${getPronouns(slave).daughter}`; if (slave.relationship === -3) { - res += ` & wife`; + res += ` & ${getPronouns(slave).wife}`; handled = 1; } else if (slave.relationship === -2) { res += ` & lover`; @@ -3750,7 +3750,7 @@ window.SlaveSummaryUncached = (function() { res += ` ${friendShipShort}`; } } else if (slave.relationship === -3 && slave.mother !== -1 && slave.father !== -1) { - res += `Your wife`; + res += `Your ${getPronouns(slave).wife}`; } else if (slave.relationship === -2) { res += `E Bonded`; } else if (slave.relationship === -1) { @@ -3783,7 +3783,7 @@ window.SlaveSummaryUncached = (function() { res += ` ${friendship}`; } } else if (slave.relationship === -3) { - res += `Your wife`; + res += `Your ${getPronouns(slave).wife}`; } else if (slave.relationship === -2) { res += `E Bonded`; } else if (slave.relationship === -1) { @@ -3847,7 +3847,7 @@ window.SlaveSummaryUncached = (function() { } else if (slave.mother === -1) { addText(block, `Your `); if (slave.relationship === -3) { - makeSpan(block, `${getPronouns(slave).daughter} and wife.`, "lightgreen"); + makeSpan(block, `${getPronouns(slave).daughter} and ${getPronouns(slave).wife}.`, "lightgreen"); handled = 1; } else if (slave.relationship === -2) { makeSpan(block, `${getPronouns(slave).daughter} and lover.`, "lightgreen"); @@ -3874,7 +3874,7 @@ window.SlaveSummaryUncached = (function() { } else if (slave.father === -1 && slave.father !== slave.mother) { addText(block, `Your `); if (slave.relationship === -3) { - makeSpan(block, `${getPronouns(slave).daughter} and wife.`, "lightgreen"); + makeSpan(block, `${getPronouns(slave).daughter} and ${getPronouns(slave).wife}.`, "lightgreen"); handled = 1; } else if (slave.relationship === -2) { makeSpan(block, `${getPronouns(slave).daughter} and lover.`, "lightgreen"); @@ -3947,7 +3947,7 @@ window.SlaveSummaryUncached = (function() { makeSpan(block, `${friendship}.`, "lightgreen"); } } else if (slave.relationship === -3 && slave.mother !== -1 && slave.father !== -1) { - makeSpan(block, "Your wife.", "lightgreen"); + makeSpan(block, `Your ${getPronouns(slave).wife}.`, "lightgreen"); } else if (slave.relationship === -2) { makeSpan(block, "Emotionally bonded to you.", "lightgreen"); } else if (slave.relationship === -1) { @@ -3989,7 +3989,7 @@ window.SlaveSummaryUncached = (function() { makeSpan(block, `${friendship}.`, "lightgreen"); } } else if (slave.relationship === -3) { - makeSpan(block, "Your wife.", "lightgreen"); + makeSpan(block, `Your ${getPronouns(slave).wife}.`, "lightgreen"); } else if (slave.relationship === -2) { makeSpan(block, "Emotionally bonded to you.", "lightgreen"); } else if (slave.relationship === -1) { diff --git a/src/js/storyJS.js b/src/js/storyJS.js index 1b7681ac222e460a421d75ea690a24371ec3eaf7..2ae409b2ffad8f23bcab5291b500473045b96162 100644 --- a/src/js/storyJS.js +++ b/src/js/storyJS.js @@ -22,17 +22,6 @@ window.variableAsNumber = function(x, minValue, maxValue, defaultValue = 0) { return x; }; -/** - * @param {App.Entity.SlaveState} slave - * @returns {boolean} - */ -window.isSexuallyPure = function(slave) { - if (!slave) { - return null; - } - return (slave.vagina < 1 && slave.anus < 1 && !slave.counter.anal && !slave.counter.vaginal && !slave.counter.oral && !slave.counter.mammary && !slave.counter.penetrative && !slave.counter.publicUse); -}; - if (typeof interpolate === "undefined") { const interpolate = function(x0, y0, x1, y1, x) { if (x <= x0) { @@ -159,7 +148,6 @@ window.isPlayerFertile = function(PC) { return false; } }; - /** * @param {App.Entity.SlaveState} slave * @returns {string|number} diff --git a/src/js/utilJS.js b/src/js/utilJS.js index 5de5fe3d111ae8dc264c9bfabc2b1e1b6d010081..75204bdec1b0d0c095c547100c9fddd1de291173 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -880,7 +880,6 @@ window.Intelligence = (function() { config: _config, }; })(); - /* A categorizer is used to "slice" a value range into distinct categories in an efficient manner. @@ -939,7 +938,7 @@ window.Categorizer.prototype.cat = function(val, def) { } // Record the value for the result's getter, if it is an object // and doesn't have the property yet - if (result === _.isObject(result)) { + if (typeof result === "object" && !isNaN(result)) { result.value = val; } return result; @@ -1135,8 +1134,12 @@ window.years = function(weeks) { * @param {any} x * @returns {boolean} */ -window.def = function(x) { - return typeof x !== "undefined"; +window.jsDef = function(x) { + if (typeof x !== "undefined") { + return true; + } else { + return false; + } }; /** @@ -1657,7 +1660,6 @@ window.induceLactation = function induceLactation(slave) { } return r; }; - window.ResearchLabStockPile = function() { const V = State.variables; return `__Prosthetics__ @@ -1865,7 +1867,7 @@ window.pronounReplacer = function(slavetext) { slavetext = "$He was once the princess of an old world kingdom up until $his loose habits caught up with $him and $he was exiled."; break; case "She was once the young trophy wife of a powerful man in the old world, but he sold her into slavery in revenge for her infidelity.": - slavetext = "$He was once the young trophy wife of a powerful man in the old world, but he sold $him into slavery in revenge for $his infidelity."; + slavetext = "$He was once the young trophy $wife of a powerful man in the old world, but he sold $him into slavery in revenge for $his infidelity."; break; case "She was raised in a radical slave school that treated her from a very young age, up to the point that she never experienced male puberty.": slavetext = "$He was raised in a radical slave school that treated $him from a very young age, up to the point that $he never experienced male puberty."; @@ -2247,36 +2249,6 @@ window.convertCareer = function(slave) { return job; }; - -window.HackingSkillMultiplier = function() { - const V = State.variables; - if (V.PC.hacking <= -100) { - return 1.5; - } else if (V.PC.hacking <= -75) { - return 1.35; - } else if (V.PC.hacking <= -50) { - return 1.25; - } else if (V.PC.hacking <= -25) { - return 1.15; - } else if (V.PC.hacking < 0) { - return 1.10; - } else if (V.PC.hacking === 0) { - return 1; - } else if (V.PC.hacking <= 10) { - return 0.97; - } else if (V.PC.hacking <= 25) { - return 0.95; - } else if (V.PC.hacking <= 50) { - return 0.90; - } else if (V.PC.hacking <= 75) { - return 0.85; - } else if (V.PC.hacking <= 100) { - return 0.80; - } else { - return 0.75; - } -}; - App.UI.tabbar = function() { return { openTab: openTab, @@ -2515,7 +2487,6 @@ window.SkillIncrease = (function() { slave.skill.oral += skillIncrease; return r; } - /* call as SkillIncrease.Vaginal() */ /** * @param {App.Entity.SlaveState} slave @@ -2641,6 +2612,35 @@ window.SkillIncrease = (function() { } })(); +window.HackingSkillMultiplier = function() { + const V = State.variables; + if (V.PC.hacking <= -100) { + return 1.5; + } else if (V.PC.hacking <= -75) { + return 1.35; + } else if (V.PC.hacking <= -50) { + return 1.25; + } else if (V.PC.hacking <= -25) { + return 1.15; + } else if (V.PC.hacking < 0) { + return 1.10; + } else if (V.PC.hacking === 0) { + return 1; + } else if (V.PC.hacking <= 10) { + return 0.97; + } else if (V.PC.hacking <= 25) { + return 0.95; + } else if (V.PC.hacking <= 50) { + return 0.90; + } else if (V.PC.hacking <= 75) { + return 0.85; + } else if (V.PC.hacking <= 100) { + return 0.80; + } else { + return 0.75; + } +}; + window.upgradeMultiplierArcology = function() { const V = State.variables; if (V.PC.career === "engineer" || (V.arcologies[0].FSRestartDecoration >= 100 && V.eugenicsFullControl === 0)) { @@ -2750,6 +2750,7 @@ window.randomCareer = function(slave) { } }; + /** * @param {App.Entity.SlaveState} slave */ @@ -3081,12 +3082,12 @@ App.Utils.setLocalPronouns = function(slave, suffix, pronouns) { pronouns = pronouns || [ // Object.getOwnPropertyNames(ps) ? 'he', 'him', 'his', 'himself', 'boy', 'He', 'Him', 'His', 'Himself', 'Boy', - 'man', 'men', 'shota', 'son', 'brother', - 'Men', 'Man', 'Shota', 'Son', 'Brother', + 'man', 'men', 'shota', 'son', 'brother', 'husband', 'husbands', + 'Men', 'Man', 'Shota', 'Son', 'Brother', 'Husband', 'Husbands', 'she', 'her', 'hers', 'herself', 'girl', 'She', 'Her', 'Hers', 'Herself', 'Girl', - 'woman', 'women', 'loli', 'daughter', 'sister', - 'Woman', 'Women', 'Loli', 'Daughter', 'Sister' + 'woman', 'women', 'loli', 'daughter', 'sister', 'wife', 'wives', + 'Woman', 'Women', 'Loli', 'Daughter', 'Sister', 'Wife', 'Wives' ]; const scope = pSuffix.length === 0 ? State.variables : State.temporary; diff --git a/src/js/walkPastJS.js b/src/js/walkPastJS.js index 7fa158e0724fa5b6a58c58924eff8d1b495e30d1..5d8a0051cd479f617aec1c7e4ec38ec437b8cf13 100644 --- a/src/js/walkPastJS.js +++ b/src/js/walkPastJS.js @@ -59,9 +59,8 @@ window.loverSlave = function(activeSlave) { if (V.seeRace === 1) { race = activeSlave.race; } else { race = ""; } let name = activeSlave.slaveName; const { - he, him, his, hers, himself, boy, He, His + he, him, his, hers, himself, boy, wife, He, His } = getPronouns(activeSlave); - let _partnerSlave = getSlave(activeSlave.relationshipTarget); let _fuckSeed = jsRandom(1, 100); let _seed = jsRandom(1, 100); @@ -70,7 +69,7 @@ window.loverSlave = function(activeSlave) { if (_partnerSlave !== undefined) { /* eslint-disable no-unused-vars */ const { - he2, him2, his2, hers2, himself2, boy2, He2, His2 + he2, him2, his2, hers2, himself2, boy2, wife2, He2, His2 } = getPronouns(_partnerSlave).appendSuffix('2'); /* /* eslint-enable no-unused-vars */ let race2; @@ -82,7 +81,15 @@ window.loverSlave = function(activeSlave) { } else if (activeSlave.relationship <= 4) { activeSlaveRel = "lover"; } else { - activeSlaveRel = "slave wife"; + activeSlaveRel = `slave ${wife}`; + } + let partnerSlaveRel; + if (activeSlave.relationship <= 3) { + partnerSlaveRel = "friend with benefits"; + } else if (activeSlave.relationship <= 4) { + partnerSlaveRel = "lover"; + } else { + partnerSlaveRel = `slave ${wife2}`; } t += `${name} and ${partnerName} are `; @@ -112,7 +119,7 @@ window.loverSlave = function(activeSlave) { } t += `with every appearance of enjoyment and love, since for them rubbing dicks inside another slave's pussy is what constitutes healthy sexual activity. ${partnerName} is on the bottom, and holds their victim atop ${him2} with ${partnerName}'s cock already hilted in her cunt so ${name} can force ${himself} inside as well. They enjoy the overstimulated girl's struggles.`; } else if (activeSlave.energy > 95) { - t += `having loud sex ${_fuckSpot}. ${name} is such a sexual addict that ${he} wants it all the time, and ${partnerName} does ${his2} best to help ${his} ${activeSlaveRel} get off. `; + t += `having loud sex ${_fuckSpot}. ${name} is such a sexual addict that ${he} wants it all the time, and ${partnerName} does ${his2} best to help ${his2} ${activeSlaveRel} get off. `; if (canPenetrate(activeSlave) && _fuckSeed > 50) { if (canDoVaginal(_partnerSlave)) { if (_partnerSlave.vagina === 0 && _partnerSlave.amp !== 1) { @@ -195,7 +202,7 @@ window.loverSlave = function(activeSlave) { if (_fuckSeed > 45 && (canPenetrate(activeSlave) && _partnerSlave.nipples === "fuckable")) { t += `taking advantage of ${partnerName}'s fuckable tits. The motion running through ${partnerName}'s breasts as ${he} humps is hypnotic.`; } else { - t += `how well ${partnerName}'s cock feels in ${his} fuckable tits. The motion running through ${name}'s breasts as ${his} ${activeSlaveRel} fucks ${him} is hypnotic.`; + t += `how well ${partnerName}'s cock feels in ${his} fuckable tits. The motion running through ${name}'s breasts as ${his} ${partnerSlaveRel} fucks ${him} is hypnotic.`; } } else { t += `snuggling rather sexually ${_fuckSpot}. ${name} loves having `; @@ -239,18 +246,18 @@ window.loverSlave = function(activeSlave) { } } else { if (_partnerSlave.dick > 4) { - t += `${name} is panting and writhing with the pain of taking ${his} ${activeSlaveRel}'s massive dick. ${partnerName} is doing ${his2} best to be gentle.`; + t += `${name} is panting and writhing with the pain of taking ${his} ${partnerSlaveRel}'s massive dick. ${partnerName} is doing ${his2} best to be gentle.`; } else if (_partnerSlave.dick > 2) { - t += `${name} is writhing with the mixed pain and pleasure of having ${his} tight ass stretched by ${his} ${activeSlaveRel}'s nice cock.`; + t += `${name} is writhing with the mixed pain and pleasure of having ${his} tight ass stretched by ${his} ${partnerSlaveRel}'s nice cock.`; } else { t += `${name}'s tight anus and ${partnerName}'s little dick work well together; ${name} can take it easily, and ${partnerName} gets to fuck a hole that's tight, even for ${him2}.`; } } } else if (_partnerSlave.dick > 1) { if (_partnerSlave.amp === 1) { - t += `a rimjob, since ${his} ${activeSlaveRel} is armless and `; + t += `a rimjob, since ${his} ${partnerSlaveRel} is armless and `; } else { - t += `a finger fuck, since ${his} ${activeSlaveRel} is `; + t += `a finger fuck, since ${his} ${partnerSlaveRel} is `; } if (_partnerSlave.dick > 6) { t += `too big to fit.`; @@ -275,9 +282,9 @@ window.loverSlave = function(activeSlave) { } } else { t += `a strap-on up the butt, doggy style. ${partnerName} is using a `; - if (activeSlave.anus > 2) { + if (_partnerSlave.anus > 2) { t += `massive fake phallus to satisfy ${his} ${activeSlaveRel}'s gaping hole.`; - } else if (activeSlave.anus > 1) { + } else if (_partnerSlave.anus > 1) { t += `decent-sized fake phallus to stretch ${his} ${activeSlaveRel}'s asshole.`; } else { t += `small fake phallus to gently fuck ${his} ${activeSlaveRel}'s tight anus.`; @@ -295,48 +302,48 @@ window.loverSlave = function(activeSlave) { t += `They're lying down to 69 comfortably, `; if (_partnerSlave.chastityPenis !== 1 && _partnerSlave.dick > 0) { if (canPenetrate(_partnerSlave)) { - t += `with ${name} hungrily sucking ${his} ${activeSlaveRel}'s turgid cock.`; + t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s turgid cock.`; } else if (_partnerSlave.dick > 7 && activeSlave.amp !== 1) { - t += `with ${name} hungrily sucking ${his} ${activeSlaveRel}'s fat cock. ${He} is milking the oversized beast as best ${he} can in an effort to draw out a nice, big load of ${his2} cum.`; + t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s fat cock. ${He} is milking the oversized beast as best ${he} can in an effort to draw out a nice, big load of ${his2} cum.`; } else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && _partnerSlave.prostate > 0 && activeSlave.amp !== 1) { - t += `with ${name} hungrily sucking ${his} ${activeSlaveRel}'s limp cock. ${He} has a finger up poor impotent ${partnerName}'s butt to stimulate ${his2} prostate so ${he2} can cum for ${him}.`; + t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger up poor impotent ${partnerName}'s butt to stimulate ${his2} prostate so ${he2} can cum for ${him}.`; } else if (_partnerSlave.scrotum > 0 && activeSlave.amp !== 1) { - t += `with ${name} hungrily sucking ${his} ${activeSlaveRel}'s limp cock. ${He} is massaging ${his2} balls so ${he2} can cum for ${him}.`; + t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} is massaging ${his2} balls so ${he2} can cum for ${him}.`; } else if (activeSlave.amp !== 1) { - t += `with ${name} hungrily sucking ${his} ${activeSlaveRel}'s limp cock. ${He} has a finger massaging poor impotent ${partnerName}'s perineum in the hope of stimulating ${him2} so ${he2} can cum for ${him}.`; + t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger massaging poor impotent ${partnerName}'s perineum in the hope of stimulating ${him2} so ${he2} can cum for ${him}.`; } else { - t += `with ${name} hungrily sucking ${his} ${activeSlaveRel}'s limp cock in the hopes ${he} can coax something out.`; + t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock in the hopes ${he} can coax something out.`; } } else if (_partnerSlave.balls > 0) { - t += `with ${name} hungrily sucking the little hole on ${his} ${activeSlaveRel}'s crotch that ${he2} squirts cum from.`; + t += `with ${name} hungrily sucking the little hole on ${his} ${partnerSlaveRel}'s crotch that ${he2} squirts cum from.`; } else { - t += `and ${name} is sating ${his} oral fixation for the moment by eagerly polishing ${his} ${activeSlaveRel}'s pearl.`; + t += `and ${name} is sating ${his} oral fixation for the moment by eagerly polishing ${his} ${partnerSlaveRel}'s pearl.`; } } else if ((_partnerSlave.chastityPenis !== 1 && _partnerSlave.dick > 0) || canDoVaginal(_partnerSlave)) { t += `${name} has ${his} face to ${partnerName}'s crotch and is `; if (_partnerSlave.chastityPenis !== 1 && _partnerSlave.dick > 0) { if (canPenetrate(_partnerSlave)) { - t += `hungrily sucking ${his} ${activeSlaveRel}'s turgid cock.`; + t += `hungrily sucking ${his} ${partnerSlaveRel}'s turgid cock.`; } else if (_partnerSlave.dick > 7 && activeSlave.amp !== 1) { - t += `hungrily sucking ${his} ${activeSlaveRel}'s fat cock. ${He} is milking the oversized beast as best ${he} can in an effort to draw out a nice, big load of ${his2} cum.`; + t += `hungrily sucking ${his} ${partnerSlaveRel}'s fat cock. ${He} is milking the oversized beast as best ${he} can in an effort to draw out a nice, big load of ${his2} cum.`; } else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && _partnerSlave.prostate > 0 && activeSlave.amp !== 1) { - t += `hungrily sucking ${his} ${activeSlaveRel}'s limp cock. ${He} has a finger up poor impotent ${partnerName}'s butt to stimulate ${his2} prostate so ${he2} can cum for ${him}.`; + t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger up poor impotent ${partnerName}'s butt to stimulate ${his2} prostate so ${he2} can cum for ${him}.`; } else if (_partnerSlave.scrotum > 0 && activeSlave.amp !== 1) { - t += `hungrily sucking ${his} ${activeSlaveRel}'s limp cock. ${He} is massaging ${his2} balls so ${he2} can cum for ${him}.`; + t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} is massaging ${his2} balls so ${he2} can cum for ${him}.`; } else if (activeSlave.amp !== 1) { - t += `hungrily sucking ${his} ${activeSlaveRel}'s limp cock. ${He} has a finger massaging poor impotent ${partnerName}'s perineum in the hope of stimulating ${him2} so ${he2} can cum for ${him}.`; + t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger massaging poor impotent ${partnerName}'s perineum in the hope of stimulating ${him2} so ${he2} can cum for ${him}.`; } else { - t += `hungrily sucking ${his} ${activeSlaveRel}'s limp cock in the hopes ${he} can coax something out.`; + t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock in the hopes ${he} can coax something out.`; } } else if (_partnerSlave.balls > 0) { - t += `hungrily sucking the little hole on ${his} ${activeSlaveRel}'s crotch that ${he2} squirts cum from.`; + t += `hungrily sucking the little hole on ${his} ${partnerSlaveRel}'s crotch that ${he2} squirts cum from.`; } else { - t += `is sating ${his} oral fixation for the moment by eagerly polishing ${his} ${activeSlaveRel}'s pearl.`; + t += `is sating ${his} oral fixation for the moment by eagerly polishing ${his} ${partnerSlaveRel}'s pearl.`; } } else if ( _partnerSlave.balls > 0) { - t += `${name} is eagerly lapping up ${his} ${activeSlaveRel}'s most recent load of cum.`; + t += `${name} is eagerly lapping up ${his} ${partnerSlaveRel}'s most recent load of cum.`; } else if ( activeSlave.balls > 0) { - t += `${name} is locking lips with ${his} ${activeSlaveRel} after ${he2} just finished licking up all ${his} cum to share it with ${him}.`; + t += `${name} is locking lips with ${his} ${partnerSlaveRel} after ${he2} just finished licking up all ${his} cum to share it with ${him}.`; } else { t += `They have locked lips and are enthusiastically making out.`; } @@ -888,7 +895,7 @@ window.loverSlave = function(activeSlave) { } else { t += `on ${name}'s bedroll `; } - t += `${_fuckSpot}, having gentle anal sex while spooning. ${name} is enjoying ${partnerName}'s ass, and is doing ${his} best to ensure ${his} ${activeSlaveRel} enjoys being buttfucked. ${He}'s nibbling ${his} ${activeSlaveRel}'s `; + t += `${_fuckSpot}, having gentle anal sex while spooning. ${name} is enjoying ${partnerName}'s ass, and is doing ${his} best to ensure ${his} ${partnerSlaveRel} enjoys being buttfucked. ${He}'s nibbling ${his} ${partnerSlaveRel}'s `; if (_partnerSlave.earShape !== "none") { t +=`ears and `; } @@ -910,7 +917,7 @@ window.loverSlave = function(activeSlave) { } else { t += `on ${name}'s bedroll `; } - t += `${_fuckSpot}, spooning while ${name} gently rubs ${his} cock between ${partnerName}'s thighs, pressed tightly together. Since ${partnerName} is a virgin, this is the closest they can come to penetrative intercourse, but ${name} is enjoying ${partnerName}'s body anyway, and is doing ${his} best to ensure ${his} ${activeSlaveRel} enjoys ${himself2}. ${He}'s nibbling ${his} ${activeSlaveRel}'s `; + t += `${_fuckSpot}, spooning while ${name} gently rubs ${his} cock between ${partnerName}'s thighs, pressed tightly together. Since ${partnerName} is a virgin, this is the closest they can come to penetrative intercourse, but ${name} is enjoying ${partnerName}'s body anyway, and is doing ${his} best to ensure ${his} ${partnerSlaveRel} enjoys ${himself2}. ${He}'s nibbling ${his} ${partnerSlaveRel}'s `; if (_partnerSlave.earShape !== "none") { t +=`ears and `; } @@ -923,7 +930,7 @@ window.loverSlave = function(activeSlave) { } else { t += `on ${name}'s bedroll `; } - t += `${_fuckSpot}, with ${partnerName} down on ${his2} knees in front of ${name}. From behind ${partnerName} it looks like ${he2}'s giving ${his2} ${activeSlaveRel} a conventional, if enthusiastic, blowjob. Only on closer inspection does it become clear how unusual the oral is: ${name} has such a huge clit that ${his} ${activeSlaveRel} can suck ${him} off just like it were a penis.`; + t += `${_fuckSpot}, with ${partnerName} down on ${his2} knees in front of ${name}. From behind ${partnerName} it looks like ${he2}'s giving ${his2} ${activeSlaveRel} a conventional, if enthusiastic, blowjob. Only on closer inspection does it become clear how unusual the oral is: ${name} has such a huge clit that ${his} ${partnerSlaveRel} can suck ${him} off just like it were a penis.`; } else if (_partnerSlave.vagina > 0 && canDoVaginal(_partnerSlave) && _partnerSlave.amp !== 1 && (activeSlave.belly + _partnerSlave.belly < 10000)) { if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) { t += `in bed `; @@ -947,7 +954,7 @@ window.loverSlave = function(activeSlave) { } else { t += `on ${name}'s bedroll `; } - t += `${_fuckSpot}, having gentle anal sex while spooning. ${name} is enjoying penetrating ${partnerName}'s ass with a strap-on, and is doing ${his} best to ensure ${his} ${activeSlaveRel} enjoys being buttfucked. ${He}'s nibbling ${his} ${activeSlaveRel}'s `; + t += `${_fuckSpot}, having gentle anal sex while spooning. ${name} is enjoying penetrating ${partnerName}'s ass with a strap-on, and is doing ${his} best to ensure ${his} ${partnerSlaveRel} enjoys being buttfucked. ${He}'s nibbling ${his} ${partnerSlaveRel}'s `; if (_partnerSlave.earShape !== "none") { t +=`ears and `; } @@ -1022,7 +1029,7 @@ window.loverSlave = function(activeSlave) { t += ` as a pillow.`; break; case "cumslut": - t += `sleeping in bed together. ${name} is spooning ${his} ${activeSlaveRel}, ${his} head nestled alongside ${partnerName}'s, ${his} `; + t += `sleeping in bed together. ${name} is spooning ${his} ${partnerSlaveRel}, ${his} head nestled alongside ${partnerName}'s, ${his} `; if (activeSlave.lips > 95) { t += `massive `; } else if (activeSlave.lips > 70) { @@ -1039,11 +1046,11 @@ window.loverSlave = function(activeSlave) { case "submissive": case "masochist": case "humiliation": - t += `sleeping in bed together. ${name} is being spooned by ${his} ${activeSlaveRel}, smiling peacefully at being held.`; + t += `sleeping in bed together. ${name} is being spooned by ${his} ${partnerSlaveRel}, smiling peacefully at being held.`; break; case "dom": case "sadist": - t += `sleeping in bed together. ${name} is spooning ${his} ${activeSlaveRel} possessively`; + t += `sleeping in bed together. ${name} is spooning ${his} ${partnerSlaveRel} possessively`; if (activeSlave.amp !== 1) { t += `, and even in ${his} sleep, has a proprietary hand on ${partnerName}'s `; if (_partnerSlave.balls > 0) { @@ -1063,24 +1070,24 @@ window.loverSlave = function(activeSlave) { if (activeSlave.belly >= 5000 && _partnerSlave.belly >= 5000) { t += `They are pressed as close as they can be with their rounded middles in the way.`; } else if (activeSlave.belly >= 5000) { - t += `${name} is spooning ${his} ${activeSlaveRel} possessively, ${his} rounded belly pushing into ${his2} back.`; + t += `${name} is spooning ${his} ${partnerSlaveRel} possessively, ${his} rounded belly pushing into ${his2} back.`; } else if (_partnerSlave.belly >= 5000) { - t += `${name} is spooning ${his} ${activeSlaveRel} possessively`; + t += `${name} is spooning ${his} ${partnerSlaveRel} possessively`; if (activeSlave.amp !== 1) { t += `, and even in ${his} sleep, has a proprietary hand on ${partnerName}'s belly`; } t += `.`; } else { - t += `${name} is being spooned by ${his} ${activeSlaveRel}, smiling peacefully at being held.`; + t += `${name} is being spooned by ${his} ${partnerSlaveRel}, smiling peacefully at being held.`; } break; } } else if (_partnerSlave.dick > 6 && activeSlave.amp !== 1 && _fuckSeed > 30) { - t += `sleeping in bed together. ${name} is cuddled up close to ${partnerName}, and is cradling ${his} ${activeSlaveRel}'s enormous, soft cock with one hand.`; + t += `sleeping in bed together. ${name} is cuddled up close to ${partnerName}, and is cradling ${his} ${partnerSlaveRel}'s enormous, soft cock with one hand.`; } else if (activeSlave.height > _partnerSlave.height + 10) { - t += `sleeping in bed together, with the taller ${name} curled around ${his} little ${activeSlaveRel}.`; + t += `sleeping in bed together, with the taller ${name} curled around ${his} little ${partnerSlaveRel}.`; } else if (_partnerSlave.height > activeSlave.height + 10) { - t += `sleeping in bed together, with the shorter ${name} curled under ${his} ${activeSlaveRel}.`; + t += `sleeping in bed together, with the shorter ${name} curled under ${his} ${partnerSlaveRel}.`; } else if (activeSlave.amp === 1) { t += `sleeping in bed together; ${partnerName} is using ${his2} limbless ${activeSlaveRel} as a pillow.`; } else if (_partnerSlave.amp !== 1) { @@ -1094,24 +1101,24 @@ window.loverSlave = function(activeSlave) { case "confident": t += `finishing up a meal together. ${name} `; if (canTalk(activeSlave) && canHear(_partnerSlave)) { - t += `is concluding a story for ${his} ${activeSlaveRel}, ${his} clear confident voice ringing as ${he} relates a slight.`; + t += `is concluding a story for ${his} ${partnerSlaveRel}, ${his} clear confident voice ringing as ${he} relates a slight.`; } else { - t += `is boasting to ${his} ${activeSlaveRel}, with ${partnerName} nodding in agreement.`; + t += `is boasting to ${his} ${partnerSlaveRel}, with ${partnerName} nodding in agreement.`; } break; case "cutting": t += `seeing to their chores together. ${name} `; if (canTalk(activeSlave) && canHear(_partnerSlave)) { - t += `is making biting remarks about another one of your other slaves, with which ${his} ${activeSlaveRel} agrees tolerantly.`; + t += `is making biting remarks about another one of your other slaves, with which ${his} ${partnerSlaveRel} agrees tolerantly.`; } else { - t += `is making ${his} thoughts about another one of your other slaves clear to ${his} ${activeSlaveRel}.`; + t += `is making ${his} thoughts about another one of your other slaves clear to ${his} ${partnerSlaveRel}.`; } break; case "funny": if (canTalk(_partnerSlave) && canSee(_partnerSlave)) { - t += `seeing to their chores together. ${name} has just produced some unintentional slapstick humor, and ${his} ${activeSlaveRel} is giggling helplessly at ${his} antics.`; + t += `seeing to their chores together. ${name} has just produced some unintentional slapstick humor, and ${his} ${partnerSlaveRel} is giggling helplessly at ${his} antics.`; } else { - t += `getting ready for bed. ${name} is making ${his} ${activeSlaveRel} giggle `; + t += `getting ready for bed. ${name} is making ${his} ${partnerSlaveRel} giggle `; if (canTalk(_partnerSlave)) { t += `silently `; } else { @@ -1123,13 +1130,13 @@ window.loverSlave = function(activeSlave) { case "fitness": t += `have just woken up. `; if (activeSlave.amp !== 1) { - t += `${name} is doing ${his} morning crunches, and ${his} ${activeSlaveRel} is sleepily sitting on ${his} feet to help.`; + t += `${name} is doing ${his} morning crunches, and ${his} ${partnerSlaveRel} is sleepily sitting on ${his} feet to help.`; } else { - t += `${name} is doing ${his} morning exercises, and ${his} ${activeSlaveRel} is sleepily sitting nearby, providing moral support.`; + t += `${name} is doing ${his} morning exercises, and ${his} ${partnerSlaveRel} is sleepily sitting nearby, providing moral support.`; } break; case "insecure": - t += `have just woken up. ${name} is getting dressed when ${his} ${activeSlaveRel} `; + t += `have just woken up. ${name} is getting dressed when ${his} ${partnerSlaveRel} `; if ((canTalk(_partnerSlave) && canHear(activeSlave)) || (_partnerSlave.amp !== 1 && canSee(activeSlave))) { t += `pays ${him} a compliment; ${name} blushes and gives ${partnerName} a kiss.`; } else { @@ -1137,7 +1144,7 @@ window.loverSlave = function(activeSlave) { } break; case "sinful": - t += `have just woken up. ${name} appears to be praying, but to go by ${his} ${activeSlaveRel}'s `; + t += `have just woken up. ${name} appears to be praying, but to go by ${his} ${partnerSlaveRel}'s `; if (canTalk(activeSlave) && canHear(_partnerSlave)) { t += `quiet mirth, ${he} seems to be substituting in some lewd words.`; } else if (canSee(_partnerSlave)) { @@ -1148,16 +1155,16 @@ window.loverSlave = function(activeSlave) { break; case "advocate": if (canTalk(activeSlave)) { - t += `starting a meal together. A third, less well trained slave has asked ${name} an innocent question, and is getting enthusiastic slave dogma in return. ${His} ${activeSlaveRel} smiles tolerantly.`; + t += `starting a meal together. A third, less well trained slave has asked ${name} an innocent question, and is getting enthusiastic slave dogma in return. ${His} ${partnerSlaveRel} smiles tolerantly.`; } else { - t += `have just woken up. ${name} is planning out how to better convince new slaves that they made the right choice. ${His} ${activeSlaveRel} just tolerantly goes about tidying up while giving the occasional idea.`; + t += `have just woken up. ${name} is planning out how to better convince new slaves that they made the right choice. ${His} ${partnerSlaveRel} just tolerantly goes about tidying up while giving the occasional idea.`; } break; case "adores men": if (canSee(activeSlave) && (canSee(_partnerSlave) || canHear(_partnerSlave))) { - t += `sharing a meal together. ${name} is making catcalls at passing boys, and ${his} ${activeSlaveRel} is nudging ${him} in the ribs every time {he2} catches it.`; + t += `sharing a meal together. ${name} is making catcalls at passing boys, and ${his} ${partnerSlaveRel} is nudging ${him} in the ribs every time {he2} catches it.`; } else { - t += `getting ready for bed. ${name} is demonstrating just how much ${he} adores men to ${his} ${activeSlaveRel} while ${he2} nods `; + t += `getting ready for bed. ${name} is demonstrating just how much ${he} adores men to ${his} ${partnerSlaveRel} while ${he2} nods `; if (_partnerSlave.genes === "XX") { t += `tolerantly.`; } else { @@ -1167,9 +1174,9 @@ window.loverSlave = function(activeSlave) { break; case "adores women": if (canSee(activeSlave) && (canSee(_partnerSlave) || canHear(_partnerSlave))) { - t += `sharing a meal together. ${name} is making catcalls at passing girls, and ${his} ${activeSlaveRel} is nudging ${him} in the ribs every time {he2} catches it.`; + t += `sharing a meal together. ${name} is making catcalls at passing girls, and ${his} ${partnerSlaveRel} is nudging ${him} in the ribs every time {he2} catches it.`; } else { - t += `getting ready for bed. ${name} is demonstrating just how much ${he} adores ladies to ${his} ${activeSlaveRel} while ${he2} nods `; + t += `getting ready for bed. ${name} is demonstrating just how much ${he} adores ladies to ${his} ${partnerSlaveRel} while ${he2} nods `; if (_partnerSlave.genes === "XY") { t += `tolerantly.`; } else { @@ -1180,17 +1187,17 @@ window.loverSlave = function(activeSlave) { } } else if (_fuckSeed > 50) { if ((activeSlave.actualAge >= _partnerSlave.actualAge + 10) && canTalk(_partnerSlave) && canHear(activeSlave)) { - t += `tidying up their room together. ${partnerName} is chattering about ${his2} day, while ${name} listens quietly, smiling fondly at ${his} ${activeSlaveRel}'s prattle.`; + t += `tidying up their room together. ${partnerName} is chattering about ${his2} day, while ${name} listens quietly, smiling fondly at ${his} ${partnerSlaveRel}'s prattle.`; } else if ((_partnerSlave.actualAge >= activeSlave.actualAge + 10) && canTalk(activeSlave) && canHear(_partnerSlave)) { t += `tidying up their room together. ${name} is chattering about ${his} day, while ${partnerName} listens quietly, smiling fondly at ${his2} ${activeSlaveRel}'s prattle.`; } else if (activeSlave.amp !== 1 && !canTalk(activeSlave) && canSee(_partnerSlave)) { - t += `getting ready for bed. ${name} is using gestures to tell ${his} ${activeSlaveRel} about ${his} day; ${partnerName} is very patient and does ${his2} best to follow.`; + t += `getting ready for bed. ${name} is using gestures to tell ${his} ${partnerSlaveRel} about ${his} day; ${partnerName} is very patient and does ${his2} best to follow.`; } else if (canTalk(activeSlave) && canTalk(_partnerSlave) && canHear(activeSlave) && canHear(_partnerSlave)) { t += `tidying up their room together. ${name} and ${partnerName} are chattering away over inconsequential things.`; } else if (canSee(activeSlave) && canSee(_partnerSlave) && activeSlave.amp !== 1 && _partnerSlave.amp !== 1) { t += `getting ready for bed. ${name} and ${partnerName} are rapidly gesturing to each other about their days.`; } else { - t += `getting ready for bed. ${name} and ${his} ${activeSlaveRel}, ${partnerName}, are leaning against one another, just enjoying each other's warmth.`; + t += `getting ready for bed. ${name} and ${his} ${partnerSlaveRel}, ${partnerName}, are leaning against one another, just enjoying each other's warmth.`; } } else if (_fuckSeed > 25) { t += `using some of their free time to `; @@ -1202,9 +1209,9 @@ window.loverSlave = function(activeSlave) { } } else if (!canWalk(_partnerSlave) && canWalk(activeSlave)) { if (canSee(activeSlave) && canSee(_partnerSlave)) { - t += `watch the weather; ${name} helped ${his} ${activeSlaveRel} to a window so ${he2} could look out with ${him}.`; + t += `watch the weather; ${name} helped ${his} ${partnerSlaveRel} to a window so ${he2} could look out with ${him}.`; } else { - t += `get some fresh air; ${name} helped ${his} ${activeSlaveRel} to a balcony so ${he2} could enjoy the breeze with ${him}.`; + t += `get some fresh air; ${name} helped ${his} ${partnerSlaveRel} to a balcony so ${he2} could enjoy the breeze with ${him}.`; } } else { t += `rest on one of the penthouse balconies and enjoy the weather.`; diff --git a/src/npc/agent/agentCompany.tw b/src/npc/agent/agentCompany.tw index 385fd8459294f1309d0a288c306ddbb37cc8de13..e06a917a9d1953361d2a257a8f838f25a7c0a015 100644 --- a/src/npc/agent/agentCompany.tw +++ b/src/npc/agent/agentCompany.tw @@ -27,7 +27,7 @@ Working in _neighborArcology.name's penthouse office, $subSlave.slaveName gets a _His2 question is answered when you bring $activeSlave.slaveName in close, putting $him in $subSlave.slaveName's view. $subSlave.slaveName's <<= App.Desc.eyeColor($subSlave)>> eyes fly open with pleased surprise, but before _he2 can speak, $activeSlave.slaveName goes first. <<if !canTalk($activeSlave)>> - Unable to speak $himself, $he simply makes a heart shape with $his hands in view of the video call, and blows $his <<if $activeSlave.relationship == 4>>lover<<else>>wife<</if>> a kiss. + Unable to speak $himself, $he simply makes a heart shape with $his hands in view of the video call, and blows $his <<if $activeSlave.relationship == 4>>lover<<else>>_wife2<</if>> a kiss. <<else>> <<run Enunciate($activeSlave)>> "Hi <<if $activeSlave.relationship == 4>>lover<<else>><<s>>weetheart<</if>>," $he <<say>>s in a syrupy tone. "Mi<<ss>> me?" diff --git a/src/npc/databases/dSlavesDatabase.tw b/src/npc/databases/dSlavesDatabase.tw index 0ba2cc5e6a9ecfdcafa5d0ed16da2cfea52785fc..a8df5bcf97b792ef311afae13e5765c78cbc5353 100644 --- a/src/npc/databases/dSlavesDatabase.tw +++ b/src/npc/databases/dSlavesDatabase.tw @@ -516,23 +516,23 @@ <<if $seeExtreme == 1>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Mouse", _HS.birthName = "Mouse", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -50, _HS.weight = 20, _HS.height = 152, _HS.override_H_Color = 1, _HS.pubicHColor = "purple", _HS.skin = "pale", _HS.eyeColor = "blue", _HS.hColor = "purple", _HS.hLength = 10, _HS.amp = 1, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.voice = 0, _HS.nipples = "puffy">> +<<set _HS.slaveName = "Mouse", _HS.birthName = "Mouse", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -50, _HS.weight = 20, _HS.height = 152, _HS.override_H_Color = 1, _HS.pubicHColor = "purple", _HS.skin = "pale", _HS.eyeColor = "blue", _HS.hColor = "purple", _HS.hLength = 10, _HS.amp = 1, _HS.missingArms = 3, _HS.missingLegs = 3, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.voice = 0, _HS.nipples = "puffy">> <<set $heroSlaves.push(_HS)>> /*Increased nipples and areolae, changed eye color, added mute -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Box", _HS.birthName = "Box", _HS.origin = "When you took $him from $his previous owner, $he was locked into a beautiful rosewood box lined with red velvet, crying.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.devotion = -75, _HS.weight = 20, _HS.eyes = -2, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.skin = "pale", _HS.hColor = "golden blonde", _HS.hStyle = "long", _HS.amp = 1, _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -50, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$His amputation sites have titanium rings that go through to the bone. $He has been chemically blinded.">> +<<set _HS.slaveName = "Box", _HS.birthName = "Box", _HS.origin = "When you took $him from $his previous owner, $he was locked into a beautiful rosewood box lined with red velvet, crying.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.devotion = -75, _HS.weight = 20, _HS.eyes = -2, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.skin = "pale", _HS.hColor = "golden blonde", _HS.hStyle = "long", _HS.amp = 1, _HS.missingArms = 3, _HS.missingLegs = 3, _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -50, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$His amputation sites have titanium rings that go through to the bone. $He has been chemically blinded.">> <<set $heroSlaves.push(_HS)>> /* put some of $his custom description in $his origin (box stuff), tagged as amp, lowered obedience, increased weight but lowered health, changed skin color from white to pale */ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Yukiko", _HS.birthName = "Yukiko", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "very fair", _HS.hStyle = "long, and in a hime cut", _HS.amp = 1, _HS.boobs = 500, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a slave gown", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He is a work of art: stoic, mysterious, doll-like, — and always smiling.", _HS.voice = 0>> +<<set _HS.slaveName = "Yukiko", _HS.birthName = "Yukiko", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "very fair", _HS.hStyle = "long, and in a hime cut", _HS.amp = 1, _HS.missingArms = 3, _HS.missingLegs = 3, _HS.boobs = 500, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a slave gown", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He is a work of art: stoic, mysterious, doll-like, — and always smiling.", _HS.voice = 0>> <<set $heroSlaves.push(_HS)>> /* not much to change, lowered weight ('perfect slim body'), set to mute and changed flaw to odd- described as creepy */ <<if $seePreg != 0>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Fucknugget' Pillow", _HS.birthName = "Anika", _HS.origin = "$He sold $himself into slavery to escape life on the streets.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 37, _HS.physicalAge = 37, _HS.visualAge = 37, _HS.ovaryAge = 37, _HS.health = 80, _HS.devotion = 100, _HS.weight = 40, _HS.origRace = "white", _HS.override_Race = 1, _HS.race = "latina", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.hStyle = "long", _HS.waist = -100, _HS.amp = 1, _HS.boobs = 6260, _HS.boobsImplant = 4200, _HS.nipplesPiercing = 2, _HS.areolae = 3, _HS.boobsTat = "flowers", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 12, _HS.buttImplant = 1, _HS.buttTat = "flowers", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsPiercing = 2, _HS.lipsTat = "flowers", _HS.tonguePiercing = 2, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.vaginaTat = "flowers", _HS.preg = 37, _HS.pregType = 1, _HS.pregWeek = 37, _HS.pregKnown = 1, _HS.belly = 13000, _HS.bellyPreg = 13000, _HS.counter.births = 2, _HS.counter.birthsTotal = 2, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "flowers", _HS.makeup = 3, _HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "advertisements", _HS.stampTat = "flowers", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.aphrodisiacs = 1, _HS.addict = 99, _HS.clothes = "restrictive latex", _HS.collar = "leather with cowbell", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "'Fucknugget' Pillow", _HS.birthName = "Anika", _HS.origin = "$He sold $himself into slavery to escape life on the streets.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 37, _HS.physicalAge = 37, _HS.visualAge = 37, _HS.ovaryAge = 37, _HS.health = 80, _HS.devotion = 100, _HS.weight = 40, _HS.origRace = "white", _HS.override_Race = 1, _HS.race = "latina", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.hStyle = "long", _HS.waist = -100, _HS.amp = 1, HS.missingArms = 3, _HS.missingLegs = 3, _HS.boobs = 6260, _HS.boobsImplant = 4200, _HS.nipplesPiercing = 2, _HS.areolae = 3, _HS.boobsTat = "flowers", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 12, _HS.buttImplant = 1, _HS.buttTat = "flowers", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsPiercing = 2, _HS.lipsTat = "flowers", _HS.tonguePiercing = 2, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.vaginaTat = "flowers", _HS.preg = 37, _HS.pregType = 1, _HS.pregWeek = 37, _HS.pregKnown = 1, _HS.belly = 13000, _HS.bellyPreg = 13000, _HS.counter.births = 2, _HS.counter.birthsTotal = 2, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "flowers", _HS.makeup = 3, _HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "advertisements", _HS.stampTat = "flowers", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.aphrodisiacs = 1, _HS.addict = 99, _HS.clothes = "restrictive latex", _HS.collar = "leather with cowbell", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> <</if>> @@ -541,7 +541,7 @@ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Onahole' Lian the Liberty Whore", _HS.birthName = "Lian", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = -70, _HS.devotion = 100, _HS.muscles = 20, _HS.nationality = "Chinese", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.waist = -100, _HS.amp = 1, _HS.boobs = 2000, _HS.boobsImplant = 600, _HS.areolae = 2, _HS.butt = 8, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clit = 2, _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.collar = "shock punishment", _HS.shoes = "flats", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "'Onahole' Lian the Liberty Whore", _HS.birthName = "Lian", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = -70, _HS.devotion = 100, _HS.muscles = 20, _HS.nationality = "Chinese", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.waist = -100, _HS.amp = 1, _HS.missingArms = 3, _HS.missingLegs = 3, _HS.boobs = 2000, _HS.boobsImplant = 600, _HS.areolae = 2, _HS.butt = 8, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clit = 2, _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.collar = "shock punishment", _HS.shoes = "flats", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> @@ -549,7 +549,7 @@ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Flora", _HS.birthName = "Flora", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 155, _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.amp = 1, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He fits perfectly into a pillowcase.">> +<<set _HS.slaveName = "Flora", _HS.birthName = "Flora", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 155, _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.amp = 1, _HS.missingArms = 3, _HS.missingLegs = 3, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He fits perfectly into a pillowcase.">> <<set $heroSlaves.push(_HS)>> /*bitchy arrogant*/ /*Added 'bitchy' quirk, reduced height and weight, added customdesc -BoneyM*/ diff --git a/src/npc/databases/ddSlavesDatabase.tw b/src/npc/databases/ddSlavesDatabase.tw index 4f26d9ea64e823714487d7ef305592cc7390fe35..16b40c9421f3a7c96c0f8586ad095da559f1cf38 100644 --- a/src/npc/databases/ddSlavesDatabase.tw +++ b/src/npc/databases/ddSlavesDatabase.tw @@ -180,7 +180,7 @@ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Danny 'The D'", _HS.slaveSurname = "Ildoe", _HS.birthName = "Danny 'The D'", _HS.birthSurname = "Ildoe", _HS.origin = "Born without limbs and abandoned by $his parents, $he was taken in by a posh family, given a massive cock, and trained to be the wealthy lady's perfect living sex toy.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.visualAge = 28, _HS.physicalAge = 28, _HS.ovaryAge = 28, _HS.health = 100, _HS.amp = 1, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 94, _HS.eyeColor = "blue", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.waist = 55, _HS.boobs = 50, _HS.hips = -1, _HS.butt = 0, _HS.face = 45, _HS.vagina = -1, _HS.preg = 0, _HS.dick = 6, _HS.balls = 10, _HS.scrotum = 7, _HS.prostate = 2, _HS.anusTat = "bleached", _HS.energy = 95, _HS.intelligenceImplant = 30, _HS.attrXX = 100, _HS.attrXY = 0, _HS.skill.oral = 95, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralQuirk = "advocate">> +<<set _HS.slaveName = "Danny 'The D'", _HS.slaveSurname = "Ildoe", _HS.birthName = "Danny 'The D'", _HS.birthSurname = "Ildoe", _HS.origin = "Born without limbs and abandoned by $his parents, $he was taken in by a posh family, given a massive cock, and trained to be the wealthy lady's perfect living sex toy.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.visualAge = 28, _HS.physicalAge = 28, _HS.ovaryAge = 28, _HS.health = 100, _HS.amp = 1, _HS.missingArms = 3, _HS.missingLegs = 3, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 94, _HS.eyeColor = "blue", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.waist = 55, _HS.boobs = 50, _HS.hips = -1, _HS.butt = 0, _HS.face = 45, _HS.vagina = -1, _HS.preg = 0, _HS.dick = 6, _HS.balls = 10, _HS.scrotum = 7, _HS.prostate = 2, _HS.anusTat = "bleached", _HS.energy = 95, _HS.intelligenceImplant = 30, _HS.attrXX = 100, _HS.attrXY = 0, _HS.skill.oral = 95, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralQuirk = "advocate">> <<set $heroSlaves.push(_HS)>> /* needed an amputated slave for debug reasons -prndev */ diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw index 297b198adf7f1ca0b58a419ac9e8ba4f4f987154..0421d68f62da185aae6b0d7903e160326cc55dd4 100644 --- a/src/npc/fFeelings.tw +++ b/src/npc/fFeelings.tw @@ -51,10 +51,11 @@ "You're my <<Master>>, and I'll do my be<<s>>t to obey you," $he <<say>>s <</if>> <<elseif ($activeSlave.devotion <= 95)>> + <<setSpokenLocalPronouns $activeSlave $activeSlave>> <<if !canTalk($activeSlave)>> $He gestures that you're $his beloved <<Master>>. $He continues to sign<<if $activeSlave.accent == 3>>, using gestures to supplant $his poor $language<</if>>: <<else>> - "<<if ($activeSlave.relationship == -3)>>I'm content with being your wife,<<else>>You're<</if>> my beloved <<Master>>, and you know what'<<s>> be<<s>>t for me," $he <<say>>s. + "<<if ($activeSlave.relationship == -3)>>I'm content with being your <<wife>>,<<else>>You're<</if>> my beloved <<Master>>, and you know what'<<s>> be<<s>>t for me," $he <<say>>s. <</if>> <<else>> <<if !canTalk($activeSlave)>> @@ -1177,14 +1178,15 @@ My favorite part of my body i<<s>> <</if>> <</if>> <<elseif ($activeSlave.relationship == -3)>> + <<setSpokenLocalPronouns $activeSlave $activeSlave>> <<if $activeSlave.devotion+$activeSlave.trust >= 175>> - Of cour<<s>>e, I'm your wife, <<Master>>." $He laughs. "Not e<<x>>actly traditional married life, but I'll do my be<<s>>t to help redefine it. + Of cour<<s>>e, I'm your <<wife>>, <<Master>>." $He laughs. "Not e<<x>>actly traditional married life, but I'll do my be<<s>>t to help redefine it. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - Of cour<<s>>e, I'm your wife, <<Master>>." $He sighs. "Any other que<<s>>tion<<s>>? + Of cour<<s>>e, I'm your <<wife>>, <<Master>>." $He sighs. "Any other que<<s>>tion<<s>>? <<elseif $activeSlave.devotion < -20>> - I'm your wife, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>," $he <<say>>s, $his voice wavering. "Plea<<s>>e let me go... + I'm your <<wife>>, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>," $he <<say>>s, $his voice wavering. "Plea<<s>>e let me go... <<else>> - Of cour<<s>>e, I'm your wife, <<Master>>," $he <<say>>s. "It i<<s>>n't <<s>>o bad, I'm <<s>>tarting to like it. + Of cour<<s>>e, I'm your <<wife>>, <<Master>>," $he <<say>>s. "It i<<s>>n't <<s>>o bad, I'm <<s>>tarting to like it. <</if>> <<elseif ($activeSlave.relationship == -2)>> diff --git a/src/npc/fKiss.tw b/src/npc/fKiss.tw index cfaf60ef541a1654f3aa3eed073f85788f8607ac..25990b5deea68886a04b8a6a2e25fa00e1dbd359 100644 --- a/src/npc/fKiss.tw +++ b/src/npc/fKiss.tw @@ -133,7 +133,7 @@ Then, you gently raise $his <<if $activeSlave.face > 95>>heartrendingly beautifu <<if ($activeSlave.relationship == -3)>> <<if $activeSlave.fetish == "mindbroken">> - $His mouth opens to accept the kiss, and is compliant with your questing tongue. You kiss your broken wife deeply. $His posture remains completely unchanged. Being kissed affects $him as little as being penetrated, being struck, being loved, or being your wife: not at all. When you pull away, + $His mouth opens to accept the kiss, and is compliant with your questing tongue. You kiss your broken $wife deeply. $His posture remains completely unchanged. Being kissed affects $him as little as being penetrated, being struck, being loved, or being your $wife: not at all. When you pull away, <<if canSee($activeSlave)>> $his <<= App.Desc.eyeColor($activeSlave)>> eyes track you carefully, awaiting further use of $his body. <<else>> @@ -151,7 +151,7 @@ Then, you gently raise $his <<if $activeSlave.face > 95>>heartrendingly beautifu "I love you, <<Master>>," $he <<say>>s dreamily. <</if>> <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $He reflexively turns $his head away from you, but you catch your wife by $his jaw and kiss $him harder. You wrap your arms around $him so $he cannot escape. $He wriggles desperately, but $his struggles slowly subside as $he realizes that you're not taking this any farther. When you bore of it and pull away, $he glares at you. + $He reflexively turns $his head away from you, but you catch your $wife by $his jaw and kiss $him harder. You wrap your arms around $him so $he cannot escape. $He wriggles desperately, but $his struggles slowly subside as $he realizes that you're not taking this any farther. When you bore of it and pull away, $he glares at you. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>> $His <<if canSee($activeSlave)>>eyes demand<<else>>expression demands<</if>> an answer: are you done? <<elseif !canTalk($activeSlave)>> @@ -160,7 +160,7 @@ Then, you gently raise $his <<if $activeSlave.face > 95>>heartrendingly beautifu $He splutters, "Are you done, <<Master>>?" <</if>> <<elseif $activeSlave.devotion < -20>> - $He is nearly frozen with fear, and does not resist as you kiss $him deeply. In fact, $he barely reacts at all. $He opens $his mouth mechanically in response to your insistent tongue, but it's like kissing a doll. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. When you bore of making out with your wife and pull away, $he stares at you in utter incomprehension. + $He is nearly frozen with fear, and does not resist as you kiss $him deeply. In fact, $he barely reacts at all. $He opens $his mouth mechanically in response to your insistent tongue, but it's like kissing a doll. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. When you bore of making out with your $wife and pull away, $he stares at you in utter incomprehension. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>> $His <<if canSee($activeSlave)>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? <<elseif !canTalk($activeSlave)>> @@ -169,7 +169,7 @@ Then, you gently raise $his <<if $activeSlave.face > 95>>heartrendingly beautifu $He asks nervously before cringing, "I-i<<s>> that it, <<Master>>?" <</if>> <<else>> - $He accepts the kiss willingly. As you are so close to $him, you sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a wife by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your lips and tongue. When you finally break the kiss, <<if canSee($activeSlave)>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes gaze into yours searchingly<<else>>$he gazes at you<</if>>, looking for answers that are not there. + $He accepts the kiss willingly. As you are so close to $him, you sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>$woman<<else>>$girl<</if>>; $he's doing $his duty as a $wife by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your lips and tongue. When you finally break the kiss, <<if canSee($activeSlave)>>$his <<= App.Desc.eyeColor($activeSlave)>> eyes gaze into yours searchingly<<else>>$he gazes at you<</if>>, looking for answers that are not there. <<if (($activeSlave.amp == 1) && (!canTalk($activeSlave)))>> $His <<if canSee($activeSlave)>>eyes beg<<else>>expression begs<</if>> for an answer: is that it? <<elseif !canTalk($activeSlave)>> diff --git a/src/npc/newSlaveIncestSex.tw b/src/npc/newSlaveIncestSex.tw index 2c9a3eca8252c9b84ce8fd56ec6dc49505fddb98..ac87a2082afe97c73e6c52ba8fcf722956df0603 100644 --- a/src/npc/newSlaveIncestSex.tw +++ b/src/npc/newSlaveIncestSex.tw @@ -42,10 +42,10 @@ /* gender relation descriptions */ /* TODO: is there a function for gender-aware relationships? */ <<if $relative.vagina == -1 >> - <<set _one = _one.replace("mother","father").replace("sister","brother").replace("daughter","son") >> + <<set _one = _one.replace("mother", "father").replace("sister", "brother").replace("daughter", "son") >> <</if>> <<if $relative2.vagina == -1 >> - <<set _other = _other.replace("mother","father").replace("sister","brother").replace("daughter","son") >> + <<set _other = _other.replace("mother", "father").replace("sister", "brother").replace("daughter", "son") >> <</if>> <<if _one == _other >> diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index b84c705e5e56b57a8ed623ed32577499b5981a8a..2aa68eee8e2fc563a3db0990357e2299242b5488 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -1630,7 +1630,7 @@ __You are customizing this slave:__ <br> <<link "Onahole">> <<StartingGirlsWorkaround>> - <<set $activeSlave.skill.anal = 0, $activeSlave.skill.oral = 0, $activeSlave.skill.vaginal = 0, $activeSlave.skill.whoring = 0, $activeSlave.skill.entertainment = 0, $activeSlave.skill.combat = 0, $activeSlave.fetish = "mindbroken", $activeSlave.amp = 1, $activeSlave.voice = 0, $activeSlave.eyes = 1, $activeSlave.hears = 0>> + <<set $activeSlave.skill.anal = 0, $activeSlave.skill.oral = 0, $activeSlave.skill.vaginal = 0, $activeSlave.skill.whoring = 0, $activeSlave.skill.entertainment = 0, $activeSlave.skill.combat = 0, $activeSlave.fetish = "mindbroken", $activeSlave.amp = 1, $activeSlave.missingLegs = 3, $activeSlave.missingArms = 3, $activeSlave.voice = 0, $activeSlave.eyes = 1, $activeSlave.hears = 0>> <<goto "Starting Girls">> <</link>> //A living cocksleeve// diff --git a/src/player/actions/fEmbrace.tw b/src/player/actions/fEmbrace.tw index 0d570cde31224eeb455cfac49bc6694606421634..e130fd0e43cbce34a8c6ee31cdc389087fa0c47c 100644 --- a/src/player/actions/fEmbrace.tw +++ b/src/player/actions/fEmbrace.tw @@ -25,13 +25,13 @@ You tell $activeSlave.slaveName to <<if $activeSlave.fetish == "mindbroken">> $He complies mechanically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank <<= App.Desc.eyeColor($activeSlave)>> eyes. $He shows no reaction. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - $He lovingly complies, hurrying to come close to the _womanP who married $him. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. + $He lovingly complies, hurrying to come close to the _womanP who married $him. Once $he's close, you take your willing $wife's head in your hands and gaze deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's married to affirming, and looks down with a smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $He complies. Once $he's close, you take your reluctant wife's head in your hands and gaze deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's forcibly married to disturbing, and <<if canSee($activeSlave)>> breaks eye contact<<else>> turns $his face away<</if>>. + $He complies. Once $he's close, you take your reluctant $wife's head in your hands and gaze deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's forcibly married to disturbing, and <<if canSee($activeSlave)>> breaks eye contact<<else>> turns $his face away<</if>>. <<elseif $activeSlave.devotion < -20>> - $He complies out of fear. Once $he's close, you take your unwilling wife's head in your hands and gaze deeply into $his teary <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's forcibly married to terrifying, and <<if canSee($activeSlave)>> breaks eye contact<<else>> turns $his face away<</if>>. + $He complies out of fear. Once $he's close, you take your unwilling $wife's head in your hands and gaze deeply into $his teary <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's forcibly married to terrifying, and <<if canSee($activeSlave)>> breaks eye contact<<else>> turns $his face away<</if>>. <<else>> - $He complies obediently. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. + $He complies obediently. Once $he's close, you take your willing $wife's head in your hands and gaze deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from the _womanP $he's married to reassuring, and looks down with a slight smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <</if>> <<elseif ($activeSlave.devotion > 75)>> $He elatedly complies, joyful at being near to you. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. $He finds the intense look from $his beloved <<= WrittenMaster()>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw index e3593f4699e6f4ec9e4872bb2733aa8c61e405ec..24ddc0164c3f60f128d34d494a1f10fcc6ea6fe3 100644 --- a/src/pregmod/fFeet.tw +++ b/src/pregmod/fFeet.tw @@ -228,7 +228,7 @@ You call $activeSlave.slaveName to your office, telling $him to use $his feet to <<if ($activeSlave.fetish == "mindbroken")>> $He is brought to you and stands blankly by your desk. <<elseif ($activeSlave.relationship == -3 && $activeSlave.devotion >= 60 )>> - Your devoted slave wife is delighted to get another chance to pleasure you. + Your devoted slave $wife is delighted to get another chance to pleasure you. <<elseif ($activeSlave.relationship == -2 && $activeSlave.devotion >= 60 )>> $He considers $himself your lover, and is delighted to spend time with you. <<elseif ($activeSlave.devotion < -50)>> diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw index 3a03121f9daa887d5d5ccb8b35709b147c785dc3..e0dade52ffc2bbccd4656781050d024ef6330c45 100644 --- a/src/pregmod/fMarry.tw +++ b/src/pregmod/fMarry.tw @@ -12,19 +12,13 @@ <<if $activeSlave.relationship > 0>> <<set _m = $slaveIndices[$activeSlave.relationshipTarget]>> <<if def _m>> + <<setLocalPronouns $slaves[_m] 2>> + <<setSpokenLocalPronouns $activeSlave $slaves[_m]>> <<if SlaveStatsChecker.checkForLisp($activeSlave)>> <<set _name = lispReplace($slaves[_m].slaveName)>> - <<set _heL = lispReplace($he)>> - <<set _hisL = lispReplace($his)>> - <<set _himL = lispReplace($him)>> - <<set _himselfL = lispReplace($himself)>> <<else>> <<set _name = $slaves[_m].slaveName>> /* Use the modified "L"isp variables when they are speaking, just in case. */ - <<set _heL = $he>> - <<set _hisL = $his>> - <<set _himL = $him>> - <<set _himselfL = $himself>> <</if>> <<else>> @@.red;Error, relationshipTarget not found.@@ @@ -50,41 +44,42 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <<if $activeSlave.relationship == -1>> "I promi<<s>>e I'll try to <<s>>top <<s>>leeping around <<s>>o much." <<elseif $activeSlave.relationship == 4>> - "I'll have to break up with _name... I'll try to let _himL down gently, _heL'll under<<s>>tand." + "I'll have to break up with _name... I'll try to let _him2 down gently, <<he 2>>'ll under<<s>>tand." <<elseif $activeSlave.relationship == 3>> - "_name will mi<<ss>> having <<s>>e<<x>> with me, but _heL'll under<<s>>tand." + "_name will mi<<ss>> having <<s>>e<<x>> with me, but <<he 2>>'ll under<<s>>tand." <<elseif $activeSlave.relationship > 0>> - "I'll have to <<s>>top hanging out with _name; I'm <<s>>ure _heL'll under<<s>>tand." + "I'll have to <<s>>top hanging out with _name; I'm <<s>>ure <<he 2>>'ll under<<s>>tand." <<else>> "I've been waiting for thi<<s>> day! I'm <<s>>o happy!" <</if>> $He continues, <</if>> "Thank you, <<Master>>. I am going to do my be<<s>>t to be a + <<setSpokenLocalPronouns $activeSlave $activeSlave>> <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> <<if ($activeSlave.fetish == "submissive")>> - perfect <<s>>ubmi<<ss>>ive wife to you, + perfect <<s>>ubmi<<ss>>ive <<wife>> to you, <<elseif ($activeSlave.fetish == "cumslut")>> - perfect oral wifey, + perfect oral <<wife>>, <<elseif ($activeSlave.fetish == "humiliation")>> - hot wife for you, + hot <<wife>> for you, <<elseif ($activeSlave.fetish == "buttslut")>> - perfect little anal wifey, + perfect little anal <<wife>>, <<elseif ($activeSlave.fetish == "boobs")>> - <<if $activeSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> wife + <<if $activeSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> <<wife>> <<elseif ($activeSlave.fetish == "pregnancy")>> - perfect barefoot breeding wife, + perfect barefoot breeding <<wife>>, <<elseif ($activeSlave.fetish == "dom")>> - perfect, you know, <<sh>>aring wife with other <<s>>lave<<s>>, + perfect, you know, <<sh>>aring <<wife>> with other <<s>>lave<<s>>, <<elseif ($activeSlave.fetish == "sadist")>> - perfect wife to u<<s>>e on other <<s>>lave<<s>>, + perfect <<wife>> to u<<s>>e on other <<s>>lave<<s>>, <<elseif ($activeSlave.fetish == "masochist")>> - good, beaten wife, + good, beaten <<wife>>, <<else>> - good wife, + good <<wife>>, <</if>> <<else>> - good wife, + good <<wife>>, <</if>> <<Master>>. Oh, thank you, <<Master>>," $he blubbers, and starts crying again. <<elseif $activeSlave.amp == 1>> @@ -160,11 +155,11 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <<if $activeSlave.relationship == -1>> "I'll never be <<s>>ati<<s>>fied by ju<<s>>t you!" <<elseif $activeSlave.relationship == 4>> - "I love _name, not you <<Master>>! You'll never be a<<s>> good a<<s>> _himL!" + "I love _name, not you <<Master>>! You'll never be a<<s>> good a<<s>> _him2!" <<elseif $activeSlave.relationship == 3>> - "But I like having <<s>>e<<x>> with _name, not you <<Master>>! You'll never be a<<s>> good as _himL!" + "But I like having <<s>>e<<x>> with _name, not you <<Master>>! You'll never be a<<s>> good as _him2!" <<elseif $activeSlave.relationship > 0>> - "But I like <<s>>pending time with _name, _heL'<<s>> <<s>>o much ni<<c>>er to be around than you, <<Master>>. + "But I like <<s>>pending time with _name, <<he 2>>'<<s>> <<s>>o much ni<<c>>er to be around than you, <<Master>>. <<else>> "I need you in my life, <<Master>>, <<s>>o why don't you bend down like the bitch you are and <<if $activeSlave.dick > 0>><<s>>uck my dick<<elseif $activeSlave.vagina > -1>>eat me out<<else>>lick my a<<ss>><</if>>, <<Master>>?" <</if>> @@ -206,28 +201,28 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of You're not exactly lacking in ways to make <<if $activeSlave.physicalAge > 30>>$women<<else>><<= $girl>>s<</if>> burst into tears, but this one is unusually effective. It seems $activeSlave.slaveName does not want to marry you, if $his prolonged, anguished sobbing is anything to go by. However, $he would have to be a fool to think there's any way out of it. You lean in and whisper that <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> <<if ($activeSlave.fetish == "submissive")>> - $he'll make the perfect submissive wife for you dominate. + $he'll make the perfect submissive $wife for you dominate. <<elseif ($activeSlave.fetish == "cumslut")>> - $he'll make the perfect oral wifey for your <<if $PC.dick > 0 && $PC.vagina > 0>>dick and pussy<<elseif $PC.dick > 0>>cock<<else>>pussy<</if>> to enjoy. + $he'll make the perfect oral $wife for your <<if $PC.dick > 0 && $PC.vagina > 0>>dick and pussy<<elseif $PC.dick > 0>>cock<<else>>pussy<</if>> to enjoy. <<elseif ($activeSlave.fetish == "humiliation")>> - $he'll make a hot wife for you to parade around naked. + $he'll make a hot $wife for you to parade around naked. <<elseif ($activeSlave.fetish == "buttslut")>> - $he'll make the perfect little anal wifey <<if $PC.dick > 0>>to keep your dick warm<<else>>stick things in<</if>>. + $he'll make the perfect little anal $wife <<if $PC.dick > 0>>to keep your dick warm<<else>>stick things in<</if>>. <<elseif ($activeSlave.fetish == "boobs")>> - $he'll make the <<if $activeSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> wife for you to bury your head into. + $he'll make the <<if $activeSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> $wife for you to bury your head into. <<elseif ($activeSlave.fetish == "pregnancy")>> - $he'll make the perfect barefoot breeding wife.<<if $PC.dick > 0 && canGetPregnant($activeSlave)>> You poke $him with your erection, letting $him know what $he's in for.<</if>> + $he'll make the perfect barefoot breeding $wife.<<if $PC.dick > 0 && canGetPregnant($activeSlave)>> You poke $him with your erection, letting $him know what $he's in for.<</if>> <<elseif ($activeSlave.fetish == "dom")>> - $he'll make the perfect dominant wife to force upon $his closest friends. + $he'll make the perfect dominant $wife to force upon $his closest friends. <<elseif ($activeSlave.fetish == "sadist")>> - $he'll make the perfect cruel wife to force upon $his closest friends. + $he'll make the perfect cruel $wife to force upon $his closest friends. <<elseif ($activeSlave.fetish == "masochist")>> - $he'll make a good, beaten wife. + $he'll make a good, beaten $wife. <<else>> - $he'll make a good wife. + $he'll make a good $wife. <</if>> <<else>> - $he'll make a good wife. + $he'll make a good $wife. <</if>> <<if canTalk($activeSlave)>> "<<Master>>. Plea<<s>>e, <<Master>>, don't make me do thi<<s>>. I don't want thi<<s>>!" $he blubbers, and starts crying again. @@ -278,7 +273,7 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of You leave $him to weep and consider $his fate. Despite $his "fortune", $he is still a slave, and undoubtedly knows that $his position could easily change should you tire of $him. <<set _reactionType = 2>> <<else>> - $He doesn't really react to this. By no means does $he want to be your wife, but $he's obedient enough to know that you are in charge. You leave $him to $his business, and go back to yours. + $He doesn't really react to this. By no means does $he want to be your $wife, but $he's obedient enough to know that you are in charge. You leave $him to $his business, and go back to yours. <<if $activeSlave.relationship != 0>> <<if $activeSlave.relationship == -1>> $He sighs at the realization that $he won't be allowed to be so promiscuous and will have to learn to focus $his attention on you. @@ -343,44 +338,44 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <br> <span id="result"> -<br><<link "Just redesignate $him as your slave wife">> +<br><<link "Just redesignate $him as your slave $wife">> <<replace "#result">> - You order $assistantName to simply redesignate $activeSlave.slaveName as your slave wife. + You order $assistantName to simply redesignate $activeSlave.slaveName as your slave $wife. <<if $assistant == 0>> "Slave redesignated," it responds immediately. The thing is done. <<else>> <<if $assistantAppearance == "monstergirl">> - _HisA avatar snaps its fingers and shrugs off its surplice, revealing _hisA tentacle hair, pale skin, and cocks once more. + _HisA avatar snaps _hisA fingers and shrugs off _hisA surplice, revealing _hisA tentacle hair, pale skin, and cocks once more. <<elseif $assistantAppearance == "shemale">> - _HisA avatar snaps its fingers and starts to masturbate more energetically. + _HisA avatar snaps _hisA fingers and starts to masturbate more energetically. <<elseif $assistantAppearance == "amazon">> - _HisA avatar gives its medicine stick a shake. + _HisA avatar gives _hisA medicine stick a shake. <<elseif $assistantAppearance == "businesswoman">> - _HisA avatar snaps its fingers. + _HisA avatar snaps _hisA fingers. <<elseif ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy")>> - _HisA avatar claps its hands twice, looking a bit disappointed at the lack of celebration. + _HisA avatar claps _hisA hands twice, looking a bit disappointed at the lack of celebration. <<elseif $assistantAppearance == "goddess">> _HisA avatar makes a complex hand gesture, looking beatific. <<elseif $assistantAppearance == "hypergoddess">> _HisA avatar makes a complex hand gesture, looking beatific. <<elseif $assistantAppearance == "loli">> - _HisA avatar claps its hands together. + _HisA avatar claps _hisA hands together. <<elseif $assistantAppearance == "preggololi">> - _HisA avatar claps its hands together. + _HisA avatar claps _hisA hands together. <<elseif $assistantAppearance == "schoolgirl">> - _HisA avatar snaps its fingers and gives a little twirl. + _HisA avatar snaps _hisA fingers and gives a little twirl. <<elseif $assistantAppearance == "angel">> - _HisA avatar spreads its wings and arms and emits a flash of light. + _HisA avatar spreads _hisA wings and arms and emits a flash of light. <<elseif $assistantAppearance == "cherub">> - _HisA avatar claps its hands together, emitting a burst of light. + _HisA avatar claps _hisA hands together, emitting a burst of light. <<elseif $assistantAppearance == "incubus">> - _HisA avatar flicks the tip of its penis and blows _hisA load towards the both of you. + _HisA avatar flicks the tip of _hisA penis and blows _hisA load towards the both of you. <<elseif $assistantAppearance == "succubus">> _HisA avatar starts to masturbate furiously and orgasms lewdly. <<elseif $assistantAppearance == "imp">> - _HisA avatar claps its hands together, emitting a burst of darkness. + _HisA avatar claps _hisA hands together, emitting a burst of darkness. <<elseif $assistantAppearance == "witch">> - _HisA avatar pulls out its spell book and attempts a spell to bind you two; _heA manages to conjure a large ring around _himA, pinning _hisA arms to _hisA sides. + _HisA avatar pulls out _hisA spell book and attempts a spell to bind you two; _heA manages to conjure a large ring around _himselfA, pinning _hisA arms to _hisA sides. <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> _HisA avatar splits open to reveal a number of tentacles and wraps them around each other. <<else>> @@ -444,11 +439,11 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <<link "Give $him your surname">> <<replace "#surnaming">> <<set $activeSlave.slaveSurname = $PC.surname>> - You also command $assistantName to rename your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. + You also command $assistantName to rename your new slave $wife $activeSlave.slaveName $activeSlave.slaveSurname. <<if $activeSlave.fetish == "mindbroken">> The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and shows no reaction. Like many things, names mean nothing to $him now. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and breaks down again. Being brusquely redesignated as your slave wife was such a sterile experience that $he wasn't sure it was real, and hearing that $he's to take your surname @@.mediumaquamarine;reassures $him@@ that it is. Not to mention, $he might be a $desc, but $he's still a $girl, and hearing that $he wouldn't get a decent wedding did disappoint $him, but this makes up for it. You might not be all that expressive, but @@.hotpink;$he's your wife,@@ and that's what matters to $him. + The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and breaks down again. Being brusquely redesignated as your slave $wife was such a sterile experience that $he wasn't sure it was real, and hearing that $he's to take your surname @@.mediumaquamarine;reassures $him@@ that it is. Not to mention, $he might be a $desc, but $he's still a $girl, and hearing that $he wouldn't get a decent wedding did disappoint $him, but this makes up for it. You might not be all that expressive, but @@.hotpink;$he's your $wife,@@ and that's what matters to $him. <<set $activeSlave.devotion += 5, $activeSlave.trust += 5>> <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and scoffs audibly. @@.mediumorchid;$He'll remember $his name, even if you try to take it away.@@ $He can't hide @@.mediumorchid;$his annoyance@@ that you couldn't even spring for a fancy wedding. @@ -600,33 +595,33 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of $activeSlave.slaveName. $assistantName's two avatars begin copying you and $activeSlave.slaveName's actions perfectly. <<else>> - "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave wife's efforts. + "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave $wife's efforts. <</if>> "Done," _heA says when you climax. "Enjoy your <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> <<if ($activeSlave.fetish == "submissive")>> - submissive slave wife!" + submissive slave $wife!" <<elseif ($activeSlave.fetish == "cumslut")>> - slave wife's mouth!" + slave $wife's mouth!" <<elseif ($activeSlave.fetish == "humiliation")>> - exhibitionist slave wife!" + exhibitionist slave $wife!" <<elseif ($activeSlave.fetish == "buttslut")>> - slave wife's butthole!" + slave $wife's butthole!" <<elseif ($activeSlave.fetish == "boobs")>> - slave wife's boobs!" + slave $wife's boobs!" <<elseif ($activeSlave.fetish == "pregnancy")>> - breeder wife!" + breeder $wife!" <<elseif ($activeSlave.fetish == "dom")>> - slave wife's aggression!" + slave $wife's aggression!" <<elseif ($activeSlave.fetish == "sadist")>> - slave wife's sadistic tendencies!" + slave $wife's sadistic tendencies!" <<elseif ($activeSlave.fetish == "masochist")>> - slave wife's pain!" + slave $wife's pain!" <<else>> - slave wife!" + slave $wife!" <</if>> <<else>> - slave wife!" + slave $wife!" <</if>> <</if>> <<if $activeSlave.relationship > 0>> @@ -686,23 +681,23 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <<link "Give $him your surname">> <<replace "#surnaming">> <<set $activeSlave.slaveSurname = $PC.surname>> - You also command $assistantName to rename your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. + You also command $assistantName to rename your new slave $wife $activeSlave.slaveName $activeSlave.slaveSurname. <<if $activeSlave.fetish == "mindbroken">> - Before you get too distracted, you tell your lovely new wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. You are uncertain if it sunk in or not. + Before you get too distracted, you tell your lovely new $wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. You are uncertain if it sunk in or not. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - Before you get too distracted, you tell your lovely new wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. It would be an understatement to say $he's delighted. $He's a good $desc, but even $he has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This @@.mediumaquamarine;reassures $him@@ that it is. $His special day probably wasn't exactly like $he might once have imagined it, but $he obviously thinks it's been @@.hotpink;very nice,@@ all things considered. + Before you get too distracted, you tell your lovely new $wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. It would be an understatement to say $he's delighted. $He's a good $desc, but even $he has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This @@.mediumaquamarine;reassures $him@@ that it is. $His special day probably wasn't exactly like $he might once have imagined it, but $he obviously thinks it's been @@.hotpink;very nice,@@ all things considered. <<if canTalk($activeSlave)>>"_myName _playerSurname," $he murmurs to $himself occasionally, smiling.<</if>> <<set $activeSlave.devotion += 5, $activeSlave.trust += 5>> <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - Before you get too distracted, you tell your lovely new wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. @@.mediumorchid;$He'll remember $his name, even if you try to take it away.@@ + Before you get too distracted, you tell your lovely new $wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. @@.mediumorchid;$He'll remember $his name, even if you try to take it away.@@ <<if canTalk($activeSlave)>>"_myName _playerSurname," $he mutters to $himself occasionally; their is a distinct distaste to the way $he says it.<</if>> <<set $activeSlave.devotion -= 10>> <<elseif $activeSlave.devotion < -20>> - Before you get too distracted, you tell your quivering new wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. $He nods in terror. Not only have you taken $his hand, but now also $his name; @@.hotpink;$he's yours now,@@ nothing $he thinks can change that. + Before you get too distracted, you tell your quivering new $wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. $He nods in terror. Not only have you taken $his hand, but now also $his name; @@.hotpink;$he's yours now,@@ nothing $he thinks can change that. <<if canTalk($activeSlave)>>"_myName _playerSurname," $he mutters to $himself occasionally, $his voice wavering as $he struggles to hold back the tears.<</if>> <<set $activeSlave.devotion += 5>> <<else>> - Before you get too distracted, you tell your lovely new wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. $He nods acceptingly. $He's a good $desc, but $he has doubts about whether a marriage between an owner and a piece of property is really worth much. That doesn't matter, @@.mediumaquamarine;it's worth something to $him.@@ + Before you get too distracted, you tell your lovely new $wife that $he's now to be known as $activeSlave.slaveName $activeSlave.slaveSurname. $He nods acceptingly. $He's a good $desc, but $he has doubts about whether a marriage between an owner and a piece of property is really worth much. That doesn't matter, @@.mediumaquamarine;it's worth something to $him.@@ <<if canTalk($activeSlave)>>"_myName _playerSurname," $he murmurs to $himself occasionally<<if canHear($activeSlave)>>, listening to how it sounds<</if>>.<</if>> <<set $activeSlave.trust += 5>> <</if>> diff --git a/src/pregmod/fPat.tw b/src/pregmod/fPat.tw index 178314dca21761cc284946b1617929c8581686d7..ddf77bea4f5efaf29ba9a0f5f71d6cbad3dbc8bf 100644 --- a/src/pregmod/fPat.tw +++ b/src/pregmod/fPat.tw @@ -126,7 +126,7 @@ You walk around $him, drawing closer and slowly resting your hand on $his head. <<if ($activeSlave.fetish == "mindbroken")>> Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your poor mentally shattered slave's inability to resist you. $He initially reacts slightly to your physical touch, but soon stops reacting completely. Nevertheless, you continue to gingerly stroke $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>shaven scalp <<else>>hair <</if>>, as you gently press $his body into your chest<<if $activeSlave.amp == 1>> and onto your lap<</if>>. The warmth from your slave's body, and the action of petting $his head, combined with the sound of $his breathing, allow you to feel more relaxed by the minute. <<elseif ($activeSlave.relationship == -3) && $activeSlave.devotion+$activeSlave.trust >= 175>> - Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> and finally onto your lap<</if>>, relaxing as $he feels your caress. As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content wife. + Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> and finally onto your lap<</if>>, relaxing as $he feels your caress. As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content $wife. <<elseif ($activeSlave.relationship == -2)>> Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat $his head. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses. As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content servant. <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.amp != 1)>> diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw index a0ee8e9477cb6d0c3953bce4cb758a149d3c719f..ab6782e923da003f0c4508310cbe0cbb444ddbb0 100644 --- a/src/pregmod/fSlaveFeed.tw +++ b/src/pregmod/fSlaveFeed.tw @@ -48,7 +48,7 @@ The first necessary step is to prepare the milk cow and _his2 udders. <<elseif $milkTap.relationship == 4>> enjoys spending intimate time with _his2 lover, and having _his2 breasts suckled is one of _his2 favorites. <<elseif $milkTap.relationship == 5>> - enjoys spending intimate time with _his2 wife, and having _his2 breasts suckled is one of _his2 favorites. + enjoys spending intimate time with _his2 $wife, and having _his2 breasts suckled is one of _his2 favorites. <</if>> <<if $milkTap.lactation > 1>>_He2 is practically gushing milk with excitement<<else>>It takes minimal effort to get _his2 milk flowing<</if>>. <<elseif ($milkTap.fetish == "boobs") && ($milkTap.fetishKnown == 1) && ($milkTap.fetishStrength > 60) && ($milkTap.devotion >= -20)>> @@ -124,7 +124,7 @@ Next, you see to $activeSlave.slaveName. <<elseif $activeSlave.relationship == 4>> licks $his lips and smiles as $he approaches $his lover's breasts. This won't be the first time $he's suckled from _him2 like this. <<elseif $activeSlave.relationship == 5>> - licks $his lips and smiles as $he approaches $his wife's breasts. This won't be the first time $he's suckled from _him2 like this. + licks $his lips and smiles as $he approaches $his _wife2's breasts. This won't be the first time $he's suckled from _him2 like this. <</if>> <<elseif $activeSlave.mother == $milkTap.ID>> @@ -183,19 +183,19 @@ Next, you see to $activeSlave.slaveName. Slight moaning emanates from the Fuckdoll as $activeSlave.slaveName drinks from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off _his2 nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off _his2 nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off _his2 nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.rivalryTarget == $activeSlave.ID>> - $milkTap.slaveName grins as $his rival is forced to drink until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with milk. $activeSlave.slaveName struggles against $his bindings until the pressure building in $him overwhelms $him, causing $him to pass out directly into $milkTap.slaveName's cushiony breasts. You quickly remove $him from the nipple before $he drowns<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccupping pathetically<</if>><</if>>. + $milkTap.slaveName grins as _his2 rival is forced to drink until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with milk. $activeSlave.slaveName struggles against $his bindings until the pressure building in $him overwhelms $him, causing $him to pass out directly into $milkTap.slaveName's cushiony breasts. You quickly remove $him from the nipple before $he drowns<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccupping pathetically<</if>><</if>>. <<elseif $milkTap.relationshipTarget == $activeSlave.ID>> <<if $milkTap.relationship == 1>> - $milkTap.slaveName sighs contently as $his friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as _his2 friend drinks deeply from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 2>> - $milkTap.slaveName sighs contently as $his best friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as _his2 best friend drinks deeply from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 3>> - $milkTap.slaveName moans lewdly as $his friend with benefits drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 friend with benefits drinks deeply from _his2 breasts, savoring it despite commonly nursing $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 4>> - $milkTap.slaveName moans lewdly as $his lover drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 lover drinks deeply from _his2 breasts, savoring it despite commonly nursing $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 5>> - $milkTap.slaveName moans lewdly as $his wife drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 $wife drinks deeply from _his2 breasts, savoring it despite commonly nursing $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his _wife2's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his _wife2's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his _wife2's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <</if>> <<elseif $activeSlave.mother == $milkTap.ID>> @@ -405,9 +405,9 @@ The first necessary step is to prepare the cum slave and $his cock and balls. <<elseif $milkTap.relationship == 3>> enjoys getting _his2 dick sucked by _his2 friend with benefits. <<elseif $milkTap.relationship == 4>> - loves getting _his2 dick sucked _his2 lover, something that commonly happens due to _his2 overproduction. + loves getting _his2 dick sucked by _his2 lover, something that commonly happens due to _his2 overproduction. <<elseif $milkTap.relationship == 5>> - loves getting _his2 dick sucked _his2 wife, something that commonly happens due to _his2 overproduction. + loves getting _his2 dick sucked by _his2 $wife, something that commonly happens due to _his2 overproduction. <</if>> <<elseif $activeSlave.mother == $milkTap.ID>> @@ -500,7 +500,7 @@ Next, you see to $activeSlave.slaveName. <<elseif $activeSlave.relationship == 4>> licks $his lips and smiles as $he approaches $his lover's cock. This won't be the first time $he's sucked _his2 dick and swallowed _his2 huge loads. <<elseif $activeSlave.relationship == 5>> - licks $his lips and smiles as $he approaches $his wife's cock. This won't be the first time $he's sucked _his2 dick and swallowed _his2 huge loads. + licks $his lips and smiles as $he approaches $his _wife2's cock. This won't be the first time $he's sucked _his2 dick and swallowed _his2 huge loads. <</if>> <<elseif $activeSlave.mother == $milkTap.ID>> @@ -571,7 +571,7 @@ Next, you see to $activeSlave.slaveName. <<elseif $milkTap.relationship == 4>> $milkTap.slaveName moans lustfully as _his2 lover teases $his dick perfectly with _his2 tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 5>> - $milkTap.slaveName moans lustfully as _his2 wife teases _his2 dick perfectly with $his tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lustfully as _his2 $wife teases _his2 dick perfectly with $his tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his _wife2's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his _wife2's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his _wife2's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <</if>> <<elseif $activeSlave.mother == $milkTap.ID>> diff --git a/src/pregmod/fSlaveSlaveVagConsummate.tw b/src/pregmod/fSlaveSlaveVagConsummate.tw index 2fb51a9ea3f40eeb558682c2a7bfc8456907d4ce..490c3175a8f4f5d9c3c59bba66206d1c0a65d3b4 100644 --- a/src/pregmod/fSlaveSlaveVagConsummate.tw +++ b/src/pregmod/fSlaveSlaveVagConsummate.tw @@ -130,7 +130,7 @@ Next, you see to $activeSlave.slaveName. <<elseif $activeSlave.relationship == 4>> lover's <<else>> - slave wife's + slave _wife2's <</if>> <<if $slaverapistx.dick > 0>>_dicksize penis<<else>>massive clit<</if>> that will be penetrating $him. <<if _incestMood == "Top">> diff --git a/src/pregmod/killSlave.tw b/src/pregmod/killSlave.tw index 93602326e23fcfa11074e16b5fb5b5533924a551..86e46e81a0e839ef7dfb53492291286c3b54fa4e 100644 --- a/src/pregmod/killSlave.tw +++ b/src/pregmod/killSlave.tw @@ -210,7 +210,7 @@ you <<if canHear($activeSlave)>>quietly <</if>>reach behind your desk and pull o <<set $display = 1>> <</if>> <<elseif $activeSlave.relationship == -3>> - Killing one of your slave wives is @@.red;socially unacceptable.@@ In addition, your other devoted slaves are @@.gold;worried@@ that you may not respect their status. + Killing one of your slave $wives is @@.red;socially unacceptable.@@ In addition, your other devoted slaves are @@.gold;worried@@ that you may not respect their status. <<run clearSummaryCache()>> <br><br> <<run repX(-200, "event")>> diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index 33239fca2dc155902bbbdfe7fa9f3a46eb569eb5..b6112e2596680b0dd118862a394dff0c5fc50809 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -146,7 +146,7 @@ You completed the legalities before heading to $incubatorName, knowing the tank <</replace>> <</link>> <<elseif _tempMom.relationship == -3 && (_tempMom.devotion >= -20)>> - <br><<link "Permit your wife to name _his2 $daughter">> + <br><<link "Permit your _wife2 to name _his2 $daughter">> <<replace "#naming">> <<ParentNames _tempMom $activeSlave>> <<set $activeSlave.birthName = $activeSlave.slaveName>> @@ -205,7 +205,7 @@ You completed the legalities before heading to $incubatorName, knowing the tank <</replace>> <</link>> <<elseif _tempDad.relationship == -3 && (_tempDad.devotion >= -20)>> - <br><<link "Permit your wife to name _his2 $daughter">> + <br><<link "Permit your _wife2 to name _his2 $daughter">> <<replace "#naming">> <<ParentNames _tempDad $activeSlave>> <<set $activeSlave.birthName = $activeSlave.slaveName>> diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw index 3f1d2bfc818d2e04b39d1309d9bc1d86b03367b5..ab50868e1557a4d10622580cf1ae480aa02568ea 100644 --- a/src/pregmod/pRaped.tw +++ b/src/pregmod/pRaped.tw @@ -305,7 +305,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong <<if $seeExtreme > 0>> <br><<link "Punitively amputate $his limbs, and then enslave $him">> <<set $activeSlave.health -= 20>> - <<set $activeSlave.amp = 1>> + <<set $activeSlave.amp = 1, $activeSlave.missingLegs = 3, $activeSlave.missingArms = 3>> <<set $activeSlave.heels = 0>> <<set $activeSlave.behavioralFlaw = "odd">> <<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>> diff --git a/src/pregmod/slaveOnSlaveFeedingWorkAround.tw b/src/pregmod/slaveOnSlaveFeedingWorkAround.tw index fbcdcd84565633b88612474f0bc18f8461b82871..3a4092593a7f268094c2b33e8f6885f723034c4e 100644 --- a/src/pregmod/slaveOnSlaveFeedingWorkAround.tw +++ b/src/pregmod/slaveOnSlaveFeedingWorkAround.tw @@ -59,7 +59,7 @@ __2 Liters__ <<case 4>> lover <<case 5>> - slave wife + slave $wife <</switch>> <</if>> <<if $slaves[_i].rivalryTarget == $activeSlave.ID>> @@ -103,7 +103,7 @@ __4 Liters__ <<case 4>> lover <<case 5>> - slave wife + slave $wife <</switch>> <</if>> <<if $slaves[_i].rivalryTarget == $activeSlave.ID>> @@ -146,7 +146,7 @@ __4 Liters__ <<case 4>> lover <<case 5>> - slave wife + slave $wife <</switch>> <</if>> <<if $slaves[_i].rivalryTarget == $activeSlave.ID>> diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw index dd9d583e64e72862b1962a37957ec63e491706af..2d3ffb6877d05a88861311fa25ccdc1477af0546 100644 --- a/src/pregmod/widgets/bodyswapWidgets.tw +++ b/src/pregmod/widgets/bodyswapWidgets.tw @@ -46,6 +46,8 @@ <<set $args[0].waist = $args[1].waist>> <<set $args[0].corsetPiercing = $args[1].corsetPiercing>> <<set $args[0].amp = $args[1].amp>> +<<set $args[0].missingArms = $args[1].missingArms>> +<<set $args[0].missingLegs = $args[1].missingLegs>> <<set $args[0].PLimb = $args[1].PLimb>> <<set $args[0].readyProsthetics = $args[1].readyProsthetics>> <<set $args[0].heels = $args[1].heels>> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 9519ecf29ce1e8f5fdbdbb87ddd42fcde527350b..bba4d94cbcaa639a03bd63e880147749f190b8bf 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -808,9 +808,9 @@ <<setNonlocalPronouns $seeDicks>> <<if $slaves[$i].pregSource == -1 && $slaves[$i].relationship == -3>> <<if (random(1,20) > $suddenBirth)>> - You make sure to find time in your busy schedule to be at your concubine wife's side as $he gives birth to your children, even if it's <<if $slaves[$i].counter.birthsTotal == 0>>to be <</if>> a weekly occurrence. You gently caress $slaves[$i].slaveName's body as $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. You help $him upright and hold your child to $his breasts. The two of you cuddle as you watch your newborn suckle from its mother. Since $he is quite special to you, you allow $him the time to pick out names before $his child has to be taken away. When the time comes to pick up the newborn, the slave servant is surprised to find a name-card affixed to its blanket.<<if $slaves[$i].fetish != "mindbroken">> $He can't help but feel more devoted to $his master after seeing such a touching act. Before you leave, $slaves[$i].slaveName expresses how cute $he found your child and that $he can't wait to see the next one.<</if>> + You make sure to find time in your busy schedule to be at your concubine $wife's side as $he gives birth to your children, even if it's <<if $slaves[$i].counter.birthsTotal == 0>>to be <</if>> a weekly occurrence. You gently caress $slaves[$i].slaveName's body as $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. You help $him upright and hold your child to $his breasts. The two of you cuddle as you watch your newborn suckle from its mother. Since $he is quite special to you, you allow $him the time to pick out names before $his child has to be taken away. When the time comes to pick up the newborn, the slave servant is surprised to find a name-card affixed to its blanket.<<if $slaves[$i].fetish != "mindbroken">> $He can't help but feel more devoted to $his master after seeing such a touching act. Before you leave, $slaves[$i].slaveName expresses how cute $he found your child and that $he can't wait to see the next one.<</if>> <<else>> - Your sleep is awoken by a moist sensation and a loud moan beside you. As you help your concubine wife up, $he can't hold back the coming birth. + Your sleep is awoken by a moist sensation and a loud moan beside you. As you help your concubine $wife up, $he can't hold back the coming birth. <<ClothingBirth>> As you swaddle <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, you cuddle up to the still very gravid $girl. Bringing your child to $his breast, you enjoy each other's comfort until a servant comes to clean up. Since $he is quite special to you, you allow $him the time to pick out names before $his child has to be taken away. The slave servant is somewhat surprised by your actions, but understands those closest to you are afforded luxuries far beyond _hisU peers. <</if>> diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index e275d912f9d04f8bc741a3a9a63782e5f897747d..ae8d24df58f0c9c9d8ff2258a9b95dc3eeff3694 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -223,15 +223,15 @@ <</widget>> <<widget "setPlayerPronouns">> - <<set _pl = ["he", "his", "hers", "him", "himself", "woman", "women", "loli", "girl", "daughter", "sister", - "He", "His", "Hers", "Him", "Himself", "Woman", "Women", "Loli", "Girl", "Daughter", "Sister"]>> + <<set _pl = ["he", "his", "hers", "him", "himself", "woman", "women", "loli", "girl", "daughter", "sister", "wife", "wives", + "He", "His", "Hers", "Him", "Himself", "Woman", "Women", "Loli", "Girl", "Daughter", "Sister", "Wife", "Wives"]>> <<run App.Utils.setLocalPronouns($PC, 'P', _pl)>> <<unset _pl>> <</widget>> <<widget "setAssistantPronouns">> - <<set _apl = ["he", "his", "hers", "him", "himself", "woman", "women", "loli", "girl", "daughter", "sister", - "He", "His", "Hers", "Him", "Himself", "Woman", "Women", "Loli", "Girl", "Daughter", "Sister"]>> + <<set _apl = ["he", "his", "hers", "him", "himself", "woman", "women", "loli", "girl", "daughter", "sister", "wife", "wives", + "He", "His", "Hers", "Him", "Himself", "Woman", "Women", "Loli", "Girl", "Daughter", "Sister", "Wife", "Wives"]>> <<run App.Utils.setLocalPronouns($assistantPronouns, 'A', _apl)>> <<run App.Utils.setLocalPronouns($marketAssistantPronouns, 'M', _apl)>> @@ -252,6 +252,8 @@ <<set _daughterLisp = lispReplace($daughter)>> <<set _sisterLisp = lispReplace($sister)>> <<set _loliLisp = lispReplace($loli)>> + <<set _wifeLisp = lispReplace($wife)>> + <<set _wivesLisp = lispReplace($wives)>> <<set _HeLisp = lispReplace($He)>> <<set _HisLisp = lispReplace($His)>> @@ -260,6 +262,8 @@ <<set _DaughterLisp = lispReplace($Daughter)>> <<set _SisterLisp = lispReplace($Sister)>> <<set _LoliLisp = lispReplace($Loli)>> + <<set _WifeLisp = lispReplace($Wife)>> + <<set _WivesLisp = lispReplace($Wives)>> <<if def _he2>> <<set _secondarySlaveLisp = SlaveStatsChecker.checkForLisp($args[1])>> @@ -271,6 +275,8 @@ <<set _daughter2Lisp = lispReplace(_daughter2)>> <<set _sister2Lisp = lispReplace(_sister2)>> <<set _loli2Lisp = lispReplace(_loli2)>> + <<set _wife2Lisp = lispReplace(_wife2)>> + <<set _wives2Lisp = lispReplace(_wives2)>> <<set _He2Lisp = lispReplace(_He2)>> <<set _His2Lisp = lispReplace(_His2)>> @@ -279,6 +285,8 @@ <<set _Daughter2Lisp = lispReplace(_Daughter2)>> <<set _Sister2Lisp = lispReplace(_Sister2)>> <<set _Loli2Lisp = lispReplace(_Loli2)>> + <<set _Wife2Lisp = lispReplace(_Wife2)>> + <<set _Wives2Lisp = lispReplace(_Wives2)>> <</if>> <</widget>> @@ -292,6 +300,8 @@ <<set _daughterPLisp = lispReplace(_daughterP)>> <<set _sisterPLisp = lispReplace(_sisterP)>> <<set _loliPLisp = lispReplace(_loliP)>> + <<set _wifePLisp = lispReplace(_wifeP)>> + <<set _wivesPLisp = lispReplace(_wivesP)>> <<set _HePLisp = lispReplace(_HeP)>> <<set _HisPLisp = lispReplace(_HisP)>> @@ -300,6 +310,8 @@ <<set _DaughterPLisp = lispReplace(_DaughterP)>> <<set _SisterPLisp = lispReplace(_SisterP)>> <<set _LoliPLisp = lispReplace(_LoliP)>> + <<set _WifePLisp = lispReplace(_WifeP)>> + <<set _WivesPLisp = lispReplace(_WivesP)>> <</widget>> <<widget "setSpokenAssistantPronouns">> @@ -312,6 +324,8 @@ <<set _daughterALisp = lispReplace(_daughterA)>> <<set _sisterALisp = lispReplace(_sisterA)>> <<set _loliALisp = lispReplace(_loliA)>> + <<set _wifeALisp = lispReplace(_wifeA)>> + <<set _wivesALisp = lispReplace(_wivesA)>> <<set _HeALisp = lispReplace(_HeA)>> <<set _HisALisp = lispReplace(_HisA)>> @@ -320,6 +334,8 @@ <<set _DaughterALisp = lispReplace(_DaughterA)>> <<set _SisterALisp = lispReplace(_SisterA)>> <<set _LoliALisp = lispReplace(_LoliA)>> + <<set _WifeALisp = lispReplace(_WifeA)>> + <<set _WivesALisp = lispReplace(_WivesA)>> <</widget>> <<widget "PCAgeImplantAdjustmentUp">> diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw index 2de0d8319a3b09b09d6712dbb3fd872a8e103e73..a4383e7e24ad592270ac5af4629ae43f6fd6ec8d 100644 --- a/src/societies/aztec/slaveSacrifice.tw +++ b/src/societies/aztec/slaveSacrifice.tw @@ -20,7 +20,7 @@ <<elseif ($activeSlave.fetish == "humiliation")>> $He shudders with excitement. "I heard everyone can <<s>>ee me a<<s>> I <<s>>uffer. I hope the public penan<<c>>e will plea<<s>>e the godde<<ss>>." <<elseif ($activeSlave.fetish == "buttslut")>> - $He looks sadly at the floor. "Oh God<<s>>, that mean<<s>> no butt <<s>>e<<x>> for me. I hope Xochiquetzal be plea<<s>>ed by all that <<s>>acrifi<<c>>e." + $He <<if canSee($activeSlave)>>looks sadly at the floor<<else>>tilts $his head downwards sadly<</if>>. "Oh God<<s>>, that mean<<s>> no butt <<s>>e<<x>> for me. I hope Xochiquetzal be plea<<s>>ed by all that <<s>>acrifi<<c>>e." <</if>> <<else>> $He looks determined. "<<Master>>, I'll do my be<<s>>t. No other <<s>>lave will be cleaner for the godde<<ss>> than I. diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index d1fc4b40aba32120bde6c03d16dc98ff9cc48253..fbcf199b5c6e563dd1b9db9b83ab1367c02149d8 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -1126,8 +1126,8 @@ <<if ndef $adamPrinciple>> <<set $adamPrinciple = 0>> <</if>> -<<if ndef $showInches>> - <<set $showInches = 0>> +<<if ndef $showInches || $showInches === 0>> + <<set $showInches = 1>> <</if>> <<if ndef $showNumbers>> <<set $showNumbers = 2>> @@ -3452,6 +3452,10 @@ Setting missing slave variables: <</for>> <</if>> +<<if _Slave.amp == 1>> + <<set _Slave.missingArms = 3, _Slave.missingLegs = 3>> +<</if>> + <<set $slaves[_bci] = _Slave>> <</for>> @@ -3943,4 +3947,4 @@ Done<br> <<set $JobIDArray = resetJobIDArray()>> /* reset NaNArray after BC is run */ -<<set $NaNArray = findNaN()>> +<<set $NaNArray = findNaN()>> \ No newline at end of file diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index f05b33bc907166a74cfe63fc021aae97c21581a2..f7bec979ecd9e99dc8ccabcc9b13a1bb35437c2a 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -538,7 +538,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <</replace>> <<set $activeSlave.clothes = _clothesTemp>> <<if $MixedMarriage == 1 && $activeSlave.relationship == -3 && $arcologies[0].FSPaternalist >= 60>> - 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. + 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. Afterwards, 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. <<run repX(500, "event", $activeSlave)>> <<else>> 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. diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw index baf9ecf70c077433dc453309952a42ead3fc5699..4b3e687f313715bff45a40ec197c601619051997 100644 --- a/src/uncategorized/REFS.tw +++ b/src/uncategorized/REFS.tw @@ -238,7 +238,7 @@ As a result of $arcologies[0].name's adoption of degradationism there has been a remarkable effect on the social status of slaves, with the continued reduction of slave rights taking center stage. However, not all citizens are so keen as to internalize the tenants of degradationism, whether out of misplaced compassion, old habits or adherence to the old world style of relationships. <br><br> - On one particular outing, you come across an elderly male citizen holding the hand of his young slave, seemingly on a date at one of the arcology's prominent promenades. From the ring on the $girl's finger and the modest neckline on $his clothing, it is clear that $his owner is treating $him as if $he is his wife. His obscene treatment of his slave has already drawn a large crowd of shocked onlookers. + On one particular outing, you come across an elderly male citizen holding the hand of his young slave, seemingly on a date at one of the arcology's prominent promenades. From the ring on the $girl's finger and the modest neckline on $his clothing, it is clear that $his owner is treating $him as if $he is his $wife. His obscene treatment of his slave has already drawn a large crowd of shocked onlookers. <<case "physical idealist encounter">> @@ -354,7 +354,7 @@ <</if>> <br><<link "Publicly confront the citizen">> <<replace "#result">> - Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to parade a slave around the arcology as if $he were his wife. To make it clear that you will not be so forgiving of his next transgression, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen.@@ + Your walk up to the citizen is not accompanied by shaking ground or tumultuous fanfare, yet the citizen looks as if death itself has come before him. You don't hurt him physically, instead chastising him publicly in front of his fellow peers who begin to cheer their agreement. You end your tirade of verbal abuse with a reminder that although the man is a citizen of your arcology, that does not give him the impunity to parade a slave around the arcology as if $he were his $wife. To make it clear that you will not be so forgiving of his next transgression, a brace of your security drones hover behind you threateningly. The crowd that gathered @@.green;approve of your rebuke of the citizen.@@ <<run repX(2500, "event")>> <</replace>> <</link>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index ffbf4244180cabadc3980fcb97c59f907bb9688d..d3b07a60b89719bbfafd97ca185e08fb70d15add 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -4336,7 +4336,7 @@ You pass through your slaves' living area as some of them are starting their day <<elseif $activeSlave.relationship >= 4>> <<set _ress = $slaveIndices[$activeSlave.relationshipTarget]>> <<setLocalPronouns $slaves[_ress] 2>> - climbed out of bed. ($activeSlave.slaveName's <<if $activeSlave.relationship == 5>>wife<<else>><<= _girl2>>friend<</if>> + climbed out of bed. ($activeSlave.slaveName's <<if $activeSlave.relationship == 5>>_wife2<<else>><<= _girl2>>friend<</if>> $slaves[_ress].slaveName is still asleep in it, and the shape of _his2 <<if $slaves[_ress].belly >= 120000>>_belly belly is <<elseif $slaves[_ress].boobs > 25000>>immense <<if ($slaves[_ress].boobsImplant/$slaves[_ress].boobs) >= .60>>fake <</if>> breasts are @@ -4862,7 +4862,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <br><<link "Embrace $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You gently grab $his face and stare deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't $his fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your wife into a tight embrace — $him coming back to you is more than enough of a gift; $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you. + You gently grab $his face and stare deeply into $his <<= App.Desc.eyeColor($activeSlave)>> eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't $his fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your $wife into a tight embrace — $him coming back to you is more than enough of a gift; $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you. $He is @@.green;no longer mindbroken@@ and thanks to your care deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you. <<set $activeSlave.devotion = 100, $activeSlave.oldDevotion = 100, $activeSlave.trust = 100, $activeSlave.oldTrust = 100, $activeSlave.sexualQuirk = "romantic", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>> <<set $activeSlave.intelligence = $genePool[_ress].intelligence>> @@ -5434,8 +5434,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<set $slaves[$slaveIndices[$Bodyguard.ID]].devotion += 2>> <<elseif $Concubine != 0 && canWalk($Concubine)>> and gets tackled off of you by $Concubine.slaveName. After a violent struggle, the amorous cow is restrained and leaking cum on your floor. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. $Concubine.slaveName is @@.gold;visibly shaken@@ by the assault and was @@.red;badly beaten@@ by the muscular slave during the fight. - <<set _c = $slaveIndices[$Concubine.ID]>> - <<set $slaves[_c].health -= 40, $slaves[_c].trust -= 5>> + <<set $slaves[$slaveIndices[$Concubine.ID]].health -= 40, $slaves[$slaveIndices[$Concubine.ID]].trust -= 5>> <<else>> and cums directly into your exposed womb. $He backs off, possibly startled by the shouting, giving you the chance to slip away to safety. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile _womanP. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume $he's done $his job well. <<= knockMeUp($PC, 50, 0, $activeSlave.ID)>> @@ -7841,7 +7840,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<EventNameDelink $activeSlave>> <<replace "#result">> The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. - <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 40, $activeSlave.amp = 1, $activeSlave.shoes = "none", $activeSlave.diet = "healthy", $activeSlave.heels = 0>> + <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 40, $activeSlave.amp = 1, $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3, $activeSlave.shoes = "none", $activeSlave.diet = "healthy", $activeSlave.heels = 0>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>> <</replace>> <</link>> @@ -10866,7 +10865,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <</replace>> <</link>><<if ($activeSlave.anus == 0)>> //This option will take $his anal virginity//<</if>> <</if>> -<<if ((($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000) || ($activeSlave.fetish == "cumslut" && $PC.balls > 2) || ($activeSlave.fetish == "boobs" && $PC.boobsBonus == 3)) && $activeSlave.fetishKnown == 1) || ((($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina == 1 && $PC.dick == 0) || ($activeSlave.attrXY > 70 && $activeSlave.attrXX < 50 && $PC.title == 1 && $PC.vagina == 0 && $PC.dick == 1)) && $activeSlave.attrKnown == 1)>> +<<if ((($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000) || ($activeSlave.fetish == "cumslut" && $PC.balls > 2) || ($activeSlave.fetish == "boobs" && $PC.boobsBonus >= 3)) && $activeSlave.fetishKnown == 1) || ((($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina == 1 && $PC.dick == 0) || ($activeSlave.attrXY > 70 && $activeSlave.attrXX < 50 && $PC.title == 1 && $PC.vagina == 0 && $PC.dick == 1)) && $activeSlave.attrKnown == 1)>> <br><<link "Use your body to make $his cage feel even tighter">> <<EventNameDelink $activeSlave>> <<replace "#result">> @@ -10907,7 +10906,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<else>> $He questions what you mean until you strip down and pull $his face directly into your massive balls. $He tries to recoil, bringing $his hands to immense spheres. You catch them and use one to massage your nuts and encourage a nice big load for $him and the other the help jack you off. You can feel $him shaking from the pressure on $his dick. Not only do you paint $him with seed, but you sigh loudly with relief, just to rub it in. <</if>> - <<elseif ($activeSlave.fetish == "boobs" && $PC.boobsBonus == 3)>> + <<elseif ($activeSlave.fetish == "boobs" && $PC.boobsBonus >= 3)>> <<if canSee($activeSlave)>> $He questions what you mean until you pull your arms back, forcing your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts to pop free of your top. $He groans at the sight, $his dick rapidly hardening at the view of your impressive rack. You make sure to play off $his tit fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. <<else>> diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index 9436d80774b755d9e23cecbc6d2408381a039ee4..6bd0adeeaa4e4afc05a20cb26392645ba52d2a71 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -330,7 +330,7 @@ _He2 stiffens with the lewd feeling of the warm fluid pressing into _his2 mouth. After you complete your weekly inspection of <<EventNameLink>>, the $desc asks if $he can beg a favor. Absurd though it sounds, $he does exactly that, saying in $his <<if $activeSlave.voice > 2>>high<<elseif $activeSlave.voice > 1>>feminine<<else>>bimbo<</if>> voice, "<<Master>>, may I a<<s>>k a favor?" You take a moment to look at $him, standing there in front of your desk. $He's devoted to you, willing to please you for the sake of pleasing you, rather than to avoid punishment or make $his own life easier. And $he's very trusting, confident that $he can say such an odd thing without fear. So, you hear $him out. <br><br> -"Thank you, <<Master>>," $he <<say>>s. "I would like to do <<s>>omething for $subSlave.slaveName." You ask if $he's worried about $his <<if $activeSlave.relationship >= 5>>wife<<else>><<= _girl2>>friend<</if>> for some reason. "Oh no, <<Master>>," $he answers hurriedly. "No, no, that came out wrong. It'<<s>> ju<<s>>t that I love _him2 and I want to, you know, get _him2 <<s>>omething or do <<s>>omething <<s>>pe<<c>>ial for _him2. We don't really have <<s>>tuff of our own, <<s>>o I can't give _him2 a pre<<s>>ent, and we already do everything either one of u<<s>> want<<s>> in bed, <<s>>o I can't really think of anything." $He <<if canSee($activeSlave)>>looks<<else>>gazes<</if>> at you hopefully. +"Thank you, <<Master>>," $he <<say>>s. "I would like to do <<s>>omething for $subSlave.slaveName." You ask if $he's worried about $his <<if $activeSlave.relationship >= 5>>_wife2<<else>><<= _girl2>>friend<</if>> for some reason. "Oh no, <<Master>>," $he answers hurriedly. "No, no, that came out wrong. It'<<s>> ju<<s>>t that I love _him2 and I want to, you know, get _him2 <<s>>omething or do <<s>>omething <<s>>pe<<c>>ial for _him2. We don't really have <<s>>tuff of our own, <<s>>o I can't give _him2 a pre<<s>>ent, and we already do everything either one of u<<s>> want<<s>> in bed, <<s>>o I can't really think of anything." $He <<if canSee($activeSlave)>>looks<<else>>gazes<</if>> at you hopefully. <<case "anal cowgirl">> @@ -377,7 +377,7 @@ Surprisingly, the slave on top doesn't seem too unhappy with this. _He2's no sla <</if>> "H-h-hi-i <<if SlaveStatsChecker.checkForLisp($subSlave)>> - <<if $subSlave.custom.titleLisp != "" && $subSlave.custom.titleLisp != 0>>$subSlave.custom.titleLisp<<elseif def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>M-m-ma-a-th-t-ter<<else>>M-m-mi-i-ith-t-r-r-e-es-s-s<</if>>," _he2 lisps + <<if $subSlave.custom.titleLisp != "" && $subSlave.custom.titleLisp != 0>>$subSlave.custom.titleLisp<<elseif def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>M-m-ma-a-th-t-ter<<else>>M-m-mi-i-ith-t-r-r-e-eth-th-th<</if>>," _he2 lisps <<else>> <<if $subSlave.custom.title != "" && $subSlave.custom.title != 0>>$subSlave.custom.title<<elseif def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>M-m-ma-a-st-t-ter<<else>>M-m-mi-i-is-st-r-r-e-es-s-s<</if>>," _he2 says <</if>> @@ -669,7 +669,7 @@ $activeSlave.slaveName coughs and looks doubtful, like $he's mulling over a ques <<set _notVirgin = 0>> <</if>> <<set _belly = bellyAdjective($activeSlave)>> -As you stroll past the best part of the slave living area one evening, you hear a lewd slap, slap, slap coming from the room <<EventNameLink>> and $subSlave.slaveName share. It's quite obvious what they're up to, but you look in anyway. $activeSlave.slaveName has clearly had a long day, and is tired, but $he's being a good <<if $activeSlave.relationship > 4>>wife<<else>>lover<</if>> and letting $subSlave.slaveName use $his body. $activeSlave.slaveName is lying face-down on their bed, arms crossed under $his head, looking quite relaxed. $He has a couple of pillows tucked under $his hips to raise them so that $his <<if $activeSlave.relationship > 4>>wife<<else>>sweetheart<</if>> can fuck $him comfortably<<if $activeSlave.belly >= 5000>> and to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room beneath $him<</if>>. They've obviously been at this for a while. $subSlave.slaveName likes to top and is not gentle at it, and _he2's pounding $activeSlave.slaveName as hard as _he2 can. _He2's <<if $subSlave.muscles > 30>>a very strong girl, and _his2 muscles work noticeably<<elseif $subSlave.muscles > 5>>physically fit, but even so, _he2's showing signs of fatigue<<else>>not very fit, and _he2's gasping tiredly<</if>> as _he2 pistons <<if canPenetrate($subSlave)>>_his2 penis<<else>>the strap-on _he2's wearing<</if>> in and out of the <<if _notVirgin == 1>>asshole<<else>>pussy<</if>> beneath _him2. +As you stroll past the best part of the slave living area one evening, you hear a lewd slap, slap, slap coming from the room <<EventNameLink>> and $subSlave.slaveName share. It's quite obvious what they're up to, but you look in anyway. $activeSlave.slaveName has clearly had a long day, and is tired, but $he's being a good <<if $activeSlave.relationship > 4>>$wife<<else>>lover<</if>> and letting $subSlave.slaveName use $his body. $activeSlave.slaveName is lying face-down on their bed, arms crossed under $his head, looking quite relaxed. $He has a couple of pillows tucked under $his hips to raise them so that $his <<if $activeSlave.relationship > 4>>_wife2<<else>>sweetheart<</if>> can fuck $him comfortably<<if $activeSlave.belly >= 5000>> and to give $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> room beneath $him<</if>>. They've obviously been at this for a while. $subSlave.slaveName likes to top and is not gentle at it, and _he2's pounding $activeSlave.slaveName as hard as _he2 can. _He2's <<if $subSlave.muscles > 30>>a very strong girl, and _his2 muscles work noticeably<<elseif $subSlave.muscles > 5>>physically fit, but even so, _he2's showing signs of fatigue<<else>>not very fit, and _he2's gasping tiredly<</if>> as _he2 pistons <<if canPenetrate($subSlave)>>_his2 penis<<else>>the strap-on _he2's wearing<</if>> in and out of the <<if _notVirgin == 1>>asshole<<else>>pussy<</if>> beneath _him2. <br><br> @@ -735,7 +735,7 @@ For $his part, $activeSlave.slaveName is playing an utterly passive role. $He ev <</if>> <</if>> <</if>> -Being the <<if $activeSlave.relationship > 4>>wife<<else>>lover<</if>> of a lusty fucker like $subSlave.slaveName can be tiring, especially in addition to $his other duties. But despite the vigor, the sex looks quite loving. $activeSlave.slaveName goes on smiling comfortably as <<if $activeSlave.butt > 7>>$his enormous ass ripples<<elseif $activeSlave.butt > 4>>$his heavy ass jiggles<<else>>$his cute butt jiggles a bit<</if>> under each hard slap as $subSlave.slaveName brings _his2 hips down to penetrate $him fully, yet again. +Being the <<if $activeSlave.relationship > 4>>$wife<<else>>lover<</if>> of a lusty fucker like $subSlave.slaveName can be tiring, especially in addition to $his other duties. But despite the vigor, the sex looks quite loving. $activeSlave.slaveName goes on smiling comfortably as <<if $activeSlave.butt > 7>>$his enormous ass ripples<<elseif $activeSlave.butt > 4>>$his heavy ass jiggles<<else>>$his cute butt jiggles a bit<</if>> under each hard slap as $subSlave.slaveName brings _his2 hips down to penetrate $him fully, yet again. <br><br> <<set _belly = bellyAdjective($subSlave)>> @@ -1131,7 +1131,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <</replace>> <<replace "#result">> - Rather than answering $him directly, you tell $assistantName to clear $activeSlave.slaveName's and $subSlave.slaveName's schedules for the evening. $He <<if canSee($activeSlave)>>looks<<else>>smiles<</if>> at you with happy anticipation, but is puzzled when you don't give $him any further orders. "Um, thank you, <<Master>>," $he asks hesitantly. "But, I don't under<<s>>tand. What are we going to do?" Whatever you want, you tell $him. $He furrows $his brow, looking troubled, as though the concept is somehow alien to $him. After some thought, $he brightens and asks if $he can go tell $his <<if $activeSlave.relationship >= 5>>wife<<else>><<= _girl2>>friend<</if>>. $He can, you respond, and the slave bounces over to give you a kiss before running out. It costs you a small sum in upkeep and other trifles to cover an unexpected unavailability of both slaves, but they deserve it. Their busy lives mean that their shifts rarely align exactly, and this is more time than they've had together in a long time. It isn't particularly exciting, but they enjoy themselves. They eat a meal in the kitchen together, watch the sunset from one of the penthouse balconies, make love out there, share a long shower, and then go to bed, spending the rest of the night cuddling and chatting quietly. The next morning, they come to see you hand in hand, and @@.hotpink;thank you in unison.@@ As they leave, $activeSlave.slaveName looks back over $his shoulder at you, and mouths 'that was perfect, <<= WrittenMaster($activeSlave)>>!' + Rather than answering $him directly, you tell $assistantName to clear $activeSlave.slaveName's and $subSlave.slaveName's schedules for the evening. $He <<if canSee($activeSlave)>>looks<<else>>smiles<</if>> at you with happy anticipation, but is puzzled when you don't give $him any further orders. "Um, thank you, <<Master>>," $he asks hesitantly. "But, I don't under<<s>>tand. What are we going to do?" Whatever you want, you tell $him. $He furrows $his brow, looking troubled, as though the concept is somehow alien to $him. After some thought, $he brightens and asks if $he can go tell $his <<if $activeSlave.relationship >= 5>>_wife2<<else>><<= _girl2>>friend<</if>>. $He can, you respond, and the slave bounces over to give you a kiss before running out. It costs you a small sum in upkeep and other trifles to cover an unexpected unavailability of both slaves, but they deserve it. Their busy lives mean that their shifts rarely align exactly, and this is more time than they've had together in a long time. It isn't particularly exciting, but they enjoy themselves. They eat a meal in the kitchen together, watch the sunset from one of the penthouse balconies, make love out there, share a long shower, and then go to bed, spending the rest of the night cuddling and chatting quietly. The next morning, they come to see you hand in hand, and @@.hotpink;thank you in unison.@@ As they leave, $activeSlave.slaveName looks back over $his shoulder at you, and mouths 'That was perfect, <<= WrittenMaster($activeSlave)>>!' <<run cashX(-500, "event", $activeSlave)>> <<set $subSlave.devotion += 2>> <<set $activeSlave.devotion += 2>> @@ -1196,7 +1196,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <<set $subSlave.clothes = _clothesTemp2>> <<replace "#result">> - Rather than answering $him directly, you tell $assistantName to clear $activeSlave.slaveName's and $subSlave.slaveName's schedules for the evening. $He looks at you with happy anticipation, but this is nothing to $his gratitude when you tell $him that you'll arrange a date night for them. Trusted slaves are often seen unchaperoned in your arcology, and there are several establishments that cater to slaveowners who wish to bring their chattel out or even send them out alone. You tell $him you've made a reservation for $him and $his <<if $activeSlave.relationship >= 5>>wife<<else>><<= _girl2>>friend<</if>> at one of the less formal places, an ethnic restaurant that manages to add spice to liquid slave nutrition without ruining its good qualities. They're to spend the night out, and can wear what they like. $He hurries off to collect $his _girl2 and get dressed, but also tries to keep thanking you on $his way out, and almost runs into the door frame as $he goes. + Rather than answering $him directly, you tell $assistantName to clear $activeSlave.slaveName's and $subSlave.slaveName's schedules for the evening. $He looks at you with happy anticipation, but this is nothing to $his gratitude when you tell $him that you'll arrange a date night for them. Trusted slaves are often seen unchaperoned in your arcology, and there are several establishments that cater to slaveowners who wish to bring their chattel out or even send them out alone. You tell $him you've made a reservation for $him and $his <<if $activeSlave.relationship >= 5>>_wife2<<else>><<= _girl2>>friend<</if>> at one of the less formal places, an ethnic restaurant that manages to add spice to liquid slave nutrition without ruining its good qualities. They're to spend the night out, and can wear what they like. $He hurries off to collect $his _girl2 and get dressed, but also tries to keep thanking you on $his way out, and almost runs into the door frame as $he goes. <br><br> Since $he trusts you, they dress very daringly for slaves. That is, they dress about as conservatively as slaves can dress, in comfortable pants and soft sweaters whose high collars they roll down to keep their collars visible. Any hesitations citizens who see them might have are banished by their obvious love for each other, and their total lack of shame about having it seen. Indeed, as the night wears on they attract more than a few @@.green;admiring glances@@ from citizens who envy you the favors of the pair of <<if $girl == _girl2>>$girl<<else>>slave<</if>>s occupying one side of the corner booth. After all, they'd rather lean against each other than look at each other from across a table. The next day, they both come to you individually and @@.mediumaquamarine;thank you almost gravely,@@ quite aware of the trust you've placed in them. <<run cashX(-1000, "event", $activeSlave)>> @@ -1709,7 +1709,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <<else>> and thrusting hips get _him2 moving again, too. <</if>> - Beneath _him2, $activeSlave.slaveName shifts uncomfortably at the resumed sex and the extra weight. To relieve $him, you haul $his <<if $activeSlave.relationship > 4>>wife<<else>>lover<</if>> into a more upright position so _he2 can fuck and be fucked while straddling $activeSlave.slaveName's pressed-together thighs. You fuck $subSlave.slaveName just as hard as _he2 was fucking $activeSlave.slaveName, taking your pleasure from _him2 without mercy. Despite this, the sexed-out slave orgasms again. + Beneath _him2, $activeSlave.slaveName shifts uncomfortably at the resumed sex and the extra weight. To relieve $him, you haul $his <<if $activeSlave.relationship > 4>>_wife2<<else>>lover<</if>> into a more upright position so _he2 can fuck and be fucked while straddling $activeSlave.slaveName's pressed-together thighs. You fuck $subSlave.slaveName just as hard as _he2 was fucking $activeSlave.slaveName, taking your pleasure from _him2 without mercy. Despite this, the sexed-out slave orgasms again. <<if ($PC.dick == 1) && (canPenetrate($subSlave))>>Deciding to really fill $activeSlave.slaveName, you shove $subSlave.slaveName's quivering body off to one side without ceremony, shove yourself inside the $desc on the bottom, and add your cum to the two loads already inside $him.<<else>>You climax yourself, and then stand.<</if>> Pleased, you head off to find more amusement, leaving the sex-stained slaves dozing in each other's arms, @@.hotpink;not thinking for a moment@@ about how profoundly sexual pleasure dominates their lives. <<= VCheck.Simple()>> @@ -1734,7 +1734,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <br><<link "Rinse off with them">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that they definitely need to rinse off before bed. They both start with surprise and then greet you as best they can, though $subSlave.slaveName groans a little at having to get up so soon after exhausting _himself2 and then climaxing. Giggling, $activeSlave.slaveName heaves _him2 to _his2 feet, and between the two of you, you get _him2 to the showers. _He2's really spent; _his2 legs are wobbly, and _he2 slithers down to crouch under the warm water as soon as _he2 can. Uncoordinated, _he2 fumbles for the soap and washes _his2 sore body, only vaguely noticing the sex going on mere <<if $showInches == 2>>inches<<else>>centimeters<</if>> over _his2 head. Since $activeSlave.slaveName was being such a good $girl and looking after $his <<if $activeSlave.relationship > 4>>wife's<<else>>lover's<</if>> needs, you take $him in the way $he likes it best, + You announce that they definitely need to rinse off before bed. They both start with surprise and then greet you as best they can, though $subSlave.slaveName groans a little at having to get up so soon after exhausting _himself2 and then climaxing. Giggling, $activeSlave.slaveName heaves _him2 to _his2 feet, and between the two of you, you get _him2 to the showers. _He2's really spent; _his2 legs are wobbly, and _he2 slithers down to crouch under the warm water as soon as _he2 can. Uncoordinated, _he2 fumbles for the soap and washes _his2 sore body, only vaguely noticing the sex going on mere <<if $showInches == 2>>inches<<else>>centimeters<</if>> over _his2 head. Since $activeSlave.slaveName was being such a good $girl and looking after $his <<if $activeSlave.relationship > 4>>_wife2's<<else>>lover's<</if>> needs, you take $him in the way $he likes it best, <<switch $activeSlave.fetish>> <<case "submissive">> holding the submissive $desc up against the shower wall and giving $him a second reaming. diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw index 9cc7a420f1f8ad47e57a87d7e1c67a24c672e983..e58bc1a485eaa1e43b107cde0cfcbad03b8c4267 100644 --- a/src/uncategorized/REroyalblood.tw +++ b/src/uncategorized/REroyalblood.tw @@ -161,7 +161,7 @@ It seems a bastion of the old world has fallen, a royal family of ancient blood Of course, nothing in the Free Cities is free and international aid is no exception. This new arcology owner is no fool, however, and has outlined a number of rewards to be delivered to his most generous benefactors. -Though the King himself is dead, murdered in his bed by bloodthirsty revolutionaries, the rest of his family and the majority of his court have been captured and enslaved by their former subjects. The new arcology owner, having decided that a large injection of credits or a shipment of goods is superior to deflowering a royal pussy or asshole, has directed his followers to slake their lust and vengeance on the King's wife and court rather than his children, though they too are past the age of majority. +Though the King himself is dead, murdered in his bed by bloodthirsty revolutionaries, the rest of his family and the majority of his court have been captured and enslaved by their former subjects. The new arcology owner, having decided that a large injection of credits or a shipment of goods is superior to deflowering a royal pussy or asshole, has directed his followers to slake their lust and vengeance on the King's _wife3 and court rather than his children, though they too are past the age of majority. <br><br> diff --git a/src/uncategorized/addCustomDescriptors.tw b/src/uncategorized/addCustomDescriptors.tw index 2e2b32999e74e7081bb68e5e33359bdf9245a69a..e22ab4293864c2f0efdc3dbadf169d5f52567cb4 100644 --- a/src/uncategorized/addCustomDescriptors.tw +++ b/src/uncategorized/addCustomDescriptors.tw @@ -72,8 +72,9 @@ You may enter custom descriptors for your slave's hair color, hair style, tattoo <<for _i = 0; _i < $slaves.length; _i++>> <<if $activeSlave.relationshipTarget == $slaves[_i].ID>> <<if $slaves[_i].slaveSurname>> + <<setLocalPronouns $slaves[_i] 2>> <<if $activeSlave.slaveSurname != $slaves[_i].slaveSurname>> - | <<link "Give $him $his wife's surname" "Rename">><<set $activeSlave.slaveSurname = $slaves[_i].slaveSurname>><</link>> + | <<link "Give $him $his _wife2's surname" "Rename">><<set $activeSlave.slaveSurname = $slaves[_i].slaveSurname>><</link>> <<break>> <</if>> <</if>> diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw index 7e9b15e38eadb1f06d75325ac8358c8b2a0034a3..d7fad6a263d679957606d93fce993dd451e83648 100644 --- a/src/uncategorized/assistantEvents.tw +++ b/src/uncategorized/assistantEvents.tw @@ -1757,7 +1757,7 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> would be a lovely vessel for _hisA young. $assistantName wastes no time to unraveling and entangling the excited new _girlM. "My my, aren't you frisky?" _heM flirts, caressing a rather phallic tentacle. "I bet you'd love to fill me with these, wouldn't you?" _HeM squirms, _hisM skirt falling down low enough to reveal _hisM moist pussy. "Fill me! Be my lover! My body is YOURS!" $assistantName drives as many tentacles into _hisM body as physically possible before enclosing the lust crazed _girlM within _hisA body. $assistantName reverts to _hisA human figure, albeit with an immense, pulsating stomach, and begins to slowly waddle back to _hisA lair. <<case "amazon">> - would be a good partner. $assistantName laughs nervously and turns to the new tribes<<= _womanM>>, saying "Um, would you keep my fireside? I'm, um, very strong." The market assistant's avatar smiles and kisses _himA. "And you're very beautiful," _heM says, placing the amazon's hands on _hisM bare breasts. The amazon sweeps _hisA new tribal wife up into _hisA arms with a shout of triumph. + would be a good partner. $assistantName laughs nervously and turns to the new tribes<<= _womanM>>, saying "Um, would you keep my fireside? I'm, um, very strong." The market assistant's avatar smiles and kisses _himA. "And you're very beautiful," _heM says, placing the amazon's hands on _hisM bare breasts. The amazon sweeps _hisA new tribal _wifeM up into _hisA arms with a shout of triumph. <</switch>> <<set $marketAssistantRelationship = "romantic">> <</replace>> @@ -1844,7 +1844,7 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> becoming an obvious sibling of $assistantName's avatar. $assistantName turns to face _hisA '_sisterM', who responds with an uncertain "_SisterA? You haven't been... right, lately. Are you okay?" _HeM barely has a chance to scream as $assistantName's body splits open, _hisA interior tentacles wrapping around the hapless _girlM and yanking _himM into the waiting maw. _HeA reforms into the _sisterM's appearance, albeit with a massive, struggling belly. It seems _heA is keeping _himM for some nefarious purpose. <<case "amazon">> - becoming an obvious sibling of $assistantName's avatar, though the new avatar is a tribe wife rather than a muscle<<= _girlA>>, with huge breasts and broad hips. $assistantName grabs _hisA _sisterM by the shoulders without preamble and plants a kiss on _hisM lips. They need no introduction, and after a short time, $assistantName carries _hisA sibling conquest away to have _hisA way with _himM. + becoming an obvious sibling of $assistantName's avatar, though the new avatar is a tribe _wifeM rather than a muscle<<= _girlA>>, with huge breasts and broad hips. $assistantName grabs _hisA _sisterM by the shoulders without preamble and plants a kiss on _hisM lips. They need no introduction, and after a short time, $assistantName carries _hisA sibling conquest away to have _hisA way with _himM. <</switch>> <<set $marketAssistantRelationship = "incestuous">> <</replace>> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index c68bdefa7f9fff2f9be5b520c80ffd2a7181721b..759b8a7ee50dad5a3597e18a66cbee019bd7e527 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -44,7 +44,7 @@ <</if>> <<switch $scarDesign.local>> <<case "whip">> - Targetting a single area with a whip is not easy. You set the mood by carefully arranging candles drippping on to a whimpering $activeSlave.slaveName, then got $his attention with a quick <<if canSee($activeSLave)>>wave<<elseif canHear($activeSlave)>>crack<<else>>tap<</if>> of the whip. One by one, you carefully snuffed out the candles, flicking hot wax as you went. After pausing a moment, you prepared to leave your mark. + Targetting a single area with a whip is not easy. You set the mood by carefully arranging candles dripping on to a whimpering $activeSlave.slaveName, then got $his attention with a quick <<if canSee($activeSLave)>>wave<<elseif canHear($activeSlave)>>crack<<else>>tap<</if>> of the whip. One by one, you carefully snuffed out the candles, flicking hot wax as you went. After pausing a moment, you prepared to leave your mark. <<if ["penis", "vagina"].includes($scarTarget.local)>> <<if $activeSlave.dick > 4 && $seeDicks>> $His dick was large enough that it was not too difficult to hit, diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw index f0e61b69cefcfb1b40340adcef3c370aaaace1d9..1b61a53fd18417dcd7811cb516b23da88ce47b74 100644 --- a/src/uncategorized/brothelReport.tw +++ b/src/uncategorized/brothelReport.tw @@ -49,7 +49,7 @@ <<setLocalPronouns $Madam>> <<= SlaveFullName($Madam)>> is serving as the Madam. <<if $Madam.relationship == -3 && $Madam.devotion > 50>> - As your loving wife, $he does $his best to attract attention to your brothel. + As your loving $wife, $he does $his best to attract attention to your brothel. <<set $madamCashBonus += 0.25>> <</if>> <<if (_FLsFetish == 1)>> diff --git a/src/uncategorized/cellblockReport.tw b/src/uncategorized/cellblockReport.tw index 738c9baf75e6c4a0da0bc26d316d4b56fe9fd569..fc602e4504dbfb9ea82b768deb455f30b92bf64c 100644 --- a/src/uncategorized/cellblockReport.tw +++ b/src/uncategorized/cellblockReport.tw @@ -50,7 +50,7 @@ <<= SlaveFullName($Wardeness)>> is serving as the Wardeness. <<if $Wardeness.relationship == -3 && $Wardeness.devotion > 50>> <<set _devBonus++, _trustMalus++, _idleBonus++>> - As your wife, $he tries $his best to break the disobedient slaves to your will. + As your $wife, $he tries $his best to break the disobedient slaves to your will. <</if>> <<if (_FLsFetish == 1)>> One day $he demands obedience. The next day $he strikes a slave when it isn't given. The next, $he seems more excited than embarrassed when beating a prisoner. Soon, $he's looking for an excuse to punish. $He's @@.pink;become more of a sadist.@@ diff --git a/src/uncategorized/clinicReport.tw b/src/uncategorized/clinicReport.tw index 43590ad2ad20bcd565e5bf1c0324e05ae1f8142b..ee7c25f5fa2edd8944d84cac0d1dcc24efa9b316 100644 --- a/src/uncategorized/clinicReport.tw +++ b/src/uncategorized/clinicReport.tw @@ -42,7 +42,7 @@ <<setLocalPronouns $Nurse>> <<= SlaveFullName($Nurse)>> is serving as the clinical nurse. <<if $Nurse.relationship == -3 && $Nurse.devotion > 50>> - $He does $his best to be a caring and nurturing wife. + $He does $his best to be a caring and nurturing $wife. <<set _healthBonus += 2>> <</if>> <<if (_FLsFetish == 1)>> diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw index ac6659bff4170027c531bc52a908e815c535086f..df6e2576119de927906fd058046e9377a92e3101 100644 --- a/src/uncategorized/clubReport.tw +++ b/src/uncategorized/clubReport.tw @@ -49,7 +49,7 @@ <<setLocalPronouns $DJ>> <<= SlaveFullName($DJ)>> is performing as the DJ. <<if $DJ.relationship == -3 && $DJ.devotion > 50>> - $He tries $his best to be your energetic, cheerful wife. + $He tries $his best to be your energetic, cheerful $wife. <</if>> <<if (_FLsFetish == 1)>> $He's expected to be the innovative, beautiful DJ spinning beats one minute, and come out of $his booth to grind on the floor the next; $he enjoys the interplay, and finds greater @@.lightcoral;pleasure in exhibitionism.@@ diff --git a/src/uncategorized/customSlave.tw b/src/uncategorized/customSlave.tw index 5b86c52805c35817d3e3fd4a4ffa9b99622e3da1..2e22d22bef2166f750ef02785217997f901dd6ff 100644 --- a/src/uncategorized/customSlave.tw +++ b/src/uncategorized/customSlave.tw @@ -1243,11 +1243,15 @@ Skin tone: <span id = "skin"> </span> <<link "Limbless">> <<set $customSlave.amp = 1>> + <<set $customSlave.missingArms = 3>> + <<set $customSlave.missingLegs = 3>> <<CustomSlaveAmp>> <</link>> | <<link "Limbed">> <<set $customSlave.amp = 0>> + <<set $customSlave.missingArms = 0>> + <<set $customSlave.missingLegs = 0>> <<CustomSlaveAmp>> <</link>> diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw index 32cec817a25be574cccb3c7c05ea1a39e44c399e..7ea3ebae45d64f2d62a5982531e1063fbfe9dbf8 100644 --- a/src/uncategorized/dairyReport.tw +++ b/src/uncategorized/dairyReport.tw @@ -151,7 +151,7 @@ <<= SlaveFullName($Milkmaid)>> is serving as your Milkmaid. <<if $Milkmaid.relationship == -3 && $Milkmaid.devotion > 50>> <<set $milkmaidDevotionBonus += 2, $milkmaidTrustBonus += 2>> - $He tries $his best to be your perfect farmwife. + $He tries $his best to be your perfect farm<<= $wife>>. <</if>> <<if _milkmaidImpregnated > 0>> It's $his responsibility to keep $his charges pregnant, and $he constantly diff --git a/src/uncategorized/descriptionOptions.tw b/src/uncategorized/descriptionOptions.tw index 001684d01a731ca5bdc81278c121ded40148bba6..fd2ea63df746db56e36749784d71f118ef3cf16e 100644 --- a/src/uncategorized/descriptionOptions.tw +++ b/src/uncategorized/descriptionOptions.tw @@ -13,10 +13,9 @@ <<set $storedLink = "Slave Interact">> <<else>> <<set $storedLink = "Options">> - <</if>> -<<else>> - <<set $nextLink = $storedLink>> + <</if>> <</if>> +<<set $nextLink = $storedLink>> //These options will affect both the long form description of each slave and the miniscenes available from the main menu.// @@ -103,9 +102,8 @@ <</options>> <<options $showInches>> Height and length units are in - <<option 2 "Inches">> - <<option 1 "Centimeters">> - <<option 0 "Both units">> + <<option 2 "Imperial">> + <<option 1 "Metric">> <</options>> <div class="subHeading"> diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index a37c7e3af444a8a7af9ec157f5bebd0486720940..a44ccee34901868783081e710115e6d4d63a91aa 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -218,7 +218,7 @@ is <<elseif $activeSlave.relationship <= 4>> ''@@.lightgreen;<<= SlaveFullName($slaves[_lsd])>>'s lover;@@'' the rules <<if $activeSlave.relationshipRules == "permissive">>encourage<<else>> discourage<</if>> their passionate relationship. <<elseif $slaves[_lsd].relationship > 4>> - ''@@.lightgreen;<<= SlaveFullName($slaves[_lsd])>>'s slave wife;@@'' the rules <<if $activeSlave.relationshipRules == "permissive">>encourage<<else>> discourage<</if>> marital bliss. + ''@@.lightgreen;<<= SlaveFullName($slaves[_lsd])>>'s slave $wife;@@'' the rules <<if $activeSlave.relationshipRules == "permissive">>encourage<<else>> discourage<</if>> marital bliss. <</if>> <</if>> <<elseif $activeSlave.fuckdoll == 0>> @@ -249,7 +249,7 @@ is <<elseif $activeSlave.livingRules == "normal">> $He sleeps on a cot, <<elseif $activeSlave.relationship >= 4>> - $He has $his own room, which $he shares with $his <<if $activeSlave.relationship == 5>>wife<<else>><<= _girl2>>friend<</if>> whenever they can manage it, + $He has $his own room, which $he shares with $his <<if $activeSlave.relationship == 5>>_wife2<<else>><<= _girl2>>friend<</if>> whenever they can manage it, <<else>> $He sleeps in $his own little room, <</if>> @@ -257,7 +257,7 @@ is and $he is not allowed to masturbate or proposition <<if ($activeSlave.relationshipRules == "permissive")>> <<if ($activeSlave.relationship == 5)>> - slaves other than $his wife. + slaves other than $his _wife2. <<elseif ($activeSlave.relationship == 4)>> slaves other than $his <<= _girl2>>friend. <<elseif ($activeSlave.relationship == 3)>> diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw index 9d2883e48224b08a133877fb64a2958de740d4b2..32ffe5bcec7be2abe31626a15b4d004a0e7c2f83 100644 --- a/src/uncategorized/matchmaking.tw +++ b/src/uncategorized/matchmaking.tw @@ -41,6 +41,7 @@ Of course, you could marry $him yourself, since you've decided to enable marriag <<replace "#result">> <<run Enunciate($eventSlave)>> +<<setSpokenLocalPronouns $eventSlave $eventSlave>> <<set $weddingSlaveID = $eventSlave.ID>> @@ -49,28 +50,28 @@ You tell $eventSlave.slaveName that you're going to marry $him. (A proposal, of $he says, "Thank you, <<Master>>. I am going to do my be<<s>>t to be a <<if ($eventSlave.fetishKnown == 1) && ($eventSlave.fetishStrength > 60)>> <<if ($eventSlave.fetish == "submissive")>> - perfect <<s>>ubmi<<ss>>ive wife to you, + perfect <<s>>ubmi<<ss>>ive <<wife>> to you, <<elseif ($eventSlave.fetish == "cumslut")>> - perfect oral wifey, + perfect oral <<wife>>, <<elseif ($eventSlave.fetish == "humiliation")>> - hot wife for you, + hot <<wife>> for you, <<elseif ($eventSlave.fetish == "buttslut")>> - perfect little anal wifey, + perfect little anal <<wife>>, <<elseif ($eventSlave.fetish == "boobs")>> - <<if $eventSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> wife + <<if $eventSlave.boobs > 800>>perfect big-boobed<<else>>perfect-boobed<</if>> <<wife>> <<elseif ($eventSlave.fetish == "pregnancy")>> - perfect barefoot breeding wife, + perfect barefoot breeding <<wife>>, <<elseif ($eventSlave.fetish == "dom")>> - perfect, you know, <<sh>>aring wife with other <<s>>lave<<s>>, + perfect, you know, <<sh>>aring <<wife>> with other <<s>>lave<<s>>, <<elseif ($eventSlave.fetish == "sadist")>> - perfect wife to u<<s>>e on other <<s>>lave<<s>>, + perfect <<wife>> to u<<s>>e on other <<s>>lave<<s>>, <<elseif ($eventSlave.fetish == "masochist")>> - good, beaten wife, + good, beaten <<wife>>, <<else>> - good wife, + good <<wife>>, <</if>> <<else>> - good wife, + good <<wife>>, <</if>> <<Master>>. Oh, thank you, <<Master>>," $he blubbers, and starts crying again. <<elseif $eventSlave.amp != 1>> @@ -127,9 +128,9 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <</if>> <span id="result2"> -<br><<link "Just redesignate $him as your slave wife">> +<br><<link "Just redesignate $him as your slave $wife">> <<replace "#result2">> - You order $assistantName to simply redesignate $eventSlave.slaveName as your slave wife. + You order $assistantName to simply redesignate $eventSlave.slaveName as your slave $wife. <<if $assistant == 0>> "Slave redesignated," _heA responds immediately. The thing is done. <<else>> @@ -158,13 +159,13 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <<elseif $assistantAppearance == "cherub">> _HisA avatar claps _hisA hands together, emitting a burst of light. <<elseif $assistantAppearance == "incubus">> - _HisA avatar flick the tip of _hisA penis and blows _hisA load towards the both of you. + _HisA avatar flicks the tip of _hisA penis and blows _hisA load towards the both of you. <<elseif $assistantAppearance == "succubus">> _HisA avatar starts to masturbate furiously and orgasms lewdly. <<elseif $assistantAppearance == "imp">> _HisA avatar claps _hisA hands together, emitting a burst of darkness. <<elseif $assistantAppearance == "witch">> - _HisA avatar pulls out _hisA spell book and attempts a spell to bind you two; _heA manages to conjure a large ring around _himA, pinning _hisA arms to _hisA sides. + _HisA avatar pulls out _hisA spell book and attempts a spell to bind you two; _heA manages to conjure a large ring around _himselfA, pinning _hisA arms to _hisA sides. <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> _HisA avatar splits open to reveal a number of tentacles and wraps them around each other. <<else>> @@ -178,7 +179,7 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <<link "Give $him your surname">> <<replace "#surnaming">> <<set $eventSlave.slaveSurname = $PC.surname, $eventSlave.devotion += 5, $eventSlave.trust += 5>> - You also command $assistantName to rename your new slave wife $eventSlave.slaveName $eventSlave.slaveSurname. The new Mrs. $eventSlave.slaveSurname <<if canHear($eventSlave)>>hears<<else>>understands<</if>> this, of course, and breaks down again. Being brusquely redesignated as your slave wife was such a sterile experience that $he wasn't sure it was real, and hearing that $he's to take your surname @@.mediumaquamarine;reassures $him@@ that it is. Not to mention, $he might be a $desc, but $he's still a $girl, and hearing that $he wouldn't get a decent wedding did disappoint $him, but this makes up for it. You might not be all that expressive, but @@.hotpink;$he's your wife,@@ and that's what matters to $him. + You also command $assistantName to rename your new slave $wife $eventSlave.slaveName $eventSlave.slaveSurname. The new Mrs. $eventSlave.slaveSurname <<if canHear($eventSlave)>>hears<<else>>understands<</if>> this, of course, and breaks down again. Being brusquely redesignated as your slave $wife was such a sterile experience that $he wasn't sure it was real, and hearing that $he's to take your surname @@.mediumaquamarine;reassures $him@@ that it is. Not to mention, $he might be a $desc, but $he's still a $girl, and hearing that $he wouldn't get a decent wedding did disappoint $him, but this makes up for it. You might not be all that expressive, but @@.hotpink;$he's your $wife,@@ and that's what matters to $him. <<set $activeSlave = $eventSlave>> <</replace>> <</link>> @@ -294,33 +295,33 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> "To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. $assistantName's avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of $eventSlave.slaveName. $assistantName's two avatars begin copying you and $eventSlave.slaveName's actions perfectly. <<else>> - "To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave wife's efforts. + "To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave $wife's efforts. <</if>> "Done," _heA says when you climax. "Enjoy your <<if ($eventSlave.fetishKnown == 1) && ($eventSlave.fetishStrength > 60)>> <<if ($eventSlave.fetish == "submissive")>> - submissive slave wife!" + submissive slave $wife!" <<elseif ($eventSlave.fetish == "cumslut")>> - slave wife's mouth!" + slave $wife's mouth!" <<elseif ($eventSlave.fetish == "humiliation")>> - exhibitionist slave wife!" + exhibitionist slave $wife!" <<elseif ($eventSlave.fetish == "buttslut")>> - slave wife's butthole!" + slave $wife's butthole!" <<elseif ($eventSlave.fetish == "boobs")>> - slave wife's boobs!" + slave $wife's boobs!" <<elseif ($eventSlave.fetish == "pregnancy")>> - breeder wife!" + breeder $wife!" <<elseif ($eventSlave.fetish == "dom")>> - slave wife's aggression!" + slave $wife's aggression!" <<elseif ($eventSlave.fetish == "sadist")>> - slave wife's sadistic tendencies!" + slave $wife's sadistic tendencies!" <<elseif ($eventSlave.fetish == "masochist")>> - slave wife's pain!" + slave $wife's pain!" <<else>> - slave wife!" + slave $wife!" <</if>> <<else>> - slave wife!" + slave $wife!" <</if>> <</if>> <<set $eventSlave.relationship = -3>> @@ -329,7 +330,7 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <<link "Give $him your surname">> <<replace "#surnaming">> <<set $eventSlave.slaveSurname = $PC.surname, $eventSlave.devotion += 5, $eventSlave.trust += 5>> - Before you get too distracted, you tell your lovely new wife that $he's now to be known as $eventSlave.slaveName $eventSlave.slaveSurname. It would be an understatement to say $he's delighted. $He's a good $desc, but even $he has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This @@.mediumaquamarine;reassures $him@@ that it is. $His special day probably wasn't exactly like $he might once have imagined it, but $he obviously thinks it's been @@.hotpink;very nice,@@ all things considered. + Before you get too distracted, you tell your lovely new $wife that $he's now to be known as $eventSlave.slaveName $eventSlave.slaveSurname. It would be an understatement to say $he's delighted. $He's a good $desc, but even $he has to retain a kernel of doubt about whether a marriage between an owner and a piece of property is really worth much. This @@.mediumaquamarine;reassures $him@@ that it is. $His special day probably wasn't exactly like $he might once have imagined it, but $he obviously thinks it's been @@.hotpink;very nice,@@ all things considered. <<if canTalk($eventSlave)>>"$eventSlave.slaveName $eventSlave.slaveSurname," $he murmurs to $himself occasionally, smiling.<</if>> <<set $activeSlave = $eventSlave>> <</replace>> diff --git a/src/uncategorized/multiImplant.tw b/src/uncategorized/multiImplant.tw index be6ae3ddaf044bb77c93ccc8b449af3ac77f8abb..0028b375cdd097655f21076717afc61380e9b0f6 100644 --- a/src/uncategorized/multiImplant.tw +++ b/src/uncategorized/multiImplant.tw @@ -1064,35 +1064,35 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<else>> <<if _p.id == "basicL">> <<if $activeSlave.amp > 0>> - <<set $activeSlave.amp = -1, $prostheticsConfig = "basicPLimbs">> + <<set $activeSlave.amp = -1, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "basicPLimbs">> <<include "Prosthetics Configuration">> <<else>> //Since $he already has more advanced prosthetic limbs attached the <<= setup.prosthetics.basicL.name>> will be put into storage.// <</if>> <<elseif _p.id == "sexL">> <<if $activeSlave.amp >= -1>> - <<set $activeSlave.amp = -2, $prostheticsConfig = "sexPLimbs">> + <<set $activeSlave.amp = -2, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "sexPLimbs">> <<include "Prosthetics Configuration">> <<else>> //Since $he already has advanced prosthetic limbs attached the <<= setup.prosthetics.sexL.name>> will be put into storage.// <</if>> <<elseif _p.id == "beautyL">> <<if $activeSlave.amp >= -1>> - <<set $activeSlave.amp = -3, $prostheticsConfig = "beautyPLimbs">> + <<set $activeSlave.amp = -3, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "beautyPLimbs">> <<include "Prosthetics Configuration">> <<else>> //Since $he already has advanced prosthetic limbs attached the <<= setup.prosthetics.beautyL.name>> will be put into storage.// <</if>> <<elseif _p.id == "combatL">> <<if $activeSlave.amp >= -1>> - <<set $activeSlave.amp = -4, $prostheticsConfig = "combatPLimbs">> + <<set $activeSlave.amp = -4, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "combatPLimbs">> <<include "Prosthetics Configuration">> <<else>> //Since $he already has advanced prosthetic limbs attached the <<= setup.prosthetics.combatL.name>> will be put into storage.// <</if>> <<else>> <<if $activeSlave.PLimb == 2>> - <<set $activeSlave.amp = -5, $prostheticsConfig = "cyberPLimbs">> + <<set $activeSlave.amp = -5, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $prostheticsConfig = "cyberPLimbs">> <<include "Prosthetics Configuration">> <<else>> //Since $he must have <<= addA(setup.prosthetics.interfaceP2.name)>> installed to attach cybernetic limbs the <<= setup.prosthetics.cyberneticL.name>> will be put into storage.// diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index bec5870b44b6d7d1b6e4dafe723ee58c22be10b9..d504c68148a1bd7e18027484b95791ebafdfde32 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -1299,7 +1299,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<else>> twists and turns, but without limbs is powerless to escape the curling whip. <</if>> - If $he didn't know $he was a slave before, @@.mediumorchid;$he does now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to prove it. What $he doesn't yet know is just how permanent this lashing's effects will be. The level of violence and the coating you used will leave $him scarred with the marks of slavery forever. + If $he didn't know $he was a slave before, @@.mediumorchid;$he does now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to prove it. What $he doesn't yet know is just how permanent this lashing's effects will be. The level of violence and the coating you used will leave $him scarred with the marks of slavery forever. <<if ($arcologies[0].FSSubjugationistRace == $activeSlave.race) && ($arcologies[0].FSSubjugationist > 0)>> Society @@.green;approves@@ of your purchase and whipping of an inferior $activeSlave.race person; this advances the idea that $activeSlave.race people ought to be enslaved. <<= FutureSocieties.Change("Subjugationist", 2)>> @@ -1312,7 +1312,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << | <<link "Scar $him on the _scarTarget">> <<replace "#introResult">> - You drag $him to the body modification studio and strap $him down with $his _scarTarget clear and defenseless. $He doesn't understand what's coming for a while, even as disinfectant is applied to $his _scarTarget. You have a wide selection of tools to create scars, the trick is to keep the wound from healing correctly afterward. Of course, $he has no way of knowing that the pain you are inflicting as you cut into $his flesh will leave such a permanent mark, but the basic message is clear: if $he didn't know $he was a slave before, @@.mediumorchid;$he does now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to prove it. + You drag $him to the body modification studio and strap $him down with $his _scarTarget clear and defenseless. $He doesn't understand what's coming for a while, even as disinfectant is applied to $his _scarTarget. You have a wide selection of tools to create scars, the trick is to keep the wound from healing correctly afterwards. Of course, $he has no way of knowing that the pain you are inflicting as you cut into $his flesh will leave such a permanent mark, but the basic message is clear: if $he didn't know $he was a slave before, @@.mediumorchid;$he does now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to prove it. <<if ($arcologies[0].FSSubjugationistRace == $activeSlave.race) && ($arcologies[0].FSSubjugationist > 0)>> Society @@.green;approves@@ of your purchase and scarring of an inferior $activeSlave.race person; this advances the idea that $activeSlave.race people ought to be enslaved. <<= FutureSocieties.Change("Subjugationist", 2)>> diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw index 0ba7477a3176b751381f5c224c0201df10a03955..90714a769a2580eb3340ecf990382f75b06db4bd 100644 --- a/src/uncategorized/options.tw +++ b/src/uncategorized/options.tw @@ -160,13 +160,11 @@ This save was created using FC version $ver build $releaseID. <<option -1 "Below">> <</options>> - <div class="subHeading"> <<options $newModelUI>> New Model UI <<option 1 "Enabled">> <<option 0 "Disabled">> <</options>> - </div> <<options $seeArcology>> Main menu arcology description @@ -223,7 +221,6 @@ This save was created using FC version $ver build $releaseID. ''Sidebar'' </div> - <div class="subHeading"> <<if ndef $sideBarOptions.compact>> <<set $sideBarOptions.compact = 1>> <</if>> <<options $sideBarOptions.compact>> The side bar is very compact: @@ -232,7 +229,6 @@ This save was created using FC version $ver build $releaseID. <<comment>> Disabling this will move the sidebar 'Manage Arcology' links onto the Main menu, while keeping the passage visible. <</options>> - </div> <<options $sideBarOptions.Cash>> Cash is @@ -550,8 +546,8 @@ This save was created using FC version $ver build $releaseID. <<options $showDistantRelatives>> Distant relatives such as aunts, nieces and cousins are - <<option true "Shown">> - <<option false "Hidden">> + <<option true "Enabled">> + <<option false "Disabled">> <</options>> <</if>> </div> @@ -955,4 +951,4 @@ This save was created using FC version $ver build $releaseID. <</options>> <</if>> </div> -</div> +</div> \ No newline at end of file diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw index 69a82112c528162ace49d7b05c2ab5f1546d6249..aa212706caa7e89562dde79e8bfed171eeafecd7 100644 --- a/src/uncategorized/pRivalryActions.tw +++ b/src/uncategorized/pRivalryActions.tw @@ -1423,6 +1423,8 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty <<set $hostage.counter.anal += 50>> <<set $hostage.counter.mammary += 50>> <<set $hostage.amp = 1>> + <<set $hostage.missingArms = 3>> + <<set $hostage.missingLegs = 3>> <<set $hostage.heels = 0>> <<set $hostage.earPiercing = 2>> <<set $hostage.nosePiercing = 2>> diff --git a/src/uncategorized/peHeadgirlConcubine.tw b/src/uncategorized/peHeadgirlConcubine.tw index fb14fed7f4455915ca7ec7751cc78754cfd5005e..7cd349e52febfedfb9a0cad1e40a901a6622aa52 100644 --- a/src/uncategorized/peHeadgirlConcubine.tw +++ b/src/uncategorized/peHeadgirlConcubine.tw @@ -158,7 +158,7 @@ and it's also obvious that they've been filling the few minutes they've been wai <<elseif $HeadGirl.relationship == 4>> blows $his lover $Concubine.slaveName a kiss; then $he <<else>> - mouths "I love you" at $his wife $Concubine.slaveName; then $he + mouths "I love you" at $his _wife2 $Concubine.slaveName; then $he <</if>> <</if>> <<switch $HeadGirl.fetish>> diff --git a/src/uncategorized/peLonelyBodyguard.tw b/src/uncategorized/peLonelyBodyguard.tw index 6f3feea03c622f7674a5fc75064030ecc9c4ae98..3b2f4f7b991c29b61a5403376cf65a0fd9deecc5 100644 --- a/src/uncategorized/peLonelyBodyguard.tw +++ b/src/uncategorized/peLonelyBodyguard.tw @@ -68,7 +68,7 @@ On a whim, you ask $him whether $he feels lonely. Caught off guard, $he <<if !ca <<if ($slaves[$j].anus > 1)>> _His2 lacy panties are designed to spread _his2 buttocks a little and display _his2 big butthole.<<elseif ($slaves[$j].anus == 0)>> _His2 lacy panties cover _his2 virgin anus, for once.<</if>> <<if ($slaves[$j].boobs > 1000)>>_His2 bra makes no attempt to cover or even support _his2 huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($slaves[$j].boobs > 500)>>_His2 bra supports and presents _his2 big breasts, leaving _his2 stiffening nipples bare.<<else>>_His2 bra supports and presents _his2 breasts, giving _him2 more cleavage than _he2 usually displays.<</if>> <br><br> - The procedure is simple. The two of them prostrate themselves on the ground and beg your indulgence, though $slaves[$j].slaveName is running on pure autopilot by this point. You state that you grant it, and hand each of them a simple gold band to be worn on the little finger in advertisement of the inferiority of their union. In turn, each of them gives the other a ring, and $activeSlave.slaveName kisses $his stunned bride. You pronounce them @@.lightgreen;slave wives,@@ and send them to the armory for their honeymoon. $activeSlave.slaveName is so enthusiastic that in the coming days $his obvious devotion @@.hotpink;wins $slaves[$j].slaveName over to the arrangement.@@ + The procedure is simple. The two of them prostrate themselves on the ground and beg your indulgence, though $slaves[$j].slaveName is running on pure autopilot by this point. You state that you grant it, and hand each of them a simple gold band to be worn on the little finger in advertisement of the inferiority of their union. In turn, each of them gives the other a ring, and $activeSlave.slaveName kisses $his stunned bride. You pronounce them @@.lightgreen;slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>>,@@ and send them to the armory for their honeymoon. $activeSlave.slaveName is so enthusiastic that in the coming days $his obvious devotion @@.hotpink;wins $slaves[$j].slaveName over to the arrangement.@@ <<set $slaves[$j].devotion = Math.max(20, $slaves[$j].devotion + 10)>> /* to accepting or better */ <<set $slaves[$j].relationship = 5>> <<set $slaves[$j].relationshipTarget = $activeSlave.ID>> diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw index fc3c02bb371752e5364ed7cf117363b6cfb88928..c6299b14814c76855d609a5a9472c1d3533ff9f2 100644 --- a/src/uncategorized/personalAssistantAppearance.tw +++ b/src/uncategorized/personalAssistantAppearance.tw @@ -270,7 +270,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<elseif $marketAssistantRelationship == "incestuous">> $assistantName is getting some manual stimulation from _hisA _sisterM, who is watching _hisM muscular sibling's aroused thrashing with amusement as _heM slides _hisM whole hand in and out of $assistantName's cunt. <<else>> - They're doing it in the missionary position, kissing deeply. They're technically tribbing, but $assistantName's muscular body and the tribes<<= _womanM>>'s wifely form make it look very pure and traditional. + They're doing it in the missionary position, kissing deeply. They're technically tribbing, but $assistantName's muscular body and the tribes<<= _womanM>>'s <<= _wifeM>>ly form make it look very pure and traditional. <</if>> <<else>> _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. @@ -426,7 +426,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "slave professionalism">> _hisA swollen hips and pregnant belly loosely wrapped in an elegant kimono. _HeA radiates experience. <<case "petite admiration">> - _hisA big pregnant belly utterly dominating _hisA short height. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. + _hisA big pregnant belly utterly dominating _hisA short height. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <<case "statuesque glorification">> with swollen breasts and an enormous pregnant belly to fit _hisA towering form. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <<default>> diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw index fe44dcf6f4a9d0b8ad3547e248e6cffdeb6fe27d..e68fab575c493f91c336d95f9a9fb6edef090750 100644 --- a/src/uncategorized/prestigiousSlave.tw +++ b/src/uncategorized/prestigiousSlave.tw @@ -91,7 +91,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.origin = "You bought $him at auction.">> <<set $activeSlave.prestige = 1>> - <<set $activeSlave.prestigeDesc = "$He was once the young trophy wife of a powerful man in the old world, but he sold $him into slavery in revenge for $his infidelity.">> + <<set $activeSlave.prestigeDesc = "$He was once the young trophy $wife of a powerful man in the old world, but he sold $him into slavery in revenge for $his infidelity.">> <<set $activeSlave.career = "a trophy wife">> <<set $activeSlave.boobsImplant += random(1,3)*200>> <<set $activeSlave.boobs += $activeSlave.boobsImplant>> diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw index b0fcf5b00c9f00c6d2f74b58ea9d1efabf8229df..70c0844e26711f68dfb08ed6d768125abc5157fa 100644 --- a/src/uncategorized/ptWorkaround.tw +++ b/src/uncategorized/ptWorkaround.tw @@ -84,7 +84,7 @@ <<case "look after her">> <<if $activeSlave.relationship == -3 && $activeSlave.fetish == "mindbroken">> - Since $activeSlave.slaveName is your wife and not all there, you keep $him under a watchful eye to make sure no harm comes to the broken $girl. $He almost seems in better spirits under your care, not that it will matter in an hour or two. + Since $activeSlave.slaveName is your $wife and not all there, you keep $him under a watchful eye to make sure no harm comes to the broken $girl. $He almost seems in better spirits under your care, not that it will matter in an hour or two. <<set $activeSlave.kindness++>> <</if>> <<if ($activeSlave.health < 100)>> diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index ce000820abbcdaf902d8ef281a79813d70b336e2..b6b1e50b1e2d9140a6bbfdd63d8ad509c00b76fd 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -1023,7 +1023,7 @@ It seems that they've run into a serious cash flow problem. They may not have li Ever since you have been steering $arcologies[0].name towards a belief in $arcologies[0].FSSupremacistRace supremacy, you've been receiving increasingly useful communications from groups that share your ideals. With much of the old world in freefall many groups with particularly vehement racial beliefs are expanding unchecked by the mores of big government, and by taking the $arcologies[0].FSSupremacistRace side, you've automatically inserted yourself into a worldwide network of like-minded organizations. You receive a communication from one such group. <br><br> -It seems that in a man in their town made the mistake of marrying a $woman of an undesirable racial background, and this group has stepped in to put an end to such a distasteful union. However, though they may be ruthless vigilantes, they don't consider themselves murderers. They're interested in fencing this former wife to you, no questions asked, on a flat fee basis. Included in the message is a slave dossier detailing the piece of human chattel they're offering. +It seems that in a man in their town made the mistake of marrying a $woman of an undesirable racial background, and this group has stepped in to put an end to such a distasteful union. However, though they may be ruthless vigilantes, they don't consider themselves murderers. They're interested in fencing this former $wife to you, no questions asked, on a flat fee basis. Included in the message is a slave dossier detailing the piece of human chattel they're offering. <<case "Subjugationist">> @@ -1107,7 +1107,7 @@ It seems he botched an implant operation on a free $woman. $He's still out, and You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> -The call comes in from an unusually well-to-do area. It appears that an aristocratic-looking man placing the call has fallen on hard times, and is doing the intelligent thing and staying ahead of his creditors by offering his trophy wife into slavery. Enslaving $him will be costlier than usual, but it seems likely to be worth it. $He's finely aged and completed worked over under a surgeon's knife. $He's quite the implant queen, in fact. +The call comes in from an unusually well-to-do area. It appears that an aristocratic-looking man placing the call has fallen on hard times, and is doing the intelligent thing and staying ahead of his creditors by offering his trophy $wife into slavery. Enslaving $him will be costlier than usual, but it seems likely to be worth it. $He's finely aged and completed worked over under a surgeon's knife. $He's quite the implant queen, in fact. <<case "Slimness Enthusiast">> diff --git a/src/uncategorized/reHGReplacement.tw b/src/uncategorized/reHGReplacement.tw index 9da872340020757056844b46f61ddd1252f14c81..0736e38c45e073b6df2ba1b995860d79f078e0a7 100644 --- a/src/uncategorized/reHGReplacement.tw +++ b/src/uncategorized/reHGReplacement.tw @@ -25,7 +25,7 @@ <<set $activeSlave.clothes = _clothesTemp>> <<set $HeadGirl.clothes = _clothesTemp2>> -There's a constant traffic of slaves in and out of your office as your chattel comes in and out for instructions, inspections, and sex. Your Head Girl $HeadGirl.slaveName is one of the most frequent visitors, since although you trust _him2, _he2's still a slave and has to check with you before acting on some matters.<<if $HeadGirl.relationship == -3>> (_He2's also your wife, making _his2 visits a pleasant diversion.)<<elseif $arcologies[0].FSEgyptianRevivalistLaw == 1>> (_He2's also your Consort, making _his2 visits a pleasant diversion.)<</if>> During one of _his2 visits, <<EventNameLink>> happens to come in for $his scheduled inspection. $He perches politely on the couch, waiting $his turn like a good $girl. $His <<= App.Desc.eyeColor($activeSlave)>> eyes are watchful, however, and $he seems to be paying very close attention to your conversation with your Head Girl. +There's a constant traffic of slaves in and out of your office as your chattel comes in and out for instructions, inspections, and sex. Your Head Girl $HeadGirl.slaveName is one of the most frequent visitors, since although you trust _him2, _he2's still a slave and has to check with you before acting on some matters.<<if $HeadGirl.relationship == -3>> (_He2's also your _wife2, making _his2 visits a pleasant diversion.)<<elseif $arcologies[0].FSEgyptianRevivalistLaw == 1>> (_He2's also your Consort, making _his2 visits a pleasant diversion.)<</if>> During one of _his2 visits, <<EventNameLink>> happens to come in for $his scheduled inspection. $He perches politely on the couch, waiting $his turn like a good $girl. $His <<= App.Desc.eyeColor($activeSlave)>> eyes are watchful, however, and $he seems to be paying very close attention to your conversation with your Head Girl. When $HeadGirl.slaveName leaves, $he clears $his throat nervously. $He gathers $his courage, and <<say>>s, "<<Master>>, I think I would make a better Head Girl than $him." $He takes a deep breath and plunges on. "I'm ju<<s>>t a<<s>> <<s>>mart a<<s>> <<he 2>> i<<s>>. And, <<Master>>, I'm <<s>>ure you've noti<<c>>ed <<he 2>> i<<s>>n't very good at teaching other girl<<s>> vaginal <<s>>kill<<s>>. <<if $HeadGirl.vagina > 0>> diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw index d1c895fe4145aeabe4f548de59f4bfcf05dd9f8c..d97776a9b03e5e4257a655f57998f1e640251e0f 100644 --- a/src/uncategorized/reMalefactor.tw +++ b/src/uncategorized/reMalefactor.tw @@ -522,6 +522,8 @@ $He is easily taken into custody and $his contraband confiscated once the jeerin <br><<link "Punitively amputate $his limbs, and then enslave $him">> <<set $activeSlave.health -= 20>> <<set $activeSlave.amp = 1>> + <<set $activeSlave.missingArms = 3>> + <<set $activeSlave.missingLegs = 3>> <<set $activeSlave.heels = 0>> <<set $activeSlave.behavioralFlaw = "odd">> <<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index bea77efdc78b8f27014aa5a6a3f068ceddef6083..8b7e0ad216f7812bf450a835b318e193d3a488ad 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -1794,6 +1794,8 @@ <<set $activeSlave.waist = random(-11, -40)>> <<set $activeSlave.skill.combat = 1>> <<set $activeSlave.amp = -5>> +<<set $activeSlave.missingArms = 0>> +<<set $activeSlave.missingLegs = 0>> <<set $activeSlave.teeth = "pointy">> <<set $activeSlave.muscles = random(30,70)>> <<set $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]}))>> @@ -2405,7 +2407,7 @@ While digging through the database of a POW camp for anything of value, you find <br>Upon $his inevitable arrival in your penthouse, you see <<if $seeExtreme == 1>> the traces of $his wounds, that $he has been greatly modified for war, and that $he had been raped, repeatedly, despite $his powerful body. - <<set $activeSlave.amp = -5, $activeSlave.teeth = "pointy", $activeSlave.muscles = random(30,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.chem = 1000, $activeSlave.attrXX = 0, $activeSlave.attrXY = 0>> + <<set $activeSlave.amp = -5, $activeSlave.missingArms = 0, $activeSlave.missingLegs = 0, $activeSlave.teeth = "pointy", $activeSlave.muscles = random(30,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.chem = 1000, $activeSlave.attrXX = 0, $activeSlave.attrXY = 0>> <<else>> the traces of $his wounds, that $he had been left bound long enough for $his body to atrophy, and that $he had been raped, repeatedly. <<if $seePreg == 1>> diff --git a/src/uncategorized/reRelationshipAdvice.tw b/src/uncategorized/reRelationshipAdvice.tw index 87b2076fc5c1a64ab63b8234bfd8bbed98c8dd46..21d1a8f63e9fc65c8d0264e90dc7d57042de98ed 100644 --- a/src/uncategorized/reRelationshipAdvice.tw +++ b/src/uncategorized/reRelationshipAdvice.tw @@ -76,7 +76,7 @@ $He nods $his head quickly, still <<if canSee($activeSlave)>>staring at $his fee <<elseif $activeSlave.relationship == 3>> The next time you see them together, they're @@.lightgreen;holding hands at breakfast,@@ looking almost ashamed of themselves, but not letting go. $activeSlave.slaveName mouths a silent thanks to you when $subSlave.slaveName isn't looking. <<elseif $activeSlave.relationship == 4>> - $He comes running right back, a happy $subSlave.slaveName <<if canWalk($subSlave)>>running in with $him<<else>>being helped in by _his2 lover<</if>>. You @@.lightgreen;marry them@@ solemnly, and they embrace tightly, hugging each other close. $activeSlave.slaveName comes to face you over $his wife's shoulder, and $he mouths a silent, tearful thanks to you. + $He comes running right back, a happy $subSlave.slaveName <<if canWalk($subSlave)>>running in with $him<<else>>being helped in by _his2 lover<</if>>. You @@.lightgreen;marry them@@ solemnly, and they embrace tightly, hugging each other close. $activeSlave.slaveName comes to face you over $his _wife2's shoulder, and $he mouths a silent, tearful thanks to you. <</if>> <<set $activeSlave.devotion += 5>> @@ -142,7 +142,7 @@ $He nods $his head quickly, still <<if canSee($activeSlave)>>staring at $his fee <</if>> But I — I really like you." $subSlave.slaveName looks relieved, and <<if $subSlave.voice != 0>>says, "I really like you too. And you're really cute! I'd love to be your <<= _girl2>>friend." _He2<<else>>lovingly<</if>> takes $activeSlave.slaveName's hands in _hers2, and then kisses $him on the cheek. $activeSlave.slaveName crushes $subSlave.slaveName in a hug, pressing a squeak out of _him2. They're now @@.lightgreen;lovers.@@ <<elseif $activeSlave.relationship == 4>> - - " $He stops $himself. "No, I want to do thi<<s>> right." $He takes $subSlave.slaveName's hand, and then drops to one knee. After a moment of uncomprehending shock, $subSlave.slaveName begins to cry. "Will you marry me?" $subSlave.slaveName turns to you and<<if !canTalk($subSlave)>> wordlessly<</if>> asks if it's all right with you; you nod, and _he2 turns back to $activeSlave.slaveName. <<if !canTalk($subSlave)>>_He2 gestures distractedly that $activeSlave.slaveName is being silly, and of course _he2'll marry $him, because _he2 loves $him.<<else>><<run Enunciate($subSlave)>>"O-of cour<<s>>e I'll m-marry you, <<s>>illy $girl. I love you."<</if>> $activeSlave.slaveName jumps up and crushes $subSlave.slaveName in a hug, kissing _him2 frantically through $his tears. You @@.lightgreen;marry them@@ solemnly, and they embrace tightly, hugging each other close. $activeSlave.slaveName comes to face you over $his wife's shoulder, and $he mouths a silent thanks to you. + - " $He stops $himself. "No, I want to do thi<<s>> right." $He takes $subSlave.slaveName's hand, and then drops to one knee. After a moment of uncomprehending shock, $subSlave.slaveName begins to cry. "Will you marry me?" $subSlave.slaveName turns to you and<<if !canTalk($subSlave)>> wordlessly<</if>> asks if it's all right with you; you nod, and _he2 turns back to $activeSlave.slaveName. <<if !canTalk($subSlave)>>_He2 gestures distractedly that $activeSlave.slaveName is being silly, and of course _he2'll marry $him, because _he2 loves $him.<<else>><<run Enunciate($subSlave)>>"O-of cour<<s>>e I'll m-marry you, <<s>>illy $girl. I love you."<</if>> $activeSlave.slaveName jumps up and crushes $subSlave.slaveName in a hug, kissing _him2 frantically through $his tears. You @@.lightgreen;marry them@@ solemnly, and they embrace tightly, hugging each other close. $activeSlave.slaveName comes to face you over $his _wife2's shoulder, and $he mouths a silent thanks to you. <</if>> If $activeSlave.slaveName had doubts about you, @@.mediumaquamarine;they've been addressed.@@ diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw index a1e1dc382138e7d182840415e5588af0a1743684..833c61034a4a5f36ef28e7b266c3905952fe6f61 100644 --- a/src/uncategorized/reRelativeRecruiter.tw +++ b/src/uncategorized/reRelativeRecruiter.tw @@ -380,6 +380,8 @@ <<set $activeSlave.trust = random(-15,15)>> <<set $activeSlave.ageImplant = 0>> <<set $activeSlave.amp = 0>> +<<set $activeSlave.missingArms = 0>> +<<set $activeSlave.missingLegs = 0>> <<set $activeSlave.heels = 0>> <<if $activeSlave.career != "a Futanari Sister">><<set $activeSlave.career = "a slave">><</if>> <<set $activeSlave.relationship = 0>> diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index 720df83812b2acefe4201b625cbe12b52bd785ed..8a2aaaf47771b728a2b945f0455ec87a8edc0aa0 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -862,7 +862,7 @@ $He's got a <<elseif $activeSlave.butt <= 3>><<print either("big and healthy", "curved and plump", "healthy and plump")>> derrière. <<elseif $activeSlave.butt <= 4>><<print either("big bubble", "curvy and enticing", "juicy and large")>> butt. <<elseif $activeSlave.butt <= 5>><<print either("huge", "juicy and huge", "massive and undeniable")>> rear end. -<<elseif ($activeSlave.amp == 1)>>ridiculous ass. It's so big it would jiggle as $he walked — if $he could walk. +<<elseif !hasAnyLegs($activeSlave)>>ridiculous ass. It's so big it would jiggle as $he walked — if $he could walk. <<else>>ridiculous ass. It's so big it jiggles as $he walks. <</if>> @@ -1487,7 +1487,7 @@ Deal with $his hair: $He <<if $activeSlave.physicalAge >= 12>>naturally grows<<else>>will someday grow<</if>> $activeSlave.origHColor body hair. [["Surgically remove " + $his + " ability to grow body hair"|Surgery Degradation][cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave),$surgeryType = "body hair removal"]] <<else>> - $His $activeSlave.skin skin is silky smooth and hair free from $his neck to $his <<if $activeSlave.amp == 1>>hips<<else>>toes<</if>>. + $His $activeSlave.skin skin is silky smooth and hair free from $his neck to $his <<if !hasAnyLegs($activeSlave)>>hips<<else>>toes<</if>>. <</if>> <br><br> @@ -1645,7 +1645,7 @@ Work on $him structurally: <br> <</if>> -<<if ($activeSlave.amp == 0)>> +<<if hasAllNaturalLimbs($activeSlave)>> <<if ($activeSlave.heightImplant == 0)>> $He has normal femurs and humeri. <<elseif ($activeSlave.heightImplant > 0)>> @@ -1653,80 +1653,79 @@ Work on $him structurally: <<elseif ($activeSlave.heightImplant < 0)>> $His femurs, humeri, and other major bones have been shortened. <</if>> -<<if ($activeSlave.heightImplant == 0)>> - <<if $activeSlave.indentureRestrictions < 1>> - [[Lengthen major bones|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] | [[Shorten major bones|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] - <</if>> -<<elseif ($activeSlave.height < (Height.mean($activeSlave)+15)) && ($activeSlave.height >= (Height.mean($activeSlave)-15)) && ($surgeryUpgrade == 1)>> - <<if $activeSlave.indentureRestrictions < 1>> - [[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] | [[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] + <<if ($activeSlave.heightImplant == 0)>> + <<if $activeSlave.indentureRestrictions < 1>> + [[Lengthen major bones|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] | [[Shorten major bones|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] + <</if>> + <<elseif ($activeSlave.height < (Height.mean($activeSlave)+15)) && ($activeSlave.height >= (Height.mean($activeSlave)-15)) && ($surgeryUpgrade == 1)>> + <<if $activeSlave.indentureRestrictions < 1>> + [[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] | [[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] + <</if>> + <<elseif ($activeSlave.height < (Height.mean($activeSlave)+15)) && ($surgeryUpgrade == 1)>> + <<if $activeSlave.indentureRestrictions < 1>> + [[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] + <</if>> + <<elseif ($activeSlave.height >= (Height.mean($activeSlave)-15)) && ($surgeryUpgrade == 1)>> + <<if $activeSlave.indentureRestrictions < 1>> + [[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] + <</if>> <</if>> -<<elseif ($activeSlave.height < (Height.mean($activeSlave)+15)) && ($surgeryUpgrade == 1)>> - <<if $activeSlave.indentureRestrictions < 1>> - [[Advanced height gain surgery|Surgery Degradation][$activeSlave.heightImplant = 1,$activeSlave.height += 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] + <br> + <<if ($activeSlave.heels == 0) && hasAnyNaturalLegs($activeSlave)>> + $He has healthy calves. + <<elseif ($activeSlave.heels == 1) && hasAnyNaturalLegs($activeSlave)>> + $His calves have been altered so that $he cannot walk in anything but very high heels. <</if>> -<<elseif ($activeSlave.height >= (Height.mean($activeSlave)-15)) && ($surgeryUpgrade == 1)>> - <<if $activeSlave.indentureRestrictions < 1>> - [[Advanced height reduction surgery|Surgery Degradation][$activeSlave.heightImplant = -1,$activeSlave.height -= 10,cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 40,$surgeryType = "height"]] + <<if ($activeSlave.heels == 0) && hasAnyNaturalLegs($activeSlave) && ($seeExtreme == 1)>> + <<if $activeSlave.indentureRestrictions < 1>> + [[Shorten tendons|Surgery Degradation][$activeSlave.heels = 1,$activeSlave.shoes = "heels",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "heels"]] //Prevents $him from walking in anything but very high heels// + <</if>> <</if>> -<</if>> -<br> -<<if ($activeSlave.heels == 0) && ($activeSlave.amp == 0)>> - $He has healthy calves. -<<elseif ($activeSlave.heels == 1) && ($activeSlave.amp == 0)>> - $His calves have been altered so that $he cannot walk in anything but very high heels. -<</if>> -<<if ($activeSlave.heels == 0) && ($seeExtreme == 1)>> - <<if $activeSlave.indentureRestrictions < 1>> - [[Shorten tendons|Surgery Degradation][$activeSlave.heels = 1,$activeSlave.shoes = "heels",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20,$surgeryType = "heels"]] //Prevents $him from walking in anything but very high heels// + <<if ($activeSlave.heels == 1)>> + [[Replace tendons|Surgery Degradation][$activeSlave.heels = 0,$activeSlave.shoes = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "heelsRestoration"]] <</if>> -<</if>> -<<if ($activeSlave.heels == 1)>> - [[Replace tendons|Surgery Degradation][$activeSlave.heels = 0,$activeSlave.shoes = "none",cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10,$surgeryType = "heelsRestoration"]] -<</if>> -<br> + <br> <</if>> /* PROSTHETICS */ -<<if ($activeSlave.amp == 0)>> - $He has healthy limbs. +/* TODO Arkerthan +I have a nice version, but it depends on the new limb system, so we have to do with this for now. +*/ +<br> +<<if !isAmputee($activeSlave)>> + Limbs: //This is a temporary solution while limb mechanics are being reworked.//<br> + Left arm: <<print idToDescription(getLimbID($activeSlave, "left arm"))>><br> + Right arm: <<print idToDescription(getLimbID($activeSlave, "right arm"))>><br> + Left leg: <<print idToDescription(getLimbID($activeSlave, "left leg"))>><br> + Right leg: <<print idToDescription(getLimbID($activeSlave, "right leg"))>> <<else>> $He is a quadruple amputee - <<if $activeSlave.PLimb == 1 && $activeSlave.amp == 1>> + <<if $activeSlave.PLimb == 1>> and has been implanted with a basic PLimb interface. - <<elseif $activeSlave.PLimb == 2 && $activeSlave.amp == 1>> + <<elseif $activeSlave.PLimb == 2>> and has been implanted with an advanced PLimb interface. - <<elseif $activeSlave.amp == -1>> - and has been equipped with modern prosthetics. - <<elseif $activeSlave.amp == -2>> - and has been equipped with advanced, sex-focused prosthetics. - <<elseif $activeSlave.amp == -3>> - and has been equipped with advanced, beauty-focused prosthetics. - <<elseif $activeSlave.amp == -4>> - and has been equipped with advanced, combat-focused prosthetics. - <<elseif $activeSlave.amp == -5>> - and has been equipped with highly advanced cybernetic prosthetics. <<else>> and has not been equipped with prosthetics. <</if>> <</if>> +<br> -<<if $activeSlave.amp == 0>> +<<if hasAnyNaturalLimbs($activeSlave)>> <<if $activeSlave.indentureRestrictions < 1 && $seeExtreme == 1>> <<if $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "interfaceP1"}) == -1 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "interfaceP2"}) == -1>> - [[Remove arms and legs|Surgery Degradation][surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "right arm"), surgeryAmp($activeSlave, "left leg"), surgeryAmp($activeSlave, "right leg"), $activeSlave.amp = 1, $activeSlave.releaseRules = "restrictive", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "amp"]] //This will greatly restrict $him// + [[Remove arms and legs|Surgery Degradation][surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "right arm"), surgeryAmp($activeSlave, "left leg"), surgeryAmp($activeSlave, "right leg"), $activeSlave.amp = 1, $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3, $activeSlave.releaseRules = "restrictive", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "amp"]] //This will greatly restrict $him// <<else>> - [[Remove arms and legs|Surgery Degradation][surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "right arm"), surgeryAmp($activeSlave, "left leg"), surgeryAmp($activeSlave, "right leg"), $activeSlave.amp = 1, $activeSlave.releaseRules = "restrictive", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "amp1"]] //This will greatly restrict $him// + [[Remove arms and legs|Surgery Degradation][surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "right arm"), surgeryAmp($activeSlave, "left leg"), surgeryAmp($activeSlave, "right leg"), $activeSlave.amp = 1, $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3, $activeSlave.releaseRules = "restrictive", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "amp1"]] //This will greatly restrict $him// <</if>> <</if>> -<<elseif ($activeSlave.amp == 1) && ($activeSlave.PLimb == 0)>> +<<elseif isAmputee($activeSlave) && $activeSlave.PLimb == 0>> <<if $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "interfaceP1"}) != -1>> | [[Install basic prosthetic interface|Surgery Degradation][$activeSlave.PLimb = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface1"]] <</if>> <<if $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "interfaceP2"}) != -1>> | [[Install advanced prosthetic interface|Surgery Degradation][$activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface2"]] <</if>> -<<elseif $activeSlave.amp == 1 && $activeSlave.PLimb == 1 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "interfaceP2"}) != -1>> | +<<elseif isAmputee($activeSlave) && $activeSlave.PLimb == 1 && $activeSlave.readyProsthetics.findIndex(function(p) {return p.id == "interfaceP2"}) != -1>> | [[Upgrade advanced prosthetic interface|Surgery Degradation][$activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "PLimb interface3"]] <</if>> diff --git a/src/uncategorized/rename.tw b/src/uncategorized/rename.tw index 63c82a0b3120af7c69ee323eaf443d05bdc6add7..b8e52a80a8668a33287b155c93f6b50f89d0e386 100644 --- a/src/uncategorized/rename.tw +++ b/src/uncategorized/rename.tw @@ -81,12 +81,13 @@ <<if $activeSlave.relationship >= 5>> <<set _i = $slaveIndices[$activeSlave.relationshipTarget]>> <<if ndef _i>>@@.red;Error, relationshipTarget not found.@@<</if>> - <<if $slaves[_i].slaveSurname>> + <<if $slaves[_i].slaveSurname>> + <<setLocalPronouns $slaves[_i] 2>> <<if $activeSlave.slaveSurname == $slaves[_i].slaveSurname>> - $He's touched that $he now shares a surname with $his wife $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.mediumaquamarine;more confident than ever@@ that you intend to keep them together in marital bliss. + $He's touched that $he now shares a surname with $his _wife2 $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.mediumaquamarine;more confident than ever@@ that you intend to keep them together in marital bliss. <<set $activeSlave.trust += 5>> <<elseif $oldSurname == $slaves[_i].slaveSurname>> - $He's concerned that $he no longer shares a surname with $his wife $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.gold;very worried@@ that you might be considering splitting them up. + $He's concerned that $he no longer shares a surname with $his _wife2 $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.gold;very worried@@ that you might be considering splitting them up. <<set $activeSlave.trust -= 5>> <</if>> <</if>> @@ -102,13 +103,13 @@ <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> <<if $activeSlave.slaveSurname == $PC.surname>> <<if $activeSlave.amp <= 0>> - When you tell $him that $he's to be known as $activeSlave.slaveName $activeSlave.slaveSurname now, $he starts to cry. $He tries to get $himself under control and thank you as best $he can, wiping at the tears running down $his $activeSlave.skin cheeks, but $he can't seem to stop weeping as $he thanks you over and over. $He's a sex slave, your property, and it's understandable that some doubts about the permanence of $his place as your slave wife. This has @@.mediumaquamarine;helped reassure $him,@@ and explains the strength of $his emotional reaction. The next time you make love to $him, $he @@.hotpink;presses $himself as close to you as $he can,@@ eager to drink in as much of your presence as $he can get. + When you tell $him that $he's to be known as $activeSlave.slaveName $activeSlave.slaveSurname now, $he starts to cry. $He tries to get $himself under control and thank you as best $he can, wiping at the tears running down $his $activeSlave.skin cheeks, but $he can't seem to stop weeping as $he thanks you over and over. $He's a sex slave, your property, and it's understandable that some doubts about the permanence of $his place as your slave $wife. This has @@.mediumaquamarine;helped reassure $him,@@ and explains the strength of $his emotional reaction. The next time you make love to $him, $he @@.hotpink;presses $himself as close to you as $he can,@@ eager to drink in as much of your presence as $he can get. <<else>> - $He's @@.hotpink;deeply touched@@ that $he now shares a surname with you, and has @@.mediumaquamarine;an additional source of confidence@@ that $he'll remain your amputee slave wife. + $He's @@.hotpink;deeply touched@@ that $he now shares a surname with you, and has @@.mediumaquamarine;an additional source of confidence@@ that $he'll remain your amputee slave $wife. <</if>> <<set $activeSlave.devotion += 5, $activeSlave.trust += 5>> <<elseif $oldSurname == $PC.slaveSurname>> - $He's devastated that you'd rename $him something other than your name. $He's @@.gold;terrified@@ that you intend to discard $him as your slave wife, and @@.mediumorchid;saddened@@ that you would take away something that was precious to $him. + $He's devastated that you'd rename $him something other than your name. $He's @@.gold;terrified@@ that you intend to discard $him as your slave $wife, and @@.mediumorchid;saddened@@ that you would take away something that was precious to $him. <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> <</if>> <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> @@ -131,7 +132,7 @@ When you tell $him that $he's to be known as $activeSlave.slaveName $activeSlave.slaveSurname now, $he nods with approval feeling @@.mediumaquamarine;that $he may hold at least some value in your eyes.@@ <<set $activeSlave.trust += 5>> <<elseif $oldSurname == $PC.slaveSurname>> - $He accepts that you'd rename $him something other than your name. $He's @@.gold;a little scared@@ that you intend to discard $him as your slave wife, or worse, but realizes this was not only a possibility, but likely. + $He accepts that you'd rename $him something other than your name. $He's @@.gold;a little scared@@ that you intend to discard $him as your slave $wife, or worse, but realizes this was not only a possibility, but likely. <<set $activeSlave.trust -= 5>> <</if>> <</if>> diff --git a/src/uncategorized/saBeYourHeadGirl.tw b/src/uncategorized/saBeYourHeadGirl.tw index 4fa88211ccf1170b8136a37fca1d30ff086206ba..eacc7d254c8f3be4496ea6d0f937bb2ca19beab8 100644 --- a/src/uncategorized/saBeYourHeadGirl.tw +++ b/src/uncategorized/saBeYourHeadGirl.tw @@ -20,24 +20,24 @@ <<setLocalPronouns $Concubine 2>> <<if areRelated($Concubine, $slaves[$i]) > 0>> <<if $Concubine.mother == $slaves[$i].ID || $Concubine.father == $slaves[$i].ID>> - Your Concubine is your Consort's <<= _daughter2>>-wife. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ + Your Concubine is your Consort's <<= _daughter2>>-<<= _wife2>>. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ <<run repX(1000, "headGirl", $slaves[$i])>> <<elseif $slaves[$i].mother == $Concubine.ID>> - Your Concubine is your Consort's mother-wife. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ + Your Concubine is your Consort's mother-<<= _wife2>>. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ <<run repX(1000, "headGirl", $slaves[$i])>> <<elseif $slaves[$i].father == $Concubine.ID>> - Your Concubine is your Consort's father-wife. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ + Your Concubine is your Consort's father-<<= _wife2>>. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ <<run repX(1000, "headGirl", $slaves[$i])>> <<else>> <<switch areSisters($slaves[$i], $Concubine)>> <<case 1>> - Your Concubine is your Consort's twin-wife. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ + Your Concubine is your Consort's twin-<<= _wife2>>. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ <<run repX(1000, "headGirl", $slaves[$i])>> <<case 2>> - Your Concubine is your Consort's <<= _sister2>>-wife. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ + Your Concubine is your Consort's <<= _sister2>>-<<= _wife2>>. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ <<run repX(1000, "headGirl", $slaves[$i])>> <<case 3>> - Your Concubine is your Consort's half-<<= _sister2>>-wife. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ + Your Concubine is your Consort's half-<<= _sister2>>-<<= _wife2>>. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ <<run repX(1000, "headGirl", $slaves[$i])>> <<default>> //Shit went wrong! Post this in a bug report!// This is @@.red;NOT as it should be.@@ @@ -45,7 +45,7 @@ <</switch>> <</if>> <<else>> - Your Consort and your Concubine are wives to each other and to Pharaoh. This is @@.green;as it should be.@@ + Your Consort and your Concubine are <<if $wife == _wife2>>$wives<<else>>married<</if>> to each other and to Pharaoh. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <</if>> <<else>> @@ -54,24 +54,24 @@ <<if def _sbyhg>> <<setLocalPronouns $slaves[_sbyhg] 2>> <<if $slaves[_sbyhg].mother == $slaves[$i].ID || $slaves[_sbyhg].father == $slaves[$i].ID>> - Your Consort has a <<= _daughter2>>-wife. This is @@.green;as it should be.@@ + Your Consort has a <<= _daughter2>>-<<= _wife2>>. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <<elseif $slaves[$i].mother == $slaves[_sbyhg].ID>> - Your Consort has a mother-wife. This is @@.green;as it should be.@@ + Your Consort has a mother-<<= _wife2>>. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <<elseif $slaves[$i].father == $slaves[_sbyhg].ID>> - Your Consort has a father-wife. This is @@.green;as it should be.@@ + Your Consort has a father-<<= _wife2>>. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <<else>> <<switch areSisters($slaves[$i], $slaves[_sbyhg])>> <<case 1>> - Your Consort has a twin-wife. This is @@.green;as it should be.@@ + Your Consort has a twin-<<= _wife2>>. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <<case 2>> - Your Consort has a <<= _sister2>>-wife. This is @@.green;as it should be.@@ + Your Consort has a <<= _sister2>>-<<= _wife2>>. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <<case 3>> - Your Consort has a half-<<= _sister2>>-wife. This is @@.green;as it should be.@@ + Your Consort has a half-<<= _sister2>>-<<= _wife2>>. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <</switch>> <</if>> @@ -80,16 +80,21 @@ <</if>> <<else>> <<if $slaves[$i].relationshipTarget == $Concubine.ID>> + <<setLocalPronouns $Concubine 2>> <<if $slaves[$i].relationTarget == $Concubine.ID>> - Your Concubine is your Consort's $slaves[$i].relation-wife. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ + Your Concubine is your Consort's $slaves[$i].relation-<<= _wife2>>. Truly, $arcologies[0].name looks up to you @@.green;as children to a father.@@ <<run repX(1000, "headGirl", $slaves[$i])>> <<else>> - Your Consort and your Concubine are wives to each other and to Pharaoh. This is @@.green;as it should be.@@ + Your Consort and your Concubine are <<if $wife == _wife2>>$wives<<else>>married<</if>> to each other and to Pharaoh. This is @@.green;as it should be.@@ <<run repX(500, "headGirl", $slaves[$i])>> <</if>> <<elseif $slaves[$i].relationshipTarget == $slaves[$i].relationTarget>> - Your Consort has a $slaves[$i].relation-wife. This is @@.green;as it should be.@@ - <<run repX(500, "headGirl", $slaves[$i])>> + <<set _sbyhg = $slaveIndices[$slaves[$i].relationshipTarget]>> + <<if def _sbyhg>> + <<setLocalPronouns $slaves[_sbyhg] 2>> + Your Consort has a $slaves[$i].relation-<<= _wife2>>. This is @@.green;as it should be.@@ + <<run repX(500, "headGirl", $slaves[$i])>> + <</if>> <</if>> <</if>> /* closes extended family mode */ <</if>> diff --git a/src/uncategorized/saGuardsYou.tw b/src/uncategorized/saGuardsYou.tw index 5e0aaa59433a891c430d62f63ff4c9c5be16805f..4bae52f9839e23148f683fec05f7638af352dc45 100644 --- a/src/uncategorized/saGuardsYou.tw +++ b/src/uncategorized/saGuardsYou.tw @@ -190,7 +190,7 @@ Being continually trusted with your life @@.hotpink;increases $his devotion to y <<if (def $subSlave) && $subSlave.skill.combat == 0 && bodyguardSuccessorEligible($subSlave)>> <<setLocalPronouns $subSlave 2>> $He does $his best to train $subSlave.slaveName whenever $he can, hoping that $his - <<if $slaves[$i].relationship > 4>>wife<<elseif $slaves[$i].relationship == 4>>lover<<elseif $slaves[$i].relationship == 3>><<= _girl2>>friend<<else>>best friend<</if>> + <<if $slaves[$i].relationship > 4>>_wife2<<elseif $slaves[$i].relationship == 4>>lover<<elseif $slaves[$i].relationship == 3>><<= _girl2>>friend<<else>>best friend<</if>> can be made capable of stepping into $his place. <</if>> <</if>> diff --git a/src/uncategorized/saLiveWithHG.tw b/src/uncategorized/saLiveWithHG.tw index f93f4e4bc0a51ae37fa57af703ceb47445b14a45..168b8141897e430975d53f166ec085c7b2ec5584 100644 --- a/src/uncategorized/saLiveWithHG.tw +++ b/src/uncategorized/saLiveWithHG.tw @@ -226,7 +226,7 @@ Since $HeadGirl.slaveName and $slaves[$i].slaveName are lovers, they @@.hotpink;enjoy@@ living together. <</if>> <<else>> - Since $HeadGirl.slaveName and $slaves[$i].slaveName are slave wives, they @@.hotpink;enjoy@@ living together. + Since $HeadGirl.slaveName and $slaves[$i].slaveName are <<if $wife == _wife2>>slave $wives<<else>>married<</if>>, they @@.hotpink;enjoy@@ living together. <</if>> <</if>> <</if>> @@ -923,7 +923,7 @@ <<if ($slaves[$i].health > 40)>> <<if ($slaves[$i].amp != 1) && ($slaves[$i].devotion < -20)>> $HeadGirl.slaveName decides to extract the ultimate in sadistic pleasure from $slaves[$i].slaveName, and directs the autosurgery to @@.red;amputate $his arms and legs.@@ _He2 carefully describes the entire process to the sobbing slave @@.gold;in minute detail@@ before allowing $him to be sedated. - <<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20, $slaves[$i].health -= 40, $slaves[$i].amp = 1>> + <<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20, $slaves[$i].health -= 40, $slaves[$i].amp = 1, $activeSlave.missingArms = 3, $activeSlave.missingLegs = 3>> <</if>> <<if ($slaves[$i].balls > 0) && ($slaves[$i].devotion <= 50)>> $HeadGirl.slaveName decides to have some once-only sadistic pleasure, and carefully straps $slaves[$i].slaveName into the surgery until $he's completely immobile. $HeadGirl.slaveName situates <<if canSee($slaves[$i])>>a mirror so the terrified $girl can see $his own crotch<<else>>$him so that the terrified $girl can sense what part of $his body is being manipulated even through the anesthetics<</if>>, gets behind $him, and carefully sodomizes $him during the entire process of @@.red;castration.@@ $slaves[$i].slaveName is anesthetized down there and can't feel the brutal anal rape, but $his abuser orgasms repeatedly to $him @@.gold;weeping at the <<if canSee($slaves[$i])>>sight<<else>>muted sensation<</if>> of being gelded and raped at once.@@ diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index c082910a6c2aefa9c0f13177d260dd6f38518f41..1e30f7654c7bd76c1b0bbc9315eb796a99db29f2 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -3996,7 +3996,7 @@ $He @@.hotpink;loves@@ that your child is growing within $him. <<set $slaves[$i].devotion += 1>> <<if $slaves[$i].relationship == -3>> - This is compounded by the fact that $he is your @@.hotpink;devoted wife@@ and @@.mediumaquamarine;feels it is $his duty@@ to bear your children. + This is compounded by the fact that $he is your @@.hotpink;devoted $wife@@ and @@.mediumaquamarine;feels it is $his duty@@ to bear your children. <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> <</if>> <</if>> @@ -5523,7 +5523,7 @@ <</if>> <<if ($slaves[$i].devotion+$slaves[$i].trust > 180)>> <<if ($slaves[$i].relationship == -3)>> - Society @@.green;approves very strongly@@ of $his happiness as your wife; this advances paternalistic ideals. + Society @@.green;approves very strongly@@ of $his happiness as your $wife; this advances paternalistic ideals. <<= FutureSocieties.ChangePorn("Paternalist", 5)>> <<elseif ($slaves[$i].relationship == -2)>> Society @@.green;strongly approves@@ of $his emotional bond to you; this advances paternalistic ideals. diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw index 1374f0a92f181e0bbca0e8a29edd4de704b252de..2ed2c237c38694bc92a59a1c6063256ac68baea7 100644 --- a/src/uncategorized/saPleaseYou.tw +++ b/src/uncategorized/saPleaseYou.tw @@ -1281,7 +1281,7 @@ Keeping $him as nothing but your personal <<if $slaves[$i].relationship == -2>> $His satisfaction with $his place near you is obvious, @@.green;bringing attention@@ to how completely you've broken $him. <<elseif $slaves[$i].relationship == -3 && $slaves[$i].devotion > 50>> - $His satisfaction with $his wifely duties is obvious, @@.green;bringing attention@@ to the slave future you're building. + $His satisfaction with $his <<= $wife>>ly duties is obvious, @@.green;bringing attention@@ to the slave future you're building. <</if>> <<if $arcologies[0].FSRestart > 50 && $slaves[$i].breedingMark == 1 && $propOutcome == 1>> $His breeding mark and $his place near you as a breeding toy is obvious, @@.green;bringing attention@@ to how beautiful a pairing you make. diff --git a/src/uncategorized/saRecruitGirls.tw b/src/uncategorized/saRecruitGirls.tw index 96f0fb847e2c03b7e24e1cbfa3c0f7cd8b6679ca..0f31dc418686b33ef4786da65baf2331b1599ca6 100644 --- a/src/uncategorized/saRecruitGirls.tw +++ b/src/uncategorized/saRecruitGirls.tw @@ -978,31 +978,32 @@ <<if $familyTesting == 1>> <<if totalRelatives($slaves[$i]) > 0>> <<if def _recruiterRelation>> + <<setLocalPronouns _recruiterRelation 2>> <<if _recruiterRelation.mother == $slaves[$i].ID || _recruiterRelation.father == $slaves[$i].ID>> - <<set $relationType = "daughter">> + <<set _relationType = _daughter2>> <<elseif $slaves[$i].mother == _recruiterRelation.ID>> - <<set $relationType = "mother">> + <<set _relationType = "mother">> <<elseif $slaves[$i].father == _recruiterRelation.ID>> - <<set $relationType = "father">> + <<set _relationType = "father">> <<elseif areSisters($slaves[$i], _recruiterRelation) == 1>> - <<set $relationType = "twin">> + <<set _relationType = "twin">> <<elseif areSisters($slaves[$i], _recruiterRelation) == 2>> - <<set $relationType = "sister">> + <<set _relationType = _sister2>> <<elseif areSisters($slaves[$i], _recruiterRelation) == 3>> - <<set $relationType = "half-sister">> + <<set _relationType = "half-<<= _sister2>>">> <</if>> <<if $slaves[$i].energy > 60 || $slaves[$i].sexualQuirk == "tease" || $slaves[$i].sexualQuirk == "perverted">> <<if _recruiterRelation.energy > 60 || _recruiterRelation.sexualQuirk == "tease" || _recruiterRelation.sexualQuirk == "perverted">> - $slaves[$i].slaveName and $his $relationType _recruiterRelation.slaveName collaborate on a series of short commercials walking and playing in your arcology's public spaces. A little hand on the ass here, a little lips almost touching there, and it's enough to tease your Ancient Egyptian sensibility about incest without running afoul of too many old world censors. + $slaves[$i].slaveName and $his _relationType _recruiterRelation.slaveName collaborate on a series of short commercials walking and playing in your arcology's public spaces. A little hand on the ass here, a little lips almost touching there, and it's enough to tease your Ancient Egyptian sensibility about incest without running afoul of too many old world censors. <<elseif $slaves[$i].relationshipTarget == _recruiterRelation.ID>> - Even though their incestuous relationship is not condemned here, $his $relationType _recruiterRelation.slaveName is too shy to act it out in front of the world. + Even though their incestuous relationship is not condemned here, $his _relationType _recruiterRelation.slaveName is too shy to act it out in front of the world. <<else>> - The Ancient Egyptian sensibility of your arcology features slave incest, but your recruiter can't convince $his shy $relationType to play along for publicity. + The Ancient Egyptian sensibility of your arcology features slave incest, but your recruiter can't convince $his shy _relationType to play along for publicity. <</if>> <<elseif $slaves[$i].relationshipTarget == _recruiterRelation.ID>> - Even though $he shares a properly incestuous relationship with $his $relationType, $he is too shy to bring it on camera for the whole world. + Even though $he shares a properly incestuous relationship with $his _relationType, $he is too shy to bring it on camera for the whole world. <<else>> - The Ancient Egyptian sensibility of your arcology features slave incest, but $he's too shy even to play-act with $his $relationType for publicity. + The Ancient Egyptian sensibility of your arcology features slave incest, but $he's too shy even to play-act with $his _relationType for publicity. <</if>> <<else>> One idea that comes up while brainstorming is to act out Ancient Egyptian incest with a family member, but all of them are confined and unavailable. diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw index a6a094393be90f5b50313944dfeffde67a559411..169e311099addb11e86c9564584ddc829f39c287 100644 --- a/src/uncategorized/saRelationships.tw +++ b/src/uncategorized/saRelationships.tw @@ -27,7 +27,7 @@ is a total sex addict, and has a spectacularly promiscuous sexual history, $he begins to think of sex as $his only meaningful emotional connection with people. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<else>> - and loves you, $he begins to think of you as a $woman might think of $his lover — or <<if $PC.title != 0>>husband<<else>>wife<</if>>. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ + and loves you, $he begins to think of you as a $woman might think of $his lover — or _wifeP. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <</if>> <<elseif _SlaveI.career == "a Futanari Sister" && _SlaveI.relationshipRules == "permissive">> @@ -43,7 +43,7 @@ <<if _j == _SL>> /* gone through the full loop, found no matches, so reset _SlaveJ */ <<set _SlaveJ = null>> <</if>> - <<elseif (_SlaveI.origin == "You were acquainted with $him before you were an arcology owner; your rival tried to use $him to manipulate you, but you rescued $him.") && ($rivalryDuration > 20) && !["Intellectual Dependency", "Paternalism", "Racial Supremacism", "Slave Professionalism"].includes($rivalryFS)&& _SlaveI.newGamePlus == 0>> + <<elseif (_SlaveI.origin == "You were acquainted with $him before you were an arcology owner; your rival tried to use $him to manipulate you, but you rescued $him.") && ($rivalryDuration > 20) && !["Intellectual Dependency", "Paternalism", "Racial Supremacism", "Slave Professionalism"].includes($rivalryFS)&& _SlaveI.newGamePlus == 0>> <<for _j = 0; _j < _SL; _j++>> <<set _SlaveJ = $slaves[_j]>> <<setLocalPronouns _SlaveJ 2>> @@ -474,17 +474,9 @@ <<if _PCrelative == 1>> <<set _PCrelative = "twin">> <<elseif _PCrelative == 2>> - <<if $PC.title == 1>> - <<set _PCrelative = "brother">> - <<else>> - <<set _PCrelative = "sister">> - <</if>> + <<set _PCrelative = _sisterP>> <<elseif _PCrelative == 3>> - <<if $PC.title == 1>> - <<set _PCrelative = "half-brother">> - <<else>> - <<set _PCrelative = "half-sister">> - <</if>> + <<set _PCrelative = "half-<<= _sisterP>>">> <</if>> $He <<if _SlaveI.sexualQuirk == "perverted">> @@ -779,17 +771,9 @@ <<if _PCrelative == 1>> <<set _PCrelative = "twin">> <<elseif _PCrelative == 2>> - <<if $PC.title == 1>> - <<set _PCrelative = "brother">> - <<else>> - <<set _PCrelative = "sister">> - <</if>> + <<set _PCrelative = _sisterP>> <<elseif _PCrelative == 3>> - <<if $PC.title == 1>> - <<set _PCrelative = "half-brother">> - <<else>> - <<set _PCrelative = "half-sister">> - <</if>> + <<set _PCrelative = "half-<<= _sisterP>>">> <</if>> $He <<if _SlaveI.sexualQuirk == "perverted">> @@ -876,18 +860,18 @@ $He lives a nice life by your side, despite $his inability to realize it. Since $he is so malleable and willing, you rarely have reason to punish $him anymore. <<set _SlaveI.kindness += 2>> <<case "whore" "work in the brothel" "serve the public" "serve in the club" "work a glory hole" "be confined in the arcade">> - You, others, it doesn't matter. They are all the same to your mindbroken wife. The public, however, is less forgiving of you ordering your slave wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ + You, others, it doesn't matter. They are all the same to your mindbroken $wife. The public, however, is less forgiving of you ordering your slave $wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ <<run repX(-100, "PCRelationships", _SlaveI)>> <<default>> - Being your wife is wasted on $his empty mind. If it weren't for the ring <<if _SlaveI.amp == 1>>hanging from $his neck<<else>>around $his finger<</if>>, nobody would ever realize $he was so close to you. + Being your $wife is wasted on $his empty mind. If it weren't for the ring <<if _SlaveI.amp == 1>>hanging from $his neck<<else>>around $his finger<</if>>, nobody would ever realize $he was so close to you. <</switch>> <<elseif _SlaveI.devotion+_SlaveI.trust >= 175>> <<switch _SlaveI.assignment>> <<case "be a servant" "work as a servant" "serve in the master suite" "please you" "be your Concubine">> - $He is @@.hotpink;happy@@ to be allowed to live $his life close to you, since $he's your wife. In addition, $his deep reliance on $his formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust.@@ + $He is @@.hotpink;happy@@ to be allowed to live $his life close to you, since $he's your $wife. In addition, $his deep reliance on $his formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust.@@ <<set _SlaveI.devotion += 2, _SlaveI.trust += 2>> <<case "whore" "work in the brothel" "serve the public" "serve in the club" "work a glory hole" "be confined in the arcade">> - $His reliance on $his formal relationship to you produces a slight increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust,@@ though this is reduced by being on a public sexual assignment rather than being kept for you alone. The public is less forgiving of you ordering your slave wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ + $His reliance on $his formal relationship to you produces a slight increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust,@@ though this is reduced by being on a public sexual assignment rather than being kept for you alone. The public is less forgiving of you ordering your slave $wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ <<set _SlaveI.devotion++, _SlaveI.trust++>> <<run repX(-100, "PCRelationships", _SlaveI)>> <<default>> @@ -900,20 +884,20 @@ $He @@.orangered;takes advantage@@ of your kindness, since $he is allowed to live a pampered life just for letting you use $his body. $His insolence allows $him to retain, if not strengthen, @@.mediumorchid;$his hatred of you.@@ <<set _SlaveI.devotion -= 7, _SlaveI.trust += 5>> <<case "whore" "work in the brothel" "serve the public" "serve in the club" "work a glory hole" "be confined in the arcade">> - Not being a pampered fucktoy to you @@.gold;wounds $his expectations as your wife,@@ but gives $him the space needed to @@.hotpink;begin warming up to you.@@ The public, disregarding $his opinions, is less forgiving of you ordering your slave wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ + Not being a pampered fucktoy to you @@.gold;wounds $his expectations as your $wife,@@ but gives $him the space needed to @@.hotpink;begin warming up to you.@@ The public, disregarding $his opinions, is less forgiving of you ordering your slave $wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ <<set _SlaveI.devotion++, _SlaveI.trust-->> <<run repX(-100, "PCRelationships", _SlaveI)>> <<default>> - $He @@.orangered;takes advantage@@ of your kindness, since $he expects you'd never truly harm your wife. $His insolence allows $him to remain, if not strengthen, @@.mediumorchid;$his hatred of you.@@ + $He @@.orangered;takes advantage@@ of your kindness, since $he expects you'd never truly harm your $wife. $His insolence allows $him to remain, if not strengthen, @@.mediumorchid;$his hatred of you.@@ <<set _SlaveI.devotion -= 5, _SlaveI.trust += 3>> <</switch>> <<elseif _SlaveI.devotion < -20>> <<switch _SlaveI.assignment>> <<case "be a servant" "work as a servant" "serve in the master suite" "please you" "be your Concubine">> - $He is @@.gold;thoroughly terrified@@ by having to remain in a formal relationship with the _womanP $he hates. Being so close to you forces $him to slowly @@.hotpink;accept@@ $his new role as your wife. + $He is @@.gold;thoroughly terrified@@ by having to remain in a formal relationship with the _womanP $he hates. Being so close to you forces $him to slowly @@.hotpink;accept@@ $his new role as your $wife. <<set _SlaveI.devotion++, _SlaveI.trust -= 3>> <<case "whore" "work in the brothel" "serve the public" "serve in the club" "work a glory hole" "be confined in the arcade">> - Being forced into public service only reinforces $his @@.gold;fears@@ and @@.mediumorchid;perceptions@@ of you. If there was any chance of $his thinking you cared, @@.mediumorchid;it's gone now.@@ The public, disregarding $his opinions, is less forgiving of you ordering your slave wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ + Being forced into public service only reinforces $his @@.gold;fears@@ and @@.mediumorchid;perceptions@@ of you. If there was any chance of $his thinking you cared, @@.mediumorchid;it's gone now.@@ The public, disregarding $his opinions, is less forgiving of you ordering your slave $wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ <<set _SlaveI.devotion -= 10, _SlaveI.trust -= 10>> <<run repX(-100, "PCRelationships", _SlaveI)>> <<default>> @@ -923,14 +907,14 @@ <<else>> <<switch _SlaveI.assignment>> <<case "be a servant" "work as a servant" "serve in the master suite" "please you" "be your Concubine">> - $He is @@.hotpink;happy@@ to be allowed to live a rather nice life close to you, since $he's your wife. In addition, $his formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust.@@ + $He is @@.hotpink;happy@@ to be allowed to live a rather nice life close to you, since $he's your $wife. In addition, $his formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust.@@ <<set _SlaveI.devotion += 2, _SlaveI.trust += 2>> <<case "whore" "work in the brothel" "serve the public" "serve in the club" "work a glory hole" "be confined in the arcade">> - $His formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust,@@ though this is reduced by being on a public sexual assignment rather than being kept for you alone, not that $he minds; just as you ordered $him to marry you, so may you order $him to fuck others. The public, however, is less forgiving of you ordering your slave wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ + $His formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust,@@ though this is reduced by being on a public sexual assignment rather than being kept for you alone, not that $he minds; just as you ordered $him to marry you, so may you order $him to fuck others. The public, however, is less forgiving of you ordering your slave $wife to fuck random citizens, @@.red;seriously damaging your reputation.@@ <<set _SlaveI.devotion++, _SlaveI.trust++>> <<run repX(-100, "PCRelationships", _SlaveI)>> <<default>> - $His formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust@@ as $he gradually grows closer to $his <<if $PC.title != 0>>husband<<else>>wife<</if>>. + $His formal relationship to you produces a steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust@@ as $he gradually grows closer to $his _wifeP. <<set _SlaveI.devotion++, _SlaveI.trust++>> <</switch>> <</if>> @@ -981,7 +965,7 @@ and is a total sex addict, $he begins to think of sex as $his only meaningful emotional connection with people. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<else>> - and loves you, $he begins to think of you as a $woman might think of $his lover — or <<if $PC.title != 0>>husband<<else>>wife<</if>>. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ + and loves you, $he begins to think of you as a $woman might think of $his lover — or _wifeP. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <</if>> <<set _SlaveJ.relationship = 0, _SlaveJ.relationshipTarget = 0, _SlaveI.relationshipTarget = 0>> @@ -1026,7 +1010,7 @@ $he's a total sex addict, $he begins to think of sex as $his only meaningful emotional connection with people. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<else>> - $he loves you, $he begins to think of you as a $woman might think of $his lover — or <<if $PC.title != 0>>husband<<else>>wife<</if>>. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ + $he loves you, $he begins to think of you as a $woman might think of $his lover — or _wifeP. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <</if>> <<set _SlaveJ.relationship = 0, _SlaveJ.relationshipTarget = 0, _SlaveI.relationshipTarget = 0>> @@ -1112,7 +1096,7 @@ <<elseif mutualChildren(_SlaveI, _SlaveJ, $slaves) > 0 && (random(1, 100) < (50+(10*mutualChildren(_SlaveI, _SlaveJ, $slaves))+_seed))>> Between their children and common sexual flings, they begin seeing each other as a traditional couple. Their relationship becomes @@.lightgreen;strongly emotional@@ as well as physical. <<if _SlaveI.pregSource == _SlaveJ.ID && _SlaveJ.pregSource == _SlaveI.ID && _SlaveI.pregKnown == 1 && _SlaveJ.pregKnown == 1>> - Not very surprising, since they both have the others child growing in their womb. + Not very surprising, since they both have the other's child growing in their womb. <<elseif _SlaveI.pregSource == _SlaveJ.ID && _SlaveI.pregKnown == 1>> Not very surprising, since _SlaveI.slaveName is carrying another of _SlaveJ.slaveName's children. <<elseif _SlaveJ.pregSource == _SlaveI.ID && _SlaveJ.pregKnown == 1>> @@ -1139,7 +1123,7 @@ <<case 4>> /% lovers %/ and _SlaveJ.slaveName are lovers. <<default>> /% slave wives %/ - has a slave wife, _SlaveJ.slaveName. + has a slave _wife2, _SlaveJ.slaveName. <<if $arcologies[0].FSChattelReligionist != "unset">> Society @@.green;approves@@ of their marriage, which advances the slave sacrament. <<set $arcologies[0].FSChattelReligionist += 0.05 * $FSSingleSlaveRep>> @@ -1149,7 +1133,7 @@ <<if _SlaveI.relationship > 0>> /* catch should $he change $his relationship status */ <<if _SlaveI.devotion <= 95>> <<if _SlaveI.devotion != _SlaveJ.devotion>> - _SlaveI.slaveName absorbs <<if _SlaveI.relationship == 1>>a touch of $his friend<<elseif _SlaveI.relationship == 2>>a little of $his best friend<<elseif _SlaveI.relationship == 3>>some of $his close friend<<elseif _SlaveI.relationship == 4>>a lot of $his lover<<else>>much of $his wife<</if>>'s + _SlaveI.slaveName absorbs <<if _SlaveI.relationship == 1>>a touch of $his friend<<elseif _SlaveI.relationship == 2>>a little of $his best friend<<elseif _SlaveI.relationship == 3>>some of $his close friend<<elseif _SlaveI.relationship == 4>>a lot of $his lover<<else>>much of $his _wife2<</if>>'s <<if _SlaveI.devotion > _SlaveJ.devotion>> @@.mediumorchid;<<if _SlaveJ.devotion > 50>>remaining doubts about you<<elseif _SlaveJ.devotion > 20>>remaining hesitations about sexual slavery<<elseif _SlaveJ.devotion >= -20>>unhappiness about being a sex slave<<else>>anger at being a slave<</if>>.@@ <<else>> @@ -1174,7 +1158,7 @@ <<elseif _SlaveI.relationship == 4>> for permitting $him and $his lover to be together. <<else>> - for giving $him a wife. + for giving $him a _wife2. <</if>> <<set _SlaveI.trust += _SlaveI.relationship>> <</if>> @@ -1192,9 +1176,10 @@ <<set $relationType = 0>> <<set _sr = getSlave(_SlaveI.relationshipTarget)>> <<if def _sr>> + <<setLocalPronouns _sr 2>> <<if (_SlaveI.mother == _sr.ID || _SlaveI.father == _sr.ID || _sr.mother == _SlaveI.ID || _sr.father == _SlaveI.ID || areSisters(_SlaveI, _sr) > 0)>> <<if _sr.mother == _SlaveI.ID || _sr.father == _SlaveI.ID>> - <<set $relationType = "daughter">> + <<set $relationType = _daughter2>> <<elseif _SlaveI.mother == _sr.ID>> <<set $relationType = "mother">> <<elseif _SlaveI.father == _sr.ID>> @@ -1204,9 +1189,9 @@ <<case 1>> <<set $relationType = "twin">> <<case 2>> - <<set $relationType = "sister">> + <<set $relationType = _sister2>> <<case 3>> - <<set $relationType = "half-sister">> + <<set $relationType = "half-<<= _sister2>>">> <</switch>> <</if>> <<set $relation = _sr>> @@ -1243,7 +1228,7 @@ <<if _SlaveI.pregKnown == 1>> <<if _SlaveI.pregSource == $relation.ID>> <<if _SlaveI.origin == "$He offered $himself to you for enslavement hoping you would preserve $his incestuous relationship with $his sibling.">> - $He's @@.hotpink;overjoyed@@ to be carrying $his sister's child<<if _SlaveI.pregType > 1>>ren<</if>>. + $He's @@.hotpink;overjoyed@@ to be carrying $his _sister2's child<<if _SlaveI.pregType > 1>>ren<</if>>. <<set _SlaveI.devotion += 2>> <<elseif _SlaveI.origin == "$He offered to become your slave to protect $his incestuous relationship.">> $He's @@.hotpink;overjoyed@@ to be carrying $his <<print $relationType>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>. @@ -1295,6 +1280,10 @@ <</if>> <<else>> <<if _SlaveI.relation != 0 && (_SlaveI.relationTarget == _SlaveI.relationshipTarget)>> + <<set _sr = getSlave(_SlaveI.relationshipTarget)>> + <<if def _sr>> + <<setLocalPronouns _sr 2>> + <</if>> _SlaveI.slaveName is <<if _SlaveI.origin == "$He offered $himself to you for enslavement hoping you would preserve $his incestuous relationship with $his sibling.">> @@.hotpink;grateful@@ and @@.mediumaquamarine;trusting@@ towards you for protecting $him in $his long-standing incestuous relationship. @@ -1321,7 +1310,7 @@ <</if>> <<if (_SlaveI.pregKnown == 1) && (_SlaveI.pregSource == _SlaveI.relationTarget)>> <<if _SlaveI.origin == "$He offered $himself to you for enslavement hoping you would preserve $his incestuous relationship with $his sibling.">> - $He's @@.hotpink;overjoyed@@ to be carrying $his sister's child<<if _SlaveI.pregType > 1>>ren<</if>>. + $He's @@.hotpink;overjoyed@@ to be carrying $his _sister2's child<<if _SlaveI.pregType > 1>>ren<</if>>. <<set _SlaveI.devotion += 2>> <<elseif _SlaveI.sexualQuirk == "perverted">> $He's even @@.hotpink;aroused@@ by the constant awareness that $his <<print relationTargetWord(_SlaveI)>> is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> $he's carrying. @@ -1456,7 +1445,7 @@ <<if (_SlaveJ.actualAge - _SlaveI.actualAge > 10) && (_SlaveI.relationship >= 4) && (random(1,300) > (_SlaveI.intelligence) + (_SlaveJ.intelligence)) && (_SlaveJ.devotion > 75) && (_SlaveJ.trust > 50) && (_SlaveJ.intelligence+_SlaveJ.intelligenceImplant > 15) && (_SlaveJ.intelligenceImplant >= 15) && ((_SlaveI.devotion > 20) || ((_SlaveI.devotion >= -20) && (_SlaveI.trust < -20)) || (_SlaveI.trust > -10))>> <<if (_SlaveJ.skill.oral > _SlaveI.skill.oral) || ((_SlaveJ.skill.anal > _SlaveI.skill.anal) && (_SlaveI.anus > 0)) || ((_SlaveJ.skill.vaginal > _SlaveI.skill.vaginal) && (_SlaveI.vagina > 0) && (_SlaveJ.vagina > 0)) || (_SlaveJ.trust > _SlaveI.trust)>> - _SlaveI.slaveName's <<if _SlaveI.relationship >= 5>>wife<<else>>lover<</if>> is older, more experienced, and + _SlaveI.slaveName's <<if _SlaveI.relationship >= 5>>_wife2<<else>>lover<</if>> is older, more experienced, and <<if (_SlaveJ.skill.oral > _SlaveI.skill.oral)>> better at blowjobs than $he is. They are such good slaves that the senior _girl2 serves as a mentor to the junior, improving $his oral skills. <<= SkillIncrease.Oral(_SlaveI, 5)>> diff --git a/src/uncategorized/saRules.tw b/src/uncategorized/saRules.tw index 28301cc384ee4d2b60ccb9a0a68705f20d9e15b6..418d57a75f296af211298dfba1437421effee756 100644 --- a/src/uncategorized/saRules.tw +++ b/src/uncategorized/saRules.tw @@ -162,12 +162,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his room<<if $BrothiIDs.length > 1>> with a whore between $his legs<</if>>. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -470,12 +474,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in the penthouse slave quarters. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -647,7 +655,7 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<elseif (canSee($slaves[$i])) && ($slaves[$i].intelligence+$slaves[$i].intelligenceImplant > 50)>> usually spends relaxing in $his private room reading books. <<elseif (canSee($slaves[$i])) && (canHear($slaves[$i]))>> @@ -660,7 +668,11 @@ usually spends napping in $his private room. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -935,12 +947,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in the penthouse slave quarters. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -1113,12 +1129,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his room amusing $himself with the amenities for recovering slaves. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -1161,7 +1181,7 @@ is frigid and has little interest in getting off<<if (_release != "permissive")>>, making the rule restricting $his sexual outlets superfluous<</if>>. <<set $slaves[$i].need = 0>> <<elseif $slaves[$i].relationship == -3>> - is well taken care of during $his stay in $clinicName; you make sure your wife's every sexual need is handled personally. + is well taken care of during $his stay in $clinicName; you make sure your $wife's every sexual need is handled personally. <<set $slaves[$i].need = 0>> <<if canImpreg($slaves[$i], $PC) && (($slaves[$i].vagina > 0 && $slaves[$i].ovaries == 1)||($slaves[$i].anus != 0 && $slaves[$i].mpreg == 1))>> <<= knockMeUp($slaves[$i], 10, 0, -1, 1)>> @@ -1175,8 +1195,9 @@ <</if>> <</if>> <<elseif _lover != 0>> + <<setLocalPronouns $slaves[_lover] 2>> <<set $slaves[$i].need = 0>> - is well taken care of during $his stay in $clinicName; $his <<if $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>> frequently stops by when $he gets the chance to make sure $his sexual needs are properly handled. + is well taken care of during $his stay in $clinicName; $his <<if $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>> frequently stops by when $he gets the chance to make sure $his sexual needs are properly handled. <<set $slaves[_lover].counter.oral += 14, $oralTotal += 14>> <<elseif $Nurse != 0>> is routinely brought to orgasm by $Nurse.slaveName as part of $his duties. @@ -1357,7 +1378,11 @@ <<case "relaxation">> $He's given access to the amenities present for recovering slaves to pass the time. <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -1476,12 +1501,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his room<<if $CellBiIDs.length > 1>> teaching a disobedient slave how to properly use their mouth<</if>>. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -1522,7 +1551,7 @@ is frigid and has little interest in getting off, making the rule restricting $his sexual outlets superfluous. <<set $slaves[$i].need = 0>> <<elseif $slaves[$i].relationship == -3>> - You make sure your troublesome wife's sexual needs are handled, openly, in the middle of $cellblockName, where everyone can see, hear, and smell your dominance. + You make sure your troublesome $wife's sexual needs are handled, openly, in the middle of $cellblockName, where everyone can see, hear, and smell your dominance. <<set $slaves[$i].need = 0>> <<if canImpreg($slaves[$i], $PC) && (($slaves[$i].vagina > 0 && $slaves[$i].ovaries == 1)||($slaves[$i].anus != 0 && $slaves[$i].mpreg == 1))>> <<= knockMeUp($slaves[$i], 10, 0, -1, 1)>> @@ -1778,7 +1807,11 @@ <<case "relaxation">> $He's given free time, which $he usually spends soaking in a hot bath or enjoying the amenities $his facility has to offer. <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -2100,9 +2133,13 @@ <<if _rewards > 0>> <<switch $slaves[$i].standardReward>> <<case "relaxation">> - $He's given free time, which $he usually spends in a private bath<<if $Attendant != 0>> enjoying $Attendant.slaveName's best care<</if>>. + $He's given free time, which $he usually spends in a private bath<<if $Attendant != 0>>, enjoying $Attendant.slaveName's best care<</if>>. <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -2275,7 +2312,11 @@ <<case "relaxation">> $He's given free time, which $he usually spends soaking in a hot bath or enjoying the amenities $his facility has to offer. <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -2599,12 +2640,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in the penthouse slave quarters. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -2788,12 +2833,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his room<<if $SchlRiIDs.length > 1>> giving private lessons to a student<</if>>. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -3099,12 +3148,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his dorm room. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -3277,12 +3330,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his room<<if $ServQiIDs.length > 1>> while enjoying some service from $his underlings<</if>>. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -3590,12 +3647,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in the penthouse slave quarters. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -3763,12 +3824,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his room<<if $DairyiIDs.length > 1>> with the softest cow available<</if>>. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -4139,12 +4204,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in the penthouse slave quarters. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -4313,12 +4382,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in $his room<<if $FarmyardiIDs.length > 1>> with the softest cow available<</if>>. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -4671,12 +4744,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in the penthouse slave quarters. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -4767,7 +4844,11 @@ usually spends relaxing with you. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -4891,12 +4972,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing on $his favorite pillow. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -5038,12 +5123,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in your Head Girl's private room. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> @@ -5420,12 +5509,16 @@ <<case "relaxation">> $He's given free time, which $he <<if $spa != 0>> - usually spends in $spaName<<if $Attendant != 0>> enjoying $Attendant.slaveName's care<</if>>. + usually spends in $spaName<<if $Attendant != 0>>, enjoying $Attendant.slaveName's care<</if>>. <<else>> usually spends relaxing in the slave quarters. <</if>> <<if $slaves[$i].relationship > 0>> - $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>wife<</if>>. + <<set $subSlave = getSlave($slaves[$i].relationshipTarget)>> + <<if def $subSlave>> + <<setLocalPronouns $subSlave 2>> + <</if>> + $He often asks to save these breaks so $he can spend them with $his <<if $slaves[$i].relationship == 1>>friend<<elseif $slaves[$i].relationship == 2>>best friend<<elseif $slaves[$i].relationship == 3>>friend with benefits<<elseif $slaves[$i].relationship == 4>>sweetheart<<else>>_wife2<</if>>. <</if>> These breaks are @@.green;good for $him.@@ <<set $slaves[$i].health += _rewards>> diff --git a/src/uncategorized/salon.tw b/src/uncategorized/salon.tw index 1bfcb1ad06906fb48d362ebabc64c219f7f21f68..b19a1ec39a22f665a978ab71f350aa2adfc4bc1c 100644 --- a/src/uncategorized/salon.tw +++ b/src/uncategorized/salon.tw @@ -440,8 +440,6 @@ Give $him: [[Hearing aids|Salon][$activeSlave.earwear = "hearing aids",cashX(for cm (<<= cmToInchString($activeSlave.hLength)>>) <<elseif $showInches == 2>> inches - <<else>> - cm <</if>> [[Apply|Salon][cashX(forceNeg($modCost), "slaveMod", $activeSlave), $activeSlave.hLength = (Number(_newHLength) || $activeSlave.hLength)]] @@ -964,4 +962,4 @@ Dye or paint: <<else>> <br><br>$His underarms are completely hairless. -<</if>> +<</if>> \ No newline at end of file diff --git a/src/uncategorized/schoolroomReport.tw b/src/uncategorized/schoolroomReport.tw index d64142e59d0e4a6368c695526134679e15108cf1..f10b10637c4204f75fa84cbd14fe9e267484f775 100644 --- a/src/uncategorized/schoolroomReport.tw +++ b/src/uncategorized/schoolroomReport.tw @@ -44,7 +44,7 @@ <</if>> <<set $Schoolteacher = $slaves[_FLs]>> <<setLocalPronouns $Schoolteacher>> - $Schoolteacher.slaveName is serving as your Schoolteacher.<<if $Schoolteacher.relationship == -3 && $Schoolteacher.devotion > 50>> As your loving wife, $he tries $his best to teach $his pupils how to please you.<</if>> + $Schoolteacher.slaveName is serving as your Schoolteacher.<<if $Schoolteacher.relationship == -3 && $Schoolteacher.devotion > 50>> As your loving $wife, $he tries $his best to teach $his pupils how to please you.<</if>> <<if (_FLsFetish == 1)>> $He's allowed and even expected to use $his students for $his own sexual gratification, and in their own way $his students are complicit, offering sexual favors for an easier time in the classroom. Before long, $he's running a hungry eye over the tits and asses of new trainees; $he is now @@.lightcoral;more dominant.@@ <<elseif (_FLsFetish == 2)>> diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw index 487c4d140fd5abc0a1cf3b560981eca2ba73d607..a93fb4af6f2930d61f4d030fe4c5ff1308e9693d 100644 --- a/src/uncategorized/seCoursing.tw +++ b/src/uncategorized/seCoursing.tw @@ -338,7 +338,7 @@ You lead your lurcher $activeLurcher.slaveName out on a leash, naked just like t <<elseif $origin == "heavily pregnant">> is <<if $activeSlave.race == "amerindian" || $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan">>an<<else>>a<</if>> $activeSlave.race _girl2, young and healthy but @@.pink;heavily pregnant.@@ _He2's probably been selected to be a hare as a joke, or because someone hates _him2. <<if !canSee($activeLurcher)>> To accommodate your blind lurcher, a bell is attached to _his2 popped navel.<</if>> <<elseif $origin == "housewife">> - is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race _woman2, no longer young, but attractive enough in a fake sort of way. _He2 has obviously been crying, and has probably been recently enslaved from a comfortable life, like that of a @@.pink;housewife or a trophy wife.@@<<if !canSee($activeLurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>> + is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race _woman2, no longer young, but attractive enough in a fake sort of way. _He2 has obviously been crying, and has probably been recently enslaved from a comfortable life, like that of a @@.pink;house<<= $wife>> or a trophy $wife.@@<<if !canSee($activeLurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>> <<elseif $origin == "disobedient young">> is a fit young $activeSlave.race _girl2, and is far more watchful and alert than _his2 fellow hares. _He2 may be a @@.pink;disobedient slave@@ here because _he2 was difficult to train.<<if !canSee($activeLurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>> <<elseif $origin == "disobedient young dickgirl">> diff --git a/src/uncategorized/seCustomSlaveDelivery.tw b/src/uncategorized/seCustomSlaveDelivery.tw index 055d43008d1a818f0378678a111370401aa8377f..650584973a6f6311d5372cc30cfd6dffd2cc37f4 100644 --- a/src/uncategorized/seCustomSlaveDelivery.tw +++ b/src/uncategorized/seCustomSlaveDelivery.tw @@ -196,6 +196,8 @@ <<set $activeSlave.smells = $customSlave.smells>> <<set $activeSlave.tastes = $customSlave.tastes>> <<set $activeSlave.amp = $customSlave.amp>> +<<set $activeSlave.missingArms = $customSlave.missingArms>> +<<set $activeSlave.missingLegs = $customSlave.missingLegs>> <<set $activeSlave.weekAcquired = $week>> <<set $activeSlave.origin = "You purchased $him by special order.">> <<set $activeSlave.career = "a slave">> diff --git a/src/uncategorized/seRaiding.tw b/src/uncategorized/seRaiding.tw index 4475eea8beead12d245a3a8ce3ebf7bdd10cc6f6..1384302b737e8f0e047bdc4cd17d313989529b11 100644 --- a/src/uncategorized/seRaiding.tw +++ b/src/uncategorized/seRaiding.tw @@ -567,7 +567,7 @@ target <<setLocalPronouns $activeSlave>> <<switch $origin>> <<case "housewife">> - is an idyllic mansion in the countryside of an old world nation. Its owner is a businessman of some notoriety, but is often away from his expansive estate. A number of servants and maids are in residence, but the primary resident of the mansion is his wife. From the sound of things, $he is not a young $woman but attractive enough in a fake sort of way. + is an idyllic mansion in the countryside of an old world nation. Its owner is a businessman of some notoriety, but is often away from his expansive estate. A number of servants and maids are in residence, but the primary resident of the mansion is his $wife. From the sound of things, $he is not a young $woman but attractive enough in a fake sort of way. <<case "university professor">> is the department offices of a still operational old world university. The University prides itself on a diverse and capable faculty, often touting its wealth of female professors as a symbol of its progressive agenda. Though they are unlikely to be young, these professors will be educated and quite intelligent. The head of the department is no exception, a $woman of considerable academic credentials. <<case "university student">> diff --git a/src/uncategorized/seRaidingAssault.tw b/src/uncategorized/seRaidingAssault.tw index e7b67fa1718e8fbb7583200eb628bcce6e817e51..6aab60bcb15adf7c8a32c4359702e4a9d4731c5a 100644 --- a/src/uncategorized/seRaidingAssault.tw +++ b/src/uncategorized/seRaidingAssault.tw @@ -22,12 +22,12 @@ You make your selection and direct your $mercenariesTitle to attack the target. <<switch $origin>> <<case "housewife">> <<if $targetEscape >= _MercCapture>> - Somehow the housewife manages to evade your mercenaries. + Somehow the house<<= $wife>> manages to evade your mercenaries. <<elseif _raidescape == 1>> Your $mercenariesTitle pry open the door to the mansion's panic room to find that the $woman has hung $himself to escape capture. A waste. <<else>> - Your $mercenariesTitle pry open the door to the mansion's panic room and pull the protesting housewife from its depths. - The housewife watches in terror as your $mercenariesTitle slake their lust on $his servants and maids, knowing that $his respite from a brutal rape must only be a temporary blessing. + Your $mercenariesTitle pry open the door to the mansion's panic room and pull the protesting house<<= $wife>> from its depths. + The house<<= $wife>> watches in terror as your $mercenariesTitle slake their lust on $his servants and maids, knowing that $his respite from a brutal rape must only be a temporary blessing. <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <</if>> <<case "university professor">> @@ -96,7 +96,7 @@ You make your selection and direct your $mercenariesTitle to attack the target. <<elseif _raidescape == 1>> The nuns flee into their inner sanctum as your $mercenariesTitle approach and bar the doors behind them as they go. When the last barrier is pried open, your $mercenariesTitle discover the nuns have committed suicide as a group rather than be taken prisoner. <<else>> - Unarmed and defenseless, the nuns are easily cowed by your $mercenariesTitle and taken away one by one to the VTOLs. The most pious sister prays vehemently until $he is dragged out of the inner sanctum in cuffs. + Unarmed and defenseless, the nuns are easily cowed by your $mercenariesTitle and taken away one by one to the VTOLs. The most pious $sister prays vehemently until $he is dragged out of the inner sanctum in cuffs. The pious nun spends the VTOL ride engaged in fervent prayer as $his sisters are raped by your mercenaries. $He naïvely believes that $his devotion and piety will see $him spared from the same fate as $his sisters. <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <</if>> diff --git a/src/uncategorized/seRetirement.tw b/src/uncategorized/seRetirement.tw index f7d609cb622e1e2d68776f8a3b798390e75719d4..0f36d5710715c5b2830869cfea4658bcb507804b 100644 --- a/src/uncategorized/seRetirement.tw +++ b/src/uncategorized/seRetirement.tw @@ -51,15 +51,15 @@ in a way that will fill the rest of your property with envy and @@.mediumaquamar $He is retiring into citizenship, with a substantial annuity that will provide $him with a secure if not luxurious life. <<if $activeSlave.relationship == -3>> <<if $activeSlave.fetish == "mindbroken">> - Sadly, $he is not mentally equipped to look after $himself, but the arcology hosts several fine institutions capable of caring for $him. They'll have someone check in on $him daily. $Him being your wife is ultimately irrelevant; $he never realized it in the first place. + Sadly, $he is not mentally equipped to look after $himself, but the arcology hosts several fine institutions capable of caring for $him. They'll have someone check in on $him daily. $Him being your $wife is ultimately irrelevant; $he never realized it in the first place. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - $He wishes $he could continue to be your slave wife, but $he understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to get used to the idea, and gets through the process with dignity, doing $his best to avoid embarrassing you. + $He wishes $he could continue to be your slave $wife, but $he understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to get used to the idea, and gets through the process with dignity, doing $his best to avoid embarrassing you. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $He is glad $he no longer has to be your slave wife, as $he never wanted to be in the first place, though $he will miss taking advantage of the position. $He understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to dream of the idea, and goes through the process with unremitting joy, doing $his best to embarrass you. + $He is glad $he no longer has to be your slave $wife, as $he never wanted to be in the first place, though $he will miss taking advantage of the position. $He understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to dream of the idea, and goes through the process with unremitting joy, doing $his best to embarrass you. <<elseif $activeSlave.devotion < -20>> - $He is glad $he no longer has to be your slave wife, as $he never wanted to be in the first place. $He understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to dream of the idea, and goes through the process with unremitting joy, doing $his best to avoid embarrassing you while $he's still subject to your whims and your punishments. + $He is glad $he no longer has to be your slave $wife, as $he never wanted to be in the first place. $He understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to dream of the idea, and goes through the process with unremitting joy, doing $his best to avoid embarrassing you while $he's still subject to your whims and your punishments. <<else>> - $He is glad $he no longer has to be your slave wife, as $he never wanted to be in the first place. $He understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to get used to the idea, and gets through the process dutifully, doing $his best to avoid embarrassing you. + $He is glad $he no longer has to be your slave $wife, as $he never wanted to be in the first place. $He understands that marriages between slaves and slaveowners are predicated on the slave relationship. $He knows that $his retirement has come, meaning that $his slave relationship to you is ending. $He's had a long time to get used to the idea, and gets through the process dutifully, doing $his best to avoid embarrassing you. <</if>> <<elseif $activeSlave.fetish == "mindbroken">> Sadly, $he is not mentally equipped to look after $himself, but the arcology hosts several fine institutions capable of caring for $him. They'll have someone check in on $him daily. @@ -140,15 +140,15 @@ As $he takes $his leave, heading the short distance down to $his modest little a <br> When you return to your desk you realize something. <<if $activeSlave.fetish == "mindbroken">> - The ring $he wore when $he was your slave wife is nowhere to be seen; $he's likely forgotten $he was wearing it, but no matter: you can always get more. + The ring $he wore when $he was your slave $wife is nowhere to be seen; $he's likely forgotten $he was wearing it, but no matter: you can always get more. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - The ring $he wore when $he was your slave wife is nowhere to be seen; $he's likely taken it with $him to remember you by. + The ring $he wore when $he was your slave $wife is nowhere to be seen; $he's likely taken it with $him to remember you by. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - The ring $he wore when $he was your slave wife is nowhere to be seen; $he's likely taken it with $him to either try and pawn or to dispose of. It doesn't matter: you can always get more. + The ring $he wore when $he was your slave $wife is nowhere to be seen; $he's likely taken it with $him to either try and pawn or to dispose of. It doesn't matter: you can always get more. <<elseif $activeSlave.devotion < -20>> - The ring $he wore when $he was your slave wife was left on your desk; $he likely ripped it off as soon as $he was free. + The ring $he wore when $he was your slave $wife was left on your desk; $he likely ripped it off as soon as $he was free. <<else>> - The ring $he wore when $he was your slave wife is nowhere to be seen; $he's either taken it with $him as a souvenir, or left it back in $his sleeping area. If it's the former, no matter: you can always get more. + The ring $he wore when $he was your slave $wife is nowhere to be seen; $he's either taken it with $him as a souvenir, or left it back in $his sleeping area. If it's the former, no matter: you can always get more. <</if>> <</if>> @@ -173,9 +173,9 @@ Your arcology has gained a well-off citizen. that $he's quite eager to fuck you as a free $woman. <<if _clonedSlave.relationship == -3>> <<if _clonedSlave.devotion+_clonedSlave.trust >= 175>> - When $he knows $he has your attention, $he flashes <<if _clonedSlave.amp != 1>>$his hand, revealing the steel ring that $he wore when $he was your slave wife<<else>> the steel ring that $he wore when $he was your slave wife attached to the same chain you placed around $his neck on your wedding<</if>>. Even though the ring is meaningless to society, it holds a special meaning to you and $him. + When $he knows $he has your attention, $he flashes <<if _clonedSlave.amp != 1>>$his hand, revealing the steel ring that $he wore when $he was your slave $wife<<else>> the steel ring that $he wore when $he was your slave $wife attached to the same chain you placed around $his neck on your wedding<</if>>. Even though the ring is meaningless to society, it holds a special meaning to you and $him. <<else>> - When $he knows $he has your attention, $he produces the steel ring that $he wore when $he was your slave wife. $He doesn't put it on, but $he kisses it suggestively before putting it back in $his purse. + When $he knows $he has your attention, $he produces the steel ring that $he wore when $he was your slave $wife. $He doesn't put it on, but $he kisses it suggestively before putting it back in $his purse. <</if>> <</if>> <<if (_clonedSlave.fetish == "submissive") && (_clonedSlave.fetishKnown == 1)>> @@ -229,7 +229,7 @@ Your arcology has gained a well-off citizen. /* 000-250-006 */ <</replace>> <<replace "#result">> - $He doesn't get far before $he <<if canHear(_clonedSlave)>>hears a desperate pursuit behind $him<<else>>feels a gentle tap on $his shoulder<</if>>. It's $his <<if _clonedSlave.relationship >= 5>>wife<<else>>lover<</if>>, $slaves[_sr].slaveName, <<if canHear(_clonedSlave)>>hurrying to catch<<else>>finally catching<</if>> up. Watching on the monitors, you see _clonedSlave.slaveName's mixed pleasure and pain at seeing _him2 again so soon, followed by a tearful explanation and an embrace so heartfelt that the pair of ex-slaves collapse to the floor together, sobbing. + $He doesn't get far before $he <<if canHear(_clonedSlave)>>hears a desperate pursuit behind $him<<else>>feels a gentle tap on $his shoulder<</if>>. It's $his <<if _clonedSlave.relationship >= 5>>_wife2<<else>>lover<</if>>, $slaves[_sr].slaveName, <<if canHear(_clonedSlave)>>hurrying to catch<<else>>finally catching<</if>> up. Watching on the monitors, you see _clonedSlave.slaveName's mixed pleasure and pain at seeing _him2 again so soon, followed by a tearful explanation and an embrace so heartfelt that the pair of ex-slaves collapse to the floor together, sobbing. <<set $activeSlave = $slaves[_sr]>> <<= removeActiveSlave() >> <br><br> diff --git a/src/uncategorized/seWeddingDouble.tw b/src/uncategorized/seWeddingDouble.tw index cefd8f8a176bf6cdec064dfc4f629b026d4b4fe5..97c2697b82d9ac996a670f5a6dcff913611d7dee 100644 --- a/src/uncategorized/seWeddingDouble.tw +++ b/src/uncategorized/seWeddingDouble.tw @@ -580,7 +580,7 @@ <<if $weddingPlanned == 3>> - The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave wives and their wombs to you as your private breeding ground is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && (_slave1.breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>> + The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> and their wombs to you as your private breeding ground is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && (_slave1.breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>> <br><br> /* good luck reading this next line */ _slave1.slaveName and _slave2.slaveName appear after everyone has had a chance to socialize,<<if (_slave1.amp == 1)>> _slave1.slaveName <</if>><<if (_slave1.amp == 1) && (_slave2.amp == 1)>>and <<if (_slave2.amp == 1)>>_slave2.slaveName <</if>> being carried by <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>other slaves<<elseif (_slave1.amp < 1) && (_slave2.amp == 1)>>_slave1.slaveName<<elseif (_slave1.amp == 1) && (_slave2.amp < 1)>>_slave2.slaveName<</if>> since <</if>><<if (_slave1.amp == 1) && (_slave2.amp != 1)>>$he's a quadruple amputee and $he cannot walk,<<elseif (_slave1.amp == 1) && (_slave2.amp == 1)>>they're both quadruple amputees and cannot walk,<<elseif (_slave1.amp != 1) && (_slave2.amp == 1)>>_he2's a quadruple amputee and _he2 cannot walk,<</if>> wearing beautiful bridal lingerie in @@ -940,7 +940,7 @@ <<set _c = 0>> You also proclaim <<if _slave1.surname != $PC.surname && _slave2.surname != $PC.surname>> - your new slave wives _slave1.slaveName and _slave2.slaveName $PC.surname. + your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> _slave1.slaveName and _slave2.slaveName $PC.surname. <<set _c += 2>> <<elseif _slave1.surname != $PC.surname>> _slave1.slaveName Mrs. _slave1.slaveName $PC.surname. @@ -1010,7 +1010,7 @@ <<elseif _slave1.devotion < -20>> The <<if _slave1.pronoun == _slave2.pronoun>><<= $girl>>s<<else>>slaves<</if>> are unwilling, so you gather _slave1.slaveName up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if _slave1.amp != 1>> Then you pull $his knees up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly to @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. You then turn your attention to _slave2.slaveName. _He2 had watched timidly as you had fucked _slave1.slaveName, but when you grab _him2, _he2 begins to cry softly. You ignore this, of course, and instead focus on pushing your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You can tell _he2 is trying _his2 hardest not to sob outright, and sure enough, a small sob escapes _his2 lips when you fill _him2 to the brim to the @@.green;applause of your guests.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation, despite their protesting. <<else>> - Your wives-to-be aren't particularly excited about what's coming, but they're fully prepared for it and have accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if _slave1.amp == 1>>gather _slave1.slaveName.slaveName up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _slave1.slaveName's hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, their mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's just another part of being your slave. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You <<if (_slave1.amp == 1 && _slave2.amp == 1)>>also <</if>><<if _slave2.amp == 1>>pick _him2 up, then <<else>>pull _him2 to _his2 feet and <</if>>pull _his2 g-string off in one swift motion, then maneuver your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You fuck _him2, hard, then fill _him2 to the brim @@.green;while your audience gives another round of applause.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation. + Your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>-to-be aren't particularly excited about what's coming, but they're fully prepared for it and have accepted it as a fact of life. There are worse things one can be than the slave-<<if $wife == _wife2>>$wife<<else>>spouse<</if>> of a wealthy arcology owner. You <<if _slave1.amp == 1>>gather _slave1.slaveName.slaveName up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _slave1.slaveName's hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, their mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's just another part of being your slave. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You <<if (_slave1.amp == 1 && _slave2.amp == 1)>>also <</if>><<if _slave2.amp == 1>>pick _him2 up, then <<else>>pull _him2 to _his2 feet and <</if>>pull _his2 g-string off in one swift motion, then maneuver your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You fuck _him2, hard, then fill _him2 to the brim @@.green;while your audience gives another round of applause.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation. <</if>> <<else>> <<if _slave1.fetish == "mindbroken">> @@ -1022,7 +1022,7 @@ <<elseif _slave1.devotion < -20>> _slave1.slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if _slave1.amp != 1>> Then you pull $his knees up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. <<else>> - _slave1.slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if _slave1.amp == 1>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ + _slave1.slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= $wife>> of a wealthy arcology owner. You <<if _slave1.amp == 1>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ <</if>> Then, you turn your attention to _slave2.slaveName. <<if _slave2.fetish == "mindbroken">> @@ -1034,7 +1034,7 @@ <<elseif _slave2.devotion < -20>> _He2 is unwilling, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 was crying before, but this causes _him2 to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if _slave2.amp != 1>> Then you pull _his2 knees up to give your guests a good view of the consummation.<</if>> _He2 is left to face them, watching sullenly as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, this is torture. _He2 gasps when your seed flows into _him2, orgasming unwillingly @@.green;more applause from your guests.@@ At this, _he2 completely breaks down, blubbering like a child at the unwelcome warmth in _his2 lower belly. <<else>> - _He2 isn't particularly excited about what's coming, but _he2's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if _slave2.amp == 1>>gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. Showing considerable dexterity, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _his2 hand and pull _him2 to _his2 feet while _he2 shimmies out of _his2 panties. _He2 cocks _his2 hips for you and you slide your cock inside _him2 before taking _his2 knees and drawing them up to hold _him2 in midair, impaled on you<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, it is what it is. _He2 gasps when your seed flows into _him2, orgasming shortly after to @@.green;more applause from your guests.@@ + _He2 isn't particularly excited about what's coming, but _he2's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= _wife2>> of a wealthy arcology owner. You <<if _slave2.amp == 1>>gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. Showing considerable dexterity, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _his2 hand and pull _him2 to _his2 feet while _he2 shimmies out of _his2 panties. _He2 cocks _his2 hips for you and you slide your cock inside _him2 before taking _his2 knees and drawing them up to hold _him2 in midair, impaled on you<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, it is what it is. _He2 gasps when your seed flows into _him2, orgasming shortly after to @@.green;more applause from your guests.@@ <</if>> You'll fuck them repeatedly over the next few days, ensuring impregnation<<if (_slave1.devotion < -20) && (_slave2.devotion < -20)>>, despite their protests<<elseif _slave1.devotion < -20>>, despite _slave1.slaveName's <<if _slave1.trust > 20>>efforts to defy you<<else>>protests<</if>><<elseif _slave2.devotion < -20>>, despite _slave2.slaveName's <<if _slave2.trust > 20>>efforts to defy you<<else>>protests<</if>><</if>>. <</if>> @@ -1227,11 +1227,11 @@ <<set _slave1.devotion += 10>> <<set _slave2.devotion += 10>> <<elseif _slave1.devotion < -20>> - The fact that you would allow them to remain together, albeit as your wives, @@.hotpink;causes them to begin to see you in a new light.@@ + The fact that you would allow them to remain together, albeit as your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>, @@.hotpink;causes them to begin to see you in a new light.@@ <<set _slave1.devotion += 15>> <<set _slave2.devotion += 15>> <<elseif _slave1.devotion >= -20>> - The fact that you would allow them to remain together, albeit as your wives, has them @@.hotpink;cautiously optimistic for the future.@@ + The fact that you would allow them to remain together, albeit as your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>, has them @@.hotpink;cautiously optimistic for the future.@@ <<set _slave1.devotion += 5>> <<set _slave2.devotion += 5>> <</if>> @@ -1396,115 +1396,115 @@ <<elseif $weddingPlanned == 2>> - The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave wives is an all day affair. + The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> is an all day affair. <<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>> <<if _slave1.fetish == "mindbroken">> /* TODO: rewrite for slaves that can't walk */ - They spent the day before resting and preparing themselves, if you can call sitting around mindlessly preparing. They spend most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that they'll be bound to you as your slave wives from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they are extracted and taken off to be bathed. + They spent the day before resting and preparing themselves, if you can call sitting around mindlessly preparing. They spend most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they are extracted and taken off to be bathed. <br><br> They return shortly, looking exhausted but otherwise uncaring. They're naked still, their skin clean, and are <<if _slave1.amp == 1 && _slave2.amp == 1>>carried<<else>>led<</if>> to you for the ceremony by other slaves. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They can't conceal their tiredness, and lean against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.amp == 1 && _slave2.amp == 1)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<else>><<if _slave1.amp == 1>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's finger<</if>> and another ring <<if _slave2.amp == 1>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you. <br><br> /* TODO: marked for rewrite */ - Once the ceremony is complete, you scoop up your new slave wives to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, and by the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. + Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, and by the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. <<elseif _slave1.devotion+_slave1.trust >= 175>> /* TODO: rewrite for slaves that can't walk */ - They spent the day before resting and preparing themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang. The theory is that they'll be bound to you as your slave wives from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. + They spent the day before resting and preparing themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. <br><br> They return shortly, looking exhausted but rather proud of themselves for getting through all that. They're naked still, their skin clean, and <<if _slave1.amp == 1 && _slave2.amp == 1>>are carried<<else>>come confidently<</if>> to stand by you for the ceremony. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well-traveled, and their tiredness. They do their best to conceal how ready to sleep they are, but they lean against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.amp == 1 && _slave2.amp == 1)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<else>><<if _slave1.amp == 1>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's finger<</if>> and another ring <<if _slave2.amp == 1>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you. <br><br> /* TODO: marked for rewrite */ - Once the ceremony is complete, you scoop up your new slave wives to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, and by the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slave's chest rises and falls with their breathing. + Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, and by the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slave's chest rises and falls with their breathing. <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> /* TODO: rewrite for slaves that can't walk */ - They spent the day before resting and trying to ready themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that they'll be bound to you as your slave wives from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. + They spent the day before resting and trying to ready themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. <br><br> They return shortly, looking exhausted and annoyed. They're naked still, their skin clean, and come reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal their tiredness and look stronger than they are, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.amp == 1 && _slave2.amp == 1)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if _slave1.amp == 1>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's trembling finger<</if>> and another ring <<if _slave2.amp == 1>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's trembling finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you. <br><br> /* TODO: marked for rewrite */ - Once the ceremony is complete, you scoop up your new, protesting, slave wives to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. They squirms slightly in their sleep to the unwelcome feeling of your arm around them. + Once the ceremony is complete, you scoop up your new, protesting, slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. They squirms slightly in their sleep to the unwelcome feeling of your arm around them. <<elseif _slave1.devotion < -20>> /* TODO: rewrite for slaves that can't walk */ - They spent the day before resting and crying to themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that they'll be bound to you as your slave wives from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. + They spent the day before resting and crying to themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. <br><br> They return shortly, looking exhausted and depressed. They're naked still, their skin clean, and come reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal their tiredness out of fear of punishment, and they lean against you for support despite their feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.amp == 1 && _slave2.amp == 1)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.amp != 1) && (_slave2.amp != 1)>>on both of their trembling middle fingers.<<else>><<if _slave1.amp == 1>>on a cord around _slave1.slaveName's neck, since they lacks fingers to wear it on<<else>>on _slave1.slaveName's trembling finger<</if>> and another ring <<if _slave2.amp == 1>>on a cord around _slave2.slaveName's neck, since they lacks fingers to wear it on.<<else>>on _slave2.slaveName's trembling finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you. <br><br> /* TODO: marked for rewrite */ - Once the ceremony is complete, you scoop up your new slave wives to carry them back into the master bedroom. They rest their head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. + Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. <<else>> /* TODO: rewrite for slaves that can't walk */ - They spent the day before resting and reluctantly preparing themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, moaning and wincing as they takes cock after cock. The theory is that they'll be bound to you as your slave wives from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. + They spent the day before resting and reluctantly preparing themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, moaning and wincing as they takes cock after cock. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed. <br><br> They return shortly, looking exhausted. They're naked still, their skin clean, and come to stand by you for the ceremony. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal it, leaning against you despite the lack of love between you. /* TODO: double check the devotion requirements for this, rewrite as needed */ <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.amp == 1 && _slave2.amp == 1)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if _slave1.amp == 1>>on a cord around _slave1.slaveName's neck, since they lacks fingers to wear it on<<else>>on _slave1.slaveName's <<if _slave1.devotion < -20 && _slave1.trust <= 20>>trembling <</if>>finger<</if>> and another ring <<if _slave2.amp == 1>>on a cord around _slave2.slaveName's neck, since they lacks fingers to wear it on.<<else>>on _slave2.slaveName's <<if _slave2.devotion < -20 && _slave2.trust <= 20>>trembling <</if>>finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you. <br><br> /* TODO: marked for rewrite */ - Once the ceremony is complete, you scoop up your new slave wives to carry them back into the master bedroom. They rest their head against you, so tired that they're grateful for the break from standing. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. + Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their head against you, so tired that they're grateful for the break from standing. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. <</if>> <<else>> /* TODO: this section will need a major rewrite */ <<if _slave1.fetish == "mindbroken">> - _slave1.slaveName spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + _slave1.slaveName spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and _slave1.skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<elseif _slave1.devotion+_slave1.trust >= 175>> - _slave1.slaveName spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + _slave1.slaveName spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and _slave1.skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> - _slave1.slaveName spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + _slave1.slaveName spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and _slave1.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him. + Once the ceremony is complete, you scoop up your new, protesting, slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him. <<elseif _slave1.devotion < -20>> - _slave1.slaveName spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + _slave1.slaveName spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted and depressed. $He's naked still, $his skin clean and _slave1.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness out of fear of punishment, and $he leans against you for support despite $his feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<else>> - _slave1.slaveName spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + _slave1.slaveName spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted. $He's naked still, $his skin clean and _slave1.skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <</if>> _slave2.slaveName, meanwhile, <<if _slave2.fetish == "mindbroken">> - spent the day before resting and preparing _himself2, if you can call sitting around mindlessly preparing. _He2 spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that _he2'll be bound to you as your slave wife from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. + spent the day before resting and preparing _himself2, if you can call sitting around mindlessly preparing. _He2 spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. <br><br> _He2 returns shortly, looking exhausted but otherwise uncaring. _He2's naked still, _his2 skin clean and _slave2.skin, and is led to you for the ceremony by another slave. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 can't conceal _his2 tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.amp == 1>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, and by the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. + Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, and by the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. <<elseif _slave2.devotion+_slave2.trust >= 175>> - spent the day before resting and preparing _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang. The theory is that _he2'll be bound to you as your slave wife from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. + spent the day before resting and preparing _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. <br><br> _He2 returns shortly, looking exhausted but rather proud of _himself2 for getting through all that. _He2's naked still, _his2 skin clean and _slave2.skin, and comes confidently to stand by you for the ceremony. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well-traveled, and _his2 tiredness. _He2 does _his2 best to conceal how ready to sleep _he2 is, but _he2 leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.amp == 1>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, and by the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. + Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, and by the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> - spent the day before resting and trying to ready _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that _he2'll be bound to you as your slave wife from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. + spent the day before resting and trying to ready _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. <br><br> _He2 returns shortly, looking exhausted and annoyed. _He2's naked still, _his2 skin clean and _slave2.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal _his2 tiredness and look stronger than _he2 is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.amp == 1>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. _He2 squirms slightly in _his2 sleep to the unwelcome feeling of your arm around _him2. + Once the ceremony is complete, you scoop up your new, protesting, slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. _He2 squirms slightly in _his2 sleep to the unwelcome feeling of your arm around _him2. <<elseif _slave2.devotion < -20>> - spent the day before resting and crying to _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that _he2'll be bound to you as your slave wife from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. + spent the day before resting and crying to _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. <br><br> _He2 returns shortly, looking exhausted and depressed. _He2's naked still, _his2 skin clean and _slave2.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal _his2 tiredness out of fear of punishment, and _he2 leans against you for support despite _his2 feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.amp == 1>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. + Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. <<else>> - spent the day before resting and reluctantly preparing _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as _he2 takes cock after cock. The theory is that _he2'll be bound to you as your slave wife from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. + spent the day before resting and reluctantly preparing _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as _he2 takes cock after cock. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed. <br><br> _He2 returns shortly, looking exhausted. _He2's naked still, _his2 skin clean and _slave2.skin, and comes to stand by you for the ceremony. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.amp == 1>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 rests _his2 head against you, so tired that _he2's grateful for the break from standing. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. + Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against you, so tired that _he2's grateful for the break from standing. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. <</if>> <</if>> <br> @@ -1515,7 +1515,7 @@ <<set _c = 0>> You also proclaim <<if _slave1.surname != $PC.surname && _slave2.surname != $PC.surname>> - your new slave wives _slave1.slaveName and _slave2.slaveName $PC.surname. + your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> _slave1.slaveName and _slave2.slaveName $PC.surname. <<set _c += 2>> <<elseif _slave1.surname != $PC.surname>> _slave1.slaveName Mrs. _slave1.slaveName $PC.surname. @@ -1612,11 +1612,11 @@ <<set _slave1.devotion += 10>> <<set _slave2.devotion += 10>> <<elseif _slave1.devotion < -20>> - The fact that you would allow them to remain together, albeit as your wives, @@.hotpink;causes them to begin to see you in a new light.@@ + The fact that you would allow them to remain together, albeit as your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>, @@.hotpink;causes them to begin to see you in a new light.@@ <<set _slave1.devotion += 15>> <<set _slave2.devotion += 15>> <<elseif _slave1.devotion >= -20>> - The fact that you would allow them to remain together, albeit as your wives, has them @@.hotpink;cautiously optimistic for the future.@@ + The fact that you would allow them to remain together, albeit as your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>, has them @@.hotpink;cautiously optimistic for the future.@@ <<set _slave1.devotion += 5>> <<set _slave2.devotion += 5>> <</if>> @@ -1790,7 +1790,7 @@ <<else>> - The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave wives is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering. + The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering. <br><br> /* holy hell is the next line a mess */ /* good luck reading this next line */ @@ -2071,7 +2071,7 @@ <<set _c = 0, _h = 0>> You also proclaim <<if _slave1.surname != $PC.surname && _slave2.surname != $PC.surname>> - your new slave wives _slave1.slaveName and _slave2.slaveName $PC.surname. + your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> _slave1.slaveName and _slave2.slaveName $PC.surname. <<set _c += 2>> <<if canHear(_slave1) && canHear(_slave2)>> <<set _h += 2>> @@ -2142,40 +2142,40 @@ <<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>> They approach their task <<if _slave1.fetish == "mindbroken">> - with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _slave1.slaveName's throat<<else>>covering _slave1.slaveName's face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wives to carry them back into the master bedroom. They absentmindedly rests their head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, gazing up at you with empty eyes. /* TODO: will need a rewrite*/ + with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _slave1.slaveName's throat<<else>>covering _slave1.slaveName's face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They absentmindedly rests their head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, gazing up at you with empty eyes. /* TODO: will need a rewrite*/ <<elseif _slave1.devotion+_slave1.trust >= 175>> - <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down _slave1.slaveName's throat<<else>>covering _slave1.slaveName's face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wives to carry them back into the master bedroom. They rest their head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, staring up at you. /* TODO: will need a rewrite*/ + <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down _slave1.slaveName's throat<<else>>covering _slave1.slaveName's face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, staring up at you. /* TODO: will need a rewrite*/ <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> - with apprehension, so much so that things are taking too long, so you grab _slave1.slaveName's head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wives to carry them back into the master bedroom. They look up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. /* TODO: will need a rewrite*/ + with apprehension, so much so that things are taking too long, so you grab _slave1.slaveName's head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They look up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. /* TODO: will need a rewrite*/ <<elseif _slave1.devotion < -20>> - with apprehension, so much so that things are taking too long, so you grab _slave1.slaveName's head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wives to carry them back into the master bedroom. They look up at you with fearful, tear-filled eyes as if pleading for you not to do them. /* TODO: will need a rewrite*/ + with apprehension, so much so that things are taking too long, so you grab _slave1.slaveName's head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They look up at you with fearful, tear-filled eyes as if pleading for you not to do them. /* TODO: will need a rewrite*/ <<else>> - with a will. They approaches their task <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down their throat<<else>>covering their face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wives to carry them back into the master bedroom. They look up at you, their eyes unsure. /* TODO: will need a rewrite*/ + with a will. They approaches their task <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down their throat<<else>>covering their face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They look up at you, their eyes unsure. /* TODO: will need a rewrite*/ <</if>> <<else>> _slave1.slaveName is first. $He approaches $his task <<if _slave1.fetish == "mindbroken">> - with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He absentmindedly rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, gazing up at you with empty eyes. + with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He absentmindedly rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, gazing up at you with empty eyes. <<elseif _slave1.devotion+_slave1.trust >= 175>> - <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, staring up at you. + <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, staring up at you. <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> - with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. + with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. <<elseif _slave1.devotion < -20>> - with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. + with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. <<else>> - with a will. $He approaches $his task <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you, $his eyes unsure. + with a will. $He approaches $his task <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you, $his eyes unsure. <</if>> Next, it's _slave2.slaveName's turn. _He2 takes on _his2 task <<if _slave2.fetish == "mindbroken">> - with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 absentmindedly rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, gazing up at you with empty eyes. + with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 absentmindedly rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, gazing up at you with empty eyes. <<elseif _slave2.devotion+_slave2.trust >= 175>> - <<if (_slave2.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, staring up at you. + <<if (_slave2.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, staring up at you. <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> - with apprehension, so much so that things are taking too long, so you grab _his2 head and facefuck _him2 instead. _He2 gags and sputters, tears running down _his2 cheeks, as you violate _his2 mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. + with apprehension, so much so that things are taking too long, so you grab _his2 head and facefuck _him2 instead. _He2 gags and sputters, tears running down _his2 cheeks, as you violate _his2 mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. <<elseif _slave2.devotion < -20>> - with apprehension, so much so that things are taking too long, so you grab _his2 head and facefuck _him2 instead. _He2 gags and sputters, tears running down _his2 cheeks, as you violate _his2 mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. + with apprehension, so much so that things are taking too long, so you grab _his2 head and facefuck _him2 instead. _He2 gags and sputters, tears running down _his2 cheeks, as you violate _his2 mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. <<else>> - with a will. _He2 approaches _his2 task <<if (_slave2.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry _him2 back into the master bedroom. _He2 looks up at you, _his2 eyes unsure. + with a will. _He2 approaches _his2 task <<if (_slave2.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down _his2 throat<<else>>covering _his2 face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave _wife2wiv to carry _him2 back into the master bedroom. _He2 looks up at you, _his2 eyes unsure. <</if>> <</if>> @@ -2188,11 +2188,11 @@ <<set _slave1.devotion += 10>> <<set _slave2.devotion += 10>> <<elseif _slave1.devotion < -20>> - The fact that you would allow them to remain together, albeit as your wives, @@.hotpink;causes them to begin to see you in a new light.@@ + The fact that you would allow them to remain together, albeit as your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>, @@.hotpink;causes them to begin to see you in a new light.@@ <<set _slave1.devotion += 15>> <<set _slave2.devotion += 15>> <<elseif _slave1.devotion >= -20>> - The fact that you would allow them to remain together, albeit as your wives, has them @@.hotpink;cautiously optimistic for the future.@@ + The fact that you would allow them to remain together, albeit as your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>, has them @@.hotpink;cautiously optimistic for the future.@@ <<set _slave1.devotion += 5>> <<set _slave2.devotion += 5>> <</if>> diff --git a/src/uncategorized/seWeddingSingle.tw b/src/uncategorized/seWeddingSingle.tw index 91840b5fc22f69779d6382395f347b9be96fb515..6b1c8054b311e9022681507fbbe06808cda540d6 100644 --- a/src/uncategorized/seWeddingSingle.tw +++ b/src/uncategorized/seWeddingSingle.tw @@ -286,7 +286,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <<if $weddingPlanned == 3>> - The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave wife, and $his womb to you as your private breeding ground, is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && ($slaves[_wedS].breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>> + The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave $wife, and $his womb to you as your private breeding ground, is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && ($slaves[_wedS].breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>> <br><br> $slaves[_wedS].slaveName appears after everyone has had a chance to socialize,<<if ($slaves[_wedS].amp == 1)>> carried by another slave since $he's a quadruple amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in <<if ($slaves[_wedS].vagina == 0)>> @@ -395,7 +395,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <<link "Give $him your surname too">> <<replace "#surnaming">> <<set $slaves[_wedS].slaveSurname = $PC.surname>> - You also proclaim your new slave wife $slaves[_wedS].slaveName $slaves[_wedS].slaveSurname. The new Mrs. $slaves[_wedS].slaveSurname <<if canHear($slaves[_wedS])>>hears<<else>>understands<</if>> this, of course, and + You also proclaim your new slave $wife $slaves[_wedS].slaveName $slaves[_wedS].slaveSurname. The new Mrs. $slaves[_wedS].slaveSurname <<if canHear($slaves[_wedS])>>hears<<else>>understands<</if>> this, of course, and <<if $slaves[_wedS].fetish == "mindbroken">> shows no reaction. Like many things, names mean nothing to $him now. Your guests, on the other hand, appreciate the gift. <<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>> @@ -421,7 +421,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <<elseif $slaves[_wedS].devotion < -20>> $slaves[_wedS].slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $slaves[_wedS].amp != 1>> Then you pull $his knees up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his protesting. <<else>> - $slaves[_wedS].slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-wife of a wealthy arcology owner. You <<if $slaves[_wedS].amp == 1>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation. + $slaves[_wedS].slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= $wife>> of a wealthy arcology owner. You <<if $slaves[_wedS].amp == 1>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knees and drawing them up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation. <</if>> <<set $slaves[_wedS].preg = 1, $slaves[_wedS].pregKnown = 1, $slaves[_wedS].pregWeek = 1>> <<set $slaves[_wedS].pregType = setPregType($slaves[_wedS])>> @@ -532,37 +532,37 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <<elseif $weddingPlanned == 2>> - The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave wife is an all day affair. + The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave $wife is an all day affair. <<if $slaves[_wedS].fetish == "mindbroken">> - $He spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and $slaves[_wedS].skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>> - $He spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<elseif $slaves[_wedS].devotion < -20 && $slaves[_wedS].trust > 20>> - $He spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him. + Once the ceremony is complete, you scoop up your new, protesting, slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him. <<elseif $slaves[_wedS].devotion < -20>> - $He spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted and depressed. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness out of fear of punishment, and $he leans against you for support despite $his feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<else>> - $He spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <</if>> <br> <<if $PC.surname && $slaves[_wedS].slaveSurname != $PC.surname>> @@ -570,7 +570,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <<link "Give $him your surname as well">> <<replace "#surnaming">> <<set $slaves[_wedS].slaveSurname = $PC.surname>> - You also proclaim your new slave wife $slaves[_wedS].slaveName $slaves[_wedS].slaveSurname. The new Mrs. $slaves[_wedS].slaveSurname <<if canHear($slaves[_wedS])>>hears<<else>>understands<</if>> this, of course, and + You also proclaim your new slave $wife $slaves[_wedS].slaveName $slaves[_wedS].slaveSurname. The new Mrs. $slaves[_wedS].slaveSurname <<if canHear($slaves[_wedS])>>hears<<else>>understands<</if>> this, of course, and <<if $slaves[_wedS].fetish == "mindbroken">> shows no reaction. Like many things, names mean nothing to $him now. <<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>> @@ -678,7 +678,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <<else>> - The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave wife is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering. + The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave $wife is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering. <br><br> $slaves[_wedS].slaveName appears after everyone has had a chance to socialize,<<if ($slaves[_wedS].amp == 1)>> carried by another slave since $he's a quadruple amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in <<if ($slaves[_wedS].vagina == 0)>> @@ -764,7 +764,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <<link "Give $him your surname">> <<replace "#surnaming">> <<set $slaves[_wedS].slaveSurname = $PC.surname>> - You also proclaim your new slave wife $slaves[_wedS].slaveName $slaves[_wedS].slaveSurname. The new Mrs. $slaves[_wedS].slaveSurname <<if canHear($slaves[_wedS])>>hears<<else>>understands<</if>> this, of course, and + You also proclaim your new slave $wife $slaves[_wedS].slaveName $slaves[_wedS].slaveSurname. The new Mrs. $slaves[_wedS].slaveSurname <<if canHear($slaves[_wedS])>>hears<<else>>understands<</if>> this, of course, and <<if $slaves[_wedS].fetish == "mindbroken">> shows no reaction. Like many things, names mean nothing to $him now. Your guests, on the other hand, appreciate the gift. <<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>> @@ -782,15 +782,15 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <</if>> <br><br> Then, you flip $his veil over $his head so $he can <<if $PC.dick == 1>>suck your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in front of your guests, as the ceremony requires. $He approaches $his task <<if $slaves[_wedS].fetish == "mindbroken">> - with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He absentmindedly rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, gazing up at you with empty eyes. + with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He absentmindedly rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, gazing up at you with empty eyes. <<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>> - <<if ($slaves[_wedS].fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, staring up at you. + <<if ($slaves[_wedS].fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, staring up at you. <<elseif $slaves[_wedS].devotion < -20 && $slaves[_wedS].trust > 20>> - with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. + with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. <<elseif $slaves[_wedS].devotion < -20>> - with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. + with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. <<else>> - with a will. $He approaches $his task <<if ($slaves[_wedS].fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you, $his eyes unsure. + with a will. $He approaches $his task <<if ($slaves[_wedS].fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you, $his eyes unsure. <</if>> <<if $slaves[_wedS].relationship != 0>> <<if $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>> diff --git a/src/uncategorized/seWeddingTriple.tw b/src/uncategorized/seWeddingTriple.tw index 65f0e59ec6904f01ab451c68fb84ccc8116288f0..7e3628695d5ba7e687a5ecb59db09a6d52235d48 100644 --- a/src/uncategorized/seWeddingTriple.tw +++ b/src/uncategorized/seWeddingTriple.tw @@ -29,7 +29,7 @@ /* 000-250-006 */ /* TODO: not sure what to put here yet, this is mostly a placeholder */ -In the days leading up to your wedding, your wives-to-be spent their time preparing to join you in matrimony. +In the days leading up to your wedding, your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>-to-be spent their time preparing to join you in matrimony. <<if $weddingPlanned == 3>> <<set _pregWedding = 1>> @@ -69,37 +69,37 @@ In the days leading up to your wedding, your wives-to-be spent their time prepar <<elseif $weddingPlanned == 2>> - The ceremony to bind <<= SlaveFullName($activeSlave)>> to you as your slave wife is an all day affair. + The ceremony to bind <<= SlaveFullName($activeSlave)>> to you as your slave $wife is an all day affair. <<if $activeSlave.fetish == "mindbroken">> - $He spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and $activeSlave.skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - $He spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and $activeSlave.skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $He spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new, protesting, slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him. + Once the ceremony is complete, you scoop up your new, protesting, slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him. <<elseif $activeSlave.devotion < -20>> - $He spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted and depressed. $He's naked still, $his skin clean and $activeSlave.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness out of fear of punishment, and $he leans against you for support despite $his feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <<else>> - $He spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. + $He spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $activeSlave.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed. <br><br> $He returns shortly, looking exhausted. $He's naked still, $his skin clean and $activeSlave.skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $activeSlave.amp == 1>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you. <br><br> - Once the ceremony is complete, you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. + Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. <</if>> <br> <<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>> @@ -107,7 +107,7 @@ In the days leading up to your wedding, your wives-to-be spent their time prepar <<link "Give $him your surname as well">> <<replace "#surnaming">> <<set $activeSlave.slaveSurname = $PC.surname>> - You also proclaim your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and + You also proclaim your new slave $wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and <<if $activeSlave.fetish == "mindbroken">> shows no reaction. Like many things, names mean nothing to $him now. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> @@ -216,7 +216,7 @@ In the days leading up to your wedding, your wives-to-be spent their time prepar <<else>> - The ceremony to bind the slaves to you as your slave wives is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering. + The ceremony to bind the slaves to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering. <br><br> Your soon-to-be-brides appear after everyone has had a chance to socialize,<<if ($activeSlave.amp == 1)>> carried by another slave since $he's a quadruple amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in <<if ($activeSlave.vagina == 0)>> @@ -302,7 +302,7 @@ In the days leading up to your wedding, your wives-to-be spent their time prepar <<link "Give $him your surname">> <<replace "#surnaming">> <<set $activeSlave.slaveSurname = $PC.surname>> - You also proclaim your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and + You also proclaim your new slave $wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname <<if canHear($activeSlave)>>hears<<else>>understands<</if>> this, of course, and <<if $activeSlave.fetish == "mindbroken">> shows no reaction. Like many things, names mean nothing to $him now. Your guests, on the other hand, appreciate the gift. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> @@ -320,15 +320,15 @@ In the days leading up to your wedding, your wives-to-be spent their time prepar <</if>> <br><br> Then, you flip $his veil over $his head so $he can <<if $PC.dick == 1>>suck your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>> in front of your guests, as the ceremony requires. $He approaches $his task <<if $activeSlave.fetish == "mindbroken">> - with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He absentmindedly rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, gazing up at you with empty eyes. + with robotic obedience. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He absentmindedly rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, gazing up at you with empty eyes. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - <<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, staring up at you. + <<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves @@.green;applaud at the consummation,@@ or rather, at the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, staring up at you. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. + with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you with fearful, hate-filled eyes, blaming you for everything that has happened so far. <<elseif $activeSlave.devotion < -20>> - with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. + with apprehension, so much so that things are taking too long, so you grab $his head and facefuck $him instead. $He gags and sputters, tears running down $his cheeks, as you violate $his mouth publicly. You climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you with fearful, tear-filled eyes as if pleading for you not to do this. <<else>> - with a will. $He approaches $his task <<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave wife to carry $him back into the master bedroom. $He looks up at you, $his eyes unsure. + with a will. $He approaches $his task <<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick == 1>>shooting your cum down $his throat<<else>>covering $his face in girlcum<</if>>. Your guests and their attendant slaves applaud at the consummation, or rather, the first stage of the consummation. The balance will take place privately, however, and you scoop up your new slave $wife to carry $him back into the master bedroom. $He looks up at you, $his eyes unsure. <</if>> <<if $activeSlave.relationship != 0>> <<if $activeSlave.devotion+$activeSlave.trust >= 175>> diff --git a/src/uncategorized/servantsQuartersReport.tw b/src/uncategorized/servantsQuartersReport.tw index 498421c9dc1debe918c2a31684575ba940180404..0fa47fa9957fa6d381fb634fdc770b1107c40ea8 100644 --- a/src/uncategorized/servantsQuartersReport.tw +++ b/src/uncategorized/servantsQuartersReport.tw @@ -44,7 +44,7 @@ <</if>> <<set $Stewardess = $slaves[_FLs]>> <<setLocalPronouns $Stewardess>> - <<= SlaveFullName($Stewardess)>> is serving as your Stewardess.<<if $Stewardess.relationship == -3 && $Stewardess.devotion > 50>> $He does $his best to be your perfect lovely housewife.<</if>> + <<= SlaveFullName($Stewardess)>> is serving as your Stewardess.<<if $Stewardess.relationship == -3 && $Stewardess.devotion > 50>> $He does $his best to be your perfect lovely house<<= $wife>>.<</if>> <<if ($stewardessImpregnates == 1) && (_DL > 0) && (canPenetrate($Stewardess)) && $Stewardess.pubertyXY == 1>> <<set _stewardessImpregnated = 0>> <<for _dI = 0; _dI < _DL; _dI++>> diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw index bcd580715d87c25b6c9c5078aae71619b1360661..708ca979e068c21dd128fea482b4ac046ff7d489 100644 --- a/src/uncategorized/slaveAssignmentsReport.tw +++ b/src/uncategorized/slaveAssignmentsReport.tw @@ -479,7 +479,10 @@ $NPCMarketShareLC = Math.trunc(($NPCSexSupply.lowerClass * 1000) / ($NPCSexSuppl <</if>> <<case "guard you">> <<set $Bodyguard = $slaves[$i]>> - <<if !canWalk($Bodyguard)>> + <<if $Bodyguard.fetish == "mindbroken">> + ''__@@.pink;$Bodyguard.slaveName@@__'' is mindbroken @@.yellow;and cannot safely serve as your bodyguard any more.@@<br> + <<set $Bodyguard = 0>> + <<elseif !canWalk($Bodyguard)>> ''__@@.pink;$Bodyguard.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your bodyguard any more.@@<br> <<set $Bodyguard = 0>> <<elseif $Bodyguard.preg > 37 && $Bodyguard.broodmother == 2>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 29e6b15913bc137f83715ee28d10f7bd34897cc3..392d0775d8c6250acec21777b341745bbed4d29f 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -52,7 +52,7 @@ <<if $seeDetails == 1>> <<set $saleDescription = 0>> <span id="LSD"><<include "Long Slave Description">></span> - <br>//[[Options][$nextLink = passage()]] | [[Hide descriptions|Slave Interact][$seeDetails = 0]] | [[Customize|Add custom descriptors]] | ''<<link "Update">><<replace "#LSD">><<include "Long Slave Description">><</replace>><</link>>''// + <br>//[[Description Options][]] | [[Hide descriptions|Slave Interact][$seeDetails = 0]] | [[Customize|Add custom descriptors]] | ''<<link "Update">><<replace "#LSD">><<include "Long Slave Description">><</replace>><</link>>''// <<else>> //[[Show descriptions|Slave Interact][$seeDetails = 1]]// <</if>> @@ -1778,4 +1778,4 @@ __Financial__: | <<link "Export this slave" "Export Slave">><</link>> <<if $cheatMode>> | <<link "Import a slave" "Import Slave">><</link>> -<</if>> +<</if>> \ No newline at end of file diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw index a0b92eb25d42f0b54d4675e8b60e0a08d76540a1..59fedd55e994dc7ec509eeabb444681a2baf0341 100644 --- a/src/uncategorized/slaveShelter.tw +++ b/src/uncategorized/slaveShelter.tw @@ -65,6 +65,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.origin = "It's not clear why $his previous owner cut $his arms and legs off.">> <<set $shelterSlave.career = "a slave">> <<set $shelterSlave.amp = 1>> + <<set $shelterSlave.missingArms = 3>> + <<set $shelterSlave.missingLegs = 3>> <<set $shelterSlave.devotion = random(-100,-90)>> <<set $shelterSlave.trust = random(-100,-90)>> <<set $shelterSlave.health = random(-80,-60)>> diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw index ef103cfd7c47b31d93467a3b60c2b1c869cb205f..6ff7164c6c46d312fa581119231ed81ff1ce3e58 100644 --- a/src/uncategorized/slaveSold.tw +++ b/src/uncategorized/slaveSold.tw @@ -162,7 +162,7 @@ <<set $display = 1>> <</if>> <<elseif $activeSlave.relationship == -3>> - Selling one of your slave wives is @@.red;socially unacceptable.@@ In addition, your other devoted slaves are @@.gold;worried@@ that you may not respect their status. + Selling one of your slave $wives is @@.red;socially unacceptable.@@ In addition, your other devoted slaves are @@.gold;worried@@ that you may not respect their status. <<run clearSummaryCache()>> <br><br> <<run repX(-200, "slaveTransfer")>> diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw index 3f3f3297ce6de9506fb9be45c9929544be9fb317..3d09e1daac46ff470edfe4da373b4cbd08f7f369 100644 --- a/src/uncategorized/spaReport.tw +++ b/src/uncategorized/spaReport.tw @@ -41,7 +41,7 @@ <</if>> <<set $slaves[_FLs].devotion += _devBonus, $Attendant = $slaves[_FLs]>> <<setLocalPronouns $Attendant>> - <<= SlaveFullName($Attendant)>> is serving as the spa attendant.<<if $Attendant.relationship == -3 && $Attendant.devotion > 50>> $He tries $his best to be your perfect attentive, caring and loving wife.<</if>> + <<= SlaveFullName($Attendant)>> is serving as the spa attendant.<<if $Attendant.relationship == -3 && $Attendant.devotion > 50>> $He tries $his best to be your perfect attentive, caring and loving $wife.<</if>> <<if (_FLsFetish == 1)>> When $he is paid a visit by a slave with sexual issues to work out, $he provides them with an understanding, willing, giving partner. $He finds real satisfaction in helping your slaves find sexual gratification, and @@.lightsalmon;becomes a submissive.@@ <<elseif (_FLsFetish == 2)>> diff --git a/src/uncategorized/storyCaption.tw b/src/uncategorized/storyCaption.tw index b666ed47a24876239a3dcb4047e0d43288780c89..064927fa0acebc390b446d82e34c33d3a3e07d83 100644 --- a/src/uncategorized/storyCaption.tw +++ b/src/uncategorized/storyCaption.tw @@ -698,7 +698,6 @@ <</if>> <<if $sideBarOptions.compact === 0 && _Pass === "Main" || $sideBarOptions.compact === 1 && _Pass === "Manage Arcology">> - <<if $sideBarOptions.compact > 0>> <br> <</if>> <span id="policyButton"> <br> <<link [[Policies]]>><</link>> </span> @@.cyan;[Y]@@ diff --git a/src/uncategorized/summaryOptions.tw b/src/uncategorized/summaryOptions.tw index cd3418324881213e6825b1f05b0c41b000eaeacf..695be8ebcfed8936e19413cd90d41abf4055e3a1 100644 --- a/src/uncategorized/summaryOptions.tw +++ b/src/uncategorized/summaryOptions.tw @@ -1,15 +1,14 @@ :: Summary Options [nobr] <<set $nextButton = "Back">> -<<if $storedLink !== "Slave Interact" || $storedLink !== "Main">> +<<if $storedLink !== "Slave Interact" && $storedLink !== "Main">> <<if lastVisited("Main") === 1>> <<set $storedLink = "Main">> <<else>> <<set $storedLink = "Options">> <</if>> -<<else>> - <<set $nextLink = $storedLink>> <</if>> +<<set $nextLink = $storedLink>> <<run clearSummaryCache()>> //These options will affect the short slave summaries that appear on the main menu and the facility management screens.//<br><br> diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index 397b2909f74747a67c9a91c077d545140531de61..b386bda735bfd1f78298fb0a373abb5add6e8174 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -186,7 +186,7 @@ As the remote surgery's long recovery cycle completes, <<set $j = $slaveIndices[$activeSlave.relationshipTarget]>> <<if def $j>> <<setLocalPronouns $slaves[$j] 2>> - $slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when _he2 finds out that _his2 <<if $activeSlave.relationship > 4>>wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll. + $slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when _he2 finds out that _his2 <<if $activeSlave.relationship > 4>>$wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll. <<set $slaves[$j].devotion -= $activeSlave.relationship*10>> <<set $slaves[$j].trust -= $activeSlave.relationship*10>> <<set $slaves[$j].relationship = 0>> @@ -209,7 +209,7 @@ As the remote surgery's long recovery cycle completes, <<set $j = $slaveIndices[$activeSlave.relationshipTarget]>> <<if def $j>> <<setLocalPronouns $slaves[$j] 2>> - $slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when _he2 finds out that _his2 <<if $activeSlave.relationshipTarget == $activeSlave.relationTarget>>$activeSlave.relation and<</if>> <<if $activeSlave.relationship > 4>>wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll. + $slaves[$j].slaveName will be @@.mediumorchid;horrified@@ and @@.gold;afraid@@ when _he2 finds out that _his2 <<if $activeSlave.relationshipTarget == $activeSlave.relationTarget>>$activeSlave.relation and<</if>> <<if $activeSlave.relationship > 4>>$wife<<elseif $activeSlave.relationship > 3>>lover<<elseif $activeSlave.relationship > 2>>intimate friend<<elseif $activeSlave.relationship > 1>>best friend<<else>>friend<</if>> is now a Fuckdoll. <<set $slaves[$j].devotion -= $activeSlave.relationship*10>> <<set $slaves[$j].trust -= $activeSlave.relationship*10>> <<set $slaves[$j].relationship = 0>> @@ -243,6 +243,8 @@ As the remote surgery's long recovery cycle completes, <<if $activeSlave.amp < 0>> Its P-Limbs have been removed, since they aren't compatible with Fuckdoll suits. <<set $activeSlave.amp = 1>> + <<set $activeSlave.missingArms = 3>> + <<set $activeSlave.missingLegs = 3>> <</if>> The Fuckdoll's limbless torso rocks back and forth slightly. <</if>> diff --git a/src/uncategorized/universalRules.tw b/src/uncategorized/universalRules.tw index 2f8122318f777ced9e0191b3df27740c946724b5..0fdc15dd1cb41f7b1a3c7d42a56e296cc3cbdfa7 100644 --- a/src/uncategorized/universalRules.tw +++ b/src/uncategorized/universalRules.tw @@ -150,7 +150,7 @@ Or design your own: <<textbox "$brandDesign.official" $brandDesign.official "Uni <br><br> -One 'welcome' for a new slave is to have them branded. Where would you like such brands to be applied? +One 'welcome' for a new slave is to have them branded. Where would you like such brands to be applied? <<if ["ankle", "breast", "buttock", "calf", "cheek", "ear", "foot", "hand", "lower arm", "shoulder", "testicle", "thigh", "upper arm", "wrist"].includes($brandTarget.primary)>> <br> On the [[left|Universal Rules][$brandTarget.primary = ("left " + $brandTarget.primary)]] @@ -324,7 +324,7 @@ Or design your own: <<textbox "$scarDesign.primary" $scarDesign.primary "Univers <</if>> <</if>> -One 'welcome' for a new slave is to have them scarred. Where would you like such scars to be applied? +One 'welcome' for a new slave is to have them scarred. Where would you like such scars to be applied? <<if ["ankle", "breast", "buttock", "calf", "cheek", "ear", "foot", "hand", "lower arm", "shoulder", "testicle", "thigh", "upper arm", "wrist"].includes($scarTarget.primary)>> <br> On the [[left|Universal Rules][$scarTarget.primary = ("left " + $scarTarget.primary)]] diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 785b53bb5d886dfd1a2ea372cec6e9413371c9a0..f8a740bad3fff2d3e012453fc8cae771695ebdff 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -4,8 +4,9 @@ <<set _seed = random(1,100)>> <<if $familyTesting == 1 && totalRelatives($activeSlave) > 0 && random(1,100) > 80>> <<set $relation = randomRelatedSlave($activeSlave)>> + <<setLocalPronouns $relation 3>> <<if $relation.mother == $activeSlave.ID || $relation.father == $activeSlave.ID>> - <<set $relationType = "daughter">> + <<set $relationType = _daughter3>> <<elseif $activeSlave.mother == $relation.ID>> <<set $relationType = "mother">> <<elseif $activeSlave.father == $relation.ID>> @@ -15,9 +16,9 @@ <<case 1>> <<set $relationType = "twin">> <<case 2>> - <<set $relationType = "sister">> + <<set $relationType = _sister3>> <<case 3>> - <<set $relationType = "half-sister">> + <<set $relationType = "half-<<= _sister3>>">> <</switch>> <</if>> <<set _flag = 110, $partner = "relation">> diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw index 1d4c60f54233d3cfe1f5b9f5a5afe2918c287c69..7624b8eeffb75270294ad71fb9247b88c5441524 100644 --- a/src/utility/birthWidgets.tw +++ b/src/utility/birthWidgets.tw @@ -292,7 +292,7 @@ <<case "be your Concubine">> <<if $slaves[$i].pregSource == -1 && $slaves[$i].relationship == -3>> - You make sure to find time in your busy schedule to be at your concubine wife's side as $he gives birth to your child<<if $slaves[$i].pregType > 1>>ren<</if>>. You gently caress $slaves[$i].slaveName's body as $he begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. You help $him upright and hold your child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breasts. The two of you cuddle as you watch your newborn<<if $slaves[$i].pregType > 1>>s<</if>> suckle from their mother. Since $he is quite special to you, you allow $him the time to pick out names before $his child<<if $slaves[$i].pregType > 1>>ren<</if>> must be taken away. When the time comes to pick up the newborn<<if $slaves[$i].pregType > 1>>s<</if>>, the slave servant is surprised to find <<if $slaves[$i].pregType == 1>>a <</if>>name-card<<if $slaves[$i].pregType > 1>>s<</if>> affixed to their blanket<<if $slaves[$i].pregType > 1>>s<</if>>.<<if $slaves[$i].fetish != "mindbroken">> $He can't help but feel more devoted to $his master after seeing such a touching act. Before you leave, $slaves[$i].slaveName expresses how cute $he found your child<<if $slaves[$i].pregType > 1>>ren<</if>> and that $he'd love to bear more for you.<</if>> + You make sure to find time in your busy schedule to be at your concubine $wife's side as $he gives birth to your child<<if $slaves[$i].pregType > 1>>ren<</if>>. You gently caress $slaves[$i].slaveName's body as $he begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. You help $him upright and hold your child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breasts. The two of you cuddle as you watch your newborn<<if $slaves[$i].pregType > 1>>s<</if>> suckle from their mother. Since $he is quite special to you, you allow $him the time to pick out names before $his child<<if $slaves[$i].pregType > 1>>ren<</if>> must be taken away. When the time comes to pick up the newborn<<if $slaves[$i].pregType > 1>>s<</if>>, the slave servant is surprised to find <<if $slaves[$i].pregType == 1>>a <</if>>name-card<<if $slaves[$i].pregType > 1>>s<</if>> affixed to their blanket<<if $slaves[$i].pregType > 1>>s<</if>>.<<if $slaves[$i].fetish != "mindbroken">> $He can't help but feel more devoted to $his master after seeing such a touching act. Before you leave, $slaves[$i].slaveName expresses how cute $he found your child<<if $slaves[$i].pregType > 1>>ren<</if>> and that $he'd love to bear more for you.<</if>> <<elseif !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> $He is assisted in reaching your side. You call $him over and strip $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to your wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with you, $he is helped back to your master suite. @@ -575,7 +575,7 @@ <<case "be your Concubine">> <<if $slaves[$i].pregSource == -1 && $slaves[$i].relationship == -3>> - You make sure to find time in your busy schedule to be at your concubine wife's side as $he gives birth to your child<<if $slaves[$i].pregType > 1>>ren<</if>>. You gently caress $slaves[$i].slaveName's body as $he begins to push out your bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. You help $him upright and hold your child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breast<<if $slaves[$i].pregType > 1>>s<</if>>. The two of you cuddle as you watch your newborn<<if $slaves[$i].pregType > 1>>s<</if>> suckle from their mother. Since $he is quite special to you, you allow $him the time to pick out names before $his child<<if $slaves[$i].pregType > 1>>ren<</if>> must be taken away. When the time comes to pick up the newborn<<if $slaves[$i].pregType > 1>>s<</if>>, the slave servant is surprised to find <<if $slaves[$i].pregType == 1>>a <</if>>name-card<<if $slaves[$i].pregType > 1>>s<</if>> affixed to their blanket<<if $slaves[$i].pregType > 1>>s<</if>>.<<if $slaves[$i].fetish != "mindbroken">> $He can't help but feel more devoted to $his master after seeing such a touching act. Before you leave, $slaves[$i].slaveName expresses how cute $he found your child<<if $slaves[$i].pregType > 1>>ren<</if>> and that $he'd love to bear more for you.<</if>> + You make sure to find time in your busy schedule to be at your concubine $wife's side as $he gives birth to your child<<if $slaves[$i].pregType > 1>>ren<</if>>. You gently caress $slaves[$i].slaveName's body as $he begins to push out your bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. You help $him upright and hold your child<<if $slaves[$i].pregType > 1>>ren<</if>> to $his breast<<if $slaves[$i].pregType > 1>>s<</if>>. The two of you cuddle as you watch your newborn<<if $slaves[$i].pregType > 1>>s<</if>> suckle from their mother. Since $he is quite special to you, you allow $him the time to pick out names before $his child<<if $slaves[$i].pregType > 1>>ren<</if>> must be taken away. When the time comes to pick up the newborn<<if $slaves[$i].pregType > 1>>s<</if>>, the slave servant is surprised to find <<if $slaves[$i].pregType == 1>>a <</if>>name-card<<if $slaves[$i].pregType > 1>>s<</if>> affixed to their blanket<<if $slaves[$i].pregType > 1>>s<</if>>.<<if $slaves[$i].fetish != "mindbroken">> $He can't help but feel more devoted to $his master after seeing such a touching act. Before you leave, $slaves[$i].slaveName expresses how cute $he found your child<<if $slaves[$i].pregType > 1>>ren<</if>> and that $he'd love to bear more for you.<</if>> <<elseif $slaves[$i].fetish == "mindbroken">> $He is placed by your side. You strip $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to your wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with you, $he is carried back to your master suite. <<else>> diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw index 28161520a3b2dba646a3520e4d5b507f7e496a86..7a729db886bdbc2eb9287b78c81cfef1a152bf24 100644 --- a/src/utility/extendedFamilyWidgets.tw +++ b/src/utility/extendedFamilyWidgets.tw @@ -751,7 +751,7 @@ <</if>> <<if $cheatMode == 1>> - $He has $activeSlave.sisters sisters, and $activeSlave.daughters daughters. + $He has $activeSlave.sisters sister<<if $activeSlave.sisters > 1>>s<</if>>, and $activeSlave.daughters daughter<<if $activeSlave.daughters > 1>>s<</if>>. <</if>> <</widget>> @@ -976,7 +976,7 @@ <<set $children = []>> <<if $cheatMode == 1>> - $PC.sisters sisters, $PC.daughters daughters. + You have $PC.sisters sister<<if $PC.sisters > 1>>s<</if>>, and $PC.daughters daughter<<if $PC.daughters > 1>>s<</if>>. <</if>> <</widget>> diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index c2a0cd652f681430c91f3754683da44676a86103..04dabb953a25d2b6539602bebc131c3af98b8e9b 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -530,6 +530,8 @@ Must be within $arcologies[$i] for loop <<widget "daughter">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_daughterLisp<<else>>$daughter<</if>><<else>><<if _primarySlaveLisp>>_daughter2Lisp<<else>>_daughter2<</if>><</if>><</widget>> <<widget "sister">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_sisterLisp<<else>>$sister<</if>><<else>><<if _primarySlaveLisp>>_sister2Lisp<<else>>_sister2<</if>><</if>><</widget>> <<widget "loli">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_loliLisp<<else>>$loli<</if>><<else>><<if _primarySlaveLisp>>_loli2Lisp<<else>>_loli2<</if>><</if>><</widget>> +<<widget "wife">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_wifeLisp<<else>>$wife<</if>><<else>><<if _primarySlaveLisp>>_wife2Lisp<<else>>_wife2<</if>><</if>><</widget>> +<<widget "wives">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_wivesLisp<<else>>$wives<</if>><<else>><<if _primarySlaveLisp>>_wives2Lisp<<else>>_wives2<</if>><</if>><</widget>> <<widget "He">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_HeLisp<<else>>$He<</if>><<else>><<if _primarySlaveLisp>>_He2Lisp<<else>>_He2<</if>><</if>><</widget>> <<widget "His">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_HisLisp<<else>>$His<</if>><<else>><<if _primarySlaveLisp>>_His2Lisp<<else>>_His2<</if>><</if>><</widget>> <<widget "Hers">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_HersLisp<<else>>$Hers<</if>><<else>><<if _primarySlaveLisp>>_Hers2Lisp<<else>>_Hers2<</if>><</if>><</widget>> @@ -537,6 +539,8 @@ Must be within $arcologies[$i] for loop <<widget "Daughter">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_DaughterLisp<<else>>$Daughter<</if>><<else>><<if _primarySlaveLisp>>_Daughter2Lisp<<else>>_Daughter2<</if>><</if>><</widget>> <<widget "Sister">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_SisterLisp<<else>>$Sister<</if>><<else>><<if _primarySlaveLisp>>_Sister2Lisp<<else>>_Sister2<</if>><</if>><</widget>> <<widget "Loli">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_LoliLisp<<else>>$Loli<</if>><<else>><<if _primarySlaveLisp>>_Loli2Lisp<<else>>_Loli2<</if>><</if>><</widget>> +<<widget "Wife">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_WifeLisp<<else>>$Wife<</if>><<else>><<if _primarySlaveLisp>>_Wife2Lisp<<else>>_Wife2<</if>><</if>><</widget>> +<<widget "Wives">><<if ndef $args[0]>><<if _secondarySlaveLisp>>_WivesLisp<<else>>$Wives<</if>><<else>><<if _primarySlaveLisp>>_Wives2Lisp<<else>>_Wives2<</if>><</if>><</widget>> <<widget "heP">><<if _playerSlaveLisp>>_hePLisp<<else>>_heP<</if>><</widget>> <<widget "hisP">><<if _playerSlaveLisp>>_hisPLisp<<else>>_hisP<</if>><</widget>> @@ -545,6 +549,8 @@ Must be within $arcologies[$i] for loop <<widget "daughterP">><<if _playerSlaveLisp>>_daughterPLisp<<else>>_daughterP<</if>><</widget>> <<widget "sisterP">><<if _playerSlaveLisp>>_sisterPLisp<<else>>_sisterP<</if>><</widget>> <<widget "loliP">><<if _playerSlaveLisp>>_loliPLisp<<else>>_loliP<</if>><</widget>> +<<widget "wifeP">><<if _playerSlaveLisp>>_wifePLisp<<else>>_wifeP<</if>><</widget>> +<<widget "wivesP">><<if _playerSlaveLisp>>_wivesPLisp<<else>>_wivesP<</if>><</widget>> <<widget "HeP">><<if _playerSlaveLisp>>_HePLisp<<else>>_HeP<</if>><</widget>> <<widget "HisP">><<if _playerSlaveLisp>>_HisPLisp<<else>>_HisP<</if>><</widget>> <<widget "HersP">><<if _playerSlaveLisp>>_HersPLisp<<else>>_HersP<</if>><</widget>> @@ -552,6 +558,8 @@ Must be within $arcologies[$i] for loop <<widget "DaughterP">><<if _playerSlaveLisp>>_DaughterPLisp<<else>>_DaughterP<</if>><</widget>> <<widget "SisterP">><<if _playerSlaveLisp>>_SisterPLisp<<else>>_SisterP<</if>><</widget>> <<widget "LoliP">><<if _playerSlaveLisp>>_LoliPLisp<<else>>_LoliP<</if>><</widget>> +<<widget "WifeP">><<if _playerSlaveLisp>>_WifePLisp<<else>>_WifeP<</if>><</widget>> +<<widget "WivesP">><<if _playerSlaveLisp>>_WivesPLisp<<else>>_WivesP<</if>><</widget>> <<widget "heA">><<if _assistantSlaveLisp>>_heALisp<<else>>_heA<</if>><</widget>> <<widget "hisA">><<if _assistantSlaveLisp>>_hisALisp<<else>>_hisA<</if>><</widget>> @@ -560,6 +568,8 @@ Must be within $arcologies[$i] for loop <<widget "daughterA">><<if _assistantSlaveLisp>>_daughterALisp<<else>>_daughterA<</if>><</widget>> <<widget "sisterA">><<if _assistantSlaveLisp>>_sisterALisp<<else>>_sisterA<</if>><</widget>> <<widget "loliA">><<if _assistantSlaveLisp>>_loliALisp<<else>>_loliA<</if>><</widget>> +<<widget "wifeA">><<if _assistantSlaveLisp>>_wifeALisp<<else>>_wifeA<</if>><</widget>> +<<widget "wivesA">><<if _assistantSlaveLisp>>_wivesALisp<<else>>_wivesA<</if>><</widget>> <<widget "HeA">><<if _assistantSlaveLisp>>_HeALisp<<else>>_HeA<</if>><</widget>> <<widget "HisA">><<if _assistantSlaveLisp>>_HisALisp<<else>>_HisA<</if>><</widget>> <<widget "HersA">><<if _assistantSlaveLisp>>_HersALisp<<else>>_HersA<</if>><</widget>> @@ -567,6 +577,8 @@ Must be within $arcologies[$i] for loop <<widget "DaughterA">><<if _assistantSlaveLisp>>_DaughterALisp<<else>>_DaughterA<</if>><</widget>> <<widget "SisterA">><<if _assistantSlaveLisp>>_SisterALisp<<else>>_SisterA<</if>><</widget>> <<widget "LoliA">><<if _assistantSlaveLisp>>_LoliALisp<<else>>_LoliA<</if>><</widget>> +<<widget "WifeA">><<if _assistantSlaveLisp>>_WifeALisp<<else>>_WifeA<</if>><</widget>> +<<widget "WivesA">><<if _assistantSlaveLisp>>_WivesALisp<<else>>_WivesA<</if>><</widget>> /% Call as <<EventFetish>> diff --git a/src/utility/saRulesWidgets.tw b/src/utility/saRulesWidgets.tw index e1441f393515d67e0f96a51cbb168c65b952c739..fe371256db89432f3a27032b48cf13988d425f5c 100644 --- a/src/utility/saRulesWidgets.tw +++ b/src/utility/saRulesWidgets.tw @@ -102,7 +102,7 @@ and <<set $slaves[$i].devotion += 1, $slaves[$i].need -= 40>> <<= SimpleSexAct.Player($slaves[$i], 5)>> <<elseif $slaves[$i].relationship == -3>> - You have little surplus sexual energy, but you make sure to keep your wife's needs in mind<<if $slaves[$i].devotion < -20>>, even if $he doesn't want it<</if>>. + You have little surplus sexual energy, but you make sure to keep your $wife's needs in mind<<if $slaves[$i].devotion < -20>>, even if $he doesn't want it<</if>>. <<set $slaves[$i].need -= 40>> <<= SimpleSexAct.Player($slaves[$i], 5)>> <<else>>