diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index dc9bd11053ae17b6dec7ec5055140c7f4d4cd610..af26bbead9f30613808645ed2055c2d5ee551029 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -206,6 +206,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $showMissingSlavesSD = false>> <</if>> +<<set $marrying = []>> /* array of slave being married this week*/ <<set $organs = []>> <<set $ArcadeiIDs = [], $BrothiIDs = [], $CellBiIDs = [], $CliniciIDs = [], $ClubiIDs = [], $DairyiIDs = [], $FarmyardiIDs = [], $HGSuiteiIDs = [], $MastSiIDs = [], $SchlRiIDs = [], $ServQiIDs = [], $SpaiIDs = [], $NurseryiIDs = []>> @@ -934,7 +935,6 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $year = 2037>> <<set $weddingPlanned = 0>> -<<set $weddingSlaveID = 0>> <<set $personalAttention = "sex">> <<set $HeadGirl = 0>> <<set $HGTimeInGrade = 0>> diff --git a/src/js/assayJS.js b/src/js/assayJS.js index 85d8cfd6d7167edba517ca24985c56c5f024564f..47e539a8d80c0f0ae37083a0a02f648bc00a0f89 100644 --- a/src/js/assayJS.js +++ b/src/js/assayJS.js @@ -477,7 +477,8 @@ window.getSlave = function getSlave(ID) { else return State.variables.slaves[index]; }; window.getChild = function getChild(ID) { - return V.cribs.find(function(s) { return s.ID === ID; }); + const V = State.variables; + return V.cribs.find(function(s) { return s.ID == ID; }); }; window.getPronouns = function getPronouns(slave) { return { diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw index 747875438796f5459f509077203ea334664a7ef4..cc1126e9ecc363753dabefe2c0947777ca7db0bf 100644 --- a/src/pregmod/beastFucked.tw +++ b/src/pregmod/beastFucked.tw @@ -42,17 +42,17 @@ <</if>> <<if $activeSlave.fetish == "masochist">> - <<set _fetishDesc = "committing such a painful act", _activeQuirk = 1>> + <<set _fetishDesc = "committing such a painful act", _activeQuirk = 1, _quirk = 1>> <<elseif $activeSlave.fetish == "humiliation">> - <<set _fetishDesc = "committing such a humiliating act", _activeQuirk = 1>> + <<set _fetishDesc = "committing such a humiliating act", _activeQuirk = 1, _quirk = 1>> <<elseif $activeSlave.sexualQuirk == "perverted">> - <<set _fetishDesc = "committing such a perverted act", _activeQuirk = 1>> + <<set _fetishDesc = "committing such a perverted act", _activeQuirk = 1, _quirk = 1>> <<elseif $activeSlave.behavioralQuirk == "sinful">> - <<set _fetishDesc = "committing such a sinful act", _activeQuirk = 1>> + <<set _fetishDesc = "committing such a sinful act", _activeQuirk = 1, _quirk = 1>> <<elseif $activeSlave.fetish == "cumslut">> - <<set _fetishDesc = "getting to drink more cum", _activeQuirk = 1>> + <<set _fetishDesc = "getting to drink more cum", _activeQuirk = 1, _quirk = 2>> <<elseif $activeSlave.sexualQuirk == "gagfuck queen">> - <<set _fetishDesc = "getting to suck more dick", _activeQuirk = 1>> + <<set _fetishDesc = "getting to suck more dick", _activeQuirk = 1, _quirk = 2>> <</if>> <<if canWalk($activeSlave)>>You call $him over and<<else>>You order another slave to bring $activeSlave.slaveName over. Once $he is situated, you<</if>> tell $him you want to watch $him <<switch _sexAct>><<case "oral">>suck off<<default>>get fucked by<</switch>> <<print _a>> _animal.species. @@ -68,13 +68,13 @@ <</if>> <<else>> <<if $activeSlave.fetishKnown == 1 && _activeQuirk>> - $activeSlave.slaveName's face visibly brightens at the thought of _fetishDesc, although $he seems a bit hesitant at the thought of giving $his <<if _sexAct == "anal">>anal<</if>> virginity to an animal. + $activeSlave.slaveName's face visibly brightens at the thought of _fetishDesc, although $he seems a bit hesitant at the thought of giving $his <<if _sexAct == "anal">>anal <</if>>virginity to an animal. <<else>> $activeSlave.slaveName looks visibly shaken at the thought of having $his precious <<if _sexAct == "anal">>anal <</if>>virginity taken by an animal, but is so attentive to your will that $he agrees. <</if>> <</if>> <<else>> - <<if _activeQuirk>> + <<if $activeSlave.fetishKnown == 1 && _activeQuirk && _quirk == 2>> $activeSlave.slaveName's face visibly brightens at the thought of _fetishDesc, even if it's <<print _a>> _animal.species's cum. <<else>> $activeSlave.slaveName blanches at the thought of having to suck <<print _a>> _animal.species's dick, but $he is so devoted to you that $he reluctantly agrees. @@ -98,7 +98,7 @@ <</if>> <</if>> <<else>> - <<if _activeQuirk>> + <<if $activeSlave.fetishKnown == 1 && _activeQuirk && _quirk == 2>> $activeSlave.slaveName isn't too keen on the idea of sucking off <<print _a>> _animal.species, but the thought of _fetishDesc soon convinces $him to comply. <<else>> $activeSlave.slaveName tries in vain to conceal $his horror, but quickly regains $his composure. @@ -122,7 +122,7 @@ <</if>> <</if>> <<else>> - <<if $activeSlave.fetishKnown == 1 && _activeQuirk>> + <<if $activeSlave.fetishKnown == 1 && _activeQuirk && _quirk == 2>> $activeSlave.slaveName looks disgusted at the thought of sucking off <<print _a>> _animal.species at first, but the thought of _fetishDesc seems to spark a small flame of lust in $him. <<else>> $activeSlave.slaveName tries in vain to conceal $his horror, diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw index 2060616125fd4841697923d78934e72fcb8b0a00..71e0c76d8918c66a5dca51b3c10eca67d158c5e5 100644 --- a/src/pregmod/fMarry.tw +++ b/src/pregmod/fMarry.tw @@ -1,6 +1,6 @@ :: FMarry [nobr] -<<set $nextButton = "Back", $nextLink = "Slave Interact", $weddingSlaveID = $activeSlave.ID>> +<<set $nextButton = "Back", $nextLink = "Slave Interact">> <<run Enunciate($activeSlave)>> <<set _belly = bellyAdjective($activeSlave)>> <<run clearSummaryCache($activeSlave)>> @@ -713,33 +713,111 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <</replace>> <</link>> <<if $cash > 10000>> -<br>Invite prominent citizens to a wedding (This will cost <<print cashFormat(10000)>>): -<br> <<link "Straightforward ceremony">> - <<replace "#result">> - You order $assistantName to invite deserving citizens to a straightforward ceremony for a slave being married to a slaveowner, and to make the arrangement. The wedding will take place during the upcoming week. - <<set $weddingPlanned = 1>> - <<run cashX(-10000, "event", $activeSlave)>> - <</replace>> -<</link>> -<<if ($activeSlave.vagina != 0) && ($activeSlave.anus != 0)>> -<br> <<link "Orgiastic ceremony">> - <<replace "#result">> - You order $assistantName to invite deserving citizens to an orgiastic ceremony for a slave being married to a slaveowner, and to make the arrangements. The wedding orgy will take place during the upcoming week. - <<set $weddingPlanned = 2>> - <<run cashX(-10000, "event", $activeSlave)>> - <</replace>> -<</link>> //This will involve the slave having sex with a very large number of citizens// -<</if>> -<<if isFertile($activeSlave) && ($PC.dick == 1)>> -<br> <<link "Impregnation ceremony">> - <<replace "#result">> - You order $assistantName to invite deserving citizens to a ceremony for a fertile slave being married to a slaveowner, and to make the arrangements. The wedding will take place during the upcoming week. - <<set $weddingPlanned = 3>> - <<run cashX(-10000, "event", $activeSlave)>> - <</replace>> -<</link>> //This will involve you impregnating the slave// -<</if>> + <<if $weddingPlanned > 0>> + <<if $weddingPlanned == 1>> + <br>Invite prominent citizens to a wedding (This will cost <<print cashFormat(10000)>>): + <br> + <<link "Straightforward ceremony">> + <<replace "#result">> + You order $assistantName to invite deserving citizens to a straightforward ceremony for a slave being married to a slaveowner, and to make the arrangement. The wedding will take place during the upcoming week. + <<set $weddingPlanned = 1>> + <<set $marrying.push($activeSlave.ID)>> + <<run cashX(-10000, "event", $activeSlave)>> + <</replace>> + <</link>> + <<else>> + <br> + + //You are already hosting// + <<if $weddingPlanned == 2>> + //an orgiastic ceremony// + <<elseif $weddingPlanned == 3>> + //an impregnation ceremony// + <</if>> + //and cannot host a straightforward ceremony// + <</if>> + <<if ($activeSlave.vagina != 0) && ($activeSlave.anus != 0)>> + <<if $weddingPlanned == 2>> + <br> + <<link "Orgiastic ceremony">> + <<replace "#result">> + You order $assistantName to invite deserving citizens to an orgiastic ceremony for a slave being married to a slaveowner, and to make the arrangements. The wedding orgy will take place during the upcoming week. + <<set $weddingPlanned = 2>> + <<set $marrying.push($activeSlave.ID)>> + <<run cashX(-10000, "event", $activeSlave)>> + <</replace>> + <</link>> //This will involve the slave having sex with a very large number of citizens// + <<else>> + <br> + + //You are already hosting// + <<if $weddingPlanned == 1>> + //a straightforward ceremony// + <<elseif $weddingPlanned == 3>> + //an impregnation ceremony// + <</if>> + //and cannot host an orgiastic ceremony// + <</if>> + <</if>> + <<if isFertile($activeSlave) && ($PC.dick == 1)>> + <<if $weddingPlanned == 3>> + <br> + <<link "Impregnation ceremony">> + <<replace "#result">> + You order $assistantName to invite deserving citizens to a ceremony for a fertile slave being married to a slaveowner, and to make the arrangements. The wedding will take place during the upcoming week. + <<set $weddingPlanned = 3>> + <<set $marrying.push($activeSlave.ID)>> + <<run cashX(-10000, "event", $activeSlave)>> + <</replace>> + <</link>> //This will involve you impregnating the slave// + <br> + <<else>> + <br> + + //You are already hosting// + <<if $weddingPlanned == 1>> + //a straightforward ceremony// + <<elseif $weddingPlanned == 2>> + //an orgiastic ceremony// + <</if>> + //and cannot host an impregnation ceremony// + <</if>> + <</if>> + <<else>> + <br>Invite prominent citizens to a wedding (This will cost <<print cashFormat(10000)>>): + <br> + <<link "Straightforward ceremony">> + <<replace "#result">> + You order $assistantName to invite deserving citizens to a straightforward ceremony for a slave being married to a slaveowner, and to make the arrangement. The wedding will take place during the upcoming week. + <<set $weddingPlanned = 1>> + <<set $marrying.push($activeSlave.ID)>> + <<run cashX(-10000, "event", $activeSlave)>> + <</replace>> + <</link>> + <<if ($activeSlave.vagina != 0) && ($activeSlave.anus != 0)>> + <br> + <<link "Orgiastic ceremony">> + <<replace "#result">> + You order $assistantName to invite deserving citizens to an orgiastic ceremony for a slave being married to a slaveowner, and to make the arrangements. The wedding orgy will take place during the upcoming week. + <<set $weddingPlanned = 2>> + <<set $marrying.push($activeSlave.ID)>> + <<run cashX(-10000, "event", $activeSlave)>> + <</replace>> + <</link>> //This will involve the slave having sex with a very large number of citizens// + <</if>> + <<if isFertile($activeSlave) && ($PC.dick == 1)>> + <br> + <<link "Impregnation ceremony">> + <<replace "#result">> + You order $assistantName to invite deserving citizens to a ceremony for a fertile slave being married to a slaveowner, and to make the arrangements. The wedding will take place during the upcoming week. + <<set $weddingPlanned = 3>> + <<set $marrying.push($activeSlave.ID)>> + <<run cashX(-10000, "event", $activeSlave)>> + <</replace>> + <</link>> //This will involve you impregnating the slave// + <</if>> + <</if>> <<else>> -//You cannot afford an elaborate ceremony// + //You cannot afford an elaborate ceremony// <</if>> </span> diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw index ada61054169f637a77b09b8ed641d4bae207a53a..91c41ca654647387237638b9475e0e40de636e9e 100644 --- a/src/pregmod/managePersonalAffairs.tw +++ b/src/pregmod/managePersonalAffairs.tw @@ -3,6 +3,8 @@ <<set $nextButton = "Back", $nextLink = "Main", $showEncyclopedia = 0>> <<run PCTitle()>> +<<set _ML = $marrying.length>> + <<if $cheatMode == 1>> <center>//[[Cheat Edit Player|PCCheatMenu][$cheater = 1]]<br><br>//</center> <</if>> @@ -109,6 +111,26 @@ Around back; <<if $PC.origHColor != "strawberry-blonde">>| [[Strawberry-Blonde|Manage Personal Affairs][$PC.hColor = "strawberry-blonde"]]<</if>> <<if $PC.origHColor != "white">>| [[White|Manage Personal Affairs][$PC.hColor = "white"]]<</if>> +<<if $weddingPlanned > 0>> + <br><br> + <<set _slave1 = getSlave($marrying[0])>> + <<if _ML > 1>> + <<if _ML >= 2>> + <<set _slave2 = getSlave($marrying[1])>> + <</if>> + <<if _ML >= 3>> + <<set _slave3 = getSlave($marrying[2])>> + <</if>> + <<if _ML == 4>> + <<set _slave4 = getSlave($marrying[3])>> + <</if>> + <</if>> + +/* yes, I am aware this looks horrendeous - if you can find a way to clean this up, by all means */ + You have a wedding planned for this weekend; you are <<if $weddingPlanned == 1>>marrying<<elseif $weddingPlanned == 2>>sharing<<elseif $weddingPlanned == 3>>knocking up<</if>> <<print "[[SlaveFullName(_slave1)|Slave Interact][$activeSlave = _slave1]]">><<if _ML > 2>>, <<elseif _ML == 2>> and <<print "[[SlaveFullName(_slave2)|Slave Interact][$activeSlave = _slave2]]">><</if>><<if _ML > 2>><<print "[[SlaveFullName(_slave2)|Slave Interact][$activeSlave = _slave2]]">><<if _ML == 3>> and <<else>>, <</if>><<print "[[SlaveFullName(_slave3)|Slave Interact][$activeSlave = _slave3]]">><<if _ML == 4>> and <<print "[[SlaveFullName(_slave4)|Slave Interact][$activeSlave = _slave4]]">><</if>> <<if $weddingPlanned == 2>>with your honored guests<</if>><</if>>. + [[Cancel it|Manage Personal Affairs][$weddingPlanned = -1, $marrying = []]] +<</if>> + <<if $FCTVreceiver == 1>> <br><br> <<if $FCTVrate == 1>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index f8cadf3938308e5dab701a976726d7414d0bf010..0fc88c4008a7d316f0562d0a890ab32133aa8909 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -61,6 +61,17 @@ <<unset $basenationalities>> <</if>> + +<<set $marrying = []>> /* TODO: not sure where to put this */ +<<if ndef $weddingPlanned>> + <<set $weddingPlanned = 0>> +<</if>> + +<<if def $weddingSlaveID>> + <<unset $weddingSlaveID>> + <<set $weddingPlanned = 0>> +<</if>> + <<if ndef $PC.name>> <<if def $PCName>> <<set $PC.name = $PCName>> diff --git a/src/uncategorized/endWeek.tw b/src/uncategorized/endWeek.tw index d5a08c843cbcbae448cc2310f8d4ea8fc0114268..5469e6e86a0ba2318846e3617312d20f15b2fb3b 100644 --- a/src/uncategorized/endWeek.tw +++ b/src/uncategorized/endWeek.tw @@ -127,6 +127,9 @@ <</for>> <<set $food -= $foodConsumption>> + <<if $food < 0>> + <<set $food = 0>> + <</if>> <</if>> <<setupLastWeeksCash>> diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw index 4ca2f28d4744f924a369b2d2bff45a40421cee69..cfaaf07d1fdfdd0716b52fc518eac7fe054c3a92 100644 --- a/src/uncategorized/nextWeek.tw +++ b/src/uncategorized/nextWeek.tw @@ -378,7 +378,7 @@ /% These are variables that either should be made into _temp vars or should be Zeroed out once done with them instead of here. This can also interfere with debugging or hide NaN's as zeroing things out would clear a NaN. Also could stop from NaN's getting worse? %/ /% Integer and float variables. No real need to zero them out but doesn't hurt to have them in a known state, though this might mask variables NaN'ing out. Takes up the least amount of Memory besides a "" string. %/ -<<set $averageProsperity = 0, $beauty = 0, $beautyMultiplier = 0, $boobsID = -1, $boobsInterestTargetID = -1, $brideSlave = -1, $buttslutID = -1, $buttslutInterestTargetID = -1, $cumslutID = -1, $FResult = 0, $groomSlave = -1, $humiliationID = -1, $humiliationInterestTargetID = -1, $i = 0, $influenceBonus = 0, $j = 0, $masochistID = -1, $masochistInterestTargetID = -1, $opinion = 0, $r = 0, $subID = -1, $submissiveInterestTargetID = -1, $weddingSlaveID = -1, $x = 0, $mother = -1, $daughter = -1, $devMother = -1, $devDaughter = -1, $alphaTwin = -1, $betaTwin = -1, $youngerSister = -1, $olderSister = -1, $recruiterSlave = -1>> +<<set $averageProsperity = 0, $beauty = 0, $beautyMultiplier = 0, $boobsID = -1, $boobsInterestTargetID = -1, $brideSlave = -1, $buttslutID = -1, $buttslutInterestTargetID = -1, $cumslutID = -1, $FResult = 0, $groomSlave = -1, $humiliationID = -1, $humiliationInterestTargetID = -1, $i = 0, $influenceBonus = 0, $j = 0, $masochistID = -1, $masochistInterestTargetID = -1, $opinion = 0, $r = 0, $subID = -1, $submissiveInterestTargetID = -1, $x = 0, $mother = -1, $daughter = -1, $devMother = -1, $devDaughter = -1, $alphaTwin = -1, $betaTwin = -1, $youngerSister = -1, $olderSister = -1, $recruiterSlave = -1>> /% Other arrays %/ <<set $events = [], $RESSevent = [], $RESSTRevent = [], $RETSevent = [], $RECIevent = [], $RecETSevent = [], $REFIevent = [], $REFSevent = [], $PESSevent = [], $PETSevent = [], $FSAcquisitionEvents = [], $FSNonconformistEvents = [], $qualifiedNicknames = [], $REAnalCowgirlSubIDs = [], $REButtholeCheckinIDs = [], $recruit = [], $RETasteTestSubIDs = [], $devotedSlaves = [], $rebelSlaves = [], $REBoobCollisionSubIDs = [], $REIfYouEnjoyItSubIDs = [], $RESadisticDescriptionSubIDs = [], $REShowerForceSubIDs = [], $RESimpleAssaultIDs = [], $RECockmilkInterceptionIDs = [], $REInterslaveBeggingIDs = [], $bedSlaves = [], $qualifiedFS = [], $eligibleSlaves = [], $slavesInLine = []>> diff --git a/src/uncategorized/scheduledEvent.tw b/src/uncategorized/scheduledEvent.tw index 8462aef305dee58493b5fe3a619362f75ba3b28d..06afc5a6c123a376dabc7a12ba8452adcfafa29b 100644 --- a/src/uncategorized/scheduledEvent.tw +++ b/src/uncategorized/scheduledEvent.tw @@ -124,15 +124,12 @@ <<goto "SE independence day">> <<elseif ($weddingPlanned > 0)>> <<set _wedding = 0>> - <<for $i = 0; $i < $slaves.length; $i++>> - <<if ($slaves[$i].ID == $weddingSlaveID)>> - <<set $activeSlave = $slaves[$i]>> + <<if ($weddingPlanned > 0)>> <<set _wedding = 1>> <<goto "SE wedding">> <</if>> - <</for>> <<if _wedding == 0>> - <<set $weddingPlanned = 0>> + <<set $weddingPlanned = 0, $marrying = []>> <<run cashX(10000, "event")>> <<goto "Scheduled Event">> <</if>> diff --git a/src/uncategorized/seWedding.tw b/src/uncategorized/seWedding.tw index 787f13c144467b1632f2daa629a186f0f33561e6..df25345e6c89c5f06c7e305b822d58b6921c32de 100644 --- a/src/uncategorized/seWedding.tw +++ b/src/uncategorized/seWedding.tw @@ -1,844 +1,17 @@ :: SE wedding [nobr] <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Scheduled Event">> -<<set _belly = bellyAdjective($activeSlave)>> -<<setLocalPronouns $activeSlave>> +<<set _ML = $marrying.length>> -<<if $activeSlave.relationship != 0>> - <<if $activeSlave.relationship > 0>> - <<set _m = $slaveIndices[$activeSlave.relationshipTarget]>> - <<set $activeSlave.relationshipTarget = 0>> - <<set $slaves[_m].relationship = 0, $slaves[_m].relationshipTarget = 0>> - <<setLocalPronouns $slaves[_m] 2>> - <</if>> - In the days leading up to your wedding, $activeSlave.slaveName spent $his time - <<if $activeSlave.devotion+$activeSlave.trust >= 175>> - <<if $activeSlave.relationship != 0>> - <<if $activeSlave.relationship == -1>> - vowing that $he'll be less of a slut. - <<elseif $activeSlave.relationship == 4>> - breaking up with $his lover, $slaves[_m].slaveName, as painlessly as possible. - <<elseif $activeSlave.relationship == 3>> - breaking up with $his FWB, $slaves[_m].slaveName, as painlessly as possible. - <<elseif $activeSlave.relationship > 0>> - promising $slaves[_m].slaveName that they'll still be friends, even if they can't spend time together. - <<else>> - as close to you as $he could. - <</if>> - <</if>> - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - <<if $activeSlave.relationship == -1>> - sleeping with as many different people as $he could. - <<if !isSlaveAvailable($activeSlave)>> - Or $he would have, if $he were able. - <<elseif canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - <<set _randomVag = random(30,60)>> - <<set _randomAnal = random(30,60)>> - <<set _randomOral = random(30,60)>> - <<set $activeSlave.vaginalCount += _randomVag, $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> - By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed holes. - <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - $His actions robbed you of @@.lime;both $his virginities.@@ - <</if>> - <<if $activeSlave.vagina < 4>><<set $activeSlave.vagina = 4>><</if>><<set $activeSlave.anus = 4>> - <<if canGetPregnant($activeSlave) && (random(1,100) > 70) && $activeSlave.eggType == "human">> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoVaginal($activeSlave)>> - <<set _randomVag = random(30,60)>> - <<set _randomOral = random(30,60)>> - <<set $activeSlave.vaginalCount += _randomVag, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> - By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed cunt. - <<if $activeSlave.vagina == 0>> - $His actions robbed you of @@.lime;$his virginity.@@ - <</if>> - <<if $activeSlave.vagina < 4>><<set $activeSlave.vagina = 4>><</if>> - <<if canGetPregnant($activeSlave) && (random(1,100) > 70) && $activeSlave.eggType == "human">> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoAnal($activeSlave)>> - <<set _randomAnal = random(30,60)>> - <<set _randomOral = random(30,60)>> - <<set $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> - By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed anus. - <<if $activeSlave.anus == 0>> - $His actions robbed you of @@.lime;$his anal virginity.@@ - <</if>> - <<set $activeSlave.anus = 4>> - <<if canGetPregnant($activeSlave) && (random(1,100) > 70) && $activeSlave.eggType == "human">> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<else>> - <<set _randomOral = random(60,100)>> - <<set $activeSlave.oralCount += _randomOral, $oralTotal += _randomOral>> - By week's end, $he's managed to make $himself sick from sucking down so much sexual fluid. Luckily inducing vomiting will save your wedding from making the tabloids. - <</if>> - <<elseif $activeSlave.relationship == 4>> - fucking $his love, $slaves[_m].slaveName, as often as possible while ignoring you. - <<if !isSlaveAvailable($activeSlave)>> - Or $he would have, if $he were able. - <<elseif !isSlaveAvailable($slaves[_m])>> - Or $he would have, if _he2 were around. - <<elseif canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - <<set _randomVag = random(3,7)>> - <<set _randomAnal = random(1,4)>> - <<set _randomOral = random(5,10)>> - <<set $activeSlave.vaginalCount += _randomVag, $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> - <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - $His actions robbed you of @@.lime;both $his virginities.@@ - <<set $activeSlave.vagina = 1, $activeSlave.anus = 1>> - <</if>> - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoVaginal($activeSlave)>> - <<set _randomVag = random(3,7)>> - <<set _randomOral = random(5,10)>> - <<set $activeSlave.vaginalCount += _randomVag, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> - <<if $activeSlave.vagina == 0>> - $His actions robbed you of @@.lime;$his virginity.@@ - <<set $activeSlave.vagina = 1>> - <</if>> - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoAnal($activeSlave)>> - <<set _randomAnal = random(1,4)>> - <<set _randomOral = random(5,10)>> - <<set $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> - <<if $activeSlave.anus == 0>> - $His actions robbed you of @@.lime;$his anal virginity.@@ - <<set $activeSlave.anus = 1>> - <</if>> - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<else>> - <<set _randomOral = random(15,20)>> - <<set $activeSlave.oralCount += _randomOral, $oralTotal += _randomOral>> - By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. - <</if>> - <<elseif $activeSlave.relationship == 3>> - fucking $his lover, $slaves[_m].slaveName, as often as possible while ignoring you. - <<if !isAvailable($activeSlave)>> - Or $he would have, if $he were able. - <<elseif !isSlaveAvailable($slaves[_m])>> - Or $he would have, if _he2 were around. - <<elseif canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - <<set _randomVag = random(3,7)>> - <<set _randomAnal = random(1,4)>> - <<set _randomOral = random(5,10)>> - <<set $activeSlave.vaginalCount += _randomVag, $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> - <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - $His actions robbed you of @@.lime;both $his virginities.@@ - <<set $activeSlave.vagina = 1, $activeSlave.anus = 1>> - <</if>> - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoVaginal($activeSlave)>> - <<set _randomVag = random(3,7)>> - <<set _randomOral = random(5,10)>> - <<set $activeSlave.vaginalCount += _randomVag, $activeSlave.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> - <<if $activeSlave.vagina == 0>> - $His actions robbed you of @@.lime;$his virginity.@@ - <<set $activeSlave.vagina = 1>> - <</if>> - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoAnal($activeSlave)>> - <<set _randomAnal = random(1,4)>> - <<set _randomOral = random(5,10)>> - <<set $activeSlave.analCount += _randomAnal, $activeSlave.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> - <<if $activeSlave.anus == 0>> - $His actions robbed you of @@.lime;$his anal virginity.@@ - <<set $activeSlave.anus = 1>> - <</if>> - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 70)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<else>> - <<set _randomOral = random(15,20)>> - <<set $activeSlave.oralCount += _randomOral, $oralTotal += _randomOral>> - By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. - <</if>> - <<elseif $activeSlave.relationship > 0>> - spending time away from you with $slaves[_m].slaveName. - <<else>> - inappropriately planning redecorations. - <</if>> - <<elseif $activeSlave.devotion < -20>> - <<if $activeSlave.relationship == -1>> - desperately pleading with you to change your mind. - <<elseif $activeSlave.relationship == 4>> - with $his love, $slaves[_m].slaveName, weeping. - <<elseif $activeSlave.relationship == 3>> - with $his lover, $slaves[_m].slaveName, weeping. - <<elseif $activeSlave.relationship > 0>> - with $his friend, $slaves[_m].slaveName, weeping. - <<else>> - desperately pleading with you to change your mind. - <</if>> - <<else>> - <<if $activeSlave.relationship == -1>> - trying $his hardest to not sleep with anyone else. - <<elseif $activeSlave.relationship == 4>> - alongside $his love, $slaves[_m].slaveName. - <<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>> - <<set $activeSlave.vaginalCount += 1, $vaginalTotal += 1>> - $He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time. - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoAnal($activeSlave)>> - <<set $activeSlave.analCount += 1, $analTotal += 1>> - $He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time. - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<else>> - <<set $activeSlave.oralCount += 1, $oralTotal += 1>> - $He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>. - <</if>> - <<elseif $activeSlave.relationship == 3>> - alongside $his lover, $slaves[_m].slaveName. - <<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>> - <<set $activeSlave.vaginalCount += 1, $vaginalTotal += 1>> - $He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time. - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<elseif canDoAnal($activeSlave)>> - <<set $activeSlave.analCount += 1, $analTotal += 1>> - $He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time. - <<if canImpreg($activeSlave, $slaves[_m]) && (random(1,100) > 90)>> - A pre-wedding checkup following an unusual bout of morning nausea reveals $activeSlave.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. - <<set $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1, $activeSlave.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, $activeSlave.pregSource, $activeSlave.preg)>> - <</if>> - <<else>> - <<set $activeSlave.oralCount += 1, $oralTotal += 1>> - $He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>. - <</if>> - <<elseif $activeSlave.relationship > 0>> - with $his friend, $slaves[_m].slaveName. - <<else>> - wearing a very conflicted expression. - <</if>> - <</if>> -<</if>> - -<<if $weddingPlanned == 3>> - <<if !isFertile($activeSlave)>> - $activeSlave.slaveName can no longer be impregnated as planned for the ceremony, so it has been hurriedly recast as a normal slave wedding. - <<set $weddingPlanned = 1>> - <br><br> - <</if>> -<</if>> - -<<if $weddingPlanned == 3>> - The ceremony to bind <<= SlaveFullName($activeSlave)>> 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" && ($activeSlave.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> - $activeSlave.slaveName appears 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)>> - white, since $he's a virgin. - <<elseif ($activeSlave.pregKnown == 1)>> - light pink, since $he's pregnant. - <<elseif ($activeSlave.vagina < 0) && ($activeSlave.anus == 0)>> - white, since $he's an anal virgin. - <<elseif ($activeSlave.vagina < 0) && ($activeSlave.boobs > 500)>> - electric blue, since $he's a shemale. - <<elseif ($activeSlave.vagina < 0)>> - pale blue, since $he's a sissy slave. - <<elseif ($activeSlave.dick > 0)>> - hot pink, since $he's a futa slave. - <<else>> - light pink, since $he's an experienced sex slave. - <</if>> - A filmy veil covers $his head and shoulders. $His lacy bridal bra - <<if ($activeSlave.boobs > 4000)>> - is a marvel of engineering, discreetly reinforced to support $his gigantic udders. - <<elseif ($activeSlave.boobs > 1200)>> - just barely restrains $his huge boobs, leaving the tops of $his areolae visible. - <<elseif ($activeSlave.boobs > 400)>> - flatters $his pretty breasts. - <<else>> - flatters $his pretty chest. - <</if>> - <<if $activeSlave.bellyPreg >= 600000>> - $His expansive, squirming pregnant belly makes $his bridal wear particularly obscene. - <<elseif ($activeSlave.bellyPreg >= 1500)>> - $His _belly pregnant belly protrudes out the front of $his bridal wear. - <<elseif ($activeSlave.bellyImplant >= 1500)>> - $His _belly <<print $activeSlave.bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear. - <<elseif ($activeSlave.bellyFluid >= 10000)>> - $His hugely bloated, <<print $activeSlave.inflationType>>-filled belly protrudes out the front of $his bridal wear. - <<elseif ($activeSlave.bellyFluid >= 5000)>> - $His bloated, <<print $activeSlave.inflationType>>-stuffed belly protrudes out the front of $his bridal wear. - <<elseif ($activeSlave.bellyFluid >= 1500)>> - $His distended, <<print $activeSlave.inflationType>>-belly protrudes out the front of $his bridal wear. - <</if>> - <<if $activeSlave.dickAccessory == ("chastity") || $activeSlave.dickAccessory == ("combined chastity")>> - $His slave dick is hidden by its chastity cage. - <<elseif canAchieveErection($activeSlave)>> - <<if ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>> - $He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly. - <<elseif $activeSlave.dick > 4>> - $He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. - <<else>> - $His erection tents the front of $his lacy g-string. - <</if>> - <<elseif ($activeSlave.dick > 0)>> - <<if $activeSlave.dick > 10>> - $His huge soft cock is allowed to dangle freely as no g-string could hope to contain it. - <<elseif $activeSlave.dick > 4>> - $His big soft cock forms a lewd mass, stuffed into $his lacy g-string. - <<else>> - $His lacy g-string perfectly conceals $his soft dick. - <</if>> - <<else>> - <<if $activeSlave.clit > 1>> - $His huge clit is quite hard, making $his shift uncomfortably as $his lacy g-string stimulates it. - <<else>> - $His lacy g-string covers $his womanhood demurely. - <</if>> - <</if>> - There is no aisle for $him to <<if $activeSlave.amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you - <<if $activeSlave.fetish == "mindbroken">> - despite the fact that $he had to be pushed into walking towards you. - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - of $his own choice, and $he does so with a smile. - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - of $his own choice, and $he does so with hesitation. - <<elseif $activeSlave.devotion < -20>> - of $his own (forced) choice, and $he does so with wavering steps. - <<else>> - of $his own choice, and $he does so willingly. - <</if>> - <br><br> - When $he's in front of you, - <<if $activeSlave.amp == 1>> - the slave carrying $his limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch. - <<else>> - <<if $activeSlave.fetish == "mindbroken">> - you push $him onto $his knees so $his head - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - $he happily gets down on $his knees so $his head - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $he slowly lowers $himself onto $his knees so $his head - <<elseif $activeSlave.devotion < -20>> - $he quickly lowers $himself onto $his knees so $his tear-streaked face - <<else>> - $he gets down on $his knees so $his head - <</if>> - <</if>> - is level with your crotch. - <<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 <<if $activeSlave.devotion < -20 && $activeSlave.trust <= 20>>trembling <</if>>finger. - <</if>> - There is no ring for you, since this marriage does not bind you. - <br> - <<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>> - <br><br><span id="surnaming"> - <<link "Give $him your surname too">> - <<replace "#surnaming">> - <<set $activeSlave.slaveSurname = $PC.surname>> - You also proclaim your new slave wife $activeSlave.slaveName $activeSlave.slaveSurname. The new Mrs. $activeSlave.slaveSurname hears 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>> - breaks down again. Not only is $he to be blessed with your child, but $he's to take your surname as well. - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - scoffs audibly. Just another burden for $him to carry; like the child soon to be growing in $his womb. - <<elseif $activeSlave.devotion < -20>> - breaks down again. Not only are you binding $him to you with your child, but with your name as well. - <<else>> - nods acceptingly. Your will is $his will, after all. - <</if>> - <</replace>> - <</link>> - </span> - <</if>> - <br><br> - <<if $activeSlave.fetish == "mindbroken">> - $activeSlave.slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. 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>>. Then you pull $his knees up to give your guests a good view as you fuck $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation. - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - Then, you <<if $activeSlave.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>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if $activeSlave.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, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation. - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $activeSlave.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 tear up 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 $activeSlave.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 $activeSlave.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, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his efforts to defy you. - <<elseif $activeSlave.devotion < -20>> - $activeSlave.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 $activeSlave.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 $activeSlave.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>> - $activeSlave.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 $activeSlave.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 $activeSlave.preg = 1, $activeSlave.pregKnown = 1, $activeSlave.pregWeek = 1>> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombImpregnate($activeSlave, $activeSlave.pregType, -1, $activeSlave.preg)>> - <<set $activeSlave.pregSource = -1>> - <<if ($activeSlave.vagina == 0) || ($activeSlave.mpreg == 1 && $activeSlave.anus == 0)>> - Naturally, the ceremony @@.lime;took $his virginity;@@ - <<if $activeSlave.fetish == "mindbroken">> - $he didn't notice. - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - $he was so happy @@.hotpink;$his first time was with you and so special.@@ - <<set $activeSlave.devotion += 5>> - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - $he was @@.mediumorchid;saving that for someone special.@@ - <<set $activeSlave.devotion -= 5>> - <<elseif $activeSlave.devotion < -20>> - $he wept at the sight of cum pooling from $his @@.mediumorchid;defiled <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>>.@@ - <<set $activeSlave.devotion -= 10>> - <<else>> - you made it @@.hotpink;enjoyable@@ at least. - <<set $activeSlave.devotion += 2>> - <</if>> - <<if $activeSlave.mpreg == 1>><<set $activeSlave.anus = 1>><<else>><<set $activeSlave.vagina = 1>><</if>> - <</if>> - <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60)>> - <<if $activeSlave.fetish == "mindbroken">> - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - As a pregnancy fetishist, @@.hotpink;$he confidently believes this wedding will be the high point of $his life.@@ - <<set $activeSlave.devotion += 20>> - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - As a hateful pregnancy fetishist, @@.hotpink;getting pregnant was the best part of the ceremony.@@ - <<set $activeSlave.devotion += 1>> - <<elseif $activeSlave.devotion < -20>> - As a pregnancy fetishist, getting raped pregnant by someone $he hates leaves $him with very mixed feelings. - <<else>> - As a pregnancy fetishist, @@.hotpink;$he thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@ - <<set $activeSlave.devotion += 10>> - <</if>> - <</if>> - <<if $activeSlave.relationship != 0>> - <<if $activeSlave.devotion+$activeSlave.trust >= 175>> - <<if $activeSlave.relationship > 0>> - $His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>ex<<else>>companion<</if>>'s future. - <<if $activeSlave.relationship == 4>> - <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> - <<elseif $activeSlave.relationship == 3>> - <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> - <<else>> - <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> - <</if>> - <</if>> - <<elseif $activeSlave.devotion < -20>> - <<if $activeSlave.relationship == -1>> - $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. - <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> - <<elseif $activeSlave.relationship == 4>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner. - <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> - <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> - <<elseif $activeSlave.relationship == 3>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. - <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> - <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 30>> - <<elseif $activeSlave.relationship > 0>> - Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. - <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> - <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> - <</if>> - <<else>> - <<if $activeSlave.relationship == -1>> - $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. - <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> - <<elseif $activeSlave.relationship == 4>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. - <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> - <<set $activeSlave.devotion -= 30, $activeSlave.trust -= 20>> - <<elseif $activeSlave.relationship == 3>> - Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2. - <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> - <<set $activeSlave.devotion -= 15, $activeSlave.trust -= 10>> - <<elseif $activeSlave.relationship > 0>> - Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. - <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> - <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> - <</if>> - <</if>> - <</if>> - <<set $activeSlave.relationship = -3>> - <<if $activeSlave.mpreg == 1>><<set $activeSlave.analCount += 1, $analTotal += 1>><<else>><<set $activeSlave.vaginalCount += 1, $vaginalTotal += 1>><</if>> - <<set $rep += 750>> - <<if $activeSlave.fetish == "mindbroken">> - <<set $desc = "a framed shot of you impregnating the blank-faced " + $activeSlave.slaveName + " at your wedding">> - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - <<set $desc = "a framed shot of you impregnating the joyous " + $activeSlave.slaveName + " at your wedding">> - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - <<set $desc = "a framed shot of you forcefully impregnating the disinterested " + $activeSlave.slaveName + " at your wedding">> - <<elseif $activeSlave.devotion < -20>> - <<set $desc = "a framed shot of you forcefully impregnating the tear soaked " + $activeSlave.slaveName + " at your wedding">> - <<else>> - <<set $desc = "a framed shot of you impregnating " + $activeSlave.slaveName + " at your wedding">> - <</if>> - <<set $trinkets.push($desc)>> - <<if $arcologies[0].FSRestart != "unset" && ($activeSlave.breedingMark == 0 || $propOutcome == 0) && $eugenicsFullControl != 1>> - You have @@.red;angered@@ the Societal Elite by this public showing of everything they stand against. - <<set $failedElite += 250>> - <</if>> -<<elseif $weddingPlanned == 2>> - 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 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. - <<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. - <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. - <<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. - <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. - <<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. - <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. - <<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. - <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. - <</if>> - <br> - <<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>> - <br><br><span id="surnaming"> - <<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 hears 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>> - breaks down again. - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - scoffs audibly. - <<elseif $activeSlave.devotion < -20>> - breaks down again. - <<else>> - nods acceptingly. - <</if>> - <</replace>> - <</link>> - </span> - <</if>> - - <<if ndef $activeSlave.publicCount>> - <<set $activeSlave.publicCount = 0>> - <</if>> - <<if $activeSlave.vagina > 0>> - <<set $activeSlave.vaginalCount += 50>> - <<set $vaginalTotal += 50>> - <<set $activeSlave.publicCount += 50>> - <</if>> - <<if $activeSlave.anus < 3>> - <<set $activeSlave.anus += 1>> - You can feel $his ass, still somewhat gaped from its ordeal. It's been @@.lime;loosened@@ by $his wedding party. - <</if>> - <<if $activeSlave.relationship != 0>> - <<if $activeSlave.devotion+$activeSlave.trust >= 175>> - <<if $activeSlave.relationship > 0>> - $His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future. - <<if $activeSlave.relationship == 4>> - <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> - <<elseif $activeSlave.relationship == 3>> - <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> - <<else>> - <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> - <</if>> - <<elseif $activeSlave.relationship == -2>> - $He feels like $he betrayed you by getting fucked by so many others and struggles to convince $himself it was what you wanted. - <<elseif $activeSlave.relationship == -1>> - Judging by the smile on $his sleeping face, today may have been the @@.hotpink;best day of $his life.@@ - <<set $activeSlave.devotion = 100, $activeSlave.trust = 100>> - <</if>> - <<elseif $activeSlave.devotion < -20>> - <<if $activeSlave.relationship == -1>> - $He @@.mediumorchid;hates@@ that $he has to be yours only after such a thrilling orgy and @@.gold;fears@@ what will happen if $he strays. - <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> - <<elseif $activeSlave.relationship == 4>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked by so many others. - <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> - <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> - <<elseif $activeSlave.relationship == 3>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. - <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> - <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 30>> - <<elseif $activeSlave.relationship > 0>> - Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. - <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> - <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> - <</if>> - <<else>> - <<if $activeSlave.relationship == -1>> - $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays, especially after such a lovely orgy. - <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> - <<elseif $activeSlave.relationship == 4>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. - <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> - <<set $activeSlave.devotion -= 30, $activeSlave.trust -= 20>> - <<elseif $activeSlave.relationship == 3>> - Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;resentful@@ that you'd treat such a catch that way. - <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> - <<set $activeSlave.devotion -= 15, $activeSlave.trust -= 10>> - <<elseif $activeSlave.relationship > 0>> - Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. - <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> - <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> - <</if>> - <</if>> - <</if>> - <<set $activeSlave.relationship = -3>> - <<set $activeSlave.oralCount += 50>> - <<set $oralTotal += 50>> - <<set $activeSlave.analCount += 50>> - <<set $analTotal += 50>> - <<set $activeSlave.publicCount += 100>> - <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> - <<= knockMeUp($activeSlave, 20, 2, -2)>> - <</if>> - <<set $rep += 1000>> - <<if $activeSlave.fetish == "mindbroken">> - <<set $desc = "a framed shot of the broken " + $activeSlave.slaveName + " getting gangbanged at your wedding">> - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - <<set $desc = "a framed shot of the tear and cum soaked " + $activeSlave.slaveName + " getting gangbanged at your wedding">> - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - <<set $desc = "a framed shot of the glowering " + $activeSlave.slaveName + " getting gangbanged at your wedding">> - <<elseif $activeSlave.devotion < -20>> - <<set $desc = "a framed shot of " + $activeSlave.slaveName + " getting gangbanged and weeping at your wedding">> - <<else>> - <<set $desc = "a framed shot of " + $activeSlave.slaveName + " getting gangbanged at your wedding">> - <</if>> - <<set $trinkets.push($desc)>> +<<if _ML == 1>> + <<include "SE wedding single">> +<<elseif _ML == 2>> + <<include "SE wedding double">> +<<elseif _ML >= 3>> + <<include "SE wedding triple">> <<else>> - The ceremony to bind <<= SlaveFullName($activeSlave)>> 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> - $activeSlave.slaveName appears 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)>> - white, since $he's a virgin. - <<elseif ($activeSlave.pregKnown == 1)>> - light pink, since $he's pregnant. - <<elseif ($activeSlave.vagina < 0) && ($activeSlave.anus == 0)>> - white, since $he's an anal virgin. - <<elseif ($activeSlave.vagina < 0) && ($activeSlave.boobs > 500)>> - electric blue, since $he's a shemale. - <<elseif ($activeSlave.vagina < 0)>> - pale blue, since $he's a sissy slave. - <<elseif ($activeSlave.dick > 0)>> - hot pink, since $he's a futa slave. - <<else>> - light pink, since $he's an experienced sex slave. - <</if>> - A filmy veil covers $his head and shoulders. $His lacy bridal bra - <<if ($activeSlave.boobs > 4000)>> - is a marvel of engineering, discreetly reinforced to support $his gigantic udders. - <<elseif ($activeSlave.boobs > 1200)>> - just barely restrains $his huge boobs, leaving the tops of $his areolae visible. - <<elseif ($activeSlave.boobs > 400)>> - flatters $his pretty breasts. - <<else>> - flatters $his pretty chest. - <</if>> - <<if $activeSlave.bellyPreg >= 600000>> - $His expansive, squirming pregnant belly makes $his bridal wear particularly obscene. - <<elseif ($activeSlave.bellyPreg >= 1500)>> - $His _belly pregnant belly protrudes out the front of $his bridal wear. - <<elseif ($activeSlave.bellyImplant >= 1500)>> - $His _belly <<print $activeSlave.bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear. - <<elseif ($activeSlave.bellyFluid >= 10000)>> - $His hugely bloated, <<print $activeSlave.inflationType>>-filled belly protrudes out the front of $his bridal wear. - <<elseif ($activeSlave.bellyFluid >= 5000)>> - $His bloated, <<print $activeSlave.inflationType>>-stuffed belly protrudes out the front of $his bridal wear. - <<elseif ($activeSlave.bellyFluid >= 1500)>> - $His distended, <<print $activeSlave.inflationType>>-belly protrudes out the front of $his bridal wear. - <</if>> - <<if $activeSlave.dickAccessory == ("chastity") || $activeSlave.dickAccessory == ("combined chastity")>> - $His slave dick is hidden by its chastity cage. - <<elseif canAchieveErection($activeSlave)>> - <<if ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>> - $He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly. - <<elseif $activeSlave.dick > 4>> - $He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. - <<else>> - $His erection tents the front of $his lacy g-string. - <</if>> - <<elseif ($activeSlave.dick > 0)>> - <<if $activeSlave.dick > 10>> - $His huge soft cock is allowed to dangle freely as no g-string could hope to contain it. - <<elseif $activeSlave.dick > 4>> - $His big soft cock forms a lewd mass, stuffed into $his lacy g-string. - <<else>> - $His lacy g-string perfectly conceals $his soft dick. - <</if>> - <<else>> - <<if $activeSlave.clit > 1>> - $His huge clit is quite hard, making $him shift uncomfortably as $his lacy g-string stimulates it. - <<else>> - $His lacy g-string covers $his womanhood demurely. - <</if>> - <</if>> - There is no aisle for $him to <<if $activeSlave.amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you - <<if $activeSlave.fetish == "mindbroken">> - despite the fact that $he had to be pushed into walking towards you. - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - of $his own choice, and $he does so with a smile. - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - of $his own choice, and $he does so with hesitation. - <<elseif $activeSlave.devotion < -20>> - of $his own (forced) choice, and $he does so with wavering steps. - <<else>> - of $his own choice, and $he does so willingly. - <</if>> - <br><br> - When $he's in front of you, <<if $activeSlave.amp == 1>>the slave carrying $his limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knees so $his head is level with your crotch<</if>>. <<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> - <<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>> - <br><br><span id="surnaming"> - <<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 hears 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>> - breaks down again; it's like a dream come true. - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - scoffs audibly; just another burden for $him to carry. - <<elseif $activeSlave.devotion < -20>> - breaks down again; this is nothing more than another unwanted link to you. - <<else>> - nods acceptingly. Your will is $his will, after all. - <</if>> - <</replace>> - <</link>> - </span> - <</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. - <<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. - <<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. - <<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. - <<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. - <</if>> - <<if $activeSlave.relationship != 0>> - <<if $activeSlave.devotion+$activeSlave.trust >= 175>> - <<if $activeSlave.relationship > 0>> - $His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future. - <<if $activeSlave.relationship == 4>> - <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> - <<elseif $activeSlave.relationship == 3>> - <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> - <<else>> - <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> - <</if>> - <</if>> - <<elseif $activeSlave.devotion < -20>> - <<if $activeSlave.relationship == -1>> - $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. - <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> - <<elseif $activeSlave.relationship == 4>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. - <<set $slaves[_m].devotion -= 40, $slaves[_m].trust -= 40>> - <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> - <<elseif $activeSlave.relationship == 3>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. - <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> - <<set $activeSlave.devotion -= 30, $activeSlave.trust -= 30>> - <<elseif $activeSlave.relationship > 0>> - Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. - <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> - <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> - <</if>> - <<else>> - <<if $activeSlave.relationship == -1>> - $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. - <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> - <<elseif $activeSlave.relationship == 4>> - Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. - <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> - <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> - <<elseif $activeSlave.relationship == 3>> - Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. - <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> - <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> - <<elseif $activeSlave.relationship > 0>> - Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. - <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> - <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> - <</if>> - <</if>> - <</if>> - <<set $activeSlave.relationship = -3>> - <<set $activeSlave.oralCount += 1>> - <<set $oralTotal += 1>> - <<set $rep += 750>> - <<if $activeSlave.fetish == "mindbroken">> - <<set $desc = "a framed shot of your uneventful wedding to the mindbroken " + $activeSlave.slaveName>> - <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> - <<set $desc = "a framed shot of your romantic wedding to the joyous " + $activeSlave.slaveName>> - <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> - <<set $desc = "a framed shot of your forced wedding to the hateful " + $activeSlave.slaveName>> - <<elseif $activeSlave.devotion < -20>> - <<set $desc = "a framed shot of your forced wedding to the weeping " + $activeSlave.slaveName>> - <<else>> - <<set $desc = "a framed shot of your wedding to " + $activeSlave.slaveName>> - <</if>> - <<set $trinkets.push($desc)>> + @@.red;Error: unknown $marrying length. Please report this.@@ <</if>> <<set $weddingPlanned = 0>> +<<set $marrying = []>> diff --git a/src/uncategorized/seWeddingDouble.tw b/src/uncategorized/seWeddingDouble.tw new file mode 100644 index 0000000000000000000000000000000000000000..05c9adf6511e2c34ded63fa3c0af0fa5dc4e7ee7 --- /dev/null +++ b/src/uncategorized/seWeddingDouble.tw @@ -0,0 +1,2480 @@ +:: SE wedding double [nobr] + +<<set _ML = $marrying.length>> +<<set _slave1 = getSlave($marrying[0])>> +<<set _slave2 = getSlave($marrying[1])>> +<<setLocalPronouns _slave1>> +<<setLocalPronouns _slave2 2>> +<<set _belly = bellyAdjective(_slave1)>> +<<set _belly2 = bellyAdjective(_slave2)>> + +<<if _slave1.slaveName == _slave2.slaveName>> +<</if>> + +<<if _slave1.relationship != 0>> + <<if _slave1.relationship > 0>> + <<if _slave1.relationshipTarget == _slave2.ID>> + In the days leading up to your wedding, _slave1.slaveName and _slave2.slaveName spent their time + <<if _slave1.relationship <= 2>> + excitedly planning together, as <<if _slave1.relationship == 2>>best<</if>> friends do. + <<else>> + having less sex and spending more time preparing for the upcoming event. + <</if>> + <<set _slave1.relationship = 0, _slave2.relationship = 0>> + <<else>> + In the days leading up to your wedding, _slave1.slaveName spent $his time + <<set _m = $slaveIndices[_slave1.relationshipTarget]>> + <<set _slave1.relationshipTarget = 0>> + <<set $slaves[_m].relationship = 0, $slaves[_m].relationshipTarget = 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship != 0>> + <<if _slave1.relationship == -1>> + vowing that $he'll be less of a slut. + <<elseif _slave1.relationship == 4>> + breaking up with $his lover, $slaves[_m].slaveName, as painlessly as possible. + <<elseif _slave1.relationship == 3>> + breaking up with $his FWB, $slaves[_m].slaveName, as painlessly as possible. + <<elseif _slave1.relationship > 0>> + promising $slaves[_m].slaveName that they'll still be friends, even if they can't spend time together. + <<else>> + as close to you as $he could. + <</if>> + <</if>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + <<if _slave1.relationship == -1>> + sleeping with as many different people as $he could. + <<if !isSlaveAvailable(_slave1)>> + Or $he would have, if $he were able. + <<elseif canDoVaginal(_slave1) && canDoAnal(_slave1)>> + <<set _randomVag = random(30,60)>> + <<set _randomAnal = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set _slave1.vaginalCount += _randomVag, _slave1.analCount += _randomAnal, _slave1.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed holes. + <<if _slave1.vagina == 0 && _slave1.anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <</if>> + <<if _slave1.vagina < 4>><<set _slave1.vagina = 4>><</if>><<set _slave1.anus = 4>> + <<if canGetPregnant(_slave1) && (random(1,100) > 70) && _slave1.eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoVaginal(_slave1)>> + <<set _randomVag = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set _slave1.vaginalCount += _randomVag, _slave1.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed cunt. + <<if _slave1.vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <</if>> + <<if _slave1.vagina < 4>><<set _slave1.vagina = 4>><</if>> + <<if canGetPregnant(_slave1) && (random(1,100) > 70) && _slave1.eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoAnal(_slave1)>> + <<set _randomAnal = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set _slave1.analCount += _randomAnal, _slave1.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed anus. + <<if _slave1.anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <</if>> + <<set _slave1.anus = 4>> + <<if canGetPregnant(_slave1) && (random(1,100) > 70) && _slave1.eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<else>> + <<set _randomOral = random(60,100)>> + <<set _slave1.oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from sucking down so much sexual fluid. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif _slave1.relationship == 4>> + fucking $his love, $slaves[_m].slaveName, as often as possible while ignoring you. + <<if !isSlaveAvailable(_slave1)>> + Or $he would have, if $he were able. + <<elseif !isSlaveAvailable($slaves[_m])>> + Or $he would have, if _he2 were around. + <<elseif canDoVaginal(_slave1) && canDoAnal(_slave1)>> + <<set _randomVag = random(3,7)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave1.vaginalCount += _randomVag, _slave1.analCount += _randomAnal, _slave1.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave1.vagina == 0 && _slave1.anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <<set _slave1.vagina = 1, _slave1.anus = 1>> + <</if>> + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoVaginal(_slave1)>> + <<set _randomVag = random(3,7)>> + <<set _randomOral = random(5,10)>> + <<set _slave1.vaginalCount += _randomVag, _slave1.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + <<if _slave1.vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <<set _slave1.vagina = 1>> + <</if>> + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoAnal(_slave1)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave1.analCount += _randomAnal, _slave1.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave1.anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <<set _slave1.anus = 1>> + <</if>> + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<else>> + <<set _randomOral = random(15,20)>> + <<set _slave1.oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif _slave1.relationship == 3>> + fucking $his lover, $slaves[_m].slaveName, as often as possible while ignoring you. + <<if !isAvailable(_slave1)>> + Or $he would have, if $he were able. + <<elseif !isSlaveAvailable($slaves[_m])>> + Or $he would have, if _he2 were around. + <<elseif canDoVaginal(_slave1) && canDoAnal(_slave1)>> + <<set _randomVag = random(3,7)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave1.vaginalCount += _randomVag, _slave1.analCount += _randomAnal, _slave1.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave1.vagina == 0 && _slave1.anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <<set _slave1.vagina = 1, _slave1.anus = 1>> + <</if>> + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoVaginal(_slave1)>> + <<set _randomVag = random(3,7)>> + <<set _randomOral = random(5,10)>> + <<set _slave1.vaginalCount += _randomVag, _slave1.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + <<if _slave1.vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <<set _slave1.vagina = 1>> + <</if>> + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoAnal(_slave1)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave1.analCount += _randomAnal, _slave1.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave1.anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <<set _slave1.anus = 1>> + <</if>> + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<else>> + <<set _randomOral = random(15,20)>> + <<set _slave1.oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif _slave1.relationship > 0>> + spending time away from you with $slaves[_m].slaveName. + <<else>> + inappropriately planning redecorations. + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + desperately pleading with you to change your mind. + <<elseif _slave1.relationship == 4>> + with $his love, $slaves[_m].slaveName, weeping. + <<elseif _slave1.relationship == 3>> + with $his lover, $slaves[_m].slaveName, weeping. + <<elseif _slave1.relationship > 0>> + with $his friend, $slaves[_m].slaveName, weeping. + <<else>> + desperately pleading with you to change your mind. + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + trying $his hardest to not sleep with anyone else. + <<elseif _slave1.relationship == 4>> + alongside $his love, $slaves[_m].slaveName. + <<if canDoVaginal(_slave1) && _slave1.vagina != 0>> + <<set _slave1.vaginalCount += 1, $vaginalTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time. + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave1.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoAnal(_slave1)>> + <<set _slave1.analCount += 1, $analTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time. + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave1.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<else>> + <<set _slave1.oralCount += 1, $oralTotal += 1>> + $He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>. + <</if>> + <<elseif _slave1.relationship == 3>> + alongside $his lover, $slaves[_m].slaveName. + <<if canDoVaginal(_slave1) && _slave1.vagina != 0>> + <<set _slave1.vaginalCount += 1, $vaginalTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time. + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave1.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<elseif canDoAnal(_slave1)>> + <<set _slave1.analCount += 1, $analTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time. + <<if canImpreg(_slave1, $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave1.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1, _slave1.pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, _slave1.pregSource, _slave1.preg)>> + <</if>> + <<else>> + <<set _slave1.oralCount += 1, $oralTotal += 1>> + $He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>. + <</if>> + <<elseif _slave1.relationship > 0>> + with $his friend, $slaves[_m].slaveName. + <<else>> + wearing a very conflicted expression. + <</if>> + + _slave2.slaveName, meanwhile, spent $his time + <<set _n = $slaveIndices[_slave2.relationshipTarget]>> + <<set _slave2.relationshipTarget = 0>> + <<set $slaves[_n].relationship = 0, $slaves[_n].relationshipTarget = 0>> + <</if>> + <<if _slave2.devotion+_slave2.trust >= 175>> + <<if _slave2.relationship != 0>> + <<if _slave2.relationship == -1>> + vowing that $he'll be less of a slut. + <<elseif _slave2.relationship == 4>> + breaking up with $his lover, $slaves[_n].slaveName, as painlessly as possible. + <<elseif _slave2.relationship == 3>> + breaking up with $his FWB, $slaves[_n].slaveName, as painlessly as possible. + <<elseif _slave2.relationship > 0>> + promising $slaves[_n].slaveName that they'll still be friends, even if they can't spend time together. + <<else>> + as close to you as $he could. + <</if>> + <</if>> + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + <<if _slave2.relationship == -1>> + sleeping with as many different people as $he could. + <<if !isSlaveAvailable(_slave2)>> + Or $he would have, if $he were able. + <<elseif canDoVaginal(_slave2) && canDoAnal(_slave2)>> + <<set _randomVag = random(30,60)>> + <<set _randomAnal = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set _slave2.vaginalCount += _randomVag, _slave2.analCount += _randomAnal, _slave2.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed holes. + <<if _slave2.vagina == 0 && _slave2.anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <</if>> + <<if _slave2.vagina < 4>><<set _slave2.vagina = 4>><</if>><<set _slave2.anus = 4>> + <<if canGetPregnant(_slave2) && (random(1,100) > 70) && _slave2.eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoVaginal(_slave2)>> + <<set _randomVag = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set _slave2.vaginalCount += _randomVag, _slave2.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed cunt. + <<if _slave2.vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <</if>> + <<if _slave2.vagina < 4>><<set _slave2.vagina = 4>><</if>> + <<if canGetPregnant(_slave2) && (random(1,100) > 70) && _slave2.eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoAnal(_slave2)>> + <<set _randomAnal = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set _slave2.analCount += _randomAnal, _slave2.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed anus. + <<if _slave2.anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <</if>> + <<set _slave2.anus = 4>> + <<if canGetPregnant(_slave2) && (random(1,100) > 70) && _slave2.eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<else>> + <<set _randomOral = random(60,100)>> + <<set _slave2.oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from sucking down so much sexual fluid. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif _slave2.relationship == 4>> + fucking $his love, $slaves[_n].slaveName, as often as possible while ignoring you. + <<if !isSlaveAvailable(_slave2)>> + Or $he would have, if $he were able. + <<elseif !isSlaveAvailable($slaves[_n])>> + Or $he would have, if _he2 were around. + <<elseif canDoVaginal(_slave2) && canDoAnal(_slave2)>> + <<set _randomVag = random(3,7)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave2.vaginalCount += _randomVag, _slave2.analCount += _randomAnal, _slave2.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave2.vagina == 0 && _slave2.anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <<set _slave2.vagina = 1, _slave2.anus = 1>> + <</if>> + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoVaginal(_slave2)>> + <<set _randomVag = random(3,7)>> + <<set _randomOral = random(5,10)>> + <<set _slave2.vaginalCount += _randomVag, _slave2.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + <<if _slave2.vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <<set _slave2.vagina = 1>> + <</if>> + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoAnal(_slave2)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave2.analCount += _randomAnal, _slave2.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave2.anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <<set _slave2.anus = 1>> + <</if>> + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<else>> + <<set _randomOral = random(15,20)>> + <<set _slave2.oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from going down on $slaves[_n].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif _slave2.relationship == 3>> + fucking $his lover, $slaves[_n].slaveName, as often as possible while ignoring you. + <<if !isAvailable(_slave2)>> + Or $he would have, if $he were able. + <<elseif !isSlaveAvailable($slaves[_n])>> + Or $he would have, if _he2 were around. + <<elseif canDoVaginal(_slave2) && canDoAnal(_slave2)>> + <<set _randomVag = random(3,7)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave2.vaginalCount += _randomVag, _slave2.analCount += _randomAnal, _slave2.oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave2.vagina == 0 && _slave2.anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <<set _slave2.vagina = 1, _slave2.anus = 1>> + <</if>> + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoVaginal(_slave2)>> + <<set _randomVag = random(3,7)>> + <<set _randomOral = random(5,10)>> + <<set _slave2.vaginalCount += _randomVag, _slave2.oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + <<if _slave2.vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <<set _slave2.vagina = 1>> + <</if>> + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoAnal(_slave2)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set _slave2.analCount += _randomAnal, _slave2.oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if _slave2.anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <<set _slave2.anus = 1>> + <</if>> + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<else>> + <<set _randomOral = random(15,20)>> + <<set _slave2.oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from going down on $slaves[_n].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif _slave2.relationship > 0>> + spending time away from you with $slaves[_n].slaveName. + <<else>> + inappropriately planning redecorations. + <</if>> + <<elseif _slave2.devotion < -20>> + <<if _slave2.relationship == -1>> + desperately pleading with you to change your mind. + <<elseif _slave2.relationship == 4>> + with $his love, $slaves[_n].slaveName, weeping. + <<elseif _slave2.relationship == 3>> + with $his lover, $slaves[_n].slaveName, weeping. + <<elseif _slave2.relationship > 0>> + with $his friend, $slaves[_n].slaveName, weeping. + <<else>> + desperately pleading with you to change your mind. + <</if>> + <<else>> + <<if _slave2.relationship == -1>> + trying $his hardest to not sleep with anyone else. + <<elseif _slave2.relationship == 4>> + alongside $his love, $slaves[_n].slaveName. + <<if canDoVaginal(_slave2) && _slave2.vagina != 0>> + <<set _slave2.vaginalCount += 1, $vaginalTotal += 1>> + $He later lets you know $he let $slaves[_n].slaveName enjoy $his pussy one last time. + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave2.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount++, $penetrativeTotal++>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoAnal(_slave2)>> + <<set _slave2.analCount += 1, $analTotal += 1>> + $He later lets you know $he let $slaves[_n].slaveName enjoy $his butt one last time. + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave2.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount++, $penetrativeTotal++>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<else>> + <<set _slave2.oralCount += 1, $oralTotal += 1>> + $He later tells you $he gave $slaves[_n].slaveName <<if $slaves[_n].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_n])>>cunnilingus one last time<<else>>oral one last time<</if>>. + <</if>> + <<elseif _slave2.relationship == 3>> + alongside $his lover, $slaves[_n].slaveName. + <<if canDoVaginal(_slave2) && _slave2.vagina != 0>> + <<set _slave2.vaginalCount += 1, $vaginalTotal += 1>> + $He later lets you know $he let $slaves[_n].slaveName enjoy $his pussy one last time. + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave2.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount++, $penetrativeTotal++>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<elseif canDoAnal(_slave2)>> + <<set _slave2.analCount += 1, $analTotal += 1>> + $He later lets you know $he let $slaves[_n].slaveName enjoy $his butt one last time. + <<if canImpreg(_slave2, $slaves[_n]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals _slave2.slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1, _slave2.pregSource = $slaves[_n].ID, $slaves[_n].penetrativeCount++, $penetrativeTotal++>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, _slave2.pregSource, _slave2.preg)>> + <</if>> + <<else>> + <<set _slave2.oralCount += 1, $oralTotal += 1>> + $He later tells you $he gave $slaves[_n].slaveName <<if $slaves[_n].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_n])>>cunnilingus one last time<<else>>oral one last time<</if>>. + <</if>> + <<elseif _slave2.relationship > 0>> + with $his friend, $slaves[_n].slaveName. + <<else>> + wearing a very conflicted expression. + <</if>> + <</if>> + <</if>> + <</if>> +<</if>> + +<<set _pregWedding = 2>> +<<if (!isFertile(_slave1)) || ((!isFertile(_slave2))) && $weddingPlanned == 3>> + <<if (!isFertile(_slave1))>> + <<set _pregWedding = 0>> + <<else>> + <<set _pregWedding = 1>> + <</if>> + <<if (!isFertile(_slave2))>> + <<set _pregWedding = 0>> + <<else>> + <<set _pregWedding = 1>> + <</if>> +<</if>> + +<<if _pregWedding < 2>> + <<if _pregWedding == 1>>One of your<<else>>Your<</if>> slaves can no longer be impregnated as planned for the ceremony, so it has been hurriedly recast as a normal slave wedding. + <<set $weddingPlanned = 1>> + <br><br> +<</if>> + +<<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>> + <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 + + <<if (_slave1.vagina == 0 && _slave2.vagina == 0) || (_slave1.pregKnown == 1 && _slave2.pregKnown == 1) || ((_slave1.vagina < 0 && _slave1.anus == 0) && (_slave2.vagina < 0 && _slave2.anus == 0)) || ((_slave1.vagina < 0 && _slave1.boobs > 500) && (_slave2.vagina < 0 && _slave2.boobs > 500)) || (_slave1.vagina < 0 && _slave2.vagina < 0) || (_slave1.dick > 0 && _slave2.dick > 0) || ((_slave1.vagina > 0 || _slave1.anus > 0) && (_slave2.vagina > 0 || _slave2.anus > 0))>> + <<if (_slave1.vagina == 0)>> + white, since both slaves are virgins. + <<elseif (_slave1.pregKnown == 1)>> + light pink, since both slaves are pregnant. + <<elseif (_slave1.vagina < 0) && (_slave1.anus == 0)>> + white, since both slaves are anal virgins. + <<elseif (_slave1.vagina < 0) && (_slave1.boobs > 500)>> + electric blue, since both slaves are shemales. + <<elseif (_slave1.vagina < 0)>> + pale blue, since both slaves are sissies. + <<elseif (_slave1.dick > 0)>> + hot pink, since both slaves are futas. + <<else>> + light pink, since both slaves are experienced sex slaves. + <</if>> + <<else>> + <<if (_slave1.vagina == 0)>> + white, since _slave1.slaveName's a virgin + <<elseif (_slave1.pregKnown == 1)>> + light pink, since _slave1.slaveName's pregnant + <<elseif (_slave1.vagina < 0) && (_slave1.anus == 0)>> + white, since _slave1.slaveName's an anal virgin + <<elseif (_slave1.vagina < 0) && (_slave1.boobs > 500)>> + electric blue, since _slave1.slaveName's a shemale + <<elseif (_slave1.vagina < 0)>> + pale blue, since _slave1.slaveName's a sissy slave + <<elseif (_slave1.dick > 0)>> + hot pink, since _slave1.slaveName's a futa slave + <<else>> + light pink, since _slave1.slaveName's an experienced sex slave + <</if>> + and + <<if (_slave2.vagina == 0)>> + white, since _slave2.slaveName's a virgin. + <<elseif (_slave2.pregKnown == 1)>> + light pink, since _slave2.slaveName's pregnant. + <<elseif (_slave2.vagina < 0) && (_slave2.anus == 0)>> + white, since _slave2.slaveName's an anal virgin. + <<elseif (_slave2.vagina < 0) && (_slave2.boobs > 500)>> + electric blue, since _slave2.slaveName's a shemale. + <<elseif (_slave2.vagina < 0)>> + pale blue, since _slave2.slaveName's a sissy slave. + <<elseif (_slave2.dick > 0)>> + hot pink, since _slave2.slaveName's a futa slave. + <<else>> + light pink, since _slave2.slaveName's an experienced sex slave. + <</if>> + <</if>> + + A filmy veil cover their heads and shoulders, and + <<if (_slave1.boobs > 4000 && _slave2.boobs > 4000) || (_slave1.boobs > 1200 && _slave2.boobs > 1200) || (_slave1.boobs > 400 && _slave2.boobs > 400) || (_slave1.boobs <= 400 && _slave2.boobs <= 400)>> + their lacy bridal bras + <<if (_slave1.boobs > 4000)>> + are a marvel of engineering, discreetly reinforced to support their gigantic udders. + <<elseif (_slave1.boobs > 1200)>> + just barely restrain their huge boobs, leaving the tops of their areolae visible. + <<elseif (_slave1.boobs > 400)>> + flatter their pretty breasts. + <<else>> + flatter their pretty chests. + <</if>> + <<else>> + _slave1.slaveName's lacy bridal bra + <<if (_slave1.boobs > 4000)>> + is a marvel of engineering, discreetly reinforced to support $his gigantic udders, + <<elseif (_slave1.boobs > 1200)>> + just barely restrains $his huge boobs, leaving the tops of $his areolae visible, + <<elseif (_slave1.boobs > 400)>> + flatters $his pretty breasts, + <<else>> + flatters $his pretty chest, + <</if>> + while _slave2.slaveName's bra + <<if (_slave1.boobs > 4000)>> + is a marvel of engineering, discreetly reinforced to support _his2 gigantic udders. + <<elseif (_slave1.boobs > 1200)>> + just barely restrains _his2 huge boobs, leaving the tops of _his2 areolae visible. + <<elseif (_slave1.boobs > 400)>> + flatters _his2 pretty breasts. + <<else>> + flatters _his2 pretty chest. + <</if>> + <</if>> + + <<if ((_slave1.bellyPreg >= 600000) && (_slave2.bellyPreg >= 600000)) || ((_slave1.bellyPreg >= 1500) && (_slave2.bellyPreg >= 1500)) || ((_slave1.bellyImplant >= 1500) && (_slave2.bellyImplant >= 1500)) || ((_slave1.bellyFluid >= 10000) || (_slave2.bellyFluid >= 10000)) || ((_slave1.bellyFluid >= 5000) && (_slave2.bellyFluid >= 5000)) || ((_slave1.bellyFluid >= 1500) && (_slave2.bellyFluid >= 1500))>> + <<if _slave1.bellyPreg >= 600000>> + Their expansive, squirming pregnant bellies make their bridal wear particularly obscene. + <<elseif (_slave1.bellyPreg >= 1500)>> + Their _belly pregnant bellies protrude out the front of their bridal wear. + <<elseif (_slave1.bellyImplant >= 1500)>> + Their _belly <<print _slave1.bellyImplant>>cc bellies implant protrude their middle out the front of their bridal wear. + <<elseif (_slave1.bellyFluid >= 10000)>> + Their hugely bloated, <<print _slave1.inflationType>>-filled bellies protrude out the front of their bridal wear. + <<elseif (_slave1.bellyFluid >= 5000)>> + Their bloated, <<print _slave1.inflationType>>-stuffed bellies protrude out the front of their bridal wear. + <<elseif (_slave1.bellyFluid >= 1500)>> + Their distended, <<print _slave1.inflationType>>-bellies protrude out the front of their bridal wear. + <</if>> + <<else>> + <<if (_slave1.bellyPreg >= 600000) || (_slave1.bellyPreg >= 1500) || (_slave1.bellyImplant >= 1500) || (_slave1.bellyFluid >= 10000) || (_slave2.bellyFluid >= 10000) || (_slave1.bellyFluid >= 5000) || (_slave1.bellyFluid >= 1500)>> + <<set _slave1Belly = 1>> + <<if _slave1.bellyPreg >= 600000>> + _slave1.slaveName's expansive, squirming pregnant belly makes $his bridal wear particularly obscene, + <<elseif (_slave1.bellyPreg >= 1500)>> + _slave1.slaveName's _belly pregnant belly protrudes out the front of $his bridal wear, + <<elseif (_slave1.bellyImplant >= 1500)>> + _slave1.slaveName's _belly <<print _slave1.bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear, + <<elseif (_slave1.bellyFluid >= 10000)>> + _slave1.slaveName's hugely bloated, <<print _slave1.inflationType>>-filled belly protrudes out the front of $his bridal wear, + <<elseif (_slave1.bellyFluid >= 5000)>> + _slave1.slaveName's bloated, <<print _slave1.inflationType>>-stuffed belly protrudes out the front of $his bridal wear, + <<elseif (_slave1.bellyFluid >= 1500)>> + _slave1.slaveName's distended, <<print _slave1.inflationType>>-belly protrudes out the front of $his bridal wear, + <</if>> + <</if>> + <<if _slave1Belly == 1 && ((_slave2.bellyPreg >= 600000) || (_slave2.bellyPreg >= 1500) || (_slave2.bellyImplant >= 1500) || (_slave2.bellyFluid >= 10000) || (_slave2.bellyFluid >= 10000) || (_slave2.bellyFluid >= 5000) || (_slave2.bellyFluid >= 1500))>> + while + <</if>> + <<if _slave2.bellyPreg >= 600000>> + _slave2.slaveName's expansive, squirming pregnant belly makes _his2 bridal wear particularly obscene. + <<elseif (_slave2.bellyPreg >= 1500)>> + _slave2.slaveName's _belly2 pregnant belly protrudes out the front of _his2 bridal wear. + <<elseif (_slave2.bellyImplant >= 1500)>> + _slave2.slaveName's _belly2 <<print _slave2.bellyImplant>>cc belly implant protrudes _his2 middle out the front of _his2 bridal wear. + <<elseif (_slave2.bellyFluid >= 10000)>> + _slave2.slaveName's hugely bloated, <<print _slave2.inflationType>>-filled belly protrudes out the front of _his2 bridal wear. + <<elseif (_slave2.bellyFluid >= 5000)>> + _slave2.slaveName's bloated, <<print _slave2.inflationType>>-stuffed belly protrudes out the front of _his2 bridal wear. + <<elseif (_slave2.bellyFluid >= 1500)>> + _slave2.slaveName's distended, <<print _slave2.inflationType>>-belly protrudes out the front of _his2 bridal wear. + <</if>> + <</if>> + + <<if ((_slave1.dickAccessory == ("chastity") || _slave1.dickAccessory == ("combined chastity")) && (_slave2.dickAccessory == "chastity") || _slave2.dickAccessory == ("combined chastity")) || (canAchieveErection(_slave1) && canAchieveErection(_slave2)) || ((_slave1.dick > 0) && (_slave2.dick > 0)) || ((_slave1.clit > 1 && _slave2.clit > 1)) || ((_slave1.clit <= 1) && (_slave2.clit <= 1))>> + <<if _slave1.dickAccessory == ("chastity") || _slave1.dickAccessory == ("combined chastity")>> + Their slave dicks are hidden by their chastity cages. + <<elseif canAchieveErection(_slave1)>> + <<if (_slave1.dick > 4) && (_slave1.belly >= 5000)>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if _slave1.bellyPreg >= 3000>>pregnant <</if>>belly. + <<elseif _slave1.dick > 4>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. + <<else>> + _slave1.slaveName's erection tents the front of $his lacy g-string. + <</if>> + <<elseif (_slave1.dick > 0)>> + <<if (_slave1.dick > 10) && (_slave2.dick > 10)>> + Their huge soft cocks are allowed to dangle freely as no g-string could hope to contain them. + <<elseif (_slave1.dick > 4) && (_slave2.dick > 4)>> + Their big soft cocks forms a lewd mass, stuffed into their lacy g-strings. + <<elseif (_slave1.dick <= 3) && (_slave2.dick <= 3)>> + Their lacy g-strings perfectly conceals their soft dick. + <<else>> + <<if (_slave1.dick > 10)>> + _slave1.slaveName's huge soft cock dangles free as no g-string could hope to contain it, + <<elseif (_slave1.dick > 4)>> + _slave1.slaveName's big soft cock forms a lewd mass, stuffed into $his lacy g-string, + <<else>> + _slave1.slaveName's lacy g-string perfectly conceals $his soft dick, + <</if>> + while + <<if (_slave2.dick > 10)>> + _slave2.slaveName's huge soft cock dangles free as no g-string could hope to contain it. + <<elseif (_slave2.dick > 4)>> + _slave2.slaveName's big soft cock forms a lewd mass, stuffed into _his2 lacy g-string. + <<else>> + _slave2.slaveName's lacy g-string perfectly conceals _his2 soft dick. + <</if>> + <</if>> + <<else>> + <<if _slave1.clit > 1>> + Their huge clits are quite hard, making them shift uncomfortably as their lacy g-strings stimulate them. + <<else>> + Their lacy g-strings cover their womanhoods demurely. + <</if>> + <</if>> + <<else>> + <<if _slave1.dickAccessory == ("chastity") || _slave1.dickAccessory == ("combined chastity")>> + _slave1's slave dick is hidden by its chastity cage, + <<elseif canAchieveErection(_slave1)>> + <<if (_slave1.dick > 4) && (_slave1.belly >= 5000)>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if _slave1.bellyPreg >= 3000>>pregnant <</if>>belly, + <<elseif _slave1.dick > 4>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly, + <<else>> + _slave1.slaveName's erection tents the front of $his lacy g-string, + <</if>> + <<elseif (_slave1.dick > 0)>> + <<if _slave1.dick > 10>> + _slave1.slaveName's huge soft cock is allowed to dangle freely as no g-string could hope to contain it, + <<elseif _slave1.dick > 4>> + _slave1.slaveName's big soft cock forms a lewd mass, stuffed into $his lacy g-string, + <<else>> + _slave1.slaveName's lacy g-string perfectly conceals $his soft dick, + <</if>> + <<else>> + <<if _slave1.clit > 1>> + _slave1.slaveName's huge clit is quite hard, making $his shift uncomfortably as $his lacy g-string stimulates it, + <<else>> + _slave1.slaveName's lacy g-string covers $his womanhood demurely, + <</if>> + <</if>> + whereas + <<if _slave2.dickAccessory == ("chastity") || _slave2.dickAccessory == ("combined chastity")>> + _slave2.slaveName' slave dick is hidden by its chastity cage. + <<elseif canAchieveErection(_slave2)>> + <<if (_slave2.dick > 4) && (_slave2.belly >= 5000)>> + _slave2.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly2 <<if _slave2.bellyPreg >= 3000>>pregnant <</if>>belly. + <<elseif _slave2.dick > 4>> + _slave2.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. + <<else>> + _slave2.slaveName' erection tents the front of $his lacy g-string. + <</if>> + <<elseif (_slave2.dick > 0)>> + <<if _slave2.dick > 10>> + _slave2.slaveName' huge soft cock is allowed to dangle freely as no g-string could hope to contain it. + <<elseif _slave2.dick > 4>> + _slave2.slaveName' big soft cock forms a lewd mass, stuffed into $his lacy g-string. + <<else>> + _slave2.slaveName' lacy g-string perfectly conceals $his soft dick. + <</if>> + <<else>> + <<if _slave2.clit > 1>> + _slave2.slaveName' huge clit is quite hard, making $his shift uncomfortably as $his lacy g-string stimulates it. + <<else>> + _slave2.slaveName' lacy g-string covers $his womanhood demurely. + <</if>> + <</if>> + <</if>> + + There is no aisle for them to <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>walk alongside the slaves carrying<<else>>walk<</if>> them there; this symbolizes their submission to you + + <<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">> + despite the fact that both slaves had to be pushed into walking towards you. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + of both slaves' own choice, and they do so with smiles. + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + of both slaves' own choice, and they do so with hesitation. + <<elseif _slave1.devotion < -20>> + of both slaves' own (forced) choice, and they do so with wavering steps. + <<else>> + of both slaves' own choice, and they do so willingly. + <</if>> + <<else>> + <<if _slave1.fetish == "mindbroken">> + despite the fact that _slave1.slaveName had to be pushed into walking towards you, + <<elseif _slave1.devotion+_slave1.trust >= 175>> + of _slave1.slaveName's own choice, and $he does so with a smile, + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + of _slave1.slaveName's own choice, and $he does so with hesitation, + <<elseif _slave1.devotion < -20>> + of _slave1.slaveName's own (forced) choice, and $he does so with wavering steps, + <<else>> + of _slave1.slaveName's own choice, and $he does so willingly, + <</if>> + while _slave2.slaveName + <<if _slave2.fetish == "mindbroken">> + has to be pushed into walking towards you. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + does this of $his own choice, and $he does so with a smile. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + does this of $his own choice, and $he does so with hesitation. + <<elseif _slave2.devotion < -20>> + does this of $his own (forced) choice, and $he does so with wavering steps. + <<else>> + does this of $his own choice, and $he does so willingly. + <</if>> + <</if>> + + <br><br> + When they're in front of you, + + <<if (_slave1.amp == 1 && _slave2.amp == 1)>> + the slaves carrying their limbless torsos set them down on the floor and prop them up so their heads are level with your crotch, + <<elseif ((_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">> + you push them onto their knees so their heads + <<elseif _slave1.devotion+_slave1.trust >= 175>> + they happily get down on their knees so their heads + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + they slowly lower themselves onto their knees so their heads + <<elseif _slave1.devotion < -20>> + they quickly lower themselves onto their knees so their tear-streaked faces + <<else>> + they get down on their knees so their heads + <</if>> + are level with your crotch. + <<else>> + <<if _slave1.amp == 1>> + the slave carrying _slave1.slaveName's limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch, + <<else>> + <<if _slave1.fetish == "mindbroken">> + you push _slave1.slaveName onto $his knees so $his head + <<elseif _slave1.devotion+_slave1.trust >= 175>> + _slave1.slaveName happily gets down on $his knees so $his head + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + $he slowly lowers $himself onto $his knees so $his head + <<elseif _slave1.devotion < -20>> + $he quickly lowers $himself onto $his knees so $his tear-streaked face + <<else>> + $he gets down on $his knees so $his head + <</if>> + is level with your crotch, + <</if>> + and + <<if _slave2.amp == 1>> + the slave carrying _slave2.slaveName's limbless torso sets _him2 down on the floor in front of you and props _him2 up so _his2 head is level with your crotch. + <<else>> + <<if _slave2.fetish == "mindbroken">> + you push _him2 onto _his2 knees so _his2 head + <<elseif _slave2.devotion+_slave2.trust >= 175>> + _he2 happily gets down on _his2 knees so _his2 head + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + _he2 slowly lowers _himself2 onto _his2 knees so _his2 head + <<elseif _slave2.devotion < -20>> + _he2 quickly lowers _himself2 onto _his2 knees so _his2 tear-streaked face + <<else>> + _he2 gets down on _his2 knees so _his2 head + <</if>> + is level with your crotch. + <</if>> + <</if>> + + <<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 $he 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 $he 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> + <<if $PC.surname && _slave1.slaveSurname != $PC.surname>> + <br><br><span id="surnaming"> + <<link "Give them both your surname too">> + <<replace "#surnaming">> + <<set _slave1.slaveSurname = $PC.surname, _slave2.slaveSurname = $PC.surname>> + You also proclaim your new slave wives _slave1.slaveName and _slave2.slaveName $PC.surname. + The new Mrs. <<print $PC.surname>>s hear this, of course, and + <<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 && _slave1.devotion >= -20)>> + <<if _slave1.fetish == "mindbroken">> + show no reaction. Like many things, names mean nothing to them now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + break down again. Not only are they to be blessed with your children, but they're to take your surname as well. + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + scoff audibly. Just another burden for them to carry; like the child soon to be growing in their wombs. + <<elseif _slave1.devotion < -20>> + break down again. Not only are you binding them to you with your children, but with your name as well. + <<else>> + nod acceptingly. Your will is their will, after all. + <</if>> + <<else>> + <<if _slave2.fetish == "mindbroken">> + _slave1.slaveName shows no reaction. Like many things, names mean nothing to _him2 now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + _slave1.slaveName breaks down again. Not only is _he2 to be blessed with your child, but _he2's to take your surname as well. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + _slave1.slaveName scoffs audibly. Just another burden for _him2 to carry; like the child soon to be growing in _his2 womb. + <<elseif _slave2.devotion < -20>> + _slave1.slaveName breaks down again. Not only are you binding _him2 to you with your child, but with your name as well. + <<else>> + _slave1.slaveName nods acceptingly. Your will is _his2 will, after all. + <</if>> + _slave2.slaveName, meanwhile, + <<if _slave2.fetish == "mindbroken">> + shows no reaction. Like many things, names mean nothing to _him2 now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + breaks down again. Not only is _he2 to be blessed with your child, but _he2's to take your surname as well. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + scoffs audibly. Just another burden for _him2 to carry; like the child soon to be growing in _his2 womb. + <<elseif _slave2.devotion < -20>> + breaks down again. Not only are you binding _him2 to you with your child, but with your name as well. + <<else>> + nods acceptingly. Your will is _his2 will, after all. + <</if>> + <</if>> + <</replace>> + <</link>> + </span> + <</if>> + <br><br> + + <<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">> + Both slaves are mindbroken, so you gather them up and hold them in front of you, pulling their panties off as you do. They follows your motions like ragdolls. You maneuver your dick inside _slave1.slaveName first while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knees up to give your guests a good view as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You pull _him2 in, pushing your dick into _his2 <<if (_slave2.mpreg == 1 && _slave2.anus == 0) || (_slave2.vagina == 0)>>virgin <<elseif (_slave2.mpreg == 1 && _slave2.anus == 1) || (_slave2.vagina == 1)>>tight <</if>><<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. $He doesn't respond, and _his2 reaction when you fill _his2 <<if _slave2.mpreg>>ass<<else>>pussy<</if>> with more jizz to @@.green;more applause from your guests@@ is entirely mechanical. You'll fuck them repeatedly over the next few days, ensuring impregnation. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + Then, you <<if _slave1.amp == 1>>gather _slave1.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 their feet while $he shimmies out of $his panties. $He cocks their hips for you and you slide your cock inside $him before taking $his knees and drawing $him up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly 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, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself 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 and <<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.@@ This cemented the idea that @@.mediumaquamarine;$he's also special to you@@ in _his2 mind. You'll fuck them repeatedly over the next few days, ensuring impregnation. + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + The slaves 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 tear up 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, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You've already moved on to _slave2.slaveName, however. _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 efforts to defy you. + <<elseif _slave1.devotion < -20>> + The <<if _slave1.genes == "XX" && _slave2.genes == "XX">>girls<<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. + <</if>> + <<else>> + <<if _slave1.fetish == "mindbroken">> + _slave1.slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. 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>>. Then you pull $his knees up to give your guests a good view as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ + <<elseif _slave1.devotion+_slave1.trust >= 175>> + Then, 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>>. $He is left to face your guests, watching raptly 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, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ + <<elseif _slave1.devotion < -20 && _slave1.trust > 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 tear up 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, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. + <<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.@@ + <</if>> + Then, you turn your attention to _slave2.slaveName. + <<if _slave2.fetish == "mindbroken">> + _He2 is mindbroken, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 follows your motions like a ragdoll. 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>>. Then you pull _his2 knees up to give your guests a good view as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. _He2 is left to face them, staring off into space. Though _he2 faces the crowd, _his2 mind is empty; this might as well be any other fucking to _him2. _He2 twitches ever so slightly when your seed flows into _him2, orgasming robotically to @@.green;more applause from your guests.@@ + <<elseif _slave2.devotion+_slave2.trust >= 175>> + Then, 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>>. _He2 is left to face your guests, watching raptly 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, it's @@.mediumaquamarine;concrete proof that _he2's special to you.@@ _He2 gasps when your seed flows into _him2, orgasming _him2self to @@.green;more applause from your guests.@@ + <<elseif _slave2.devotion < -20 && _slave2.trust > 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 tear up 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, faking an orgasm to @@.green;more applause from your guests.@@ At this, _he2 shoots you a dirty look, blaming you for this indignity. + <<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.@@ + <</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>> + <<set _slave1.preg = 1, _slave1.pregKnown = 1, _slave1.pregWeek = 1>> + <<set _slave1.pregType = setPregType(_slave1)>> + <<set WombImpregnate(_slave1, _slave1.pregType, -1, _slave1.preg)>> + <<set _slave1.pregSource = -1>> + <<set _slave2.preg = 1, _slave2.pregKnown = 1, _slave2.pregWeek = 1>> + <<set _slave2.pregType = setPregType(_slave2)>> + <<set WombImpregnate(_slave2, _slave2.pregType, -1, _slave2.preg)>> + <<set _slave2.pregSource = -1>> + <<if ((_slave1.vagina == 0) || (_slave1.mpreg == 1 && _slave1.anus == 0)) && ((_slave2.vagina == 0) || (_slave2.mpreg == 1 && _slave2.anus == 0))>> + Naturally, the ceremony @@.lime;took their virginities;@@ + <<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")>> + they didn't notice. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + they were very happy @@.hotpink;their first time was with you and so special.@@ + <<set _slave1.devotion += 5, _slave2.devotion += 5>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + they were @@.mediumorchid;saving that for someone special.@@ + <<set _slave1.devotion -= 5, _slave2.devotion -= 5>> + <<elseif _slave1.devotion < -20>> + they wept at the sight of cum pooling from their @@.mediumorchid;defiled <<if _slave1.mpreg == 1>>assholes<<else>>pussies<</if>>.@@ + <<set _slave1.devotion -= 10, _slave2.devotion -= 10>> + <<else>> + they were glad you made it @@.hotpink;enjoyable@@ at least. + <<set _slave1.devotion += 2, _slave2.devotion += 2>> + <</if>> + <<else>> + <<if (_slave1.fetish == "mindbroken")>> + _slave1.slaveName didn't notice, + <<elseif _slave1.devotion+_slave1.trust >= 175>> + _slave1.slaveName was very happy @@.hotpink;$her first time was with you and so special,@@ + <<set _slave1.devotion += 5, _slave2.devotion += 5>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + _slave1.slaveName was @@.mediumorchid;saving that for someone special,@@ + <<set _slave1.devotion -= 5, _slave2.devotion -= 5>> + <<elseif _slave1.devotion < -20>> + _slave1.slaveName wept at the sight of cum pooling from $her @@.mediumorchid;defiled <<if _slave1.mpreg == 1>>asshole<<else>>pussy<</if>>,@@ + <<set _slave1.devotion -= 10, _slave2.devotion -= 10>> + <<else>> + _slave1.slaveName was glad you made it @@.hotpink;enjoyable@@ at least, + <<set _slave1.devotion += 2, _slave2.devotion += 2>> + <</if>> + while + <<if (_slave1.fetish == "mindbroken")>> + _slave1.slaveName didn't notice. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + _slave1.slaveName was very happy @@.hotpink;their first time was with you and so special.@@ + <<set _slave1.devotion += 5, _slave2.devotion += 5>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + _slave1.slaveName was @@.mediumorchid;saving that for someone special.@@ + <<set _slave1.devotion -= 5, _slave2.devotion -= 5>> + <<elseif _slave1.devotion < -20>> + _slave1.slaveName wept at the sight of cum pooling from _his2 @@.mediumorchid;defiled <<if _slave1.mpreg == 1>>asshole<<else>>pussy<</if>>.@@ + <<set _slave1.devotion -= 10, _slave2.devotion -= 10>> + <<else>> + _slave2.slaveName was glad you made it @@.hotpink;enjoyable@@ at least. + <<set _slave1.devotion += 2, _slave2.devotion += 2>> + <</if>> + <</if>> + <<if _slave1.mpreg == 1>><<set _slave1.anus = 1>><<else>><<set _slave1.vagina = 1>><</if>> + <<if _slave2.mpreg == 1>><<set _slave2.anus = 1>><<else>><<set _slave2.vagina = 1>><</if>> + <<elseif (_slave1.vagina == 0) || (_slave1.mpreg == 1 && _slave1.anus == 0)>> + Naturally, the ceremony @@.lime;took _slave1.slaveName's virginity;@@ + <<if _slave1.fetish == "mindbroken">> + $he didn't notice. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + $he was so happy @@.hotpink;$his first time was with you and so special.@@ + <<set _slave1.devotion += 5>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + $he was @@.mediumorchid;saving that for someone special.@@ + <<set _slave1.devotion -= 5>> + <<elseif _slave1.devotion < -20>> + $he wept at the sight of cum pooling from $his @@.mediumorchid;defiled <<if _slave1.mpreg == 1>>asshole<<else>>pussy<</if>>.@@ + <<set _slave1.devotion -= 10>> + <<else>> + you made it @@.hotpink;enjoyable@@ at least. + <<set _slave1.devotion += 2>> + <</if>> + <<if _slave1.mpreg == 1>><<set _slave1.anus = 1>><<else>><<set _slave1.vagina = 1>><</if>> + <<elseif (_slave2.vagina == 0) || (_slave2.mpreg == 1 && _slave2.anus == 0)>> + Naturally, the ceremony @@.lime;took _slave2.slaveName's virginity;@@ + <<if _slave2.fetish == "mindbroken">> + _he2 didn't notice. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + _he2 was so happy @@.hotpink;$his first time was with you and so special.@@ + <<set _slave2.devotion += 5>> + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + _he2 was @@.mediumorchid;saving that for someone special.@@ + <<set _slave2.devotion -= 5>> + <<elseif _slave2.devotion < -20>> + _he2 wept at the sight of cum pooling from $his @@.mediumorchid;defiled <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>.@@ + <<set _slave2.devotion -= 10>> + <<else>> + you made it @@.hotpink;enjoyable@@ at least. + <<set _slave2.devotion += 2>> + <</if>> + <<if _slave2.mpreg == 1>><<set _slave2.anus = 1>><<else>><<set _slave2.vagina = 1>><</if>> + <</if>> + + <<if ((_slave1.fetish == "pregnancy") && (_slave1.fetishStrength > 60)) && ((_slave2.fetish == "pregnancy") && (_slave2.fetishStrength > 60))>> + <<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">> + <<elseif _slave1.devotion+_slave1.trust >= 175>> + As pregnancy fetishists, @@.hotpink;they confidently believes this wedding will be the high point of $his life.@@ + <<set _slave1.devotion += 20>> + <<set _slave2.devotion += 20>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + As hateful pregnancy fetishists, @@.hotpink;getting pregnant was the best part of the ceremony.@@ + <<set _slave1.devotion += 1>> + <<set _slave2.devotion += 1>> + <<elseif _slave1.devotion < -20>> + As pregnancy fetishists, getting raped pregnant by someone they hate leave them with very mixed feelings. + <<else>> + As pregnancy fetishists, @@.hotpink;they thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@ + <<set _slave1.devotion += 10>> + <<set _slave2.devotion += 10>> + <</if>> + <<else>> + <<if _slave1.fetish == "mindbroken">> + <<elseif _slave1.devotion+_slave1.trust >= 175>> + As a pregnancy fetishist, @@.hotpink;_slave1.slaveName confidently believes this wedding will be the high point of $his life,@@ + <<set _slave1.devotion += 20>> + <<set _slave2.devotion += 20>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + As a hateful pregnancy fetishist, @@.hotpink;getting pregnant was the best part of the ceremony,@@ + <<set _slave1.devotion += 1>> + <<set _slave2.devotion += 1>> + <<elseif _slave1.devotion < -20>> + As a pregnancy fetishist, getting raped pregnant by someone _slave1.slaveName hate leave them with very mixed feelings, + <<else>> + As a pregnancy fetishist, @@.hotpink;_slave1.slaveName thoroughly enjoyed getting knocked up in such an ostentatious fashion,@@ + <<set _slave1.devotion += 10>> + <</if>> + whereas _slave2.slaveName, + <<if _slave2.fetish == "mindbroken">> + <<elseif _slave2.devotion+_slave2.trust >= 175>> + as a pregnancy fetishist, @@.hotpink;confidently believes this wedding will be the high point of _his2 life.@@ + <<set _slave2.devotion += 20>> + <<set _slave2.devotion += 20>> + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + as a hateful pregnancy fetishist, @@.hotpink;thought getting pregnant was the best part of the ceremony.@@ + <<set _slave2.devotion += 1>> + <<set _slave2.devotion += 1>> + <<elseif _slave2.devotion < -20>> + as a pregnancy fetishist, is left with very mixed feelings after being raped pregnant by someone they hate. + <<else>> + as a pregnancy fetishist, @@.hotpink;thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@ + <<set _slave2.devotion += 10>> + <</if>> + <</if>> + <<elseif (_slave1.fetish == "pregnancy") && (_slave1.fetishStrength > 60)>> + <<if _slave1.fetish == "mindbroken">> + <<elseif _slave1.devotion+_slave1.trust >= 175>> + As a pregnancy fetishist, @@.hotpink;_slave1.slaveName confidently believes this wedding will be the high point of $his life.@@ + <<set _slave1.devotion += 20>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + As a hateful pregnancy fetishist, @@.hotpink;getting pregnant was the best part of the ceremony@@ for _slave1.slaveName. + <<set _slave1.devotion += 1>> + <<elseif _slave1.devotion < -20>> + As a pregnancy fetishist, getting raped pregnant by someone _slave1.slaveName hates leaves $him with very mixed feelings. + <<else>> + As a pregnancy fetishist, @@.hotpink;_slave1.slaveName thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@ + <<set _slave1.devotion += 10>> + <</if>> + <<elseif (_slave2.fetish == "pregnancy") && (_slave2.fetishStrength > 60)>> + <<if _slave2.fetish == "mindbroken">> + <<elseif _slave2.devotion+_slave2.trust >= 175>> + As a pregnancy fetishist, @@.hotpink;_slave2.slaveName confidently believes this wedding will be the high point of _his2 life.@@ + <<set _slave2.devotion += 20>> + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + As a hateful pregnancy fetishist, @@.hotpink;getting pregnant was the best part of the ceremony@@ for _slave2.slaveName. + <<set _slave2.devotion += 1>> + <<elseif _slave2.devotion < -20>>{} + As a pregnancy fetishist, getting raped pregnant by someone _slave2.slaveName hates leaves _him2 with very mixed feelings. + <<else>> + As a pregnancy fetishist, @@.hotpink;_slave2.slaveName thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@ + <<set _slave2.devotion += 10>> + <</if>> + <</if>> + + <<if (_slave1.relationship != 0) && (_slave2.relationship != 0)>> + <<if _slave1.relationshipTarget == _slave2.ID>> + /* TODO: not sure about these */ + <<if ((_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.devotion+_slave1.trust >= 175>> + The fact that their relationship together now involves you @@.hotpink;excites them to no end.@@ + <<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.@@ + <<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.@@ + <<set _slave1.devotion += 5>> + <<set _slave2.devotion += 5>> + <</if>> + <<else>> + _slave1.slaveName + <<if _slave1.devotion+_slave1.trust >= 175>> + is excited by the fact that their relationship now involves you, and promises to try to get _slave2.slaveName to see you the same way $he does, + <<set _slave1.devotion += 10>> + <<elseif _slave1.devotion < -20>> + is convinced this is some sort of trick, + <<elseif _slave1.devotion >= -20>> + is only @@.hotpink;cautiously optimistic for their future together,@@ + <<set _slave1.devotion += 5>> + <</if>> + while _slave2.slaveName + <<if _slave2.devotion+_slave2.trust >= 175>> + is excited by the fact that their relationship now involves you, and promises to try to get _slave1.slaveName to see you the same way _he2 does. + <<set _slave2.devotion += 10>> + <<elseif _slave2.devotion < -20>> + is convinced this is some sort of trick. + <<elseif _slave2.devotion >= -20>> + is only @@.hotpink;cautiously optimistic for their future together.@@ + <<set _slave2.devotion += 5>> + <</if>> + <</if>> + <<else>> + <<if _slave1.relationship != 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>ex<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 50, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 30, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 15, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <<elseif _slave2.relationship != 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>ex<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 50, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 30, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 15, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <<else>> + @@.red;Error! DCoded doesn't know to code. Please report this.@@ + <</if>> + <</if>> + <<else>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>ex<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 50, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 30, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 15, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <</if>> + <<set _slave1.relationship = -3>> + <<if _slave1.mpreg == 1>><<set _slave1.analCount += 1, $analTotal += 1>><<else>><<set _slave1.vaginalCount += 1, $vaginalTotal += 1>><</if>> + <<set $rep += 500>> + <<if _slave1.fetish == "mindbroken">> + <<set $desc = "a framed shot of you impregnating the blank-faced " + _slave1.slaveName + " at your wedding">> + <<elseif _slave1.devotion+_slave1.trust >= 175>> + <<set $desc = "a framed shot of you impregnating the joyous " + _slave1.slaveName + " at your wedding">> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + <<set $desc = "a framed shot of you forcefully impregnating the disinterested " + _slave1.slaveName + " at your wedding">> + <<elseif _slave1.devotion < -20>> + <<set $desc = "a framed shot of you forcefully impregnating the tear soaked " + _slave1.slaveName + " at your wedding">> + <<else>> + <<set $desc = "a framed shot of you impregnating " + _slave1.slaveName + " at your wedding">> + <</if>> + <<set $trinkets.push($desc)>> + <<set _slave2.relationship = -3>> + <<if _slave2.mpreg == 1>><<set _slave2.analCount += 1, $analTotal += 1>><<else>><<set _slave2.vaginalCount += 1, $vaginalTotal += 1>><</if>> + <<set $rep += 500>> + <<if _slave2.fetish == "mindbroken">> + <<set $desc = "a framed shot of you impregnating the blank-faced " + _slave2.slaveName + " at your wedding">> + <<elseif _slave2.devotion+_slave2.trust >= 175>> + <<set $desc = "a framed shot of you impregnating the joyous " + _slave2.slaveName + " at your wedding">> + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + <<set $desc = "a framed shot of you forcefully impregnating the disinterested " + _slave2.slaveName + " at your wedding">> + <<elseif _slave2.devotion < -20>> + <<set $desc = "a framed shot of you forcefully impregnating the tear soaked " + _slave2.slaveName + " at your wedding">> + <<else>> + <<set $desc = "a framed shot of you impregnating " + _slave2.slaveName + " at your wedding">> + <</if>> + <<set $trinkets.push($desc)>> + <<if $arcologies[0].FSRestart != "unset" && (_slave1.breedingMark == 0 || $propOutcome == 0) && (_slave2.breedingMark == 0 || $propOutcome == 0) && $eugenicsFullControl != 1>> + You have @@.red;angered@@ the Societal Elite by this public showing of everything they stand against. + <<set $failedElite += 500>> + <<elseif $arcologies[0].FSRestart != "unset" && ((_slave1.breedingMark == 1) && (_slave2.breedingMark == 1))>> + The Societal Elite are @@.green;very pleased@@ with this public display of their values. /* TODO: not happy with this sentence */ + <</if>> + +<<elseif $weddingPlanned == 2>> + + The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave wives 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. + <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. + <<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. + <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. + <<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. + <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. + <<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. + <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. + <<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. + <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. + <</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. + <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. + <<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. + <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. + <<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. + <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. + <<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. + <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. + <<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. + <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. + <</if>> + _slave2.slaveName, meanwhile, + <<if _slave1.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 $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> + _He2 returns shortly, looking exhausted but otherwise uncaring. _He2'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. _He2 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. _He2 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>> + 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 $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> + _He2 returns shortly, looking exhausted but rather proud of _himself2 for getting through all that. _He2'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. _He2 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. _He2 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>> + 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 $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> + _He2 returns shortly, looking exhausted and annoyed. _He2'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. _He2 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. _He2 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. _He2 squirms slightly in $his sleep to the unwelcome feeling of your arm around $him. + <<elseif _slave1.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 $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> + _He2 returns shortly, looking exhausted and depressed. _He2'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. _He2 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. _He2 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>> + 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 $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> + _He2 returns shortly, looking exhausted. _He2'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. _He2 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. _He2 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>> + <</if>> + <br> + <<if $PC.surname && _slave1.slaveSurname != $PC.surname>> + <br><br><span id="surnaming"> + <<link "Give them both your surname too">> + <<replace "#surnaming">> + <<set _slave1.slaveSurname = $PC.surname, _slave2.slaveSurname = $PC.surname>> + You also proclaim your new slave wives _slave1.slaveName and _slave2.slaveName $PC.surname. + The new Mrs. <<print $PC.surname>>s hear this, of course, and + <<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)>> + <<if _slave1.fetish == "mindbroken">> + show no reaction. Like many things, names mean nothing to them now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + break down again. Not only are they to be blessed with your children, but they're to take your surname as well. + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + scoff audibly. Just another burden for them to carry; like the child soon to be growing in their wombs. + <<elseif _slave1.devotion < -20>> + break down again. Not only are you binding them to you with your children, but with your name as well. + <<else>> + nod acceptingly. Your will is their will, after all. + <</if>> + <<else>> + <<if _slave2.fetish == "mindbroken">> + _slave1.slaveName shows no reaction. Like many things, names mean nothing to _him2 now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + _slave1.slaveName breaks down again. Not only is _he2 to be blessed with your child, but _he2's to take your surname as well. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + _slave1.slaveName scoffs audibly. Just another burden for _him2 to carry; like the child soon to be growing in _his2 womb. + <<elseif _slave2.devotion < -20>> + _slave1.slaveName breaks down again. Not only are you binding _him2 to you with your child, but with your name as well. + <<else>> + _slave1.slaveName nods acceptingly. Your will is _his2 will, after all. + <</if>> + _slave2.slaveName, meanwhile, + <<if _slave2.fetish == "mindbroken">> + shows no reaction. Like many things, names mean nothing to _him2 now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + breaks down again. Not only is _he2 to be blessed with your child, but _he2's to take your surname as well. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + scoffs audibly. Just another burden for _him2 to carry; like the child soon to be growing in _his2 womb. + <<elseif _slave2.devotion < -20>> + breaks down again. Not only are you binding _him2 to you with your child, but with your name as well. + <<else>> + nods acceptingly. Your will is _his2 will, after all. + <</if>> + <</if>> + <</replace>> + <</link>> + </span> + <</if>> + <br><br> + <<if ndef _slave1.publicCount>> + <<set _slave1.publicCount = 0>> + <</if>> + <<if ndef _slave2.publicCount>> + <<set _slave2.publicCount = 0>> + <</if>> + <<if _slave1.vagina > 0>> + <<set _slave1.vaginalCount += 50>> + <<set $vaginalTotal += 50>> + <<set _slave1.publicCount += 50>> + <</if>> + <<if _slave2.vagina > 0>> + <<set _slave2.vaginalCount += 50>> + <<set $vaginalTotal += 50>> + <<set _slave2.publicCount += 50>> + <</if>> + <<if (_slave1.anus < 3) && (_slave2.anus < 3)>> + You can feel their asses, still somewhat gaped from their ordeals. They've been @@.lime;loosened@@ by their wedding party. + <<else>> + <<if _slave1.anus < 3>> + <<set _slave1.anus += 1>> + You can feel $his ass, still somewhat gaped from its ordeal. It's been @@.lime;loosened@@ by $his wedding party. + <</if>> + <<if _slave2.anus < 3>> + <<set _slave2.anus += 1>> + You can feel $his ass, still somewhat gaped from its ordeal. It's been @@.lime;loosened@@ by $his wedding party. + <</if>> + <</if>> + + <<if (_slave1.relationship != 0) && (_slave2.relationship != 0)>> + <<if _slave1.relationshipTarget == _slave2.ID>> + /* TODO: not sure about these */ + <<if ((_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.devotion+_slave1.trust >= 175>> + The fact that their relationship together now involves you @@.hotpink;excites them to no end.@@ + <<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.@@ + <<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.@@ + <<set _slave1.devotion += 5>> + <<set _slave2.devotion += 5>> + <</if>> + <<else>> + _slave1.slaveName + <<if _slave1.devotion+_slave1.trust >= 175>> + is excited by the fact that their relationship now involves you, and promises to try to get _slave2.slaveName to see you the same way $he does, + <<set _slave1.devotion += 10>> + <<elseif _slave1.devotion < -20>> + is convinced this is some sort of trick, + <<elseif _slave1.devotion >= -20>> + is only @@.hotpink;cautiously optimistic for their future together,@@ + <<set _slave1.devotion += 5>> + <</if>> + while _slave2.slaveName + <<if _slave2.devotion+_slave2.trust >= 175>> + is excited by the fact that their relationship now involves you, and promises to try to get _slave1.slaveName to see you the same way _he2 does. + <<set _slave2.devotion += 10>> + <<elseif _slave2.devotion < -20>> + is convinced this is some sort of trick. + <<elseif _slave2.devotion >= -20>> + is only @@.hotpink;cautiously optimistic for their future together.@@ + <<set _slave2.devotion += 5>> + <</if>> + <</if>> + <<else>> + <<if _slave1.relationship != 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>ex<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 50, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 30, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 15, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <<elseif _slave2.relationship != 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>ex<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 50, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 30, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 15, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <<else>> + @@.red;Error! DCoded doesn't know to code. Please report this.@@ + <</if>> + <</if>> + <<else>> + <<if _slave1.relationship != 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>love<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <<elseif _slave1.relationship == -2>> + $He feels like $he betrayed you by getting fucked by so many others and struggles to convince $himself it was what you wanted. + <<elseif _slave1.relationship == -1>> + Judging by the smile on $his sleeping face, today may have been the @@.hotpink;best day of $his life.@@ + <<set _slave1.devotion = 100, _slave1.trust = 100>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only after such a thrilling orgy and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 50, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays, especially after such a lovely orgy. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 30, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;resentful@@ that you'd treat such a catch that way. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 15, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <</if>> + <<else>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>love<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <<elseif _slave1.relationship == -2>> + $He feels like $he betrayed you by getting fucked by so many others and struggles to convince $himself it was what you wanted. + <<elseif _slave1.relationship == -1>> + Judging by the smile on $his sleeping face, today may have been the @@.hotpink;best day of $his life.@@ + <<set _slave1.devotion = 100, _slave1.trust = 100>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only after such a thrilling orgy and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 50, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays, especially after such a lovely orgy. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 30, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;resentful@@ that you'd treat such a catch that way. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 15, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <</if>> + + <<set _slave1.relationship = -3>> + <<set _slave1.oralCount += 50>> + <<set $oralTotal += 50>> + <<set _slave1.analCount += 50>> + <<set $analTotal += 50>> + <<set _slave1.publicCount += 100>> + <<if canGetPregnant(_slave1) && _slave1.eggType == "human">> + <<= knockMeUp(_slave1, 20, 2, -2)>> + <</if>> + <<set $rep += 1000>> + <<if _slave1.fetish == "mindbroken">> + <<set $desc = "a framed shot of the broken " + _slave1.slaveName + " getting gangbanged at your wedding">> + <<elseif _slave1.devotion+_slave1.trust >= 175>> + <<set $desc = "a framed shot of the tear and cum soaked " + _slave1.slaveName + " getting gangbanged at your wedding">> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + <<set $desc = "a framed shot of the glowering " + _slave1.slaveName + " getting gangbanged at your wedding">> + <<elseif _slave1.devotion < -20>> + <<set $desc = "a framed shot of " + _slave1.slaveName + " getting gangbanged and weeping at your wedding">> + <<else>> + <<set $desc = "a framed shot of " + _slave1.slaveName + " getting gangbanged at your wedding">> + <</if>> + <<set $trinkets.push($desc)>> + + <<set _slave2.relationship = -3>> + <<set _slave2.oralCount += 50>> + <<set $oralTotal += 50>> + <<set _slave2.analCount += 50>> + <<set $analTotal += 50>> + <<set _slave2.publicCount += 100>> + <<if canGetPregnant(_slave2) && _slave2.eggType == "human">> + <<= knockMeUp(_slave2, 20, 2, -2)>> + <</if>> + <<set $rep += 1000>> + <<if _slave2.fetish == "mindbroken">> + <<set $desc = "a framed shot of the broken " + _slave2.slaveName + " getting gangbanged at your wedding">> + <<elseif _slave2.devotion+_slave2.trust >= 175>> + <<set $desc = "a framed shot of the tear and cum soaked " + _slave2.slaveName + " getting gangbanged at your wedding">> + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + <<set $desc = "a framed shot of the glowering " + _slave2.slaveName + " getting gangbanged at your wedding">> + <<elseif _slave2.devotion < -20>> + <<set $desc = "a framed shot of " + _slave2.slaveName + " getting gangbanged and weeping at your wedding">> + <<else>> + <<set $desc = "a framed shot of " + _slave2.slaveName + " getting gangbanged at your wedding">> + <</if>> + <<set $trinkets.push($desc)>> + +<<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. + <br><br> + /* holy hell is the next line a mess */ + /* 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 + + <<if (_slave1.vagina == 0 && _slave2.vagina == 0) || (_slave1.pregKnown == 1 && _slave2.pregKnown == 1) || ((_slave1.vagina < 0 && _slave1.anus == 0) && (_slave2.vagina < 0 && _slave2.anus == 0)) || ((_slave1.vagina < 0 && _slave1.boobs > 500) && (_slave2.vagina < 0 && _slave2.boobs > 500)) || (_slave1.vagina < 0 && _slave2.vagina < 0) || (_slave1.dick > 0 && _slave2.dick > 0) || ((_slave1.vagina > 0 || _slave1.anus > 0) && (_slave2.vagina > 0 || _slave2.anus > 0))>> + <<if (_slave1.vagina == 0)>> + white, since both slaves are virgins. + <<elseif (_slave1.pregKnown == 1)>> + light pink, since both slaves are pregnant. + <<elseif (_slave1.vagina < 0) && (_slave1.anus == 0)>> + white, since both slaves are anal virgins. + <<elseif (_slave1.vagina < 0) && (_slave1.boobs > 500)>> + electric blue, since both slaves are shemales. + <<elseif (_slave1.vagina < 0)>> + pale blue, since both slaves are sissies. + <<elseif (_slave1.dick > 0)>> + hot pink, since both slaves are futas. + <<else>> + light pink, since both slaves are experienced sex slaves. + <</if>> + <<else>> + <<if (_slave1.vagina == 0)>> + white, since _slave1.slaveName's a virgin + <<elseif (_slave1.pregKnown == 1)>> + light pink, since _slave1.slaveName's pregnant + <<elseif (_slave1.vagina < 0) && (_slave1.anus == 0)>> + white, since _slave1.slaveName's an anal virgin + <<elseif (_slave1.vagina < 0) && (_slave1.boobs > 500)>> + electric blue, since _slave1.slaveName's a shemale + <<elseif (_slave1.vagina < 0)>> + pale blue, since _slave1.slaveName's a sissy slave + <<elseif (_slave1.dick > 0)>> + hot pink, since _slave1.slaveName's a futa slave + <<else>> + light pink, since _slave1.slaveName's an experienced sex slave + <</if>> + and + <<if (_slave2.vagina == 0)>> + white, since _slave2.slaveName's a virgin. + <<elseif (_slave2.pregKnown == 1)>> + light pink, since _slave2.slaveName's pregnant. + <<elseif (_slave2.vagina < 0) && (_slave2.anus == 0)>> + white, since _slave2.slaveName's an anal virgin. + <<elseif (_slave2.vagina < 0) && (_slave2.boobs > 500)>> + electric blue, since _slave2.slaveName's a shemale. + <<elseif (_slave2.vagina < 0)>> + pale blue, since _slave2.slaveName's a sissy slave. + <<elseif (_slave2.dick > 0)>> + hot pink, since _slave2.slaveName's a futa slave. + <<else>> + light pink, since _slave2.slaveName's an experienced sex slave. + <</if>> + <</if>> + + A filmy veil cover their heads and shoulders, and + <<if (_slave1.boobs > 4000 && _slave2.boobs > 4000) || (_slave1.boobs > 1200 && _slave2.boobs > 1200) || (_slave1.boobs > 400 && _slave2.boobs > 400) || (_slave1.boobs <= 400 && _slave2.boobs <= 400)>> + their lacy bridal bras + <<if (_slave1.boobs > 4000)>> + are a marvel of engineering, discreetly reinforced to support their gigantic udders. + <<elseif (_slave1.boobs > 1200)>> + just barely restrain their huge boobs, leaving the tops of their areolae visible. + <<elseif (_slave1.boobs > 400)>> + flatter their pretty breasts. + <<else>> + flatter their pretty chests. + <</if>> + <<else>> + _slave1.slaveName's lacy bridal bra + <<if (_slave1.boobs > 4000)>> + is a marvel of engineering, discreetly reinforced to support $his gigantic udders, + <<elseif (_slave1.boobs > 1200)>> + just barely restrains $his huge boobs, leaving the tops of $his areolae visible, + <<elseif (_slave1.boobs > 400)>> + flatters $his pretty breasts, + <<else>> + flatters $his pretty chest, + <</if>> + while _slave2.slaveName's bra + <<if (_slave1.boobs > 4000)>> + is a marvel of engineering, discreetly reinforced to support _his2 gigantic udders. + <<elseif (_slave1.boobs > 1200)>> + just barely restrains _his2 huge boobs, leaving the tops of _his2 areolae visible. + <<elseif (_slave1.boobs > 400)>> + flatters _his2 pretty breasts. + <<else>> + flatters _his2 pretty chest. + <</if>> + <</if>> + + <<if ((_slave1.bellyPreg >= 600000) && (_slave2.bellyPreg >= 600000)) || ((_slave1.bellyPreg >= 1500) && (_slave2.bellyPreg >= 1500)) || ((_slave1.bellyImplant >= 1500) && (_slave2.bellyImplant >= 1500)) || ((_slave1.bellyFluid >= 10000) || (_slave2.bellyFluid >= 10000)) || ((_slave1.bellyFluid >= 5000) && (_slave2.bellyFluid >= 5000)) || ((_slave1.bellyFluid >= 1500) && (_slave2.bellyFluid >= 1500))>> + <<if _slave1.bellyPreg >= 600000>> + Their expansive, squirming pregnant bellies make their bridal wear particularly obscene. + <<elseif (_slave1.bellyPreg >= 1500)>> + Their _belly pregnant bellies protrude out the front of their bridal wear. + <<elseif (_slave1.bellyImplant >= 1500)>> + Their _belly <<print _slave1.bellyImplant>>cc bellies implant protrude their middle out the front of their bridal wear. + <<elseif (_slave1.bellyFluid >= 10000)>> + Their hugely bloated, <<print _slave1.inflationType>>-filled bellies protrude out the front of their bridal wear. + <<elseif (_slave1.bellyFluid >= 5000)>> + Their bloated, <<print _slave1.inflationType>>-stuffed bellies protrude out the front of their bridal wear. + <<elseif (_slave1.bellyFluid >= 1500)>> + Their distended, <<print _slave1.inflationType>>-bellies protrude out the front of their bridal wear. + <</if>> + <<else>> + <<if _slave1.bellyPreg >= 600000>> + _slave1.slaveName's expansive, squirming pregnant belly makes $his bridal wear particularly obscene, + <<elseif (_slave1.bellyPreg >= 1500)>> + _slave1.slaveName's _belly pregnant belly protrudes out the front of $his bridal wear, + <<elseif (_slave1.bellyImplant >= 1500)>> + _slave1.slaveName's _belly <<print _slave1.bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear, + <<elseif (_slave1.bellyFluid >= 10000)>> + _slave1.slaveName's hugely bloated, <<print _slave1.inflationType>>-filled belly protrudes out the front of $his bridal wear, + <<elseif (_slave1.bellyFluid >= 5000)>> + _slave1.slaveName's bloated, <<print _slave1.inflationType>>-stuffed belly protrudes out the front of $his bridal wear, + <<elseif (_slave1.bellyFluid >= 1500)>> + _slave1.slaveName's distended, <<print _slave1.inflationType>>-belly protrudes out the front of $his bridal wear, + <</if>> + while + <<if _slave1.bellyPreg >= 600000>> + _slave2.slaveName's expansive, squirming pregnant belly makes _his2 bridal wear particularly obscene. + <<elseif (_slave2.bellyPreg >= 1500)>> + _slave2.slaveName's _belly2 pregnant belly protrudes out the front of _his2 bridal wear. + <<elseif (_slave2.bellyImplant >= 1500)>> + _slave2.slaveName's _belly2 <<print _slave2.bellyImplant>>cc belly implant protrudes _his2 middle out the front of _his2 bridal wear. + <<elseif (_slave2.bellyFluid >= 10000)>> + _slave2.slaveName's hugely bloated, <<print _slave2.inflationType>>-filled belly protrudes out the front of _his2 bridal wear. + <<elseif (_slave2.bellyFluid >= 5000)>> + _slave2.slaveName's bloated, <<print _slave2.inflationType>>-stuffed belly protrudes out the front of _his2 bridal wear. + <<elseif (_slave2.bellyFluid >= 1500)>> + _slave2.slaveName's distended, <<print _slave2.inflationType>>-belly protrudes out the front of _his2 bridal wear. + <</if>> + <</if>> + + <<if ((_slave1.dickAccessory == ("chastity") || _slave1.dickAccessory == ("combined chastity")) && (_slave2.dickAccessory == "chastity") || _slave2.dickAccessory == ("combined chastity")) || (canAchieveErection(_slave1) && canAchieveErection(_slave2)) || ((_slave1.dick > 0) && (_slave2.dick > 0)) || ((_slave1.clit > 1 && _slave2.clit > 1)) || ((_slave1.clit <= 1) && (_slave2.clit <= 1))>> + <<if _slave1.dickAccessory == ("chastity") || _slave1.dickAccessory == ("combined chastity")>> + Their slave dicks are hidden by their chastity cages. + <<elseif canAchieveErection(_slave1)>> + <<if (_slave1.dick > 4) && (_slave1.belly >= 5000)>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if _slave1.bellyPreg >= 3000>>pregnant <</if>>belly. + <<elseif _slave1.dick > 4>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. + <<else>> + _slave1.slaveName's erection tents the front of $his lacy g-string. + <</if>> + <<elseif (_slave1.dick > 0)>> + <<if (_slave1.dick > 10) && (_slave2.dick > 10)>> + Their huge soft cocks are allowed to dangle freely as no g-string could hope to contain them. + <<elseif (_slave1.dick > 4) && (_slave2.dick > 4)>> + Their big soft cocks forms a lewd mass, stuffed into their lacy g-strings. + <<elseif (_slave1.dick <= 3) && (_slave2.dick <= 3)>> + Their lacy g-strings perfectly conceals their soft dick. + <<else>> + <<if (_slave1.dick > 10)>> + _slave1.slaveName's huge soft cock dangles free as no g-string could hope to contain it, + <<elseif (_slave1.dick > 4)>> + _slave1.slaveName's big soft cock forms a lewd mass, stuffed into $his lacy g-string, + <<else>> + _slave1.slaveName's lacy g-string perfectly conceals $his soft dick, + <</if>> + while + <<if (_slave2.dick > 10)>> + _slave2.slaveName's huge soft cock dangles free as no g-string could hope to contain it. + <<elseif (_slave2.dick > 4)>> + _slave2.slaveName's big soft cock forms a lewd mass, stuffed into _his2 lacy g-string. + <<else>> + _slave2.slaveName's lacy g-string perfectly conceals _his2 soft dick. + <</if>> + <</if>> + <<else>> + <<if _slave1.clit > 1>> + Their huge clits are quite hard, making them shift uncomfortably as their lacy g-strings stimulate them. + <<else>> + Their lacy g-strings cover their womanhoods demurely. + <</if>> + <</if>> + <<else>> + <<if _slave1.dickAccessory == ("chastity") || _slave1.dickAccessory == ("combined chastity")>> + _slave1's slave dick is hidden by its chastity cage, + <<elseif canAchieveErection(_slave1)>> + <<if (_slave1.dick > 4) && (_slave1.belly >= 5000)>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if _slave1.bellyPreg >= 3000>>pregnant <</if>>belly, + <<elseif _slave1.dick > 4>> + _slave1.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly, + <<else>> + _slave1.slaveName's erection tents the front of $his lacy g-string, + <</if>> + <<elseif (_slave1.dick > 0)>> + <<if _slave1.dick > 10>> + _slave1.slaveName's huge soft cock is allowed to dangle freely as no g-string could hope to contain it, + <<elseif _slave1.dick > 4>> + _slave1.slaveName's big soft cock forms a lewd mass, stuffed into $his lacy g-string, + <<else>> + _slave1.slaveName's lacy g-string perfectly conceals $his soft dick, + <</if>> + <<else>> + <<if _slave1.clit > 1>> + _slave1.slaveName's huge clit is quite hard, making $his shift uncomfortably as $his lacy g-string stimulates it, + <<else>> + _slave1.slaveName's lacy g-string covers $his womanhood demurely, + <</if>> + <</if>> + whereas + <<if _slave2.dickAccessory == ("chastity") || _slave2.dickAccessory == ("combined chastity")>> + _slave2.slaveName' slave dick is hidden by its chastity cage. + <<elseif canAchieveErection(_slave2)>> + <<if (_slave2.dick > 4) && (_slave2.belly >= 5000)>> + _slave2.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly2 <<if _slave2.bellyPreg >= 3000>>pregnant <</if>>belly. + <<elseif _slave2.dick > 4>> + _slave2.slaveName's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. + <<else>> + _slave2.slaveName' erection tents the front of $his lacy g-string. + <</if>> + <<elseif (_slave2.dick > 0)>> + <<if _slave2.dick > 10>> + _slave2.slaveName' huge soft cock is allowed to dangle freely as no g-string could hope to contain it. + <<elseif _slave2.dick > 4>> + _slave2.slaveName' big soft cock forms a lewd mass, stuffed into $his lacy g-string. + <<else>> + _slave2.slaveName' lacy g-string perfectly conceals $his soft dick. + <</if>> + <<else>> + <<if _slave2.clit > 1>> + _slave2.slaveName' huge clit is quite hard, making $his shift uncomfortably as $his lacy g-string stimulates it. + <<else>> + _slave2.slaveName' lacy g-string covers $his womanhood demurely. + <</if>> + <</if>> + <</if>> + + There is no aisle for them to <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>walk alongside the slaves carrying<<else>>walk<</if>> them there; this symbolizes their submission to you + + <<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">> + despite the fact that both slaves had to be pushed into walking towards you. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + of both slaves' own choice, and they do so with smiles. + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + of both slaves' own choice, and they do so with hesitation. + <<elseif _slave1.devotion < -20>> + of both slaves' own (forced) choice, and they do so with wavering steps. + <<else>> + of both slaves' own choice, and they do so willingly. + <</if>> + <<else>> + <<if _slave1.fetish == "mindbroken">> + despite the fact that _slave1.slaveName had to be pushed into walking towards you, + <<elseif _slave1.devotion+_slave1.trust >= 175>> + of _slave1.slaveName's own choice, and $he does so with a smile, + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + of _slave1.slaveName's own choice, and $he does so with hesitation, + <<elseif _slave1.devotion < -20>> + of _slave1.slaveName's own (forced) choice, and $he does so with wavering steps, + <<else>> + of _slave1.slaveName's own choice, and $he does so willingly, + <</if>> + while _slave2.slaveName + <<if _slave2.fetish == "mindbroken">> + has to be pushed into walking towards you. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + does this of $his own choice, and $he does so with a smile. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + does this of $his own choice, and $he does so with hesitation. + <<elseif _slave2.devotion < -20>> + does this of $his own (forced) choice, and $he does so with wavering steps. + <<else>> + does this of $his own choice, and $he does so willingly. + <</if>> + <</if>> + <br><br> + /* good luck trying to read this line */ + When they are in front of you, <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>the slaves carrying their limbless torsos sets them down on the floor in front of you and props them up so their heads are level with your crotch<<else>>they gets down on their knees so their heads are level with your crotch<</if>>. <<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 $he 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 $he 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> + <<if $PC.surname && ((_slave1.slaveSurname != $PC.surname) || (_slave2.slaveSurname != $PC.surname))>> + <br><br><span id="surnaming"> + <<link "Give them both your surname too">> + <<replace "#surnaming">> + <<set _slave1.slaveSurname = $PC.surname, _slave2.slaveSurname = $PC.surname>> + You also proclaim your new slave wives _slave1.slaveName and _slave2.slaveName $PC.surname. + The new Mrs. <<print $PC.surname>>s hear this, of course, and + <<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)>> + <<if _slave1.fetish == "mindbroken">> + show no reaction. Like many things, names mean nothing to them now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave1.devotion+_slave1.trust >= 175>> + break down again. Not only are they to be blessed with your children, but they're to take your surname as well. + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + scoff audibly. Just another burden for them to carry; like the child soon to be growing in their wombs. + <<elseif _slave1.devotion < -20>> + break down again. Not only are you binding them to you with your children, but with your name as well. + <<else>> + nod acceptingly. Your will is their will, after all. + <</if>> + <<else>> + <<if _slave2.fetish == "mindbroken">> + _slave1.slaveName shows no reaction. Like many things, names mean nothing to _him2 now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + _slave1.slaveName breaks down again. Not only is _he2 to be blessed with your child, but _he2's to take your surname as well. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + _slave1.slaveName scoffs audibly. Just another burden for _him2 to carry; like the child soon to be growing in _his2 womb. + <<elseif _slave2.devotion < -20>> + _slave1.slaveName breaks down again. Not only are you binding _him2 to you with your child, but with your name as well. + <<else>> + _slave1.slaveName nods acceptingly. Your will is _his2 will, after all. + <</if>> + _slave2.slaveName, meanwhile, + <<if _slave2.fetish == "mindbroken">> + shows no reaction. Like many things, names mean nothing to _him2 now. Your guests, on the other hand, appreciate the gift. + <<elseif _slave2.devotion+_slave2.trust >= 175>> + breaks down again. Not only is _he2 to be blessed with your child, but _he2's to take your surname as well. + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + scoffs audibly. Just another burden for _him2 to carry; like the child soon to be growing in _his2 womb. + <<elseif _slave2.devotion < -20>> + breaks down again. Not only are you binding _him2 to you with your child, but with your name as well. + <<else>> + nods acceptingly. Your will is _his2 will, after all. + <</if>> + <</if>> + <</replace>> + <</link>> + </span> + <</if>> + <br><br> Then, you flip their veils over their heads so they 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. + <<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*/ + <<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*/ + <<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*/ + <<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*/ + <<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*/ + <</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. + <<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. + <<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. + <<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. + <<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. + <</if>> + Next, it's _slave2.slaveName's turn. _He2 takes on _his2 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. + <<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. + <<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. + <<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. + <<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. + <</if>> + <</if>> + + <<if _slave1.relationship != 0 && _slave2.relationship != 0>> + <<if _slave1.relationshipTarget == _slave2.ID>> + /* TODO: not sure about these */ + <<if ((_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.devotion+_slave1.trust >= 175>> + The fact that their relationship together now involves you @@.hotpink;excites them to no end.@@ + <<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.@@ + <<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.@@ + <<set _slave1.devotion += 5>> + <<set _slave2.devotion += 5>> + <</if>> + <<else>> + _slave1.slaveName + <<if _slave1.devotion+_slave1.trust >= 175>> + is excited by the fact that their relationship now involves you, and promises to try to get _slave2.slaveName to see you the same way $he does, + <<set _slave1.devotion += 10>> + <<elseif _slave1.devotion < -20>> + is convinced this is some sort of trick, + <<elseif _slave1.devotion >= -20>> + is only @@.hotpink;cautiously optimistic for their future together,@@ + <<set _slave1.devotion += 5>> + <</if>> + while _slave2.slaveName + <<if _slave2.devotion+_slave2.trust >= 175>> + is excited by the fact that their relationship now involves you, and promises to try to get _slave1.slaveName to see you the same way _he2 does. + <<set _slave2.devotion += 10>> + <<elseif _slave2.devotion < -20>> + is convinced this is some sort of trick. + <<elseif _slave2.devotion >= -20>> + is only @@.hotpink;cautiously optimistic for their future together.@@ + <<set _slave2.devotion += 5>> + <</if>> + <</if>> + <<else>> + <<if _slave1.relationship != 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>love<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 40, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 30, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <</if>> + <</if>> + <<else>> + <<if _slave1.relationship != 0>> + <<if _slave1.devotion+_slave1.trust >= 175>> + <<if _slave1.relationship > 0>> + $His <<if _slave1.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave1.relationship > 2>>love<<else>>companion<</if>>'s future. + <<if _slave1.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave1.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave1.devotion < -20>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 40, $slaves[_m].trust -= 40>> + <<set _slave1.devotion -= 40, _slave1.trust -= 40>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave1.devotion -= 30, _slave1.trust -= 30>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <</if>> + <<else>> + <<if _slave1.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave1.devotion -= 20, _slave1.trust -= 20>> + <<elseif _slave1.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave1.devotion -= 10, _slave1.trust -= 10>> + <<elseif _slave1.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave1.devotion -= 5, _slave1.trust -= 5>> + <</if>> + <</if>> + <</if>> + + <<if _slave2.relationship != 0>> + <<if _slave2.devotion+_slave2.trust >= 175>> + <<if _slave2.relationship > 0>> + $His <<if _slave2.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if _slave2.relationship > 2>>love<<else>>companion<</if>>'s future. + <<if _slave2.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif _slave2.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif _slave2.devotion < -20>> + <<if _slave2.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set _slave2.devotion -= 40, _slave2.trust -= 40>> + <<elseif _slave2.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 40, $slaves[_m].trust -= 40>> + <<set _slave2.devotion -= 40, _slave2.trust -= 40>> + <<elseif _slave2.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set _slave2.devotion -= 30, _slave2.trust -= 30>> + <<elseif _slave2.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave2.devotion -= 20, _slave2.trust -= 20>> + <</if>> + <<else>> + <<if _slave2.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set _slave2.devotion -= 10, _slave2.trust -= 10>> + <<elseif _slave2.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set _slave2.devotion -= 20, _slave2.trust -= 20>> + <<elseif _slave2.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set _slave2.devotion -= 10, _slave2.trust -= 10>> + <<elseif _slave2.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set _slave2.devotion -= 5, _slave2.trust -= 5>> + <</if>> + <</if>> + <</if>> + <</if>> + + <<set _slave1.relationship = -3>> + <<set _slave1.oralCount += 1>> + <<set $oralTotal += 1>> + <<set $rep += 750>> + <<if _slave1.fetish == "mindbroken">> + <<set $desc = "a framed shot of your uneventful wedding to the mindbroken " + _slave1.slaveName>> + <<elseif _slave1.devotion+_slave1.trust >= 175>> + <<set $desc = "a framed shot of your romantic wedding to the joyous " + _slave1.slaveName>> + <<elseif _slave1.devotion < -20 && _slave1.trust > 20>> + <<set $desc = "a framed shot of your forced wedding to the hateful " + _slave1.slaveName>> + <<elseif _slave1.devotion < -20>> + <<set $desc = "a framed shot of your forced wedding to the weeping " + _slave1.slaveName>> + <<else>> + <<set $desc = "a framed shot of your wedding to " + _slave1.slaveName>> + <</if>> + <<set $trinkets.push($desc)>> + + <<set _slave2.relationship = -3>> + <<set _slave2.oralCount += 1>> + <<set $oralTotal += 1>> + <<set $rep += 750>> + <<if _slave2.fetish == "mindbroken">> + <<set $desc = "a framed shot of your uneventful wedding to the mindbroken " + _slave2.slaveName>> + <<elseif _slave2.devotion+_slave2.trust >= 175>> + <<set $desc = "a framed shot of your romantic wedding to the joyous " + _slave2.slaveName>> + <<elseif _slave2.devotion < -20 && _slave2.trust > 20>> + <<set $desc = "a framed shot of your forced wedding to the hateful " + _slave2.slaveName>> + <<elseif _slave2.devotion < -20>> + <<set $desc = "a framed shot of your forced wedding to the weeping " + _slave2.slaveName>> + <<else>> + <<set $desc = "a framed shot of your wedding to " + _slave2.slaveName>> + <</if>> + <<set $trinkets.push($desc)>> + +<</if>> \ No newline at end of file diff --git a/src/uncategorized/seWeddingSingle.tw b/src/uncategorized/seWeddingSingle.tw new file mode 100644 index 0000000000000000000000000000000000000000..7e539ff5571021003bdd26737236be7d8ad65dee --- /dev/null +++ b/src/uncategorized/seWeddingSingle.tw @@ -0,0 +1,846 @@ +:: SE wedding single [nobr] + +<<set _s = $slaveIndices[$marrying[0]]>> +<<setLocalPronouns $slaves[_s]>> +<<set _belly = bellyAdjective($slaves[_s])>> + +<<if $slaves[_s].relationship != 0>> + <<if $slaves[_s].relationship > 0>> + <<set _m = $slaveIndices[$slaves[_s].relationshipTarget]>> + <<set $slaves[_s].relationshipTarget = 0>> + <<set $slaves[_m].relationship = 0, $slaves[_m].relationshipTarget = 0>> + <<setLocalPronouns $slaves[_m] 2>> + <</if>> + In the days leading up to your wedding, $slaves[_s].slaveName spent $his time + <<if $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<if $slaves[_s].relationship != 0>> + <<if $slaves[_s].relationship == -1>> + vowing that $he'll be less of a slut. + <<elseif $slaves[_s].relationship == 4>> + breaking up with $his lover, $slaves[_m].slaveName, as painlessly as possible. + <<elseif $slaves[_s].relationship == 3>> + breaking up with $his FWB, $slaves[_m].slaveName, as painlessly as possible. + <<elseif $slaves[_s].relationship > 0>> + promising $slaves[_m].slaveName that they'll still be friends, even if they can't spend time together. + <<else>> + as close to you as $he could. + <</if>> + <</if>> + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + <<if $slaves[_s].relationship == -1>> + sleeping with as many different people as $he could. + <<if !isSlaveAvailable($slaves[_s])>> + Or $he would have, if $he were able. + <<elseif canDoVaginal($slaves[_s]) && canDoAnal($slaves[_s])>> + <<set _randomVag = random(30,60)>> + <<set _randomAnal = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set $slaves[_s].vaginalCount += _randomVag, $slaves[_s].analCount += _randomAnal, $slaves[_s].oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed holes. + <<if $slaves[_s].vagina == 0 && $slaves[_s].anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <</if>> + <<if $slaves[_s].vagina < 4>><<set $slaves[_s].vagina = 4>><</if>><<set $slaves[_s].anus = 4>> + <<if canGetPregnant($slaves[_s]) && (random(1,100) > 70) && $slaves[_s].eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoVaginal($slaves[_s])>> + <<set _randomVag = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set $slaves[_s].vaginalCount += _randomVag, $slaves[_s].oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed cunt. + <<if $slaves[_s].vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <</if>> + <<if $slaves[_s].vagina < 4>><<set $slaves[_s].vagina = 4>><</if>> + <<if canGetPregnant($slaves[_s]) && (random(1,100) > 70) && $slaves[_s].eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoAnal($slaves[_s])>> + <<set _randomAnal = random(30,60)>> + <<set _randomOral = random(30,60)>> + <<set $slaves[_s].analCount += _randomAnal, $slaves[_s].oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + By week's end, $he's managed to ruin $his body out of spite. $He can barely move, trapped on $his back as cum steadily drips from $his prolapsed, gaping, destroyed anus. + <<if $slaves[_s].anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <</if>> + <<set $slaves[_s].anus = 4>> + <<if canGetPregnant($slaves[_s]) && (random(1,100) > 70) && $slaves[_s].eggType == "human">> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<else>> + <<set _randomOral = random(60,100)>> + <<set $slaves[_s].oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from sucking down so much sexual fluid. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif $slaves[_s].relationship == 4>> + fucking $his love, $slaves[_m].slaveName, as often as possible while ignoring you. + <<if !isSlaveAvailable($slaves[_s])>> + Or $he would have, if $he were able. + <<elseif !isSlaveAvailable($slaves[_m])>> + Or $he would have, if _he2 were around. + <<elseif canDoVaginal($slaves[_s]) && canDoAnal($slaves[_s])>> + <<set _randomVag = random(3,7)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set $slaves[_s].vaginalCount += _randomVag, $slaves[_s].analCount += _randomAnal, $slaves[_s].oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if $slaves[_s].vagina == 0 && $slaves[_s].anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <<set $slaves[_s].vagina = 1, $slaves[_s].anus = 1>> + <</if>> + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoVaginal($slaves[_s])>> + <<set _randomVag = random(3,7)>> + <<set _randomOral = random(5,10)>> + <<set $slaves[_s].vaginalCount += _randomVag, $slaves[_s].oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + <<if $slaves[_s].vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <<set $slaves[_s].vagina = 1>> + <</if>> + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoAnal($slaves[_s])>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set $slaves[_s].analCount += _randomAnal, $slaves[_s].oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if $slaves[_s].anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <<set $slaves[_s].anus = 1>> + <</if>> + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<else>> + <<set _randomOral = random(15,20)>> + <<set $slaves[_s].oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif $slaves[_s].relationship == 3>> + fucking $his lover, $slaves[_m].slaveName, as often as possible while ignoring you. + <<if !isAvailable($slaves[_s])>> + Or $he would have, if $he were able. + <<elseif !isSlaveAvailable($slaves[_m])>> + Or $he would have, if _he2 were around. + <<elseif canDoVaginal($slaves[_s]) && canDoAnal($slaves[_s])>> + <<set _randomVag = random(3,7)>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set $slaves[_s].vaginalCount += _randomVag, $slaves[_s].analCount += _randomAnal, $slaves[_s].oralCount += _randomOral, $vaginalTotal += _randomVag, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if $slaves[_s].vagina == 0 && $slaves[_s].anus == 0>> + $His actions robbed you of @@.lime;both $his virginities.@@ + <<set $slaves[_s].vagina = 1, $slaves[_s].anus = 1>> + <</if>> + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag+_randomAnal), $penetrativeTotal += (_randomVag+_randomAnal)>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoVaginal($slaves[_s])>> + <<set _randomVag = random(3,7)>> + <<set _randomOral = random(5,10)>> + <<set $slaves[_s].vaginalCount += _randomVag, $slaves[_s].oralCount += _randomOral, $vaginalTotal += _randomVag, $oralTotal += _randomOral>> + <<if $slaves[_s].vagina == 0>> + $His actions robbed you of @@.lime;$his virginity.@@ + <<set $slaves[_s].vagina = 1>> + <</if>> + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomVag), $penetrativeTotal += (_randomVag)>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoAnal($slaves[_s])>> + <<set _randomAnal = random(1,4)>> + <<set _randomOral = random(5,10)>> + <<set $slaves[_s].analCount += _randomAnal, $slaves[_s].oralCount += _randomOral, $analTotal += _randomAnal, $oralTotal += _randomOral>> + <<if $slaves[_s].anus == 0>> + $His actions robbed you of @@.lime;$his anal virginity.@@ + <<set $slaves[_s].anus = 1>> + <</if>> + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 70)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals the bitch managed to get knocked up. There is no time before the ceremony to deal with it. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount += (_randomAnal), $penetrativeTotal += (_randomAnal)>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<else>> + <<set _randomOral = random(15,20)>> + <<set $slaves[_s].oralCount += _randomOral, $oralTotal += _randomOral>> + By week's end, $he's managed to make $himself sick from going down on $slaves[_m].slaveName so often. Luckily inducing vomiting will save your wedding from making the tabloids. + <</if>> + <<elseif $slaves[_s].relationship > 0>> + spending time away from you with $slaves[_m].slaveName. + <<else>> + inappropriately planning redecorations. + <</if>> + <<elseif $slaves[_s].devotion < -20>> + <<if $slaves[_s].relationship == -1>> + desperately pleading with you to change your mind. + <<elseif $slaves[_s].relationship == 4>> + with $his love, $slaves[_m].slaveName, weeping. + <<elseif $slaves[_s].relationship == 3>> + with $his lover, $slaves[_m].slaveName, weeping. + <<elseif $slaves[_s].relationship > 0>> + with $his friend, $slaves[_m].slaveName, weeping. + <<else>> + desperately pleading with you to change your mind. + <</if>> + <<else>> + <<if $slaves[_s].relationship == -1>> + trying $his hardest to not sleep with anyone else. + <<elseif $slaves[_s].relationship == 4>> + alongside $his love, $slaves[_m].slaveName. + <<if canDoVaginal($slaves[_s]) && $slaves[_s].vagina != 0>> + <<set $slaves[_s].vaginalCount += 1, $vaginalTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time. + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals $slaves[_s].slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoAnal($slaves[_s])>> + <<set $slaves[_s].analCount += 1, $analTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time. + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals $slaves[_s].slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<else>> + <<set $slaves[_s].oralCount += 1, $oralTotal += 1>> + $He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>. + <</if>> + <<elseif $slaves[_s].relationship == 3>> + alongside $his lover, $slaves[_m].slaveName. + <<if canDoVaginal($slaves[_s]) && $slaves[_s].vagina != 0>> + <<set $slaves[_s].vaginalCount += 1, $vaginalTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his pussy one last time. + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals $slaves[_s].slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<elseif canDoAnal($slaves[_s])>> + <<set $slaves[_s].analCount += 1, $analTotal += 1>> + $He later lets you know $he let $slaves[_m].slaveName enjoy $his butt one last time. + <<if canImpreg($slaves[_s], $slaves[_m]) && (random(1,100) > 90)>> + A pre-wedding checkup following an unusual bout of morning nausea reveals $slaves[_s].slaveName managed to get knocked up. There is no time before the ceremony to deal with it and the distraught $girl is in a panic for making you go through this. + <<set $slaves[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1, $slaves[_s].pregSource = $slaves[_m].ID, $slaves[_m].penetrativeCount++, $penetrativeTotal++>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, $slaves[_s].pregSource, $slaves[_s].preg)>> + <</if>> + <<else>> + <<set $slaves[_s].oralCount += 1, $oralTotal += 1>> + $He later tells you $he gave $slaves[_m].slaveName <<if $slaves[_m].dick > 0>>one last blow job<<elseif canDoVaginal($slaves[_m])>>cunnilingus one last time<<else>>oral one last time<</if>>. + <</if>> + <<elseif $slaves[_s].relationship > 0>> + with $his friend, $slaves[_m].slaveName. + <<else>> + wearing a very conflicted expression. + <</if>> + <</if>> +<</if>> + +<<if !isFertile($slaves[_s]) && $weddingPlanned == 3>> + $slaves[_s].slaveName can no longer be impregnated as planned for the ceremony, so it has been hurriedly recast as a normal slave wedding. + <<set $weddingPlanned = 1>> + <br><br> +<</if>> + +<<if $weddingPlanned == 3>> + + The ceremony to bind <<= SlaveFullName($slaves[_s])>> 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[_s].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[_s].slaveName appears after everyone has had a chance to socialize,<<if ($slaves[_s].amp == 1)>> carried by another slave since $he's a quadruple amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in + <<if ($slaves[_s].vagina == 0)>> + white, since $he's a virgin. + <<elseif ($slaves[_s].pregKnown == 1)>> + light pink, since $he's pregnant. + <<elseif ($slaves[_s].vagina < 0) && ($slaves[_s].anus == 0)>> + white, since $he's an anal virgin. + <<elseif ($slaves[_s].vagina < 0) && ($slaves[_s].boobs > 500)>> + electric blue, since $he's a shemale. + <<elseif ($slaves[_s].vagina < 0)>> + pale blue, since $he's a sissy slave. + <<elseif ($slaves[_s].dick > 0)>> + hot pink, since $he's a futa slave. + <<else>> + light pink, since $he's an experienced sex slave. + <</if>> + A filmy veil covers $his head and shoulders. $His lacy bridal bra + <<if ($slaves[_s].boobs > 4000)>> + is a marvel of engineering, discreetly reinforced to support $his gigantic udders. + <<elseif ($slaves[_s].boobs > 1200)>> + just barely restrains $his huge boobs, leaving the tops of $his areolae visible. + <<elseif ($slaves[_s].boobs > 400)>> + flatters $his pretty breasts. + <<else>> + flatters $his pretty chest. + <</if>> + <<if $slaves[_s].bellyPreg >= 600000>> + $His expansive, squirming pregnant belly makes $his bridal wear particularly obscene. + <<elseif ($slaves[_s].bellyPreg >= 1500)>> + $His _belly pregnant belly protrudes out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyImplant >= 1500)>> + $His _belly <<print $slaves[_s].bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyFluid >= 10000)>> + $His hugely bloated, <<print $slaves[_s].inflationType>>-filled belly protrudes out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyFluid >= 5000)>> + $His bloated, <<print $slaves[_s].inflationType>>-stuffed belly protrudes out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyFluid >= 1500)>> + $His distended, <<print $slaves[_s].inflationType>>-belly protrudes out the front of $his bridal wear. + <</if>> + <<if $slaves[_s].dickAccessory == ("chastity") || $slaves[_s].dickAccessory == ("combined chastity")>> + $His slave dick is hidden by its chastity cage. + <<elseif canAchieveErection($slaves[_s])>> + <<if ($slaves[_s].dick > 4) && ($slaves[_s].belly >= 5000)>> + $He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $slaves[_s].bellyPreg >= 3000>>pregnant <</if>>belly. + <<elseif $slaves[_s].dick > 4>> + $He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. + <<else>> + $His erection tents the front of $his lacy g-string. + <</if>> + <<elseif ($slaves[_s].dick > 0)>> + <<if $slaves[_s].dick > 10>> + $His huge soft cock is allowed to dangle freely as no g-string could hope to contain it. + <<elseif $slaves[_s].dick > 4>> + $His big soft cock forms a lewd mass, stuffed into $his lacy g-string. + <<else>> + $His lacy g-string perfectly conceals $his soft dick. + <</if>> + <<else>> + <<if $slaves[_s].clit > 1>> + $His huge clit is quite hard, making $his shift uncomfortably as $his lacy g-string stimulates it. + <<else>> + $His lacy g-string covers $his womanhood demurely. + <</if>> + <</if>> + There is no aisle for $him to <<if $slaves[_s].amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $slaves[_s].amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you + <<if $slaves[_s].fetish == "mindbroken">> + despite the fact that $he had to be pushed into walking towards you. + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + of $his own choice, and $he does so with a smile. + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + of $his own choice, and $he does so with hesitation. + <<elseif $slaves[_s].devotion < -20>> + of $his own (forced) choice, and $he does so with wavering steps. + <<else>> + of $his own choice, and $he does so willingly. + <</if>> + <br><br> + When $he's in front of you, + <<if $slaves[_s].amp == 1>> + the slave carrying $his limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch. + <<else>> + <<if $slaves[_s].fetish == "mindbroken">> + you push $him onto $his knees so $his head + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + $he happily gets down on $his knees so $his head + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + $he slowly lowers $himself onto $his knees so $his head + <<elseif $slaves[_s].devotion < -20>> + $he quickly lowers $himself onto $his knees so $his tear-streaked face + <<else>> + $he gets down on $his knees so $his head + <</if>> + <</if>> + is level with your crotch. + <<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[_s].amp == 1>> + on a cord around $his neck, since $he lacks fingers to wear it on. + <<else>> + on $his <<if $slaves[_s].devotion < -20 && $slaves[_s].trust <= 20>>trembling <</if>>finger. + <</if>> + There is no ring for you, since this marriage does not bind you. + <br> + <<if $PC.surname && $slaves[_s].slaveSurname != $PC.surname>> + <br><br><span id="surnaming"> + <<link "Give $him your surname too">> + <<replace "#surnaming">> + <<set $slaves[_s].slaveSurname = $PC.surname>> + You also proclaim your new slave wife $slaves[_s].slaveName $slaves[_s].slaveSurname. The new Mrs. $slaves[_s].slaveSurname hears this, of course, and + <<if $slaves[_s].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[_s].devotion+$slaves[_s].trust >= 175>> + breaks down again. Not only is $he to be blessed with your child, but $he's to take your surname as well. + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + scoffs audibly. Just another burden for $him to carry; like the child soon to be growing in $his womb. + <<elseif $slaves[_s].devotion < -20>> + breaks down again. Not only are you binding $him to you with your child, but with your name as well. + <<else>> + nods acceptingly. Your will is $his will, after all. + <</if>> + <</replace>> + <</link>> + </span> + <</if>> + <br><br> + <<if $slaves[_s].fetish == "mindbroken">> + $slaves[_s].slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. 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>>. Then you pull $his knees up to give your guests a good view as you fuck $his fertile <<if $slaves[_s].mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation. + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + Then, you <<if $slaves[_s].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>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if $slaves[_s].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, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation. + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + $slaves[_s].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 tear up 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[_s].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[_s].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, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his efforts to defy you. + <<elseif $slaves[_s].devotion < -20>> + $slaves[_s].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[_s].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[_s].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[_s].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[_s].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[_s].preg = 1, $slaves[_s].pregKnown = 1, $slaves[_s].pregWeek = 1>> + <<set $slaves[_s].pregType = setPregType($slaves[_s])>> + <<set WombImpregnate($slaves[_s], $slaves[_s].pregType, -1, $slaves[_s].preg)>> + <<set $slaves[_s].pregSource = -1>> + <<if ($slaves[_s].vagina == 0) || ($slaves[_s].mpreg == 1 && $slaves[_s].anus == 0)>> + Naturally, the ceremony @@.lime;took $his virginity;@@ + <<if $slaves[_s].fetish == "mindbroken">> + $he didn't notice. + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + $he was so happy @@.hotpink;$his first time was with you and so special.@@ + <<set $slaves[_s].devotion += 5>> + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + $he was @@.mediumorchid;saving that for someone special.@@ + <<set $slaves[_s].devotion -= 5>> + <<elseif $slaves[_s].devotion < -20>> + $he wept at the sight of cum pooling from $his @@.mediumorchid;defiled <<if $slaves[_s].mpreg == 1>>asshole<<else>>pussy<</if>>.@@ + <<set $slaves[_s].devotion -= 10>> + <<else>> + you made it @@.hotpink;enjoyable@@ at least. + <<set $slaves[_s].devotion += 2>> + <</if>> + <<if $slaves[_s].mpreg == 1>><<set $slaves[_s].anus = 1>><<else>><<set $slaves[_s].vagina = 1>><</if>> + <</if>> + <<if ($slaves[_s].fetish == "pregnancy") && ($slaves[_s].fetishStrength > 60)>> + <<if $slaves[_s].fetish == "mindbroken">> + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + As a pregnancy fetishist, @@.hotpink;$he confidently believes this wedding will be the high point of $his life.@@ + <<set $slaves[_s].devotion += 20>> + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + As a hateful pregnancy fetishist, @@.hotpink;getting pregnant was the best part of the ceremony.@@ + <<set $slaves[_s].devotion += 1>> + <<elseif $slaves[_s].devotion < -20>> + As a pregnancy fetishist, getting raped pregnant by someone $he hates leaves $him with very mixed feelings. + <<else>> + As a pregnancy fetishist, @@.hotpink;$he thoroughly enjoyed getting knocked up in such an ostentatious fashion.@@ + <<set $slaves[_s].devotion += 10>> + <</if>> + <</if>> + <<if $slaves[_s].relationship != 0>> + <<if $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<if $slaves[_s].relationship > 0>> + $His <<if $slaves[_s].relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $slaves[_s].relationship > 2>>ex<<else>>companion<</if>>'s future. + <<if $slaves[_s].relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif $slaves[_s].relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif $slaves[_s].devotion < -20>> + <<if $slaves[_s].relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set $slaves[_s].devotion -= 40, $slaves[_s].trust -= 40>> + <<elseif $slaves[_s].relationship == 4>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set $slaves[_s].devotion -= 40, $slaves[_s].trust -= 40>> + <<elseif $slaves[_s].relationship == 3>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set $slaves[_s].devotion -= 50, $slaves[_s].trust -= 30>> + <<elseif $slaves[_s].relationship > 0>> + Both $him and $his friend @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $slaves[_s].devotion -= 20, $slaves[_s].trust -= 20>> + <</if>> + <<else>> + <<if $slaves[_s].relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set $slaves[_s].devotion -= 10, $slaves[_s].trust -= 10>> + <<elseif $slaves[_s].relationship == 4>> + Both $him and $his ex @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked pregnant in such a manner. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $slaves[_s].devotion -= 30, $slaves[_s].trust -= 20>> + <<elseif $slaves[_s].relationship == 3>> + Both $him and $his ex are @@.mediumorchid;saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;jealous@@ of you for snagging such catch out from under _him2. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set $slaves[_s].devotion -= 15, $slaves[_s].trust -= 10>> + <<elseif $slaves[_s].relationship > 0>> + Both $him and $his friend are @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set $slaves[_s].devotion -= 5, $slaves[_s].trust -= 5>> + <</if>> + <</if>> + <</if>> + <<set $slaves[_s].relationship = -3>> + <<if $slaves[_s].mpreg == 1>><<set $slaves[_s].analCount += 1, $analTotal += 1>><<else>><<set $slaves[_s].vaginalCount += 1, $vaginalTotal += 1>><</if>> + <<set $rep += 750>> + <<if $slaves[_s].fetish == "mindbroken">> + <<set $desc = "a framed shot of you impregnating the blank-faced " + $slaves[_s].slaveName + " at your wedding">> + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<set $desc = "a framed shot of you impregnating the joyous " + $slaves[_s].slaveName + " at your wedding">> + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + <<set $desc = "a framed shot of you forcefully impregnating the disinterested " + $slaves[_s].slaveName + " at your wedding">> + <<elseif $slaves[_s].devotion < -20>> + <<set $desc = "a framed shot of you forcefully impregnating the tear soaked " + $slaves[_s].slaveName + " at your wedding">> + <<else>> + <<set $desc = "a framed shot of you impregnating " + $slaves[_s].slaveName + " at your wedding">> + <</if>> + <<set $trinkets.push($desc)>> + <<if $arcologies[0].FSRestart != "unset" && ($slaves[_s].breedingMark == 0 || $propOutcome == 0) && $eugenicsFullControl != 1>> + You have @@.red;angered@@ the Societal Elite by this public showing of everything they stand against. + <<set $failedElite += 250>> + <</if>> + +<<elseif $weddingPlanned == 2>> + + The ceremony to bind <<= SlaveFullName($slaves[_s])>> to you as your slave wife is an all day affair. + <<if $slaves[_s].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[_s].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[_s].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[_s].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. + <<elseif $slaves[_s].devotion+$slaves[_s].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[_s].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[_s].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[_s].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. + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].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[_s].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[_s].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[_s].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. + <<elseif $slaves[_s].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[_s].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[_s].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[_s].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. + <<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[_s].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[_s].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[_s].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. + <</if>> + <br> + <<if $PC.surname && $slaves[_s].slaveSurname != $PC.surname>> + <br><br><span id="surnaming"> + <<link "Give $him your surname as well">> + <<replace "#surnaming">> + <<set $slaves[_s].slaveSurname = $PC.surname>> + You also proclaim your new slave wife $slaves[_s].slaveName $slaves[_s].slaveSurname. The new Mrs. $slaves[_s].slaveSurname hears this, of course, and + <<if $slaves[_s].fetish == "mindbroken">> + shows no reaction. Like many things, names mean nothing to $him now. + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + breaks down again. + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + scoffs audibly. + <<elseif $slaves[_s].devotion < -20>> + breaks down again. + <<else>> + nods acceptingly. + <</if>> + <</replace>> + <</link>> + </span> + <</if>> + + <<if ndef $slaves[_s].publicCount>> + <<set $slaves[_s].publicCount = 0>> + <</if>> + <<if $slaves[_s].vagina > 0>> + <<set $slaves[_s].vaginalCount += 50>> + <<set $vaginalTotal += 50>> + <<set $slaves[_s].publicCount += 50>> + <</if>> + <<if $slaves[_s].anus < 3>> + <<set $slaves[_s].anus += 1>> + You can feel $his ass, still somewhat gaped from its ordeal. It's been @@.lime;loosened@@ by $his wedding party. + <</if>> + <<if $slaves[_s].relationship != 0>> + <<if $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<if $slaves[_s].relationship > 0>> + $His <<if $slaves[_s].relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $slaves[_s].relationship > 2>>love<<else>>companion<</if>>'s future. + <<if $slaves[_s].relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif $slaves[_s].relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <<elseif $slaves[_s].relationship == -2>> + $He feels like $he betrayed you by getting fucked by so many others and struggles to convince $himself it was what you wanted. + <<elseif $slaves[_s].relationship == -1>> + Judging by the smile on $his sleeping face, today may have been the @@.hotpink;best day of $his life.@@ + <<set $slaves[_s].devotion = 100, $slaves[_s].trust = 100>> + <</if>> + <<elseif $slaves[_s].devotion < -20>> + <<if $slaves[_s].relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only after such a thrilling orgy and @@.gold;fears@@ what will happen if $he strays. + <<set $slaves[_s].devotion -= 40, $slaves[_s].trust -= 40>> + <<elseif $slaves[_s].relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set $slaves[_s].devotion -= 40, $slaves[_s].trust -= 40>> + <<elseif $slaves[_s].relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set $slaves[_s].devotion -= 50, $slaves[_s].trust -= 30>> + <<elseif $slaves[_s].relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $slaves[_s].devotion -= 20, $slaves[_s].trust -= 20>> + <</if>> + <<else>> + <<if $slaves[_s].relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays, especially after such a lovely orgy. + <<set $slaves[_s].devotion -= 10, $slaves[_s].trust -= 10>> + <<elseif $slaves[_s].relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $slaves[_s].devotion -= 30, $slaves[_s].trust -= 20>> + <<elseif $slaves[_s].relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;resentful@@ that you'd treat such a catch that way. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set $slaves[_s].devotion -= 15, $slaves[_s].trust -= 10>> + <<elseif $slaves[_s].relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set $slaves[_s].devotion -= 5, $slaves[_s].trust -= 5>> + <</if>> + <</if>> + <</if>> + <<set $slaves[_s].relationship = -3>> + <<set $slaves[_s].oralCount += 50>> + <<set $oralTotal += 50>> + <<set $slaves[_s].analCount += 50>> + <<set $analTotal += 50>> + <<set $slaves[_s].publicCount += 100>> + <<if canGetPregnant($slaves[_s]) && $slaves[_s].eggType == "human">> + <<= knockMeUp($slaves[_s], 20, 2, -2)>> + <</if>> + <<set $rep += 1000>> + <<if $slaves[_s].fetish == "mindbroken">> + <<set $desc = "a framed shot of the broken " + $slaves[_s].slaveName + " getting gangbanged at your wedding">> + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<set $desc = "a framed shot of the tear and cum soaked " + $slaves[_s].slaveName + " getting gangbanged at your wedding">> + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + <<set $desc = "a framed shot of the glowering " + $slaves[_s].slaveName + " getting gangbanged at your wedding">> + <<elseif $slaves[_s].devotion < -20>> + <<set $desc = "a framed shot of " + $slaves[_s].slaveName + " getting gangbanged and weeping at your wedding">> + <<else>> + <<set $desc = "a framed shot of " + $slaves[_s].slaveName + " getting gangbanged at your wedding">> + <</if>> + <<set $trinkets.push($desc)>> + +<<else>> + + The ceremony to bind <<= SlaveFullName($slaves[_s])>> 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[_s].slaveName appears after everyone has had a chance to socialize,<<if ($slaves[_s].amp == 1)>> carried by another slave since $he's a quadruple amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in + <<if ($slaves[_s].vagina == 0)>> + white, since $he's a virgin. + <<elseif ($slaves[_s].pregKnown == 1)>> + light pink, since $he's pregnant. + <<elseif ($slaves[_s].vagina < 0) && ($slaves[_s].anus == 0)>> + white, since $he's an anal virgin. + <<elseif ($slaves[_s].vagina < 0) && ($slaves[_s].boobs > 500)>> + electric blue, since $he's a shemale. + <<elseif ($slaves[_s].vagina < 0)>> + pale blue, since $he's a sissy slave. + <<elseif ($slaves[_s].dick > 0)>> + hot pink, since $he's a futa slave. + <<else>> + light pink, since $he's an experienced sex slave. + <</if>> + A filmy veil covers $his head and shoulders. $His lacy bridal bra + <<if ($slaves[_s].boobs > 4000)>> + is a marvel of engineering, discreetly reinforced to support $his gigantic udders. + <<elseif ($slaves[_s].boobs > 1200)>> + just barely restrains $his huge boobs, leaving the tops of $his areolae visible. + <<elseif ($slaves[_s].boobs > 400)>> + flatters $his pretty breasts. + <<else>> + flatters $his pretty chest. + <</if>> + <<if $slaves[_s].bellyPreg >= 600000>> + $His expansive, squirming pregnant belly makes $his bridal wear particularly obscene. + <<elseif ($slaves[_s].bellyPreg >= 1500)>> + $His _belly pregnant belly protrudes out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyImplant >= 1500)>> + $His _belly <<print $slaves[_s].bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyFluid >= 10000)>> + $His hugely bloated, <<print $slaves[_s].inflationType>>-filled belly protrudes out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyFluid >= 5000)>> + $His bloated, <<print $slaves[_s].inflationType>>-stuffed belly protrudes out the front of $his bridal wear. + <<elseif ($slaves[_s].bellyFluid >= 1500)>> + $His distended, <<print $slaves[_s].inflationType>>-belly protrudes out the front of $his bridal wear. + <</if>> + <<if $slaves[_s].dickAccessory == ("chastity") || $slaves[_s].dickAccessory == ("combined chastity")>> + $His slave dick is hidden by its chastity cage. + <<elseif canAchieveErection($slaves[_s])>> + <<if ($slaves[_s].dick > 4) && ($slaves[_s].belly >= 5000)>> + $He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $slaves[_s].bellyPreg >= 3000>>pregnant <</if>>belly. + <<elseif $slaves[_s].dick > 4>> + $He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. + <<else>> + $His erection tents the front of $his lacy g-string. + <</if>> + <<elseif ($slaves[_s].dick > 0)>> + <<if $slaves[_s].dick > 10>> + $His huge soft cock is allowed to dangle freely as no g-string could hope to contain it. + <<elseif $slaves[_s].dick > 4>> + $His big soft cock forms a lewd mass, stuffed into $his lacy g-string. + <<else>> + $His lacy g-string perfectly conceals $his soft dick. + <</if>> + <<else>> + <<if $slaves[_s].clit > 1>> + $His huge clit is quite hard, making $him shift uncomfortably as $his lacy g-string stimulates it. + <<else>> + $His lacy g-string covers $his womanhood demurely. + <</if>> + <</if>> + There is no aisle for $him to <<if $slaves[_s].amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $slaves[_s].amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you + <<if $slaves[_s].fetish == "mindbroken">> + despite the fact that $he had to be pushed into walking towards you. + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + of $his own choice, and $he does so with a smile. + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + of $his own choice, and $he does so with hesitation. + <<elseif $slaves[_s].devotion < -20>> + of $his own (forced) choice, and $he does so with wavering steps. + <<else>> + of $his own choice, and $he does so willingly. + <</if>> + <br><br> + When $he's in front of you, <<if $slaves[_s].amp == 1>>the slave carrying $his limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knees so $his head is level with your crotch<</if>>. <<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[_s].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> + <<if $PC.surname && $slaves[_s].slaveSurname != $PC.surname>> + <br><br><span id="surnaming"> + <<link "Give $him your surname">> + <<replace "#surnaming">> + <<set $slaves[_s].slaveSurname = $PC.surname>> + You also proclaim your new slave wife $slaves[_s].slaveName $slaves[_s].slaveSurname. The new Mrs. $slaves[_s].slaveSurname hears this, of course, and + <<if $slaves[_s].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[_s].devotion+$slaves[_s].trust >= 175>> + breaks down again; it's like a dream come true. + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + scoffs audibly; just another burden for $him to carry. + <<elseif $slaves[_s].devotion < -20>> + breaks down again; this is nothing more than another unwanted link to you. + <<else>> + nods acceptingly. Your will is $his will, after all. + <</if>> + <</replace>> + <</link>> + </span> + <</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[_s].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. + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<if ($slaves[_s].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[_s].devotion < -20 && $slaves[_s].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. + <<elseif $slaves[_s].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. + <<else>> + with a will. $He approaches $his task <<if ($slaves[_s].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[_s].relationship != 0>> + <<if $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<if $slaves[_s].relationship > 0>> + $His <<if $slaves[_s].relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $slaves[_s].relationship > 2>>love<<else>>companion<</if>>'s future. + <<if $slaves[_s].relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif $slaves[_s].relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif $slaves[_s].devotion < -20>> + <<if $slaves[_s].relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set $slaves[_s].devotion -= 40, $slaves[_s].trust -= 40>> + <<elseif $slaves[_s].relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 40, $slaves[_m].trust -= 40>> + <<set $slaves[_s].devotion -= 40, $slaves[_s].trust -= 40>> + <<elseif $slaves[_s].relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set $slaves[_s].devotion -= 30, $slaves[_s].trust -= 30>> + <<elseif $slaves[_s].relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $slaves[_s].devotion -= 20, $slaves[_s].trust -= 20>> + <</if>> + <<else>> + <<if $slaves[_s].relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set $slaves[_s].devotion -= 10, $slaves[_s].trust -= 10>> + <<elseif $slaves[_s].relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $slaves[_s].devotion -= 20, $slaves[_s].trust -= 20>> + <<elseif $slaves[_s].relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set $slaves[_s].devotion -= 10, $slaves[_s].trust -= 10>> + <<elseif $slaves[_s].relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set $slaves[_s].devotion -= 5, $slaves[_s].trust -= 5>> + <</if>> + <</if>> + <</if>> + <<set $slaves[_s].relationship = -3>> + <<set $slaves[_s].oralCount += 1>> + <<set $oralTotal += 1>> + <<set $rep += 750>> + <<if $slaves[_s].fetish == "mindbroken">> + <<set $desc = "a framed shot of your uneventful wedding to the mindbroken " + $slaves[_s].slaveName>> + <<elseif $slaves[_s].devotion+$slaves[_s].trust >= 175>> + <<set $desc = "a framed shot of your romantic wedding to the joyous " + $slaves[_s].slaveName>> + <<elseif $slaves[_s].devotion < -20 && $slaves[_s].trust > 20>> + <<set $desc = "a framed shot of your forced wedding to the hateful " + $slaves[_s].slaveName>> + <<elseif $slaves[_s].devotion < -20>> + <<set $desc = "a framed shot of your forced wedding to the weeping " + $slaves[_s].slaveName>> + <<else>> + <<set $desc = "a framed shot of your wedding to " + $slaves[_s].slaveName>> + <</if>> + <<set $trinkets.push($desc)>> + +<</if>> \ No newline at end of file diff --git a/src/uncategorized/seWeddingTriple.tw b/src/uncategorized/seWeddingTriple.tw new file mode 100644 index 0000000000000000000000000000000000000000..e9da871332232033a64b39d1623b4788ed4da406 --- /dev/null +++ b/src/uncategorized/seWeddingTriple.tw @@ -0,0 +1,380 @@ +:: SE wedding triple [nobr] + +<<set _ML = $marrying.length>> +<<set _slave1 = getSlave($marrying[0])>> +<<set _slave2 = getSlave($marrying[1])>> +<<set _slave3 = getSlave($marrying[2])>> +<<setLocalPronouns _slave1>> +<<setLocalPronouns _slave2 2>> +<<setLocalPronouns _slave3 3>> +<<if _ML > 3>> + <<set _slave4 = getSlave($marrying[3])>> + <<setLocalPronouns _slave4 4>> +<</if>> + +/* 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. + +<<if $weddingPlanned == 3>> + <<set _pregWedding = 1>> + <<if (!isFertile(_slave1))>> + <<set _pregWedding = 0>> + <<if (!isFertile(_slave2))>> + <<set _pregWedding = 0>> + <<else>> + <<set _pregWedding = 1>> + <</if>> + <<if (!isFertile(_slave3))>> + <<set _pregWedding = 0>> + <<else>> + <<set _pregWedding = 1>> + <</if>> + <<if _ML == 4>> + <<if (!isFertile(_slave4))>> + <<set _pregWedding = 0>> + <<else>> + <<set _pregWedding = 1>> + <</if>> + <</if>> + <</if>> +<</if>> + +/* TODO: this will need some sort of check or case for if only one slave cannot be impregnated */ + +<<if _pregWedding == 0>> + Your slaves can no longer be impregnated as planned for the ceremony, so it has been hurriedly recast as a normal slave wedding. + <<set $weddingPlanned = 1>> + <br><br> +<</if>> + +<<if $weddingPlanned == 3>> + + /* TODO: write a 3+ slave variant */ + +<<elseif $weddingPlanned == 2>> + + 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. + <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. + <<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. + <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. + <<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. + <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. + <<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. + <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. + <<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. + <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. + <</if>> + <br> + <<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>> + <br><br><span id="surnaming"> + <<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 hears 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>> + breaks down again. + <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + scoffs audibly. + <<elseif $activeSlave.devotion < -20>> + breaks down again. + <<else>> + nods acceptingly. + <</if>> + <</replace>> + <</link>> + </span> + <</if>> + + <<if ndef $activeSlave.publicCount>> + <<set $activeSlave.publicCount = 0>> + <</if>> + <<if $activeSlave.vagina > 0>> + <<set $activeSlave.vaginalCount += 50>> + <<set $vaginalTotal += 50>> + <<set $activeSlave.publicCount += 50>> + <</if>> + <<if $activeSlave.anus < 3>> + <<set $activeSlave.anus += 1>> + You can feel $his ass, still somewhat gaped from its ordeal. It's been @@.lime;loosened@@ by $his wedding party. + <</if>> + <<if $activeSlave.relationship != 0>> + <<if $activeSlave.devotion+$activeSlave.trust >= 175>> + <<if $activeSlave.relationship > 0>> + $His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future. + <<if $activeSlave.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif $activeSlave.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <<elseif $activeSlave.relationship == -2>> + $He feels like $he betrayed you by getting fucked by so many others and struggles to convince $himself it was what you wanted. + <<elseif $activeSlave.relationship == -1>> + Judging by the smile on $his sleeping face, today may have been the @@.hotpink;best day of $his life.@@ + <<set $activeSlave.devotion = 100, $activeSlave.trust = 100>> + <</if>> + <<elseif $activeSlave.devotion < -20>> + <<if $activeSlave.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only after such a thrilling orgy and @@.gold;fears@@ what will happen if $he strays. + <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> + <<elseif $activeSlave.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;furious@@ to watch _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 60, $slaves[_m].trust -= 40>> + <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> + <<elseif $activeSlave.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 30>> + <<elseif $activeSlave.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> + <</if>> + <<else>> + <<if $activeSlave.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays, especially after such a lovely orgy. + <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> + <<elseif $activeSlave.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is especially @@.mediumorchid;hurt@@ after watching _his2 life's love get stolen away and fucked by so many others. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $activeSlave.devotion -= 30, $activeSlave.trust -= 20>> + <<elseif $activeSlave.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. $slaves[_m].slaveName is a little @@.mediumorchid;resentful@@ that you'd treat such a catch that way. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set $activeSlave.devotion -= 15, $activeSlave.trust -= 10>> + <<elseif $activeSlave.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> + <</if>> + <</if>> + <</if>> + <<set $activeSlave.relationship = -3>> + <<set $activeSlave.oralCount += 50>> + <<set $oralTotal += 50>> + <<set $activeSlave.analCount += 50>> + <<set $analTotal += 50>> + <<set $activeSlave.publicCount += 100>> + <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> + <<= knockMeUp($activeSlave, 20, 2, -2)>> + <</if>> + <<set $rep += 1000>> + <<if $activeSlave.fetish == "mindbroken">> + <<set $desc = "a framed shot of the broken " + $activeSlave.slaveName + " getting gangbanged at your wedding">> + <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> + <<set $desc = "a framed shot of the tear and cum soaked " + $activeSlave.slaveName + " getting gangbanged at your wedding">> + <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + <<set $desc = "a framed shot of the glowering " + $activeSlave.slaveName + " getting gangbanged at your wedding">> + <<elseif $activeSlave.devotion < -20>> + <<set $desc = "a framed shot of " + $activeSlave.slaveName + " getting gangbanged and weeping at your wedding">> + <<else>> + <<set $desc = "a framed shot of " + $activeSlave.slaveName + " getting gangbanged at your wedding">> + <</if>> + <<set $trinkets.push($desc)>> + +<<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. + <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)>> + white, since $he's a virgin. + <<elseif ($activeSlave.pregKnown == 1)>> + light pink, since $he's pregnant. + <<elseif ($activeSlave.vagina < 0) && ($activeSlave.anus == 0)>> + white, since $he's an anal virgin. + <<elseif ($activeSlave.vagina < 0) && ($activeSlave.boobs > 500)>> + electric blue, since $he's a shemale. + <<elseif ($activeSlave.vagina < 0)>> + pale blue, since $he's a sissy slave. + <<elseif ($activeSlave.dick > 0)>> + hot pink, since $he's a futa slave. + <<else>> + light pink, since $he's an experienced sex slave. + <</if>> + A filmy veil covers $his head and shoulders. $His lacy bridal bra + <<if ($activeSlave.boobs > 4000)>> + is a marvel of engineering, discreetly reinforced to support $his gigantic udders. + <<elseif ($activeSlave.boobs > 1200)>> + just barely restrains $his huge boobs, leaving the tops of $his areolae visible. + <<elseif ($activeSlave.boobs > 400)>> + flatters $his pretty breasts. + <<else>> + flatters $his pretty chest. + <</if>> + <<if $activeSlave.bellyPreg >= 600000>> + $His expansive, squirming pregnant belly makes $his bridal wear particularly obscene. + <<elseif ($activeSlave.bellyPreg >= 1500)>> + $His _belly pregnant belly protrudes out the front of $his bridal wear. + <<elseif ($activeSlave.bellyImplant >= 1500)>> + $His _belly <<print $activeSlave.bellyImplant>>cc belly implant protrudes $his middle out the front of $his bridal wear. + <<elseif ($activeSlave.bellyFluid >= 10000)>> + $His hugely bloated, <<print $activeSlave.inflationType>>-filled belly protrudes out the front of $his bridal wear. + <<elseif ($activeSlave.bellyFluid >= 5000)>> + $His bloated, <<print $activeSlave.inflationType>>-stuffed belly protrudes out the front of $his bridal wear. + <<elseif ($activeSlave.bellyFluid >= 1500)>> + $His distended, <<print $activeSlave.inflationType>>-belly protrudes out the front of $his bridal wear. + <</if>> + <<if $activeSlave.dickAccessory == ("chastity") || $activeSlave.dickAccessory == ("combined chastity")>> + $His slave dick is hidden by its chastity cage. + <<elseif canAchieveErection($activeSlave)>> + <<if ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>> + $He's hugely erect, with $his lacy g-string only serving to hold $his dick agonizingly pressed against the bottom of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly. + <<elseif $activeSlave.dick > 4>> + $He's hugely erect, with $his lacy g-string only serving to hold $his dick upright along $his belly. + <<else>> + $His erection tents the front of $his lacy g-string. + <</if>> + <<elseif ($activeSlave.dick > 0)>> + <<if $activeSlave.dick > 10>> + $His huge soft cock is allowed to dangle freely as no g-string could hope to contain it. + <<elseif $activeSlave.dick > 4>> + $His big soft cock forms a lewd mass, stuffed into $his lacy g-string. + <<else>> + $His lacy g-string perfectly conceals $his soft dick. + <</if>> + <<else>> + <<if $activeSlave.clit > 1>> + $His huge clit is quite hard, making $him shift uncomfortably as $his lacy g-string stimulates it. + <<else>> + $His lacy g-string covers $his womanhood demurely. + <</if>> + <</if>> + There is no aisle for $him to <<if $activeSlave.amp == 1>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.amp == 1>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you + <<if $activeSlave.fetish == "mindbroken">> + despite the fact that $he had to be pushed into walking towards you. + <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> + of $his own choice, and $he does so with a smile. + <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + of $his own choice, and $he does so with hesitation. + <<elseif $activeSlave.devotion < -20>> + of $his own (forced) choice, and $he does so with wavering steps. + <<else>> + of $his own choice, and $he does so willingly. + <</if>> + <br><br> + When $he's in front of you, <<if $activeSlave.amp == 1>>the slave carrying $his limbless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knees so $his head is level with your crotch<</if>>. <<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> + <<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>> + <br><br><span id="surnaming"> + <<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 hears 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>> + breaks down again; it's like a dream come true. + <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + scoffs audibly; just another burden for $him to carry. + <<elseif $activeSlave.devotion < -20>> + breaks down again; this is nothing more than another unwanted link to you. + <<else>> + nods acceptingly. Your will is $his will, after all. + <</if>> + <</replace>> + <</link>> + </span> + <</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. + <<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. + <<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. + <<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. + <<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. + <</if>> + <<if $activeSlave.relationship != 0>> + <<if $activeSlave.devotion+$activeSlave.trust >= 175>> + <<if $activeSlave.relationship > 0>> + $His <<if $activeSlave.relationship > 2>>ex<<else>>friend<</if>> is @@.mediumorchid;disappointed@@ that their relationship had to end and @@.gold;worries@@ for _his2 <<if $activeSlave.relationship > 2>>love<<else>>companion<</if>>'s future. + <<if $activeSlave.relationship == 4>> + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<elseif $activeSlave.relationship == 3>> + <<set $slaves[_m].devotion -= 3, $slaves[_m].trust -= 3>> + <<else>> + <<set $slaves[_m].devotion -= 1, $slaves[_m].trust -= 1>> + <</if>> + <</if>> + <<elseif $activeSlave.devotion < -20>> + <<if $activeSlave.relationship == -1>> + $He @@.mediumorchid;hates@@ that $he has to be yours only and @@.gold;fears@@ what will happen if $he strays. + <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> + <<elseif $activeSlave.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 40, $slaves[_m].trust -= 40>> + <<set $activeSlave.devotion -= 40, $activeSlave.trust -= 40>> + <<elseif $activeSlave.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 30, $slaves[_m].trust -= 30>> + <<set $activeSlave.devotion -= 30, $activeSlave.trust -= 30>> + <<elseif $activeSlave.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;fear@@ for each other's future. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> + <</if>> + <<else>> + <<if $activeSlave.relationship == -1>> + $He @@.mediumorchid;dislikes@@ that $he has to be yours only and @@.gold;worries@@ what will happen if $he strays. + <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> + <<elseif $activeSlave.relationship == 4>> + Both $him and $his ex are @@.mediumorchid;resent@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 20, $slaves[_m].trust -= 20>> + <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> + <<elseif $activeSlave.relationship == 3>> + Both $him and $his ex are @@.mediumorchid;are saddened@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 10, $slaves[_m].trust -= 10>> + <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> + <<elseif $activeSlave.relationship > 0>> + Both $him and $his friend are @@.mediumorchid;are disappointed@@ that their relationship had to end and @@.gold;worry@@ for each other. + <<set $slaves[_m].devotion -= 5, $slaves[_m].trust -= 5>> + <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> + <</if>> + <</if>> + <</if>> + <<set $activeSlave.relationship = -3>> + <<set $activeSlave.oralCount += 1>> + <<set $oralTotal += 1>> + <<set $rep += 750>> + <<if $activeSlave.fetish == "mindbroken">> + <<set $desc = "a framed shot of your uneventful wedding to the mindbroken " + $activeSlave.slaveName>> + <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> + <<set $desc = "a framed shot of your romantic wedding to the joyous " + $activeSlave.slaveName>> + <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + <<set $desc = "a framed shot of your forced wedding to the hateful " + $activeSlave.slaveName>> + <<elseif $activeSlave.devotion < -20>> + <<set $desc = "a framed shot of your forced wedding to the weeping " + $activeSlave.slaveName>> + <<else>> + <<set $desc = "a framed shot of your wedding to " + $activeSlave.slaveName>> + <</if>> + <<set $trinkets.push($desc)>> + +<</if>> \ No newline at end of file diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 62c24b48ddb09b61625e35c7cefdf75b0a47f2b5..075b559b56dfe4c9e0a7d381db74e4ca92e695eb 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -346,11 +346,28 @@ <<if $activeSlave.devotion >= 100 && $activeSlave.relationship < 0 && $activeSlave.relationship > -3>> | <<link "Talk to $him about relationships" "Matchmaking">><<set $subSlave = 0, $eventSlave = $activeSlave>><</link>> <</if>> - <<if $MixedMarriage == 1 && $activeSlave.relationship != 5 && $activeSlave.relationship != -3>> - <<if ($weddingPlanned != 0)>> - | You already have a wedding planned this week. + <<set _ML = $marrying.length>> + <<if (($MixedMarriage == 1 || $cheatMode == 1) && $activeSlave.relationship != 5 && $activeSlave.relationship != -3)>> + <<for _m = 0; _m < _ML; _m++>> + <<if $marrying[_m] == $activeSlave.ID>> + <<set _eligible = 0>> + <<else>> + <<set _eligible = 1>> + <</if>> + <</for>> + <<if _eligible != 0>> + <<if (_ML < 2)>> + <<if ($cheatMode == 1) || (_ML == 0)>> + | <<link "Marry $him" "FMarry">><</link>> + <<else>> + | //You already have a wedding planned for this weekend// + <</if>> + <<else>> + | //You can only marry up to two slaves per week// + <</if>> <<else>> - | <<link "Marry $him" "FMarry">><</link>> + /* FIXME: this message only displays for the last slave being married */ + | //You are already marrying $him this weekend// <</if>> <</if>> <<if $cheatMode == 1>> diff --git a/src/uncategorized/storyCaption.tw b/src/uncategorized/storyCaption.tw index 055dc2950de5f3effeb2a55178caa533b6c04cb1..4ba552a5e51d8b18497a4ab4d03e0b39e7d09134 100644 --- a/src/uncategorized/storyCaption.tw +++ b/src/uncategorized/storyCaption.tw @@ -127,11 +127,14 @@ <<set $food = Math.trunc($food)>> <<set $foodConsumption = (($lowerClass*$lowerRate) + ($middleClass*$middleRate) + ($upperClass*$upperRate) + ($topClass*$topRate))>> <span id="food"> - <<if $food > $foodConsumption>> /* if there is enough food for the next week */ + <<if $food > $foodConsumption>> /* if there is enough food for the next week */ @@.chocolate;Food@@ <<else>> @@.red;Food@@ <</if>> + <<if $food < 0>> + <<set $food = 0>> + <</if>> | <<print massFormat($food)>> </span> @@ -150,10 +153,10 @@ <<set _TFood1 = $food>> <<textbox "$food" $food>> <<link "Apply">> - <<if $food > 0>> - <<set $food = Math.trunc(Number($food) || _TFood1), $cheater = 1>> - <<else>> + <<if $food < 0>> <<set $food = 0>> + <<else>> + <<set $food = Math.trunc(Number($food) || _TFood1), $cheater = 1>> <</if>> <<replace "#food">> <<if $food > $foodConsumption>> /* if there is enough food for the next week */