diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index e168efe79102c15813156e6e6ce67e4386e64d5b..ab5ff93babc9ee0ca6b8f7bf156a3212890fe177 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -4,6 +4,11 @@ Pregmod 03/11/2019 + 3 + -fixes + -css tweaks + -body modification reactions expanded + 2 -fixes -code cleaning diff --git a/devNotes/twine CSS b/devNotes/twine CSS index 4a03614a0780a2eb824b0b6b109cabc8ff3b8bee..0c11d518885273e3fa7335bb94c87d15efb5d4a1 100644 --- a/devNotes/twine CSS +++ b/devNotes/twine CSS @@ -31,7 +31,7 @@ img { text-indent: -10000px; } -.imageColumn { +.imageColumn { /* TODO: this is mostly a copy of imageRef to get its flex features working properly. They can probably be removed from imageRef at some point */ display: flex; flex-direction: column; flex-wrap: wrap; @@ -123,7 +123,6 @@ img { .lrgVector svg { width: 336px; - height: 600px; } object { @@ -182,8 +181,7 @@ span.plusButton > a:hover { text-decoration: none; } span.minusButton > a:hover { text-decoration: none; } span.zeroButton > a:hover { text-decoration: none; } -/* Colors are made as css classes, to allow them to be - changed for a light color scheme (for example). */ +/* Colors are made as css classes, to allow them to be changed for a light color scheme (for example). */ .link { color: #68D } /* link color */ .aquamarine { color: aquamarine } .coral { color: coral } @@ -265,7 +263,7 @@ span.zeroButton > a:hover { text-decoration: none; } .springgreen a { color: springgreen } .tan a { color: tan } .chocolate a { color: chocolate } -.saddlebrown { color: saddlebrown } +.saddlebrown a { color: saddlebrown } .teal a { color: teal } .yellow a { color: yellow } .yellowgreen a { color: yellowgreen } diff --git a/fixSpellingMistakes b/fixSpellingMistakes index 01893e9145d233751e217f36e4f62d62ba27f36d..b45351ab08abc0b6f8ed3313f1b1500516e6e533 100755 --- a/fixSpellingMistakes +++ b/fixSpellingMistakes @@ -6,4 +6,3 @@ if [ ! -d ".git" ]; then fi git ls-files -z src/*.tw | grep -z -v .min.tw | grep -z -v setupVars.tw | xargs -0 sed -i -f devTools/spell_check.txt - diff --git a/src/Mods/DinnerParty/dinnerPartyExecution.tw b/src/Mods/DinnerParty/dinnerPartyExecution.tw index f29e5295ba7cf2ed38177977228de71131f0426b..a0eea88e491538482a93e6ddbea69cb7490314b1 100644 --- a/src/Mods/DinnerParty/dinnerPartyExecution.tw +++ b/src/Mods/DinnerParty/dinnerPartyExecution.tw @@ -11,11 +11,13 @@ /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/art/vector/VectorArtJS.js b/src/art/vector/VectorArtJS.js index dc03b5d4d1e20a76653784d395adbcb518a1ff83..58f9d327a7f56c2ca972585530ded72bb4b462d6 100644 --- a/src/art/vector/VectorArtJS.js +++ b/src/art/vector/VectorArtJS.js @@ -2740,7 +2740,7 @@ window.LegacyVectorArt = function(slave, artSize) { if (slave.vagina > 0) { if (slave.dick > 0) { r += '<div class="highPenis">'; - if (slave.scrotum > 0) + if (slave.scrotum > 0) r += `<img class='paperdoll' src=${skinFilePath}/ball ${ballSize}.svg' style='${skinFilter}'>`; if (canAchieveErection(slave)) { r += `<img class='paperdoll' src=${skinFilePath}/penis ${penisSize}.svg' style='${skinFilter}'>`; @@ -2754,7 +2754,7 @@ window.LegacyVectorArt = function(slave, artSize) { } else { if (slave.dick > 0) { r += '<div class="lowPenis">'; - if (slave.scrotum > 0) + if (slave.scrotum > 0) r += `<img class='paperdoll' src=${skinFilePath}/ball ${ballSize}.svg' style='${skinFilter}'>`; if (canAchieveErection(slave)) { r += `<img class='paperdoll' src=${skinFilePath}/penis ${penisSize}.svg' style='${skinFilter}'>`; diff --git a/src/art/vector_revamp/vectorRevampedArtControl.js b/src/art/vector_revamp/vectorRevampedArtControl.js index d8eb725f82707f5c0075fc5079e9b7bbda9bf26d..8be76f964b583f31b7239a461db15b90665c57f3 100644 --- a/src/art/vector_revamp/vectorRevampedArtControl.js +++ b/src/art/vector_revamp/vectorRevampedArtControl.js @@ -8,7 +8,7 @@ window.RevampedVectorArt = function(slave) { else T.art_display_id = 1; T.art_display_class = `ad${T.art_display_id}`; - + /*Using JS from vectorRevampedArtControl.tw*/ T.revampedVectorArtControl = getVectorArtRevampedControl(T.art_display_class, slave, V.seeVectorArtHighlights, V.showBodyMods) diff --git a/src/gui/css/mainStyleSheet.tw b/src/gui/css/mainStyleSheet.tw index e948682e8db45c3f895d050f93c1ddf741e622c5..468eb5e3f82cea4d466a2daa49b745c03d9a0dd2 100644 --- a/src/gui/css/mainStyleSheet.tw +++ b/src/gui/css/mainStyleSheet.tw @@ -31,7 +31,7 @@ img { text-indent: -10000px; } -.imageColumn { +.imageColumn { /* TODO: this is mostly a copy of imageRef to get its flex features working properly. They can probably be removed from imageRef at some point */ display: flex; flex-direction: column; flex-wrap: wrap; diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index dffa037f6626b57d128840435eaf15b7fba465eb..1241b29310c51c3e7184a200c587e78a60d41f0e 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -69,13 +69,13 @@ You should have received a copy of the GNU General Public License along with thi <<set $slaves[_i].nationality = "Ancient Chinese Revivalist">> <</if>> <<if $slaves[_i].relationTarget != 0>> - <<set $slaves[_i].relationTarget += _NGPOffset>> + <<set $slaves[_i].relationTarget += _NGPOffset>> <</if>> <<if $slaves[_i].relationshipTarget != 0>> - <<set $slaves[_i].relationshipTarget += _NGPOffset>> + <<set $slaves[_i].relationshipTarget += _NGPOffset>> <</if>> <<if $slaves[_i].cloneID != 0>> - <<set $slaves[_i].cloneID += _NGPOffset>> + <<set $slaves[_i].cloneID += _NGPOffset>> <</if>> <<set $slaves[_i].rivalry = 0, $slaves[_i].rivalryTarget = 0, $slaves[_i].subTarget = 0>> <<set $slaves[_i].drugs = "no drugs">> @@ -146,7 +146,7 @@ You should have received a copy of the GNU General Public License along with thi <<set _seed = 1>> <</if>> <<if _seed == 0>> - <<set $slaves[_i].relation = 0, $slaves[_i].relationTarget = 0>> + <<set $slaves[_i].relation = 0, $slaves[_i].relationTarget = 0>> <</if>> <</if>> <<if $slaves[_i].relationship > 0>> @@ -156,7 +156,7 @@ You should have received a copy of the GNU General Public License along with thi <<set _seed = 1>> <</if>> <<if _seed == 0>> - <<set $slaves[_i].relationship = 0, $slaves[_i].relationshipTarget = 0>> + <<set $slaves[_i].relationship = 0, $slaves[_i].relationshipTarget = 0>> <</if>> <</if>> <</for>> @@ -345,7 +345,7 @@ You should have received a copy of the GNU General Public License along with thi }>> <<set $formatNumbers = 0>> - /*onlyintendeddickgirls variables */ + /* onlyintendeddickgirls variables */ <<set $makeDicks = 0>> /* economy reports variables */ @@ -368,7 +368,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $weightAffectsAssets = 1>> <<set $curativeSideEffects = 1>> - /*non-vanilla shit*/ + /* non-vanilla shit */ <<set $pedo_mode = 0>> <<set $minimumSlaveAge = 18>> <<set $fertilityAge = 13>> @@ -445,7 +445,7 @@ You should have received a copy of the GNU General Public License along with thi <</if>> /*Undefining corporation variables*/ - <<unset $corpCash,$personalShares,$publicShares,$corpDividend,$dividendTimer,$corpDiv,$corpRev,$corpDivExtraSlaves,$corpDivLegalSlaves,$corpDivBreakSlaves,$corpDivBreakSlaves2,$corpDivSurgerySlaves,$corpDivSurgerySlaves2,$corpDivTrainSlaves,$corpDivTrainSlaves2,$corpDivArcadeSlaves,$corpDivMenialSlaves,$corpDivDairySlaves,$corpDivWhoreSlaves,$corpRevOld,$corpAssetsSlaveOld,$corpAssetsSlave,$corpAssetsDevOld,$corpAssetsDev,$corpOverheadOld,$corpOpCostOld,$corpProfitOld,$corpSpecAccent,$corpSpecAge,$corpSpecAmputee,$corpSpecBalls,$corpSpecDevotion,$corpSpecDick,$corpSpecEducation,$corpSpecGender,$corpSpecGenitalia,$corpSpecWeight,$corpSpecHeight,$corpSpecHormones,$corpSpecImplants,$corpSpecInjection,$corpSpecIntelligence,$corpSpecMilk,$corpSpecMuscle,$corpSpecPussy,$corpSpecSexEd,$corpSpecTrust,$corpSpecVirgin,$corpDivExtraToArcade,$corpDivExtraToBreak,$corpDivExtraToMarket,$corpDivLegalToMenial,$corpDivLegalToSurgery,$corpDivLegalToTrain,$corpDivLegalToMarket,$corpDivBreakToMenial,$corpDivBreakToSurgery,$corpDivBreakToTrain,$corpDivBreakToMarket,$corpDivBreakFromMarket,$corpDivSurgeryToDairy,$corpDivSurgeryToTrain,$corpDivSurgeryToMarket,$corpDivSurgeryFromMarket,$corpDivTrainToWhore,$corpDivTrainToMarket,$corpDivTrainFromMarket,$corpDivArcadeFromMarket,$corpDivMenialFromMarket,$corpDivDairyFromMarket,$corpDivWhoreFromMarket>> + <<unset $corpAssetsDev, $corpAssetsDevOld, $corpAssetsSlave, $corpAssetsSlaveOld, $corpCash, $corpDiv, $corpDivArcadeFromMarket, $corpDivArcadeSlaves, $corpDivBreakFromMarket, $corpDivBreakSlaves, $corpDivBreakSlaves2, $corpDivBreakToMarket, $corpDivBreakToMenial, $corpDivBreakToSurgery, $corpDivBreakToTrain, $corpDivDairyFromMarket, $corpDivDairySlaves, $corpDivExtraSlaves, $corpDivExtraToArcade, $corpDivExtraToBreak, $corpDivExtraToMarket, $corpDividend, $corpDivLegalSlaves, $corpDivLegalToMarket, $corpDivLegalToMenial, $corpDivLegalToSurgery, $corpDivLegalToTrain, $corpDivMenialFromMarket, $corpDivMenialSlaves, $corpDivSurgeryFromMarket, $corpDivSurgerySlaves, $corpDivSurgerySlaves2, $corpDivSurgeryToDairy, $corpDivSurgeryToMarket, $corpDivSurgeryToTrain, $corpDivTrainFromMarket, $corpDivTrainSlaves, $corpDivTrainSlaves2, $corpDivTrainToMarket, $corpDivTrainToWhore, $corpDivWhoreFromMarket, $corpDivWhoreSlaves, $corpOpCostOld, $corpOverheadOld, $corpProfitOld, $corpRev, $corpRevOld, $corpSpecAccent, $corpSpecAge, $corpSpecAmputee, $corpSpecBalls, $corpSpecDevotion, $corpSpecDick, $corpSpecEducation, $corpSpecGender, $corpSpecGenitalia, $corpSpecHeight, $corpSpecHormones, $corpSpecImplants, $corpSpecInjection, $corpSpecIntelligence, $corpSpecMilk, $corpSpecMuscle, $corpSpecPussy, $corpSpecSexEd, $corpSpecTrust, $corpSpecVirgin, $corpSpecWeight, $dividendTimer, $personalShares, $publicShares>> <</if>> diff --git a/src/js/SlaveState.js b/src/js/SlaveState.js index 1af5560ed62c79149ba72caeaa0004879c7b2fe9..e4929bb238099a129d0a0c119142b6394cd372ec 100644 --- a/src/js/SlaveState.js +++ b/src/js/SlaveState.js @@ -1829,7 +1829,7 @@ App.Entity.SlaveState = class SlaveState { * 0: not being rude; 1: insists on calling you a rude title */ this.rudeTitle = 0; /** - * holds the custom slave image file name (used if images are enabled) + * holds the custom slave image file name (used if images are enabled) * * @type {string} */ this.customImage = ""; diff --git a/src/js/extendedFamilyModeJS.js b/src/js/extendedFamilyModeJS.js index 368227ad92dde2ff3a5297f94d6dcb712645377c..64db893921f98427b06b35abb8b5a212a9d5f360 100644 --- a/src/js/extendedFamilyModeJS.js +++ b/src/js/extendedFamilyModeJS.js @@ -37,16 +37,16 @@ window.isAunt = /** @param {App.Entity.SlaveState} niece, @param {App.Entity.Sla if (!niece || !aunt || (niece.ID === aunt.ID)) { return false; } - + var mother; var father; - + if ((mother = getSlave(niece.mother)) && (mother.ID !== aunt.ID) && !sameTParent(mother, aunt) && sameMom(mother, aunt) && sameDad(mother, aunt)) { return true; } else if ((father = getSlave(niece.father)) && (father.ID !== aunt.ID) && !sameTParent(father, aunt) && sameMom(father, aunt) && sameDad(father, aunt)) { return true; } - + return false; }; @@ -143,12 +143,12 @@ window.areCousins = /** @param {App.Entity.SlaveState} slave1, @param {App.Entit if (!slave1 || !slave2 || (slave1.ID === slave2.ID) || areSisters(slave1, slave2) ) { return false; } - + var slave1Mom; var slave1Dad; var slave2Mom; var slave2Dad; - + if ((slave1Mom = getSlave(slave1.mother)) && (slave2Mom = getSlave(slave2.mother)) && !sameTParent(slave1Mom, slave2Mom) && sameMom(slave1Mom, slave2Mom) && sameDad(slave1Mom, slave2Mom)){ return true; } else if ((slave1Mom = getSlave(slave1.mother)) && (slave2Dad = getSlave(slave2.father)) && !sameTParent(slave1Mom, slave2Dad) && sameMom(slave1Mom, slave2Dad) && sameDad(slave1Mom, slave2Dad)) { @@ -158,7 +158,7 @@ window.areCousins = /** @param {App.Entity.SlaveState} slave1, @param {App.Entit } else if ((slave1Dad = getSlave(slave1.father)) && (slave2Dad = getSlave(slave2.father)) && !sameTParent(slave1Dad, slave2Dad) && sameMom(slave1Dad, slave2Dad) && sameDad(slave1Dad, slave2Dad)) { return true; } - + return false; }; diff --git a/src/js/rulesAutosurgery.js b/src/js/rulesAutosurgery.js index 309ea9c71009f801f24c4b35e48bb569fe47fc08..86b325ac1a990bbb3651627af38581d50022f837 100644 --- a/src/js/rulesAutosurgery.js +++ b/src/js/rulesAutosurgery.js @@ -155,7 +155,7 @@ window.rulesAutosurgery = (function() { cashX(forceNeg(V.surgeryCost), "slaveSurgery", slave); if (V.PC.medicine >= 100) slave.health -= 5; else slave.health -= 10; - + } else if ((slave.hears === -1) && (thisSurgery.surgery_smells === 0)) { surgeries.push("surgery to correct her sense of smell"); slave.smells = 0; diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js index d645efd0cc66daeac7be76e68ccd64eedc81c5d6..3cd3139ab68b60d02605c5a1039871c84e57672f 100644 --- a/src/js/slaveSummaryWidgets.js +++ b/src/js/slaveSummaryWidgets.js @@ -4602,7 +4602,7 @@ window.SlaveSummaryUncached = (function(){ } r += " "; } - + /** @param {App.Entity.SlaveState} slave */ function long_chastity(slave) { if (slave.chastityAnus === 1 && slave.chastityPenis === 1 && slave.chastityVagina === 1) { @@ -5635,7 +5635,7 @@ App.UI.slaveSummaryList = function (passageName) { res.push(`<span id="slave-${slaves[_ssi].ID}"> </span>`); } res.push('<br/>'); - + if (slaveImagePrinted) { res.push(' '); } diff --git a/src/js/utilJS.js b/src/js/utilJS.js index d1512eda8cef64a953cd31cac80f711bd01af5b6..f98250df90e7c2fd9f16c6688726e66b4ee8ed6c 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -1589,6 +1589,7 @@ window.SkillIncrease = (function() { /** @param {App.Entity.SlaveState} slave */ function OralSkillIncrease(slave, skillIncrease) { const He = capFirstChar(slave.pronoun); + const his = slave.possessivePronoun; let r; skillIncrease = skillIncrease || State.variables.skillIncrease || 1; @@ -1598,7 +1599,7 @@ window.SkillIncrease = (function() { } } else if (slave.oralSkill <= 30) { if (slave.oralSkill + skillIncrease > 30) { - r = `<span class="green">${He} now has some oral skills,</span> and can reliably bring dicks and pussies to climax with $his mouth.`; + r = `<span class="green">${He} now has some oral skills,</span> and can reliably bring dicks and pussies to climax with ${his} mouth.`; } } else if (slave.oralSkill <= 60) { if (slave.oralSkill + skillIncrease > 60) { @@ -1643,12 +1644,13 @@ window.SkillIncrease = (function() { /** @param {App.Entity.SlaveState} slave */ function AnalSkillIncrease(slave, skillIncrease) { const He = capFirstChar(slave.pronoun); + const his = slave.possessivePronoun; let r; skillIncrease = skillIncrease || State.variables.skillIncrease || 1; if (slave.analSkill <= 10) { if (slave.analSkill + skillIncrease > 10) { - r = `<span class="green">${He} now has basic knowledge about anal sex,</span> and can accept penetration of $his anus without danger.`; + r = `<span class="green">${He} now has basic knowledge about anal sex,</span> and can accept penetration of ${his} anus without danger.`; } } else if (slave.analSkill <= 30) { if (slave.analSkill + skillIncrease > 30) { @@ -1656,7 +1658,7 @@ window.SkillIncrease = (function() { } } else if (slave.analSkill <= 60) { if (slave.analSkill + skillIncrease > 60) { - r = `<span class="green">${He} is now an anal sex expert,</span> and knows how to use $his sphincter to please.`; + r = `<span class="green">${He} is now an anal sex expert,</span> and knows how to use ${his} sphincter to please.`; } } else if (slave.analSkill < 100) { if (slave.analSkill + skillIncrease >= 100) { @@ -1670,6 +1672,7 @@ window.SkillIncrease = (function() { /** @param {App.Entity.SlaveState} slave */ function WhoreSkillIncrease(slave, skillIncrease) { const He = capFirstChar(slave.pronoun); + const his = slave.possessivePronoun; let r; skillIncrease = skillIncrease || State.variables.skillIncrease || 1; @@ -1679,7 +1682,7 @@ window.SkillIncrease = (function() { } } else if (slave.whoreSkill <= 30) { if (slave.whoreSkill + skillIncrease > 30) { - r = `<span class="green">${He} now has some skill as a whore,</span> and knows how to sell $his body at a good price.`; + r = `<span class="green">${He} now has some skill as a whore,</span> and knows how to sell ${his} body at a good price.`; } } else if (slave.whoreSkill <= 60) { if (slave.whoreSkill + skillIncrease > 60) { diff --git a/src/js/walkPastJS.js b/src/js/walkPastJS.js index fc54335e12287d92d7c0933624bcdceaf0e59112..74bc496fd03d9edca24f54c4d3d5460886e57680 100644 --- a/src/js/walkPastJS.js +++ b/src/js/walkPastJS.js @@ -84,7 +84,7 @@ window.loverSlave = function(activeSlave) { } else { activeSlaveRel = "slave wife"; } - + t += `${name} and ${partnerName} are `; if (!isSlaveAvailable(_partnerSlave)) { if (_partnerSlave.assignment === "work in the dairy" && V.DairyRestraintsSetting >= 2) { @@ -822,7 +822,7 @@ window.loverSlave = function(activeSlave) { t += `so ${he2} has to try ${his2} hardest to suck ${name}'s dick with ${his2} belly hindering ${his2} movements; something ${name} enjoys tremendously.`; } else { t += `so ${he2} has to try ${his2} hardest to orally service ${name} with ${his2} belly in the way; something ${name} enjoys tremendously.`; - } + } } } else if (activeSlave.belly >= 5000) { if (activeSlave.dick > 0 && _fuckSeed > 5) { @@ -1241,7 +1241,7 @@ window.relatedSlave = function(activeSlave) { const He = capFirstChar(he), His = capFirstChar(his); let t = ""; let partnerSlave; - + let fuckseed = jsRandom(1,100); if (V.partner === "relation") { @@ -1254,7 +1254,7 @@ window.relatedSlave = function(activeSlave) { var activeSlaveRel = relationshipTerm(activeSlave); partnerSlave = getSlave(activeSlave.relationshipTarget); } - + if (partnerSlave !== undefined) { /* potential problem point */ t += ` ${His} `; diff --git a/src/pregmod/fSelf.tw b/src/pregmod/fSelf.tw index ff7f1ea1702189d4ac7e2cdecadb8d9d344b9724..7d58f8ded7dc678b38f893ed2486c13efa9c65e4 100644 --- a/src/pregmod/fSelf.tw +++ b/src/pregmod/fSelf.tw @@ -36,11 +36,11 @@ Taking the hose and attaching your favorite cockhead to it, you eagerly drag it <<elseif $PC.cumTap < 25>> -Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you struggle to even get off the bed. After minutes of effort, several attempts ruined by aftershock orgasms, you manage to get on your feet. Cradling your massive cum-belly, you gingerly waddle to your waiting bath. You look like you are ready to burst with triplets, imagine what the public would say if they way you in this state. +Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you struggle to even get off the bed. After minutes of effort, several attempts ruined by aftershock orgasms, you manage to get on your feet. Cradling your massive cum-belly, you gingerly waddle to your waiting bath. You look like you are ready to burst with triplets, imagine what the public would say if they saw you in this state. <<else>> -Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your<<if $PC.boobs > 0>> breasts,<</if>><<if $PC.dick > 0>> dick,<</if>> belly and pussy. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a servant to clean up your bed - from the slave you enjoyed with the cum hose, of course. +Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your<<if $PC.boobs > 0>> breasts,<</if>><<if $PC.dick > 0>> dick,<</if>> belly and pussy. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a servant to clean up your bed — from the slave you enjoyed with the cum hose, of course. <</if>> diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index 9ecbb2dabb2734ffc4cf85c948ccfb7703e58559..31eb59fe0ffec29a434650ae11754ba495cd53d1 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -614,7 +614,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <</if>> <<if $arcologies[0].FSPaternalistLaw == 1>> - $He saw a good deal of your arcology and its society on $his way to your penthouse, and was amazed by all the happy, healthy slaves. $He @@.mediumaquamarine;begins to trust@@ that $he'll be one of them, and @@.hotpink;anticipates playing@@ with all $his happy friends. + $He <<if canSee($activeSlave)>>saw<<elseif canHear($activeSlave)>>overheard<<else>>passed through<</if>> a good deal of your arcology and its society on $his way to your penthouse, and was amazed by all the happy, healthy slaves. $He @@.mediumaquamarine;begins to trust@@ that $he'll be one of them, and @@.hotpink;anticipates playing@@ with all $his happy friends. <<set $activeSlave.trust += 4>> <<set $activeSlave.devotion += 4>> <</if>> diff --git a/src/pregmod/pInsemination.tw b/src/pregmod/pInsemination.tw index 3811f691addb21de5300b299fc0244a687341d54..ca92a093f438f35aab4c3c6ca5f0c5bfda3eb680 100644 --- a/src/pregmod/pInsemination.tw +++ b/src/pregmod/pInsemination.tw @@ -40,7 +40,7 @@ <<case "quick">> <<if $quickCount == 0>> - You arrive at the apartment of the very wealthy fuel baron who is to sire your child. He is eagerly waiting for you and quickly hurries you inside. He wastes no time; practically ripping your clothes off and forcing over the edge of his bed. He hastily mounts you and roughly fucks your cunt - until he quickly finishes, that is, leaving you unsatisfied as he shoves you out the door, clothes in <<if $PC.dick == 1>>one hand and raging boner in the other<<else>>hand<</if>>. + You arrive at the apartment of the very wealthy fuel baron who is to sire your child. He is eagerly waiting for you and quickly hurries you inside. He wastes no time; practically ripping your clothes off and forcing over the edge of his bed. He hastily mounts you and roughly fucks your cunt — until he quickly finishes, that is, leaving you unsatisfied as he shoves you out the door, clothes in <<if $PC.dick == 1>>one hand and raging boner in the other<<else>>hand<</if>>. <<set $quickCount++>> <<else>> You arrive at the apartment of the quick-shooting fuel baron and once more he quickly pulls you in. He barely manages to undress you before he is on top of you humping away. Just as he is about to cum, you wrap your legs around him; anchoring yourself to him. You remind him that his job is to knock you up, and a quick in and out isn't good enough. Buying it, he keeps thrusting, letting you reach your own orgasm. He still hurried you out the door in the end, but you got some pleasure out of him this time. diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 39f81ba35c74e0939404e12ce5697110d3c199e0..f1d9ce31563d0bca61fe1033f7d39e7e35eb3e72 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -236,7 +236,7 @@ <<else>> While sucking a dick through the hole of $his confining box, $slaves[$i].slaveName's water breaks. $He quickly finishes the dick off before seating $himself in the back of the box. <<ClothingBirth>> - As $he finishes, $he could have sworn $he saw an eye peeping through the glory hole, watching the show. The box is opened and <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child is gathered and taken away as $he struggles to reach the fresh cock poking through the hole. + As $he finishes, $he <<if canSee($slaves[$i])>>could have sworn $he saw an eye<<else>>swears $he can feel somebody<</if>> peeping through the glory hole, watching the show. The box is opened and <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child is gathered and taken away as $he struggles to reach the fresh cock poking through the hole. <</if>> <</if>> diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index 6290da67f5177c21baf5c40c68ed0859a5bd6104..9f179866f897251d45518f847dead1e7db5fac7b 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -68,11 +68,13 @@ <<if $RESSevent == "headgirl dickgirl">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$j] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -545,11 +547,13 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$j] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/PETS.tw b/src/uncategorized/PETS.tw index 0e688988a6d672d128285e43bb99c283477c30ac..eb083f0c76a9e7bc111ce0024edf7e395efa8fc8 100644 --- a/src/uncategorized/PETS.tw +++ b/src/uncategorized/PETS.tw @@ -70,11 +70,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw index f91b51f70a89864891898ca8ef58a0305c3e5e4f..c5aff37ed708c8d405a48cf0e2ce4d2b1c29505b 100644 --- a/src/uncategorized/RECI.tw +++ b/src/uncategorized/RECI.tw @@ -299,11 +299,13 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $HeadGirl 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $HeadGirl 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -345,11 +347,13 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $Concubine 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $Concubine 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/REFI.tw b/src/uncategorized/REFI.tw index 35b9df56a1e5b9346e94e834543c4cf3ab2d6025..5ff429580440b76c56d5232cf181b8d5079055d7 100644 --- a/src/uncategorized/REFI.tw +++ b/src/uncategorized/REFI.tw @@ -121,22 +121,28 @@ <<setLocalPronouns $activeSlave>> <<setLocalPronouns $subSlave 2>> +<<set _clothesTemp = $subSlave.clothes>> <<switch $REFIevent>> - -<<case "masochist">> - -<<set _clothesTemp = $subSlave.clothes, $subSlave.clothes = "no clothing">> +<<case "masochist" "pregnancy" "boobs" "cumslut">> /* Prep clothing for images */ + <<set $subSlave.clothes = "no clothing">> +<</switch>> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ -<<set $subSlave.clothes = _clothesTemp>> +<<set $subSlave.clothes = _clothesTemp>> /*restore clothing to original values */ + +<<switch $REFIevent>> + +<<case "masochist">> <<if $subSlave.belly >= 1500>> You have $subSlave.slaveName lying down on your desk, and are seeing to your own amusement and _his2 masochistic streak at once. _He2 has _his2 body flat on the surface, but is unrestrained, and has been told that _he2 must not rise off it at all, nor tilt _his2 bulk to either side. You then tell _his2 to count strokes and begin to flog _his2 _subBelly belly with a leathern instrument<<if $subSlave.pregKnown == 1>>, taking care not to cause _his2 pregnancy any lasting harm<</if>>. Before long _he2 is experiencing more pain than the human body can support without involuntary movement, and you tell _him2 to go back one count whenever _he2 does. At long last _he2 completes the required number of blows, and lies quivering and sobbing, thanking you over and over, until _he2 stiffens again at the @@ -214,19 +220,6 @@ It seems $he passed by while you were beating $subSlave.slaveName and found the <<case "pregnancy">> -<<set _clothesTemp = $subSlave.clothes, $subSlave.clothes = "no clothing">> -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> -<</if>> -/* 000-250-006 */ -<<set $subSlave.clothes = _clothesTemp>> - $subSlave.slaveName gets inspected more regularly than your other slaves, since _he2's quite pregnant. _His2 pregnancy is progressing acceptably, but having _his2 belly inspected gets _him2 <<if $subSlave.pregSource == -1>> extremely eager to feel more of _his2 <<= WrittenMaster($subSlave)>>'s seed in _his2 fertile <<if $subSlave.mpreg == 1>>rear<<else>>cunt<</if>>. $subSlave.slaveName has been a good _girl2, @@ -367,19 +360,6 @@ It seems $he passed by while you were enjoying the heavily pregnant $subSlave.sl <<case "boobs">> -<<set _clothesTemp = $subSlave.clothes, $subSlave.clothes = "no clothing">> -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> -<</if>> -/* 000-250-006 */ -<<set $subSlave.clothes = _clothesTemp>> - $subSlave.slaveName is on lunch duty today. That means that as you eat your working lunch, _he2 sits on the edge of your desk right next to you, so that <<if $subSlave.belly >= 100000>>a nipple is<<else>>_his2 nipples are<</if>> conveniently at mouth height. Whenever you feel thirsty, you lean over<<if $subSlave.nipples == "partially inverted" || $subSlave.nipples == "inverted">>, pop one out,<<elseif $subSlave.nipples == "fuckable">>, slip your tongue deep inside,<</if>> and take some of _his2 creamy, slightly vanilla-toned milk straight from the source. Every time you do, _he2 shudders convulsively, <<if canTalk($subSlave)>> giving little mewling whimpers. @@ -428,17 +408,6 @@ It seems $he passed by while you were drinking from $subSlave.slaveName and foun <<case "submissive">> -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> -<</if>> -/* 000-250-006 */ - $subSlave.slaveName is lying on the edge of your desk with _his2<<if $subSlave.belly >= 1500>> bloated<</if>> body helpless beneath you, your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> in _him2, and your hands around _his2 neck. It's just breath play, and you're practiced enough that _he2's in no danger. _He2's such a sexual submissive that _he2 sometimes acts out if not managed. This happens when _he2 feels the urge to misbehave in order to access punishment, so you personally ensure that _he2 can indulge _his2 submissiveness when _he2 needs it. _He2 does not orgasm with you, _his2 complete servitude to your pleasure fulfilling a deeper need than that. _He2 leaves your office with a serene look on _his2 face, passing <<EventNameLink>>, who is <<if $activeSlave.amp == 1>> propped limblessly nearby. $He has @@ -483,17 +452,6 @@ It seems $he passed by while you were dominating $subSlave.slaveName. <<if $acti <<case "buttslut">> -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> -<</if>> -/* 000-250-006 */ - In the middle of the afternoon, you take a break from work to fuck $subSlave.slaveName in your office. $subSlave.slaveName is such a complete buttslut that _he2's enjoying _himself2 to an almost indecent degree: moaning, begging, or just smiling idiotically with _his2 mouth open and _his2 tongue lolling. After you finish and _he2 leaves, you notice $activeSlave.slaveName at the door to your office. You call $his in. <br><br> <<EventNameLink>> hesitates before explaining $himself, and the $desc is obviously aroused: @@ -530,19 +488,6 @@ It seems $he passed by while you were buttfucking $subSlave.slaveName and found <<case "cumslut">> -<<set _clothesTemp = $subSlave.clothes, $subSlave.clothes = "no clothing">> -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> -<</if>> -/* 000-250-006 */ -<<set $subSlave.clothes = _clothesTemp>> - You wake up to the sensation of $subSlave.slaveName eagerly sucking your dick. _He2's industriously pumping _his2 mouth up and down on your member. In truth, $subSlave.slaveName doesn't give the perfect blowjob: _he2 loves cum so much that _he2 mostly enjoys oral sex in an anticipatory way, and usually works to make the recipient cum as soon as possible so as to get _his2 favorite treat into _his2 mouth quicker. Still, _his2 enthusiasm is nice and _he2 does have permission to wake you at your usual time in this way. As you get up after finishing, you notice <<EventNameLink>> at the door to your bedroom. You call $him in. <br><br> <<EventNameLink>> hesitates before explaining $himself, and the $desc is obviously aroused: @@ -579,17 +524,6 @@ It seems $he passed by while $subSlave.slaveName was blowing you. $He swallows p <<case "humiliation">> -/* 000-250-006 */ -<<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> -<</if>> -/* 000-250-006 */ - You have $subSlave.slaveName pinned up against a railing on a balcony that overlooks a public atrium. Passersby below cannot see you, but they can certainly see $subSlave.slaveName's upper body as _he2 takes your dick. _He2's blushing furiously with the sex and with _his2 trademark mixed arousal and embarrassment at having an audience. _He2 makes a show of trying to disguise the fact that _he2's getting railed, but it's obvious. When you finish, you pull _him2 off the railing so _he2 can clean up. <<EventNameLink>> <<if canSee($activeSlave)>>saw<<elseif canHear($activeSlave)>>heard<<else>>felt the heat from<</if>> the denouement of this exhibitionist fun, and seems intrigued. <br><br> <<EventNameLink>> hesitates before explaining $himself, and the $desc is obviously aroused: diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index cb3acdd5794c531f5808e7f7d86fffe41eba0ceb..a85dd814cf3bbb67ee3bc23f1320363db493888f 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -178,11 +178,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -1119,11 +1121,13 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -1146,11 +1150,13 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -1178,11 +1184,13 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -1554,11 +1562,13 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/REresistantmotherdaughter.tw b/src/uncategorized/REresistantmotherdaughter.tw index 59665a7feff6db7850f9605dadef27b450cfc5f7..46e2c4ac1fb71c84e784675e017c980cc91d1580 100644 --- a/src/uncategorized/REresistantmotherdaughter.tw +++ b/src/uncategorized/REresistantmotherdaughter.tw @@ -12,11 +12,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$i] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$i] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$j] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/bodyModificationReaction.tw b/src/uncategorized/bodyModificationReaction.tw index c346dbb3fb476b76b4559278ce8801fe56d249eb..59c445d20d558dc1eed196eade96718c96353434 100644 --- a/src/uncategorized/bodyModificationReaction.tw +++ b/src/uncategorized/bodyModificationReaction.tw @@ -10,34 +10,55 @@ As you cast off $his bindings<<if canSee($activeSlave)>> and <<if ($activeSlave. <<set $activeSlave.health -= 10>> <</if>> <<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>> -<<if ($degradation > 10) && ($activeSlave.devotion <= 50) && ($activeSlave.trust < -50)>> - $He is appalled by the whorish spectacle you have made of $him. $He @@.gold;fears@@ you all the more for this but is so terrified of you it does not affect $his submission. - <<set $activeSlave.trust -= 10>> -<<elseif ($degradation > 10) && ($activeSlave.devotion <= 50)>> - $He is appalled by the whorish spectacle you have made of $him. $He @@.mediumorchid;hates@@ and @@.gold;fears@@ you for this. - <<set $activeSlave.devotion -= 10>> - <<set $activeSlave.trust -= 10>> -<<elseif ($degradation > 10)>> - $He is shocked by the whorish spectacle you have made of $him. However, $he is so submissive to your will that $he @@.hotpink;accepts@@ that the slave <<if canSee($activeSlave)>>in the mirror<<else>>$he pictures<</if>> is who $he is now. - <<set $activeSlave.devotion += 4>> -<<elseif ($degradation > 4) && ($activeSlave.devotion <= 20) && ($activeSlave.trust < -20)>> - $He is so afraid of you that $he suppresses any reaction to the slutty modifications you have made to $his body and @@.gold;fears@@ your power to do whatever you like to $him. - <<set $activeSlave.trust -= 5>> -<<elseif ($degradation > 4)>> - $He is surprised with the slutty modifications you have made to $his body. However, $he is so obedient that $he @@.hotpink;accepts@@ your changes. - <<set $activeSlave.devotion += 4>> -<<elseif ($degradation > 1) && ($activeSlave.devotion < -20) && ($activeSlave.trust < 20)>> - $He is @@.gold;afraid@@ that $he has been permanently altered against $his will, but is also scared of your reaction to any objection and suppresses $his disgust. - <<set $activeSlave.trust -= 5>> -<<elseif ($degradation > 1) && ($activeSlave.devotion < -20)>> - $He is @@.mediumorchid;angry@@ and @@.gold;afraid@@ that $he has been permanently altered against $his will. - <<set $activeSlave.devotion -= 5>> - <<set $activeSlave.trust -= 5>> -<<elseif ($degradation > 1)>> - $He is saddened to have been altered against $his will. However, $he realizes that $he is a slave, so $he @@.hotpink;accepts@@ your work. - <<set $activeSlave.devotion += 4>> -<<else>> - $He shows no real reaction to your modifications. -<</if>> + <<if $degradation > 10>> + <<if $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + $He is appalled by the whorish spectacle you have made of $him. $He @@.mediumorchid;lothes@@ you all the more for this, but $his resolve is @@.gold;whittled down@@ by your power over $him. + <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> + <<elseif $activeSlave.devotion <= 50 && $activeSlave.trust < -50>> + $He is appalled by the whorish spectacle you have made of $him. $He @@.gold;fears@@ you all the more for this but is so terrified of you it does not affect $his submission. + <<set $activeSlave.trust -= 10>> + <<elseif $activeSlave.devotion <= 50>> + $He is appalled by the whorish spectacle you have made of $him. $He @@.mediumorchid;hates@@ and @@.gold;fears@@ you for this. + <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> + <<elseif $activeSlave.devotion <= 90>> + $He is shocked by the whorish spectacle you have made of $him. However, $he is @@.hotpink;so submissive to your will@@ that $he accepts that the slave <<if canSee($activeSlave)>>in the mirror<<else>>$he pictures<</if>> is who $he is now. + <<set $activeSlave.devotion += 3>> + <<else>> + $He fully understands that $his body belongs to you and that it is yours to modify as you see fit, the slave <<if canSee($activeSlave)>>in the mirror<<else>>$he pictures<</if>> is still somewhat shocking to $him. Like a good slave<<= $girl>> though, $he can't wait to show off your changes. + <</if>> + <<elseif $degradation > 4>> + <<if $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + $He is disgusted by the slutty modifications you have made to $his body. $He @@.mediumorchid;hates@@ for it, but begins to @@.gold;fear@@ the power you hold over $him. + <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> + <<elseif $activeSlave.devotion <= 20 && $activeSlave.trust < -20>> + $He is so afraid of you that $he suppresses any reaction to the slutty modifications you have made to $his body and @@.gold;fears@@ your power to do whatever you like to $him. + <<set $activeSlave.trust -= 5>> + <<elseif $activeSlave.devotion < 50>> + $He is surprised with the slutty modifications you have made to $his body. However, $he is so obedient that $he @@.hotpink;accepts your changes.@@ + <<set $activeSlave.devotion += 2>> + <<else>> + $He is surprised with the slutty modifications you have made to $his body but thrilled that you'd put so much into a slave like $him. + <</if>> + <<elseif $degradation > 1>> + <<if $activeSlave.devotion < -20 && $activeSlave.trust > 20>> + While $he hates being permanently altered by you, $he @@.orangered;refuses to give you any reaction.@@ + <<set $activeSlave.trust += 1>> + <<elseif $activeSlave.devotion < -20 && $activeSlave.trust < 20>> + $He is @@.gold;afraid@@ that $he has been permanently altered against $his will, but is also scared of your reaction to any objection and suppresses $his disgust. + <<set $activeSlave.trust -= 5>> + <<elseif $activeSlave.devotion < -20>> + $He is @@.mediumorchid;angry@@ and @@.gold;afraid@@ that $he has been permanently altered against $his will. + <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>> + <<elseif $activeSlave.devotion < 0>> + $He is saddened to have been altered against $his will, but @@.hotpink;begins to understand@@ that it is not $his decision. + <<set $activeSlave.devotion += 1>> + <<elseif $activeSlave.devotion < 20>> + $He is saddened to have been altered against $his will. However, $he realizes that $he is a slave, so $he accepts your work. + <<else>> + $He fully understands that $his body belongs to you and that it is yours to modify as you see fit. + <</if>> + <<else>> + $He shows no real <<if $activeSlave.devotion < -20 && $activeSlave.trust > 20>>interest in<<else>>reaction to<</if>> your modifications. + <</if>> <</if>> <<set $degradation = 0>> diff --git a/src/uncategorized/fullReport.tw b/src/uncategorized/fullReport.tw index a36372da4c246bfd4fa4427047fca67d6aabd750..6e111eb0edeec02858a2f51dcb54447230f0739b 100644 --- a/src/uncategorized/fullReport.tw +++ b/src/uncategorized/fullReport.tw @@ -3,7 +3,7 @@ /* 000-250-006 */ <<if $seeImages && $seeReportImages>> <div class="imageRef medImg"> - <<SlaveArt $slaves[$i] 2 0>> + <<SlaveArt $slaves[$i] 2 0>> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw index 12a503ef0a9d0d0d50263822deebc7d5a0ff0433..b10c5694b3e965c9f6986216ff474d51b5121702 100644 --- a/src/uncategorized/matchmaking.tw +++ b/src/uncategorized/matchmaking.tw @@ -13,7 +13,7 @@ /* 000-250-006 */ <<if $seeImages == 1>> <div class="imageRef medImg"> - <<SlaveArt $eventSlave 2 0>> + <<SlaveArt $eventSlave 2 0>> </div> <</if>> /* 000-250-006 */ @@ -390,11 +390,13 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $eventSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $eventSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index bc3bb32de5ddb0df144f98e13bc71503f367a161..46e5ec1dea31acd0deea5e4267fb86506930d1c2 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -626,7 +626,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<set $activeSlave.pregType = 0>> <<set $activeSlave.pregSource = 0>> <<set $activeSlave.pregKnown = 0>> - <<set $activeSlave.pregWeek = 0>> + <<set $activeSlave.pregWeek = -4>> <<run SetBellySize($activeSlave)>> <</link>> <br> @@ -1104,7 +1104,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</replace>> <<set $activeSlave.preg = -3>> <<set $activeSlave.pregType = 0>> - <<set $activeSlave.pregWeek = 0>> + <<set $activeSlave.pregWeek = -4>> <<set $activeSlave.pregKnown = 0>> <<run SetBellySize($activeSlave)>> <<set $activeSlave.ovaries = 0>> @@ -1154,7 +1154,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<= FSChange("Eugenics", 3)>> <</if>> <</replace>> - <<set $activeSlave.chastityVagina = 0,$activeSlave.dick = 0,$activeSlave.foreskin = 0,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregKnown = 0,$activeSlave.pregSource = 0,$activeSlave.pregType = 0,$activeSlave.pregWeek = 0,$activeSlave.vagina = -1,$activeSlave.vaginalSkill = 0>> + <<set $activeSlave.chastityVagina = 0,$activeSlave.dick = 0,$activeSlave.foreskin = 0,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregKnown = 0,$activeSlave.pregSource = 0,$activeSlave.pregType = 0,$activeSlave.pregWeek = -4,$activeSlave.vagina = -1,$activeSlave.vaginalSkill = 0>> <<run SetBellySize($activeSlave)>> <<set $activeSlave.health -= 10, $activeSlave.trust = Math.clamp($activeSlave.trust-100, -100, 100)>> <</link>> diff --git a/src/uncategorized/pBombing.tw b/src/uncategorized/pBombing.tw index 34c29d5cd6c728654218d127e3480435e4c4f9a4..e9f9e146a1499319c6fb7b371ed218c86d4cf05f 100644 --- a/src/uncategorized/pBombing.tw +++ b/src/uncategorized/pBombing.tw @@ -5,6 +5,17 @@ <<if $Bodyguard != 0>> <<setLocalPronouns $Bodyguard>> + <span id="artFrame"> + /* 000-250-006 */ + <<if $seeImages == 1>> + <<if $imageChoice == 1>> + <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt $Bodyguard 2 0>></div> + <<else>> + <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt $Bodyguard 2 0>></div> + <</if>> + <</if>> + /* 000-250-006 */ + </span> <</if>> One fine day, you're strolling down the main promenade, making your usual combined inspection and public rounds. These walks are triply useful, since they allow you to keep a finger on the pulse of your demesne, identify any problems, and display yourself to the population. <<if $Bodyguard != 0>>$Bodyguard.slaveName is walking with you, of course; $his presence protection, intimidation, and ostentation, all in one.<</if>> diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw index 454fc563461ec7a709ac16433323ccb48c8710f3..925581ba12d3115e0bd813b53b87a8116c53c33b 100644 --- a/src/uncategorized/pHostageAcquisition.tw +++ b/src/uncategorized/pHostageAcquisition.tw @@ -9,6 +9,18 @@ <<run Enunciate($activeSlave)>> <<setLocalPronouns $activeSlave>> +<span id="artFrame"> + /* 000-250-006 */ + <<if $seeImages == 1>> + <<if $imageChoice == 1>> + <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt $activeSlave 2 0>></div> + <<else>> + <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt $activeSlave 2 0>></div> + <</if>> + <</if>> + /* 000-250-006 */ +</span> + <<= SlaveFullName($activeSlave)>>, once <<switch $PC.career>> <<case "wealth">> diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw index 522622e381cb182236a6c8195856d4495de37ca3..1cb4af039fa20771b227ab3cae70b562e9e256de 100644 --- a/src/uncategorized/pRivalryActions.tw +++ b/src/uncategorized/pRivalryActions.tw @@ -6,9 +6,9 @@ /* 000-250-006 */ <<if $seeImages == 1>> <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt $hostage 2 0>></div> + <div class="imageRef medImg"><<SlaveArt $hostage 2 0>></div> <<else>> - <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt $hostage 2 0>></div> + <div class="imageRef medImg"><<SlaveArt $hostage 2 0>></div> <</if>> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw index c2441845e91239dc5863c87f973d5d85f0208ae2..3824c52f8e8e5c88a9e00dba09cfa009a5aa587f 100644 --- a/src/uncategorized/pRivalryCapture.tw +++ b/src/uncategorized/pRivalryCapture.tw @@ -429,6 +429,14 @@ <<setLocalPronouns $activeSlave>> +<<if $seeImages == 1>> + <<if $imageChoice == 1>> + <div class="imageRef medImg"><<SlaveArt $activeSlave 2 0>></div> + <<else>> + <div class="imageRef medImg"><<SlaveArt $activeSlave 2 0>></div> + <</if>> +<</if>> + Your <<if passage() == "P rivalry actions">> target is quickly delivered. Politely dismissing the head of your <<if $mercenariesTitle != "mercenaries">> $mercenariesTitle<<else>> mercenaries<</if>>, you savor diff --git a/src/uncategorized/peHeadgirlConcubine.tw b/src/uncategorized/peHeadgirlConcubine.tw index b9f1a84c83f14323fe3c80f850b61f716ed857dd..de7ccb1e92791514183583220e9a59a4ac584cf7 100644 --- a/src/uncategorized/peHeadgirlConcubine.tw +++ b/src/uncategorized/peHeadgirlConcubine.tw @@ -13,11 +13,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $Concubine 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $HeadGirl 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $HeadGirl 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $Concubine 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/peLonelyBodyguard.tw b/src/uncategorized/peLonelyBodyguard.tw index 28f11ac7b8fd4682838f3a46d13f1339ca4f1dda..817390f78a50fee29957e689a26c8980940f732f 100644 --- a/src/uncategorized/peLonelyBodyguard.tw +++ b/src/uncategorized/peLonelyBodyguard.tw @@ -16,11 +16,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$j] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reAnalPunishment.tw b/src/uncategorized/reAnalPunishment.tw index 200cfc8a5e0f67f3fad859900cfb9d8876bbc336..858a59e34c2d5ea98dc780695068410e775805ab 100644 --- a/src/uncategorized/reAnalPunishment.tw +++ b/src/uncategorized/reAnalPunishment.tw @@ -13,11 +13,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $HeadGirl 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $HeadGirl 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reDevotedMotherDaughter.tw b/src/uncategorized/reDevotedMotherDaughter.tw index fc9f65f5dc316071b4aa99c76f1bdc1a28f8b22c..06203541b3023c0bd6479325236395aca9b9d508 100644 --- a/src/uncategorized/reDevotedMotherDaughter.tw +++ b/src/uncategorized/reDevotedMotherDaughter.tw @@ -10,11 +10,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$i] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$i] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$j] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reDevotedTwins.tw b/src/uncategorized/reDevotedTwins.tw index cfea87fabb593d5bda0f01f1b25732dfd6c44ea0..0a44295821e20e740114c869f42c0044f3da9adb 100644 --- a/src/uncategorized/reDevotedTwins.tw +++ b/src/uncategorized/reDevotedTwins.tw @@ -8,11 +8,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$i] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$j] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$i] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reDevotees.tw b/src/uncategorized/reDevotees.tw index b4d20ccc3ba1dbd4c1865e4eec0d9ac9938cb591..c9c85f4d105c4ab11835948e3eb71bb3fccddf92 100644 --- a/src/uncategorized/reDevotees.tw +++ b/src/uncategorized/reDevotees.tw @@ -9,17 +9,19 @@ /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_red1] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_red2] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_red3] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_red4] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_red1] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_red2] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_red3] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_red4] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reFullBed.tw b/src/uncategorized/reFullBed.tw index 61a00501d9fcd874f683a5097ddd03eefbee3606..ef5c885bc8c263810a9be93d2baa1a10a9eaf9c0 100644 --- a/src/uncategorized/reFullBed.tw +++ b/src/uncategorized/reFullBed.tw @@ -7,11 +7,13 @@ /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_bedSlaveOne] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_bedSlaveTwo] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_bedSlaveOne] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_bedSlaveTwo] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reHGReplacement.tw b/src/uncategorized/reHGReplacement.tw index bac7696c083af71b595313baa7323c63e6a14a1f..0d49859533e73b2e2fc08efc898cb3725e07da9e 100644 --- a/src/uncategorized/reHGReplacement.tw +++ b/src/uncategorized/reHGReplacement.tw @@ -11,11 +11,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $HeadGirl 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $HeadGirl 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reRebels.tw b/src/uncategorized/reRebels.tw index e9bf72ae79bcae953ab2de73fefcb41fcd0b593e..2d1bc299ec545f6e10a4022421afed55c5a971f3 100644 --- a/src/uncategorized/reRebels.tw +++ b/src/uncategorized/reRebels.tw @@ -13,11 +13,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_i] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_i] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_j] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reRelationshipAdvice.tw b/src/uncategorized/reRelationshipAdvice.tw index 839f48a1dffb4050149422c323c81a85f2a46a73..a917d79e3f32b73df09ab9f272500bb1c62d3a2e 100644 --- a/src/uncategorized/reRelationshipAdvice.tw +++ b/src/uncategorized/reRelationshipAdvice.tw @@ -12,11 +12,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $subSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $subSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw index 6b49ec72b5c98cc4401c55fd928a4c314684ea6c..01f0c8feed433ab023a2b76e34a226b4020bf57f 100644 --- a/src/uncategorized/reRelativeRecruiter.tw +++ b/src/uncategorized/reRelativeRecruiter.tw @@ -826,11 +826,13 @@ You look up the _relationType. _He2 costs <<print cashFormat($slaveCost)>>, a ba <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $eventSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $eventSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw index 1bb46387b5b45d2df8bd60927209d6ffdb708b83..f8aad90409a1aa075a24d8f5d86f807d0f207150 100644 --- a/src/uncategorized/reShelterInspection.tw +++ b/src/uncategorized/reShelterInspection.tw @@ -61,11 +61,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt _Inspectee 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt _Inspectee 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reShowerPunishment.tw b/src/uncategorized/reShowerPunishment.tw index 91732022a3fec29046a556761c2933e930f5e2f6..2753fa517ef23bb2575cda79fae1bf7a9aa6d797 100644 --- a/src/uncategorized/reShowerPunishment.tw +++ b/src/uncategorized/reShowerPunishment.tw @@ -13,11 +13,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $HeadGirl 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $HeadGirl 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reSiblingRevenge.tw b/src/uncategorized/reSiblingRevenge.tw index bf4922c21cf35194ce4ccee232945c64f1ae8ab7..4ab39122274293b39c236073448fe12ff148988f 100644 --- a/src/uncategorized/reSiblingRevenge.tw +++ b/src/uncategorized/reSiblingRevenge.tw @@ -12,11 +12,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$j] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $slaves[$i] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$i] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[$j] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reSlaveMarriage.tw b/src/uncategorized/reSlaveMarriage.tw index 555312cfdfa565e53dd3dcea5908fbcc0e4b7589..99413870dd011a758940f80dafab37a9ae1ff838 100644 --- a/src/uncategorized/reSlaveMarriage.tw +++ b/src/uncategorized/reSlaveMarriage.tw @@ -17,11 +17,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $groomSlave 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $brideSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $groomSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $brideSlave 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/reStaffedMorning.tw b/src/uncategorized/reStaffedMorning.tw index 92514ba423f4f44cff26399b47e7a98b5581e2c5..a4f8d3119f89cd4c5cea280dadbd31d510c7214a 100644 --- a/src/uncategorized/reStaffedMorning.tw +++ b/src/uncategorized/reStaffedMorning.tw @@ -15,11 +15,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt _bedSlaves[1] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt _bedSlaves[0] 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt _bedSlaves[0] 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt _bedSlaves[1] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index a4e9a4bd0a944331fcc12a17895571c03a605b8b..8b1165c2d7d02a9c422b0920f85e3f29e216110c 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -880,7 +880,7 @@ $He's got a <<if $activeSlave.butt <= 1>>flat and <<print either("skinny", "slim", "taut")>> ass. <<elseif $activeSlave.butt <= 2>><<print either("rounded, small", "small but rounded", "small, sleek")>> rear end. <<elseif $activeSlave.butt <= 3>><<print either("big and healthy", "curved and plump", "healthy and plump")>> derrière. -<<elseif $activeSlave.butt <= 4>><<print either("big bubble butt", "curvy and enticing butt", "juicy and large butt")>>. +<<elseif $activeSlave.butt <= 4>><<print either("big bubble", "curvy and enticing", "juicy and large")>> butt. <<elseif $activeSlave.butt <= 5>><<print either("huge", "juicy and huge", "massive and undeniable")>> rear end. <<elseif ($activeSlave.amp == 1)>>ridiculous ass. It's so big it would jiggle as $he walked — if $he could walk. <<else>>ridiculous ass. It's so big it jiggles as $he walks. diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw index 4c8b2beeba32417837a5633da45988f65e5a175a..a0c2fc1bd9542b73bde1ee9394572ea24a14a71f 100644 --- a/src/uncategorized/seCoursing.tw +++ b/src/uncategorized/seCoursing.tw @@ -239,11 +239,13 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har <<set _clothesTemp = $Lurcher.clothes, $Lurcher.clothes = "no clothing">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $hare1 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $Lurcher 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $Lurcher 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $hare1 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -260,11 +262,13 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har <<set _clothesTemp = $Lurcher.clothes, $Lurcher.clothes = "no clothing">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $hare2 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $Lurcher 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $Lurcher 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $hare2 2 0>> + </div> </div> <</if>> /* 000-250-006 */ @@ -282,11 +286,13 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har <<set _clothesTemp = $Lurcher.clothes, $Lurcher.clothes = "no clothing">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $hare3 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $Lurcher 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $Lurcher 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $hare3 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw index 43662f2f5f85633c4adaee4c5e9e5df450236a2d..b3a2bc3ca7c669c9d39af21ca4a639e38fdc6ca6 100644 --- a/src/uncategorized/seLethalPit.tw +++ b/src/uncategorized/seLethalPit.tw @@ -26,11 +26,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt _fighterTwo 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt _fighterOne 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt _fighterOne 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt _fighterTwo 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw index 36b0715f8cbfed4cf189ec45a887641598180967..7ae6176f16599216d4e483f46c6449d35965523b 100644 --- a/src/uncategorized/seNonlethalPit.tw +++ b/src/uncategorized/seNonlethalPit.tw @@ -19,11 +19,13 @@ <span id="artFrame"> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt _fighterTwo 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt _fighterOne 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt _fighterOne 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt _fighterTwo 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/seRetirement.tw b/src/uncategorized/seRetirement.tw index bb2a1d919d3cf97e18447ac2729621f9d31ce9a2..1e7675c756ae94c3146d47e68ec00a4433543e28 100644 --- a/src/uncategorized/seRetirement.tw +++ b/src/uncategorized/seRetirement.tw @@ -216,11 +216,13 @@ Your arcology has gained a well-off citizen. <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt $slaves[_sr] 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt $activeSlave 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt $activeSlave 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt $slaves[_sr] 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/seWeddingDouble.tw b/src/uncategorized/seWeddingDouble.tw index 925a2609e4471d04c08b2e926048e05b9409ba8b..1d7421074727d9b646e938d97aba763a394f73a4 100644 --- a/src/uncategorized/seWeddingDouble.tw +++ b/src/uncategorized/seWeddingDouble.tw @@ -10,11 +10,13 @@ /* 000-250-006 */ <<if $seeImages == 1>> - <div class="imageRef medImg"> - <<SlaveArt _slave2 2 0>> - </div> - <div class="imageRef medImg"> - <<SlaveArt _slave1 2 0>> + <div class="imageColumn"> + <div class="imageRef medImg"> + <<SlaveArt _slave1 2 0>> + </div> + <div class="imageRef medImg"> + <<SlaveArt _slave2 2 0>> + </div> </div> <</if>> /* 000-250-006 */ diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 614e1dfe5f8ca5db63c071976e01d3d38bf0df58..a68f0394c4cb1f5a12f17b62bddf0c3212eb4ecd 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -54,7 +54,7 @@ <<elseif ($partner == "relationship") || ($partner == "relation")>> <<= relatedSlave($activeSlave)>> - + <<elseif (_flag > 80) && ($activeSlave.fuckdoll == 0)>> <<BoobsDescription>> <<switch $activeSlave.clothes>> diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw index f1c08d693138db1ff0b38c9741f760e47d82be2a..e4ab84f540c87374d71645a50278babbe9c9a6ae 100644 --- a/src/utility/birthWidgets.tw +++ b/src/utility/birthWidgets.tw @@ -777,7 +777,7 @@ <<else>> While sucking a dick through the hole of $his confining box, $slaves[$i].slaveName's water breaks. $He quickly finishes the dick off before seating $himself in the back of the box. <<ClothingBirth>> - As $he finishes, $he could have sworn $he saw an eye peeping through the glory hole, watching the show. The box is opened and $his child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> gathered and taken away as $he turns to suck the fresh cock poking through the hole. + As $he finishes, $he <<if canSee($slaves[$i])>>could have sworn $he saw an eye<<else>>swears $he can feel somebody<</if>> peeping through the glory hole, watching the show. The box is opened and $his child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> gathered and taken away as $he turns to suck the fresh cock poking through the hole. <</if>> <<case "get milked">>