diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index fd1be3344b75e34df0be832ff83c64a3f0fa3e90..2b4900ea01d7e28f782bb736902b038b26efc9ef 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -1,5 +1,14 @@ Pregmod +0.10.7.1-0.6.x + +8/16/2018 + + 3 + -new supremacist and subjugationist PA FS appearances + -hearing and deafness added + -fixes + 0.10.7.1-0.5.x 8/14/2018 diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 19cf01b73c0d6e477efc916bacc6f3b08b6ab8c9..8d6f8d9976434d7b8a1f20f9b02d8fe23393dc40 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -37,6 +37,8 @@ if (typeof interpolate == "undefined") { window.interpolate = interpolate; } +config.history.maxStates = 1; + window.isFullyPotent = function(slave) { if (!slave) { return null; @@ -1429,9 +1431,9 @@ window.setPregType = function(actor) { var ovum = 1; var fertilityStack = 0; // adds an increasing bonus roll for stacked fertility drugs - if(actor.broodmother < 1) { // Broodmothers should be not processed here. Necessary now. + if(actor.broodmother < 1) { /* Broodmothers should be not processed here. Necessary now.*/ if(typeof actor.readyOva == "number" && actor.readyOva != 0) { - ovum = actor.readyOva; //just single override; for delayed impregnation cases + ovum = actor.readyOva; /*just single override; for delayed impregnation cases */ } else if(actor.ID == -1) { if(actor.birthMaster > 0) { // Predisposed to twins if(actor.fertDrugs == 1) { @@ -5443,8 +5445,10 @@ if(eventSlave.fetish != "mindbroken") { } } - if (eventSlave.bellyPreg >= 300000) { - State.variables.RESSevent.push("hyperpreg stuck"); + if(State.variables.PC.dick != 0) { + if (eventSlave.bellyPreg >= 300000) { + State.variables.RESSevent.push("hyperpreg stuck"); + } } if(eventSlave.prestige == 0) { @@ -6593,8 +6597,10 @@ if(eventSlave.fetish != "mindbroken") { } } - if (eventSlave.bellyPreg >= 300000) { - State.variables.RESSevent.push("hyperpreg stuck"); + if(State.variables.PC.dick != 0) { + if (eventSlave.bellyPreg >= 300000) { + State.variables.RESSevent.push("hyperpreg stuck"); + } } if(eventSlave.relationship == 4) { @@ -10686,6 +10692,13 @@ window.saRest = function saRest(slave) { } else if (slave.health > -100) { t += ` ${His} <span class='green'>health recovers</span> with rest.`; slave.health += 10; + if (!(canHear(slave))) { + t += ` Since $he is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother $him at all.</span>`; + slave.health += 3; + } else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) { + t += ` Since $he is hard of hearing, the hustle and bustle of daily life in the penthouse <span class='green'>didn't disturb $his rest as much.</span>`; + slave.health += 1; + } } if (slave.fuckdoll == 0 && slave.fetish != "mindbroken") { @@ -10736,7 +10749,15 @@ window.saServant = function saServant(slave) { } else { t += `uses sex as a reward, getting ${him} off when ${he} <span class='yellowgreen'>works harder.</span>`; } - V.cash += V.stewardessBonus; + if (!(canHear(slave))) { + t += ` However, $his inability to hear often leaves him oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`; + V.cash += (V.stewardessBonus/4); + } else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) { + t += ` However, $he often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`; + V.cash += (V.stewardessBonus/2); + } else { + V.cash += V.stewardessBonus; + } } } } @@ -10847,6 +10868,12 @@ window.saStayConfined = function saStayConfined(slave) { slave.trust -= 5 } + if (slave.assignment == "be confined in the cellblock") { + if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs") || (slave.hears == -2)) { + t += ` $His hearing impairment spares $him the sounds of $his peers getting punished, lightening the impact of $his imprisonment.` + } + } + t += ` The stress of confinement <span class='red'>damages ${his} health.</span>` slave.health -= 10 } else { @@ -11029,20 +11056,6 @@ function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot c var lastActiveSlave, lastSlaves, lastPC; -/* - To use, add something like: - -<div id="familyTree"></div> - <span id="familyTreeLink"> - <<link "Pull up the file on her family tree.">> - <<replace #familyTreeLink>> - <<run renderFamilyTree($slaves, $activeSlave.ID)>> - <</replace>> - <</link>> -</span> - -*/ - window.renderFamilyTree = function(slaves, filterID) { var ftreeWidth,ftreeHeight; @@ -11474,20 +11487,6 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) { return family_graph; }; -/*Old version. To use, do something like: -<div id="editFamily"> - <div id="graph"></div> -</div> - -<<run updateFamilyTree($activeSlave, $slaves, $PC)>> -<script>updateFamilyTree()</script> -If you want to update the tree, just re-call the run line. - -If there's no active slave, you can do: - -<<run updateFamilyTree(null, $slaves, $PC)>> -*/ - window.updateFamilyTree = function(activeSlave = lastActiveSlave, slaves = lastSlaves, PC = lastPC) { lastActiveSlave = activeSlave; lastSlaves = slaves; @@ -28865,7 +28864,7 @@ window.nationalityToAccent = function nationalityToAccent(slave) { } if (slave.nationality === V.language) { - slave.accent = jsEither([0, 0, 0, 1]); + slave.accent = jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1]); } }; diff --git a/devTools/tweeGo/storyFormats/sugarcube-2/header.html b/devTools/tweeGo/storyFormats/sugarcube-2/header.html index b0325a83edd515c0eaa5bee7d56800065f022837..0b28d0361663f63504a06f70589ce217bed62ee7 100644 --- a/devTools/tweeGo/storyFormats/sugarcube-2/header.html +++ b/devTools/tweeGo/storyFormats/sugarcube-2/header.html @@ -104,6 +104,11 @@ var saveAs=saveAs||navigator.msSaveBlob&&navigator.msSaveBlob.bind(navigator)||f <style id="style-ui" type="text/css">#ui-dialog-body.settings [id|=setting-body]>div:first-child{display:table;width:100%}#ui-dialog-body.settings [id|=setting-label]{display:table-cell;padding:.4em 2em .4em 0}#ui-dialog-body.settings [id|=setting-label]+div{display:table-cell;min-width:8em;text-align:right;vertical-align:middle;white-space:nowrap}#ui-dialog-body.list{padding:0}#ui-dialog-body.list ul{margin:0;padding:0;list-style:none;border:1px solid transparent}#ui-dialog-body.list li{margin:0}#ui-dialog-body.list li:not(:first-child){border-top:1px solid #444}#ui-dialog-body.list li a{display:block;padding:.25em .75em;border:1px solid transparent;color:#eee;text-decoration:none}#ui-dialog-body.list li a:hover{background-color:#333;border-color:#eee}#ui-dialog-body.saves{padding:0 0 1px}#ui-dialog-body.saves>:not(:first-child){border-top:1px solid #444}#ui-dialog-body.saves table{border-spacing:0;width:100%}#ui-dialog-body.saves tr:not(:first-child){border-top:1px solid #444}#ui-dialog-body.saves td{padding:.33em .33em}#ui-dialog-body.saves td:first-child{min-width:1.5em;text-align:center}#ui-dialog-body.saves td:nth-child(3){line-height:1.2}#ui-dialog-body.saves td:last-child{text-align:right}#ui-dialog-body.saves .empty{color:#999;speak:none;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#ui-dialog-body.saves .datestamp{font-size:75%;margin-left:1em}#ui-dialog-body.saves ul.buttons li{padding:.4em}#ui-dialog-body.saves ul.buttons>li+li>button{margin-left:.2em}#ui-dialog-body.saves ul.buttons li:last-child{float:right}#ui-dialog-body.settings div[id|=header-body]{margin:1em 0}#ui-dialog-body.settings div[id|=header-body]:first-child{margin-top:0}#ui-dialog-body.settings div[id|=header-body]:not(:first-child){border-top:1px solid #444;padding-top:1em}#ui-dialog-body.settings div[id|=header-body]>*{margin:0}#ui-dialog-body.settings h2[id|=header-heading]{font-size:1.375em}#ui-dialog-body.settings p[id|=header-desc],#ui-dialog-body.settings p[id|=setting-desc]{font-size:87.5%;margin:0 0 0 .5em}#ui-dialog-body.settings div[id|=setting-body]+div[id|=setting-body]{margin:1em 0}#ui-dialog-body.settings [id|=setting-control]{white-space:nowrap}#ui-dialog-body.settings button[id|=setting-control]{color:#eee;background-color:transparent;border:1px solid #444;padding:.4em}#ui-dialog-body.settings button[id|=setting-control]:hover{background-color:#333;border-color:#eee}#ui-dialog-body.settings button[id|=setting-control].enabled{background-color:#282;border-color:#4a4}#ui-dialog-body.settings button[id|=setting-control].enabled:hover{background-color:#4a4;border-color:#6c6}#ui-dialog-body.settings input[type=range][id|=setting-control]{max-width:35vw}#ui-dialog-body.list a,#ui-dialog-body.settings span[id|=setting-input]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#ui-dialog-body.saves button[id=saves-clear]:before,#ui-dialog-body.saves button[id=saves-export]:before,#ui-dialog-body.saves button[id=saves-import]:before,#ui-dialog-body.settings button[id|=setting-control].enabled:after,#ui-dialog-body.settings button[id|=setting-control]:after{font-family:tme-fa-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;speak:none}#ui-dialog-body.saves button[id=saves-export]:before{content:"\e829\00a0"}#ui-dialog-body.saves button[id=saves-import]:before{content:"\e82a\00a0"}#ui-dialog-body.saves button[id=saves-clear]:before{content:"\e827\00a0"}#ui-dialog-body.settings button[id|=setting-control]:after{content:"\00a0\00a0\e830"}#ui-dialog-body.settings button[id|=setting-control].enabled:after{content:"\00a0\00a0\e831"}</style> <style id="style-ui-bar" type="text/css">#story{margin-left:20em}#ui-bar.stowed~#story{margin-left:4.5em}@media screen and (max-width:1136px){#story{margin-left:19em}#ui-bar.stowed~#story{margin-left:3.5em}}@media screen and (max-width:768px){#story{margin-left:3.5em}}#ui-bar{position:fixed;z-index:50;top:0;left:0;width:17.5em;height:100%;margin:0;padding:0;-o-transition:left .2s ease-in;transition:left .2s ease-in}#ui-bar.stowed{left:-15.5em}#ui-bar-body{height:90%;height:calc(100% - 2.5em);margin:2.5em 0;padding:0 1.5em}#ui-bar.stowed #ui-bar-body,#ui-bar.stowed #ui-bar-history{visibility:hidden;-o-transition:visibility .2s step-end;transition:visibility .2s step-end}#ui-bar{background-color:#222;border-right:1px solid #444;text-align:center}#ui-bar-tray{position:absolute;top:.2em;left:0;right:0}#ui-bar a{text-decoration:none}#ui-bar hr{border-color:#444}#ui-bar-history [id|=history],#ui-bar-toggle{font-size:1.2em;line-height:inherit;color:#eee;background-color:transparent;border:1px solid #444}#ui-bar-toggle{display:block;position:absolute;top:0;right:0;border-right:none;padding:.3em .45em .25em}#ui-bar.stowed #ui-bar-toggle{padding:.3em .35em .25em .55em}#ui-bar-toggle:hover{background-color:#444;border-color:#eee}#ui-bar-history{margin:0 auto}#ui-bar-history [id|=history]{padding:.2em .45em .35em}#ui-bar-history #history-jumpto{padding:.2em .665em .35em}#ui-bar-history [id|=history]:not(:first-child){margin-left:1.2em}#ui-bar-history [id|=history]:hover{background-color:#444;border-color:#eee}#ui-bar-history [id|=history]:disabled{color:#444;background-color:transparent;border-color:#444}#ui-bar-body{line-height:1.5;overflow:auto}#ui-bar-body>:not(:first-child){margin-top:2em}#story-title{margin:0;font-size:162.5%}#story-author{margin-top:2em;font-weight:700}#menu ul{margin:1em 0 0;padding:0;list-style:none;border:1px solid #444}#menu ul:empty{display:none}#menu li{margin:0}#menu li:not(:first-child){border-top:1px solid #444}#menu li a{display:block;padding:.25em .75em;border:1px solid transparent;color:#eee;text-transform:uppercase}#menu li a:hover{background-color:#444;border-color:#eee}#menu a,#ui-bar-history [id|=history],#ui-bar-toggle{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#menu-core li[id|=menu-item] a:before,#ui-bar-history [id|=history],#ui-bar-toggle:before{font-family:tme-fa-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;speak:none}#ui-bar-toggle:before{content:"\e81d"}#ui-bar.stowed #ui-bar-toggle:before{content:"\e81e"}#menu-item-saves a:before{content:"\e82b\00a0"}#menu-item-settings a:before{content:"\e82d\00a0"}#menu-item-restart a:before{content:"\e82c\00a0"}#menu-item-share a:before{content:"\e82f\00a0"}</style> <style id="style-ui-debug" type="text/css">#debug-bar{background-color:#222;border-left:1px solid #444;border-top:1px solid #444;bottom:0;margin:0;max-height:75%;padding:.5em;position:fixed;right:0;z-index:99900}#debug-bar>div:not([id])+div{margin-top:.5em}#debug-bar>div>label{margin-right:.5em}#debug-bar>div>input[type=text]{min-width:0;width:8em}#debug-bar>div>select{width:15em}#debug-bar-toggle{color:#eee;background-color:#222;border:1px solid #444;height:101%;height:calc(100% + 1px);left:-2em;left:calc(-2em - 1px);position:absolute;top:-1px;width:2em}#debug-bar-toggle:hover{background-color:#333;border-color:#eee}#debug-bar-hint{bottom:.175em;font-size:4.5em;opacity:.33;pointer-events:none;position:fixed;right:.6em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}#debug-bar-watch{background-color:#222;border-left:1px solid #444;border-top:1px solid #444;bottom:102%;bottom:calc(100% + 1px);font-size:.9em;left:-1px;max-height:650%;max-height:65vh;position:absolute;overflow-x:hidden;overflow-y:scroll;right:0;z-index:99800}#debug-bar-watch[hidden]{display:none}#debug-bar-watch div{color:#999;font-style:italic;margin:1em auto;text-align:center}#debug-bar-watch table{width:100%}#debug-bar-watch tr:nth-child(2n){background-color:rgba(127,127,127,.15)}#debug-bar-watch td{padding:.2em 0}#debug-bar-watch td:first-child+td{padding:.2em .3em .2em .1em}#debug-bar-watch .watch-delete{background-color:transparent;border:none;color:#c00}#debug-bar-watch-all,#debug-bar-watch-none{margin-left:.5em}#debug-bar-views-toggle,#debug-bar-watch-toggle{color:#eee;background-color:transparent;border:1px solid #444;margin-right:1em;padding:.4em}#debug-bar-views-toggle:hover,#debug-bar-watch-toggle:hover{background-color:#333;border-color:#eee}#debug-bar-watch:not([hidden])~div #debug-bar-watch-toggle,html[data-debug-view] #debug-bar-views-toggle{background-color:#282;border-color:#4a4}#debug-bar-watch:not([hidden])~div #debug-bar-watch-toggle:hover,html[data-debug-view] #debug-bar-views-toggle:hover{background-color:#4a4;border-color:#6c6}#debug-bar-hint:after,#debug-bar-toggle:before,#debug-bar-views-toggle:after,#debug-bar-watch .watch-delete:before,#debug-bar-watch-add:before,#debug-bar-watch-all:before,#debug-bar-watch-none:before,#debug-bar-watch-toggle:after{font-family:tme-fa-icons;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;speak:none}#debug-bar-toggle:before{content:"\e838"}#debug-bar-hint:after{content:"\e838\202f\e822"}#debug-bar-watch .watch-delete:before{content:"\e804"}#debug-bar-watch-add:before{content:"\e805"}#debug-bar-watch-all:before{content:"\e83a"}#debug-bar-watch-none:before{content:"\e827"}#debug-bar-views-toggle:after,#debug-bar-watch-toggle:after{content:"\00a0\00a0\e830"}#debug-bar-watch:not([hidden])~div #debug-bar-watch-toggle:after,html[data-debug-view] #debug-bar-views-toggle:after{content:"\00a0\00a0\e831"}html[data-debug-view] .debug{padding:.25em;background-color:#234}html[data-debug-view] .debug[title]{cursor:help}html[data-debug-view] .debug.block{display:inline-block;vertical-align:middle}html[data-debug-view] .debug.invalid{text-decoration:line-through}html[data-debug-view] .debug.hidden,html[data-debug-view] .debug.hidden .debug{background-color:#555}html:not([data-debug-view]) .debug.hidden{display:none}html[data-debug-view] .debug[data-name][data-type].nonvoid:after,html[data-debug-view] .debug[data-name][data-type]:before{background-color:rgba(0,0,0,.25);font-family:monospace,monospace;white-space:pre}html[data-debug-view] .debug[data-name][data-type]:before{content:attr(data-name)}html[data-debug-view] .debug[data-name][data-type|=macro]:before{content:"<<" attr(data-name) ">>"}html[data-debug-view] .debug[data-name][data-type|=macro].nonvoid:after{content:"<</" attr(data-name) ">>"}html[data-debug-view] .debug[data-name][data-type|=html]:before{content:"<" attr(data-name) ">"}html[data-debug-view] .debug[data-name][data-type|=html].nonvoid:after{content:"</" attr(data-name) ">"}html[data-debug-view] .debug[data-name][data-type]:not(:empty):before{margin-right:.25em}html[data-debug-view] .debug[data-name][data-type].nonvoid:not(:empty):after{margin-left:.25em}html[data-debug-view] .debug[data-name][data-type|=special],html[data-debug-view] .debug[data-name][data-type|=special]:before{display:block}</style> +<link rel="icon" type="image/png" sizes="310x310" href="data:image/png;base64,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"> +<link rel="icon" type="image/png" sizes="16x16" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAA7AAAAOwAFq1okJAAAAGXRFWHRTb2Z0d2FyZQBwYWludC5uZXQgNC4wLjIx8SBplQAAARlJREFUOE+tk7FuwjAURf0TXfia/Eh/gZENMXZtWQI7irJ1rUSliEodCFIQCkgMMETqUtLQJerC8Jpr8aL3nAgYuNJRYvvdazt2DIuIzm/GeJ5XVpDE9307hjqmlttZPa1+8tySpillWabqGDYoDn9E0RfReE00mJMNSJbLRh24OcCtAbXcgeSgA6Ioqrp1DWg1g7sGyJNw664GnE1Squ5iAJuxhd60sGBM0hpQGU9s5m/AId3XPbrr2tYAPkJIBsDsBgDVALx/yA14nDTvg2pg6S4vz8NGn/SoAMwuZwUwjN435G+Jnj5L6r/Z5TUD5N6lfo/fPKtVURTqYpnZamc+VruO3Dv/hQCGRRzbELzjv0BAEAQPYRiaf5hY1uhDUXlmAAAAAElFTkSuQmCC"> +<link rel="icon" type="image/x-icon" sizes="16x16 32x32 64x64" href="data:image/x-icon;base64,AAABAAMAQEAAAAEAIAAoQgAANgAAACAgAAABACAAqBAAAF5CAAAQEAAAAQAgAGgEAAAGUwAAKAAAAEAAAACAAAAAAQAgAAAAAAAAQAAAwQ4AAMEOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJKSkgCCgoJVl5eY/JmZmv+ZmZr/mZma/5mZmv+ZmZr/mZma/5mZmv+ZmZn/mZmZ/5mZmf+ZmZn/mZmZ/5mZmf+ZmZn/mZmZ/5mZmf+ZmZn/mZmZ/5mZmf+ZmZn/mZmZ/5mZmf+ZmZn/mZmZ/5mZmf+ZmZn/mZmZ/5mZmf+ZmZn/mZmZ/5mZmf+ampr/ZmZm/z4+Pv9nZ2f/jIyM/5GRkf+RkZH/kZGR/5GRkf+Ojo7/hYWF/4WFhf+FhYX/hYWF/4GBgf94eHjsZmZmMGhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/9+wA/vftKf/z5Ob/8N3//+/Z///t1f//6s3//+rN///qzf//9ef/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////xcXF/1RUVP9ra2v/ysrK/+vr6//t7e3/7e3t/+3t7f/t7e3/5ubm/9TU1P/T09P/09PT/9PT0//IyMj/v7+/zL+/vxG/v78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+nLAP/pywn/6s25/+fH///kvv//4rv//9ur///aqP//2qf//+bD///+/f//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////xcXF/1JSUv9qamr/zMzM/+zs7P/t7e3/7e3t/+3t7f/t7e3/7e3t/+Li4v/T09P/09PT/9PT0//S0tL/xMTE/7+/v5u/v78Bv7+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qzgD/6s4A/+rOhf/py///5MD//+S////esv//26r//9up///esv//+fH/////////////////////////////////////////////////////////////////////////////////////////////////////////////////xcXF/1JSUv9qamr/zMzM//Hx8f/w8PD/7e3t/+3t7f/t7e3/7e3t/+3t7f/e3t7/09PT/9PT0//T09P/0NDQ/8HBwf+/v79pv7+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+rOAP/qzk//6s36/+XC///kv///4bf//9uq///bqv//26r///Dc////////////////////////////////////////////////////////////////////////////////////////////////////////////xcXF/1JSUv9qamr/zMzM//Hx8f/7+/v/8PDw/+3t7f/t7e3/7e3t/+3t7f/s7Oz/2tra/9PT0//T09P/09PT/83Nzf+/v7/yv7+/PL+/vwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/t1QD/7dYk/+3U4v/nxv//5L///+O8///crf//26r//9qp///mxP///v3/////////////////////////////////////////////////////////////////////////////////////////////////xcXF/1JSUv9qamr/zMzM//Hx8f/9/f3//f39/+/v7//t7e3/7e3t/+3t7f/t7e3/6urq/9fX1//T09P/09PT/9PT0//IyMj/v7+/1L+/vxe/v78AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/7tcA//DbCf/v2bn/6cz//+XB///lwf//37T//9yt///crP//4LX///ny////////////////////////////////////////////////////////////////////////////////////////////xcXF/1JSUv9qamr/zMzM//Hx8f/9/f3///////v7+//u7u7/7e3t/+3t7f/t7e3/7e3t/+fn5//U1NT/09PT/9PT0//S0tL/xMTE/7+/v6a/v78Dv7+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+nLAP///gD/+vSF//rz///58P//+fD///ft///26v//9uv///fr///9+v//////////////////////////////////////////////////////////////////////////////////////39/f/1dXV/9qamr/zMzM//Hy8v/9/v7////////////7+/v/7u7u/+3t7v/t7e7/7e3u/+3u7v/k5OX/09PU/9PT1P/T09T/0NDR/8HBwv+/v79vv7+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/9OUA//bpT//z4/r/8d3//+/a///v2f//69D//+rO///qzv//6s3//+jI///mw///5sP//+bD///mw///4bj//9+z///ftP//37T//9+0///ftP//37T//9+0///ftP//37L//+/W/87Oz/9RUVH/ubi3//XdvP/+3bH//9+0///ftP//37T/+9uw/+7Qp//t0Kf/7dCn/+3Qp//t0Kf/5Mig/9m+l//Zvpj/2b6Y/9S5kf/LsIfyybKPPMmxjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+nNAP/pzCT/6s3i/+bF///jvv//477//96w///aqP//2qj//9qp///Yo///05j//9OX///Tl///05f//82I///IfP//yH3//8h9///Iff//yH3//8h9///Iff//yH3//8d6///htf/Pz9D/VVVW/8PBv//70pn//8h7///Iff//yH3//8h9//vFe//uu3T/7bp0/+26dP/tunT/7bp0/+Ozb//drmz/3a5s/92ubP/Xp2H/06Nb2dSjWRrUo1kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qzgD/6s4J/+rPuf/oyv//5L///+S////ht///26r//9uq///bqv//2qj//9Wc///Umf//1Jn//9SZ///Pjv//yX///8l////Jf///yX///8l////Jf///yX///8l////Iff//4rb/z8/Q/1RUVP/Avrv/+9Ob///Iff//yX///8l////Jf//6xXz/7bt2/+27dv/tu3b/7bt2/+y6df/gsXD/3a9u/92vbv/crmz/1KZf/9OkXbDTpF0F06RdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6s4A/+7XAP/u1oX/6s7//+XB///kv///47z//9ys///bqf//26n//9up///Xn///1Jj//9SY///Umf//0ZH//8l////Jfv//yX7//8l+///Jfv//yX7//8l+///Jfv//yHz//+K2/8/Q0P9NTU3/mJiY/+jSs///zIX//8h9///Jfv//yX7/+MN6/+27df/tu3X/7bt1/+27df/quXT/3rBu/92vbf/dr23/2qxp/9OkXf/TpF1606RcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/x3QD/8dxP//Da+v/rzf//6cj//+nI///kvP//4bb//+G2///htv//37H//9un///bp///26f//9mj///Skv//0ZD//9GQ///RkP//0ZD//9GQ///RkP//0ZD//9CO///nwP/P0ND/S0tL/19gYP+gn5//7te4///Skv//0ZD//9GQ//jLi//uwob/7sKG/+7Chv/vw4b/6L2C/920e//dtHv/3bR7/9eucv/RqGn40admSNGnZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADk4dwA5eHcJNjW0+LW1ND/19PP/9fTz//X087/19LM/9fSzP/X0sz/19LM/9fRyv/X0cr/19HK/9fRyv/X0Mj/19DH/9fQx//X0Mf/19DH/9fQx//X0Mf/19DH/9fQx//Z1dD/sLCw/1VVVf+bm5v/b29v/5+fnv/Vz8f/19DH/9bQx//QysH/zMa+/8zGvv/Mxr7/zMa+/8bAuP++uLH/vrix/764sf+3san/tK6l3ryyoiG8sqMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdHR1AHR1dQlbW1u5WFhZ/1hYWf9YWFn/WFhY/1dXWP9XV1j/V1dY/1dXWP9XV1j/V1dY/1dXWP9XV1j/V1dY/1dXWP9XV1j/V1dY/1dXWP9XV1j/V1dY/1dXWP9XV1j/V1hY/1BQUP9QUFD/y8vL/8nJyf9sbG3/VlZX/1dXWP9XV1j/V1dY/1dYWP9XWFj/V1hY/1dYWP9XWFj/WFhZ/1hZWf9YWVn/WFlZ/1pbW7dpa20HZ2lsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQUFABHR0cAPj4+eT4+PuQ+Pj7hPj4+4EVFRehUVVX+VVVV/1VVVf9VVVX/VVVV/1VVVf9VVVX/VVVV/1VVVf9VVVX/VVVV/1VVVf9VVVX/VVVV/1VVVf9VVVX/VVVV/1VVVf9UVVX/Z2dn/+Dg4P//////1dXV/2tra/9TU1P/U1NT/1NTU/9TU1P/U1NT/1JSUv9QUFD/UFBQ/0VFRe0+Pj7gPj4+4T4+PuQ+Pj55R0dHABQUFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQEBAAEBAQAxAQEAeQEBAHigoKBu8u7pW6Ofm9+jn5v/o5+b/6Ofl/+jn5v/o6Oj/6Ofl/+jn5f/o5+X/6Ofk/+jm5P/o5uT/6Obk/+jm5P/o5uT/6Obk/+jm5P/o5uT/6Obk/+vp5v/8+vj///77///+/P/x7+3/393a/9jW1P/Y19T/2NfU/9nX1f/NzMn/wsC+/7y7uP6enZtwLS4uGkBAQB5AQEAeQEBADEBAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8dwA//HcP//w2vb/7dL//+rM///lwP//6sz///z4///qy///4LP//+Cz///apf//2KD//9ig///YoP//2KD//9ig///YoP//2KD//9ig///YoP//2KD//9ef///Wn///1p///9eg//XPmf/uyJX/7smV/+7Jlf/vyZX/5MCO/9y5iP/WtIH0z615Pc+seAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+rNAP/qzj//6cv2/+TA///huf//26n//9yt///26v//68///9OX///Tl///y4T//8h9///Iff//yH3//8h9///Iff//yH3//8h9///Iff//yH3//8h9///Iff//yH3//8h9//7Iff/yvnf/7bp0/+26dP/tunT/7bp0/+Ozb//drmz/2Khj39KiWCDUo1oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/qzgD/6s4//+nM9v/lwf//4rr//9ur///aqP//6s7///bq///XoP//05j//8yF///Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf//+yH7/8L54/+27dv/tu3b/7bt2/+y6dv/hsnD/3K5t/9aoY8LQoFcL06RdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/6s4A/+rOP//pzPb/5cH//+K6///bq///2qj//9+z///68///37P//9OX///Mhf//yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///cd+/++9d//tu3b/7bt2/+27dv/runX/37Fv/9ytbP/VpmGgu4o1AdOkXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+vQAP/r0D//6s32/+XB///iuv//26v//9up///Yov//9Ob//+vQ///Tl///zIX//8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l///vGff/uvHf/7bt2/+27dv/tu3b/6rh0/96wb//brGr/1KVfe9anYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/v2QD/8No//+vR9v/lwf//4rr//9ur///bqf//1Zz//+nK///26v//1p///8yF///Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf//6xX3/7rt2/+27dv/tu3b/7bt2/+i3c//dr27/2qto+9OkXVDTpV4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/8NsA//DcP//s0fb/5cH//+K6///bq///26n//9Wc///drv//+vP//9+y///LhP//yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX//+MR8/+27dv/tu3b/7bt2/+27dv/ltXL/3a9u/9mqZu3So1wy06RdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//HbAP/x3D//7NL2/+XB///iuv//3Kv//9up///Wnf//1p3///Xm///s0P//y4T//8l+///Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l///bCe//tu3b/7bt2/+27dv/tu3b/47Nx/92vbv/XqGTZ0aJaGdOkXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPbw5wD28Og/9u7j9vbr3f/26tr/9ufT//bn0//25c7/9uTM//bv5v/28u3//Nim///Jfv//yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf//0wXr/7bt2/+27dv/tu3b/7Lp2/+GycP/crm3/1qdivM+gVgjTpF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACGhocAhoaHP4aHh/aGh4f/hoeH/4aHiP+Gh4j/hoeI/4aHiP+Ghob/jIyN/8jCu//71qL//8l+///Jf///yX///8l////Jf///yX///8l////Jf///yX///8l////Jf///yX//8795/+27dv/tu3b/7bt2/+u6df/fsW//261r/9WmYJbrvoUA06RdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPz8/AD8/Pz8/Pz/2Pz8//z8/P/8+Pj7/PT09/z09Pf89PT3/PT09/z4+Pv9sbW3/yMK6//vWov//yX7//8l////Jf///yX///8l////Jf///yX///8l////Jf///yX///sh///G+eP/tu3b/7bt2/+27dv/quHT/3rBv/9qsav/UpV9t1aZgAAAA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AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/Pz8APj4+bz4+Pv8+Pj7/Pj4+/z4+Pv8+Pj7/Pj4+/z4+Pv8+Pj7/Pj4+/z4+Pv8+Pj7/Pj4+9j4+Pj8+Pj4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD+AAAAAAAAf/4AAAAAAAB//gAAAAAAAH//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//+AAAAAAAH//4AAAAAAAf//gAAAAAAB//+AAAAAAAH//8AAAAAAA///wAAAAAAD///AAAAAAAP//8AAAAAAA///4AAAAAAH///gAAAAAAf///4AAAAAf////gAAAAB////+AAAAAH////4AAAAAf////gAAAAD////+AAAAAP////4AAAAA/////gAAAAD////+AAAAAP////4AAAAB/////gAAAAH////+AAAAAf/////gAAAB/////+AAAAH/////4AAAAf/////gAAAD/////+AAAAP/////4AAAA//////wAAAD//////AAAAP/////8AAAA//////wAAAH//////AAAAf/////8AAAB//////wAAB///////AAAH//////8AAAf//////4AAD///////gAAP//////+AAA///////4AAD///////gAAP//////+AAB///////4AAH///////gAAf//////+AAB///////8AAP///////wAA////////AAD///////8AAP///////wAA////////AAH///////8AAf///////wAB////////AAH///////+AAf///////4AB////ygAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMEOAADBDgAAAAAAAAAAAAAAAAAAAAAAAL+6tAC8uLIr0Me96NLIuf/SxbP/0sm7/9LS0f/S0tL/0tLS/9LS0v/S0tL/0tLS/9LS0v/S0tL/0tLS/9LS0v/T09P/0dHR/4KCgv+BgYH/wsLC/8XFxf/BwcH/srKy/7CwsP+kpKTcjo6OHZCQkAAAAAAAAAAAAAAAAAAAAAAA//DVAP/x2Q3/683D/+bB///fsP//47r///z3//////////////////////////////////////////////////39/f+1tbX/i4uL/97e3v/v7+//7+/v/+fn5//V1dX/0tLS/8XFxbe9vb0HxMTEAAAAAAAAAAAAAAAAAAAAAAD/6s4A/+bDAP/qzpD/5cL//96y///bqv//8+P////////////////////////////////////////////9/f3/s7Oz/4iJif/k5OT/9vf3/+3t7f/t7u7/4eLi/9PT0//Ozs7/wcHBhcTExQC/v78AAAAAAAAAAAAAAAAAAAAAAAAAAAD/8+MA//PiWf/w2/z/7NL//+jJ///z4v///vz///37///9+////fr///36///9+v///fr////9/729vf+Ih4b/5OLf///++//18/H/7evo/+3r6f/e3Nr/09LP/8vJx/q/vrxPwL68AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/y4AD/8+Ir/+7X6P/rz///5sP//+S////ht///37L//9ys///Wn///1p///9af///Wnf//4bf/m5ua/8y7pP//2KD//9ef//TOmP/tx5P/7ceT/+C8i//at4b/0rB95MqsfyXMroAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+rOAP/s0w3/6s3D/+bB///gs///3Kn//9mi///VmP//0pL//8p+///Jff//yX3//8h7///Xnv+ZmJf/wK+Y///MhP//yX3/9cB3/+67dP/tunP/4bFt/92taf/VpV2+0qFWC9SjWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/79oAk5CNAOfczpDg1ML/4NG8/+DOtf/gzbP/4Mut/+DKq//gxaH/4MWg/+DFoP/gxJ//4Myw/4qKiP+HhoT/zbmf/+HFoP/WvZn/0rmX/8+3lf/Fro7/waqJ/7+lfY2ZnKEA0qVhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWVlcAX2BgUlhZWd9cXV7ma2xt/Wxtb/9sbW//bG1v/2xucP9sbnD/bG5w/2xucP9rbW//cXJz/8vMzv+SlJb/amtu/2prbf9pamz/ZWdp/lpbXOhWV1jfWltdUVRVVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQ0NAAzMzMIIiIkG6eim0fl287v59nH/+ff1P/n2cb/59O4/+fQsv/n0LL/59Cy/+fQsv/q1LX//OfJ//TfwP/bxqn/18Km/9K9ov/BrpTwjYJySicpKxs0NDQINTU1AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/688A/+zQLv/ox+3/37L//+jG///lv///0I7//8qA///KgP//yoD//8qA///KgP//yX7//sh+//G/eP/uvHf/6Ld0/9ytatnVpl4a1qZfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/rzwD/69Au/+fG7f/esv//3rD//+rO///Qkf//yX///8l////Jf///yX///8l////Jf//9x37/77x3/+27dv/ktXL/2atou8+fVQnTpF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+/XAP/v2C7/6Mjt/9+y///Zo///6s3//9ae///Jfv//yX///8l////Jf///yX///8l///vGff/uvHb/7bt2/+KzcP/YqmaW/9iuANOkXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADz6NkA8+jaLvPjzu3z3b//89iz//Phyf/43bj//8qA///Jf///yX///8l////Jf///yX//+sV8/+27dv/sunb/37Fu/9eoZHDbrGoA06RdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG1tbQBtbW0sbW1t5G9vbvlzc3P/cXFy/4mGgv/nx5r//8uB///Jf///yX///8l////Jf//4w3v/7bt2/+u5df/dr2351qdiS9eoZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANjY2ADY2NgsuLi44goB9ZsvEuvPMxLj/iYiH/398eP/nx5v//8uB///Jf///yX///8l///bC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"> +<link rel="icon" type="image/png" sizes="32x32" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAA7AAAAOwAFq1okJAAAAGXRFWHRTb2Z0d2FyZQBwYWludC5uZXQgNC4wLjIx8SBplQAAAYpJREFUWEftl7FOg1AUhnkJF18GXsRXcHQzjj6CusvA5GqiCYsO1uiCRhe3LraiS+N69b+c05x7ekBAqA79ki9Nb+H+f+ECbdSWOI4XMEkS1yRtPjx/XiBNU9dG2nx4nOJtPg8sisLleT5egdmnc/cz5/Jp5clD5cFN5abApsCmwOgFEP4vC1i3Y0i7DYdVwApmabfh0AVk2FqeCbKADreg3Tx4q4a6wwWscCzCvYsykHZbhrO9aQpndQEOlXZGhupweRnqErtnL9jkd+GgKbyuAMIHK4BAKbO2ArgFQ778mLoCHA53Tgts2j8cyMuvSwGEQ5qmP5TXG5qmO3rx1YmHUFmW/tX6nKVp22NNUieegta4lKa1wZFiGT7vdecaWkFHz857eL3w7p9PvTTtSk4Qzlo/PqwCUIYfXz6aBXgx6hyPHiRb8/H+GpTQYH1AnKZvgpwlcpC/PR+Bn0CBphK8QBsLgKu7p22oDz+j/4qx/A1vJ5OgBI/LArLEClxATjKGWZZtwSo1ir4ABlsc5d10T0gAAAAASUVORK5CYII="> +<link rel="icon" type="image/png" sizes="144x144" href="data:image/png;base64,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"> </head> <body> <div id="init-screen"> diff --git a/src/cheats/mod_editSlaveCheatNew.tw b/src/cheats/mod_editSlaveCheatNew.tw index 16932939b332460bc0267e395f2085f017eb6da0..0349445dbc664c50a6c201e3727ae28cc8b507e6 100644 --- a/src/cheats/mod_editSlaveCheatNew.tw +++ b/src/cheats/mod_editSlaveCheatNew.tw @@ -1337,7 +1337,20 @@ <<radiobutton "$tempSlave.markings" heavily freckled>> Heavy Freckles <<radiobutton "$tempSlave.markings" beauty mark>> Beauty Mark <<radiobutton "$tempSlave.markings" birthmark>> Birth Mark + <br><br> + + ''Her hearing is :'' + <<switch $tempSlave.hears>> + <<case -2>>@@.yellow;Deaf@@ + <<case -1>>@@.yellow;Hard Of Hearing@@ + <<case 0>>@@.yellow;Normal@@ + <</switch>> + <br> + <<radiobutton "$tempSlave.hears" 0>> Normal + <<radiobutton "$tempSlave.hears" -1>> Hard Of Hearing + <<radiobutton "$tempSlave.hears" -2>> Deaf <br> + <<radiobutton "$tempSlave.origEye" 1>> Ear Implants <</widget>> <<widget HairTab>> @@ -1633,7 +1646,7 @@ <</link>> <span id=ecol2></span> <br>Custom eye color: <<textbox "$tempSlave.origEye" $tempSlave.origEye>> - <<radiobutton "$tempSlave.origEye" "implant">>Artificial Eyes + <<radiobutton "$tempSlave.origEye" "implant">> Artificial Eyes <br><br> ''Her vision is :'' <<switch $tempSlave.eyes>> diff --git a/src/endWeek/saRest.tw b/src/endWeek/saRest.tw index 96d28662ac4436726838ac6adc29e9657fd8ea65..504c0d547d6eeae611987202c49577915d99f66b 100644 --- a/src/endWeek/saRest.tw +++ b/src/endWeek/saRest.tw @@ -24,6 +24,13 @@ window.saRest = function saRest(slave) { } else if (slave.health > -100) { t += ` ${His} <span class='green'>health recovers</span> with rest.`; slave.health += 10; + if (!(canHear(slave))) { + t += ` Since $he is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother $him at all.</span>`; + slave.health += 3; + } else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) { + t += ` Since $he is hard of hearing, the hustle and bustle of daily life in the penthouse <span class='green'>didn't disturb $his rest as much.</span>`; + slave.health += 1; + } } if (slave.fuckdoll == 0 && slave.fetish != "mindbroken") { diff --git a/src/endWeek/saServant.tw b/src/endWeek/saServant.tw index c353ebf6f3eb69f789eb79832b07a8df4e4624f4..06f58b7a5390f5f0b2007cbf5d38882d08d115ec 100644 --- a/src/endWeek/saServant.tw +++ b/src/endWeek/saServant.tw @@ -24,7 +24,15 @@ window.saServant = function saServant(slave) { } else { t += `uses sex as a reward, getting ${him} off when ${he} <span class='yellowgreen'>works harder.</span>`; } - V.cash += V.stewardessBonus; + if (!(canHear(slave))) { + t += ` However, $his inability to hear often leaves him oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`; + V.cash += (V.stewardessBonus/4); + } else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) { + t += ` However, $he often doesn't catch what ${V.Stewardess.slaveName} says, leading to frustration, confusion and less work done.`; + V.cash += (V.stewardessBonus/2); + } else { + V.cash += V.stewardessBonus; + } } } } diff --git a/src/endWeek/saStayConfined.tw b/src/endWeek/saStayConfined.tw index fa9c8adf56367e042f0dd68e43cfbae6f6a2658a..43fc440c8cab7505f8feb1e0689c962e7ba79e1d 100644 --- a/src/endWeek/saStayConfined.tw +++ b/src/endWeek/saStayConfined.tw @@ -36,6 +36,12 @@ window.saStayConfined = function saStayConfined(slave) { slave.trust -= 5 } + if (slave.assignment == "be confined in the cellblock") { + if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs") || (slave.hears == -2)) { + t += ` $His hearing impairment spares $him the sounds of $his peers getting punished, lightening the impact of $his imprisonment.` + } + } + t += ` The stress of confinement <span class='red'>damages ${his} health.</span>` slave.health -= 10 } else { diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw index 4cfbc0600865dc41400eff807e76fb082c3ed9e3..3bdc11cbea25f2dcf510e890ea2fc7eab3f30d3d 100644 --- a/src/gui/Encyclopedia/encyclopedia.tw +++ b/src/gui/Encyclopedia/encyclopedia.tw @@ -2584,6 +2584,9 @@ LORE: INTERVIEWS <br>''editoranon'' for cleaning text and drafting up bodyswap reactions. <br>''anon'' for the wetware CPU market. <br>''Autistic Boi'' for Mediterranean market preset. + <br>''anon'' for the PA subjugationsist and supremacist FS appearances. + <br>''Editoranon and Milkanon?'' for prison markets and the nursing handjob scene. + <br>''Dcoded'' for bestiality content and scenes. <br>''git contributors lost to time'' for their submissions and work through pregmod's git. <br>''Bane70'' optimized huge swaths of code with notable professionalism. <br>''Circle Tritagonist'' provided several new collars and outfits. @@ -2602,7 +2605,7 @@ LORE: INTERVIEWS <br>''freecitiesbandit'' wrote a number of recruitment, future society, mercenary and random events, provided tailed buttplugs, new eyes and tattoos, and contributed the code for the mercenary raiders policy. <br>''DrNoOne'' wrote the bulk slave purchase and persistent summary code. <br>''Mauve'' provided vector art for chastity belts and limp dicks. - <br>''Klorpa'' for dozens of new nationalities and boundless new names and nicknames. Also monokinis and aprons. + <br>''Klorpa'' for dozens of new nationalities and boundless new names and nicknames. Also monokinis, middle eastern clothing and aprons. Also the hearing overhaul <br><br>''Many other anonymous contributors'' helped fix bugs via GitHub. They will be credited by name upon request. diff --git a/src/interaction/researchLab.tw b/src/interaction/researchLab.tw index 9dee8f212916eb205c1c5edc9aabb7e8d629ef90..2ec75ce052635cadbfbee11de738dfafd5d579e5 100644 --- a/src/interaction/researchLab.tw +++ b/src/interaction/researchLab.tw @@ -147,7 +147,7 @@ [[Reverse engineer ocular implants|Research Lab][$stockpile.ocularImplant -= 1,$researchLab.productionTime = 100,$researchLab.research = "Ocular implants"]] <</if>> <<if $researchLab.cochlearImplant == 0 && $stockpile.cochlearImplant > 0>><br> - [[Reverse engineer cochlear implants|Research Lab][$stockpile.cochlearImplant -= 1,$researchLab.productionTime = 100,$researchLab.research = "Cochlear implants"]] + [[Reverse engineer cochlear implants|Research Lab][$stockpile.cochlearImplant -= 1,$researchLab.productionTime = 80,$researchLab.research = "Cochlear implants"]] <</if>> <<if $researchLab.erectileImplant == 0 && $stockpile.erectileImplant > 0>><br> [[Reverse engineer erectile implant|Research Lab][$stockpile.erectileImplant -= 1,$researchLab.productionTime = 100,$researchLab.research = "Erectile implant"]] @@ -189,7 +189,7 @@ [[Build ocular implants|Research Lab][$researchLab.productionTime = 80,$researchLab.manufacture = "Ocular implants"]] // Currently have: $stockpile.ocularImplant// <</if>> <<if $researchLab.cochlearImplant == 1>><br> - [[Build cochlear implants|Research Lab][$researchLab.productionTime = 80,$researchLab.manufacture = "Cochlear implants"]] // Currently have: $stockpile.cochlearImplant// + [[Build cochlear implants|Research Lab][$researchLab.productionTime = 60,$researchLab.manufacture = "Cochlear implants"]] // Currently have: $stockpile.cochlearImplant// <</if>> <<if $researchLab.erectileImplant == 1>><br> [[Build Erectile implant|Research Lab][$researchLab.productionTime = 50,$researchLab.manufacture = "Erectile implant"]] // Costs <<print cashFormat(25000)>>. Currently have: $stockpile.erectileImplant// @@ -210,7 +210,7 @@ [[Advanced beauty limbs|Research Lab][$temp = 1, $cash -= 30000, $stockpile.advGracePLimb += 1]] //Costs <<print cashFormat(30000)>>. Currently have: $stockpile.advGracePLimb//<br> [[Advanced combat limbs|Research Lab][$temp = 1, $cash -= 30000, $stockpile.advCombatPLimb += 1]] //Costs <<print cashFormat(30000)>>. Currently have: $stockpile.advCombatPLimb//<br> [[Ocular implants|Research Lab][$temp = 1, $cash -= 35000, $stockpile.ocularImplant += 1]] //Costs <<print cashFormat(35000)>>. Currently have: $stockpile.ocularImplant//<br> - [[Cochlear implants|Research Lab][$temp = 1, $cash -= 35000, $stockpile.cochlearImplant += 1]] //Costs <<print cashFormat(35000)>>. Currently have: $stockpile.cochlearImplant//<br> + [[Cochlear implants|Research Lab][$temp = 1, $cash -= 15000, $stockpile.cochlearImplant += 1]] //Costs <<print cashFormat(15000)>>. Currently have: $stockpile.cochlearImplant//<br> /*[[Erectile implant|Research Lab][$temp = 1, $cash -= 25000, $stockpile.erectileImplant += 1]] //Costs <<print cashFormat(25000)>>. Currently have: $stockpile.erectileImplant//*/ <br><br>__Schematics__<br> @@ -236,7 +236,7 @@ [[Ocular implants|Research Lab][$temp = 1, $cash -= 160000, $researchLab.ocularImplant = 1]] //Costs <<print cashFormat(160000)>>.//<br> <</if>> <<if $researchLab.cochlearImplant != 1 && $researchLab.research != "Cochlear implants">> - [[Cochlear implants|Research Lab][$temp = 1, $cash -= 160000, $researchLab.cochlearImplant = 1]] //Costs <<print cashFormat(160000)>>.//<br> + [[Cochlear implants|Research Lab][$temp = 1, $cash -= 125000, $researchLab.cochlearImplant = 1]] //Costs <<print cashFormat(125000)>>.//<br> <</if>> /*<<if $researchLab.erectileImplant != 1 && $researchLab.research != "Erectile implant">> [[Erectile implant|Research Lab][$temp = 1, $cash -= 95000, $researchLab.erectileImplant = 1]] //Costs <<print cashFormat(95000)>>.// diff --git a/src/js/eventSelectionJS.tw b/src/js/eventSelectionJS.tw index f1313d8b587544fe700675c8f239b0a093559f6e..c2282fd3a72a33bd1771bd9ee35626fdfbde4bb9 100644 --- a/src/js/eventSelectionJS.tw +++ b/src/js/eventSelectionJS.tw @@ -1753,8 +1753,10 @@ if(eventSlave.fetish != "mindbroken") { } } - if (eventSlave.bellyPreg >= 300000) { - State.variables.RESSevent.push("hyperpreg stuck"); + if(State.variables.PC.dick != 0) { + if (eventSlave.bellyPreg >= 300000) { + State.variables.RESSevent.push("hyperpreg stuck"); + } } if(eventSlave.prestige == 0) { @@ -2903,8 +2905,10 @@ if(eventSlave.fetish != "mindbroken") { } } - if (eventSlave.bellyPreg >= 300000) { - State.variables.RESSevent.push("hyperpreg stuck"); + if(State.variables.PC.dick != 0) { + if (eventSlave.bellyPreg >= 300000) { + State.variables.RESSevent.push("hyperpreg stuck"); + } } if(eventSlave.relationship == 4) { diff --git a/src/js/slaveGenerationJS.tw b/src/js/slaveGenerationJS.tw index 5f58b70250c18ae11810fb596b5bbf6172c8b8ed..dda6d8d217e51e0f0522a793a909ad58cb7b5741 100644 --- a/src/js/slaveGenerationJS.tw +++ b/src/js/slaveGenerationJS.tw @@ -1086,7 +1086,7 @@ window.nationalityToAccent = function nationalityToAccent(slave) { } if (slave.nationality === V.language) { - slave.accent = jsEither([0, 0, 0, 1]); + slave.accent = jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1]); } }; diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 7d07ce606459ff43471ce59415ca377964f174c3..9f8c7b56280ed93713c7066c061a634f9a398f2c 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -14,37 +14,37 @@ <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He runs her hands across the still huge dome of her middle; to $him, gravidity and birth is nothing out of the ordinary. + $He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He runs $his hands across the still huge dome of $his middle; to $him, gravidity and birth is nothing out of the ordinary. <<else>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> - $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting. + $He fishes around under $his still huge dome of a stomach searching for $his newborn. Once $he finds it, $he draws <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby to $his breast and resumes resting. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. + $He is helped back to $his bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling $his heavily rounded middle, and dozes off. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from $his rest by a moist sensation followed by a contraction. $He rolls over and clutches $his gravid belly as another contraction wracks $his body. <<ClothingBirth>> - $He struggles to collect her child and places them in the cradle readied for $him. $He is helped to the shower as your servants clean up and remove her child. + $He struggles to collect <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and places them in the cradle readied for $him. $He is helped to the shower as your servants clean up and remove $his child. <</if>> <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He runs her hands across the still huge dome of her middle; to $him, gravidity and birth is nothing out of the ordinary. + $He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He runs $his hands across the still huge dome of $his middle; to $him, gravidity and birth is nothing out of the ordinary. <<else>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> - $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting. + $He fishes around under $his still huge dome of a stomach searching for $his newborn. Once $he finds it, $he draws <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby to $his breast and resumes resting. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. + $He returns to $his bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling $his heavily rounded middle, and dozes off. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from $his rest by a moist sensation followed by a contraction. $He rolls over and clutches $his gravid belly as another contraction wracks $his body. <<ClothingBirth>> - $He struggles to collect her child and places them in the cradle readied for $him. $He hefts her still very gravid body out of bed to take a shower as your servants clean up and remove her child. + $He struggles to collect <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and places them in the cradle readied for $him. $He hefts $his still very gravid body out of bed to take a shower as your servants clean up and remove $his child. <</if>> <</if>> <</if>> @@ -54,40 +54,40 @@ <<if $slaves[$i].fetish == "mindbroken">> <<if $slaves[$i].subTarget == 0>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests for a short while before returned to your waiting slaves. + $He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests for a short while before returned to your waiting slaves. <<else>> - While servicing your other slaves, $slaves[$i].slaveName's water breaks, though it does nothing to deter her from her task. + While servicing your other slaves, $slaves[$i].slaveName's water breaks, though it does nothing to deter $him from $his task. <<ClothingBirth>> - No sooner than <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is born, a cock is shoved into her gaping, still very gravid <<if $slaves[$i].mpreg == 1>>asshole<<else>>pussy<</if>> as $he draws her child to her breast. + No sooner than <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is born, a cock is shoved into $his gaping, still very gravid <<if $slaves[$i].mpreg == 1>>asshole<<else>>pussy<</if>> as $he draws $his child to $his breast. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He lead by _tempSub.slaveName to a private room so that $he may watch. Instinctively $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to her watching audience. $His child is promptly taken and _tempSub.slaveName eagerly descends upon her defenseless and still very gravid body. + $He is lead by _tempSub.slaveName to a private room so that she may watch. Instinctively $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to $his watching audience. $His child is promptly taken and _tempSub.slaveName eagerly descends upon $his defenseless and still very gravid body. <<else>> - While servicing _tempSub.slaveName, $slaves[$i].slaveName's water breaks, though it does nothing to deter her from her task. + While servicing _tempSub.slaveName, $slaves[$i].slaveName's water breaks, though it does nothing to deter $him from $his task. <<ClothingBirth>> - No sooner than <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is born does $he go back to pleasuring her dom. + No sooner than <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is born does $he go back to pleasuring $his dom. <</if>> <</if>> <<else>> <<if $slaves[$i].subTarget == 0>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests for a short while before returned to your waiting slaves. + $He returns to $his bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests for a short while before returned to your waiting slaves. <<else>> - While servicing your other slaves, $slaves[$i].slaveName's water breaks, causing her to immediately try to break off. However, a hand quickly hooks her gravid bulk and $he is pulled back into another slave's crotch. + While servicing your other slaves, $slaves[$i].slaveName's water breaks, causing $him to immediately try to break off. However, a hand quickly hooks $his gravid bulk and $he is pulled back into another slave's crotch. <<set $humiliation = 1>> <<ClothingBirth>> $He is allowed a moment to prepare <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off before returning to pleasuring your other slaves. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He taken by _tempSub.slaveName to a private room so that $he may watch. Reluctantly, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of _tempSub.slaveName's <<if _tempSub.fetish == "pregnancy">>hungry gaze<<else>>amused gaze<</if>>. $His child is promptly taken and _tempSub.slaveName eagerly descends upon her exhausted and still very gravid body. + $He is taken by _tempSub.slaveName to a private room so that $he may watch. Reluctantly, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of _tempSub.slaveName's <<if _tempSub.fetish == "pregnancy">>hungry gaze<<else>>amused gaze<</if>>. $His child is promptly taken and _tempSub.slaveName eagerly descends upon $his exhausted and still very gravid body. <<set $humiliation = 1>> <<else>> - While servicing _tempSub.slaveName, $slaves[$i].slaveName's water breaks, causing her to immediately try to break off. $His dom eagerly watches her gravid sub's ordeal. + While servicing _tempSub.slaveName, $slaves[$i].slaveName's water breaks, causing $him to immediately try to break off. $His dom eagerly watches her gravid sub's ordeal. <<set $humiliation = 1>> <<ClothingBirth>> - _tempSub.slaveName collects the newborn child to be sent off before returning, caressing the swell of her still huge belly and planting her crotch directly onto her exhausted sub's face. + _tempSub.slaveName collects the newborn child to be sent off before returning, caressing the swell of $his still huge belly and planting her crotch directly onto her exhausted sub's face. <</if>> <</if>> <</if>> @@ -96,7 +96,7 @@ <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her work as a pregnant whore. + $He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her work as a pregnant whore. <<else>> While attempting to attract customers with her gravid body, $slaves[$i].slaveName's water breaks. <<ClothingBirth>> @@ -104,7 +104,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her work as a pregnant whore. + $He is helped back to her bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her work as a pregnant whore. <<else>> While attempting to attract customers with her gravid body, $slaves[$i].slaveName's water breaks, soaking $him. $He attempts to get someplace safe to give birth but finds it impossible. <<set $humiliation = 1>> @@ -123,7 +123,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her work as a pregnant whore. + $He returns to her bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her work as a pregnant whore. <<else>> While attempting to attract customers with her gravid body, $slaves[$i].slaveName's water breaks, soaking $him. $He attempts to get someplace safe to give birth but finds her path blocked by rowdy johns. <<set $humiliation = 1>> @@ -146,16 +146,16 @@ <<elseif (_birthScene > 40)>> While licking a citizen's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so $he allows her to reposition and continue. <<ClothingBirth>> - The citizen splashes across her face as $he struggles to reach her child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cunt. + The citizen splashes across her face as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cunt. <<else>> While sucking a citizen's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows her to reposition and continue. <<ClothingBirth>> - He cums down her throat as $he struggles to reach her child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cock. + He cums down $his throat as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cock. <</if>> <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to sharing her gravid body with the public. + $He is helped back to her bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to sharing her gravid body with the public. <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> While riding a citizen's dick, $slaves[$i].slaveName's water breaks on him. $He desperately tries to disengage but he grabs her hips and slams her back down. He thoroughly enjoys her contracting cunt before pushing her off and standing over $him, jacking off. Quickly $he spreads her legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He cums over her heaving, still very gravid body and moves on leaving her to recover and collect her child to be sent off. @@ -164,15 +164,15 @@ While taking a citizen's dick in her ass, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs her hips and slams into her hard. Quickly $he spreads her legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He came strongly thanks to her and gives her a slap on the ass as $he collapses onto her still very gravid belly and slips to her side. $He quickly gathers her child to be sent off. <<set $humiliation = 1>> <<elseif (_birthScene > 40)>> - While licking a citizen's cunt, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but $he grabs her head and slams her back into her crotch. + While licking a citizen's cunt, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but she grabs $his head and slams $him back into her crotch. <<set $humiliation = 1>> <<ClothingBirth>> - $He cums across her face before helping her still very gravid body to the ground and leaving. When $he recovers, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. + She cums across $his face before helping her still very gravid body to the ground and leaving. When $he recovers, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. <<else>> While sucking a citizen's dick, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs her head and slams her back into his crotch. <<set $humiliation = 1>> <<ClothingBirth>> - He cums down her throat before letting her collapse to the ground and leaving. When $he recovers and pushes her still very gravid body upright, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. + He cums down $his throat before letting $him collapse to the ground and leaving. When $he recovers and pushes her still very gravid body upright, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. <</if>> <</if>> <</if>> @@ -182,22 +182,22 @@ $He returns to her bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to sharing her gravid body with the public. <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> - While riding a citizen's dick, $slaves[$i].slaveName's water breaks on him. Showing no signs of stopping, he shoves her bulk off of him. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching her naked crotch. $He draws her child to her breast before seeking out the next citizen's cock. + While riding a citizen's dick, $slaves[$i].slaveName's water breaks on him. Showing no signs of stopping, he shoves $his bulk off of him. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching her naked crotch. $He draws her child to her breast before seeking out the next citizen's cock. <<elseif (_birthScene > 60) && canDoAnal($slaves[$i])>> - While taking a citizen's dick in her ass, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows her to reposition and continue. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching her naked crotch. He came strongly thanks to her and gives her a slap on the ass as $he struggles to reach her child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cock. + While taking a citizen's dick in $his ass, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching her naked crotch. $He came strongly thanks to her and gives her a slap on the ass as $he struggles to reach her child around her still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next citizen's cock. <<elseif (_birthScene > 40)>> - While licking a citizen's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so $he allows her to reposition and continue. + While licking a citizen's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so she allows $him to reposition and continue. <<ClothingBirth>> - The citizen splashes across her face as $he struggles to reach her child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cunt. + The citizen splashes across $his face as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby around her still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next citizen's cunt. <<else>> - While sucking a citizen's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows her to reposition and continue. + While sucking a citizen's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. <<ClothingBirth>> - He cums down her throat as $he struggles to reach her child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cock. + He cums down her throat as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next citizen's cock. <</if>> <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to sharing her gravid body with the public. + $He returns to her bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to sharing her gravid body with the public. <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> While riding a citizen's dick, $slaves[$i].slaveName's water breaks on him. $He desperately tries to disengage but he grabs her hips and slams her back down. He thoroughly enjoys her contracting cunt before pushing her off and standing over $him, jacking off. Quickly $he spreads her legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He cums over her heaving, still very gravid body and moves on leaving her to recover and collect her child to be sent off. @@ -231,9 +231,9 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - Since $he is unable to leave her box, $he doesn't have far to go. $He quickly finishes the waiting dick before shifting herself into a slightly, though not by much, more comfortable position. $He begins laboring on <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child. As $he finishes, the box is opened and her child is gathered and taken away before $he is ordered back to sucking. + Since $he is unable to leave her box, $he doesn't have far to go. $He quickly finishes the waiting dick before shifting $himself into a slightly, though not by much, more comfortable position. $He begins laboring on <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child. As $he finishes, the box is opened and her child is gathered and taken away before $he is ordered back to sucking. <<else>> - While sucking a dick through the hole of her confining box, $slaves[$i].slaveName's water breaks. $He quickly finishes the dick off before seating herself in the back of the box. + While sucking a dick through the hole of her 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. <</if>> @@ -249,16 +249,16 @@ <<else>> While getting milked, $slaves[$i].slaveName's water breaks. $He show little interest and continues kneading her breasts. <<ClothingBirth>> - $He shows no interest in <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child being removed from the milking stall, nor her still very gravid middle, instead focusing entirely on draining her breasts. + $He shows no interest in <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child being removed from the milking stall, nor $his still very gravid middle, instead focusing entirely on draining $his breasts. <</if>> <</if>> <<else>> <<if $dairyPregSetting > 0>> - Since the dairy is designed for pregnant cows, $he stays hooked up to the milkers. $He meekly protests her situation, but ultimately accepts it. $He begins working on birthing her <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, and catches a glimpse of her child being removed from the milking stall, but quickly forgets when $he is hosed off. + Since the dairy is designed for pregnant cows, $he stays hooked up to the milkers. $He meekly protests $his situation, but ultimately accepts it. $He begins working on birthing $his <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, and catches a glimpse of $his child being removed from the milking stall, but quickly forgets when $he is hosed off. <<set $humiliation = 1>> <<else>> <<if (random(1,20) > $suddenBirth)>> - <<if !canWalk($slaves[$i])>>$He is helped back to her bed and stripped before slipping into it<<else>>$He returns to her bed and strips before slipping into it<</if>>. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to the milkers to lighten her swelling breasts. + <<if !canWalk($slaves[$i])>>$He is helped back to $his bed and stripped before slipping into it<<else>>$He returns to $his bed and strips before slipping into it<</if>>. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to the milkers to lighten her swelling breasts. <<else>> While getting milked, $slaves[$i].slaveName's water breaks. $He shifts into a comfortable position to give birth while the milker works her breasts. <<ClothingBirth>> @@ -306,9 +306,9 @@ <<else>> <<if (random(1,20) > $suddenBirth)>> <<if $slaves[$i].devotion > 20>> - $He seeks you out and begins slowly stripping. As $he teases, $he begins pushing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby out. As $he crowns, $he throws herself into your waiting arms and holds herself to you. You hold her in a comforting embrace until $he finishes. + $He seeks you out and begins slowly stripping. As $he teases, $he begins pushing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby out. As $he crowns, $he throws $himself into your waiting arms and holds $himself to you. You hold her in a comforting embrace until $he finishes. <<elseif $slaves[$i].devotion >= -20>> - $He approaches you and begins a very uncertain striptease. As $he lowers herself to the floor to begin pushing, you overtake her and fondle her vulnerable body. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Once $he finishes, you help her to the couch to catch her breath. + $He approaches you and begins a very uncertain striptease. As $he lowers $himself to the floor to begin pushing, you overtake her and fondle her vulnerable body. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Once $he finishes, you help her to the couch to catch her breath. <<else>> $He attempts to leave your office and return to her bed, but you catch her arm before $he slips out of reach. You order her to strip and give you a show. Blushing thoroughly, $he gives a meek performance before falling to the floor. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. <<set $humiliation = 1>> @@ -336,7 +336,7 @@ Since $he is locked in a cell, $he doesn't have far to go. Reluctantly, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, after her still very gravid body and the cell are hosed down, $he is returned to isolation. <<set $humiliation = 1>> <<else>> - $slaves[$i].slaveName is awoken from her stupor by moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her stupor by moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. <<ClothingBirth>> $He collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and holds it close knowing someone will soon come to take it away from $him. <</if>> @@ -359,7 +359,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her role as your ever-pregnant maid. + $He returns to her bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to her role as your ever-pregnant maid. <<else>> <<if _birthScene > 50>> While giving a slave oral service, $slaves[$i].slaveName's water breaks. $He desperately tries to pull away but they grab her head and force her back to their crotch. @@ -405,7 +405,7 @@ <</if>> <<else>> <<if $masterSuiteUpgradeLuxury == 1>> - While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's water breaks thoroughly soaking the sheets. $He quickly shifts herself off the bed and calls for a servant before dropping to the floor. + While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's water breaks thoroughly soaking the sheets. $He quickly shifts $himself off the bed and calls for a servant before dropping to the floor. <<ClothingBirth>> Once <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child is removed, her still very gravid body cleaned up, and the sheets are changed, $he is helped back into bed to recover for your return. <<elseif $masterSuiteUpgradeLuxury == 2>> @@ -414,7 +414,7 @@ <<ClothingBirth>> Once the fucktoys are done tormenting the still very gravid new mother, they hand <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child off to the help and pull her into an embrace to allow her to regain her strength. <<else>> - While awaiting your return in the master suite, $slaves[$i].slaveName's water breaks. $He tries to get to the prepared area but fails to untangle herself from the toys $he was playing with. $He calls for a servant to hurry as $he begins laboring. + While awaiting your return in the master suite, $slaves[$i].slaveName's water breaks. $He tries to get to the prepared area but fails to untangle $himself from the toys $he was playing with. $He calls for a servant to hurry as $he begins laboring. <<ClothingBirth>> The servant collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and helps her still very gravid body onto a cushion to recover for your return. <<if canDoAnal($slaves[$i]) && $slaves[$i].anus > 0>>With a little effort, $he pushes the vibrating dildo out of her ass<<else>>With things settling down, $he finally manages to switch off the bullet vibrators stuck to her crotch<</if>> before settling down for a nap. <</if>> @@ -424,7 +424,7 @@ <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> <<if $masterSuiteUpgradePregnancy == 1>> - $He enters the birthing chamber, strips, and seats herself in the specialized chair. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, following a shower and fresh change of clothes, $he returns to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>. + $He enters the birthing chamber, strips, and seats $himself in the specialized chair. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, following a shower and fresh change of clothes, $he returns to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>. <<else>> $He strips and settles into one of the various seats around the room. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to her may be watching $him. $His child is promptly taken and, following a shower and fresh change of clothes, $he returns to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>her usual spot<</if>>. <</if>> @@ -444,13 +444,13 @@ <<else>> <<if (random(1,20) > $suddenBirth)>> <<if $masterSuiteUpgradePregnancy == 1>> - $He enters the birthing chamber, strips, and seats herself in the specialized chair. Finding it quite comfortable, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, following a shower and fresh change of clothes, $he returns to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>. + $He enters the birthing chamber, strips, and seats $himself in the specialized chair. Finding it quite comfortable, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, following a shower and fresh change of clothes, $he returns to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>. <<else>> $He strips and settles into one of the various seats around the room. $He gets comfortable and begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, following a shower and fresh change of clothes, $he returns to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>her preferred spot<</if>>. <</if>> <<else>> <<if $masterSuiteUpgradeLuxury == 1>> - While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's water breaks thoroughly soaking the sheets. $He quickly moves herself off the bed and calls for a servant before dropping to the floor. + While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's water breaks thoroughly soaking the sheets. $He quickly moves $himself off the bed and calls for a servant before dropping to the floor. <<ClothingBirth>> Once <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child is removed, her still very gravid body cleaned up, and the sheets are changed, $he crawls back into bed to recover for your return. <<elseif $masterSuiteUpgradeLuxury == 2>> @@ -459,7 +459,7 @@ <<ClothingBirth>> Once the fucktoys are done tormenting the exhausted <<if $slaves[$i].birthsTotal == 0>>new <<else>>brood<</if>>mother, they hand her child off to the help and pull her into an embrace to allow her to regain her strength. <<else>> - While awaiting your return in the master suite, $slaves[$i].slaveName's water breaks. $He tries to get to the prepared area but fails to untangle herself from the toys $he was playing with. $He calls for a servant to hurry as $he begins laboring. + While awaiting your return in the master suite, $slaves[$i].slaveName's water breaks. $He tries to get to the prepared area but fails to untangle $himself from the toys $he was playing with. $He calls for a servant to hurry as $he begins laboring. <<ClothingBirth>> The servant collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and helps her still very gravid body onto a cushion to recover for your return. <<if canDoAnal($slaves[$i]) && $slaves[$i].anus > 0>>With a little effort, $he pushes the vibrating dildo out of her ass<<else>>With things settling down, $he finally manages to switch off the bullet vibrators stuck to her crotch<</if>> before settling down for a nap. <</if>> @@ -479,7 +479,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is helped to a private room in the back of the club by several patrons who just can't keep their hands off $him. $He settles herself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child is promptly taken and $he beckons the audience to enjoy her still very gravid body. + $He is helped to a private room in the back of the club by several patrons who just can't keep their hands off $him. $He settles $himself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child is promptly taken and $he beckons the audience to enjoy her still very gravid body. <<else>> <<if $slaves[$i].fetish == "humiliation">> $slaves[$i].slaveName is showing off her gravid body and trying to attract citizens by "dancing" as well as $he can, all the while being a huge tease. During one of her "dances", her water breaks, soaking the floor. $He calls out to the crowd, hyping them up for her new show. @@ -487,7 +487,7 @@ <<ClothingBirth>> As <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child are removed, $he is helped into one of the back rooms by several of her aroused onlookers. <<else>> - $slaves[$i].slaveName is showing off her gravid body and trying to attract citizens by "dancing" as well as her figure will let $him. During one of her dances, her water breaks, soaking the floor. $He hastily tries to find help to leave, but only finds hands groping her body. $He is quickly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. + $slaves[$i].slaveName is showing off her gravid body and trying to attract citizens by "dancing" as well as her figure will let $him. During one of her dances, her water breaks, soaking the floor. $He hastily tries to find help to leave, but only finds hands groping $his body. $He is quickly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. <<set $humiliation = 1>> <<ClothingBirth>> Only once the last of her clients cums over her still very pregnant body is $he allowed to gather <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and take a seat. $He enjoys a moment with her newborn before the servant comes to collect it. @@ -505,7 +505,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He heads to a private room in the back of the club accompanied by several patrons who just can't keep their hands off $him. $He settles herself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child is promptly taken and $he beckons the audience to enjoy her still very gravid body. + $He heads to a private room in the back of the club accompanied by several patrons who just can't keep their hands off $him. $He settles $himself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child is promptly taken and $he beckons the audience to enjoy her still very gravid body. <<else>> <<if $slaves[$i].fetish == "humiliation">> $slaves[$i].slaveName is showing off her gravid body and trying to attract citizens by dancing as well as $he can, all the while flashing glimpses of her crotch and nipples. During one of her dances, her water breaks, soaking the dance floor. $He calls out to the crowd, hyping them up for her new show. @@ -513,7 +513,7 @@ <<ClothingBirth>> As <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child is removed from the dance floor, her still very pregnant form is helped into one of the back rooms by several of her aroused onlookers. <<else>> - $slaves[$i].slaveName is showing off her gravid body and trying to attract citizens by dancing as well as $he can. During one of her dances, her water breaks, soaking the dance floor. $He hastily tries to escape the public's gaze only to find hands groping her body. $He is quickly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. + $slaves[$i].slaveName is showing off her gravid body and trying to attract citizens by dancing as well as $he can. During one of her dances, her water breaks, soaking the dance floor. $He hastily tries to escape the public's gaze only to find hands groping $his body. $He is quickly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. <<set $humiliation = 1>> <<ClothingBirth>> Only once the last of her clients cums over her still very pregnant figure is $he allowed to gather <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and take a seat. $He enjoys a moment with her newborn before the servant comes to collect it. @@ -534,9 +534,9 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, after a short rest, $he returns to pondering what assignment would be best for a still very gravid girl. + $He is helped back to her bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, after a short rest, $he returns to pondering what assignment would be best for a still very gravid girl. <<else>> - While deciding on her post, $slaves[$i].slaveName's water breaks. Unable to reach the prepared birthing room in time, $he pulls herself into a secluded nook to give birth in. + While deciding on her post, $slaves[$i].slaveName's water breaks. Unable to reach the prepared birthing room in time, $he pulls $himself into a secluded nook to give birth in. <<ClothingBirth>> $He gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and recovers her strength before a servant finds her and collects her baby. $He decides to rest for the rest of the day before returning to pondering what assignment would be best for a still very gravid girl. <</if>> @@ -552,7 +552,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, after a short rest, $he returns to pondering her what assignment would be best for a still very gravid girl. + $He returns to her bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, after a short rest, $he returns to pondering her what assignment would be best for a still very gravid girl. <<else>> <<if $slaves[$i].fetish == "humiliation">> While wandering the penthouse deciding on her post, $slaves[$i].slaveName's water breaks. Sensing an opportunity, $he waddles to the nearest balcony overlooking the city. $He calls out, making sure all eyes are on her for what happens next. @@ -573,9 +573,9 @@ <<if (random(1,20) > $suddenBirth)>> <<if $Attendant != 0>>$Attendant.slaveName leads her to a special pool designed to give birth in. Once $he is safely in the water alongside her,<<else>>$He is lead to a special pool designed to give birth in. Once $he is safely in the water alongside her assistant,<</if>> $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to her watching caretaker. $His child is promptly taken and, following a cleaning of her still very gravid body, $he is taken back to the spa. <<else>> - While soaking in the spa's pool, $slaves[$i].slaveName's water breaks. As $he begins to ready herself for birth, <<if $Attendant != 0>>$Attendant.slaveName pulls her out of the pool and glares at her<<else>>the other bathers watch curiously<</if>>. + While soaking in the spa's pool, $slaves[$i].slaveName's water breaks. As $he begins to ready $himself for birth, <<if $Attendant != 0>>$Attendant.slaveName pulls her out of the pool and glares at her<<else>>the other bathers watch curiously<</if>>. <<ClothingBirth>> - $He and <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child are quickly dried off as $he begins nursing it. A servant soon arrives to take her children away. + $He and <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child are quickly dried off as $he begins nursing it. A servant soon arrives to take $his child away. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> @@ -591,42 +591,42 @@ <<case "learn in the schoolroom">> <<if !canWalk($slaves[$i])>> <<if (random(1,20) > $suddenBirth)>> - Having been notified in the weeks leading up to her <<if $slaves[$i].birthsTotal == 0>>first<<else>>regular<</if>> birth, $he is helped to the front of the class and stripped; $he is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of the rapt attention of the other students. $His child is promptly taken and, following a cleaning and fresh change of clothes, $he is helped back to her seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on her genitals<<else>>overhear some of the lewd comments about her still very gravid figure<</if>>. + Having been notified in the weeks leading up to $his <<if $slaves[$i].birthsTotal == 0>>first<<else>>regular<</if>> birth, $he is helped to the front of the class and stripped; $he is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of the rapt attention of the other students. $His child is promptly taken and, following a cleaning and fresh change of clothes, $he is helped back to her seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on her genitals<<else>>overhear some of the lewd comments about $his still very gravid figure<</if>>. <<set $humiliation = 1>> <<else>> - During a lesson in $schoolroomName, $slaves[$i].slaveName's water breaks. Since $he can't leave the lesson, $he tries her best to hold back the upcoming birth. $He fails to manage and a particularly strong contraction elicits a moan noticeable enough to draw all the students' attention. + During a lesson in $schoolroomName, $slaves[$i].slaveName's water breaks. Since $he can't leave the lesson, $he tries $his best to hold back the upcoming birth of <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He fails to manage and a particularly strong contraction elicits a moan noticeable enough to draw all the students' attention. <<set $humiliation = 1>> <<ClothingBirth>> - <<if $Schoolteacher != 0>>$Schoolteacher.slaveName, furious that her lesson was interrupted, drags her still very pregnant ass from the class along with her newborn child<<else>>$He gathers her newborn child up and is quickly helped from the class<</if>>. $He can feel all the eyes watching her leave. + <<if $Schoolteacher != 0>>$Schoolteacher.slaveName, furious that her lesson was interrupted, drags $his still very pregnant ass from the class along with $his newborn child<<else>>$He gathers her newborn child up and is quickly helped from the class<</if>>. $He can feel all the eyes watching her leave. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - Having been notified in the weeks leading up to her <<if $slaves[$i].birthsTotal == 0>>first<<else>>regular<</if>> birth, $he heads to the front of the class and strips; $he is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of the rapt attention of the other students. $His child is promptly taken and, following a cleaning and fresh change of clothes, $he returns to her seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on her genitals<<else>>overhear some of the lewd comments about her still very gravid figure<</if>>. + Having been notified in the weeks leading up to $his <<if $slaves[$i].birthsTotal == 0>>first<<else>>regular<</if>> birth, $he heads to the front of the class and strips; $he is being used as a learning aid in this lesson. Blushing strongly, $he begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of the rapt attention of the other students. $His child is promptly taken and, following a cleaning and fresh change of clothes, $he returns to $his seat. $He can't help but <<if canSee($slaves[$i])>>notice some of the detailed notes the class took on $his genitals<<else>>overhear some of the lewd comments about $his still very gravid figure<</if>>. <<set $humiliation = 1>> <<else>> - During a lesson in $schoolroomName, $slaves[$i].slaveName's water breaks. Since $he can't leave the lesson, $he tries her best to hold back the upcoming birth. $He fails to manage and a particularly strong contraction elicits a moan noticeable enough to draw all the students' attention. + During a lesson in $schoolroomName, $slaves[$i].slaveName's water breaks. Since $he can't leave the lesson, $he tries her best to hold back the upcoming birth of <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He fails to manage and a particularly strong contraction elicits a moan noticeable enough to draw all the students' attention. <<set $humiliation = 1>> <<ClothingBirth>> - <<if $Schoolteacher != 0>>$Schoolteacher.slaveName, furious that her lesson was interrupted, dismisses her from the class along with her newborn child<<else>>$He gathers her newborn child up and quickly excuses herself from the class<</if>>. $He can feel all the eyes staring at her still very gravid middle. + <<if $Schoolteacher != 0>>$Schoolteacher.slaveName, furious that her lesson was interrupted, dismisses $him from the class along with her newborn child<<else>>$He gathers her newborn child up and quickly excuses $himself from the class<</if>>. $He can feel all the eyes staring at her still very gravid middle. <</if>> <</if>> <<case "take classes">> <<if (random(1,20) > $suddenBirth)>> - Or $he would have, had <<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>> allowed it. Since $he can't leave the lesson, $he tries her best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, especially since this will be a weekly occurrence in her life, her birth will be turned into a live broadcast. Blushing strongly, $he begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, trying her best to hide her shame. Exhausted from the birth, $he is permitted a short break as her child is collected to clean herself up before the lesson is continued. + Or $he would have, had <<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>> allowed it. Since $he can't leave the lesson, $he tries her best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, especially since this will be a weekly occurrence in her life, her birth will be turned into a live broadcast. Blushing strongly, $he begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, trying her best to hide her shame. Exhausted from the birth, $he is permitted a short break as her child is collected to clean $himself up before the lesson is continued. <<set $humiliation = 1>> <<else>> During a lesson under <<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>>, $slaves[$i].slaveName's water breaks. Since $he can't leave the lesson, $he tries her best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, especially since this will be a weekly occurrence in her life, $he is forbidden from leaving. Additionally, her birth will be turned into a live broadcast. <<set $humiliation = 1>> <<ClothingBirth>> - Exhausted from the birth, $he is permitted a short break as <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child is gathered to <<if !canWalk($slaves[$i])>>be cleaned<<else>>clean herself<</if>> up before the lesson is continued. + Exhausted from the birth, $he is permitted a short break as <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child is gathered to <<if !canWalk($slaves[$i])>>be cleaned<<else>>clean $himself<</if>> up before the lesson is continued. <</if>> <<case "work in the brothel">> <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - $He is helped to a private room in the back of the brothel by a group of eager patrons. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to her audience. $His child is promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with her still very gravid body. + $He is helped to a private room in the back of the brothel by a group of eager patrons. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to $his audience. $His child is promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with $his still very gravid body. <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> While riding a costumer's dick, $slaves[$i].slaveName's water breaks on him. Showing no signs of stopping, he shoves her bulk off of him. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching her naked crotch. $He draws her child to her breast before seeking out the next costumer's cock. @@ -635,18 +635,18 @@ <<elseif (_birthScene > 40)>> While licking a costumer's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so she allows her to reposition and continue. <<ClothingBirth>> - The costumer splashes across her face as $he struggles to reach her child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next costumer's cunt. + The costumer splashes across $his face as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next costumer's cunt. <<else>> While sucking a costumer's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows her to reposition and continue. <<ClothingBirth>> - He cums down her throat as $he struggles to reach her child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next costumer's cock. + He cums down $his throat as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child around her still very gravid middle. Once $he has brought her child to her breast, $he seeks out the next costumer's cock. <</if>> <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> $He is helped to a private room in the back of the brothel by several patrons who paid quite a handsome price to enjoy this moment. <<if $slaves[$i].devotion > 20>> - $He settles herself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he beckons the audience to enjoy her still very gravid body. + $He settles $himself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he beckons the audience to enjoy her still very gravid body. <<elseif $slaves[$i].devotion >= -20>> $He hesitantly begins to pose, but one of the patrons grabs her by the swollen waist and pulls her onto his lap. $He winces as his dick slips over her exposed crotch, but can do nothing to stop <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby from being born. $He hates that the first thing her child will touch is an erect cock; a bitter reminder of what its future will likely hold. $His fully born child is promptly taken and her clients descend upon her vulnerable, still very gravid, body. <<else>> @@ -695,7 +695,7 @@ <<if (random(1,20) > $suddenBirth)>> $He heads to a private room in the back of the brothel accompanied by several patrons who paid quite a handsome price to enjoy this moment. <<if $slaves[$i].devotion > 20>> - $He settles herself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he beckons the audience to enjoy her still very gravid body. + $He settles $himself onto a patron's lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in the attention of her audience. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he beckons the audience to enjoy her still very gravid body. <<elseif $slaves[$i].devotion >= -20>> $He hesitantly begins to pose, but one of the patrons grabs her by the swollen waist and pulls her onto his lap. $He winces as his dick slips over her exposed crotch, but can do nothing to stop <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby from being born. $He hates that the first thing her child will touch is an erect cock; a bitter reminder of what its future will likely hold. $His fully born child is promptly taken and her clients descend upon her vulnerable, still very gravid, body. <<else>> @@ -732,11 +732,11 @@ While teaching a lesson, $slaves[$i].slaveName's water breaks. Sensing $he wouldn't be able to make it to the birthing area, $he instead chooses to act on the opportunity. Today's lesson will be on childbirth. <<set $humiliation = 1>> <<ClothingBirth>> - Once $he recovers enough, $he gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> newborn child and instructs the class to take notes on the lesson $he just demonstrated before being escorted out of the classroom. All eyes are locked onto her still very gravid middle; it's clear the class will need a lecture on broodmothers and their weekly routine. + Once $he recovers enough, $he gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> newborn child and instructs the class to take notes on the lesson $he just demonstrated before being escorted out of the classroom. All eyes are locked onto $his still very gravid middle; it's clear the class will need a lecture on broodmothers and their weekly routine. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - While stripping, $he makes her way to the front of the classroom and settles herself in a way her entire class can see. Birth <<if $slaves[$i].birthsTotal == 0>>will be<<else>>is<</if>> a regular occurrence in her life and it would be a waste to not work it into her lesson plan. $He wiggles herself into a comfortable spot and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of her watching students. $He demonstrates the proper ways to labor and how to deliver a baby. $He explains the infant's future as her child is taken and excuses the class for a short break in order to freshen up. Upon their return, $he begins a lesson on being a broodmother, as there is always a curious face locked onto her still very gravid middle. + While stripping, $he makes $his way to the front of the classroom and settles $himself in a way her entire class can see. Birth <<if $slaves[$i].birthsTotal == 0>>will be<<else>>is<</if>> a regular occurrence in $his life and it would be a waste to not work it into her lesson plan. $He wiggles $himself into a comfortable spot and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, fully aware of her watching students. $He demonstrates the proper ways to labor and how to deliver a baby. $He explains the infant's future as her child is taken and excuses the class for a short break in order to freshen up. Upon their return, $he begins a lesson on being a broodmother, as there is always a curious face locked onto $his still very gravid middle. <<set $humiliation = 1>> <<else>> While teaching a lesson, $slaves[$i].slaveName's water breaks. Sensing $he wouldn't be able to make it to the birthing area, $he instead chooses to act on the opportunity. Today's lesson will be on childbirth. @@ -768,7 +768,7 @@ <<if (random(1,20) > $suddenBirth)>> $He is assisted in reaching your side. You beckon her over and strip her as $he dutifully begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, enjoying your wandering hands and attention. $His child is promptly taken and, following a cleaning, a fresh change of clothes, and some private time with you, $he is helped back to your master suite. As $he leaves your office, $he throws you a wink, hoping to see you again soon. <<else>> - $slaves[$i].slaveName cradles her gravid belly, waiting for your return, when her water breaks. Saddened that you aren't there for the show, $he begins struggling to crawl to you . By the time $he reaches your office, $he is barely holding back her child. You rise to meet her and help her onto the couch, just before it's too late. + $slaves[$i].slaveName cradles her gravid belly, waiting for your return, when her water breaks. Saddened that you aren't there for the show, $he begins struggling to crawl to you . By the time $he reaches your office, $he is barely holding back $his child. You rise to meet her and help her onto the couch, just before it's too late. <<ClothingBirth>> Cradling your child, the two of you rest for a spell before sending it off and spending some more intimate time together. <</if>> @@ -805,7 +805,7 @@ <<if (random(1,20) > $suddenBirth)>> $He is aided in finding $HeadGirl.slaveName, who undresses her as $he instinctively begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to her wandering hands. $His child is promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is taken back to $HeadGirl.slaveName' room. <<else>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting before $HeadGirl.slaveName returns from her duties. <</if>> @@ -813,7 +813,7 @@ <<if (random(1,20) > $suddenBirth)>> $He is aided in seeking out $HeadGirl.slaveName, who undresses her as $he dutifully begins to push out, enjoying her wandering hands and attention. $His child is promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is helped back to $HeadGirl.slaveName's room. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. <<ClothingBirth>> $He collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and places it in the cradle readied for $him. $He is helped to the shower as your servants clean up and remove her newborn. Freshened up, $he returns to resting knowing full well that $HeadGirl.slaveName will be eager to play with her still very pregnant body when $he finishes her rounds. <</if>> @@ -823,7 +823,7 @@ <<if (random(1,20) > $suddenBirth)>> $He wanders until $he finds $HeadGirl.slaveName, who undresses her as $he instinctively begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to her wandering hands. $His child is promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is lead back to $HeadGirl.slaveName' room. <<else>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting before $HeadGirl.slaveName returns from her duties. <</if>> @@ -831,7 +831,7 @@ <<if (random(1,20) > $suddenBirth)>> $He seeks out $HeadGirl.slaveName, who undresses her as $he dutifully begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, enjoying her wandering hands and attention. $His child is promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he returns to $HeadGirl.slaveName's room. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. <<ClothingBirth>> $He collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and places it in the cradle readied for $him. $He waddles off to shower as your servants clean up and remove her newborn. Freshened up, $he returns to resting knowing full well that $HeadGirl.slaveName will be eager to play with her still very pregnant body when $he finishes her rounds. <</if>> @@ -840,7 +840,7 @@ <</if>> <<case "be confined in the arcade">> - Or $he would have been, if $he weren't locked in an arcade cabinet. A gush of liquid pours from $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on her exposed rear. While her mouth is filled with a customer's dick, her body instinctively births <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby into a waiting basket. As it is carried away, her rear is cleaned up and the sign removed. + Or $he would have been, if $he weren't locked in an arcade cabinet. A gush of liquid pours from $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on $his exposed rear. While $his mouth is filled with a customer's dick, $his body instinctively births <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby into a waiting basket. As it is carried away, $his rear is cleaned up and the sign removed. <<case "get treatment in the clinic">> <<if !canWalk($slaves[$i])>> @@ -868,22 +868,22 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is forced into a specially designed cell to give birth in. Reluctantly, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, after her still very gravid body and the cell are hosed down, $he is moved back into a standard cell. + $He is forced into a specially designed cell to give birth in. Reluctantly, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and, after $his still very gravid body and the cell are hosed down, $he is moved back into a standard cell. <<else>> - $slaves[$i].slaveName is awoken from her stupor by moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from $his stupor by moist sensation followed by a contraction. $He rolls over and clutches $his gravid belly as another contraction wracks $his body. <<ClothingBirth>> - $He collects her <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and holds it close knowing someone will soon come to take it away from $him. + $He collects $his <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and holds it close knowing someone will soon come to take it away from $him. <</if>> <</if>> <<case "be the DJ">> <<if (random(1,20) > $suddenBirth)>> - $He heads to a private room in the back of the club accompanied by a influential patron. $He settles herself onto his lap and begins working on <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in his attention. Placing her child outside the room, $he returns to pleasure her tease. + $He heads to a private room in the back of the club accompanied by a influential patron. $He settles $himself onto his lap and begins working on <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in his attention. Placing $his child outside the room, $he returns to pleasure her tease. <<else>> While DJing $clubName, $slaves[$i].slaveName's water breaks. $He can't stop her setlist without drawing attention, so $he tries her best to ride out the contractions. As soon as the opportunity arises, $he attempts to sneak off stage. However, a number of fans block her progress keeping her on stage. Before long the contractions are too much to bear and $he drops to the ground. <<set $humiliation = 1>> <<ClothingBirth>> - Exhausted, $he sits up and smiles to the crowd. $His show definitely drew attention to her club. With a burst of energy $he hefts her still very gravid body to its feet, bows to the crowd, and gathers her child before making her way off stage. As $he leaves the public's gaze, $he shouts out with a wink "Same time next week!". + Exhausted, $he sits up and smiles to the crowd. $His show definitely drew attention to $his club. With a burst of energy $he hefts her still very gravid body to its feet, bows to the crowd, and gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child before making her way off stage. As $he leaves the public's gaze, $he shouts out with a wink "Same time next week!". <</if>> <<case "be the Attendant">> @@ -898,7 +898,7 @@ <<case "be the Madam">> <<if (random(1,20) > $suddenBirth)>> - $He heads to a private room in the back of the club accompanied by a influential patron. $He settles herself onto his lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in his attention as he strips $him. Placing her child outside the room, $he returns to get more intimate with her catch. + $He heads to a private room in the back of the club accompanied by a influential patron. $He settles $himself onto his lap and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in his attention as he strips $him. Placing her child outside the room, $he returns to get more intimate with her catch. <<else>> While managing $brothelName, $slaves[$i].slaveName's water breaks. Knowing $he lacks the time to leave, $he sets up a sign reading "birthshow <<print cashFormat(100)>> a viewer" and takes a seat. <<set $humiliation = 1>> @@ -909,9 +909,9 @@ <<case "be the Stewardess">> <<if (random(1,20) > $suddenBirth)>> - $He strips and settles herself into her favorite chair while calling several servants to her aid. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby into the arms of her waiting charges. $His child is promptly taken and $he reclines while her servants clean and dress her still very gravid body. Once $he has had enough, $he orders them to help her up and get back to work on the penthouse. + $He strips and settles $himself into her favorite chair while calling several servants to her aid. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby into the arms of her waiting charges. $His child is promptly taken and $he reclines while her servants clean and dress her still very gravid body. Once $he has had enough, $he orders them to help her up and get back to work on the penthouse. <<else>> - While overseeing the house servants, $slaves[$i].slaveName's water breaks. $He has no time to strip down so $he takes a seat and readies herself. Commandingly, $he snaps her fingers and orders her charges to clean up the floor, assist her with her clothes, and be ready to take <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child away. + While overseeing the house servants, $slaves[$i].slaveName's water breaks. $He has no time to strip down so $he takes a seat and readies $himself. Commandingly, $he snaps her fingers and orders her charges to clean up the floor, assist her with her clothes, and be ready to take <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child away. <<set $humiliation = 1>> <<ClothingBirth>> Once $he catches her breath, $he struggles to her feet and takes the fresh change of clothing provided by her servants before ordering them back to work. @@ -919,9 +919,9 @@ <<case "be the Milkmaid">> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He is quite experienced in delivering her cows' children, but $he finds it much more difficult to apply her knowledge to herself. $His child is promptly taken and, after a short rest, $he returns to caring for your cows, as gravid as ever. + $He returns to her bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He is quite experienced in delivering her cows' children, but $he finds it much more difficult to apply her knowledge to $himself. $His child is promptly taken and, after a short rest, $he returns to caring for your cows, as gravid as ever. <<else>> - While tending to her stock, $slaves[$i].slaveName's water breaks. $He hastily pulls herself into a vacant stall and seats herself in its corner. + While tending to her stock, $slaves[$i].slaveName's water breaks. $He hastily pulls $himself into a vacant stall and seats $himself in its corner. <<ClothingBirth>> Quickly, $he collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child for removal before returning to $dairyName. The cows around her stall all have a knowing look on their faces<<if $dairyPregSetting > 0>> but with their own swollen bellies hanging heavily from them, they know that they soon will follow her lead.<<else>>.<</if>> <</if>> @@ -929,102 +929,102 @@ <<case "be the Wardeness">> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - $He enters an empty cell, strips, and seats herself on the cot. $He instinctively begins birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he returns to mindlessly breaking the confined slaves. + $He enters an empty cell, strips, and seats $himself on the cot. $He instinctively begins birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he returns to mindlessly breaking the confined slaves. <<else>> - While punishing a slave, $slaves[$i].slaveName's water breaks, soaking $him. Indifferent, $he resumes beating her until the contractions are too much to bear. Settling to the floor, $he begins giving birth. + While punishing a slave, $slaves[$i].slaveName's water breaks, soaking her. Indifferent, $he resumes beating her until the contractions are too much to bear. Settling to the floor, $he begins giving birth. <<ClothingBirth>> - As soon as $he regains her strength, $he resumes beating the confused slave. $His child is collected by a servant, who carefully hints that $slaves[$i].slaveName should take a break before returning to her task. + As soon as $he regains $his strength, $he resumes beating the confused slave. <<if $slaves[$i].birthsTotal == 0>>$His first<<else>>This week's<</if>> is collected by a servant, who carefully hints that $slaves[$i].slaveName should take a break before returning to $his task. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to the cellblock. + $He returns to $his bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to the cellblock. <<else>> - While punishing a rebellious slave, $slaves[$i].slaveName's water breaks, soaking $him. Noticing the slave's smirk, $he resumes beating her until the contractions are too much to bear. Relocking the cell, $he waddles into the nearest empty cell and drops her weight onto the cot. + While punishing a rebellious slave, $slaves[$i].slaveName's water breaks, soaking her. Noticing the slave's smirk, $he resumes beating her until the contractions are too much to bear. Relocking the cell, $he waddles into the nearest empty cell and drops $his weight onto the cot. <<ClothingBirth>> - Quickly, $he collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child for removal before returning to $cellblockName. On her way past the cells, $he takes note of any slaves whispering or gesturing about what transpired for future punishment. + Quickly, $he collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child for removal before returning to $cellblockName. On $his way past the cells, $he takes note of any slaves whispering or gesturing about what transpired for future punishment. <</if>> <</if>> <<case "be the Nurse">> <<if (random(1,20) > $suddenBirth)>> - $He waddles to her maternity ward and strips before settling into an open bed. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby as her assistants watch. $His child is promptly taken and $he is helped to the recovery ward until $he recovers enough to take over $clinicName again. + $He waddles to $his maternity ward and strips before settling into an open bed. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby as $his assistants watch. $His child is promptly taken and $he is helped to the recovery ward until $he recovers enough to take over $clinicName again. <<else>> - While tending to your unwell slaves, $slaves[$i].slaveName's water breaks. Counting the time between contractions, $he knows $he has no time to get to her prepared birthing chamber. $He waddles into the nearest empty room and hoists her gravid body into the examination chair, placing her feet in the stirrups. + While tending to your unwell slaves, $slaves[$i].slaveName's water breaks. Counting the time between contractions, $he knows $he has no time to get to $his prepared birthing chamber. $He waddles into the nearest empty room and hoists $his gravid body into the examination chair, placing $his feet in the stirrups. <<ClothingBirth>> - Quickly, $he collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child for removal before retiring to the recovery ward. Within an hour of rest, $he is back on her feet tending to her charges. + Quickly, $he collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child for removal before retiring to the recovery ward. Within an hour of rest, $he is back on $his feet tending to $his charges. <</if>> <<case "be your Head Girl">> <<if (random(1,20) > $suddenBirth)>> - $He returns to <<if $HGSuite == 1>>her room's bed<<else>>her bed<</if>> and strips before slipping into it. $He makes herself comfortable<<if $HGSuiteSlaves != 0>>, as her slave rushes to her side,<</if>> and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken<<if $HGSuiteSlaves != 0>> by her roommate<</if>> and $he rests awhile before returning to managing your slaves. + $He returns to <<if $HGSuite == 1>>$his room's bed<<else>>$his bed<</if>> and strips before slipping into it. $He makes $himself comfortable<<if $HGSuiteSlaves != 0>>, as $his slave rushes to $his side,<</if>> and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken<<if $HGSuiteSlaves != 0>> by $his roommate<</if>> and $he rests awhile before returning to managing your slaves. <<else>> - While overseeing your other slaves, $slaves[$i].slaveName's water breaks. $He attempts to hold back the coming birth until $he can catch a break in her duties but ultimately fails. + While overseeing your other slaves, $slaves[$i].slaveName's water breaks. $He attempts to hold back the coming birth until $he can catch a break in $his duties but ultimately fails. <<set $humiliation = 1>> <<ClothingBirth>> - Upon finishing, $he quickly collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and orders the mess to be cleaned promptly without breaking her dominant appearance. + Upon finishing, $he quickly collects <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child and orders the mess to be cleaned promptly without breaking $his dominant appearance. <</if>> <<case "guard you">> <<if (random(1,20) > $suddenBirth)>> - Or $he would have, if $he'd stop refusing to leave your side. You lead her someplace private and help her undress. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. You call for a servant to quickly gather her child as you help her into the shower, making sure to wait outside for your loyal guardian to finish. + Or $he would have, if $he'd stop refusing to leave your side. You lead $him someplace private and help $him undress. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. You call for a servant to quickly gather $his child as you help her into the shower, making sure to wait outside for your loyal guardian to finish. <<else>> - Refusing to leave your side even when on the verge of giving birth, $slaves[$i].slaveName continues to serve as your bodyguard despite her condition. A splashing sound and a loud groan emit from behind you; your bodyguard has gone into labor. You quickly help her to the ground and prepare for the coming birth. + Refusing to leave your side even when on the verge of giving birth, $slaves[$i].slaveName continues to serve as your bodyguard despite $his condition. A splashing sound and a loud groan emit from behind you; your bodyguard has gone into labor. You quickly help her to the ground and prepare for the coming birth. <<ClothingBirth>> - You sit by your loyal guard holding her child until a servant comes by to take them away. Once $he is thoroughly rested, you help her up and lead her back to the penthouse to shower and change. + You sit by your loyal guard holding <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child until a servant comes by to take them away. Once $he is thoroughly rested, you help $him up and lead $him back to the penthouse to shower and change. <</if>> <<case "recruit girls">> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to finding new slaves for you. + $He returns to $his bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he rests awhile before returning to finding new slaves for you. <<else>> While on a video call with a potential recruit, $slaves[$i].slaveName's water breaks. $He attempts to play it cool and act like nothing is happening but the worsening contractions finally get to $him. <<set $humiliation = 1>> <<ClothingBirth>> <<if _birthScene > 50>> - Exhausted from the birth and clutching her newborn child, $he returns to find that $he never ended the call. The prospective slave is blushing furiously and seems to have begun touching herself to the show. Apologizing for the interruption, while red with embarrassment, $slaves[$i].slaveName resumes chatting with the somewhat more pliant girl. + Exhausted from the birth and clutching <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, $he returns to find that $he never ended the call. The prospective slave is blushing furiously and seems to have begun touching $himself to the show. Apologizing for the interruption, while red with embarrassment, $slaves[$i].slaveName resumes chatting with the somewhat more pliant girl. <<else>> - Exhausted from the birth and clutching her newborn child, $he returns to find that $he never ended the call. The prospective slave is grinning widely and states $he has been recording the show. $He signs off, but not before saying $he'll be seeing more of $slaves[$i].slaveName around the internet. <<if $slaves[$i].fetish == "humiliation">>Your recruiter can't help but become aroused at the prospect<<else>>Your recruiter is terrified that her birth video is out there for everyone to see, partly due to her own shame and to the potential damage it will do to her reputation<</if>>. + Exhausted from the birth and clutching <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, $he returns to find that $he never ended the call. The prospective slave is grinning widely and states she has been recording the show. She signs off, but not before saying she'll be seeing more of $slaves[$i].slaveName around the internet. <<if $slaves[$i].fetish == "humiliation">>Your recruiter can't help but become aroused at the prospect<<else>>Your recruiter is terrified that $his birth video is out there for everyone to see, partly due to $his own shame and to the potential damage it will do to $his reputation<</if>>. <</if>> <</if>> <<case "work in the dairy">> <<if $dairyRestraintsSetting > 1 && $slaves[$i].career == "a bioreactor">> <<if (random(1,20) > $suddenBirth)>> - As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $possessive laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. Once <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is secure, the basket retracts to allow $possessive <<if $slaves[$i].mpreg == 1>>rear<<else>>vagina<</if>> to be cleaned. + As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $his laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. Once <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is secure, the basket retracts to allow $his <<if $slaves[$i].mpreg == 1>>rear<<else>>vagina<</if>> to be cleaned. <<else>> - Without warning, $slaves[$i].slaveName's water breaks and $possessive body begins to rapidly push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He manages to force out the squirming child before the basket could extend, flagging her unit for maintenance. + Without warning, $slaves[$i].slaveName's water breaks and $his body begins to rapidly push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He manages to force out the squirming child before the basket could extend, flagging her unit for maintenance. <</if>> - All these events are meaningless to $object, as $possessive consciousness has long since been snuffed out. + All these events are meaningless to $him, as $his consciousness has long since been snuffed out. <<elseif $dairyRestraintsSetting > 1>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $possessive laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. Once <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is secure, the basket retracts to allow $possessive <<if $slaves[$i].mpreg == 1>>rear<<else>>vagina<</if>> to be cleaned. + As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $his laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. Once <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby is secure, the basket retracts to allow $his <<if $slaves[$i].mpreg == 1>>rear<<else>>vagina<</if>> to be cleaned. <<else>> - Without warning, $slaves[$i].slaveName's water breaks and $possessive body begins to rapidly push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He manages to force out the squirming child before the basket could extend, flagging her unit for maintenance. + Without warning, $slaves[$i].slaveName's water breaks and $his body begins to rapidly push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He manages to force out the squirming child before the basket could extend, flagging her unit for maintenance. <</if>> - $pronounCap doesn't care about any of this, as the only thoughts left in $possessive empty mind revolve around the sensations in $possessive crotch and breasts. + $He doesn't care about any of this, as the only thoughts left in $his empty mind revolve around the sensations in $his crotch and breasts. <<else>> <<if (random(1,20) > $suddenBirth)>> - As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $possessive laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. $pronounCap struggles in $possessive bindings, attempting to break free in order to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, but $possessive efforts are pointless. $pronounCap is forced to give birth, restrained, into the waiting holder. Once the child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> secure, the basket retracts allowing access to $possessive vagina. + As $slaves[$i].slaveName's water breaks, a mechanical basket is extended under $his laboring <<if $slaves[$i].mpreg == 1>>ass<<else>>cunt<</if>>. $He struggles in $his bindings, attempting to break free in order to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, but $his efforts are pointless. $He is forced to give birth, restrained, into the waiting holder. Once the child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> secure, the basket retracts allowing access to $his vagina. <<else>> Without warning, $slaves[$i].slaveName's water breaks and $he uncontrollably births <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He manages to force out the screaming child before the basket could fully extend, flagging her unit for maintenance and causing quite the scene. $He knows full well there is nothing $he can do to hide her shame. <</if>> - $possessiveCap mind slips slightly more as $pronoun focuses on $possessive fate as nothing more than an animal destined to be milked and bare offspring until $possessive body gives out. + $His mind slips slightly more as $he focuses on $his fate as nothing more than an animal destined to be milked and bare offspring until $his body gives out. <<set $humiliation = 1>> <<set $slaves[$i].trust -= 10, $slaves[$i].devotion -= 10>> <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - While getting milked, $slaves[$i].slaveName's water breaks. $pronounCap shows little interest and continues kneading $possessive breasts. Instinctively, $pronoun begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>>. $pronounCap pays no heed to $possessive child being removed from the milking stall, instead focusing entirely on draining $possessive breasts and getting comfortable with her still very gravid middle. + While getting milked, $slaves[$i].slaveName's water breaks. $He shows little interest and continues kneading $his breasts. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>>. $He pays no heed to $his child being removed from the milking stall, instead focusing entirely on draining $his breasts and getting comfortable with $his still very gravid middle. <<else>> - While getting milked, $slaves[$i].slaveName's water breaks. $He show little interest and continues kneading her breasts. + While getting milked, $slaves[$i].slaveName's water breaks. $He show little interest and continues kneading $his breasts. <<ClothingBirth>> - $He shows no interest in <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child being removed from the milking stall, nor her still very gravid middle, instead focusing entirely on draining her breasts. + $He shows no interest in <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child being removed from the milking stall, nor $his still very gravid middle, instead focusing entirely on draining $his breasts. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - While getting milked, $slaves[$i].slaveName's water breaks,<<if $dairyPregSetting > 0>> this is a regular occurrence to $object now so<<else>> but<</if>> $pronoun continues enjoying $possessive milking while $pronoun works to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $pronounCap catches <<if canSee($slaves[$i])>>a glimpse<<else>>the sound<</if>> of $possessive child being removed from the milking stall before returning $possessive focus to draining $possessive breasts. + While getting milked, $slaves[$i].slaveName's water breaks,<<if $dairyPregSetting > 0>> this is a regular occurrence to $him now so<<else>> but<</if>> $he continues enjoying $his milking while $he works to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He catches <<if canSee($slaves[$i])>>a glimpse<<else>>the sound<</if>> of $his child being removed from the milking stall before returning $his focus to draining $his breasts. <<else>> While getting milked, $slaves[$i].slaveName's water breaks. Knowing $he can't leave yet, $he shifts into a more comfortable position for the impending birth. <<ClothingBirth>> @@ -1040,17 +1040,17 @@ <<if (random(1,20) > $suddenBirth)>> $He is helped back to her bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He runs her hands across the still huge dome of her middle; to $him, gravidity and birth is nothing out of the ordinary. <<else>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. + $He is helped back to her bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. <<ClothingBirth>> - $He struggles to collect her child and places them in the cradle readied for $him. $He is helped to the shower as your servants clean up and remove her child. + $He struggles to collect her child and places them in the cradle readied for $him. $He is helped to the shower as your servants clean up and remove $his child. <</if>> <</if>> <<else>> @@ -1058,17 +1058,17 @@ <<if (random(1,20) > $suddenBirth)>> $He returns to her bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He runs her hands across the still huge dome of her middle; to $him, gravidity and birth is nothing out of the ordinary. <<else>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. + $He returns to her bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. <<ClothingBirth>> - $He struggles to collect her child and places them in the cradle readied for $him. $He hefts her still very gravid body out of bed to take a shower as your servants clean up and remove her child. + $He struggles to collect her child and places them in the cradle readied for $him. $He hefts her still very gravid body out of bed to take a shower as your servants clean up and remove $his child. <</if>> <</if>> <</if>> @@ -1082,7 +1082,7 @@ $He is helped back to her bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He runs her hands across the still huge dome of her middle; to $him, gravidity and birth is nothing out of the ordinary. <<else>> <<if _birthScene >= 50>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting. <<else>> @@ -1093,21 +1093,21 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is helped back to her bed and stripped before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. + $He is helped back to her bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. <<else>> <<if _birthScene >= 70>> While waiting to be helped to her next assignment, $slaves[$i].slaveName's body begins to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Unable to do anything, $he is forced to give birth where $he is. <<ClothingBirth>> $He gathers her child and recovers her strength while resuming her wait a servant to help her to her assignment. <<elseif _birthScene >= 30>> - While eating in the cafeteria, $slaves[$i].slaveName's body begins to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Unable to walk without assistance, $he finds herself stranded in the middle of all the dining slaves. + While eating in the cafeteria, $slaves[$i].slaveName's body begins to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Unable to walk without assistance, $he finds $himself stranded in the middle of all the dining slaves. <<set $humiliation = 1>> <<ClothingBirth>> $He gathers her child and waits to be rescued from the vicious mockery, fully aware of all the jestering and laughter. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. <<ClothingBirth>> - $He struggles to collect her child and places them in the cradle readied for $him. $He is helped to the shower as your servants clean up and remove her child. + $He struggles to collect her child and places them in the cradle readied for $him. $He is helped to the shower as your servants clean up and remove $his child. <</if>> <</if>> <</if>> @@ -1121,7 +1121,7 @@ <<ClothingBirth>> $He rolls onto her side and rests with her child to her breast until a servant collects her child and helps her to her bed. <<else>> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He fishes around under her still huge dome of a stomach searching for her newborn. Once $he finds it, $he draws it to her breast and resumes resting. <</if>> @@ -1133,21 +1133,21 @@ $He gathers her child and recovers her strength before finding a servant to give her child to. $He resumes her previous task, eager for the next child to move into position. <<else>> <<if (random(1,20) > $suddenBirth)>> - $He returns to her bed and strips before slipping into it. $He makes herself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. + $He returns to her bed and strips before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over, cradling her heavily rounded middle, and dozes off. <<else>> <<if _birthScene >= 70>> While waddling through the penthouse on the way to her next assignment, $slaves[$i].slaveName's body begins to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Unable to reach the prepared birthing room in time, $he finds a secluded room to give birth in. <<ClothingBirth>> $He gathers her child and recovers her strength before finding a servant to give her child to before shuffling to her assignment, a hand on her still very gravid middle. <<elseif _birthScene >= 30>> - While waddling through the penthouse on her way to the cafeteria, $slaves[$i].slaveName's body begins to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Unable to reach the prepared birthing room in time, $he finds herself stranded in the middle of all the dining slaves. + While waddling through the penthouse on her way to the cafeteria, $slaves[$i].slaveName's body begins to birth <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. Unable to reach the prepared birthing room in time, $he finds $himself stranded in the middle of all the dining slaves. <<set $humiliation = 1>> <<ClothingBirth>> - $He gathers her child and recovers her strength before trying to escape out of sight of the jeering crowd. Finding a servant to give her child to, $he hastily heads back to her bed to hide herself from the mockery. $He runs a hand across her still very gravid middle; $he'll have to be more careful in the future as there are plenty more children growing within $him. + $He gathers her child and recovers her strength before trying to escape out of sight of the jeering crowd. Finding a servant to give her child to, $he hastily heads back to her bed to hide $himself from the mockery. $He runs a hand across her still very gravid middle; $he'll have to be more careful in the future as there are plenty more children growing within $him. <<else>> - $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a moist sensation followed by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. <<ClothingBirth>> - $He struggles to collect her child and places them in the cradle readied for $him. $He hefts her still very gravid body out of bed to take a shower as your servants clean up and remove her child. + $He struggles to collect her child and places them in the cradle readied for $him. $He hefts her still very gravid body out of bed to take a shower as your servants clean up and remove $his child. <</if>> <</if>> <</if>> @@ -1168,23 +1168,23 @@ <<case "rest">> <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He attempts to roll over, and failing that, begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He attempts to roll over, and failing that, begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He struggles to draw her child to her breast and resumes resting. <<else>> - $slaves[$i].slaveName is awoken from her rest by a contraction. $He struggles to roll over, and failing that, clutches her gravid belly as another contraction wracks her body. Since this has already happened several times this week, $he knows what to expect. + $slaves[$i].slaveName is awoken from her rest by a contraction. $He struggles to roll over, and failing that, clutches her gravid belly as another contraction wracks $his body. Since this has already happened several times this week, $he knows what to expect. <<ClothingBirth>> - $His child is collected and her body cleaned before $he is allowed to resume her rest. + $His child is collected and $his body cleaned before $he is allowed to resume her rest. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> $He struggles to draw her child to her breast and resumes resting. <<else>> - $slaves[$i].slaveName is awoken from her rest by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks her body. Since this has already happened several times this week, $he knows what to expect. + $slaves[$i].slaveName is awoken from her rest by a contraction. $He rolls over and clutches her gravid belly as another contraction wracks $his body. Since this has already happened several times this week, $he knows what to expect. <<ClothingBirth>> - $His child is collected and her body cleaned before $he is allowed to resume her rest. + $His child is collected and $his body cleaned before $he is allowed to resume her rest. <</if>> <</if>> @@ -1224,7 +1224,7 @@ While attempting to attract customers to fuck her grotesquely distended body, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to move and rapidly crowning, $he manages to get several men to help her out. <<set $humiliation = 1>> <<ClothingBirth>> - $He lies stranded on the ground, exhausted and covered in sperm from the circle of men watching $him, until $he is helped into a sitting position and handed her child. + $He lies stranded on the ground, exhausted and covered in sperm from the circle of men watching $him, until $he is helped into a sitting position and handed $his child. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> @@ -1235,7 +1235,7 @@ While attempting to attract customers with her grotesquely distended body, $slaves[$i].slaveName's body begins to birth another of her brood. $He knows it is pointless to try to waddle away, as large as $he is, so $he convinces several men to help her out. <<set $humiliation = 1>> <<ClothingBirth>> - $He lies on the ground, exhausted and covered in sperm from the circle of men watching $him, until $he is helped to her feet and handed her child. + $He lies on the ground, exhausted and covered in sperm from the circle of men watching $him, until $he is helped to her feet and handed $his child. <</if>> <</if>> @@ -1253,19 +1253,19 @@ <<ClothingBirth>> The citizen splashes across her face before placing her child on her breast, as $he begins beckoning for the next citizen's cunt. <<else>> - While taking a citizen's dick in her ass, $slaves[$i].slaveName's body begins to birth another of her brood. $He shows no signs of slowing down, so he allows her to continue. Instinctively $he begins to push out her baby, indifferent to who may be watching her naked crotch. He came strongly thanks to her and gives her a slap on the ass before handing her her child. $He brings it to her breast before beckoning for the next citizen's cock. + While taking a citizen's dick in her ass, $slaves[$i].slaveName's body begins to birth another of her brood. $He shows no signs of slowing down, so he allows her to continue. Instinctively $he begins to push out her baby, indifferent to who may be watching her naked crotch. He came strongly thanks to her and gives her a slap on the ass before handing her $his child. $He brings it to her breast before beckoning for the next citizen's cock. <</if>> <<else>> <<if ($seed > 80)>> While riding a citizen's dick, $slaves[$i].slaveName's body begins to birth another of her brood. $He desperately struggles to disengage encouraging him to shove her onto her bloated womb and mount $him. He thoroughly enjoys her contracting cunt before pulling out and standing over $him, jacking off. Quickly $he spreads her legs apart and begins pushing out her baby. $He can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He comes over her exhausted body and moves on leaving her to recover and await her child to be sent off. <<set $humiliation = 1>> <<elseif ($seed > 60)>> - While sucking a citizen's dick, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving herself, $he carries on sucking. + While sucking a citizen's dick, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving $himself, $he carries on sucking. <<set $humiliation = 1>> <<ClothingBirth>> He cums down her throat before letting her collapse onto her bloated form. When $he recovers, $he gathers her child to be sent off. <<elseif ($seed > 40)>> - While licking a citizen's cunt, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving herself, $he carries on licking. + While licking a citizen's cunt, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving $himself, $he carries on licking. <<set $humiliation = 1>> <<ClothingBirth>> $He cums across her face before helping her to her rear and handing her the newborn child. @@ -1287,7 +1287,7 @@ <<ClothingBirth>> The citizen splashes across her face before placing her child on her breast, as $he begins seeking out the next citizen's cunt. <<else>> - While taking a citizen's dick in her ass, $slaves[$i].slaveName's body begins to birth another of her brood. $He shows no signs of slowing down, so he allows her to reposition and continue. Instinctively $he begins to push out her baby, indifferent to who may be watching her naked crotch. He came strongly thanks to her and gives her a slap on the ass before handing her her child. $He brings it to her breast before seeking out the next citizen's cock. + While taking a citizen's dick in her ass, $slaves[$i].slaveName's body begins to birth another of her brood. $He shows no signs of slowing down, so he allows her to reposition and continue. Instinctively $he begins to push out her baby, indifferent to who may be watching her naked crotch. He came strongly thanks to her and gives her a slap on the ass before handing her $his child. $He brings it to her breast before seeking out the next citizen's cock. <</if>> <<else>> <<if ($seed > 80)>> @@ -1342,7 +1342,7 @@ <<else>> While getting milked, $slaves[$i].slaveName's body begins to birth another of her brood. Between the milkers and her immobilizing belly, $he ends up stranded atop her immense pregnancy. <<ClothingBirth>> - $His child is carried away and $he struggles to get off of herself. $He groans as $he realizes the milk tank is nearly full, having been filled with the copious amounts of milk her body is producing for her brood. + $His child is carried away and $he struggles to get off of $himself. $He groans as $he realizes the milk tank is nearly full, having been filled with the copious amounts of milk $his body is producing for her brood. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> @@ -1352,7 +1352,7 @@ <<else>> While getting milked, $slaves[$i].slaveName's body begins to birth another of her brood. $He shifts into a comfortable position to give birth while the milker works her breasts. <<ClothingBirth>> - $His child is carried away and $he rests with her back against the wall. $He groans as $he realizes the milk tank is nearly full, having been filled with the copious amounts of milk her body is producing for her brood. + $His child is carried away and $he rests with her back against the wall. $He groans as $he realizes the milk tank is nearly full, having been filled with the copious amounts of milk $his body is producing for her brood. <</if>> <</if>> @@ -1384,23 +1384,23 @@ <<if $slaves[$i].fetish == "mindbroken">> While waiting in confinement, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he can't move, $he just lets things happen. <<ClothingBirth>> - $He struggles for a minute before realizing $he is incapable of reaching her child. The servant that has to crawl under her bloated body to get her child is less than pleased, especially since this is the third time this week $he has had to do it. + $He struggles for a minute before realizing $he is incapable of reaching $his child. The servant that has to crawl under her bloated body to get her child is less than pleased, especially since this is the third time this week $he has had to do it. <<else>> - $slaves[$i].slaveName is awoken from her stupor by her body beginning to birth another of her brood. $He struggles to get into position but ends up getting stuck atop her massive belly. + $slaves[$i].slaveName is awoken from her stupor by $his body beginning to birth another of her brood. $He struggles to get into position but ends up getting stuck atop her massive belly. <<set $humiliation = 1>> <<ClothingBirth>> - $He spills out of the cell when the servant comes once more to collect her child. $He hastily tries to cram her bulk back into her cell before $he gets chastised. + $He spills out of the cell when the servant comes once more to collect $his child. $He hastily tries to cram her bulk back into her cell before $he gets chastised. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> While waiting in confinement, $slaves[$i].slaveName's body begins to birth another of her brood. $He assumes a birthing position. <<ClothingBirth>> - $He struggles for a minute before realizing her pregnancy takes up most of the cell and that $he can't reach her child. The servant that has to crawl under her bloated body to get her child is less than pleased, especially since this is the third time this week $he has had to do it. + $He struggles for a minute before realizing her pregnancy takes up most of the cell and that $he can't reach $his child. The servant that has to crawl under her bloated body to get her child is less than pleased, especially since this is the third time this week $he has had to do it. <<else>> - $slaves[$i].slaveName is awoken from her stupor by her body beginning to birth another of her brood. $He struggles to get into position but ends up getting stuck standing thanks to her massive belly. + $slaves[$i].slaveName is awoken from her stupor by $his body beginning to birth another of her brood. $He struggles to get into position but ends up getting stuck standing thanks to her massive belly. <<set $humiliation = 1>> <<ClothingBirth>> - $He spills out of the cell when the servant comes once more to collect her child. $He hastily tries to cram her bulk back into her cell before $he gets chastised. + $He spills out of the cell when the servant comes once more to collect $his child. $He hastily tries to cram her bulk back into her cell before $he gets chastised. <</if>> <</if>> @@ -1413,7 +1413,7 @@ <<else>> While struggling to scrub the penthouse floor, $slaves[$i].slaveName's body begins to birth another of her brood. $He carries on trying to clean as $he drags her belly along the floor. <<ClothingBirth>> - Instead of carrying on her task, $he draws her child to her breast until <<if $Stewardess != 0>>$Stewardess.slaveName shouts at her to move her useless ass<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at her to move her useless ass<<else>><<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>>shouts at her to move her useless ass<</if>>. + Instead of carrying on $his task, $he draws $his child to $his breast until <<if $Stewardess != 0>>$Stewardess.slaveName shouts at $him to move $his useless ass<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at her to move $his useless ass<<else>><<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>>shouts at $him to move $his useless ass<</if>>. <</if>> <<else>> <<if $seed > 50>> @@ -1422,9 +1422,9 @@ <<ClothingBirth>> The slave gets off quite strongly to the show and shoves her to the ground, leaving her struggling to get up before <<if $Stewardess != 0>>$Stewardess.slaveName shouts at her<<elseif $HeadGirl != 0>>$HeadGirl.slaveName shouts at her <<else>><<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>>shouts at her<</if>>. <<else>> - While using her bloated belly to scrub the penthouse floor, $slaves[$i].slaveName's body begins to birth another of her brood. Since this isn't the first time this week this happened, $he readies herself for the coming birth. + While using $his bloated belly to scrub the penthouse floor, $slaves[$i].slaveName's body begins to birth another of $his brood. Since this isn't the first time this week this happened, $he readies $himself for the coming birth. <<ClothingBirth>> - $He makes a pass around the room before scooping up her child and struggling to her feet. $He slowly waddles to drop off her child. + $He makes a pass around the room before scooping up $his child and struggling to $his feet. $He slowly waddles to drop off $his child. <</if>> <</if>> @@ -1448,7 +1448,7 @@ <<ClothingBirth>> Once her child is removed, $he's cleaned up, and the sheets changed, $he struggles back into bed to recover for your return. <<elseif $masterSuiteUpgradeLuxury == 2>> - While participating in the fuckpit orgy, $slaves[$i].slaveName's body begins to birth another of her brood. $He knows $he stands no chance of escaping the fuckpit, so $he leaves herself at the mercy of the other fucktoys. They happily position themselves for her to pleasure them while giving birth. + While participating in the fuckpit orgy, $slaves[$i].slaveName's body begins to birth another of her brood. $He knows $he stands no chance of escaping the fuckpit, so $he leaves $himself at the mercy of the other fucktoys. They happily position themselves for her to pleasure them while giving birth. <<set $humiliation = 1>> <<ClothingBirth>> Once the fucktoys are done tormenting the exhausted broodmother, they hand her child off to the help and snuggle up to her enormous pregnancy as $he recovers her strength. @@ -1473,7 +1473,7 @@ <</if>> <<else>> <<if $masterSuiteUpgradeLuxury == 1>> - While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's body begins to birth another of her brood. $He quickly moves herself off the bed and calls for a servant before dropping onto her bloated stomach. + While awaiting your return on the big bed in the master suite, $slaves[$i].slaveName's body begins to birth another of her brood. $He quickly moves $himself off the bed and calls for a servant before dropping onto her bloated stomach. <<ClothingBirth>> Once her child is removed, $he's cleaned up, and the sheets changed, $he struggles back into bed to recover for your return. <<elseif $masterSuiteUpgradeLuxury == 2>> @@ -1482,7 +1482,7 @@ <<ClothingBirth>> Once the fucktoys are done tormenting the exhausted broodmother, they hand her child off to the help and snuggle up to her enormous pregnancy as $he recovers her strength. <<else>> - While awaiting your return in the master suite, $slaves[$i].slaveName's body begins to birth another of her brood. $He tries to get to the prepared area but fails to untangle herself from the toys $he was playing with. $He calls for a servant to hurry as $he begins laboring. + While awaiting your return in the master suite, $slaves[$i].slaveName's body begins to birth another of her brood. $He tries to get to the prepared area but fails to untangle $himself from the toys $he was playing with. $He calls for a servant to hurry as $he begins laboring. <<ClothingBirth>> The servant collects $his child and helps her onto the largest cushion in the room to recover for your return. With a little effort $he pushes the vibrating dildo out of $his ass before settling down for a nap. <</if>> @@ -1501,23 +1501,23 @@ <<ClothingBirth>> As $his child is removed from the dance floor, $he is helped into one of the back rooms by several of $his aroused onlookers. <<else>> - $slaves[$i].slaveName is showing off her grotesque body and trying to attract citizens by dancing as well as $he can. During one of her dances, $slaves[$i].slaveName's body begins to birth another of her brood. $He frantically struggles to move drawing even more attention to her helpless state. $He is roughly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. + $slaves[$i].slaveName is showing off $his grotesque body and trying to attract citizens by dancing as well as $he can. During one of her dances, $slaves[$i].slaveName's body begins to birth another of her brood. $He frantically struggles to move drawing even more attention to her helpless state. $He is roughly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. <<set $humiliation = 1>> <<ClothingBirth>> Only once the last of $his clients cums over $his bloated body is $he handed $his child and allowed to rest. $He enjoys a moment with her newborn before the servant comes to collect them. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> - $slaves[$i].slaveName is showing off $his grotesque body and trying to attract citizens by dancing as well as $he can. During one of her dances, her body begins to birth another of her brood. $He keeps on dancing, despite $his condition, until $his contractions drag her onto $his bloated stomach. + $slaves[$i].slaveName is showing off $his grotesque body and trying to attract citizens by dancing as well as $he can. During one of her dances, $his body begins to birth another of $his brood. $He keeps on dancing, despite $his condition, until $his contractions drag $him onto $his bloated stomach. <<ClothingBirth>> Multiple citizens drag her into a booth so that they may tease her enormous exhausted body while the dance floor is dried and her child is carried off. <<elseif $slaves[$i].fetish == "humiliation">> - $slaves[$i].slaveName is showing off her grotesque body and trying to attract citizens by dancing as well as $he can, all the while flashing glimpses of her crotch and nipples. During one of her dances, her body begins to birth another of her brood. $He calls out to the crowd, hyping them up for her new show. + $slaves[$i].slaveName is showing off her grotesque body and trying to attract citizens by dancing as well as $he can, all the while flashing glimpses of her crotch and nipples. During one of her dances, $his body begins to birth another of her brood. $He calls out to the crowd, hyping them up for $his new show. <<set $humiliation = 1>> <<ClothingBirth>> As her child is removed from the dance floor, $he is helped into one of the back rooms by several of her aroused onlookers. <<else>> - $slaves[$i].slaveName is showing off her grotesque body and trying to attract citizens by dancing as well as $he can. During one of her dances, $slaves[$i].slaveName's body begins to birth another of her brood. $He clumsily tries to leave the dance floor only to find hands groping her titanic belly. $He is roughly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. + $slaves[$i].slaveName is showing off $his grotesque body and trying to attract citizens by dancing as well as $he can. During one of her dances, $slaves[$i].slaveName's body begins to birth another of her brood. $He clumsily tries to leave the dance floor only to find hands groping her titanic belly. $He is roughly pulled into one of the side rooms by a group of men looking forward to the show $he's about to perform for them. <<set $humiliation = 1>> <<ClothingBirth>> Only once the last of $his clients cums over $his bloated body is $he handed $his child and allowed to rest. $He enjoys a moment with her newborn before the servant comes to collect them. @@ -1545,17 +1545,17 @@ <<case "rest in the spa">> <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> - While soaking in the spa's pool, $slaves[$i].slaveName's body begins to birth another of $his brood. As $he begins to ready herself for birth, <<if $Attendant != 0>>$Attendant.slaveName struggles to pull her out of the pool and glares at her<<else>>the other bathers watch curiously<</if>>. + While soaking in the spa's pool, $slaves[$i].slaveName's body begins to birth another of $his brood. As $he begins to ready $himself for birth, <<if $Attendant != 0>>$Attendant.slaveName struggles to pull her out of the pool and glares at her<<else>>the other bathers watch curiously<</if>>. <<ClothingBirth>> $He and $his child are quickly dried off as $he begins nursing them. A servant soon arrives to take $his children away. <<else>> - While soaking in the spa's pool, $slaves[$i].slaveName's body begins to birth another of $his brood. As $he begins to ready herself for a water birth, <<if $Attendant != 0>>$Attendant.slaveName shifts into position to aid her<<else>>the other bathers watch curiously<</if>>. + While soaking in the spa's pool, $slaves[$i].slaveName's body begins to birth another of $his brood. As $he begins to ready $himself for a water birth, <<if $Attendant != 0>>$Attendant.slaveName shifts into position to aid her<<else>>the other bathers watch curiously<</if>>. <<ClothingBirth>> $He and $his child are quickly dried off as $he begins nursing them. A servant soon arrives to take $his children away. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> - While soaking in the spa's pool, $slaves[$i].slaveName's body begins to birth another of $his brood. As $he begins to ready herself for birth, <<if $Attendant != 0>>$Attendant.slaveName struggles to pull her out of the pool and glares at her<<else>>the other bathers watch curiously<</if>>. + While soaking in the spa's pool, $slaves[$i].slaveName's body begins to birth another of $his brood. As $he begins to ready $himself for birth, <<if $Attendant != 0>>$Attendant.slaveName struggles to pull her out of the pool and glares at her<<else>>the other bathers watch curiously<</if>>. <<ClothingBirth>> $He and her child are quickly dried off as $he begins nursing them. A servant soon arrives to take $his children away. <<else>> @@ -1576,7 +1576,7 @@ During a lesson in $schoolroomName, $slaves[$i].slaveName's body begins to birth another of $his brood. Since this isn't the first time $he interrupted the lesson this week, $he is helped into an adjacent storage room. <<set $humiliation = 1>> <<ClothingBirth>> - $He struggles to gather $his newborn child and slowly excuses herself from the class. $He can't help but notice all the other students giggling and gesturing as $he waddles out. + $He struggles to gather $his newborn child and slowly excuses $himself from the class. $He can't help but notice all the other students giggling and gesturing as $he waddles out. <</if>> <<case "take classes">> @@ -1587,7 +1587,7 @@ <<else>> During a lesson under <<if $assistantName == "your personal assistant">>your personal assistant<<else>>$assistantName<</if>>, $slaves[$i].slaveName's body begins to birth another of $his brood. Your assistant pauses and waits for $him to finish, having given up after the last several times <<ClothingBirth>> - Exhausted from the birth, $he is permitted a short break as $his child is collected to clean herself up before the lesson is continued. + Exhausted from the birth, $he is permitted a short break as $his child is collected to clean $himself up before the lesson is continued. <</if>> <<case "work in the brothel">> @@ -1611,12 +1611,12 @@ While riding a customer's dick, $slaves[$i].slaveName's body begins to birth another of her brood. $He desperately struggles to disengage encouraging him to shove her onto her bloated womb and mount $him. He thoroughly enjoys her contracting cunt before pulling out and standing over $him, jacking off. Quickly $he spreads her legs apart and begins pushing out her baby. $He can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He comes over her exhausted body and moves on leaving her to recover and await her child to be sent off. <<set $humiliation = 1>> <<elseif ($seed > 60)>> - While sucking a customer's dick, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving herself, $he carries on sucking. + While sucking a customer's dick, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving $himself, $he carries on sucking. <<set $humiliation = 1>> <<ClothingBirth>> He cums down $his throat before letting her collapse onto her bloated form. When $he recovers, $he gathers her child to be sent off. <<elseif ($seed > 40)>> - While licking a customer's cunt, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving herself, $he carries on licking. + While licking a customer's cunt, $slaves[$i].slaveName's body begins to birth another of her brood. Since $he is incapable of moving $himself, $he carries on licking. <<set $humiliation = 1>> <<ClothingBirth>> She cums across $his face before helping $him to $his rear and handing $his the newborn child. @@ -1645,7 +1645,7 @@ While riding a customer's dick, $slaves[$i].slaveName's body begins to birth another of her brood. $He desperately tries to disengage but he shoves her onto her bloated womb and mounts $him. He thoroughly enjoys her contracting cunt before pulling out and standing over $him, jacking off. Quickly $he spreads her legs apart and begins pushing out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. $He can't hide what's happening between her legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He comes over her exhausted body and moves on leaving her to recover and collect her child to be sent off. <<set $humiliation = 1>> <<elseif ($seed > 60)>> - While sucking a customer's dick, $slaves[$i].slaveName's body begins to birth another of her brood. $He desperately tries to disengage but he grabs her head and slams her back into his crotch. + While sucking a customer's dick, $slaves[$i].slaveName's body begins to birth another of $his brood. $He desperately tries to disengage but he grabs $his head and slams $him back into his crotch. <<set $humiliation = 1>> <<ClothingBirth>> He cums down her throat before letting her collapse onto her bloated form. When $he recovers, $he gathers her child to be sent off. @@ -1664,7 +1664,7 @@ <<case "be your Concubine">> <<if $slaves[$i].fetish == "mindbroken">> <<else>> - $slaves[$i].slaveName cradles her swollen belly, waiting for your return, when her body begins to birth another of her brood. Saddened that you aren't there for the show, $he begins waddling off to find you. By the time $he reaches your office, $he is barely holding back her child. You rise to meet her and struggle to help her onto the couch, just before it's to late. + $slaves[$i].slaveName cradles her swollen belly, waiting for your return, when $his body begins to birth another of her brood. Saddened that you aren't there for the show, $he begins waddling off to find you. By the time $he reaches your office, $he is barely holding back $his child. You rise to meet her and struggle to help her onto the couch, just before it's to late. <<ClothingBirth>> Cradling your child, the two of you rest for a spell before sending them off and spending some more intimate time together. You make sure to pay special attention to her overstimulated belly before you help her back to your suite. <</if>> @@ -1672,42 +1672,42 @@ <<case "live with your Head Girl">> <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He attempts to roll over, and failing that, begins to fall back to sleep as another contraction wracks her body. $His body begins to birth another of her brood. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He attempts to roll over, and failing that, begins to fall back to sleep as another contraction wracks $his body. $His body begins to birth another of her brood. <<ClothingBirth>> $He draws her child to her breast and resumes resting before $HeadGirl.slaveName returns from her duties. <<else>> - $slaves[$i].slaveName's body begins to birth another of her brood. $He attempts to roll over, and failing that, claws at her massive belly as another contraction wracks her body. + $slaves[$i].slaveName's body begins to birth another of her brood. $He attempts to roll over, and failing that, claws at her massive belly as another contraction wracks $his body. <<ClothingBirth>> $He struggles to collect her child and brings them to her breast. $He waits for $HeadGirl.slaveName to return, hoping $he will arrive before another baby makes its way out of $him. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> - $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks her body. $His body begins to birth another of her brood. + $slaves[$i].slaveName is awoken from her rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. $His body begins to birth another of her brood. <<ClothingBirth>> $He draws her child to her breast and resumes resting before $HeadGirl.slaveName returns from her duties. <<else>> - $slaves[$i].slaveName's body begins to birth another of her brood. $He rolls over and claws at her massive belly as another contraction wracks her body. + $slaves[$i].slaveName's body begins to birth another of her brood. $He rolls over and claws at her massive belly as another contraction wracks $his body. <<ClothingBirth>> - $He struggles to collect her child and places them in the cradle readied for $him. $He waddles off to take a bath as your servants clean up and remove her child. Cleaned up, $he returns to resting knowing full well that $HeadGirl.slaveName will be eager to play with her body upon returning. + $He struggles to collect her child and places them in the cradle readied for $him. $He waddles off to take a bath as your servants clean up and remove $his child. Cleaned up, $he returns to resting knowing full well that $HeadGirl.slaveName will be eager to play with $his body upon returning. <</if>> <</if>> <<case "be confined in the arcade">> - A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on her exposed rear. While her mouth is filled with a customer's dick, her body instinctively births her child into the waiting basket. As they are carried away, her rear is cleaned up and the sign removed. + A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on her exposed rear. While her mouth is filled with a customer's dick, $his body instinctively births her child into the waiting basket. As they are carried away, her rear is cleaned up and the sign removed. <<case "get treatment in the clinic">> - $slaves[$i].slaveName is in the perfect place to give birth when her body begins to push out another of her brood. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers her child before taking them away. Before long $he returns to attend to her patient's perpetual pregnancy. + $slaves[$i].slaveName is in the perfect place to give birth when $his body begins to push out another of her brood. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers her child before taking them away. Before long $he returns to attend to her patient's perpetual pregnancy. <<case "be confined in the cellblock">> <<if $slaves[$i].fetish == "mindbroken">> While waiting in confinement, $slaves[$i].slaveName's body begins to birth another of her brood. $He assumes a birthing position. <<ClothingBirth>> - $He struggles for a minute before realizing her pregnancy takes up most of the cell and that $he can't reach her child. The servant that has to crawl under her bloated body to get her child is less than pleased, especially since this is the third time this week $he has had to do it. + $He struggles for a minute before realizing her pregnancy takes up most of the cell and that $he can't reach $his child. The servant that has to crawl under her bloated body to get her child is less than pleased, especially since this is the third time this week $he has had to do it. <<else>> - $slaves[$i].slaveName is awoken from her stupor by her body beginning to birth another of her brood. $He struggles to get into position but ends up getting stuck thanks to her massive belly and inability to properly move herself. + $slaves[$i].slaveName is awoken from her stupor by $his body beginning to birth another of her brood. $He struggles to get into position but ends up getting stuck thanks to her massive belly and inability to properly move $himself. <<set $humiliation = 1>> <<ClothingBirth>> - $He spills out of the cell when the servant comes once more to collect her child. $He hastily tries to cram her bulk back into her cell before $he gets chastised. + $He spills out of the cell when the servant comes once more to collect $his child. $He hastily tries to cram her bulk back into her cell before $he gets chastised. <</if>> <<default>> @@ -1715,14 +1715,14 @@ <<if $slaves[$i].fetish == "mindbroken">> While stroking her pregnancy absentmindedly, $slaves[$i].slaveName's body begins to birth another of her brood. $He carries on until the contractions drag her onto her swollen belly. <<ClothingBirth>> - $He draws her child to her breast and rests upon her mass until a servant collects her child and helps her back to her bed. + $He draws her child to her breast and rests upon her mass until a servant collects her child and helps her back to $his bed. <<else>> <<if $seed > 50>> - While waiting to be helped to her next assignment, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to do anything, $he is forced to give birth where $he is. + While waiting to be helped to her next assignment, $slaves[$i].slaveName's body begins to birth another of $his brood. Unable to do anything, $he is forced to give birth where $he is. <<ClothingBirth>> - $He gathers her child and recovers her strength while resuming her wait a servant to help her to her assignment. + $He gathers $his child and recovers $his strength while resuming her wait a servant to help her to $his assignment. <<else>> - While eating in the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to move, $he finds herself stranded in the middle of all the dining slaves. + While eating in the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to move, $he finds $himself stranded in the middle of all the dining slaves. <<set $humiliation = 1>> <<ClothingBirth>> $He gathers her child and waits to be rescued from the vicious mockery, fully aware of all the jestering and laughter. @@ -1730,9 +1730,9 @@ <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> - While stroking her pregnancy absentmindedly, $slaves[$i].slaveName's body begins to birth another of her brood. $He carries on until the contractions drag her onto her swollen belly. + While stroking $his pregnancy absentmindedly, $slaves[$i].slaveName's body begins to birth another of $his brood. $He carries on until the contractions drag $him onto $his swollen belly. <<ClothingBirth>> - $He draws her child to her breast and rests upon her mass until a servant collects her child and helps her back to her bed. + $He draws $his child to her breast and rests upon her mass until a servant collects her child and helps her back to her bed. <<elseif $slaves[$i].fetish == "humiliation">> While waddling through the penthouse between assignments, $slaves[$i].slaveName's body begins to birth another of her brood. Sensing an opportunity, $he waddles to the nearest balcony overlooking the city. $He calls out, making sure all eyes are on her for what happens next. <<set $humiliation = 1>> @@ -1744,10 +1744,10 @@ <<ClothingBirth>> $He gathers her child and recovers her strength before finding a servant to give her child to before shuffling to her assignment. <<else>> - While waddling through the penthouse on her way to the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to reach the prepared birthing room in time, $he finds herself stranded in the middle of all the dining slaves. + While waddling through the penthouse on her way to the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to reach the prepared birthing room in time, $he finds $himself stranded in the middle of all the dining slaves. <<set $humiliation = 1>> <<ClothingBirth>> - $He gathers her child and recovers her strength before trying to escape out of sight of the jeering crowd. Finding a servant to give her child to, $he hastily heads back to her bed to hide herself from the mockery, though her enormous belly keeps her blanket from covering $him. + $He gathers her child and recovers her strength before trying to escape out of sight of the jeering crowd. Finding a servant to give her child to, $he hastily heads back to her bed to hide $himself from the mockery, though her enormous belly keeps her blanket from covering $him. <</if>> <</if>> <</if>> @@ -1766,10 +1766,10 @@ <<ClothingBirth>> $He gathers her child and recovers her strength while resuming her wait a servant to help her to her assignment. <<else>> - While eating in the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to move, $he finds herself stranded in the middle of all the dining slaves. + While eating in the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to move, $he finds $himself stranded in the middle of all the dining slaves. <<set $humiliation = 1>> <<ClothingBirth>> - $He gathers her child and waits to be rescued from the vicious mockery, fully aware of all the jestering and laughter. + $He gathers $his child and waits to be rescued from the vicious mockery, fully aware of all the jestering and laughter. <</if>> <</if>> <<else>> @@ -1788,10 +1788,10 @@ <<ClothingBirth>> $He gathers her child and recovers her strength before finding a servant to give her child to before shuffling to her assignment. <<else>> - While waddling through the penthouse on her way to the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to reach the prepared birthing room in time, $he finds herself stranded in the middle of all the dining slaves. + While waddling through the penthouse on her way to the cafeteria, $slaves[$i].slaveName's body begins to birth another of her brood. Unable to reach the prepared birthing room in time, $he finds $himself stranded in the middle of all the dining slaves. <<set $humiliation = 1>> <<ClothingBirth>> - $He gathers her child and recovers her strength before trying to escape out of sight of the jeering crowd. Finding a servant to give her child to, $he hastily heads back to her bed to hide herself from the mockery, though her enormous belly keeps her blanket from covering $him. + $He gathers $his child and recovers $his strength before trying to escape out of sight of the jeering crowd. Finding a servant to give $his child to, $he hastily heads back to $his bed to hide $himself from the mockery, though $his enormous belly keeps $his blanket from covering $him. <</if>> <</if>> <</if>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index a50e9c51f573b8619d49567a250f03539a80e66e..adf18f9f9a587a27709fd8aa6cb2d6416c30bb0f 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -61,11 +61,11 @@ <<case "first period">> -<<EventNameLink $activeSlave>> appears in the door of your office, uncertain if she should disturb you. She stumbles through the doorway, hands on her <<if $activeSlave.weight >= 95>>fat belly<<elseif $activeSlave.weight >= 30>>chubby belly<<else>>flat belly<</if>>, before stepping forward to stand in front of your desk. Her chest is rising and falling with panicked hyperventilation. The poor girl is terrified for some reason. +<<EventNameLink $activeSlave>> appears in the door of your office, uncertain if she should disturb you. She stumbles through the doorway, hands on $his <<if $activeSlave.weight >= 95>>fat belly<<elseif $activeSlave.weight >= 30>>chubby belly<<else>>flat belly<</if>>, before stepping forward to stand in front of your desk. Her chest is rising and falling with panicked hyperventilation. The poor girl is terrified for some reason. <br><br> -You press her on why she is acting this way. +You press $him on why she is acting this way. <<if !canTalk($activeSlave)>> - She uses gestures to point to her stomach, and explains that she is feeling an unusual pain. + She uses gestures to point to $his stomach, and explains that she is feeling an unusual pain. <<else>> "My belly, <<Master>>," she <<say>>s apologetically. "It hurt<<s>> and I don't know why. It ju<<s>>t <<s>>tarted re<<c>>ently." <</if>> @@ -81,7 +81,7 @@ You check her records and discover she has very likely just become a woman. <<else>> "I'm <<s>>orry, <<Master>>," she <<say>>s apologetically. "I keep wetting my bed at night, and it feel<<s>> <<s>>o good too." <</if>> -You check her records for any potential health issues that could be causing this annoyance when it dawns on you. $activeSlave.slaveName is likely becoming potent, and now is the perfect time to cement her sexuality. +You check $his records for any potential health issues that could be causing this annoyance when it dawns on you. $activeSlave.slaveName is likely becoming potent, and now is the perfect time to cement $his sexuality. <<set $activeSlave.pubertyXY = 1>> <<case "surprising wakeup">> @@ -4146,73 +4146,72 @@ May I plea<<s>>e try out <<s>>omething <<s>>kimpier today?" <<case "hyperpreg stuck">> -You are alerted to an issue regarding your - <<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>> - hyperbroodmother, - <<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>> - broodmother, - <<else>> - debilitatingly pregnant slave, - <</if>> -<<EventNameLink $activeSlave>>. It seems, - <<if $pregAccessibility == 1>> - despite updating your penthouse to accommodate bellies wider than a standard doorway, - <<else>> - since you have not yet updated your penthouse to accommodate bellies wider than standard doorways, - <</if>> -the poor slave has gotten lodged in the doorway exiting - <<if ($activeSlave.livingRules == "luxurious")>> - her room. - <<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>> - her suite. - <<else>> - the dormitory where she sleeps. - <</if>> +You are alerted to an issue regarding your +<<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>> + hyperbroodmother, +<<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>> + broodmother, +<<else>> + debilitatingly pregnant slave, +<</if>> +<<EventNameLink $activeSlave>>. It seems +<<if $pregAccessibility == 1 || $ballsAccessibility == 1 || $buttAccessibility == 1 || $boobAccessibility == 1>> + that, despite updating your penthouse to accommodate extra wide slaves, +<<else>> + since you have not yet updated your penthouse to accommodate slaves of her girth, +<</if>> +the poor girl has gotten lodged in the doorway exiting +<<if ($activeSlave.livingRules == "luxurious")>> + her room. +<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>> + her suite. +<<else>> + the dormitory where she sleeps. +<</if>> The menials assigned to care for her have been struggling for several weeks to fit her through this particular doorway, but refrained from informing you, as their ward - <<if $activeSlave.devotion > 95>> - did not wish to worry you. - <<elseif $activeSlave.devotion > 50>> - was concerned you would worry. - <<elseif $activeSlave.devotion > 20>> - was concerned how you would react. - <<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>> - feared how you would react. - <<elseif ($activeSlave.trust < -50)>> - was terrified of how you might respond. - <<else>> argued you couldn't be trusted. - <</if>> +<<if $activeSlave.devotion > 95>> + did not wish to worry you. +<<elseif $activeSlave.devotion > 50>> + was concerned you would worry. +<<elseif $activeSlave.devotion > 20>> + was concerned how you would react. +<<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>> + feared how you would react. +<<elseif ($activeSlave.trust < -50)>> + was terrified of how you might respond. +<<else>> + argued you couldn't be trusted. +<</if>> You make a mental note to punish her caretakers and then set out to see her predicament for yourself. <br><br> The sight that greets you when you arrive is equal parts incredible and amusing. En route to the baths, the slave attempted to exit - <<if ($activeSlave.livingRules == "luxurious")>> - her room - <<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>> - her suite - <<else>> - the dorm - <</if>> +<<if ($activeSlave.livingRules == "luxurious")>> + her room +<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>> + her suite +<<else>> + the dorm +<</if>> backwards and, as a result, you have a glorious view of her - <<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>> - mind boggling, room filling belly - <<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>> - massive, brood swollen belly - <<else>> - inhumanly pregnant belly - <</if>> +<<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>> + mind boggling, obscenely swollen belly +<<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>> + massive, brood swollen belly +<<else>> + inhumanly gravid belly +<</if>> squeezed painfully by the inadequate doorway and framing the attractive rear view of the rest of her body, including her - <<if $activeSlave.butt > 5>> - debilitatlingly huge ass cheeks. - <<elseif $activeSlave.butt > 2>> - plush ass. - <<else>> - cute little ass. - <</if>> +<<if $activeSlave.butt > 5>> + debilitatlingly huge ass cheeks. +<<elseif $activeSlave.butt > 2>> + plush ass. +<<else>> + cute little ass. +<</if>> <br><br> She cranes her neck, glancing over her shoulder to give you a pleading look. - - <<default>> <br>ERROR: bad RESS event $RESSevent <</switch>> @@ -4272,7 +4271,7 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <</replace>> <</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>> <</if>> -<br><<link "Tell her she'll just be taking it up the ass more">> +<br><<link "Tell her $he'll just be taking it up the ass more">> <<EventNameDelink $activeSlave>> <<replace "#result">> In one swift motion, you pull out a chastity belt and lock it onto her. She gasps as she feels it hug close to her pussy. You explain that she has just become a woman, and thus, will be taking it up the ass until you decide it's time for her to become pregnant. @@ -4283,7 +4282,7 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <</if>> You bring her over to the couch, set her on your lap, and teasingly call her a buttslut. Every so often you graze a finger around her chastity belt, noting how much her body wants you in her, but you only make it the center of attention once the poor over-aroused slave <<if !canTalk($activeSlave)>> - begins to use piteous gestures to beg you abjectly to penetrate her. + begins to use piteous gestures to beg you abjectly to penetrate $him. <<else>> <<say>>s, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me pregnant!" <</if>> @@ -4295,12 +4294,12 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<case "wet dreams">> -<<link "Explain she's just growing up">> +<<link "Explain $he's just growing up">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her that her body is preparing to be able to impregnate girls, and that what happens at night happens to all boys. Though as a slave, she should consider herself lucky to be allowed to keep her male genitalia. + You tell $him that $his body is preparing to be able to impregnate girls, and that what happens at night happens to all boys. Though as a slave, $he should consider $himself lucky to be allowed to keep $his male genitalia. <<if !canTalk($activeSlave)>> - She brings her hands to her growing erection, a bubble of precum forming on its tip. She fondles herself as she ponders her new potency. + $He brings $his hands to her growing erection, a bubble of precum forming on its tip. $He fondles herself as she ponders her new potency. <<else>> "I-I can get girl<<s>> pregnant now? <<Master>>, that m-mean<<s>> I'll have to be more careful." She trails off. <</if>> @@ -4314,11 +4313,11 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<replace "#result">> You tell her that she is just becoming a potent woman, and as such, she will need to learn that you are the dominant force in her life. <<if !canTalk($activeSlave)>> - Her expression shifts to confusion. + $His expression shifts to confusion. <<else>> "What<<s>> that mean <<Master>>?" <</if>> - You quickly approach and catch her, forcing her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. She <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up her fully erect + You quickly approach and catch her, forcing her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. She <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up $his fully erect <<if $activeSlave.dick == 1>> tiny dick. <<elseif $activeSlave.dick == 2>> @@ -4331,8 +4330,18 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. impressive dick. <<elseif $activeSlave.dick == 6>> huge dick. + <<elseif $activeSlave.dick == 7>> + gigantic dick + <<elseif $activeSlave.dick == 8>> + titanic dick + <<elseif $activeSlave.dick == 9>> + absurd dick + <<elseif $activeSlave.dick == 10>> + inhuman dick + <<else>> + hypertrophied dick <</if>> - You push her back down as you straddle her + You push $him back down as you straddle $his <<if $activeSlave.belly >= 1500>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly <<elseif $activeSlave.boobs > 2000>> @@ -4340,7 +4349,7 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<else>> chest <</if>> - planting your moistening pussy over the girls face. You lean forward, teasing her twitching cock, as you grind against her face. As she begins to moan with lust, you quickly bind the base of her penis, denying her release. You grind your cunt into her face, telling her that YOU are the one who'll be orgasming here, not her. Only once you have taught her her place by soaking her face in your cum do you release her dick and lean back to avoid the coming blast. Just undoing the binding is enough to set her over the edge, coating her <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in her virile sperm. You turn around and order the exhausted girl to clean herself up and go back to her assignment; she @@.hotpink;complies meekly@@, understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time she walks past your office, you can't help notice the growing erection she carries. @@.coral; Your dominating display has left her craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> + planting your moistening pussy over the $girl's face. You lean forward, teasing $his twitching cock, as you grind against her face. As she begins to moan with lust, you quickly bind the base of her penis, denying her release. You grind your cunt into her face, telling her that YOU are the one who'll be orgasming here, not her. Only once you have taught her her place by soaking her face in your cum do you release her dick and lean back to avoid the coming blast. Just undoing the binding is enough to set her over the edge, coating her <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in her virile sperm. You turn around and order the exhausted $girl to clean $himself up and go back to her assignment; she @@.hotpink;complies meekly@@, understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time she walks past your office, you can't help notice the growing erection she carries. @@.coral; Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5>> <</replace>> <<else>> @@ -4365,8 +4374,18 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. impressive dick. <<elseif $activeSlave.dick == 6>> huge dick. + <<elseif $activeSlave.dick == 7>> + gigantic dick + <<elseif $activeSlave.dick == 8>> + titanic dick + <<elseif $activeSlave.dick == 9>> + absurd dick + <<elseif $activeSlave.dick == 10>> + inhuman dick + <<else>> + hypertrophied dick <</if>> - You push her face into the cushions as you mount her + You push $his face into the cushions as you mount her <<if $activeSlave.butt > 6>> ridiculous <<elseif $activeSlave.butt > 5>> @@ -4412,8 +4431,18 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. impressive dick. <<elseif $activeSlave.dick == 6>> huge dick. + <<elseif $activeSlave.dick == 7>> + gigantic dick + <<elseif $activeSlave.dick == 8>> + titanic dick + <<elseif $activeSlave.dick == 9>> + absurd dick + <<elseif $activeSlave.dick == 10>> + inhuman dick + <<else>> + hypertrophied dick <</if>> - You push her back down as you straddle her cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until she delightfully penetrates you<<else>>yourself onto her needy prick<</if>>. You slowly ride her dick, instructing her the proper way to thrust into you and how to adequately support your weight. Once she gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning her into you. She gingerly inserts her cock<<if $activeSlave.belly >= 100000>> while you do your best to manage her _belly stomach<</if>> and begins thrusting, slowly at first, before getting the hang of things and speeding up<<if $PC.dick == 1>>, your own neglected dick bobbing along to her thrusts<</if>>. As soon as you feel her beginning to tense you <<if $PC.pregKnown == 1>>tell her it's safe to cum in you, you're already pregnant<<else>>order her to pull out<</if>>. The poor girl is so caught up in her lust, she can't stop thrusting. Before you can rectify this, she pushes you over the edge and gushes deep into you as you climax<<if $PC.dick == 1>> and spray your own cum <<if $PC.belly >= 5000 && $activeSlave.belly >= 5000>>into the cramped space between your swollen bodies<<elseif $activeSlave.belly >= 100000>>across your belly and the underside of hers<<else>>across her chest<</if>><</if>>. She gingerly pulls herself from you, apologizes @@.hotpink;meekly@@ for losing control, and snuggles up next to you. Cumming in her <<= WrittenMaster()>>'s pussy as her first time builds @@.mediumaquamarine;a special bond@@ with you. + You push her back down as you straddle her cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until she delightfully penetrates you<<else>>yourself onto her needy prick<</if>>. You slowly ride her dick, instructing her the proper way to thrust into you and how to adequately support your weight. Once she gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning her into you. She gingerly inserts her cock<<if $activeSlave.belly >= 100000>> while you do your best to manage her _belly stomach<</if>> and begins thrusting, slowly at first, before getting the hang of things and speeding up<<if $PC.dick == 1>>, your own neglected dick bobbing along to her thrusts<</if>>. As soon as you feel her beginning to tense you <<if $PC.pregKnown == 1>>tell her it's safe to cum in you, you're already pregnant<<else>>order her to pull out<</if>>. The poor girl is so caught up in her lust, she can't stop thrusting. Before you can rectify this, she pushes you over the edge and gushes deep into you as you climax<<if $PC.dick == 1>> and spray your own cum <<if $PC.belly >= 5000 && $activeSlave.belly >= 5000>>into the cramped space between your swollen bodies<<elseif $activeSlave.belly >= 100000>>across your belly and the underside of hers<<else>>across her chest<</if>><</if>>. She gingerly pulls herself from you, apologizes @@.hotpink;meekly@@ for losing control, and snuggles up next to you. Cumming in $his <<= WrittenMaster()>>'s pussy as $his first time builds @@.mediumaquamarine;a special bond@@ with you. <<if $PC.preg == 0 && $PC.pregWeek == 0>> You aren't on contraceptives right now; her first time may be more fruitful than she realizes. <</if>> @@ -4422,12 +4451,12 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<= knockMeUp($PC, 60, 0, $activeSlave.ID)>> <</if>> <</replace>> -<</link>>//This option will use your cunt// +<</link>>//This option will penetrate you// <</if>> -<br><<link "Tell her it doesn't matter, she won't be using it">> +<br><<link "Tell $him it doesn't matter, $he won't be using it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - In one swift motion, one pull out a chastity cage and lock it onto her. She gasps as she feels it hug close to her struggling erection. You explain that she has just become potent, and thus, will be restricted until you feel differently. + In one swift motion, one pull out a chastity cage and lock it onto $him. She gasps as she feels it hug close to her struggling erection. You explain that she has just become potent, and thus, will be restricted until you feel differently. <<if !canTalk($activeSlave)>> She rubs a hand across her caged dick. <<else>> @@ -4459,8 +4488,8 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<link "Permit her to continue">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You can't complain, it feels really good. You don't know where this skill was lurking in her broken mind, but you're glad to see it put to good use. <<if $PC.dick == 1>>Just as you are about to cum, she takes the full length of your dick down her throat, diligently taking in every drop of cum<<else>>Even as you buck with pleasure, she diligently keeps her tongue to your clit and pussy, making sure you don't go a moment without pleasure<</if>>. You don't have an orgasm like that every day, and as she looks at you lovingly, you prod her with your still hard <<if $PC.dick == 1>>cock<<else>>clit<</if>> for round two. - She is @@.green;no longer mindbroken@@ and for whatever twisted reasons deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you. + You can't complain, it feels really good. You don't know where this skill was lurking in $his broken mind, but you're glad to see it put to good use. <<if $PC.dick == 1>>Just as you are about to cum, she takes the full length of your dick down her throat, diligently taking in every drop of cum<<else>>Even as you buck with pleasure, she diligently keeps her tongue to your clit and pussy, making sure you don't go a moment without pleasure<</if>>. You don't have an orgasm like that every day, and as she looks at you lovingly, you prod her with your still hard <<if $PC.dick == 1>>cock<<else>>clit<</if>> for round two. + $He is @@.green;no longer mindbroken@@ and for whatever twisted reasons deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you. <<set $activeSlave.devotion = 90, $activeSlave.oldDevotion = 90, $activeSlave.trust = 90, $activeSlave.oldTrust = 90, $activeSlave.sexualQuirk = "caring", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>> <<set _ress = $genePool.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> <<set $activeSlave.intelligence = $genePool[_ress].intelligence>> @@ -6909,7 +6938,7 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <</if>> <<else>> You cry out as she forces her huge dick into your too-tight rear, nearly breaking you. She considers pulling back out, but you pat the bulge in your lower belly and urge her to continue. She tries her best to allow you to get comfortable, not that it will help much. - <<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from her cock teasing your prostate.<</if>> + <<if $PC.dick == 1>>Your erection firmly <<if $PC.belly >= 10000>>pushes into the underside of your belly<<else>>sticks out from under you<</if>>, overstimulated from $his cock teasing your prostate.<</if>> <</if>> <<elseif $activeSlave.dick == 7>> gigantic dick @@ -6917,8 +6946,12 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. titanic dick <<elseif $activeSlave.dick == 9>> absurd dick + <<elseif $activeSlave.dick == 10>> + inhuman dick + <<else>> + hypertrophied dick <</if>> - She gently fucks you<<if $activeSlave.balls > 8>>, her oversized balls slapping your thighs with every thrust<</if>>, making sure you're enjoying her penis as much as physically possible. You climax as she cums inside eliciting a gasp from the horny girl<<if $PC.dick == 1>>, as you spurt across the floor<</if>>. She apologizes profusely for cumming in you, but after she helps clean you up and back to your desk, all is forgiven. As you work, you can't help but steal glances at her renewed erection. She winks + $He gently fucks you<<if $activeSlave.balls > 8>>, her oversized balls slapping your thighs with every thrust<</if>>, making sure you're enjoying her penis as much as physically possible. You climax as she cums inside eliciting a gasp from the horny girl<<if $PC.dick == 1>>, as you spurt across the floor<</if>>. She apologizes profusely for cumming in you, but after she helps clean you up and back to your desk, all is forgiven. As you work, you can't help but steal glances at her renewed erection. $He winks <<if !canTalk($activeSlave)>> and @@.mediumaquamarine;earnestly asks@@ for more when you get the chance. <<else>> @@ -6934,7 +6967,7 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<case "resistant shower">> -<<link "Enter the shower and quietly comfort her">> +<<link "Enter the shower and quietly comfort $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> She starts with surprise <<if canSee($activeSlave)>>as you enter the shower<<elseif canHear($activeSlave)>>as she hears you enter the shower<<else>>as she feels the water being disturbed by your body<</if>>, and then <<if canSee($activeSlave)>>looks at<<else>>turns to<</if>> you in shock as you sit down beside her, ignoring the water soaking your clothes. She does not resist when you draw her gently into your lap. She's stiff and uncomfortable as you hold her gently, but she eventually relaxes and allows her head to rest <<if ($PC.boobs > 0)>>between your breasts<<else>>against your shoulder<</if>>. She's utterly conflicted; the hateful person who she is expected to fuck is tenderly comforting her. She finally seems to accept the animal comfort, whatever its source, and begins to @@.mediumaquamarine;trust@@ you to do more than just use her. @@ -6946,7 +6979,7 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<replace "#result">> You enter the bathroom and quietly wait until she's done. When the water shuts off, she stands up absently and spins so the shower's air dry function can blow the water off her. (You can't help but notice <<if ($activeSlave.weight > 30)>> - a lot of motion across her + a lot of motion across $his <<if $activeSlave.weight > 190>> expansive <<elseif $activeSlave.weight > 130>> @@ -6956,7 +6989,7 @@ She cranes her neck, glancing over her shoulder to give you a pleading look. <<else>> chubby <</if>> - body when the air jets play across her.) + body when the air jets play across $him.) <<elseif ($activeSlave.belly >= 5000)>> how firm her _belly belly is.) <<elseif ($activeSlave.dick > 1)>> @@ -13368,7 +13401,7 @@ You tell her kindly that you understand, and that she'll be trained to address t <<if $PC.preg >= 5000>> your condition. <<else>> - her condition. + $his condition. <</if>> She snuggles back into you as you have gentle sex while looking after her drum-taut skin. <<if !canTalk($activeSlave)>> @@ -13394,10 +13427,10 @@ You tell her kindly that you understand, and that she'll be trained to address t <</if>> <<if canDoAnal($activeSlave)>> <<if $activeSlave.mpreg == 1>> -<br><<link "Her backdoor can't get more pregnant">> +<br><<link "$His backdoor can't get more pregnant">> <<EventNameDelink $activeSlave>> <<replace "#result">> - She's absorbed enough with her application that she starts with surprise when you seize her hips and bend her over the sink for a quick assfuck. + $He's absorbed enough with her application that she starts with surprise when you seize her hips and bend her over the sink for a quick assfuck. <<= AnalVCheck()>> <<if ($activeSlave.amp != 1)>> She does her best to brace herself against the sink, but her hands are slick from the lotion and she slides around for a while before she gives up and accepts that she's in for an uncomfortable time. @@ -18339,8 +18372,8 @@ You tell her kindly that you understand, and that she'll be trained to address t <<else>> getting it situated between her thighs, since that's the best option she has available. <</if>> - <<if $activeSlave.belly >= 5000>>Before starting to pleasure you, she notices there is no way she can move with her rounded middle sticking out as far as it does. She carefully turns around, feeling your glare on her back at her mistake.<</if>> - Still crouched over you, she begins to move up and down, milking <<if $PC.dick == 1>>your penis<<else>>the strap-on<</if>>. As she works into it, she lets her butt touch you, just once, but you make a nonverbal sound of disapproval, letting her know not to disturb your work like that. Realizing that she needs to play the human sex toy, she + <<if $activeSlave.belly >= 5000>>Before starting to pleasure you, $he notices there is no way she can move with her rounded middle sticking out as far as it does. She carefully turns around, feeling your glare on her back at her mistake.<</if>> + Still crouched over you, $he begins to move up and down, milking <<if $PC.dick == 1>>your penis<<else>>the strap-on<</if>>. As $he works into it, she lets her butt touch you, just once, but you make a nonverbal sound of disapproval, letting her know not to disturb your work like that. Realizing that she needs to play the human sex toy, she <<if $activeSlave.butt > 12>> grabs her massive buttocks and finds that there is no way she can keep the expanses of flesh from enveloping your lap. <<elseif $activeSlave.butt > 5>> @@ -19545,7 +19578,7 @@ You tell her kindly that you understand, and that she'll be trained to address t <<elseif canDoVaginal($activeSlave)>> her pussy tightening. <<else>> - her poor anal ring tightening. + $his poor anal ring tightening. <</if>> The crowd that surrounds you during this noisy spectacle @@.green;is suitably impressed.@@ <<set $rep += 250>> @@ -19587,11 +19620,11 @@ You tell her kindly that you understand, and that she'll be trained to address t <br><<link "Remove the gag for a few minutes">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You wordlessly remove the $activeSlave.collar and watch as $activeSlave.slaveName opens and closes her mouth testingly, as if she has forgotten what it feels like to do so without obstruction. Though you eventually return to the gag to its rightful place in her mouth, she @@.mediumaquamarine;trusts you more@@ for granting her a few moments respite from the gag. + You wordlessly remove the $activeSlave.collar and watch as $activeSlave.slaveName opens and closes $his mouth testingly, as if she has forgotten what it feels like to do so without obstruction. Though you eventually return to the gag to its rightful place in her mouth, she @@.mediumaquamarine;trusts you more@@ for granting her a few moments respite from the gag. <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Torment her with the gag">> +<br><<link "Torment $him with the gag">> <<EventNameDelink $activeSlave>> <<replace "#result">> Though having a $activeSlave.collar constrict her mouth is torment enough, you take the time to linger and add to her torturous existence. $activeSlave.slaveName soon discovers that the straps of a gag can always be made tighter, the @@ -19959,49 +19992,63 @@ You tell her kindly that you understand, and that she'll be trained to address t <<link "Abuse her">> <<EventNameDelink $activeSlave>> <<replace "#result">> -You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that her <<Master>> is intent to do nothing, she blushes and begins pulling on her belly, attempting to free herself. + You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that her <<WrittenMaster>> is intending to do nothing, she blushes and begins pulling on her belly, attempting to free herself. <<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>> - Her innumerable brood are awakened by her exertions and begin to move, testing the thin walls of the womb constraining them and causing her belly to wobble ominously. You count the number of infant feet distinctly outlined against your poor hyperbroodmother's straining womb. + Her innumerable brood are awakened by her exertions and begin to move, testing the thin walls of the womb constraining them and causing her belly to throb ominously. You count the number of infants distinctly outlined against your poor hyperbroodmother's straining body. <<elseif ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 30)>> - With a groan of effort, the broodmother manages to pull her belly slightly further out through the doorway, but, in the effort, only really manages to wedge it more firmly. It bulges ominously. + With a groan of effort, the broodmother manages to pull her belly slightly further out through the doorway, but, in the effort, only really manages to wedge it more firmly. It bulges ominously fromthe added pressure. <<else>> The massively pregnant slave's belly clutches in a false contraction and she pulls several inches further out through the doorframe before it expands again, leaving her even more hopelessly stuck <</if>> -<br><br> + <br><br> <<if !canTalk($activeSlave)>> She moans and rubs up and down what little she can reach of her belly while looking back at you with more urgency. It's clear she is in severe distress. <<else>> - "<<Master>>," she says through clenched teeth. "Please." + "<<Master>>," she says through clenched teeth. "Plea<<s>>e." <</if>> -<br><br> -You judge that sufficient time has passed and move forward. - <<if $activeSlave.butt > 5>> + <br><br> + You judge that you've seen enough and move forward. + <<if $activeSlave.butt > 10>> Wading in between her huge ass cheeks - <<elseif $activeSlave.butt > 2>> + <<elseif $activeSlave.butt > 4>> Grabbing a handful of one generous ass cheek, <<else>> Slapping a pert ass cheek, - <</if>> -you hilt yourself in her pregnant pussy and begin pounding. Her belly distorts back and forth under your vigorous ministrations before, with a "pop," belly, slave, and owner go tumbling through the doorway. She yelps in @@.gold;shock@@ and @@.red;pain@@ as her belly smacks the ground and the sound of her voice, coupled with the feeling of jolting up and down on top of your slave's abused gut, sends you over the edge. You ejaculate into her fertile, wanting pussy and then slide off of her to instruct your servants to widen the door before they carry her to her duties for the day. -<br> -<<set $activeSlave.health -= 20, $activeSlave.trust -= 20>> - <</replace>> - <</link>> -<br> - -<<link "Fuck her">> + <</if>> + <<if canDoVaginal($activeSlave)>> + you hilt yourself in her pregnant pussy and begin pounding. + <<= VaginalVCheck()>> + <<elseif canDoAnal($activeSlave)>> + you hilt yourself in her butthole and begin pounding. + <<= AnalVCheck()>> + <<else>> + you push them together around your cock and begin pounding. + <</if>> + Her stomach distorts back and forth under your vigorous ministrations before, with a "pop," belly, slave, and owner come tumbling through the threshold. She yelps in @@.gold;shock@@ and @@.red;pain@@ as her belly impacts the ground as the sound of her voice, coupled with the feeling of jolting up and down on top of your slave's abused gut, sends you over the edge. You ejaculate + <<if canDoVaginal($activeSlave)>> + into her fertile, wanting hole + <<elseif canDoAnal($activeSlave)>> + into her needy hole + <<else>> + across her back + <</if>> + and then slide off of her to instruct your servants to fix the doorframe before they carry her to her duties for the day. + <<set $activeSlave.health -= 20, $activeSlave.trust -= 20>> + <</replace>> +<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> +<br><<link "Fuck her">> <<EventNameDelink $activeSlave>> <<replace "#result">> -You can't help but be aroused by the sight of your swollen, helpless slave, and you take off your pants, revealing your erection. The slave's backward glance falls on your dick and she + You can't help but be aroused by the sight of your swollen, helpless slave, and you take off your pants, revealing your erection. The slave's <<if canSee($activeSlave)>>backward glance falls on your dick<<else>>ears perk up<</if>> and she <<if $activeSlave.devotion > 95>> licks her lips, - <<if $activeSlave.amp == 1>> - wiggling the stumps of her legs and swiveling her hips to give you a clear angle at her hungry pussy. - <<else>> - spreading her legs and revealing more of her massive underbelly while angling her wanting pussy at the perfect angle for fucking. - <</if>> + <<if $activeSlave.amp == 1>> + wiggling the stumps of her legs and swiveling her hips to give you a clear angle at her hungry <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. + <<else>> + spreading her legs and revealing more of her massive underbelly while angling her wanting <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>> at the perfect angle for fucking. + <</if>> <<elseif $activeSlave.devotion > 50>> - blushes, swiveling her hips to give you easy access to her pussy. + blushes, swiveling her hips to give you easy access to her <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. <<elseif $activeSlave.devotion > 20>> blushes and leans into her belly, knowing what to expect. <<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>> @@ -20009,17 +20056,17 @@ You can't help but be aroused by the sight of your swollen, helpless slave, and <<elseif ($activeSlave.trust < -50)>> yelps, turning away from you and clenching her eyes shut as her <<if $activeSlave.amp == 1>> - stumps push toward each other, clearly trying (and failing) to conceal her pussy. + stumps push toward each other, clearly trying (and failing) to conceal her <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. <<else>> - legs instinctively clench together to hide her pussy. + legs instinctively clench together to hide her <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. <</if>> <<else>> - snorts dersively despite her helplessness. + snorts dersively despite her vulnerability. <</if>> -<br><br> -You step forward and run an appreciative hand over the surface of her belly. Her womb is packed so full that the outline of her squirming children is obvious under her stretched-thin flesh. She groans at your touch, clearly in some distress, and you promise her that you'll free her once you've finished up. + <br><br> + You step forward and run an appreciative hand over the surface of her belly. Her womb is packed so full that the outline of her squirming children is obvious under her stretched-thin flesh. She groans at your touch, clearly in some distress, and you promise her that you'll free her once you've finished up. <<if $activeSlave.devotion > 95>> - The slave is clearly too aroused by your touch to <<if canHear($activeSlave)>>hear what you're saying<<else>>interpret your body language<</if>> and leans back into you, stretching against her tortured belly to nibble at your ear. + The slave is clearly too aroused by your fondling to <<if canHear($activeSlave)>>hear what you're saying<<else>>interpret your body language<</if>> and leans back into you, stretching against $his tortured belly to nibble at your ear. <<elseif $activeSlave.devotion > 50>> The slave says nothing, but wiggles her ass against your hips, making it clear she's ready. <<elseif $activeSlave.devotion > 20>> @@ -20030,34 +20077,41 @@ You step forward and run an appreciative hand over the surface of her belly. Her The shock of contact with your body causes the terrified slave's skin to contract, as if she's trying to pull away despite her current reality, and her only response to your promise is sobbing. <<else>> The slave - <<if !canTalk($activeSlave)>> - motions for you to - <<else>> - responds by telling you to - <</if>> + <<if !canTalk($activeSlave)>> + motions for you to + <<else>> + responds by telling you to + <</if>> just fuck her already and let her move on with her day. <</if>> -You let your hand wander downward and then push down on the base of her clit with finger and thumb, making her whimper, before removing your hand and burying your cock inside her. As you fuck her, her poor, tortured belly wobbles against the constraining door frame and the frame itself groans in protest. -She grinds in rhythm to your pistoning until the back and forth movement of her sloshing tummy overpowers her efforts and sends her careening back and forth between its oceanic movements and your less than tender ministrations. The sensation of fucking a woman who is literally a slave to the motion of her own womb drives you over the edge and you pull out, ejaculating all over her - <<if $activeSlave.butt > 5>> + You let your hand wander downward + <<if canDoVaginal($activeSlave)>> + and then push down on the base of her clit with finger and thumb, making her whimper, before removing your hand and burying your cock inside her. + <<= VaginalVCheck()>> + <<elseif canDoAnal($activeSlave)>> + and circle her anus with a finger, making her whimper, before removing your hand and burying your cock inside her. + <<= AnalVCheck()>> + <<else>> + and trace the edge of her chastity with a finger, making her whimper, before removing your hand and sqeezing her rear around your cock. + <</if>> + As you fuck her, her poor, tortured belly wobbles against the constraining door frame and the frame itself groans in protest. She grinds in rhythm to your pistoning until the back and forth movement of her sloshing tummy overpowers her efforts and sends her careening back and forth between its oceanic movements and your less than tender ministrations. The sensation of fucking a woman who is literally a slave to the motion of her own womb drives you over the edge and you pull out, ejaculating all over her + <<if $activeSlave.butt > 10>> enveloping ass cleavage. - <<elseif $activeSlave.butt > 2>> + <<elseif $activeSlave.butt > 4>> fat, waiting ass cheeks. <<else>> pert ass. <</if>> -<br><br> -You step back, taking one last appreciatively look at your trapped slave, then call a team of menials to remove the door from its foundation to free her, instructing them to also continually widen the door as necessary to attempt to prevent future incidents. Though your slave is extracated uninjured, your decision to use her before saving her leaves the slave @@.gold;trusting you less@@. -<br> -<<set $activeSlave.health -= 10, $activeSlave.trust -= 10>> - <</replace>> - - <</link>> -<br> -<<link "Try the "Butter Strategy"">> + <br><br> + You step back, taking one last appreciatively look at your trapped slave, then call a team of menials to remove the door from its foundation to free her. Though your slave is extracated uninjured, your decision to use her before saving her leaves the girl @@.gold;trusting you less@@. You could pay to have the door widened, but then you wouldn't get this opportunity again, would you? + <br> + <<set $activeSlave.health -= 10, $activeSlave.trust -= 10>> + <</replace>> +<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> +<br><<link "Try the 'Butter Strategy'">> <<EventNameDelink $activeSlave>> <<replace "#result">> -You ponder her predicament for a moment before settling on a solution. You procure an industrial sized jar of curative laced moisturizing butter--specially formulated to ease the strain of hypermassive pregnancy--and explain to your slave that, to free her, you're going to need to completely cover her in it so that she can squeeze through. + You ponder her predicament for a moment before settling on a solution. You procure an industrial sized jar of curative laced moisturizing butter--specially formulated to ease the strain of hypermassive pregnancy--and explain to your slave that, to free her, you're going to need to completely cover her in it so that she can squeeze through. <<if $activeSlave.devotion > 95>> She grins at you and then huffs, pretending to be put off by the idea. <<elseif $activeSlave.devotion > 50>> @@ -20071,41 +20125,46 @@ You ponder her predicament for a moment before settling on a solution. You procu <<else>> She laughs derisively at you after you describe your idea, then motions for you to get on with it. <</if>> -You move toward her and slather a generous helping of the stuff over her back and - <<if $activeSlave.butt > 5>> + You move toward her and slather a generous helping of the stuff over her back and + <<if $activeSlave.butt > 10>> couch smothering ass, - <<elseif $activeSlave.butt > 2>> + <<elseif $activeSlave.butt > 4>> fat ass cheeks, <<else>> petite ass, <</if>> -for the sake of "being thorough." You then move forward, covering the parts of her belly you can reach from behind and taking special care to + for the sake of "being thorough." You then move forward, covering the parts of her belly you can reach from behind and taking special care to <<if ($activeSlave.boobs >= 20000)>> - massage the soft butter into every inch of her colossal tits, noting with satisfaction as her distant nipples,stuck on the other side of the doorway with the bulk of her room filling breasts, harden with arousal. + massage the soft butter into every inch of her colossal tits, noting with satisfaction as her distant nipples, stuck on the other side of the doorway with the bulk of her room filling breasts, harden with arousal. <<elseif ($activeSlave.boobs >= 12000)>> massage the soft butter into her massive tits as they push up between the arch of the doorway and her bulging belly. You note with satisfaction as her nipples harden with arousal. <<elseif ($activeSlave.boobs >= 7000)>> - massage the soft butter into her monstrous tits, enjoying the struggle it takes to heft each butterslick, glistening watermelon with both hands. You note with satisfaction as her nipples harden with arousal. + massage the soft butter into her monstrous tits, enjoying the struggle it takes to heft each butterslick, glistening melon with both hands. You note with satisfaction as her nipples harden with arousal. <<elseif ($activeSlave.boobs >= 3000)>> - massage the soft butter into each of her huge, headsized tits. Your slave cranes her head back a bit to avoid being smothered by her own breasts as you work the butter into them, but you can tell she's aroused by what you're doing--her nipples have turned hard as rocks. - <<elseif ($activeSlave.boobsImplant > 250)>> + massage the soft butter into each of her huge tits. Your slave cranes her head back a bit to avoid being smothered by her own breasts as you work the butter into them, but you can tell she's aroused by what you're doing--her nipples have turned hard as rocks. + <<elseif Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> massage the soft butter into her fat, fake titties, noting with satisfaction as her nipples harden with arousal. <<elseif ($activeSlave.boobs >= 650)>> massage the soft butter into her big tits, noting with satisfaction as her nipples harden with arousal. <<elseif ($activeSlave.boobs >= 300)>> massage the soft butter into her small, girlish chest, noting with satisfaction as her nipples harden with arousal. <</if>> -<br><br> -Satisfied with your covering of your slave's back half, you then resolve to work on her front. Getting down on your hands and knees, you crawl through the narrow triangle of space between the base of your slave's massive belly, the floor, and the doorway. It's a tight squeeze, and you take longer than you need to in order to enjoy the sound of your slave groaning as you squeeze up against her sweaty, buttered up belly, but you eventually make it through. Taking generous handfuls of butter, you slick up the front half of your slave's stomach, starting at the flattened nub of her pressure obliterated belly button and slowly working your way up to the round oval of baby packed flesh being constricted by the doorway. -<br><br> -With your slave's body dripping with the thick moisturizer, you call out to her to start pulling her belly through the doorway, pushing your body up against her stomach to help push. You didn't bother to strip your clothes while buttering her body and, as you crush up against her and heave, again and again, against the sheer mass of her abdomen, you can't help but get aroused by the way your greasy clothes rub between your body and hers with each motion. At first, her belly is so firmly lodged that it doesn't move, but momentum eventually builds up and, with an audible "pop," the poor baby laden breeder finally breaks free from her containment, falling onto her back and pulling you with her into an absurd, buttery mass of flailing limbs and giggles. You take some time to flip her into a position where she won't be crushed by the weight of her own womb, and then take some more time to enjoy the fruits of your labors. -<br><br> -Once finished, you allow your servants to carry your @@.hotpink;thoroughly satisfied slave@@ to the baths and instruct them to continuously expand the doorway, as necessary, to attempt to prevent her getting stuck again. -<br> -<<set $activeSlave.devotion += 10>> - - <</replace>> - <</link>> + <br><br> + Satisfied with your covering of your slave's back half, you then resolve to work on her front. Getting down on your hands and knees, you crawl through the narrow triangle of space between the base of your slave's massive belly, the floor, and the doorway. It's a tight squeeze, and you take longer than you need to in order to enjoy the sound of your slave groaning as you rub up against her sweaty, buttered up belly, but you eventually make it through. Taking generous handfuls of butter, you slick up the front half of your slave's stomach, starting at the flattened nub of her pressure obliterated belly button and slowly working your way up to the round oval of baby packed flesh being constricted by the doorway. + <br><br> + With your slave's body dripping with the thick moisturizer, you call out to her to start pulling her belly through the doorway, pushing your body up against her stomach to help push. You didn't bother to strip your clothes while buttering her gravid figure and, as you crush up against her and heave, again and again, against the sheer mass of her abdomen, you can't help but get aroused by the way your greasy clothes rub between your body and hers with each motion. At first, her belly is so firmly lodged that it doesn't move, but momentum eventually builds up and, with an audible "pop," the poor baby laden breeder finally breaks free from her containment, falling onto her back and pulling you with her into an absurd, buttery mass of flailing limbs and giggles. You take some time to flip her into a position where she won't be crushed by the weight of her own womb, and then take some more time to enjoy the fruits of your labors. + <br><br> + Once finished, you allow your servants to carry your @@.hotpink;thoroughly satisfied slave@@ to the baths for a needed cleaning. You could pay to have the door widened, but then you wouldn't have such a perfect excuse to lather $him in cream, would you? + <<set $activeSlave.devotion += 5>> + <</replace>> +<</link>> +<br><<link "Leave $him to figure it out">> + <<EventNameDelink $activeSlave>> + <<replace "#result">> + You leave $him to get $himself out of this situation and return to your daily affairs, though not without focusing a camera on the distraught breeder first. For several hours enjoy the sight of $his backside struggling to squeeze through the doorway before $he finally manages to figure it out. $He @@.mediumorchid;blames you@@ for this indignity and @@.gold;worries@@ about what else you have waiting to torment $him. + <<set $activeSlave.devotion -= 2, $activeSlave.trust -= 2>> + <</replace>> +<</link>> <<default>> <br>ERROR: bad RESS event $RESSevent diff --git a/src/uncategorized/arcologyDescription.tw b/src/uncategorized/arcologyDescription.tw index a2923310947e01206aaca3329b64b6c45e668ffd..98b593ec9a4e30666f73d9f3f8bcb94cab577a83 100644 --- a/src/uncategorized/arcologyDescription.tw +++ b/src/uncategorized/arcologyDescription.tw @@ -205,7 +205,7 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el Some are playing pornography starring slaves with huge assets, interspersed with pharmaceutical advertisements. <</if>> <<if $arcologies[0].FSPastoralistDecoration >= 40>> - Some are showing informational agricultural programs interspersed with pornography starring slaves who are lactating heavily, hugely pregnant, or often both. + Some are showing informational agricultural programs interspersed with pornography starring slaves who are lactating heavily<<if $seePreg == 1>>, hugely pregnant, or often both<</if>>. <</if>> <<if $arcologies[0].FSPhysicalIdealistDecoration >= 40>> Some are showing @@ -263,12 +263,14 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el <<else>> some are augmented by implants. <</if>> - <<if $brothelAdsPreg == 1>> - Most of slaves have firm, rounded bellies. - <<elseif $brothelAdsPreg == -1>> - Most of the slaves have firm, flat bellies. - <<else>> - Some of the slaves are pregnant. + <<if $seePreg == 1>> + <<if $brothelAdsPreg == 1>> + Most of slaves have firm, rounded bellies. + <<elseif $brothelAdsPreg == -1>> + Most of the slaves have firm, flat bellies. + <<else>> + Some of the slaves are pregnant. + <</if>> <</if>> <<if $brothelAdsModded == 1>> Everything is heavily pierced and tattooed. @@ -327,12 +329,14 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el <<else>> some are augmented by implants. <</if>> - <<if $clubAdsPreg == 1>> - Most of strippers have firm, rounded bellies. - <<elseif $clubAdsPreg == -1>> - Most of the strippers have firm, flat bellies. - <<else>> - Some of the strippers are pregnant. + <<if $seePreg == 1>> + <<if $clubAdsPreg == 1>> + Most of strippers have firm, rounded bellies. + <<elseif $clubAdsPreg == -1>> + Most of the strippers have firm, flat bellies. + <<else>> + Some of the strippers are pregnant. + <</if>> <</if>> <<if $clubAdsModded == 1>> Everything is heavily pierced and tattooed. diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw index ece393ad698d7c4cede0debedee2147ddc95f00e..73799ba391fc906762b2f6cbf83c8132a53e6d33 100644 --- a/src/uncategorized/assistantEvents.tw +++ b/src/uncategorized/assistantEvents.tw @@ -207,6 +207,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an oil millionaire to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her appearance to be tattooed with rude Chinese characters to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "amazon">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -299,6 +303,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian oil heiress to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "fairy">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -343,6 +351,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese girl to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "pregnant fairy">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -389,6 +401,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese girl to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "goddess">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -435,6 +451,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "hypergoddess">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -481,6 +501,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "loli">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -527,6 +551,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese girl to conform with your vision of pursuing the Mandate of Heaven. +<<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "preggololi">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -573,6 +601,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese girl to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "angel">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -619,6 +651,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian woman to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese woman to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "cherub">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -665,6 +701,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian woman to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese woman to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "incubus">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -711,6 +751,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian woman, despite her cock, to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese woman, despite her cock, to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "succubus">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -757,6 +801,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arab girl attending a western school to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "imp">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -803,6 +851,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arabian woman to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese woman to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "witch">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -858,6 +910,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> casts a spell to make herself appear Arabic; she succeeds in making herself look like a wannabe Arabian princess. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> casts a spell to make herself appear Chinese; she succeeds in swapping the material of her robes to a fine silk. + <<elseif $arcologies[0].FSSupremacist != "unset">> + casts a spell to look more $arcologies[0].FSSupremacistRace; she does too good of a job, ending up looking like an overexaggerated $arcologies[0].FSSupremacistRace stereotype. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + casts a spell to look more $arcologies[0].FSSubjugationistRace; she does too good of a job and ends up looking like an overexaggerated $arcologies[0].FSSubjugationistRace stereotype. <</if>> <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -904,6 +960,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her form to an Arabian woman to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her form to a Chinese woman to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race. <</if>> <<case "schoolgirl">> <<if $arcologies[0].FSPaternalist != "unset">> @@ -950,6 +1010,10 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> adjusts her outfit to resemble an Arab girl attending a western school to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> adjusts her outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven. + <<elseif $arcologies[0].FSSupremacist != "unset">> + adjusts her appearance to resemble a model $arcologies[0].FSSupremacistRace student to conform with your vision of glorifying the superior race. + <<elseif $arcologies[0].FSSubjugationist != "unset">> + adjusts her appearance to resemble a $arcologies[0].FSSubjugationistRace foreign exchange student to conform with your vision of subjugating the inferior race. <</if>> <</switch>> @@ -1404,6 +1468,10 @@ __Personal assistant appearances:__ <<set $assistantFSAppearance = "arabian revivalist">> <<elseif $arcologies[0].FSChineseRevivalist != "unset">> <<set $assistantFSAppearance = "chinese revivalist">> + <<elseif $arcologies[0].FSSupremacist != "unset">> + <<set $assistantFSAppearance = "supremacist">> + <<elseif $arcologies[0].FSSubjugationist != "unset">> + <<set $assistantFSAppearance = "subjugationist">> <</if>> <</replace>> <</link>> diff --git a/src/uncategorized/cellblockReport.tw b/src/uncategorized/cellblockReport.tw index 0e34ea49121d5596a2c861defdb79dbd11381609..e2f44a109812c6f69953434a185e58796729b643 100644 --- a/src/uncategorized/cellblockReport.tw +++ b/src/uncategorized/cellblockReport.tw @@ -180,7 +180,11 @@ <<set $i = $slaveIndices[$CellBiIDs[_dI]]>> <<if ($slaves[$i].devotion <= 20)>> <<if ($slaves[$i].trust > -20)>> - <<set $slaves[$i].devotion -= 4, $slaves[$i].trust -= 4>> + <<if (($slaves[$i].hears == -1 && $slaves[$i].earwear != "hearing aids") || ($slaves[$i].hears == 0 && $slaves[$i].earwear == "muffling ear plugs") ||($slaves[$i].hears == -2))>> + <<set $slaves[$i].devotion -= 2, $slaves[$i].trust -= 2>> + <<else>> + <<set $slaves[$i].devotion -= 4, $slaves[$i].trust -= 4>> + <</if>> <<else>> <<set $slaves[$i].devotion++>> <</if>> diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw index 976ae4b787570fc3feb59010969762ab586908ff..9077fb9c9322762c6be67aea69e45791bb795b4a 100644 --- a/src/uncategorized/clubReport.tw +++ b/src/uncategorized/clubReport.tw @@ -649,70 +649,72 @@ <</if>> <</if>> - <br> - <<if ($clubAdsSpending > 0)>> - <<if $clubAdsPreg == 1>> - Its advertisements feature girls that are clearly pregnant. - <<set _ads = 1>> - <<elseif $clubAdsPreg == -1>> - Its advertisements feature girls that have flat, usually firm, bellies. - <<set _ads = -1>> - <<else>> - Its advertisements feature some girls that are pregnant. - <<set _ads = 0>> + <<if $seePreg == 1>> + <br> + <<if ($clubAdsSpending > 0)>> + <<if $clubAdsPreg == 1>> + Its advertisements feature girls that are clearly pregnant. + <<set _ads = 1>> + <<elseif $clubAdsPreg == -1>> + Its advertisements feature girls that have flat, usually firm, bellies. + <<set _ads = -1>> + <<else>> + Its advertisements feature some girls that are pregnant. + <<set _ads = 0>> + <</if>> <</if>> - <</if>> - <<if ($arcologies[0].FSRepopulationFocus != "unset") && ($arcologies[0].FSRepopulationFocus >= 80)>> - Most customers prefer their girls rounded with child. - <<set _pref = 1>> - <<elseif ($arcologies[0].FSRestart != "unset") && ($arcologies[0].FSRestart >= 80) >> - Most customers prefer girls that aren't gravid. - <<set _pref = -1>> - <<else>> - <<if ($arcologies[0].FSRepopulationFocus == "unset") && ($arcologies[0].FSRestart == "unset")>> - <<if ($clubAdsSpending == 0) || ($clubAdsPreg == 0)>> - <<set _possibleBonuses++>> - <<if (_pregYes > 0) && (_pregNo > 0) && (Math.abs(_pregYes-_pregNo) <= (_DL/3))>> - <<set $repGain += _DL*random(5,10), $clubBonuses++>> - There is a @@.green;wide@@ selection of slaves with a variety of middles working the club. - <</if>> - <</if>> - <</if>> - Most customers don't have preferences for either big-bellied or flat-bellied girls. - <<set _pref = 0>> - <</if>> - <<if (_pregNo > (_DL/2))>> - <<set _girls = -1>> - Most of the slaves in the club sport flat bellies. - <<elseif (_pregYes > (_DL/2))>> - <<set _girls = 1>> - Most of the slaves in the club sport gravid middles. - <<else>> - <<set _girls = 0>> - The slaves in the club vary in belly type. - <</if>> - <<if (_pref == 0)>> /*customers don't care*/ - <<elseif ($clubAdsSpending > 0)>> - <<if (_ads == _pref) && (_girls == _ads)>> - <<set _adsIncome = _DL*random(20,30), $cash += _adsIncome, $facility.club.adsIncome += _adsIncome, _clubBonuses++>> - Its advertising for <<if _ads == 1>>pregnant <<elseif _ads == -1>>flat-bellied <</if>>girls matched most customers' preferences and the girls in the club matched its advertisements. Your @@.green;reputation@@ increased slightly as a result. - <<set $rep += random(_minBonus,_maxBonus)>> - <<elseif (_ads == _pref) && (_girls != _ads)>> - Its advertising for <<if _ads == 1>>pregnant <<elseif _ads == -1>>flat-bellied <</if>>girls matched most customers preferences, but the girls in the club did not. Your @@.red;reputation@@ dropped slightly as a result. - <<set $rep -= random(_minBonus,_maxBonus)>> - <<elseif (_girls == _pref) && (_girls != _ads)>> - The <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club did not match its advertisements, but since the girls in the club matched most customers preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls, your reputation was not affected. - <<elseif (_girls != _pref)>> - Some customers were put off since the <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club did not match their preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls. Your @@.red;reputation@@ dropped slightly as a result. - <<set $rep -= random(_minBonus,_maxBonus)>> + <<if ($arcologies[0].FSRepopulationFocus != "unset") && ($arcologies[0].FSRepopulationFocus >= 80)>> + Most customers prefer their girls rounded with child. + <<set _pref = 1>> + <<elseif ($arcologies[0].FSRestart != "unset") && ($arcologies[0].FSRestart >= 80) >> + Most customers prefer girls that aren't gravid. + <<set _pref = -1>> + <<else>> + <<if ($arcologies[0].FSRepopulationFocus == "unset") && ($arcologies[0].FSRestart == "unset")>> + <<if ($clubAdsSpending == 0) || ($clubAdsPreg == 0)>> + <<set _possibleBonuses++>> + <<if (_pregYes > 0) && (_pregNo > 0) && (Math.abs(_pregYes-_pregNo) <= (_DL/3))>> + <<set $repGain += _DL*random(5,10), $clubBonuses++>> + There is a @@.green;wide@@ selection of slaves with a variety of middles working the club. + <</if>> + <</if>> + <</if>> + Most customers don't have preferences for either big-bellied or flat-bellied girls. + <<set _pref = 0>> <</if>> - <<else>> - <<if (_girls == _pref)>> - The <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club match most customers' preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls. Your @@.green;reputation@@ increased slightly as a result. - <<set $rep += random(_minBonus,_maxBonus)>> + <<if (_pregNo > (_DL/2))>> + <<set _girls = -1>> + Most of the slaves in the club sport flat bellies. + <<elseif (_pregYes > (_DL/2))>> + <<set _girls = 1>> + Most of the slaves in the club sport gravid middles. <<else>> - Some customers were put off since the <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club did not match their preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls. Your @@.red;reputation@@ dropped slightly as a result. - <<set $rep -= random(_minBonus,_maxBonus)>> + <<set _girls = 0>> + The slaves in the club vary in belly type. + <</if>> + <<if (_pref == 0)>> /*customers don't care*/ + <<elseif ($clubAdsSpending > 0)>> + <<if (_ads == _pref) && (_girls == _ads)>> + <<set _adsIncome = _DL*random(20,30), $cash += _adsIncome, $facility.club.adsIncome += _adsIncome, _clubBonuses++>> + Its advertising for <<if _ads == 1>>pregnant <<elseif _ads == -1>>flat-bellied <</if>>girls matched most customers' preferences and the girls in the club matched its advertisements. Your @@.green;reputation@@ increased slightly as a result. + <<set $rep += random(_minBonus,_maxBonus)>> + <<elseif (_ads == _pref) && (_girls != _ads)>> + Its advertising for <<if _ads == 1>>pregnant <<elseif _ads == -1>>flat-bellied <</if>>girls matched most customers preferences, but the girls in the club did not. Your @@.red;reputation@@ dropped slightly as a result. + <<set $rep -= random(_minBonus,_maxBonus)>> + <<elseif (_girls == _pref) && (_girls != _ads)>> + The <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club did not match its advertisements, but since the girls in the club matched most customers preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls, your reputation was not affected. + <<elseif (_girls != _pref)>> + Some customers were put off since the <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club did not match their preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls. Your @@.red;reputation@@ dropped slightly as a result. + <<set $rep -= random(_minBonus,_maxBonus)>> + <</if>> + <<else>> + <<if (_girls == _pref)>> + The <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club match most customers' preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls. Your @@.green;reputation@@ increased slightly as a result. + <<set $rep += random(_minBonus,_maxBonus)>> + <<else>> + Some customers were put off since the <<if _girls == 1>>pregnant <<elseif _girls == -1>>flat-bellied <</if>>girls in the club did not match their preferences for <<if _pref == 1>>fecund <<elseif _pref == -1>>flat-bellied <</if>>girls. Your @@.red;reputation@@ dropped slightly as a result. + <<set $rep -= random(_minBonus,_maxBonus)>> + <</if>> <</if>> <</if>> diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw index 1c0e5369f4c05ab51e3fdcfaf54e0bf0c19c9783..9b8510bce7b4d4ad84b3c56a6ac4032737425418 100644 --- a/src/uncategorized/corporationDevelopments.tw +++ b/src/uncategorized/corporationDevelopments.tw @@ -573,7 +573,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <</link>> <<else>> - <span id="generalAssetsDisp"><<print cashFormat($generalAssetPrice*$generalAssets)>> (<<print commaNum(Math.ceil($generalAssets/500))>> unit<<if Math.ceil($generalAssets/500) != 1>>s<</if>>)</span> in general assets. + <span id="generalAssetsDisp">@@.yellowgreen;<<print cashFormat($generalAssetPrice*$generalAssets)>> (<<print commaNum(Math.ceil($generalAssets/500))>>@@ unit<<if Math.ceil($generalAssets/500) != 1>>s<</if>>)</span> in general assets. Prices are <<if $generalAssetPrice > 10>> @@.yellowgreen;<<print cashFormat($generalAssetPrice*500)>>ea@@. @@ -589,7 +589,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <<set $slaveAssetPrice = Math.trunc(10*$slaveCostFactor)>> <<if $detailedCorpControls != 1>> - <span id="slavAssets"><<print cashFormat(Math.ceil($slaveAssetPrice*$slaveAssets))>></span> in slaves. + <span id="slavAssets">@@.yellowgreen;<<print cashFormat(Math.ceil($slaveAssetPrice*$slaveAssets))>>@@</span> in slaves. Slave prices are <<if $slaveAssetPrice > 12>>@@.yellowgreen;very high@@<<elseif $slaveAssetPrice > 10>>@@.yellowgreen;high@@<<elseif $slaveAssetPrice == 10>>average<<elseif $slaveAssetPrice >= 8>>@@.gold;low@@<<else>>@@.gold;very low@@<</if>>. | <<link "Buy">> @@ -683,7 +683,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <</link>> <<else>> - <span id="slaveAssetsDisp"><<print cashFormat(Math.ceil($slaveAssetPrice*$slaveAssets))>> (<<print commaNum(Math.ceil($slaveAssets/500))>> unit<<if Math.ceil($slaveAssets/500) != 1>>s<</if>>)</span> in slaves. + <span id="slaveAssetsDisp">@@.yellowgreen;<<print cashFormat(Math.ceil($slaveAssetPrice*$slaveAssets))>>@@ (<<print commaNum(Math.ceil($slaveAssets/500))>> unit<<if Math.ceil($slaveAssets/500) != 1>>s<</if>>)</span> in slaves. Prices are <<if $slaveAssetPrice > 10>> @@.yellowgreen;<<print cashFormat($slaveAssetPrice*500)>>ea@@ @@ -721,7 +721,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <<if $detailedCorpControls != 1>> - <span id="trapAssets"><<print cashFormat(Math.ceil($entrapmentAssetPrice*$entrapmentAssets))>></span> in legal enslavement assets. + <span id="trapAssets">@@.yellowgreen;<<print cashFormat(Math.ceil($entrapmentAssetPrice*$entrapmentAssets))>>@@</span> in legal enslavement assets. Legal enslavement asset prices are <<if $entrapmentAssetPrice > 12>>@@.yellowgreen;very high@@<<elseif $entrapmentAssetPrice > 10>>@@.yellowgreen;high@@<<elseif $entrapmentAssetPrice == 10>>average<<elseif $entrapmentAssetPrice >= 8>>@@.gold;low@@<<else>>@@.gold;very low@@<</if>>. | <<link "Buy">> @@ -815,7 +815,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <</link>> <<else>> - <span id="entrapmentAssetsDisp"><<print cashFormat($entrapmentAssetPrice*$entrapmentAssets)>> (<<print commaNum(Math.floor($entrapmentAssets/500))>> unit<<if Math.floor($entrapmentAssets/500) != 1>>s<</if>>)</span> in legal enslavement assets. + <span id="entrapmentAssetsDisp">@@.yellowgreen;<<print cashFormat($entrapmentAssetPrice*$entrapmentAssets)>>@@ (<<print commaNum(Math.floor($entrapmentAssets/500))>> unit<<if Math.floor($entrapmentAssets/500) != 1>>s<</if>>)</span> in legal enslavement assets. Prices are <<if $entrapmentAssetPrice > 10>> @@.yellowgreen;<<print cashFormat($entrapmentAssetPrice*500)>>ea@@ @@ -853,7 +853,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <<if $detailedCorpControls != 1>> - <span id="capAssets"><<print cashFormat(Math.ceil($captureAssetPrice*$captureAssets))>></span> in conflict zone enslavement assets. + <span id="capAssets">@@.yellowgreen;<<print cashFormat(Math.ceil($captureAssetPrice*$captureAssets))>>@@</span> in conflict zone enslavement assets. Extralegal enslavement asset prices are <<if $captureAssetPrice > 12>>@@.yellowgreen;very high@@<<elseif $captureAssetPrice > 10>>@@.yellowgreen;high@@<<elseif $captureAssetPrice == 10>>average<<elseif $captureAssetPrice >= 8>>@@.gold;low@@<<else>>@@.gold;very low@@<</if>>. | <<link "Buy">> @@ -947,7 +947,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <</link>> <<else>> - <span id="captureAssetsDisp"><<print cashFormat($captureAssetPrice*$captureAssets)>> (<<print commaNum(Math.floor($captureAssets/500))>> unit<<if Math.floor($captureAssets/500) != 1>>s<</if>>)</span> in conflict zone enslavement assets. + <span id="captureAssetsDisp">@@.yellowgreen;<<print cashFormat($captureAssetPrice*$captureAssets)>>@@ (<<print commaNum(Math.floor($captureAssets/500))>> unit<<if Math.floor($captureAssets/500) != 1>>s<</if>>)</span> in conflict zone enslavement assets. Prices are <<if $captureAssetPrice > 10>> @@.yellowgreen;<<print cashFormat($captureAssetPrice*500)>>ea@@ @@ -985,7 +985,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <<if $detailedCorpControls != 1>> - <span id="trainAssets"><<print cashFormat(Math.ceil($trainingAssetPrice*$trainingAssets))>></span> in slave training assets. + <span id="trainAssets">@@.yellowgreen;<<print cashFormat(Math.ceil($trainingAssetPrice*$trainingAssets))>>@@</span> in slave training assets. Slave training asset prices are <<if $trainingAssetPrice > 12>>@@.yellowgreen;very high@@<<elseif $trainingAssetPrice > 10>>@@.yellowgreen;high@@<<elseif $trainingAssetPrice == 10>>average<<elseif $trainingAssetPrice >= 8>>@@.gold;low@@<<else>>@@.gold;very low@@<</if>>. | <<link "Buy">> @@ -1079,7 +1079,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <</link>> <<else>> - <span id="trainingAssetsDisp"><<print cashFormat($trainingAssetPrice*$trainingAssets)>> (<<print commaNum(Math.floor($trainingAssets/500))>> unit<<if Math.floor($trainingAssets/500) != 1>>s<</if>>)</span> of slave training assets. + <span id="trainingAssetsDisp">@@.yellowgreen;<<print cashFormat($trainingAssetPrice*$trainingAssets)>>@@ (<<print commaNum(Math.floor($trainingAssets/500))>> unit<<if Math.floor($trainingAssets/500) != 1>>s<</if>>)</span> of slave training assets. Prices are <<if $trainingAssetPrice > 10>> @@.yellowgreen;<<print cashFormat($trainingAssetPrice*500)>>ea@@ @@ -1117,7 +1117,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <<if $detailedCorpControls != 1>> - <span id="surgAssets"><<print cashFormat(Math.ceil($surgicalAssetPrice*$surgicalAssets))>></span> in surgical assets. + <span id="surgAssets">@@.yellowgreen;<<print cashFormat(Math.ceil($surgicalAssetPrice*$surgicalAssets))>>@@</span> in surgical assets. Surgical asset prices are <<if $surgicalAssetPrice > 12>>@@.yellowgreen;very high@@<<elseif $surgicalAssetPrice > 10>>@@.yellowgreen;high@@<<elseif $surgicalAssetPrice == 10>>average<<elseif $surgicalAssetPrice >= 8>>@@.gold;low@@<<else>>@@.gold;very low@@<</if>>. | <<link "Buy">> @@ -1211,7 +1211,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <</link>> <<else>> - <span id="surgicalAssetsDisp"><<print cashFormat($surgicalAssetPrice*$surgicalAssets)>> (<<print commaNum(Math.floor($surgicalAssets/500))>> unit<<if Math.floor($surgicalAssets/500) != 1>>s<</if>>)</span> in surgical assets. + <span id="surgicalAssetsDisp">@@.yellowgreen;<<print cashFormat($surgicalAssetPrice*$surgicalAssets)>>@@ (<<print commaNum(Math.floor($surgicalAssets/500))>> unit<<if Math.floor($surgicalAssets/500) != 1>>s<</if>>)</span> in surgical assets. Prices are <<if $surgicalAssetPrice > 10>> @@.yellowgreen;<<print cashFormat($surgicalAssetPrice*500)>>ea@@ @@ -1249,7 +1249,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <<if $detailedCorpControls != 1>> - <span id="drAssets"><<print cashFormat(Math.ceil($drugAssetPrice*$drugAssets))>></span> in pharmaceutical assets. + <span id="drAssets">@@.yellowgreen;<<print cashFormat(Math.ceil($drugAssetPrice*$drugAssets))>>@@</span> in pharmaceutical assets. Drug asset prices are <<if $drugAssetPrice > 12>>@@.yellowgreen;very high@@<<elseif $drugAssetPrice > 10>>@@.yellowgreen;high@@<<elseif $drugAssetPrice == 10>>average<<elseif $drugAssetPrice >= 8>>@@.gold;low@@<<else>>@@.gold;very low@@<</if>>. | <<link "Buy">> @@ -1343,7 +1343,7 @@ You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<p <</if>> <</link>> <<else>> - <span id="drugAssetsDisp"><<print cashFormat($drugAssetPrice*$drugAssets)>> (<<print commaNum(Math.floor($drugAssets/500))>> unit<<if Math.floor($drugAssets/500) != 1>>s<</if>>)</span> in pharmaceutical assets. + <span id="drugAssetsDisp">@@.yellowgreen;<<print cashFormat($drugAssetPrice*$drugAssets)>>@@ (<<print commaNum(Math.floor($drugAssets/500))>> unit<<if Math.floor($drugAssets/500) != 1>>s<</if>>)</span> in pharmaceutical assets. Prices are <<if $drugAssetPrice > 10>> @@.yellowgreen;<<print cashFormat($drugAssetPrice*500)>>ea@@ diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw index d52e39f094f84abbf934fa91e1ecf92c70062083..a964e99f2b682daeca87aad61d071af1c3879c68 100644 --- a/src/uncategorized/fsDevelopments.tw +++ b/src/uncategorized/fsDevelopments.tw @@ -327,12 +327,20 @@ <<set $arcologies[0].FSSupremacist += 0.1*$FSSingleSlaveRep>> <<set _seed1 = 1>> <</if>> + <<if ($assistantFSAppearance == "supremacist")>> + <<set $arcologies[0].FSSupremacist += 0.1*$FSSingleSlaveRep>> + <<set _seed2 = 2>> + <</if>> <</if>> <<if $arcologies[0].FSSubjugationist != "unset">> <<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "imp")>> <<set $arcologies[0].FSSubjugationist += 0.1*$FSSingleSlaveRep>> <<set _seed1 = 1>> <</if>> + <<if ($assistantFSAppearance == "subjugationist")>> + <<set $arcologies[0].FSSubjugationist += 0.1*$FSSingleSlaveRep>> + <<set _seed2 = 2>> + <</if>> <</if>> <<if $arcologies[0].FSGenderRadicalist != "unset">> <<if ($assistantAppearance == "monstergirl") || ($assistantAppearance == "shemale") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>> diff --git a/src/uncategorized/fullReport.tw b/src/uncategorized/fullReport.tw index 873bc1948aa4e56b607b7875632b5714d84609e3..fd27ec310b665e06513ba4dfffd21a88d32b2ac5 100644 --- a/src/uncategorized/fullReport.tw +++ b/src/uncategorized/fullReport.tw @@ -49,7 +49,7 @@ is not strenuous, so $he <<if $slaves[$i].devotion > 20>><<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses<<elseif $slaves[$i].devotion >= -20>>is required to use<<else>>is forced to use<</if>> the penthouse milkers frequently, <<set $servantMilkersMultiplier = 0.5>> <<else>> - keeps $possessive busy, but $he <<if $slaves[$i].devotion > 20>><<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses<<elseif $slaves[$i].devotion >= -20>>is required to use<<else>>is forced to use<</if>> the penthouse milkers whenever $he can, + keeps $him busy, but $he <<if $slaves[$i].devotion > 20>><<if $slaves[$i].fetish == "boobs">>eagerly <</if>>uses<<elseif $slaves[$i].devotion >= -20>>is required to use<<else>>is forced to use<</if>> the penthouse milkers whenever $he can, <<set $servantMilkersMultiplier = 0.25>> <</if>> <<silently>><<include "SA get milked">><</silently>> diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw index c2323b79bc92fb5cb9e9d676e725fbc1beb8172f..630bc09b9b154437a1174fbb846c13544e854f85 100644 --- a/src/uncategorized/futureSociety.tw +++ b/src/uncategorized/futureSociety.tw @@ -593,7 +593,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc </span> <<if $arcologies[0].FSSupremacist != "unset">> - <br>''You are pursuing'' $arcologies[0].FSSupremacistRace superiority. //<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSSupremacist = "unset", $arcologies[0].FSSupremacistDecoration = 20, $arcologies[0].FSSupremacistLawME = 0, $arcologies[0].FSSupremacistSMR = 0, $FSCredits += 1>><<ClearFacilityDecorations>><</link>>//<br> + <br>''You are pursuing'' $arcologies[0].FSSupremacistRace superiority. //<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSSupremacist = "unset", $arcologies[0].FSSupremacistDecoration = 20, $arcologies[0].FSSupremacistLawME = 0, $arcologies[0].FSSupremacistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "supremacist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br> <<FSChangeDecoration "FSSupremacist">> <<if $PAPublic == 1>> <<if ($assistantAppearance == "amazon") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "succubus")>> @@ -622,7 +622,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <</if>> <<if $arcologies[0].FSSubjugationist != "unset">> - <br>''You are pursuing'' $arcologies[0].FSSubjugationistRace inferiority. //<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSSubjugationist = "unset", $arcologies[0].FSSubjugationistDecoration = 20, $arcologies[0].FSSubjugationistLawME = 0, $arcologies[0].FSSubjugationistSMR = 0, $FSCredits += 1>><<ClearFacilityDecorations>><</link>>//<br> + <br>''You are pursuing'' $arcologies[0].FSSubjugationistRace inferiority. //<<link [[Abandon|Future Society]]>><<set $arcologies[0].FSSubjugationist = "unset", $arcologies[0].FSSubjugationistDecoration = 20, $arcologies[0].FSSubjugationistLawME = 0, $arcologies[0].FSSubjugationistSMR = 0, $FSCredits += 1>><<if $assistantFSAppearance == "subjugationist">><<set $assistantFSAppearance = "default">><</if>><<ClearFacilityDecorations>><</link>>//<br> <<FSChangeDecoration "FSSubjugationist">> <<if $PAPublic == 1>> <<if ($assistantAppearance == "businesswoman") || ($assistantAppearance == "amazon") || ($assistantAppearance == "imp")>> diff --git a/src/uncategorized/nonRandomEvent.tw b/src/uncategorized/nonRandomEvent.tw index f30564ceca0c86013b13b187403702302b91717d..b93d083eee15698689b2e71c89c078dfdf7fe9c8 100644 --- a/src/uncategorized/nonRandomEvent.tw +++ b/src/uncategorized/nonRandomEvent.tw @@ -111,7 +111,7 @@ <<goto "P peacekeepers intro">> <<elseif ($arcologies[0].prosperity > 80) && ($TSS.schoolPresent+$GRI.schoolPresent+$SCP.schoolPresent+$LDE.schoolPresent+$TGA.schoolPresent+$HA.schoolPresent+$TFS.schoolPresent+$TCR.schoolPresent == 0) && ($schoolSuggestion == 0)>> <<goto "P school suggestion">> -<<elseif ($assistantFSOptions == 0) && ($assistant > 0) && ($assistantAppearance != "normal") && ($arcologies[0].FSGenderRadicalistDecoration > 20 || $arcologies[0].FSGenderFundamentalistDecoration > 20 || $arcologies[0].FSPaternalistDecoration > 20 || $arcologies[0].FSDegradationistDecoration > 20 || $arcologies[0].FSBodyPuristDecoration > 20 || $arcologies[0].FSTransformationFetishistDecoration > 20 || $arcologies[0].FSYouthPreferentialistDecoration > 20 || $arcologies[0].FSMaturityPreferentialistDecoration > 20 || $arcologies[0].FSSlimnessEnthusiastDecoration > 20 || $arcologies[0].FSAssetExpansionistDecoration > 20 || $arcologies[0].FSPastoralistDecoration > 20 || $arcologies[0].FSPhysicalIdealistDecoration > 20 || $arcologies[0].FSChattelReligionistDecoration > 20 || $arcologies[0].FSRomanRevivalistDecoration > 20 || $arcologies[0].FSAztecRevivalistDecoration > 20 || $arcologies[0].FSEgyptianRevivalistDecoration > 20 || $arcologies[0].FSEdoRevivalistDecoration > 20 || $arcologies[0].FSArabianRevivalistDecoration > 20 || $arcologies[0].FSChineseRevivalistDecoration > 20 || $arcologies[0].FSRestart > 20 || $arcologies[0].FSRepopulationFocus > 20 || $arcologies[0].FSHedonisticDecadence > 20)>> +<<elseif ($assistantFSOptions == 0) && ($assistant > 0) && ($assistantAppearance != "normal") && ($arcologies[0].FSSupremacistDecoration > 20 || $arcologies[0].FSSubjugationistDecoration > 20 || $arcologies[0].FSGenderRadicalistDecoration > 20 || $arcologies[0].FSGenderFundamentalistDecoration > 20 || $arcologies[0].FSPaternalistDecoration > 20 || $arcologies[0].FSDegradationistDecoration > 20 || $arcologies[0].FSBodyPuristDecoration > 20 || $arcologies[0].FSTransformationFetishistDecoration > 20 || $arcologies[0].FSYouthPreferentialistDecoration > 20 || $arcologies[0].FSMaturityPreferentialistDecoration > 20 || $arcologies[0].FSSlimnessEnthusiastDecoration > 20 || $arcologies[0].FSAssetExpansionistDecoration > 20 || $arcologies[0].FSPastoralistDecoration > 20 || $arcologies[0].FSPhysicalIdealistDecoration > 20 || $arcologies[0].FSChattelReligionistDecoration > 20 || $arcologies[0].FSRomanRevivalistDecoration > 20 || $arcologies[0].FSAztecRevivalistDecoration > 20 || $arcologies[0].FSEgyptianRevivalistDecoration > 20 || $arcologies[0].FSEdoRevivalistDecoration > 20 || $arcologies[0].FSArabianRevivalistDecoration > 20 || $arcologies[0].FSChineseRevivalistDecoration > 20 || $arcologies[0].FSRestartDecoration > 20 || $arcologies[0].FSRepopulationFocusDecoration > 20 || $arcologies[0].FSHedonisticDecadence > 20)>> <<set $Event = "assistant FS">> <<goto "Assistant Events">> <<elseif ($assistant > 0) && ($assistantNameAnnounced == 0) && ($assistantPower > 0)>> diff --git a/src/uncategorized/officeDescription.tw b/src/uncategorized/officeDescription.tw index ba67020d4fb9f4910fba95e7029d990b38042a98..3ea9f1a61b75a42882c2b0cb7f60cdeda9e00b9c 100644 --- a/src/uncategorized/officeDescription.tw +++ b/src/uncategorized/officeDescription.tw @@ -55,7 +55,7 @@ <<elseif (random(1,2) == 1) && ($activeSlave.oralSkill >= 100)>> she's on her knees with her <<if $activeSlave.lips > 40>>huge<<elseif $activeSlave.lips > 20>>pillowlike<<elseif $activeSlave.lips > 10>>pretty<<else>>thin<</if>> lips wrapped around his dick. <<else>> - she's shown <<if $activeSlave.anus > 3>>blown-out butthole<<elseif $activeSlave.anus > 2>>looking up teasingly as she takes his dick up her roomy anus<<elseif $activeSlave.anus > 1>>looking up teasingly as she takes his dick in her big butthole<<elseif $activeSlave.anus > 0>>gasping as she takes his dick in her tight asshole<<else>>screaming as he fucks her virgin backdoor<</if>>. + she's shown <<if $activeSlave.anus > 3>>looking up teasingly as she takes his dick up her blown-out butthole<<elseif $activeSlave.anus > 2>>looking up teasingly as she takes his dick up her roomy anus<<elseif $activeSlave.anus > 1>>looking up teasingly as she takes his dick in her big butthole<<elseif $activeSlave.anus > 0>>gasping as she takes his dick in her tight asshole<<else>>screaming as he fucks her virgin backdoor<</if>>. <</if>> <</if>> <</if>> @@ -114,6 +114,10 @@ she's depicted wearing fine silks and striking a sexy pose, though they fail to cover anything on her. <<case "chinese revivalist">> she's depicted wearing colorful silk robes; she's pulled them open to flash her lovely body. + <<case "supremacist">> + she's depicted wearing the dress of an old world $arcologies[0].FSSupremacistRace noblewoman and blowing a kiss in a sexy manner. + <<case "subjugationist">> + she's depicted sitting with her legs wide open and using her fingers to spread her $arcologies[0].FSSubjugationistRace pussy lips apart in a lewd manner. <<case "chattel religionist">> she's depicted striking a sexy pose, chosen specifically to draw attention to the symbols of your religion that adorn her nipples. <<case "repopulation focus">> diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw index d7745d1ac125a342ef2c5927623c669b99696a20..10e41cd3a448a72ee45efd71d3264f3b607ad159 100644 --- a/src/uncategorized/personalAssistantAppearance.tw +++ b/src/uncategorized/personalAssistantAppearance.tw @@ -3,13 +3,17 @@ <<set _paSeed = random(1,8)>> <<switch $assistantAppearance>> <<case "monstergirl">> -She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>monstergirl with <<if $arcologies[0].FSSupremacist != "unset">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "dark brown", "brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("pale", "fair", "light")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("dark olive", "brown", "dark brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("light", "light olive", "dark olive")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSupremacistRace)>><<print either("light olive", "tanned", "dark olive")>><</if>><<else>>pale<</if>> skin, perky breasts, green tentacles instead of hair, and two dicks. Her eyes are large, expressive, and surprisingly innocent. +She's a cute little <<if $assistantFSAppearance == "supremacist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>monstergirl with <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "dark brown", "brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("pale", "fair", "light")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("dark olive", "brown", "dark brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("light", "light olive", "dark olive")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSupremacistRace)>><<print either("light olive", "tanned", "dark olive")>><<else>>pale<</if>><<elseif $assistantFSAppearance == "subjugationist">><<if $arcologies[0].FSSubjugationistRace == "black">><<print either("black", "dark brown", "brown")>><<elseif $arcologies[0].FSSubjugationistRace == "white">><<print either("pale", "fair", "light")>><<elseif $arcologies[0].FSSubjugationistRace == "latina">><<print either("dark olive", "brown", "dark brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSubjugationistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSubjugationistRace == "asian">><<print either("light", "light olive", "dark olive")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSubjugationistRace)>><<print either("light olive", "tanned", "dark olive")>><<else>>pale<</if>><<else>>pale<</if>> skin, perky breasts, green tentacles instead of hair, and two dicks. Her eyes are large, expressive, and surprisingly innocent. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She's wearing a surprisingly conservative outfit: khakis, a sweater, and eyeglasses. <<case "degradationist">> She's sharpened her appearance to be quite frightening: she has impressive fangs, and a snakelike tongue flicks out between them. + <<case "supremacist">> + Her distinct $arcologies[0].FSSupremacistRace features are only enchanced by her monstorus appearence, and she has taken to jump-scaring slaves of lesser races when she isn't too busy with other tasks. + <<case "subjugationist">> + Her distinct $arcologies[0].FSSubjugationistRace features are further exaggerated by her monstorous appearence. <<case "roman revivalist">> She's wearing a conservative stola, which combined with her monstrous appearance makes her look like a Greek demigoddess. <<case "aztec revivalist">> @@ -81,13 +85,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "shemale">> -She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>bimbo shemale with blonde hair, <<if $arcologies[0].FSSupremacist != "unset">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "dark brown", "brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("pale", "fair")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("dark olive", "brown", "dark brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("light olive", "dark olive")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark olive", "tanned")>><</if>><<else>>tanned<</if>> skin, huge lips, and ridiculous tits. Her cock hangs past her knees when limp. +She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>bimbo shemale with bleached blonde hair, <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">><<if $arcologies[0].FSSupremacistRace == "black">><<print either("black", "dark brown", "brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("pale", "fair")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("dark olive", "brown", "dark brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("light olive", "dark olive")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark olive", "tanned")>><<else>>tanned<</if>><<elseif $assistantFSAppearance == "subjugationist">><<if $arcologies[0].FSSubjugationistRace == "black">><<print either("black", "dark brown", "brown")>><<elseif $arcologies[0].FSSubjugationistRace == "white">><<print either("pale", "fair")>><<elseif $arcologies[0].FSSubjugationistRace == "latina">><<print either("dark olive", "brown", "dark brown")>><<elseif ["indo-aryan", "malay", "pacific islander", "amerindian"].includes($arcologies[0].FSSubjugationistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSubjugationistRace == "asian">><<print either("light olive", "dark olive")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSubjugationistRace)>><<print either("dark olive", "tanned")>><<else>>tanned<</if>><<else>>tanned<</if>> skin, huge lips, and ridiculous tits. Her cock hangs past her knees when limp. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She's made herself up to look a bit classier recently: she has elegant fake nails, and has her hair piled up on her head. <<case "degradationist">> She's made herself up to look almost comically evil: she's wearing black lipstick, black eyeliner, and a black barbed cockring. + <<case "supremacist">> + She remains nude in order to properly display the glory of a superior $arcologies[0].FSSupremacistRace cock. + <<case "subjugationist">> + Like most $arcologies[0].FSSubjugationistRace subhumans she has no self-control, and is constantly playing with her erect cock and whimpering in needy arousal. <<case "roman revivalist">> She's taken to reclining on a traditional Roman couch and drinking wine out of a shallow dish. <<case "aztec revivalist">> @@ -158,17 +166,21 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "amazon">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>amazon + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>amazon <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> - with flaming red hair, tribal tattoos, shredded abs, and bone jewelry. She has bigger natural tits than anyone that ripped could possibly maintain. + with long flowing hair, tribal tattoos, shredded abs, and bone jewelry. She has bigger natural tits than anyone that ripped could possibly maintain. <<case "repopulation focus">> with an enormous belly. Its oversized occupant kicks and squirms ferociously, eager to be born. <<case "eugenics">> with a complex bone chastity belt blocking her vagina. <<case "degradationist">> with ochre-dyed dreadlocks, war tattoos, shredded abs, and jewelry made from human bones. She has bigger natural tits than anyone that ripped could possibly maintain. + <<case "supremacist">> + wearing armor that blends elements from elite warriors of several historically $arcologies[0].FSSupremacistRace cultures, evoking the glory of ages past. + <<case "subjugationist">> + with wild unkempt hair, dressed in ragged animal skins and crude bone jewelry. <<case "roman revivalist">> wearing the armor of a Roman auxilia, complete with lorica hamata and oval shield painted with your arcology's symbols. <<case "aztec revivalist">> @@ -198,18 +210,18 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "pastoralist">> wearing jean overalls, a plaid shirt whose sleeves are strained by her biceps, and rubber boots, and has a cowboy hat pushed back on her pretty head. <<case "maturity preferentialist">> - with streaks of grey running through her flaming red hair. She has bigger natural tits than anyone that ripped could possibly maintain. + with streaks of grey running through her long flowing hair. She has bigger natural tits than anyone that ripped could possibly maintain. <<case "youth preferentialist">> with whose innocent appearance belies her heavy muscles. She has bigger natural tits than anyone that ripped could possibly maintain. <<case "slimness enthusiast">> - with flaming red hair, tribal tattoos, shredded abs, and bone jewelry. Her perky boobs are usually concealed by her ornaments. + with long flowing hair, tribal tattoos, shredded abs, and bone jewelry. Her perky boobs are usually concealed by her ornaments. <<case "body purist">> with a realistic tribeswoman's garb of woven jewelry and shell beads. She has bigger natural tits than anyone that ripped could possibly maintain. <<default>> - with flaming red hair, tribal tattoos, shredded abs, and bone jewelry. She has bigger natural tits than anyone that ripped could possibly maintain. + with long flowing hair, tribal tattoos, shredded abs, and bone jewelry. She has bigger natural tits than anyone that ripped could possibly maintain. <</switch>> <<else>> - with flaming red hair, tribal tattoos, shredded abs, and bone jewelry. She has bigger natural tits than anyone that ripped could possibly maintain. + with long flowing hair, tribal tattoos, shredded abs, and bone jewelry. She has bigger natural tits than anyone that ripped could possibly maintain. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> A recognizable little representation of one of your slaves is down on its knees in front of her, eating her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the amazon orgasms, producing a little female barbarian shout. @@ -239,13 +251,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "businesswoman">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>businesswoman + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>businesswoman <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> wearing a perfectly-tailored suit, with her silver-blonde hair brushed back over her shoulders. Her clothes are conservative, but they can't hide her generous curves. <<case "degradationist">> wearing an iron-gray suit, with her hair up in a severe bun. She's wearing deep red lipstick and a predatory expression. + <<case "supremacist">> + wearing a perfectly-tailored suit. She has two different tones she uses when speaking: a respectful one for talking with her $arcologies[0].FSSupremacistRace equals, and a strict domineering one for interacting with the lesser races. + <<case "subjugationist">> + wearing a nice, slightly-used suit. She speaks with a stereotypical $arcologies[0].FSSubjugationistRace voice, but is otherwise the model of a perfect subservient secretary. <<case "roman revivalist">> wearing a fine stola appropriate for a respectable Roman lady, with her hair up in a complicated style. <<case "aztec revivalist">> @@ -320,13 +336,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "goddess">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>fertility goddess, + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>fertility goddess, <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> with swollen breasts and a big pregnant belly. She wears only a gossamer white camisole over her tanned skin, with a woven crown of daisies. <<case "degradationist">> with swollen hips and breasts and a huge pregnant belly. She's naked aside from the steel piercings in her protruding clit, navel, and nipples. + <<case "supremacist">> + with swollen breasts and a big pregnant belly. She wears a golden tiara on her head, and her otherwise nude form is a shining example of the $arcologies[0].FSSupremacistRace race's divine beauty. + <<case "subjugationist">> + with swollen hips and breasts and a huge pregnant belly. She's nude aside from a crown of wilted flowers and the iron shackles on her wrists and ankles. <<case "roman revivalist">> with swollen hips and a big pregnant belly. She's clothed in a loose stola, with dozens of flowers woven into her curly auburn hair. <<case "aztec revivalist">> @@ -401,13 +421,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "schoolgirl">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>schoolgirl + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>schoolgirl <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> wearing a long plaid skirt and a clean white shirt. She does her best to look as prim as possible, which, given her duties, often isn't very prim at all. <<case "degradationist">> wearing a plaid skirt and a white shirt, though she's hiked the skirt up to show almost everything, and torn the shirt open to bare her perky boobs. + <<case "supremacist">> + wearing a plaid skirt and a white shirt. She is constantly taking notes and studying the latest textbooks, satisfying the $arcologies[0].FSSupremacistRace race's thirst for knowledge. + <<case "subjugationist">> + wearing a plaid skirt and a white shirt. She speaks with a stereotypical $arcologies[0].FSSubjugationistRace accent, giving the impression of a foreign exchange student with much to learn. <<case "roman revivalist">> wearing a girl's stola, with her hair pulled up into a proper upper-class Roman coiffure. She usually carries a wax tablet and a stylus. <<case "aztec revivalist">> @@ -447,7 +471,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "slimness enthusiast">> wearing a plaid skirt and a white shirt. She looks quite young and innocent, and her boobs are elegantly small. <<case "body purist">> - She's recently improved her appearance to look more natural, with freckles and a winning smile. + wearing a plaid skirt and a white shirt. She's recently improved her appearance to look more natural, with freckles and a winning smile. <<default>> wearing a plaid skirt and a white shirt. Her breasts strain against the material, and her skirt is short enough to show off a bit of bottom. <</switch>> @@ -482,7 +506,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "hypergoddess">> - She's a cute "little" <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>fertility goddess, with monstrously wide hips, enormous milky breasts and a room filling belly. Her overfull stomach bulges and squirms from her hundreds of occupants, as well as parts her milk swollen breasts to either side. + She's a cute "little" <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>fertility goddess, with monstrously wide hips, enormous milky breasts and a room filling belly. Her overfull stomach bulges and squirms from her hundreds of occupants, as well as parts her milk swollen breasts to either side. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> @@ -493,6 +517,10 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She appears as an ugly and unkempt slavegirl, massively pregnant with hundreds of subhuman spawn. Her immense belly is coated in bulges and moving ominously. A malformed, impish child claws its way out of her ruined cunt periodically. <<case "degradationist">> She's made herself up to look almost comically evil: she's wearing black lipstick and black eyeliner. Numerous studs cover her bulging belly and a large, heavy ring is driven through her popped navel. Liquid constantly oozes from her gaping vagina where a baby is held mid-birth by several criss-crossing chains. + <<case "supremacist">> + She is nude except for a golden tiara on her head, a symbol of the $arcologies[0].FSSupremacistRace race's divine right to rule. Occasionally a stream of liquid pours from her crotch along with a healthy $arcologies[0].FSSupremacistRace baby. + <<case "subjugationist">> + She is shackled onto a large bed, the iron chains forcing her legs apart and putting her gaping pussy on display. Occasionally a stream of liquid pours from her crotch along with a healthy $arcologies[0].FSSubjugationistRace slave baby. <<case "roman revivalist">> She's taken to reclining on a traditional Roman couch and drinking wine out of a shallow dish. Occasionally a stream of liquid pours from her crotch along with a healthy baby. <<case "aztec revivalist">> @@ -569,11 +597,15 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "loli">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>> <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> girl wearing a cute pink dress. + <<case "supremacist">> + girl wearing shorts and a pink t-shirt with the words 'Master's little $arcologies[0].FSSupremacistRace princess' on the front. + <<case "subjugationist">> + slavegirl wearing nothing but a leather collar and trying her best to do master proud. <<case "roman revivalist">> girl wearing a girl's stola. <<case "aztec revivalist">> @@ -650,11 +682,15 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "preggololi">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>>girl with a large pregnant + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>girl with a large pregnant <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> belly wearing a cute pink dress. The middle is stretched tight by her growing belly. + <<case "supremacist">> + belly wearing a cute yellow dress. She cradles her swollen belly protectively, glowing with pride at carrying a $arcologies[0].FSSupremacistRace child. + <<case "subjugationist">> + belly, wearing nothing but a pregnancy biometrics collar. The collar's display reads 'Carrying 2 more $arcologies[0].FSSubjugationistRace subhumans!', something the girl occasionally reads aloud to herself. <<case "roman revivalist">> belly wearing a girl's stola. <<case "aztec revivalist">> @@ -738,6 +774,10 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] fairy wearing a well-sewn blue dress, with a large red bow tied to the back of her waist length golden-blonde hair. She looks like a little Bucuretsi doll. <<case "degradationist">> fairy and completely unclothed, with her hair in a mess and covered in dirt. + <<case "supremacist">> + fairy with distinctly $arcologies[0].FSSupremacistRace features. She has wrapped a golden ribbon around her torso to fashion herself a dress. + <<case "subjugationist">> + fairy with exaggerated $arcologies[0].FSSubjugationistRace features. She is completely unclothed, with her hair in a mess and covered in dirt. <<case "roman revivalist">> fairy wearing a small handkerchief wrapped around her like a toga, with one tiny breast sticking out. A wreath made of twisted clovers sits on her head. <<case "aztec revivalist">> @@ -765,7 +805,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<case "asset expansionist">> fairy wearing a pair of pants and a t-shirt. She has two blueberries stuffed into the front of her shirt. <<case "transformation fetishist">> - wearing a pair of tight jeans and a t-shirt. She has two grapes stuffed into her shirt, and some cotton shoved in the back of her jeans. + fairy wearing a pair of tight jeans and a t-shirt. She has two grapes stuffed into her shirt, and some cotton shoved in the back of her jeans. <<case "pastoralist">> fairy wearing only a pair of overalls. The overalls are just loose enough to let her nearly flat chest to peek out when she turns or bends over. <<case "maturity preferentialist">> @@ -814,52 +854,56 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> - fairy wearing a well-sewn blue dress, with a large red bow tied to the back of her waist length golden-blonde hair. She looks like a little Bucuresti doll. + wearing a well-sewn blue dress, with a large red bow tied to the back of her waist length golden-blonde hair. She looks like a little Bucuresti doll. <<case "degradationist">> - fairy, completely unclothed, with her hair in a mess and covered in dirt. + and completely unclothed, with her hair in a mess and covered in dirt. + <<case "supremacist">> + and distinctly $arcologies[0].FSSupremacistRace features. She has wrapped a golden ribbon around her chest to create an improvised bra, and another under her swollen belly to fashion a thong. + <<case "subjugationist">> + and exaggerated $arcologies[0].FSSubjugationistRace features. She is completely unclothed, with her hair in a mess and covered in dirt. <<case "roman revivalist">> - fairy wearing a small handkerchief wrapped around her like a toga, with one tiny milky breast sticking out. A wreath made of twisted clovers sits on her head. + wearing a small handkerchief wrapped around her like a toga, with one tiny milky breast sticking out. A wreath made of twisted clovers sits on her head. <<case "aztec revivalist">> - fairy, yellow paint creating tribal patterns across her naked form and curving around her swollen belly. + yellow paint creating tribal patterns across her naked form and curving around her swollen belly. <<case "egyptian revivalist">> - fairy wearing a simple white linen dress and has eye shadow poorly applied around her eyes. + wearing a simple white linen dress and has eye shadow poorly applied around her eyes. <<case "edo revivalist">> - fairy wearing a fine kimono and holding a little fan. She looks like a little Hina doll. + wearing a fine kimono and holding a little fan. She looks like a little Hina doll. <<case "arabian revivalist">> - fairy wearing a strip of silk as a dress. + wearing a strip of silk as a dress. <<case "chinese revivalist">> - fairy wearing a silk cheongsam with a little green cap on her head. Her hair is braided on the sides. She looks like a figurine from some kind of game. + wearing a silk cheongsam with a little green cap on her head. Her hair is braided on the sides. She looks like a figurine from some kind of game. <<case "chattel religionist">> - fairy wearing a little gold-white habit and glowing with purity. + wearing a little gold-white habit and glowing with purity. <<case "physical idealist">> - fairy wearing a training bra and spats. Her large belly sticks out even more. + wearing a training bra and spats. Her large belly sticks out even more. <<case "hedonistic decadence">> - fairy, nude and sitting upon a large pastry, covered in cream. She occasionally pulls off a piece to nibble on. + that is nude and sitting upon a large pastry, covered in cream. She occasionally pulls off a piece to nibble on. <<case "repopulation focus">> - fairy wearing a lovely maternity dress, which shows off her swollen belly. + wearing a lovely maternity dress, which shows off her swollen belly. <<case "gender radicalist">> - fairy wearing a pair of pants. Just the pants. + wearing a pair of pants. Just the pants. <<case "gender fundamentalist">> - fairy wearing a well-sewn blue dress, with a large red bow tied to the back of her waist length golden-blonde hair. She looks like a little Bucuresti doll. + wearing a well-sewn blue dress, with a large red bow tied to the back of her waist length golden-blonde hair. She looks like a little Bucuresti doll. <<case "asset expansionist">> - fairy wearing a pair of pants and a t-shirt. She has two blueberries stuffed into the front of her shirt. + wearing a pair of pants and a t-shirt. She has two blueberries stuffed into the front of her shirt. <<case "transformation fetishist">> - fairy wearing a pair of tight jeans and a t-shirt. She has two grapes stuffed into her shirt, and some cotton shoved in the back of her jeans. + wearing a pair of tight jeans and a t-shirt. She has two grapes stuffed into her shirt, and some cotton shoved in the back of her jeans. <<case "pastoralist">> - fairy wearing only a pair of overalls. The overalls are open enough to let her belly pour out. + wearing only a pair of overalls. The overalls are open enough to let her belly pour out. <<case "maturity preferentialist">> - fairy wearing an old wool dress and rocking back and forth on a rocking chair, cradling her belly. + wearing an old wool dress and rocking back and forth on a rocking chair, cradling her belly. <<case "youth preferentialist">> - fairy wearing a kindergartner's uniform, complete with rain cap and red backpack. Her swollen belly looks out of place. + wearing a kindergartner's uniform, complete with rain cap and red backpack. Her swollen belly looks out of place. <<case "slimness enthusiast">> - fairy wearing a handkerchief with a hole in it like a poncho. Her pregnant belly forces the poncho to spread wide, leaving little of her body to the imagination. + wearing a handkerchief with a hole in it like a poncho. Her pregnant belly forces the poncho to spread wide, leaving little of her body to the imagination. <<case "body purist">> - fairy wearing her birthday suit, with pale unblemished pregnant belly on full display and silky golden hair cascading down her back. + wearing her birthday suit, with pale unblemished pregnant belly on full display and silky golden hair cascading down her back. <<default>> - fairy wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascades down her back. + wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascades down her back. <</switch>> <<else>> - fairy wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascades down her back. + wearing her birthday suit, with her nude form obscured by the light coming from her belly. Her silky golden hair cascades down her back. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> A recognizable little representation of one of your slaves sits beside her, with her tongue scraping across her breast to catch the beads of milk that flow. The slave must be down in the kitchen, getting a meal out of the food dispensers. The fairy notices you watching and winks, her unattended breast giving out a small spray of milk. @@ -889,11 +933,15 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "slimegirl">> - She's a girlish shaped figure, with a crimson core, made entirely out of <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> + She's a girlish shaped figure, with a crimson core, made entirely out of <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> slime with a modest pink dress floating inside her. + <<case "supremacist">> + slime. She keeps trying to shape her goo into a beautiful $arcologies[0].FSSupremacistRace girl, but she hasn't quite perfected the finer details yet. + <<case "subjugationist">> + slime. She keeps trying to shape her goo into a pretty face, but keeps ending up with overexaggerated $arcologies.FSSubjugationistRace features instead. <<case "roman revivalist">> slime with a girl's stola sinking into her head. <<case "egyptian revivalist">> @@ -955,13 +1003,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "angel">> - She's a gorgeous little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> angel with long blonde hair and large <<if $arcologies[0].FSDegradationist != "unset">>black<<else>>white<</if>> wings as large as her when they are folded. + She's a gorgeous little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>> angel with long radiant hair and large <<if $arcologies[0].FSDegradationist != "unset">>black<<else>>white<</if>> wings as large as her when they are folded. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She is currently wearing a long, conservative skirt and a pretty white blouse complete with gaps for her wings. She is positively radiant. <<case "degradationist">> She is wearing black eyeliner and lipstick while using a thin black ribbon to protect her modesty. It's pretty obvious she has a stud through her left nipple. + <<case "supremacist">> + She cycles between different outfits that reflect the various holy garments of religions popular in $arcologies[0].FSSupremacistRace countries. + <<case "subjugationist">> + She is wearing a simple white linen dress, and her right ankle is shackled to an iron ball and chain that prevents her from flying very high. <<case "roman revivalist">> She is wearing a fine stola appropriate for a respectable Roman lady, with her hair up in a complicated style. <<case "aztec revivalist">> @@ -1036,13 +1088,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "cherub">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> minor angel with blonde hair and arm length <<if $arcologies[0].FSGenderFundamentalist != "unset">>black<<else>>white<</if>> wings. + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>> minor angel with radiant hair and arm length <<if $arcologies[0].FSDegradationist != "unset">>black<<else>>white<</if>> wings. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She has swapped her usual shirt skirt for a much longer one. No more panty flashes for you! <<case "degradationist">> She is wearing black lipstick along with her usual white linen dress with a short skirt. Occasionally you get a glance up that skirt; a dark black thong greets you. + <<case "supremacist">> + She is wearing a cute little dressed stitched with designs from $arcologies[0].FSSupremacistRace culture. Occasionally you get a glance up it; a white pair of panties with similar designs say hello. + <<case "subjugationist">> + She is shackled to an iron ball and chain that's almost as big as she is, and she has to slowly and comically drag it behind her to get anywhere. Occasionally she tumbles over in her struggles, flipping her white linen dress up and treating you to a good look at her panties. <<case "roman revivalist">> She is wearing a cute little toga. Occasionally you get a glance up it; a cute little pussy says hello. <<case "aztec revivalist">> @@ -1117,13 +1173,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "imp">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> imp with black hair and comically tiny bat-like wings. + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>> imp with black hair and comically tiny bat-like wings. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She has swapped to wearing much more, relatively speaking, modest clothing; extremely tight jeans and a top so small and taut you swear she's about to pop out of it. <<case "degradationist">> She has replaced her loincloth with a chastity belt containing an immense dildo; it is clearly seen distending her belly. Countless scars line her back and ass from the frequent lashings she enjoys. + <<case "supremacist">> + She's taken to carrying a cat o' nine tails whip at all times so that she's ready to lash a <<if $arcologies[0].FSSupremacistRace == "mixed">>pureblooded<<else>>non-$arcologies[0].FSSupremacistRace<</if>> slave at a moment's notice. + <<case "subjugationist">> + Her cartoonishly exaggerated $arcologies[0].FSSubjugationistRace body is just begging for a whipping, even when she isn't doing something mischievious and sneaky, which is rare. <<case "roman revivalist">> She'd fit in perfectly tormenting the condemned in Tartarus. <<case "aztec revivalist">> @@ -1198,13 +1258,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "witch">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> witch with thin, flowing robes and a wide brimmed, if rather stereotypical, witch's hat. + She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>> witch with thin, flowing robes and a wide brimmed, if rather stereotypical, witch's hat. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She still hasn't managed to undo the spell; her chest is still unnaturally smooth, not one nipple peaks the fabric of the robe. <<case "degradationist">> She still hasn't managed to undo the spell; her face, hands and every surface of her body are completely covered in tattoos. It is especially noticeable when she talks that her tongue is tattooed too; wonder what decorates the surfaces of her body you can't see? + <<case "supremacist">> + She's managed to correct the spell, and even succeed in it. She is now <<if $arcologies[0].FSSupremacistRace == "mixed">>the perfect blend of every ethnicity, with all of their best qualities and none of their flaws<<else>>ethnically 100% pure $arcologies[0].FSSupremacistRace<</if>>. If she were real, she would make the perfect breeding stock for the next generation of the master race. + <<case "subjugationist">> + She still hasn't managed to undo the spell; she looks like a racist caricature of a $arcologies[0].FSSubjugationistRace girl, and has an appropiately demeaning accent to match. What's worse, the spell also seems to have stripped most of her literacy in $language, making reading her tomes an arduous task for her. <<case "roman revivalist">> While she acts like a typical Roman woman, she is pretty obviously Greek. She can't even name the Pantheon correctly. <<case "aztec revivalist">> @@ -1291,17 +1355,21 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - She's an odd little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> girl, with slightly off mannerisms, + She's an odd little girl, with slightly off mannerisms, <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> wearing ill fitting clothing. Various movements can be seen under her misbuttoned shirt and lopsided skirt. <<case "degradationist">> wearing nothing except some oversized, strange looking piercings all over her body. You swear you see movement under her skin and her piercings have a habit of never being in the same shape or location. + <<case "supremacist">> + wearing nothing at all. She looks vaguely $arcologies[0].FSSupremacistRace, but wrong. You swear you see patches of fish-like scales on her skin, but they keep disappearing whenever you try to focus on them. + <<case "subjugationist">> + wearing nothing at all. She looks vaguely $arcologies[0].FSSubjugationistRace, but wrong. You swear you see patches of fish-like scales on her skin, but they keep disappearing whenever you try to focus on them. <<case "roman revivalist">> wearing a poorly folded toga. You swear you see movement under her skin. <<case "aztec revivalist">> - wearing a torn huipil. She looks Aztec, but wrong. You swear you see movement under her skin. + wearing a torn huipil. She looks vaguely Aztec, but wrong. You swear you see movement under her skin. <<case "egyptian revivalist">> wearing nothing at all. She looks vaguely Egyptian, but wrong. You swear you see movement under her skin. <<case "edo revivalist">> @@ -1385,13 +1453,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "incubus">> - She's a handsome little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> sex demon with a big dick and heavy balls. + She's a handsome little sex demon with a big dick and heavy balls. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She's begun wearing rather conservative clothing, but nothing can hide the bulge running down one pant leg and the two round globes in the other. <<case "degradationist">> She's recently added an obscene number of piercings to her cock and balls in addition to a pair of nipple rings. A thin chain links a ring attached to the head of her penis to the heavy rings adorning her chest. + <<case "supremacist">> + She is an ideal $arcologies[0].FSSupremacistRace man, and her massive dick is always hard and ready to continue propagating the master race. + <<case "subjugationist">> + She is a deceptively handsome $arcologies[0].FSSubjugationistRace man, and gives off an air of lust and danger that serves as a warning to not let the inferior race's libido run unchecked. <<case "roman revivalist">> She is an ideal Roman man, complete with something big and heavy hanging under her toga. <<case "aztec revivalist">> @@ -1540,13 +1612,17 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] <</if>> <<case "succubus">> - She's a beautiful little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0].FSSupremacistRace <</if>> sex demoness with an ideal figure. + She's a beautiful little sex demoness with an ideal figure. <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> She's wearing an absolutely stunning dress that perfectly hugs her curves. Surprisingly, she even has underwear on. <<case "degradationist">> She's recently added an obscene number of piercings to her labia in addition to a pair of nipple rings and a big, heavy ring on her clit. A thin chain links the clit ring to the heavy rings adorning her chest. + <<case "supremacist">> + In fact, she is the most gorgeous $arcologies[0].FSSupremacistRace woman you've ever seen. + <<case "subjugationist">> + In fact, she is the most gorgeous $arcologies[0].FSSubjugationistRace woman you've ever seen. <<case "roman revivalist">> In fact, she is the most gorgeous Roman woman you've ever seen. <<case "aztec revivalist">> @@ -1643,6 +1719,10 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset">>$arcologies[0] She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and leans forward giving you a tantalizing view of her cleavage. <<case "degradationist">> She's absentmindedly playing with her nipple rings. When she notices you eyeing her, she smiles coyly and runs her hands down her curves to her crotch where she traces the piercings dangling from her labia. + <<case "supremacist">> + She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and runs her hands down her curves, tempting you with her pure $arcologies[0].FSSupremacistRace body. + <<case "subjugationist">> + She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and runs her hands down her curves while coming onto you like a needy $arcologies[0].FSSubjugationistRace slut. <<case "chattel religionist">> She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and runs her hands down her sides and to her pussy while moaning seductively. <<case "physical idealist">> diff --git a/src/uncategorized/personalAssistantOptions.tw b/src/uncategorized/personalAssistantOptions.tw index 9e62c644409d9250d244b61d67e2ec23a9bf7282..d6db10caa61666b39a56b625f2ccf8de4231a346 100644 --- a/src/uncategorized/personalAssistantOptions.tw +++ b/src/uncategorized/personalAssistantOptions.tw @@ -912,10 +912,18 @@ She can further refine her avatar to match the arcology's social profile<<if $as [[Physical Idealist|Personal assistant options][$assistantFSAppearance = "physical idealist"]] <br> <</if>> -<<if $assistantFSAppearance != "hedonistic decadence" && $arcologies[0].FSHedonisticDecadence > 20>> +<<if $assistantFSAppearance != "hedonistic decadence" && $arcologies[0].FSHedonisticDecadenceDecoration > 20>> [[Hedonistic Decadence|Personal assistant options][$assistantFSAppearance = "hedonistic decadence"]] <br> <</if>> +<<if $assistantFSAppearance != "supremacist" && $arcologies[0].FSSupremacistDecoration > 20>> + [[Supremacist|Personal assistant options][$assistantFSAppearance = "supremacist"]] + <br> +<</if>> +<<if $assistantFSAppearance != "subjugationist" && $arcologies[0].FSSubjugationistDecoration > 20>> + [[Subjugationist|Personal assistant options][$assistantFSAppearance = "subjugationist"]] + <br> +<</if>> <<if $assistantFSAppearance != "chattel religionist" && $arcologies[0].FSChattelReligionistDecoration > 20>> [[Chattel Religionist|Personal assistant options][$assistantFSAppearance = "chattel religionist"]] <br> diff --git a/src/uncategorized/policies.tw b/src/uncategorized/policies.tw index cf055bb084036570a80b94b492fe8a5411a8ebfc..de00d8a2df859f8ed86b9cf1ac83365d44b94e3b 100644 --- a/src/uncategorized/policies.tw +++ b/src/uncategorized/policies.tw @@ -3,7 +3,7 @@ <<set $nextButton = "Back">> <<if $arcologies[0].FSSupremacistLawME == 1 && $PC.origRace != $arcologies[0].FSSupremacistRace>> <<set $nextLink = "Gameover", $gameover = "Idiot Ball 2 The Dumbassening">> -<<elseif arcologies[0].FSSubjugationistLawME == 1 && $PC.origRace == $arcologies[0].FSSubjugationistRace>> +<<elseif $arcologies[0].FSSubjugationistLawME == 1 && $PC.origRace == $arcologies[0].FSSubjugationistRace>> <<set $nextLink = "Gameover", $gameover = "Idiot Ball 3 Totally Not Idiot Ball 2 Again">> <<else>> <<set $nextLink = "Main">> diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index cf600114b6260c04458fb442ab2eb910c2e6a1f7..d891ba2decdd1a248e780254f3cb79ba194b2168 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -474,7 +474,7 @@ <<if canSee($Concubine)>> <<set $PESSevent.push("loving concubine")>> <</if>> - <<if canTalk($Concubine)>> + <<if canTalk($Concubine) && canHear($Concubine)>> <<set $events.push("PE concubine interview")>> <</if>> <</if>> diff --git a/src/uncategorized/reBusyDairy.tw b/src/uncategorized/reBusyDairy.tw index 49963844407dde2a2a9c0478b3abfc04c00ff2ba..56c362463d64ee07c5d1dd853ad88aae4a805c45 100644 --- a/src/uncategorized/reBusyDairy.tw +++ b/src/uncategorized/reBusyDairy.tw @@ -31,7 +31,7 @@ Even with high doses of modern drugs, human cows simply do not produce a very hi <<set $cash -= 1000>> <</replace>> <</link>> //This will cost <<print cashFormat(1000)>>// -<<if $club != 0>>\ +<<if $club != 0>> <br><<link "Add fresh milk to the club for a day to advertise">> <<replace "#result">> Sexual sights and sounds are all over the arcology. Nevertheless, passersby on the club are surprised to find one morning that a previously normal screen advertising your brand of milk has a luscious pair of breasts protruding through it at head height. The advertisement encourages anyone to try a free sample. The slaves constantly rotate, pressing fresh tits through the gap for public suckling. It is @@.green;generally agreed that your product is of the finest quality@@ and you even have enquiries about how it might be exported outside the arcology, should you manage to increase production. @@ -39,7 +39,7 @@ Even with high doses of modern drugs, human cows simply do not produce a very hi <<set $rep += 500>> <</replace>> <</link>> //This will cost <<print cashFormat(2000)>>// -<</if>>\ +<</if>> <<if ($cumSlaves >= 5) && ($activeSlave.fetish != "cumslut")>> <br><<link "Cum in, milk out">> <<replace "#result">> diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index 0d3cbb46e77e4b718eef153b60f5a3e533852fb7..d2d45fc073bfda23b05854da326cfa139264dd4b 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -189,7 +189,7 @@ $His $activeSlave.faceShape face is <<if ($activeSlave.hears != -2)>>//This will greatly restrict $him//<</if>> <</if>>*/ <</if>> - <<if ($cyberMod == 1) && ($stockpile.ocularImplant > 0) && ($activeSlave.earImplant != 1)>> + <<if ($cyberMod == 1) && ($stockpile.cochlearImplant > 0) && ($activeSlave.earImplant != 1)>> <<if ($activeSlave.hears != -3)>> <</if>> | [[Give her cochlear implants|Surgery Degradation][$activeSlave.earImplant = 1, $stockpile.cochlearImplant--,$cash -= $surgeryCost, $activeSlave.health -= 20,$surgeryType = "cochlear implant"]] <</if>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 5979b286a56afdd39bf09baa3d67970bdfa4f625..ee9d20306a023514c92d6fe8bb0202bd0eacd92b 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -692,7 +692,7 @@ seems to enjoy every painful step; $he's a @@.lightcoral;natural masochist.@@ <<set $slaves[$i].fetishKnown = 1>> <<else>> - @@.hotpink;appreciates@@ every painful step you make $him take. + @@.hotpink;appreciates@@ every painful step $he gets to take. <<set $slaves[$i].devotion += 1>> <</if>> <<else>> @@ -4860,7 +4860,11 @@ <<if (random(1,500) > 500+$slaves[$i].devotion)>> <<set _effect = random(1,6)>> Being so angry at $his life as a sex slave has - <<set _givingAttention = $personalAttention.findIndex(function(s) { return s.ID == $slaves[$i].ID; })>> + <<if Array.isArray($personalAttention)>> + <<set _givingAttention = $personalAttention.findIndex(function(s) { return s.ID == $slaves[$i].ID; })>> + <<else>> + <<set _givingAttention = -1>> + <</if>> <<if _givingAttention != -1 && ["look after her", "soften her behavioral flaw", "soften her sexual flaw", "build her devotion", "Teach her"].includes($personalAttention[_givingAttention].trainingRegimen)>> forced $him to face $his problems with you. Lending $him support makes it @@.hotpink;a little more tolerable.@@ <<elseif _effect == 1>> @@ -5773,101 +5777,190 @@ <</if>> <</if>> -<<if $slaves[$i].fuckdoll == 0>> - <<if $slaves[$i].fetish != "mindbroken">> - <<if $slaves[$i].eyes != 0>> - <<if $slaves[$i].eyes == -2>> +<<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> + <<set _visionFlag = 0>> + <<if $slaves[$i].eyes == -2>> + <<if $slaves[$i].hears == -2>> + <<if $slaves[$i].devotion > 50>> + Even though $he is blind and deaf, $he is devoted enough to you to allow $himself to lower $his guard. $He becomes @@.mediumaquamarine;trusting@@ of your ability to keep $him safe. + <<set $slaves[$i].trust += 5>> + <<elseif $slaves[$i].devotion > 20>> + Since $he's blind, deaf and on the cusp of devotion, $he becomes @@.hotpink;more reliant@@ on you, but also begins to be @@.mediumaquamarine;less fearful@@ of the world around $him. + <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 3>> + <<elseif ["please you", "be your Concubine", "serve in the master suite"].includes($slaves[$i].assignment)>> + $He may be blind and deaf, but $he knows nobody would dare harm $him under your watch, @@.mediumaquamarine;building $his trust@@ in you. + <<set $slaves[$i].trust += 2>> + <<elseif $slaves[$i].devotion > -20>> + $His blindness and deafness forces $him to @@.hotpink;entirely rely@@ on your mercy. However, it only @@.gold;amplifies $his fear@@ as $he has only the smell of arousal to warn of an impending threat. + <<set $slaves[$i].devotion += 10, $slaves[$i].trust -= 30>> + <<else>> + Being blind and deaf forces $him to @@.hotpink;completely rely@@ on your mercy. It does nothing to stem @@.gold;the horror@@ $he faces being unable to sense the world around $him. + <<set $slaves[$i].devotion += 20, $slaves[$i].trust -= 50>> + <</if>> + <<elseif ($slaves[$i].hears == -1 && $slaves[$i].earwear != "hearing aids") || ($slaves[$i].hears == 0 && $slaves[$i].earwear == "muffling ear plugs")>> + <<if $slaves[$i].devotion > 50>> + Even though $he is blind and unable to properly hear, $he is devoted enough to you to allow $himself to lower $his guard. $He becomes @@.mediumaquamarine;trusting@@ of your ability to keep $him safe. + <<set $slaves[$i].trust += 4>> + <<elseif $slaves[$i].devotion > 20>> + Since $he's blind, hard of hearing and on the cusp of devotion, $he becomes @@.hotpink;more reliant@@ on you, but also begins to be @@.mediumaquamarine;less fearful@@ of the world around $him. + <<set $slaves[$i].devotion += 4, $slaves[$i].trust += 2>> + <<elseif ["please you", "be your Concubine", "serve in the master suite"].includes($slaves[$i].assignment)>> + $He may be blind and hard of hearing, but $he knows nobody would dare harm $him under your watch, @@.mediumaquamarine;building $his trust@@ in you. + <<set $slaves[$i].trust += 2>> + <<elseif $slaves[$i].devotion > -20>> + $His blindness and trouble hearing forces $him to @@.hotpink;rely@@ on your mercy. However, it only @@.gold;amplifies $his fear@@ as $he strains to hear anything potential threats to $him. + <<set $slaves[$i].devotion += 7, $slaves[$i].trust -= 20>> + <<else>> + Being blind and hard of hearing forces $him to @@.hotpink;rely@@ on your mercy. It does nothing to stem @@.gold;the terrible sounds@@ $he struggles to hear. + <<set $slaves[$i].devotion += 10, $slaves[$i].trust -= 25>> + <</if>> + <<else>> + <<if $slaves[$i].devotion > 50>> + Even though $he is blind, $he is devoted enough to you to allow $himself to lower $his guard. $He becomes @@.mediumaquamarine;trusting@@ of your ability to keep $him safe. + <<set $slaves[$i].trust += 3>> + <<elseif $slaves[$i].devotion > 20>> + Since $he's blind and on the cusp of devotion, $he becomes slightly @@.hotpink;more reliant@@, but also begins to be @@.mediumaquamarine;less fearful@@ of what $he can't see. + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 1>> + <<elseif ["please you", "be your Concubine", "serve in the master suite"].includes($slaves[$i].assignment)>> + $He may be blind, but $he knows nobody would dare harm $him under your watch, @@.mediumaquamarine;building $his trust@@ in you. + <<set $slaves[$i].trust += 2>> + <<elseif $slaves[$i].devotion > -20>> + $His blindness forces $him to @@.hotpink;rely@@ on your mercy. However, it only @@.gold;amplifies $his fear@@ as $he has severely limited capabilities to defend $himself. + <<set $slaves[$i].devotion += 5, $slaves[$i].trust -= 10>> + <<else>> + Being blind forces $him to @@.hotpink;completely rely@@ on your mercy. It does nothing to stem @@.gold;the terror@@ $he faces constantly being unable to tell what will happen to $him. + <<set $slaves[$i].devotion += 10, $slaves[$i].trust -= 25>> + <</if>> + <</if>> + <<set _visionFlag = -2>> + <<elseif $slaves[$i].eyes == -1>> + <<if ($slaves[$i].eyewear != "corrective glasses") && ($slaves[$i].eyewear != "corrective contacts")>> + <<if $slaves[$i].devotion > 50>> + $His vision may be clouded but it doesn't get in the way of $his devotion to you. + <<elseif $slaves[$i].devotion > 20>> + Since $he's on the cusp of devotion, $his blurred vision makes $him @@.hotpink;slightly more submissive,@@ since $he can't always see what's happening to $him. + <<set $slaves[$i].devotion += 1>> + <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> + $His blurred vision @@.hotpink;reduces $his distaste for $his life slightly,@@ since $his fuzzy vision allows $him to ignore the details of everyone $he's expected to fuck. + <<set $slaves[$i].devotion += 1>> + <<else>> + $His blurred vision tends to make $him @@.gold;a little more fearful,@@ since $he can never tell what's about to happen to $him. + <<set $slaves[$i].trust -= 1>> + <</if>> + <<set _visionFlag = -1>> + <</if>> + <<elseif $slaves[$i].eyes == 1>> + <<if ($slaves[$i].eyewear == "blurring glasses") || ($slaves[$i].eyewear == "blurring contacts")>> + <<if $slaves[$i].devotion > 50>> + $He tolerates the annoyance of blurred vision induced by $his eyewear. + <<elseif $slaves[$i].devotion > 20>> + Since $he's on the cusp of devotion, the blurred vision induced by $his eyewear actually makes $him @@.hotpink;slightly more submissive.@@ + <<set $slaves[$i].devotion += 1>> + <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> + The blurred vision induced by $his eyewear actually @@.hotpink;reduces $his distaste for $his life slightly,@@ since $his fuzzy vision allows $him to ignore the details of everyone $he's expected to fuck. + <<set $slaves[$i].devotion += 1>> + <<else>> + The blurred vision induced by $his eyewear actually @@.mediumorchid;infuriates $him.@@ + <<set $slaves[$i].devotion -= 1>> + <</if>> + <<set _visionFlag = -1>> + <</if>> + <</if>> + <<if _visionFlag == -1>> + <<if $slaves[$i].hears == -2>> + <<if $slaves[$i].devotion > 50>> + Since $he is also deaf, $he begins to @@.mediumaquamarine;rely@@ on you to give $him the feedback $his body does can not. + <<set $slaves[$i].trust += 3>> + <<elseif $slaves[$i].devotion > 20>> + Since $he is also deaf, $he becomes @@.hotpink;very reliant@@ on you, but also begins to @@.mediumaquamarine;trust@@ you to convery what $his body does not. + <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> + <<elseif ["please you", "be your Concubine", "serve in the master suite"].includes($slaves[$i].assignment)>> + Since $he is also deaf, $he views you as $his @@.mediumaquamarine;blurry guardian.@@ + <<set $slaves[$i].trust += 5>> + <<elseif $slaves[$i].devotion > -20>> + Since $he is also deaf, $he @@.gold;descends into paranoia@@ as every blurry shape could be out to get $him. + <<set $slaves[$i].trust -= 20>> + <<else>> + Since $he is also deaf, $he @@.gold;delves into the depths of paranoia@@ as every blurry shape could be out to get $him. $He becomes increasingly @@.mediumorchid;hateful@@ to those around $him in an effort to ward off threats. + <<set $slaves[$i].trust -= 30, $slaves[$i].devotion -= 10>> + <</if>> + <<elseif $slaves[$i].hears == -1>> + <<if ($slaves[$i].earwear != "hearing aids")>> <<if $slaves[$i].devotion > 50>> - Even though $he is blind, $he is devoted enough to you to allow $himself to lower $his guard. $He becomes @@.mediumaquamarine;trusting@@ of your ability to keep $him safe. - <<set $slaves[$i].trust += 3>> + $His hearing may be muddled too, but $he doesn't let it bother $him. <<elseif $slaves[$i].devotion > 20>> - Since $he's blind and on the cusp of devotion, $he becomes slightly @@.hotpink;more reliant@@, but also begins to be @@.mediumaquamarine;less fearful@@ of what $he can't see. - <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 1>> - <<elseif ["please you", "be your Concubine", "serve in the master suite"].includes($slaves[$i].assignment)>> - $He may be blind, but $he knows nobody would dare harm $him under your watch, @@.mediumaquamarine;building $his trust@@ in you. - <<set $slaves[$i].trust += 2>> - <<elseif $slaves[$i].devotion > -20>> - $His blindness forces $him to @@.hotpink;rely@@ on your mercy. However, it only @@.gold;amplifies $his fear@@ as $he has severely limited capabilities to defend $himself. - <<set $slaves[$i].devotion += 5, $slaves[$i].trust -= 10>> + Since $he is also hard of hearing, $he is forced into @@.hotpink;very submissive state,@@ though @@.gold;worrying thoughts@@ begin to plague his mind. + <<set $slaves[$i].devotion += 3, $slaves[$i].trust -= 3>> + <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> + Since $he is also hard of hearing, $he has a hard time understanding what partners want from $him, often causing them to @@.gold;get forceful@@ with $him. + <<set $slaves[$i].trust -= 5>> <<else>> - Being blind forces $him to @@.hotpink;completely rely@@ on your mercy. It does nothing to stem @@.gold;the terror@@ $he faces constantly being unable to tell what will happen to $him. - <<set $slaves[$i].devotion += 10, $slaves[$i].trust -= 25>> - <</if>> - <<elseif $slaves[$i].eyes == -1>> - <<if ($slaves[$i].eyewear != "corrective glasses") && ($slaves[$i].eyewear != "corrective contacts")>> - <<if $slaves[$i].devotion > 50>> - <<elseif $slaves[$i].devotion > 20>> - Since $he's on the cusp of devotion, $his blurred vision makes $him @@.hotpink;slightly more submissive,@@ since $he can't always see what's happening to $him. - <<set $slaves[$i].devotion += 1>> - <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> - $His blurred vision @@.hotpink;reduces $his distaste for $his life slightly,@@ since $his fuzzy vision allows $him to ignore the details of everyone $he's expected to fuck. - <<set $slaves[$i].devotion += 1>> - <<else>> - $His blurred vision tends to make $him @@.mediumorchid;a little more fearful,@@ since $he can never tell what's about to happen to $him. - <<set $slaves[$i].trust -= 1>> - <</if>> - <</if>> - <<elseif $slaves[$i].eyes == 1>> - <<if ($slaves[$i].eyewear == "blurring glasses") || ($slaves[$i].eyewear == "blurring contacts")>> - <<if $slaves[$i].devotion > 50>> - $He tolerates the annoyance of blurred vision induced by $his eyewear. - <<elseif $slaves[$i].devotion > 20>> - Since $he's on the cusp of devotion, the blurred vision induced by $his eyewear actually makes $him @@.hotpink;slightly more submissive.@@ - <<set $slaves[$i].devotion += 1>> - <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> - The blurred vision induced by $his eyewear actually @@.hotpink;reduces $his distaste for $his life slightly,@@ since $his fuzzy vision allows $him to ignore the details of everyone $he's expected to fuck. - <<set $slaves[$i].devotion += 1>> - <<else>> - The blurred vision induced by $his eyewear actually @@.mediumorchid;infuriates $him.@@ - <<set $slaves[$i].devotion -= 1>> - <</if>> + Since $he is also hard of hearing, @@.gold;$he becomes incresingly paranoid@@ since $he can barely discern other's intent any more. + <<set $slaves[$i].trust -= 5>> <</if>> <</if>> - <<if $slaves[$i].hears == -2>> + <<elseif $slaves[$i].hears == 0>> + <<if ($slaves[$i].earwear == "muffling ear plugs")>> <<if $slaves[$i].devotion > 50>> - Even though $he is deaf, $he is devoted enough to you to allow $himself to lower $his guard. $He becomes @@.mediumaquamarine;trusting@@ of your ability to keep $him safe. - <<set $slaves[$i].trust += 3>> + $He tolerates the annoyance of muffled hearing induced by $his ear plugs. <<elseif $slaves[$i].devotion > 20>> - Since $he's deaf and on the cusp of devotion, $he becomes slightly @@.hotpink;more reliant@@, but also begins to be @@.mediumaquamarine;less fearful@@ of what $he can't hear. - <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 1>> - <<elseif ["please you", "be your Concubine", "serve in the master suite"].includes($slaves[$i].assignment)>> - $He may be deaf, but $he knows nobody would dare harm $him under your watch, @@.mediumaquamarine;building $his trust@@ in you. - <<set $slaves[$i].trust += 2>> - <<elseif $slaves[$i].devotion > -20>> - $His deafness forces $him to @@.hotpink;rely@@ on your kindness. However, it only @@.gold;amplifies $his discomfort@@ as $he has notably limited capabilities to defend $himself. - <<set $slaves[$i].devotion += 5, $slaves[$i].trust -= 10>> + Since $his hearing is also muffled, $he is forced into @@.hotpink;very submissive state,@@ though @@.gold;worrying thoughts@@ begin to plague his mind. + <<set $slaves[$i].devotion += 3, $slaves[$i].trust -= 3>> + <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> + Since $his hearing is also muffled, $he has a hard time understanding what partners want from $him, often causing them to @@.gold;get forceful@@ with $him. + <<set $slaves[$i].trust -= 5>> <<else>> - Being deaf forces $him to @@.hotpink;completely rely@@ on your kindness. It does nothing to stem @@.gold;the fear@@ $he faces constantly being unable to tell what anyone is saying. - <<set $slaves[$i].devotion += 10, $slaves[$i].trust -= 25>> + The muffled hearing induced by $his ear plugs @@.mediumorchid;infuriates him@@ with $his vision problems. + <<set $slaves[$i].devotion -= 5>> <</if>> - <<elseif $slaves[$i].hears == -1>> - <<if ($slaves[$i].earwear != "hearing aids")>> - <<if $slaves[$i].devotion > 50>> - <<elseif $slaves[$i].devotion > 20>> - Since $he's on the cusp of devotion, $his muffled hearing makes $him @@.hotpink;slightly more submissive,@@ since $he can't always hear what's going on around $him. - <<set $slaves[$i].devotion += 1>> - <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> - $His muffled hearing @@.hotpink;reduces $his distaste for $his life slightly,@@ since $his impaired hearing allows $him to ignore the disgusting comments from everyone around $him. - <<set $slaves[$i].devotion += 1>> - <<else>> - $His muffled hearing tends to make $him @@.mediumorchid;a little more fearful,@@ since $he can never tell what people are saying about $him. - <<set $slaves[$i].trust -= 1>> - <</if>> + <</if>> + <</if>> + <<elseif _visionFlag != -2>> + <<if $slaves[$i].hears == -2>> + <<if $slaves[$i].devotion > 50>> + Even though $he is deaf, $he is devoted enough to you to allow $himself to lower $his guard. $He becomes @@.mediumaquamarine;trusting@@ of your ability to watch $his back. + <<set $slaves[$i].trust += 1>> + <<elseif $slaves[$i].devotion > 20>> + Since $he's deaf and on the cusp of devotion, $he becomes slightly @@.hotpink;more reliant@@, but also begins to be @@.mediumaquamarine;less fearful@@ of what is lurking out of sight. + <<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>> + <<elseif ["please you", "be your Concubine", "serve in the master suite"].includes($slaves[$i].assignment)>> + $He may be deaf, but no one can sneak up on $him while $he is with you, @@.mediumaquamarine;developing the trust@@ that you have $his back. + <<set $slaves[$i].trust += 2>> + <<elseif $slaves[$i].devotion > -20>> + $His deafness forces $him to @@.gold;distrust everyone@@ as everything out of sight is a potential threat to $him. + <<set $slaves[$i].trust -= 10>> + <<else>> + Being deaf forces $him to @@.gold;fear@@ everything he can't see. At any moment, something could jump on $his back and force $him into position. + <<set $slaves[$i].trust -= 25>> + <</if>> + <<elseif $slaves[$i].hears == -1>> + <<if ($slaves[$i].earwear != "hearing aids")>> + <<if $slaves[$i].devotion > 50>> + $His hearing may be muddled but it doesn't get in the way of $his devotion to you. + <<elseif $slaves[$i].devotion > 20>> + Since $he's on the cusp of devotion, $his muffled hearing makes $him @@.hotpink;slightly more submissive,@@ since $he can't always hear what's going on around $him. + <<set $slaves[$i].devotion += 1>> + <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> + $His muffled hearing @@.mediumorchid;reduces $his distaste for $his life slightly,@@ since $his impaired hearing allows $him to ignore the disgusting comments from everyone around $him. + <<set $slaves[$i].devotion += 1>> + <<else>> + $His muffled hearing tends to make $him @@.mediumorchid;a little more fearful,@@ since $he can never tell what people are saying about $him. + <<set $slaves[$i].trust -= 1>> <</if>> - <<elseif $slaves[$i].hears == 0>> - <<if ($slaves[$i].earwear == "muffling ear plugs")>> - <<if $slaves[$i].devotion > 50>> - $He tolerates the annoyance of muffled hearing induced by $his ear plugs. - <<elseif $slaves[$i].devotion > 20>> - Since $he's on the cusp of devotion, the muffled hearing induced by $his ear plugs actually makes $him @@.hotpink;slightly more submissive.@@ - <<set $slaves[$i].devotion += 1>> - <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> - The muffled hearing induced by $his ear plugs actually @@.hotpink;reduces $his distaste for $his life slightly,@@ since $his impaired hearing allows $him to ignore the disgusting comments from everyone around $him. - <<set $slaves[$i].devotion += 1>> - <<else>> - The muffled hearing induced by $his ear plugs @@.mediumorchid;irritates $him.@@ - <<set $slaves[$i].devotion -= 1>> - <</if>> + <</if>> + <<elseif $slaves[$i].hears == 0>> + <<if ($slaves[$i].earwear == "muffling ear plugs")>> + <<if $slaves[$i].devotion > 50>> + $He tolerates the annoyance of muffled hearing induced by $his ear plugs. + <<elseif $slaves[$i].devotion > 20>> + Since $he's on the cusp of devotion, the muffled hearing induced by $his ear plugs actually makes $him @@.hotpink;slightly more submissive.@@ + <<set $slaves[$i].devotion += 1>> + <<elseif ($slaves[$i].assignment == "serve the public") || ($slaves[$i].assignment == "serve in the club") || ($slaves[$i].assignment == "whore") || ($slaves[$i].assignment == "work in the brothel")>> + The muffled hearing induced by $his ear plugs actually @@.hotpink;reduces $his distaste for $his life slightly,@@ since $his impaired hearing allows $him to ignore the disgusting comments from everyone around $him. + <<set $slaves[$i].devotion += 1>> + <<else>> + The muffled hearing induced by $his ear plugs @@.mediumorchid;irritates $him.@@ + <<set $slaves[$i].devotion -= 1>> <</if>> <</if>> <</if>> diff --git a/src/uncategorized/saServeThePublic.tw b/src/uncategorized/saServeThePublic.tw index 077f600863e731f84413520bbb09fef8c5697227..f7d1776ca28755660dce19c7fba77dacad99ef88 100644 --- a/src/uncategorized/saServeThePublic.tw +++ b/src/uncategorized/saServeThePublic.tw @@ -131,7 +131,7 @@ the public. <<if ($slaves[$i].bellyImplant == -1)>> <<if ($slaves[$i].faceImplant < 30)>> <<set $beautyMultiplier += 0.05>> - Many citizens come to $clubName looking to get with a natural girl like $him. + Many citizens come to $clubName looking to get with a natural $girl like $him. <</if>> <</if>> <</if>> @@ -163,48 +163,52 @@ the public. <<if $clubAdsXX == 1>> <<if ($slaves[$i].dick == 0)>> <<set $beautyMultiplier += 0.05>> - Almost everyone who comes to $clubName is looking to fuck a girl like $him. + Almost everyone who comes to $clubName is looking to fuck a $girl like $him. <</if>> <<elseif $clubAdsXX == -1>> <<if ($slaves[$i].dick > 0)>> <<set $beautyMultiplier += 0.05>> - Almost everyone who comes to $clubName is looking to poke a girl who cums when buttfucked. + Almost everyone who comes to $clubName is looking to poke a $girl who cums when buttfucked. <</if>> <</if>> <</if>> + <<if (($slaves[$i].hears == -1 && $slaves[$i].earwear != "hearing aids") || ($slaves[$i].hears == 0 && $slaves[$i].earwear == "muffling ear plugs") ||($slaves[$i].hears == -2))>> + $His inability to move to the rhythm of the music is very off putting to those looking to party. + <<set $beautyMultiplier -= 0.15>> + <</if>> <<if $DJ != 0>> <<if $DJRepBonus > 0>> - <<set $beautyMultiplier += $DJRepBonus>> - <<if ($slaves[$i].assignment == "serve the public")>> - Working - <<else>> - Living and working - <</if>> - out of the club, $he comes under <<= SlaveFullName($DJ)>>'s - <<if $DJRepBonus < 0.1>> - completely inept - <<elseif $DJRepBonus < 0.2>> - unskilled - <<elseif $DJRepBonus < 0.3>> - skillful - <<else>> - masterful - <</if>> - leadership. - <<if ($DJ.face > 40) && ($DJ.intelligence > 1)>> - <<if ($slaves[$i].devotion > 20)>> - The DJ is such a gorgeous diva that $he's swept along by $his charisma, and does $his best to be a worthy part of $his entourage. + <<set $beautyMultiplier += $DJRepBonus>> + <<if ($slaves[$i].assignment == "serve the public")>> + Working + <<else>> + Living and working <</if>> - <</if>> - <<if $DJignoresFlaws != 1>> - <<if !["none", "neglectful", "cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "breeder"].includes($slaves[$i].sexualFlaw) && (random(1,100) > 90)>> - <<= SlaveFullName($DJ)>> manages to @@.green;break@@ $slaves[$i].slaveName of $his sexual flaws. - <<set $slaves[$i].sexualFlaw = "none">> - <<elseif ($slaves[$i].behavioralFlaw != "none") && (random(1,100) > 90)>> - <<= SlaveFullName($DJ)>> manages to @@.green;break@@ $slaves[$i].slaveName of $his flaws. - <<set $slaves[$i].behavioralFlaw = "none">> + out of the club, $he comes under <<= SlaveFullName($DJ)>>'s + <<if $DJRepBonus < 0.1>> + completely inept + <<elseif $DJRepBonus < 0.2>> + unskilled + <<elseif $DJRepBonus < 0.3>> + skillful + <<else>> + masterful + <</if>> + leadership. + <<if ($DJ.face > 40) && ($DJ.intelligence > 1)>> + <<if ($slaves[$i].devotion > 20)>> + The DJ is such a gorgeous diva that $he's swept along by $his charisma, and does $his best to be a worthy part of $his entourage. + <</if>> + <</if>> + <<if $DJignoresFlaws != 1>> + <<if !["none", "neglectful", "cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "breeder"].includes($slaves[$i].sexualFlaw) && (random(1,100) > 90)>> + <<= SlaveFullName($DJ)>> manages to @@.green;break@@ $slaves[$i].slaveName of $his sexual flaws. + <<set $slaves[$i].sexualFlaw = "none">> + <<elseif ($slaves[$i].behavioralFlaw != "none") && (random(1,100) > 90)>> + <<= SlaveFullName($DJ)>> manages to @@.green;break@@ $slaves[$i].slaveName of $his flaws. + <<set $slaves[$i].behavioralFlaw = "none">> + <</if>> <</if>> - <</if>> <</if>> <</if>> <</if>> @@ -550,6 +554,15 @@ $His appearance attracted $beauty members of the public (<<print Math.trunc($bea <<set $beauty -= 1>> <</if>> +<<if (($slaves[$i].hears == -1 && $slaves[$i].earwear != "hearing aids") || ($slaves[$i].hears == 0 && $slaves[$i].earwear == "muffling ear plugs") ||($slaves[$i].hears == -2))>> + $His trouble hearing causes $him to miss potential partners. + <<if !canHear($slaves[$i])>> + <<set $beauty *= .5>> + <<else>> + <<set $beauty *= .75>> + <</if>> +<</if>> + <<if canTalk($slaves[$i])>> <<if $slaves[$i].voice > 2>> <<if $slaves[$i].voiceImplant > 0>> diff --git a/src/uncategorized/saTakeClasses.tw b/src/uncategorized/saTakeClasses.tw index cb9dec8a51aeb1dca43e075c882812c74cdd299f..ed5d98afed7d9ce7f54f3ac8e6504c34af3572c4 100644 --- a/src/uncategorized/saTakeClasses.tw +++ b/src/uncategorized/saTakeClasses.tw @@ -64,6 +64,14 @@ <</if>> <</if>> +<<if !canHear($slaves[$i]) && !canSee($slaves[$i])>> + With $his inability to hear and see, absorbing the content is extremely difficult. + <<set _learning = -2>> +<<elseif !canHear($slaves[$i]) || !canSee($slaves[$i])>> + With $his impairements, $he needs special lessons to properly learn. + <<set _learning = 0>> +<</if>> + <<if $slaves[$i].fetish != "mindbroken">> <<if ($slaves[$i].intelligence >= 3)>> $He is a genius, diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw index 927a52e273a425a96fb8b380354fa21ded629b03..f89ed810c0979c80c89d9fb3bff5ddf8a16c2dbf 100644 --- a/src/uncategorized/saWhore.tw +++ b/src/uncategorized/saWhore.tw @@ -165,7 +165,11 @@ $his body. <</if>> <<if $Madam != 0>> <<if $madamCashBonus > 0>> - <<set $beautyMultiplier += $madamCashBonus>> + <<if !canHear($slaves[$i])>> + <<set $beautyMultiplier += $madamCashBonus/2>> + <<else>> + <<set $beautyMultiplier += $madamCashBonus>> + <</if>> <<if ($slaves[$i].assignment == "whore")>> Working <<else>> @@ -184,11 +188,14 @@ $his body. leadership. <<if ($Madam.dick > 2) && canAchieveErection($Madam)>> <<if ($slaves[$i].devotion <= 20)>> - The Madam rapes $him when $he fails to meet standards. + The Madam rapes $him when $he fails to meet standards. <<else>> - The Madam uses her dick to reward $him when $he does well and needs some loving. + The Madam uses her dick to reward $him when $he does well and needs some loving. <</if>> <</if>> + <<if !canHear($slaves[$i])>> + Unfortunately, $his inability to hear wastes most of $Madam.slaveName's advice. + <</if>> <<if $MadamIgnoresFlaws != 1>> <<if !["none", "neglectful", "cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "breeder"].includes($slaves[$i].sexualFlaw) && (random(1,100) > 90)>> <<= SlaveFullName($Madam)>> manages to @@.green;break@@ $slaves[$i].slaveName of $his sexual flaws. @@ -465,6 +472,15 @@ $His appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a d <<set $beauty -= 1>> <</if>> +<<if (($slaves[$i].hears == -1 && $slaves[$i].earwear != "hearing aids") || ($slaves[$i].hears == 0 && $slaves[$i].earwear == "muffling ear plugs") ||($slaves[$i].hears == -2)) && $slaves[$i].assignment == "whore">> + $His trouble hearing causes $him to often not recognize $he's being picked up, missing out on partners. + <<if !canHear($slaves[$i])>> + <<set $beauty *= .75>> + <<else>> + <<set $beauty *= .90>> + <</if>> +<</if>> + <<if $slaves[$i].assignment == "work in the brothel" && $slaves[$i].devotion >= 50>> Being so far from your presence @@.mediumorchid;weakens $his intense devotion to you.@@ <</if>> diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw index 54ff0778e5f81e267fc638f56c6fa2b81bdc0e68..f4a37d17e04d37f1aafb762abbaaff2ff4bd02f3 100644 --- a/src/uncategorized/slaveAssignmentsReport.tw +++ b/src/uncategorized/slaveAssignmentsReport.tw @@ -301,6 +301,9 @@ <<if !canWalk($Lurcher)>> ''__@@.pink;$Lurcher.slaveName@@__'' is no longer able to run @@.yellow;and cannot course as a lurcher.@@<br> <<set $Lurcher = 0>> + <<elseif !canHear($Lurcher) && !canSee($Lurcher)>> + ''__@@.pink;$Lurcher.slaveName@@__'' is no longer able to track the hares @@.yellow;and cannot course as a lurcher.@@<br> + <<set $Lurcher = 0>> <<elseif $Lurcher.bellyPreg >= 60000>> ''__@@.pink;$Lurcher.slaveName@@__'' is too pregnant to run @@.yellow;and cannot course as a lurcher.@@ <<set $Lurcher = 0>> diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index 618ebad92f3b511baa0535b9bd13b340082d1102..7acedc1fef0369c520ec5819e9f804ce8ce131ce 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -5,7 +5,7 @@ /* disallow surgery for slaves on certain assignments */ <<switch $activeSlave.assignment>> <<case "be your agent" "live with your agent">> - @@.red;You must retrieve $activeSlave.slaveName from her assignment before performing surgery on $him.@@ + @@.red;You must retrieve $activeSlave.slaveName from $his assignment before performing surgery on $him.@@ <<goto $nextLink>> <</switch>> @@ -28,6 +28,7 @@ <<if ($activeSlave.health < random(-100,-80)) && !["braces", "removeBraces", "basicPLimbs", "sexPLimbs", "beautyPLimbs", "combatPLimbs", "cyberPLimbs", "insemination"].includes($surgeryType)>> $activeSlave.slaveName @@.red;has died from complications of surgery.@@ <<if $surgeryType == "ocular implant">>At least the ocular implants are still good.<<set $stockpile.ocularImplant++>><</if>> + <<if $surgeryType == "cochlear implant">>At least the cochlear implants are still good.<<set $stockpile.cochlearImplant++>><</if>> <<include "Remove activeSlave">> <<set $nextLink = "Main">> <<elseif $surgeryType == "breastShapePreservation" && (($activeSlave.health-($activeSlave.boobs/1000)) < random(-100,-80))>> @@ -45,7 +46,7 @@ <<set $activeSlave.nipples = "huge">> <</if>> <<if ($activeSlave.sexualFlaw == "breast growth")>> - <<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. The immense bust $he managed to grow has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on her<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on her<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, $his mind unable to comprehend why this has happened to $him. $His hands fall to $his sides as $his will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, $his mind unable to comprehend why this has happened to $him. $He sobs once as $his will to go on breaks apart.<</if>> $He loved $his enormous breasts, and now that they are gone, $he has nothing to live for. @@.red;Your apparent theft of $his obsession has broken $his mind@@. As with all invasive surgery @@.red;$his health has been affected.@@ + <<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. The immense bust $he managed to grow has been all but stripped from $him. $His face fills with disbelief as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with disbelief as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$His hands immediately dart to grope $his tits, but $he only ends up grabbing air. $His face twitches, $his mind unable to comprehend why this has happened to $him. $His hands fall to $his sides as $his will breaks.<<else>> $He tries to squirm, and finds $he is no longer pinned by $his tits. $His face twitches, $his mind unable to comprehend why this has happened to $him. $He sobs once as $his will to go on breaks apart.<</if>> $He loved $his enormous breasts, and now that they are gone, $he has nothing to live for. @@.red;Your apparent theft of $his obsession has broken $his mind@@. As with all invasive surgery @@.red;$his health has been affected.@@ <<set $activeSlave.trust = -50>> <<set $activeSlave.devotion = -50>> <<set $activeSlave.fetish = "mindbroken">> @@ -54,7 +55,7 @@ <<set $activeSlave.behavioralQuirk = "none">> <<set $activeSlave.behavioralFlaw = "none">> <<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.devotion < 20)>> - <<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once magnificent, immense bust has been all but stripped from $him. $His face fills with resentment as $his flatness dawns on her<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with resentment as $his flatness dawns on her<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He loved her enormous breasts, and they were apparently swiped from off $his chest by the person $he was just beginning to entrust $himself to. @@.mediumorchid;$He sees this as a betrayal by you@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ that you may chose to steal something else $he loves, even though it was your intent to preserve them. + <<if canSee($activeSlave)>>$He can hardly believe what $he is seeing. $His once magnificent, immense bust has been all but stripped from $him. $His face fills with resentment as $his flatness dawns on $him<<else>>$He immediately notices the lack of an immense weight hanging off $his chest. $His face fills with resentment as $his flatness dawns on $him<</if>>. <<if $activeSlave.amp != 1>>$He's still sore, so $he doesn't touch them, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<<else>>$He's still sore, so $he keeps $his torso still, but <<if canSee($activeSlave)>>$he glares daggers<<else>>her face contorts with distaste<</if>>.<</if>> $He loved her enormous breasts, and they were apparently swiped from off $his chest by the person $he was just beginning to entrust $himself to. @@.mediumorchid;$He sees this as a betrayal by you@@. As with all invasive surgery @@.red;$his health has been affected.@@ $He is now @@.gold;terribly afraid@@ that you may chose to steal something else $he loves, even though it was your intent to preserve them. <<set $activeSlave.trust -= 40>> <<set $activeSlave.devotion -= 20>> <<elseif ($activeSlave.devotion > 50)>> @@ -112,7 +113,7 @@ <<switch $surgeryType>> <<case "fuckdoll" "mindbreak" "blind" "remove eyes" "amp" "removeLimbs" "amp1" "PLimb interface1" "PLimb interface2" "PLimb interface3">> <<set _ID = $activeSlave.ID>> - <<if _ID == $Lurc$him.ID>><<set $Lurcher = 0>><</if>> + <<if _ID == $Lurcher.ID>><<set $Lurcher = 0>><</if>> <<if _ID == $Recruiter.ID>><<set $Recruiter = 0>><</if>> <<if _ID == $HeadGirl.ID>><<set $HeadGirl = 0>><</if>> <<if _ID == $Bodyguard.ID>><<set $Bodyguard = 0>><</if>> @@ -120,7 +121,7 @@ <<if _ID == $Madam.ID>><<set $Madam = 0>><</if>> <<if _ID == $DJ.ID>><<set $DJ = 0>><</if>> <<if _ID == $Milkmaid.ID>><<set $Milkmaid = 0>><</if>> - <<if _ID == $Schoolteac$him.ID>><<set $Schoolteacher = 0>><</if>> + <<if _ID == $Schoolteacher.ID>><<set $Schoolteacher = 0>><</if>> <<if _ID == $Attendant.ID>><<set $Attendant = 0>><</if>> <<if _ID == $Nurse.ID>><<set $Nurse = 0>><</if>> <<if _ID == $Stewardess.ID>><<set $Stewardess = 0>><</if>> @@ -1227,21 +1228,21 @@ As the remote surgery's long recovery cycle completes, $He's such a complete buttslut, though, that $he finds $he doesn't really care. $He never really paid much attention to her own dick; for $him, sex is about the phalli that get rammed up $his ass. And you didn't take that from $him. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $he'll never be anything but a butthole slut, and of course is forced even further into @@.hotpink;submission to your will.@@ <<set $activeSlave.devotion += 8, $activeSlave.trust += 8>> <<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetishknown == 1) && ($activeSlave.fetishStrength > 95) && ($activeSlave.fetish == "cumslut")>> - $He's such an oral slut, though, that $he finds $he doesn't really care. $He never really paid much attention to $his dick; for $him, sex is about what $he gets to suck. As far as $he's concerned, you've simply confirmed that her most important hole is the one in her face. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $he'll never be anything more than a nice inviting facepussy, and of course, $he's forced even further into @@.hotpink;submission to your will.@@ + $He's such an oral slut, though, that $he finds $he doesn't really care. $He never really paid much attention to $his dick; for $him, sex is about what $he gets to suck. As far as $he's concerned, you've simply confirmed that $his most important hole is the one in $his face. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $he'll never be anything more than a nice inviting facepussy, and of course, $he's forced even further into @@.hotpink;submission to your will.@@ <<set $activeSlave.devotion += 8, $activeSlave.trust += 8>> <<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetishknown == 1) && ($activeSlave.fetishStrength > 95) && ($activeSlave.fetish == "submissive")>> $He's such a total submissive, though, that $he accepts even this. Having $his cock removed, reducing $him to a sexually helpless place where $he can only receive pleasure by being penetrated, is perhaps the final step in sexual slavery, and $he's a little awed by it. If anything, $he's @@.mediumaquamarine;reassured@@ by the implicit promise that $his body exists for the sexual gratification of others, and of course, $he's forced even further into @@.hotpink;submission to your will.@@ <<set $activeSlave.devotion += 8, $activeSlave.trust += 8>> <<elseif $activeSlave.devotion > 95>> - Doubt, fear, and even nausea play across her face, but $he's so worshipful of you that $he masters them all, accepting that this is your will. There's surprisingly little mental effect on $him. The horror of having $his dick cut off is so strong that it breaks through to $him, and the only way $he can find to deal with it is to think about it as little as possible. $He falls back on worshipful duty. + Doubt, fear, and even nausea play across $his face, but $he's so worshipful of you that $he masters them all, accepting that this is your will. There's surprisingly little mental effect on $him. The horror of having $his dick cut off is so strong that it breaks through to $him, and the only way $he can find to deal with it is to think about it as little as possible. $He falls back on worshipful duty. <<elseif $activeSlave.devotion > 50>> - $He's devoted to you, but doubt and fear play across her face as $he comes to terms with what's happened. $He does not see how having $his dick removed will improve her sexual slavery. $He does not rage or scream, but $he does cry, @@.mediumorchid;sadly wondering@@ whether $he's valuable to you at all, or if $he's just a surgical plaything to be degraded. $He's @@.gold;very frightened@@ that you'll cut off more of her remaining parts. + $He's devoted to you, but doubt and fear play across her face as $he comes to terms with what's happened. $He does not see how having $his dick removed will improve $his sexual slavery. $He does not rage or scream, but $he does cry, @@.mediumorchid;sadly wondering@@ whether $he's valuable to you at all, or if $he's just a surgical plaything to be degraded. $He's @@.gold;very frightened@@ that you'll cut off more of her remaining parts. <<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>> <<elseif $activeSlave.devotion > 20>> - $He's properly broken to slavery, but this is much too far. Having $his dick cut off cuts straight through her conditioning, and tears roll down her face as the horrible permanence of what's happened to her really sinks in. @@.mediumorchid;Open anger@@ begins to become apparent through her tears; $he thought that her obedience merited better than this, and $he's @@.gold;extremely terrified@@ to find that despite being a decent slave, $he remains a surgical playground. + $He's properly broken to slavery, but this is much too far. Having $his dick cut off cuts straight through her conditioning, and tears roll down her face as the horrible permanence of what's happened to her really sinks in. @@.mediumorchid;Open anger@@ begins to become apparent through $his tears; $he thought that $his obedience merited better than this, and $he's @@.gold;extremely terrified@@ to find that despite being a decent slave, $he remains a surgical playground. <<set $activeSlave.trust -= 20, $activeSlave.devotion -= 20>> <<else>> - $He's horrified almost beyond the ability of her mind to comprehend. $His face takes on a blank look as $he goes into shock. There's no screaming and no tears, not yet; it will take her time to process what's happened to $him. Without a doubt, $he'll be absolutely filled by @@.mediumorchid;rage@@ and @@.gold;terror.@@ + $He's horrified almost beyond the ability of $his mind to comprehend. $His face takes on a blank look as $he goes into shock. There's no screaming and no tears, not yet; it will take $his time to process what's happened to $him. Without a doubt, $he'll be absolutely filled by @@.mediumorchid;rage@@ and @@.gold;terror.@@ <<set $activeSlave.trust -= 40, $activeSlave.devotion -= 40>> <</if>> <<else>> @@ -1442,10 +1443,10 @@ As the remote surgery's long recovery cycle completes, <<case "circumcision">> <<if ($activeSlave.dick > 0)>> <<if ($activeSlave.devotion > 50)>> - $He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, @@.hotpink;$he's very happy you'd take an interest in $his penis,@@ and looks forward to having a slightly easier time keeping $himself clean through her life as a sex slave. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@ + $He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, @@.hotpink;$he's very happy you'd take an interest in $his penis,@@ and looks forward to having a slightly easier time keeping $himself clean through $his life as a sex slave. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@ <<set $activeSlave.devotion += 4>> <<elseif ($activeSlave.devotion > 20)>> - $He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief. $He's so elated that $he hasn't been severely damaged that $he doesn't mind your taking surgical control of her member. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@ + $He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief. $He's so elated that $he hasn't been severely damaged that $he doesn't mind your taking surgical control of $his member. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@ <<else>> $He exits the surgery gingerly, since $he can feel that something was done to $his dick. $He examines it carefully <<if canSee($activeSlave)>>in the mirror<<else>>by feeling alone<</if>>. Realizing that $he's been circumcised, $he's flooded with relief, since $he was afraid that you'd done something far more terrible. Once $he has time to think about it, though, $he's somewhat @@.mediumorchid;resentful,@@ since $he naturally feels a certain proprietary interest in her own penis. Circumcision of an adult is not a trivial procedure, so @@.red;$his health has been slightly affected.@@ <<set $activeSlave.devotion -= 5>> @@ -1684,10 +1685,10 @@ As the remote surgery's long recovery cycle completes, $He's @@.gold;frightened,@@ once $he discovers what $he can do, and what $he is. $His cybernetic limbs are restricted by the arcology systems, for now, but $he quickly realizes what they are. $He is not, to say the least, thrilled by the revelation that $he is now a living weapon, and is kept awake by thoughts of what you might be planning for $him. <<set $activeSlave.trust -= 5>> <<elseif ($activeSlave.combatSkill == 1) && ($activeSlave.devotion > 75)>> - $He leaves the surgery with a purpose, her footsteps a bit heavier than before. $He heads down to the armory's range, still naked, and when $he gets there, $he places her dominant hand over her thigh on that side. It folds open, revealing a handgun, which $he draws and empties into a <<if canSee($activeSlave)>>target<<else>>beeping target<</if>>; as $he fires the last rounds, $he uses her off hand to reach down to that thigh, which folds open and reveals spare magazines. $He @@.hotpink;thanks you profusely@@ the next time $he sees you. $He knows that her prosthetics will enhance her combat effectiveness and $he thinks they are //cool.// + $He leaves the surgery with a purpose, $his footsteps a bit heavier than before. $He heads down to the armory's range, still naked, and when $he gets there, $he places $his dominant hand over $his thigh on that side. It folds open, revealing a handgun, which $he draws and empties into a <<if canSee($activeSlave)>>target<<else>>beeping target<</if>>; as $he fires the last rounds, $he uses her off hand to reach down to that thigh, which folds open and reveals spare magazines. $He @@.hotpink;thanks you profusely@@ the next time $he sees you. $He knows that her prosthetics will enhance her combat effectiveness and $he thinks they are //cool.// <<set $activeSlave.devotion += 5>> <<else>> - $He has mixed feelings about what $he soon discovers. $He's a living weapon now, and has to live with the constant knowledge that $he can incapacitate or kill with nothing more than her arms and legs themselves. $He's @@.hotpink;touched,@@ though, by the tremendous trust this shows. $He knows that the arcology would instantly lock out her limbs if $he were to misbehave, but $he's still affected. + $He has mixed feelings about what $he soon discovers. $He's a living weapon now, and has to live with the constant knowledge that $he can incapacitate or kill with nothing more than $his arms and legs themselves. $He's @@.hotpink;touched,@@ though, by the tremendous trust this shows. $He knows that the arcology would instantly lock out $his limbs if $he were to misbehave, but $he's still affected. <<set $activeSlave.devotion += 3>> <</if>> @@ -2319,7 +2320,7 @@ As the remote surgery's long recovery cycle completes, $He is @@.gold;even more afraid@@ of you afterward than $he would otherwise be. You must seem a cruel and near-omnipotent power to $him. <<set $activeSlave.trust -= 5>> <<else>> - $He is @@.mediumorchid;even more hateful@@ of you afterward than $he would otherwise be. It must seem to her that $he's nothing more than a test subject to you. + $He is @@.mediumorchid;even more hateful@@ of you afterward than $he would otherwise be. It must seem to $him that $he's nothing more than a test subject to you. <<set $activeSlave.devotion -= 5>> <</if>> <<elseif !["insemination", "braces", "removeBraces"].includes($surgeryType)>> diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw index 1d45ca8793b4c9a0f8c81384034f823b3b63975d..8b04ce07c9af10e8c7b5d4288870a0b148e5a982 100644 --- a/src/uncategorized/wardrobeUse.tw +++ b/src/uncategorized/wardrobeUse.tw @@ -7,7 +7,7 @@ <h1>The Wardrobe</h1> -//$activeSlave.slaveName <<if $activeSlave.amp != 1>>stands on<<else>>has been placed on a cushion atop<</if>> a small platform surrounded by mirrors and an array of clothing options. $pronounCap is awaiting your fashion choices.// +//$activeSlave.slaveName <<if $activeSlave.amp != 1>>stands on<<else>>has been placed on a cushion atop<</if>> a small platform surrounded by mirrors and an array of clothing options. $He is awaiting your fashion choices.// <br><br> @@ -582,39 +582,39 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<if $activeSlave.amp != 1>> <br>Shoes: ''<span id="shoes">$activeSlave.shoes</span>.'' - <span id="shoeDescription"><br>//$pronounCap is<<if $activeSlave.shoes == "none">>n't wearing any shoes.<<else>> wearing<<footwearDescription>><<heelDescription>><</if>>//</span> + <span id="shoeDescription"><br>//$He is<<if $activeSlave.shoes == "none">>n't wearing any shoes.<<else>> wearing<<footwearDescription>><<heelDescription>><</if>>//</span> <br> <<link "Go barefoot">> <<set $activeSlave.shoes = "none">> <<replace "#shoes">>$activeSlave.shoes<</replace>> - <<replace "#shoeDescription">><br>//$pronounCap is wearing<<footwearDescription>><<heelDescription>>//<</replace>> + <<replace "#shoeDescription">><br>//$He is wearing<<footwearDescription>><<heelDescription>>//<</replace>> <</link>> | <<link "Flats">> <<set $activeSlave.shoes = "flats">> <<replace "#shoes">>$activeSlave.shoes<</replace>> - <<replace "#shoeDescription">><br>//$pronounCap is wearing<<footwearDescription>><<heelDescription>>//<</replace>> + <<replace "#shoeDescription">><br>//$He is wearing<<footwearDescription>><<heelDescription>>//<</replace>> <</link>> | <<link "Heels">> <<set $activeSlave.shoes = "heels">> <<replace "#shoes">>$activeSlave.shoes<</replace>> - <<replace "#shoeDescription">><br>//$pronounCap is wearing<<footwearDescription>><<heelDescription>>//<</replace>> + <<replace "#shoeDescription">><br>//$He is wearing<<footwearDescription>><<heelDescription>>//<</replace>> <</link>> | <<link "Pumps">> <<set $activeSlave.shoes = "pumps">> <<replace "#shoes">>$activeSlave.shoes<</replace>> - <<replace "#shoeDescription">><br>//$pronounCap is wearing<<footwearDescription>><<heelDescription>>//<</replace>> + <<replace "#shoeDescription">><br>//$He is wearing<<footwearDescription>><<heelDescription>>//<</replace>> <</link>> | <<link "Thigh boots">> <<set $activeSlave.shoes = "boots">> <<replace "#shoes">>$activeSlave.shoes<</replace>> - <<replace "#shoeDescription">><br>//$pronounCap is wearing<<footwearDescription>><<heelDescription>>//<</replace>> + <<replace "#shoeDescription">><br>//$He is wearing<<footwearDescription>><<heelDescription>>//<</replace>> <</link>> | <<link "Painfully extreme heels">> <<set $activeSlave.shoes = "extreme heels">> <<replace "#shoes">>$activeSlave.shoes<</replace>> - <<replace "#shoeDescription">><br>//$pronounCap is wearing<<footwearDescription>><<heelDescription>>//<</replace>> + <<replace "#shoeDescription">><br>//$He is wearing<<footwearDescription>><<heelDescription>>//<</replace>> <</link>> <</if>> @@ -706,12 +706,12 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#bellyAccessoryDescription">><br>//<<clothingCorsetDescription>><<CorsetPiercingDescription>>//<</replace>> <</link>> <<else>> - | Her stomach is too big to fit an empathy belly around. + | $His stomach is too big to fit an empathy belly around. <</if>> <</if>> <<if $activeSlave.pregKnown == 1>> - //Extreme corsets will endanger the life within her.// + //Extreme corsets will endanger the life within $him.// <</if>> <br> @@ -884,11 +884,11 @@ Anal accessory: ''<span id="buttplug">$activeSlave.buttplug</span>.'' <<link "''//Update//''">> <<goto "Wardrobe Use">> <</link>> -all descriptions to show what she is currently wearing? +all descriptions to show what $he is currently wearing? <<elseif $activeSlave.fuckdoll == 1>> //<<ClothingDescription>>// - <br><br> There are no changes you can make to her at this time. + <br><br> There are no changes you can make to $him at this time. <</if>> /* CLOSES FUCKDOLL CHECK */ <br><br>