diff --git a/src/Mods/SecExp/buildings/weaponsManufacturing.tw b/src/Mods/SecExp/buildings/weaponsManufacturing.tw index d33fd42ce826c690d35d10a7c2ac6a5ba576f24b..88d199698a713210dd6c74c98d756332bfbedc2b 100644 --- a/src/Mods/SecExp/buildings/weaponsManufacturing.tw +++ b/src/Mods/SecExp/buildings/weaponsManufacturing.tw @@ -21,7 +21,7 @@ many small old world nations as the advanced technology that Free Cities have av <</if>> <br> <<if $weapLab == 1>> - There's a very Spartan lab attached to the complex that occupies itself mainly with weapons testing and small adjustments to the manufacturing process. + There's a very spartan lab attached to the complex that occupies itself mainly with weapons testing and small adjustments to the manufacturing process. <<elseif $weapLab == 2>> There's a lab attached to the complex. It mainly test weapons effectiveness and manufacturing efficiency, but has enough equipment and personnel to develop new technology. <<else>> diff --git a/src/events/eventUtils.js b/src/events/eventUtils.js index 2faec70e59e1d5dffdb3af5f7e5680ed1aa4fc03..e6fbce5ebaebbfce93cc5df59caba4665b7c0551 100644 --- a/src/events/eventUtils.js +++ b/src/events/eventUtils.js @@ -1,62 +1,83 @@ -/** draw event art, with the option to dress the slave in a particular way - * @param {Node} node - DOM node to attach art to - * @param {App.Entity.SlaveState|Array<App.Entity.SlaveState>} slaves - one or several slaves to draw art for - * @param {string} [clothesMode] - if the slaves' clothing should be overridden, what should they be wearing? - */ -App.Events.drawEventArt = function(node, slaves, clothesMode) { - // do nothing if the player doesn't want images - if (!V.seeImages) { - return; - } +App.Events.drawEventArt = (function() { + const validSingleOutfits = App.Data.misc.niceClothes.map(c => c.value).concat(App.Data.misc.harshClothes.map(c => c.value)); - // ensure that slaves is an array - if (!Array.isArray(slaves)) { - slaves = [slaves]; - } + /** draw event art, with the option to dress the slave in a particular way + * @param {Node} node - DOM node to attach art to + * @param {App.Entity.SlaveState|App.Entity.SlaveState[]} slaves - one or several slaves to draw art for + * @param {string|string[]} [clothesMode] - if the slaves' clothing should be overridden, what should they be wearing? + */ + function draw(node, slaves, clothesMode) { + // do nothing if the player doesn't want images + if (!V.seeImages) { + return; + } - // if we were asked to change the slave's clothing, do it now - let originalClothes = []; - if (clothesMode) { - // if there are "themes" of clothes that multiple events want to use ("swimwear", "athletic", "casual", etc), they can be added as special cases here instead of duplicating the logic in every event - if (App.Data.misc.niceClothes.map(c => c.value).concat(App.Data.misc.harshClothes.map(c => c.value)).includes(clothesMode)) { - // specific clothes have been selected - originalClothes = slaves.map((s) => { return {ID: s.ID, clothes: s.clothes}; }); - slaves.forEach(s => s.clothes = clothesMode); - } else { - throw "Unrecognized clothes mode for event art"; + // ensure that slaves is an array + if (!Array.isArray(slaves)) { + slaves = [slaves]; } - } - // actually draw the art - large if single slave, medium column if multiple slaves - let artSpan = document.createElement("span"); - artSpan.id = "artFrame"; - if (slaves.length === 1) { - let refDiv = document.createElement("div"); - refDiv.classList.add("imageRef", V.imageChoice === 1 ? "lrgVector" : "lrgRender"); - let maskDiv = document.createElement("div"); - maskDiv.classList.add("mask"); - maskDiv.appendChild(document.createTextNode("\u00a0")); - refDiv.appendChild(maskDiv); - refDiv.appendChild(App.Art.SlaveArtElement(slaves[0], 2, 0)); - artSpan.appendChild(refDiv); - } else { - let colDiv = document.createElement("div"); - colDiv.classList.add("imageColumn"); - for (const slave of slaves) { + // if we were asked to change the slave's clothing, do it now + let originalClothes = []; + if (clothesMode) { + // if clothesMode is just a single string, apply the same clothes to all the slaves + if (!Array.isArray(clothesMode)) { + clothesMode = new Array(slaves.length).fill(clothesMode); + } + + // if clothesMode is not the right length now, throw. it's all or nothing. + if (clothesMode.length !== slaves.length) { + throw "Incorrect number of outfits specified for slaves in event art"; + } + + // clothes have been specified - copy the slaves and change their clothing (a bit slow, but means we don't need housekeeping to change them back) + slaves.forEach((s, i) => { + originalClothes[i] = s.clothes; + // if there are "themes" of clothes that multiple events want to use ("swimwear", "athletic", "casual", etc), they can be added as special cases here instead of duplicating the logic in every event + if (validSingleOutfits.includes(clothesMode[i])) { + s.clothes = clothesMode[i]; + } else if (!clothesMode[i]) { + // no change of outfit, leave them dressed as they were + } else { + // unrecognized outfit - leave them dressed as they were, but error + console.error(`Unrecognized clothes mode for event art: ${clothesMode[i]}`); + } + }); + } + + // actually draw the art - large if single slave, medium column if multiple slaves + let artSpan = document.createElement("span"); + artSpan.id = "artFrame"; + if (slaves.length === 1) { let refDiv = document.createElement("div"); - refDiv.classList.add("imageRef", "medImg"); - refDiv.appendChild(App.Art.SlaveArtElement(slave, 2, 0)); - colDiv.appendChild(refDiv); + refDiv.classList.add("imageRef", V.imageChoice === 1 ? "lrgVector" : "lrgRender"); + let maskDiv = document.createElement("div"); + maskDiv.classList.add("mask"); + maskDiv.appendChild(document.createTextNode("\u00a0")); + refDiv.appendChild(maskDiv); + refDiv.appendChild(App.Art.SlaveArtElement(slaves[0], 2, 0)); + artSpan.appendChild(refDiv); + } else { + let colDiv = document.createElement("div"); + colDiv.classList.add("imageColumn"); + for (const slave of slaves) { + let refDiv = document.createElement("div"); + refDiv.classList.add("imageRef", "medImg"); + refDiv.appendChild(App.Art.SlaveArtElement(slave, 2, 0)); + colDiv.appendChild(refDiv); + } + artSpan.appendChild(colDiv); } - artSpan.appendChild(colDiv); - } - node.appendChild(artSpan); + node.appendChild(artSpan); - // change clothing back, if necessary - if (originalClothes.length > 0) { - originalClothes.forEach((c) => slaves.find(s => s.ID === c.ID).clothes = c.clothes); + // change clothing back, if necessary + if (originalClothes.length > 0) { + slaves.forEach((s, i) => s.clothes = originalClothes[i]); + } } -}; + + return draw; +})(); /** intelligently adds spaces to an array of mixed strings and DOM nodes, merging consecutive strings in the process * @param {Array<string|HTMLElement|DocumentFragment>} sentences diff --git a/src/npc/interaction/fFeelings.tw b/src/npc/interaction/fFeelings.tw index e3ee640ff841615771a0aad2e0449529bf426c31..88ce7bd52e6bfca8285317205632995d313ad1d2 100644 --- a/src/npc/interaction/fFeelings.tw +++ b/src/npc/interaction/fFeelings.tw @@ -567,7 +567,7 @@ My favorite part of my body i<<s>> <<case "sadist">> I'm <<s>>o horny, <<Master>>. I can't <<s>>top thinking about the other <<s>>lave<<s>>, how it would feel to hurt them. <<case "cumslut">> - I'm <<s>>o horny, <<Master>>. I can't <<s>>top <<s>>taring at <<if $PC.dick != 0>>cock<<s>> and imagining them down my throat, cumming and cumming<<else>>pu<<ss>>ie<<s>> and imagining how their jui<<c>>e<<s>> ta<<s>>te<</if>>. + I'm <<s>>o horny, <<Master>>. I can't <<s>>top <<s>>taring at <<if $PC.dick != 0>>cock<<s>> and imagining them down my throat, cumming and cumming<<else>>pu<<ss>>ie<<s>> and imagining how their jui<<c>>e<<s>> <<if canTaste(getSlave($AS))>>ta<<s>>te<<else>>feel on my <<s>>kin<</if>><</if>>. <<case "buttslut">> I'm <<s>>o horny, <<Master>>. <<if (["long plug", "plug"].includes(getSlave($AS).buttplug) && getSlave($AS).anus > 2) >> @@ -851,7 +851,7 @@ My favorite part of my body i<<s>> <<case "cum production">> My load<<s>> have been bigger lately. That diet mu<<s>>t be having an effect on me. <<case "cleansing">> - I'm feeling really good, <<Master>>, the diet mu<<s>>t be working. It really ta<<s>>te<<s>> horrible, though... + I'm feeling really good, <<Master>>, the diet mu<<s>>t be working.<<if canTaste(getSlave($AS))>> It really ta<<s>>te<<s>> horrible, though...<</if>> <</switch>> <<switch getSlave($AS).drugs>> @@ -1168,7 +1168,7 @@ My favorite part of my body i<<s>> <<case "rest" "rest in the spa">> Thank you for letting me re<<s>>t. <<case "work as a nanny">> - I love taking care of the babi<<s>>. I hope I get to <<s>>ee them grow up to into good <<s>>lave<<s>> for you. + I love taking care of the babi<<s>>. I hope I get to <<if canSee(getSlave($AS))>><<s>>ee<<else>>have<</if>> them grow up to into good <<s>>lave<<s>> for you. <<default>> Being a <<s>>e<<x>> <<s>>lave i<<s>> hard work. <</switch>> @@ -1192,7 +1192,7 @@ My favorite part of my body i<<s>> <<elseif (getSlave($AS).skill.vaginal <= 30) && (getSlave($AS).vagina > 0)>> I wi<<sh>> I were better at <<s>>e<<x>>, <<s>>ometime<<s>> all I can think to do i<<s>> ju<<s>>t lie there. <<elseif (getSlave($AS).skill.oral <= 30)>> - I wi<<sh>> I were better at blowjob<<s>>, it would be ni<<c>>e not to gag <<s>>o much. + I wi<<sh>> I were better at blowjob<<s>>; it would be ni<<c>>e not to gag <<s>>o much. <</if>> <<if (getSlave($AS).relationship > 0)>> @@ -1209,9 +1209,9 @@ My favorite part of my body i<<s>> @@.red;Error, relationshipTarget not found.@@ <</if>> <<if getSlave($AS).relationship <= 2>> - I really like <<s>>eeing _partnerName every day, <<he 2>>'<<s>> a good friend." $He blushes. "<<He 2>>'<<s>> kind of hot, too. + I really like <<if canSee(getSlave($AS))>><<s>>eeing<<else>>hanging out with<</if>> _partnerName every day, <<he 2>>'<<s>> a good friend." $He blushes. "<<He 2>>'<<s>> kind of hot, too. <<elseif getSlave($AS).relationship <= 3>> - I really like <<s>>eeing _partnerName every day, <<he 2>>'<<s>> a good friend —" $He blushes. "— even when we're not fucking. + I really like <<if canSee(getSlave($AS))>><<s>>eeing<<else>>hanging out with<</if>> _partnerName every day, <<he 2>>'<<s>> a good friend —" $He blushes. "— even when we're not fucking. <<elseif getSlave($AS).relationship <= 4>> I really love _partnerName." $He blushes. "Thank you for letting u<<s>> be together, <<Master>>. <<else>> diff --git a/src/npc/interaction/passage/csec.tw b/src/npc/interaction/passage/csec.tw index d7ce578f8702cb520859a05e76dca23422e66543..e801074869aeb3ee2e5f6364ed814a9f1bbfae78 100644 --- a/src/npc/interaction/passage/csec.tw +++ b/src/npc/interaction/passage/csec.tw @@ -514,11 +514,11 @@ Performing a cesarean section is trivial for the remote surgery to carry out. << <br><br> <<if getSlave($AS).breedingMark == 1 && (getSlave($AS).pregSource == -1 || getSlave($AS).pregSource == -6) && $propOutcome == 1>> The Societal Elite @@.green;are pleased@@ at the new additions to their class. - <<set $failedElite -= 2*_curBabies>> + <<set $failedElite -= (2 * _curBabies)>> <<elseif $eugenicsFullControl != 1>> The Societal Elite @@.red;are disappointed@@ that you would allow subhuman filth to dirty society under your watch. Society @@.red;frowns@@ on the unwelcome addition of more subhumans into the world. - <<set $failedElite += 5*_curBabies>> - <<run repX(forceNeg(10*_curBabies), "birth", getSlave($AS))>> + <<set $failedElite += (5 * _curBabies)>> + <<run repX(forceNeg(10 * _curBabies), "birth", getSlave($AS))>> <</if>> <</if>> diff --git a/src/pregmod/seBurst.tw b/src/pregmod/seBurst.tw index 2e8ba0288d4fd1efb411640d2ed1e2137119c83b..59470a1ef989b1d5cbcefabf6932f6bc22d1bd2f 100644 --- a/src/pregmod/seBurst.tw +++ b/src/pregmod/seBurst.tw @@ -304,8 +304,8 @@ <<set $failedElite -= _curBabies>> <<elseif $eugenicsFullControl != 1>> The Societal Elite @@.red;are disappointed@@ that you would allow subhuman filth to dirty society under your watch. Society @@.red;frowns@@ on the unwelcome addition of more subhumans into the world. At least the "birth" claimed the wretched $girl's life. - <<set $failedElite += (5*_curBabies)>> - <<run repX(forceNeg(10*_curBabies), "babyTransfer")>> + <<set $failedElite += (5 * _curBabies)>> + <<run repX(forceNeg(10 * _curBabies), "babyTransfer")>> <</if>> <</if>> diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw index f1b10a5345b914ebb90557b932dfa6aacd6002da..6ba1af97a575738b07a3184421ff0248ac3d48d7 100644 --- a/src/pregmod/widgets/seBirthWidgets.tw +++ b/src/pregmod/widgets/seBirthWidgets.tw @@ -843,12 +843,12 @@ All in all, <<if $slaves[$i].breedingMark == 1 && $propOutcome == 1 && ($slaves[$i].pregSource == -1 || $slaves[$i].pregSource == -6)>> <br><br> The Societal Elite @@.green;are pleased@@ at the new additions to their class. - <<set $failedElite -= 2 * _curBabies>> + <<set $failedElite -= (2 * _curBabies)>> <<elseif $eugenicsFullControl != 1>> <br><br> The Societal Elite @@.red;are disappointed@@ that you would allow subhuman filth to dirty the arcology under your watch. Society @@.red;frowns@@ on the unwelcome addition of more subhumans into the world. - <<set $failedElite += 5 * _curBabies>> - <<run repX(forceNeg(10*_curBabies), "birth", $slaves[$i])>> + <<set $failedElite += (5 * _curBabies)>> + <<run repX(forceNeg(10 * _curBabies), "birth", $slaves[$i])>> <</if>> <</if>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 191717195afaf1f173861cd382eb61db16cd730c..059afac606602f9d6558f6e67a7e529be232d395 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -6166,7 +6166,7 @@ brought in to you. This time <<= App.UI.slaveDescriptionDialog($activeSlave)>> h <<elseif ($activeSlave.health.condition < -20)>> "I, I don't feel very good, <<elseif ($activeSlave.preg > 0) && ($activeSlave.preg < $activeSlave.pregData.normalBirth/6.66)>> - "I, I feel a little off. The food ta<<s>>te<<s>> weird lately and my brea<<s>>t<<s>> are really <<s>>en<<s>>itive, + "I, I feel a little off. The food <<if canTaste($activeSlave)>>ta<<s>>te<<s>><<else>><<s>>eem<<s>><</if>> weird lately and my brea<<s>>t<<s>> are really <<s>>en<<s>>itive, <<elseif ($activeSlave.health.condition > 20)>> "I'm, I'm okay, <<else>> @@ -11546,7 +11546,7 @@ brought in to you. This time <<= App.UI.slaveDescriptionDialog($activeSlave)>> h $his hand<<if hasBothArms($activeSlave)>>s<</if>> spreading $his buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>." <<= VCheck.Anal()>> <<else>> - hand<<if hasBothArms($activeSlave)>>s<</if>> to $his breasts, and mouth wide open. "To ta<<s>>te you, <<Master>>." + hand<<if hasBothArms($activeSlave)>>s<</if>> to $his breasts, and mouth wide open. "To <<if canTaste($activeSlave)>>ta<<s>>te you<<else>>have you in<<s>>ide me<</if>>, <<Master>>." <<run seX($activeSlave, "oral", $PC, "penetrative")>> <</if>> $He feels so much @@.hotpink;closer to you@@ than before. diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index dbd0b6c68435640072ec204d6a820caa1ded4ad7..f7ba2443a0cad49505d676abbee20f724f0fd9fe 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -636,7 +636,7 @@ $activeSlave.slaveName chuckles into $subSlave.slaveName's ear, crooning, <<setSpokenPlayerPronouns $activeSlave>> $He grinds against the wilting $subSlave.slaveName, and then continues, "I felt your <<if ($subSlave.butt > 4)>>fat butt<<elseif ($subSlave.butt > 2)>>big butt<<else>>tiny little butt<</if>> clench ju<<s>>t now." $He gives $subSlave.slaveName's <<if ($subSlave.balls > 0 && $subSlave.scrotum > 0)>>balls a gentle squeeze<<elseif ($subSlave.dick > 0)>>dick a gentle tug<<elseif $subSlave.vagina == -1>>butthole a gentle massage<<else>>pussylips a gentle massage<</if>>. "<<HeP>> ha<<s>>n't fucked you back there yet, ha<<s>> <<heP>>? It'<<s>> going to hurt, you little bitch. <<HeP>>'<<s>> going to hold you down and <<sh>>ove <<hisP>> <<if $PC.dick != 0>>huge cockhead<<else>>bigge<<s>>t <<s>>trap-on<</if>> right up again<<s>>t thi<<s>> tight little hole." $He gropes the quivering slave's virgin anus, careful not to penetrate it. "You're going to do your be<<s>>t to rela<<x>> like a good little _girl2. But it'<<s>> going to be so big. It'<<s>> going to burn. And then you're going to panic, and <<s>>truggle, and <<heP>>'<<s>> going to hold you down and rape your butt while you <<s>>cream and cry." <br><br> -$subSlave.slaveName keeps _his2 eyes clamped shut and _his2 hand<<if hasBothArms($subSlave)>>s<</if>> down at _his2 side<<if hasBothArms($subSlave)>>s<</if>>, balled into <<if !hasBothArms($subSlave)>>a <</if>>fist<<if hasBothArms($subSlave)>>s<</if>>, but _his2 self-control finally cracks and _he2 lets out a great gasping sob before bursting into tears. +$subSlave.slaveName keeps <<if hasAnyEyes($activeSlave)>>_his2 eye<<if hasBothEyes($activeSlave)>>s<</if>> clamped shut<</if>> and _his2 hand<<if hasBothArms($subSlave)>>s<</if>> down at _his2 side<<if hasBothArms($subSlave)>>s<</if>>, balled into <<if !hasBothArms($subSlave)>>a <</if>>fist<<if hasBothArms($subSlave)>>s<</if>>, but _his2 self-control finally cracks and _he2 lets out a great gasping sob before bursting into tears. <<case "shower force">> @@ -1875,7 +1875,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <</if>> _He2 was on the edge of orgasm when you stepped in, and this is just too much. _He2 climaxes with indecent speed, involuntarily humping against the machine, shooting rope after rope of _his2 cum into $activeSlave.slaveName's mouth<<if $PC.dick>> and spasming against your invading penis wonderfully<</if>>. You hold the quivering $subSlave.slaveName down and keep hammering _him2 until you're certain _he2's fed $activeSlave.slaveName every drop _he2 has. Then you let _him2 up. <br><br> - As $subSlave.slaveName stumbles off, looking @@.hotpink;rather submissive,@@ $activeSlave.slaveName scoots out from underneath the machine. "<<Master>>," $he <<say>>s @@.hotpink;devotedly,@@ "that ta<<s>>ted incredible. It ta<<s>>te<<s>> <<s>>o much better when you fuck it out of _him2!" $He rubs $his<<if $activeSlave.belly >= 5000>> rounded<</if>> tummy with exaggerated satisfaction, and then realizes that you weren't fucking for nearly long enough to have gotten off yourself. + As $subSlave.slaveName stumbles off, looking @@.hotpink;rather submissive,@@ $activeSlave.slaveName scoots out from underneath the machine. "<<Master>>," $he <<say>>s @@.hotpink;devotedly,@@ "that <<if canTaste($activeSlave)>>ta<<s>>ted<<else>>wa<<s>><</if>> incredible. It <<if canTaste($activeSlave)>>ta<<s>>te<<s>><<else>>feel<<s>><</if>> <<s>>o much better when you fuck it out of _him2!" $He rubs $his<<if $activeSlave.belly >= 5000>> rounded<</if>> tummy with exaggerated satisfaction, and then realizes that you weren't fucking for nearly long enough to have gotten off yourself. <<if $activeSlave.lactation || $activeSlave.balls>> "I need to be milked now, too," $he <<say>>s flirtily, and turns to mount the machine in turn. "Plea<<s>>e, plea<<s>>e do me too!" The machine hasn't had a turn first, this time, so $he's much tighter<<if $PC.dick>>, and when $he's done being milked, $he's got a load of your cum inside $him<</if>>. <<run seX($subSlave, "anal", $PC, "pentrative")>> diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw index ffe42ab296eafb910f8ce955782ab8cbdb261513..efa64270a4d4f9649e1bc1f395ec8c4a96ec3496 100644 --- a/src/uncategorized/masterSuite.tw +++ b/src/uncategorized/masterSuite.tw @@ -64,7 +64,7 @@ <<case "Egyptian Revivalist">> after the royal room of an ancient Egyptian palace. There is a small shrine to the old gods the <<= properMaster()>> favors in a side room, and linen hangings decorate the walls and ceiling. An imposing bed of sandalwood occupies the center of the room. <<case "Edo Revivalist">> - in the Spartan style of an Edo period castle's innermost rooms. Rice paper screens partition off many small cubicles around its large central space. There, around a low bed, there are many mats for servants to kneel around their <<= properMaster()>>. + in the spartan style of an Edo period castle's innermost rooms. Rice paper screens partition off many small cubicles around its large central space. There, around a low bed, there are many mats for servants to kneel around their <<= properMaster()>>. <<case "Arabian Revivalist">> as a beguiling haze of Arabian decadence. There is a great gilded bed in the center of the space, piled with silk pillows for naked bodies to recline on. Gauzy curtains flutter in the warm, heady breeze. <<case "Chinese Revivalist">> @@ -150,7 +150,7 @@ $masterSuiteNameCaps is furnished <<case "Egyptian Revivalist">> after the royal room of an ancient Egyptian palace. There is a small shrine to the old gods the <<= properTitle()>> favors in a side room, and linen hangings decorate the walls and ceiling. <<case "Edo Revivalist">> - in the Spartan style of an Edo period castle's innermost rooms. Rice paper screens partition off many small cubicles around its large central space. + in the spartan style of an Edo period castle's innermost rooms. Rice paper screens partition off many small cubicles around its large central space. <<case "Arabian Revivalist">> as a beguiling haze of Arabian decadence. Gauzy curtains flutter in the warm, heady breeze. <<case "Chinese Revivalist">> @@ -249,7 +249,7 @@ $masterSuiteNameCaps is furnished <<case "Egyptian Revivalist">> after the best room of an ancient Egyptian mansion. There is a small shrine to the old gods the <<= properTitle()>> favors in a side room, and linen hangings decorate the walls and ceiling. <<case "Edo Revivalist">> - in the Spartan style of an Edo period mansion's innermost rooms. Rice paper screens divide it into subsections, each of which contains little more than a low bed. + in the spartan style of an Edo period mansion's innermost rooms. Rice paper screens divide it into subsections, each of which contains little more than a low bed. <<case "Arabian Revivalist">> as a beguiling haze of Arabian decadence. Soft cushions are scattered across the floor and piled against the walls to provide something for dusky, naked bodies to recline on. Gauzy curtains partition the room into a number of cozy dens. <<case "Chinese Revivalist">> diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw index b8dd0ef788b7ce79264762c98ac62c0aed0a945b..beebf96c583f4c9e24e7b5243e0b66986703053f 100644 --- a/src/uncategorized/masterSuiteReport.tw +++ b/src/uncategorized/masterSuiteReport.tw @@ -414,7 +414,7 @@ <<if $arcologies[0].FSRestart != "unset" && $propOutcome != 1 && _masterSuitePregnantSlaves > 0 && $eugenicsFullControl != 1>> The Societal Elite know what you are doing with your bedslaves. @@.red;They do not approve.@@ - <<set $failedElite += 5*_masterSuitePregnantSlaves>> + <<set $failedElite += (5 * _masterSuitePregnantSlaves)>> <</if>> <<if $masterSuiteDecoration != "standard">> diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw index 79c43b13158c1b359ab17638055c1bd8c082ff17..ba3e187be64f981e85b12438cbab74c2a9b2695b 100644 --- a/src/uncategorized/pHostageAcquisition.tw +++ b/src/uncategorized/pHostageAcquisition.tw @@ -516,7 +516,7 @@ Your hired mercenaries are en route now with your precious cargo. <<else>> <<set $activeSlave.trust = 80>> Your mercenaries radio you upon arrival. "This one's got quite some spunk in $him, you better ready yourself. We're coming in now." - Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, $he stands $his ground. After several steps, $he shouts "How fucking DARE you <<s>>plit me up from my sweet giant! I <<s>>aw your arcology on the way in, and it'<<s>> <<S>>ICK. <<S>>o many little girl<<s>>, you're <<s>>ick, you hear me!? <<S>>I-" + Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, $he stands $his ground. After several steps, $he shouts "How fucking DARE you <<s>>plit me up from my <<s>>weet giant! I <<s>>aw your arcology on the way in, and it'<<s>> <<S>>ICK. <<S>>o many little girl<<s>>, you're <<s>>ick, you hear me!? <<S>>I-" The mercenary captain quickly gags $him, "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, $he may try to do something stupid," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future, given $his hatred for the short. <</if>> <<case "Statuesque Glorification">> diff --git a/src/uncategorized/pePitFight.tw b/src/uncategorized/pePitFight.tw index 2fa93f6a0e2f59714c7e6c2c519813d51d0b18cb..b6c4cc595637a76be3107b55485a9df854c37f1e 100644 --- a/src/uncategorized/pePitFight.tw +++ b/src/uncategorized/pePitFight.tw @@ -23,7 +23,7 @@ /* 000-250-006 */ </span> -It's time for the private fight you entered your Bodyguard in. It will take place in a back room of a well respected club. There is a ring set into the floor, and space for a handful of spectators, but the setup is quite Spartan. The sport is just getting off the ground. <<= App.UI.slaveDescriptionDialog($activeSlave)>> is first to walk into the ring. $He's stark naked and is carrying a simple single-edged straight sword, identical to the one $his opponent will be using. The fight will be fair. +It's time for the private fight you entered your Bodyguard in. It will take place in a back room of a well respected club. There is a ring set into the floor, and space for a handful of spectators, but the setup is quite spartan. The sport is just getting off the ground. <<= App.UI.slaveDescriptionDialog($activeSlave)>> is first to walk into the ring. $He's stark naked and is carrying a simple single-edged straight sword, identical to the one $his opponent will be using. The fight will be fair. <br><br> diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw index c86dfd5987e0205339e1fe41c543362231dadf07..f974b0fdf0484b2d1108a08c585801115e3c54c4 100644 --- a/src/uncategorized/reBoomerang.tw +++ b/src/uncategorized/reBoomerang.tw @@ -346,7 +346,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <<default>> "Plea<<s>>e. I've been re<<s>>old <</switch>> - to a <<sh>>-<<sh>>itty brothel on the lower level<<s>>. It'<<s>> h-horrible there. I live in a tiny little room, and the only people I ever <<s>>ee ju<<s>>t fuck me and leave. N-nobody ever t-talk<<s>> to me. And they beat me." + to a <<sh>>-<<sh>>itty brothel on the lower level<<s>>. It'<<s>> h-horrible there. I live in a tiny little room, and the only people I ever <<if canSee($activeSlave)>><<s>>ee<<else>>meet<</if>> ju<<s>>t fuck me and leave. N-nobody ever t-talk<<s>> to me. And they beat me." <<if hasAnyNaturalLegs($activeSlave)>>$He shifts uncomfortably on $his <<if !hasBothLegs($activeSlave)>>foot<<else>>feet<</if>>. The soles of the feet are a convenient place to beat a whore, since it's agonizingly painful, doesn't bruise badly, and won't inconvenience a slave that spends all $his time kneeling or lying down.<</if>> <<set $activeSlave.anus = 3>> <<if $activeSlave.vagina > -1>><<set $activeSlave.vagina = 3>><</if>> diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw index 9c338d128e1138f277fba7e52ac6fca67d7e5c98..20088a7451ac9783c1f7ce0bf1022b0a6dbe16c4 100644 --- a/src/uncategorized/reputation.tw +++ b/src/uncategorized/reputation.tw @@ -626,9 +626,9 @@ _enduringRep = $enduringRep>> Society @@.green; approves@@ of your slave eugenics policies, easing them into more thorough eugenics. <<set _yesEugenics = policies.countEugenicsSMRs()>> <<= FutureSocieties.Change("Eugenics", _yesEugenics)>> - <<set $failedElite -= 1 * policies.countEugenicsSMRs()>> + <<set $failedElite -= (1 * policies.countEugenicsSMRs())>> <<elseif $arcologies[0].FSRestartSMR == 1>> - <<set $failedElite -= 2 * policies.countEugenicsSMRs()>> + <<set $failedElite -= (2 * policies.countEugenicsSMRs())>> <</if>> <</if>> diff --git a/src/uncategorized/resSale.tw b/src/uncategorized/resSale.tw index 3f378be64c8a73ed6371b1ee67e3da587856ce19..3b8c23b87268e7d78003aaa220446bbe4be36407 100644 --- a/src/uncategorized/resSale.tw +++ b/src/uncategorized/resSale.tw @@ -107,7 +107,7 @@ You pause for a moment, and $he plunges on: "<<if $PC.title != 0>>Sir<<else>>Ma' <<if $RESSale == "TSS">> I've got the very best skills I could learn as a virgin. I'm healthy, obedient, and educated. And I'm fresh, and willing, and really eager." $He rips $his white school<<= $girl>> blouse open to show off a fresh pair of tits, and shakes them for you. "I would love to be your sex slave, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>," $he says, doing $his very best to sound appealing, like $he's been trained. <<elseif $RESSale == "GRI">> - I've, uh, been trained to obey." $His eyes flick to one side, like $he's reading $his cues. "And um I have really big boobs." $He's wearing a bathrobe, and $he suddenly jerks it open to reveal a bigger pair of breasts than anyone that age could possibly have grown $himself. "I would love to be your sex slave, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>," $he says, doing $his very best to sound appealing. No doubt $he'd prefer not to be part of any more testing. + I've, uh, been trained to obey." $His eyes flick to one side, like $he's reading $his cues. "And, um, I have really big boobs." $He's wearing a bathrobe, and $he suddenly jerks it open to reveal a bigger pair of breasts than anyone that age could possibly have grown $himself. "I would love to be your sex slave, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>," $he says, doing $his very best to sound appealing. No doubt $he'd prefer not to be part of any more testing. <<elseif $RESSale == "SCP">> I'm ready to be the perfect bimbo slave, and the young surgeon who did my implants was very skilled." $He's wearing a bikini, and $he pulls it down to flash you, revealing that $his tits resist gravity almost perfectly. They're gorgeous, but quite fake. "I would love to be your sex slave, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>," $he says, doing $his very best to sound appealing, like $he's been trained. <<elseif $RESSale == "LDE">> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 33200f2bdc91ff8dfdc076382d365023636e0850..5dbbffc417006ce50ce051cf60b8519735f0dc6d 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -6234,7 +6234,7 @@ <<if $slaves[$i].breedingMark == 1 && $propOutcome == 1>> <<if $slaves[$i].pregKnown == 1 && ($slaves[$i].pregSource == -1 || $slaves[$i].pregSource == -6)>> The Societal Elite @@.green;are pleased@@ <<if $slaves[$i].pregSource == -1>>your<<elseif $slaves[$i].pregSource == -6>>an Elite<</if>> child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> growing within $him. The mark covering $his lower belly, coupled with $his gravidity and blessing, @@.green;enamors@@ your populace. - <<set $failedElite -= 5+$slaves[$i].pregType>> + <<set $failedElite -= (5 + $slaves[$i].pregType)>> <<= FutureSocieties.ChangePorn("Eugenics", 3)>> <<if $slaves[$i].abortionTat > 0>> The <<if $slaves[$i].abortionTat > 1>>tally of aborted children<<else>>tattoo marking an aborted child<</if>> adorning $his middle @@.red;is worrying,@@ however. @@ -6266,7 +6266,7 @@ <</if>> <<if $slaves[$i].pregKnown == 1 && $eugenicsFullControl != 1>> The Societal Elite @@.red;judge you@@ for keeping pregnant slaves. It falls to the slaveowner to deal with subhuman pregnancies and you are failing in your duties as a member of the Elite. - <<set $failedElite += 5+$slaves[$i].pregType>> + <<set $failedElite += (5 + $slaves[$i].pregType)>> <</if>> <</if>> <<if $slaves[$i].balls > 0 && $slaves[$i].pubertyXY == 1 && $slaves[$i].vasectomy == 0>> diff --git a/src/uncategorized/seWeddingDouble.tw b/src/uncategorized/seWeddingDouble.tw index f8a84ddd7bdd1ac3136a720a70b91eed59d97aa7..1f3eb18132b511a688b2a3680510252b21897426 100644 --- a/src/uncategorized/seWeddingDouble.tw +++ b/src/uncategorized/seWeddingDouble.tw @@ -2364,40 +2364,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 != 0>>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 >= 300>>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 != 0>>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 rest their heads against your <<if $PC.boobs >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms<<if canSee(_slave1) && canSee(_slave2)>>, gazing up at you with empty eyes<</if>>. /* 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 != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms<<if canSee(_slave1) && canSee(_slave2)>>, staring up at you<</if>>. /* 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 != 0>>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*/ + 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 != 0>>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 <<if canSee(_slave1) && canSee(_slave2)>>look up at you with fearful, hate-filled eyes,<<else>>seems to be<</if>> 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 != 0>>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*/ + 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 != 0>>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 <<if canSee(_slave1) && canSee(_slave2)>>look up at you with fearful, tear-filled eyes<<else>>seem<</if>> as if pleading for you not to do this. /* 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 != 0>>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*/ + with a will. They approaches their task <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick != 0>>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 <<if canSee(_slave1) && canSee(_slave2)>>up at you, their eyes <</if>>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 != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms<<if canSee(_slave1)>>, gazing up at you with empty eyes<</if>>. <<elseif _slave1.devotion+_slave1.trust >= 175>> - <<if (_slave1.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms<<if canSee(_slave1)>>, staring up at you<</if>>. <<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 != 0>>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 != 0>>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 <<if canSee(_slave1)>>looks up at you with fearful, hate-filled eyes,<<else>>seems to be<</if>> 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 != 0>>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 != 0>>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 <<if canSee(_slave1)>>looks up at you with fearful, tear-filled eyes<<else>>seems<</if>> 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 != 0>>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 != 0>>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 <<if canSee(_slave1)>>up at you, $his eyes <</if>>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 != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms<<if canSee(_slave2)>>, gazing up at you with empty eyes<</if>>. <<elseif _slave2.devotion+_slave2.trust >= 175>> - <<if (_slave2.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms<<if canSee(_slave2)>>, staring up at you<</if>>. <<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 != 0>>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. + 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 != 0>>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 <<if canSee(_slave2)>>looks up at you with fearful, hate-filled eyes,<<else>>seems to be<</if>> 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 != 0>>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. + 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 != 0>>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 <<if canSee(_slave2)>>looks up at you with fearful, tear-filled eyes<<else>>seems<</if>> 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 != 0>>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. + with a will. _He2 approaches _his2 task <<if (_slave2.fetish == "cumslut")>>enthusiastically<<else>>obediently<</if>>, and you climax promptly, <<if $PC.dick != 0>>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 <<if canSee(_slave2)>>up at you, _his2 eyes <</if>>unsure. <</if>> <</if>> diff --git a/src/uncategorized/seWeddingSingle.tw b/src/uncategorized/seWeddingSingle.tw index 912b3ff277b17f5b7b6a03cb277bb88893e7d284..bf4a9717c15c1eac065f80454d18933d7321fe80 100644 --- a/src/uncategorized/seWeddingSingle.tw +++ b/src/uncategorized/seWeddingSingle.tw @@ -804,15 +804,15 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time <br><br> Then, you flip $his veil over $his head so $he can <<if $PC.dick != 0>>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 != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms<<if canSee($slaves[_wedS])>>, gazing up at you with empty eyes<</if>>. <<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 != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms<<if canSee($slaves[_wedS])>>, staring up at you<</if>>. <<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 != 0>>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 != 0>>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 <<if canSee($slaves[_wedS])>>looks up at you with fearful, hate-filled eyes,<<else>>seems to be<</if>> 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 != 0>>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 != 0>>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 <<if canSee($slaves[_wedS])>>looks up at you with fearful, tear-filled eyes<<else>>seems<</if>> 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 != 0>>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 != 0>>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 <<if canSee($slaves[_wedS])>>up at you, $his eyes <</if>>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 031ddeb504e280e4d2801925322ceb5f431d93ce..e9d11b8e97e0c1382f42fa1a0eb2148d636e5630 100644 --- a/src/uncategorized/seWeddingTriple.tw +++ b/src/uncategorized/seWeddingTriple.tw @@ -327,15 +327,15 @@ In the days leading up to your wedding, your <<if $wife == _wife2>>$wives<<else> <br><br> Then, you flip $his veil over $his head so $he can <<if $PC.dick != 0>>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 != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms<<if canSee($activeSlave)>>, gazing up at you with empty eyes<</if>>. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - <<if ($activeSlave.fetish == "cumslut")>>enthusiastically<<else>>with a will<</if>>, and you climax promptly, <<if $PC.dick != 0>>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 >= 300>>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 != 0>>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 >= 300>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms<<if canSee($activeSlave)>>, staring up at you<</if>>. <<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 != 0>>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 != 0>>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 <<if canSee($activeSlave)>>looks up at you with fearful, hate-filled eyes,<<else>>seems to be<</if>> 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 != 0>>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 != 0>>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 <<if canSee($activeSlave)>>looks up at you with fearful, tear-filled eyes<<else>>seems<</if>> 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 != 0>>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 != 0>>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 <<if canSee($activeSlave)>>up at you, $his eyes <</if>>unsure. <</if>> <<if $activeSlave.relationship != 0>> <<if $activeSlave.devotion+$activeSlave.trust >= 175>>