diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt index 991abc940b8cfe9e66abc876e1f22f3ec2fbe367..e5831d12bfe007d1167c106756f9632d876cb8aa 100644 --- a/devNotes/Useful JS Function Documentation.txt +++ b/devNotes/Useful JS Function Documentation.txt @@ -129,6 +129,8 @@ Display Functions: properTitle() - Returns the player's proper title. (customTitle, Sir, Ma'am) +properMaster() - Returns the slave's title for Master when WrittenMaster() is inappropriate. (customTitle, Master, Mistress) + SlaveFullName(slave) - Returns the slave's full name. PlayerName() - Returns the player's full name. @@ -168,7 +170,7 @@ UtilJS [script] if $formatNumbers > 0 'focused their 1,589 troops' else 'focused their 1589 troops' cashFormat() - uses the above function to return the value thousand separated with ',' if $formatNumbers > 0 else provides the raw value. either way prepends ¤ (the fc domination) symbol. - line 157 of the previously listed file, '..totaling @@.yellowgreen;<<print cashFormat(_SFIncome)>>@@' + line 157 of the previously listed file, '...totaling @@.yellowgreen;<<print cashFormat(_SFIncome)>>@@' if $formatNumbers > 0 'totaling @@.yellowgreen;¤1,500,000@@' else 'totaling @@.yellowgreen;¤1500000@@' isFloat() - Checks if value is float. diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 1a09610664d5e14de588626ad7abce1d74468fff..3cf91963036a9720581133496df65f5133158892 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,6 +2,31 @@ 0.10.7.1-1.5.x +01/08/2019 + + 4 + -more fixes and cleaning + +01/05/2019 + + 3 + -fixes + -more cleaning + -[!] appears when you can upgrade an FS now too + +01/03/2019 + + 2 + -fixes + -more cleaning + +01/02/2019 + + 1 + -fixes + +01/01/2019 + 0 -fixed cloning -added an ovary implant to boost fertility @@ -97,7 +122,7 @@ 0 -pregnancy size/progress tracking overhauled -natural lactation overhauled - -natural lactation can be induced from excessive breast play and will dry up if unsed + -natural lactation can be induced from excessive breast play and will dry up if unused -ignored natural lactation causes breast to engorge -added new repop related trendsetting policies -more art from deepmurk diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 30db3f5bd1855e90122e4c5d51ce27258a7692d5..7b1a7e921e35e0776a62dfe81a5a0649704aaf76 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -5,6 +5,8 @@ State.expired.disable; /*:: StoryJS [script]*/ /*config.history.tracking = false;*/ +State.expired.disable; + window.variableAsNumber = function(x, defaultValue, minValue, maxValue) { x = Number(x) if (x != x) {//NaN @@ -1042,6 +1044,73 @@ window.resetFSCredits = function() { V.FSCredits = Math.max(Math.trunc(V.FSGotRepCredits - activeFS), 0); }; +window.generatePlayerPronouns = function(PC) { + if (PC.title === 0) { + PC.pronoun = "she"; + PC.possessivePronoun = "hers"; + PC.possessive = "her"; + PC.object = "her"; + PC.objectReflexive = "herself"; + PC.noun = "woman"; + } else { + PC.pronoun = "he"; + PC.possessivePronoun = "his"; + PC.possessive = "his"; + PC.object = "him"; + PC.objectReflexive = "himself"; + PC.noun = "man"; + } +}; + +window.generateAssistantPronouns = function() { + const V = State.variables; + if (V.assistant === 0) { + V.assistantPronouns.pronoun = "it"; + V.assistantPronouns.possessivePronoun = "its"; + V.assistantPronouns.possessive = "its"; + V.assistantPronouns.object = "it"; + V.assistantPronouns.objectReflexive = "itself"; + V.assistantPronouns.noun = "program"; + } else if ((V.assistantAppearance === "incubus") && (V.diversePronouns === 1)) { + V.assistantPronouns.pronoun = "he"; + V.assistantPronouns.possessivePronoun = "his"; + V.assistantPronouns.possessive = "his"; + V.assistantPronouns.object = "him"; + V.assistantPronouns.objectReflexive = "himself"; + V.assistantPronouns.noun = "boy"; + } else { + V.assistantPronouns.pronoun = "she"; + V.assistantPronouns.possessivePronoun = "hers"; + V.assistantPronouns.possessive = "her"; + V.assistantPronouns.object = "her"; + V.assistantPronouns.objectReflexive = "herself"; + V.assistantPronouns.noun = "girl"; + } + + if (V.assistant === 0) { + V.marketAssistantPronouns.pronoun = "it"; + V.marketAssistantPronouns.possessivePronoun = "its"; + V.marketAssistantPronouns.possessive = "its"; + V.marketAssistantPronouns.object = "it"; + V.marketAssistantPronouns.objectReflexive = "itself"; + V.marketAssistantPronouns.noun = "program"; + } else if ((V.assistantAppearance === "succubus") && (V.diversePronouns === 1)) { + V.marketAssistantPronouns.pronoun = "he"; + V.marketAssistantPronouns.possessivePronoun = "his"; + V.marketAssistantPronouns.possessive = "his"; + V.marketAssistantPronouns.object = "him"; + V.marketAssistantPronouns.objectReflexive = "himself"; + V.marketAssistantPronouns.noun = "boy"; + } else { + V.marketAssistantPronouns.pronoun = "she"; + V.marketAssistantPronouns.possessivePronoun = "hers"; + V.marketAssistantPronouns.possessive = "her"; + V.marketAssistantPronouns.object = "her"; + V.marketAssistantPronouns.objectReflexive = "herself"; + V.marketAssistantPronouns.noun = "girl"; + } +}; + /*:: itemAvailability [script]*/ /* intended to condense the clothing/toy/etc availability checks into something less asinine */ @@ -1295,7 +1364,7 @@ window.areSisters = function(c1, c2) { var sib = 4; if(sameMom(c1, c2)) { sib -= 1; - } + } if(sameDad(c1, c2)) { sib -=1; } @@ -1331,8 +1400,8 @@ window.totalRelatives = function(slave) { return relatives }; -window.mutualChildren = function(slave1, slave2, slaves) { - return slaves.filter(function(s) { return s.ID != slave1.ID && s.ID != slave2.ID && s.mother > 0 && s.father > 0 && ((s.mother == slave1.ID && s.father == slave2.ID) || (s.mother == slave2.ID && s.father == slave1.ID)); }).length; +window.mutualChildren = function(slave1, slave2, slaves) { + return slaves.filter(function(s) { return s.ID != slave1.ID && s.ID != slave2.ID && s.mother > 0 && s.father > 0 && ((s.mother == slave1.ID && s.father == slave2.ID) || (s.mother == slave2.ID && s.father == slave1.ID)); }).length; } window.isSlaveAvailable = function(slave) { @@ -1522,7 +1591,7 @@ window.bellyAdjective = function(slave) { /* calculates and returns expected ovum count during conception*/ window.setPregType = function(actor) { - /* IMHO rework is posssible. Can be more interesting to play, if this code will take in account more body conditions - age, fat, food, hormone levels, etc. */ + /* IMHO rework is possible. Can be more interesting to play, if this code will take in account more body conditions - age, fat, food, hormone levels, etc. */ var ovum = jsRandom(actor.pregData.normalOvaMin, actor.pregData.normalOvaMax); //for default human profile it's always 1. var fertilityStack = 0; // adds an increasing bonus roll for stacked fertility drugs @@ -1782,7 +1851,7 @@ window.getBaseBoobs = function(slave) { window.SetBellySize = function SetBellySize(slave) { let _implantSize; - WombNormalizePreg(slave); /*now with support for legacy code that advance pregnancy by setting .preg++ */ + WombNormalizePreg(slave); /*now with support for legacy code that advance pregnancy by setting .preg++ */ if (slave.bellyImplant > 0) _implantSize = slave.bellyImplant; @@ -1803,11 +1872,11 @@ window.SetBellySize = function SetBellySize(slave) { /*:: rbuttonJS [script]*/ /* This is modified radiobutton macro, for automatic checked state setup*/ -/* Usage (be sure to use quotes around parameters): +/* Usage (be sure to use quotes around parameters): <<rbutton "$variable" "value">> Or: - <<rbutton "$variable" "value" "HTML_element_ID" "Text to replace with, inside html element with ID from previous parameter. <br> HTML tags allowed.">> + <<rbutton "$variable" "value" "HTML_element_ID" "Text to replace with, inside html element with ID from previous parameter. <br> HTML tags allowed.">> Group of radiobutton will be created based on variable name. Checked state will be set up if variable contain value matched with second parameter. Full form of macro call can be used to display extended description of selected value. */ @@ -1906,9 +1975,9 @@ Macro.add('rbutton', { Wikifier.setValue(varName, checkValue); } } - }); +}); -/* textbox js */ +/*:: textboxJS [script] */ /* Nicked off greyelf, works for replace textboxes */ window.setReplaceTextboxMaxLength = function (storyVarName, maxLength) { @@ -1947,13 +2016,13 @@ window.setTextboxMaxLength = function (storyVarName, maxLength) { * with other scripts, since anything poking the DOM here will be done last * * Dev Note: The accordion mod should be able to turn *anything* into an accordion. This iteration - * is configured tightly for the end of week report runs, but it shouldn't be that hard to adapt for + * is configured tightly for the end of week report runs, but it shouldn't be that hard to adapt for * other uses, like character bios. For now, I'll see what other extra-long passages of cosmetic text * might benefit. * * 000-250-006 03092017 */ - + postdisplay["doAccordionSet"] = function (content) { if (variables().useAccordion == 1) { Array.prototype.slice.call(document.querySelectorAll('.macro-include')) @@ -1989,7 +2058,8 @@ window.Job = Object.freeze({ SERVANT: 'work as a servant', SERVER: 'be a servant', STEWARD: 'be the Stewardess', CLUB: 'serve in the club', DJ: 'be the DJ', JAIL: 'be confined in the cellblock', WARDEN: 'be the Wardeness', CLINIC: 'get treatment in the clinic', NURSE: 'be the Nurse', HGTOY: 'live with your Head Girl', SCHOOL: 'learn in the schoolroom', TEACHER: 'be the Schoolteacher', SPA: 'rest in the spa', ATTEND: 'be the Attendant', - NANNY: 'work as a nanny', MATRON: 'be the Matron', FARMYARD: 'work as a farmhand', FARMER: 'be the Farmer', REST: 'rest'}); + NANNY: 'work as a nanny', MATRON: 'be the Matron', FARMYARD: 'work as a farmhand', FARMER: 'be the Farmer', REST: 'rest' + }); window.PersonalAttention = Object.freeze({TRADE: 'trading', WAR: 'warfare', SLAVING: 'slaving', ENGINEERING: 'engineering', MEDICINE: 'medicine', MAID: 'upkeep', HACKING: 'hacking'}); window.getCost = function(array) { @@ -2313,7 +2383,7 @@ window.getCost = function(array) { if(State.variables.SF.Toggle && State.variables.SF.Active >= 1) { if(State.variables.SF.Subsidy) { - costs += Math.ceil( (10000*(State.variables.SFUnit.Troops/10))+(1+(State.variables.arcologies[0].prosperity/100))+(1+(State.variables.SF.Units/100)) ); + costs += Math.ceil( (10000*(State.variables.SF.Squad.Troops/10))+(1+(State.variables.arcologies[0].prosperity/100))+(1+(State.variables.SF.Size/100)) ); } if(State.variables.SF.Bonus) { const T = State.temporary; @@ -2772,7 +2842,7 @@ window.RAFacilityRemove = function RAFacilityRemove(slave, rule) { } break; - case "work as a farmhand": + case "work as farmhand": if (slave.assignment === rule.setAssignment) { r += `<br>${slave.slaveName} has been removed from ${V.farmyardName} and has been assigned to ${rule.removalAssignment}.`; assignJob(slave. rule.removalAssignment); @@ -3182,7 +3252,7 @@ Macro.add('foreach', { * do lots of work generating and re-generating random heights until * one "fits". * - * Anon's explination: + * Anon's explanation: * limitMult: [0, -30] * * This specifies a range going up from 0 to -30. It needs to go [-30, 0] instead. Same thing with [0, -5] two lines down. note: technically, this isn't true, because for some bizarre reason Height.random reverses the numbers for you if you get them wrong. But it's important to establish good habits, so. @@ -3647,7 +3717,7 @@ window.numberWithCommas = function(x) { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); }; -window.numberToWords = function (x) { +window.numberToWords = function(x) { if (x === 0) { return "zero" } else { @@ -3725,8 +3795,7 @@ window.numberToWords = function (x) { .reverse() .join(" "); - } - if (x > 0) { + } if (x > 0) { return string; } else { return "negative " + string; @@ -4271,41 +4340,42 @@ window.removeDuplicates = function removeDuplicates(array) { return [...new Set(array)]; }; -window.induceLactation = function induceLactation(slave) { - let pronouns = getPronouns(slave); - let His = capFirstChar(pronouns.possessive); - let r = ``; - if (slave.induceLactation >= 10) { - if (jsRandom(1,100) < slave.induceLactation) { - r += `${His} breasts have been stimulated often enough to @@.lime;induce lactation.@@` - slave.induceLactation = 0; - slave.lactationDuration = 2; - slave.lactation = 1; - } - } - return r; -} +window.ResearchLabStockPile = function() { + V = State.variables; + return `__Stockpile__ + Prosthetics interfaces: ${commaNum(V.stockpile.basicPLimbInterface + V.stockpile.advPLimbInterface)} + Basic : $stockpile.basicPLimbInterface + Advanced: $stockpile.advPLimbInterface + Limbs: ${commaNum(V.stockpile.basicPLimb + V.stockpile.advSexPLimb + V.stockpile.advGracePLimb + V.stockpile.advCombatPLimb + V.stockpile.cyberneticPLimb)} + Basic: $stockpile.basicPLimb + Sex: $stockpile.advSexPLimb + Beauty: $stockpile.advGracePLimb + Combat: $stockpile.advCombatPLimb + Cybernetic: $stockpile.cyberneticPLimb + Implants: ${commaNum(V.stockpile.ocularImplant + V.stockpile.cochlearImplant + V.stockpile.erectileImplant)} + Ocular: $stockpile.ocularImplant + Cochlear: $stockpile.cochlearImplant + // Erectile: $stockpile.erectileImplant// + Electrolarynx: $stockpile.electrolarynx`; +}; window.ResearchLabStockPile = function() { return `__Stockpile__ - Prosthetics interfaces: <<print commaNum($stockpile.basicPLimbInterface+ - $stockpile.advPLimbInterface)>> + Prosthetics interfaces: ${commaNum($stockpile.basicPLimbInterface + $stockpile.advPLimbInterface)} Basic : $stockpile.basicPLimbInterface Advanced: $stockpile.advPLimbInterface - Limbs: <<print commaNum($stockpile.basicPLimb+$stockpile.advSexPLimb+ - $stockpile.advGracePLimb+$stockpile.advCombatPLimb+$stockpile.cyberneticPLimb)>> + Limbs: ${commaNum($stockpile.basicPLimb + $stockpile.advSexPLimb + $stockpile.advGracePLimb + $stockpile.advCombatPLimb + $stockpile.cyberneticPLimb)} Basic: $stockpile.basicPLimb Sex: $stockpile.advSexPLimb Beauty: $stockpile.advGracePLimb Combat: $stockpile.advCombatPLimb Cybernetic: $stockpile.cyberneticPLimb - Implants: <<print commaNum($stockpile.ocularImplant+$stockpile.cochlearImplant - +$stockpile.erectileImplant)>> + Implants: ${commaNum($stockpile.ocularImplant + $stockpile.cochlearImplant + $stockpile.erectileImplant)} Ocular: $stockpile.ocularImplant Cochlear: $stockpile.cochlearImplant - // Erectile: $stockpile.erectileImplant - Electrolarynx: $stockpile.electrolarynx` -} + // Erectile: $stockpile.erectileImplant// + Electrolarynx: $stockpile.electrolarynx`; +}; /*:: Span Macro JS [script]*/ @@ -5523,7 +5593,7 @@ if(eventSlave.fetish != "mindbroken") { } } - if (eventSlave.releaseRules == "restrictive" || eventSlave.releaseRules != "chastity") { + if (eventSlave.releaseRules == "restrictive" || eventSlave.releaseRules == "chastity") { if(eventSlave.need) { if(eventSlave.devotion <= 95) { if(eventSlave.trust >= -20) { @@ -5949,7 +6019,7 @@ if(eventSlave.fetish != "mindbroken") { } } - if(eventSlave.releaseRules != "restrictive") { + if (eventSlave.releaseRules != "restrictive" && eventSlave.releaseRules != "chastity") { if(eventSlave.dick > 4) { if(eventSlave.amp != 1){ if(canAchieveErection(eventSlave)) { @@ -5971,7 +6041,7 @@ if(eventSlave.fetish != "mindbroken") { } } - if(eventSlave.releaseRules != "restrictive") { + if (eventSlave.releaseRules != "restrictive" && eventSlave.releaseRules != "chastity") { if(eventSlave.belly < 300000) { if(eventSlave.anus > 2) { if(eventSlave.fetish == "buttslut" || eventSlave.energy > 95) { @@ -6131,7 +6201,7 @@ if(eventSlave.fetish != "mindbroken") { } if(eventSlave.lactation > 0) { - if((eventSlave.boobs-eventSlave.boobsImplant-slave.boobsMilk) > 6000) { + if((eventSlave.boobs-eventSlave.boobsImplant) > 6000) { if(eventSlave.assignment == "get milked") { State.variables.events.push("RE legendary cow"); } @@ -6260,7 +6330,7 @@ if(eventSlave.fetish != "mindbroken") { } } } else { - if(eventSlave.devotion > 20 && (eventSlave.sexualQuirk == "perverted" || eventSlave.energy > 80) && eventSlave.belly < 100000 && eventSlave.lactation > 0 && eventSlave.nipples != "fuckable" && eventSlave.releaseRules != "restrictive" && eventSlave.releaseRules != "masturbation" && eventSlave.daughters > 0) { + if (eventSlave.devotion > 20 && (eventSlave.sexualQuirk == "perverted" || eventSlave.energy > 80) && eventSlave.belly < 100000 && eventSlave.lactation > 0 && eventSlave.nipples != "fuckable" && eventSlave.releaseRules != "restrictive" && eventSlave.releaseRules != "masturbation" && eventSlave.releaseRules != "chastity" && eventSlave.daughters > 0) { State.variables.RETSevent.push("incestuous nursing"); } } @@ -7351,11 +7421,11 @@ window.isSlim = function(slave) { if ((slave.muscles <= 30) && (ArcologyZero.FSPhysicalIdealist === "unset") && (slave.weight <= 10) && (ArcologyZero.FSHedonisticDecadence === "unset")) { slim = true; } else if (ArcologyZero.FSPhysicalIdealist !== "unset") { - if ((ArcologyZero.FSPhysicalIdealistStrongFat === 1) && (slave.weight <= 30)) { + if ((ArcologyZero.FSPhysicalIdealistStrongFat === 1) && (slave.weight <= 30)) { slim = true; - } - } else if ((ArcologyZero.FSHedonisticDecadence !== "unset") && (slave.weight <= 30)) { - if (ArcologyZero.FSHedonisticDecadenceStrongFat === 1) { + } + } else if ((ArcologyZero.FSHedonisticDecadence !== "unset") && (slave.weight <= 30)) { + if (ArcologyZero.FSHedonisticDecadenceStrongFat === 1) { slim = true; } else if (slave.muscles <= 30) { slim = true; @@ -7575,6 +7645,14 @@ window.properTitle = function properTitle() { else return "Ma'am"; }; +// helper function returning slave's title for PC in situations where WrittenMaster() is inappropriate +window.properMaster = function properMaster() { + const PC = State.variables.PC; + if (PC.customTitle) return PC.customTitle; + else if (PC.title !== 0) return "Master"; + else return "Mistress"; +}; + window.newSlave = function newSlave(slave) { const V = State.variables; @@ -7629,7 +7707,7 @@ window.newSlave = function newSlave(slave) { } else { slave.pregWeek = 0; } - + if (slave.clone !== 0) { slave.canRecruit = 0; } @@ -8084,6 +8162,20 @@ window.PCTitle = function PCTitle() { } } + if (V.SF.Active < -1) { + switch(V.SF.BadOutcome) { + case "lockdown": + titles.push("The War Host"); + break; + case "Revolt": + titles.push("The Betrayed"); + break; + case "Exodus": + titles.push("The Abandoned"); + break; + } + } + if (V.mercenaries >= 5) { if (V.mercenariesTitle === "Evocati") { titles.push("Princeps of the " + V.mercenariesTitle); @@ -9392,13 +9484,13 @@ window.MenialPopCap = function MenialPopCap () { V.menialDemandFactor -= overMenialCap; V.fuckdolls -= overMenialCap; overMenialCap = 0; - r += "You don't have enough room for all your fuckdolls and are obliged to sell some."; + r += "You don't have enough room for all your Fuckdolls and are obliged to sell some."; } else { V.cash += V.fuckdolls * (price * 2); V.menialDemandFactor -= V.fuckdolls; overMenialCap -= V.fuckdolls; V.fuckdolls = 0; - r += "You don't have enough room for your fuckdolls and are obliged to sell them."; + r += "You don't have enough room for your Fuckdolls and are obliged to sell them."; } } if (overMenialCap > 0 && V.menialBioreactors > 0) { @@ -9571,43 +9663,6 @@ window.Deadliness = function Deadliness(slave) { return Math.max(deadliness, 1); }; -/*:: relationshipChecks [script]*/ -window.rivalryTerm = function(id) { - if (id.rivalry === 1) { - return `growing rival`; - } else if (id.rivalry === 2) { - return `rival`; - } else { - return `bitter rival`; - } -} -window.relationshipTerm = function(id) { - if (id.relationship === 1) { - return `friend`; - } else if (id.relationship === 2) { - return `best friend`; - } else if (id.relationship === 3) { - return `friend with benefits`; - } else if (id.relationship === 4) { - return `lover`; - } else { - return `slave wife`; - } -} -window.relationshipTermShort = function(id) { - if (id.relationship === 1) { - return `friend`; - } else if (id.relationship === 2) { - return `BFF`; - } else if (id.relationship === 3) { - return `FWB`; - } else if (id.relationship === 4) { - return `lover`; - } else { - return `wife`; - } -} - /*:: Summary Widgets JS [script]*/ window.SlaveStatClamp = function SlaveStatClamp(slave) { @@ -9909,11 +9964,7 @@ window.assignJob = function assignJob(slave, job) { slave.assignmentVisible = 0; V.nurserySlaves++; V.NurseryiIDs.push(slave.ID); - switch (V.nurseryDecoration) { - default: - slave.livingRules = "normal"; - break; - } + slave.livingRules = "normal"; break; case "be the attendant": @@ -9926,6 +9977,7 @@ window.assignJob = function assignJob(slave, job) { case "be the schoolteacher": case "be the stewardess": case "be the wardeness": + case "be the matron": slave.assignment = job; slave.assignmentVisible = 0; /* non-visible leadership roles */ slave.livingRules = "luxurious"; @@ -10138,6 +10190,13 @@ window.removeJob = function removeJob(slave, assignment) { V.HGSuiteSlaves--; break; + case "work as a nanny": + case "nursery": + slave.assignment = "rest"; + V.NurseryiIDs.delete(slave.ID); + V.nurserySlaves--; + break; + case "be your head girl": slave.assignment = "rest"; if (V.HGSuiteEquality === 0 && V.personalAttention === "HG") { @@ -11013,17 +11072,17 @@ window.generateChild = function(mother, ova, destination) { if (childName.indexOf("ovum") == 0) { if (genes.mother == -1) { if (genes.father <= 0) { - child.slaveName = "Your son"; + child.slaveName = "Your daughter"; } else { - child.slaveName = `Your and ${genes.fatherName}'s son`; + child.slaveName = `Your and ${genes.fatherName}'s daughter`; } } else { if (genes.father == -1) { - child.slaveName = `${genes.motherName} and your son`; + child.slaveName = `${genes.motherName} and your daughter`; } else if (genes.father > 0) { - child.slaveName = `${genes.motherName} and ${genes.fatherName}'s son`; + child.slaveName = `${genes.motherName} and ${genes.fatherName}'s daughter`; } else { - child.slaveName = `${genes.motherName}'s bastard son`; + child.slaveName = `${genes.motherName}'s bastard daughter`; } } } else { @@ -11986,7 +12045,7 @@ window.WombReserveCount = function(actor, type) actor.womb.forEach(function(ft){ - if (ft.reserve == type) + if (ft.reserve == type) /* the lazy equality will catch "" case */ { cnt++; } @@ -12060,17 +12119,6 @@ window.BCReserveInit = function() if (ft.ID == undefined) ft.ID = generateNewID(); - try { - if (slave.reservedChildren > 0) - WombSetGenericReserve(slave, "incubator", reservedChildren); - - if (slave.reservedChildrenNursery > 0) - WombSetGenericReserve(slave, "nursery", reservedChildren); - } catch (err) { - - console.log (err + " slave ID: " + slave.ID + " slave name: " + slave.slaveName + " " + slave.slaveSurname); - slave.reservedChildren = 0; - } }); }); @@ -12418,14 +12466,14 @@ window.saChoosesOwnClothes = (function() { wardrobeAssignment.push({text: `and slips into a scalemail bikini, the better to intimidate the prisoners.`, clothes: "a scalemail bikini"}); wardrobeAssignment.push({text: `and dons a scandalous habit to make it perfectly clear that crossing this nun will result in sexual punishment.`, clothes: "a fallen nuns habit"}); if(isItemAccessible("a military uniform")) { - wardrobeAssignment.push({text: `and wears a military uniform to look even more brutal and authoritive.`, clothes: "a military uniform"}); + wardrobeAssignment.push({text: `and wears a military uniform to look even more brutal and authoritative.`, clothes: "a military uniform"}); } if(isItemAccessible("a schutzstaffel uniform")) { - wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to look even more brutal and authoritive.`, clothes: "a schutzstaffel uniform"}); - wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to look even more brutal and authoritive.`, clothes: "a slutty schutzstaffel uniform"}); + wardrobeAssignment.push({text: `and wears a schutzstaffel uniform to look even more brutal and authoritative.`, clothes: "a schutzstaffel uniform"}); + wardrobeAssignment.push({text: `and wears a slutty schutzstaffel uniform to look even more brutal and authoritative.`, clothes: "a slutty schutzstaffel uniform"}); } if(isItemAccessible("a red army uniform")) { - wardrobeAssignment.push({text: `and wears a red army uniform to look even more brutal and authoritive.`, clothes: "a red army uniform"}); + wardrobeAssignment.push({text: `and wears a red army uniform to look even more brutal and authoritative.`, clothes: "a red army uniform"}); } if(isItemAccessible("stretch pants and a crop-top")) { wardrobeAssignment.push({text: `and decides to take it easy by slipping into some stretch pants. They come off just as quickly as they come on, just in case.`, clothes: "stretch pants and a crop-top"}); @@ -12701,7 +12749,7 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("body oil")) { wardrobeFS.push({text: `and coats ${his} pure body in oil to make it stand out.`, clothes: "body oil"}); } - } else if(V.arcologies[0].FSTransormationFetishest > 0) { + } else if(V.arcologies[0].FSTransformationFetishist > 0) { wardrobeFS.push({text: `and decides squeezing into a latex suit will only complement ${his} unnatural appearance.`, clothes: "restrictive latex"}); wardrobeFS.push({text: `and decides to go nude, ensuring everyone sees ${his} assets.`, clothes: "no clothing"}); if(isItemAccessible("body oil")) { @@ -12831,7 +12879,7 @@ window.saChoosesOwnClothes = (function() { wardrobeTastes.push({text: `and chooses an outfit that covers ${him} up as much as possible.`, clothes: "a hijab and abaya"}); } else if(slave.sexualFlaw == "breeder") { if(isItemAccessible("attractive lingerie for a pregnant woman")) { - wardrobeTastes.push({text: `and wears lingerie designed to acommodate pregnancies, hoping that others get the hint.`, clothes: "attractive lingerie for a pregnant woman"}); + wardrobeTastes.push({text: `and wears lingerie designed to accommodate pregnancies, hoping that others get the hint.`, clothes: "attractive lingerie for a pregnant woman"}); } } else if(slave.sexualFlaw == "malicious") { if(isItemAccessible("a schutzstaffel uniform")) { @@ -13293,7 +13341,7 @@ window.saRest = function saRest(slave) { } return t; -} +}; /*:: SA servant [script]*/ @@ -13364,7 +13412,7 @@ window.saServant = function saServant(slave) { if (slave.relationship == -2) { t += ` ${He} does ${his} best to perfect your domesticity due to ${his} emotional bond to you.`; } else if (slave.relationship == -3 && slave.devotion > 50) { - t += ` ${He} does ${his}very best to be the perfect housewife, making ${him} an outstanding servant.`; + t += ` ${He} does ${his} very best to be the perfect housewife, making ${him} an outstanding servant.`; } if (setup.servantCareers.includes(slave.career)) { @@ -13569,6 +13617,8 @@ window.saStayConfined = function saStayConfined(slave) { return t; }; +/*:: Assistant Art JS [script]*/ + /* Displays assistant images. Currently passage-based. sizePlacement: Image size/center. @@ -13579,62 +13629,113 @@ window.assistantArt = function assistantArt(sizePlacement) { const V = State.variables; let fileName = ""; - if (V.imageChoice === 0 || V.imageChoice === 1) { - if (V.seeAvatar !== 1) {return} + if (V.seeAvatar !== 1) {return} + if (V.imageChoice === 0 || V.imageChoice === 1) { if (V.imageChoice === 1) { - fileName += "'resources/vector/avatar/"; - } else /* V.imageChoice === 0*/ { - fileName += "'resources/renders/assistant "; - } switch (V.assistantAppearance) { case "monstergirl": - fileName += "monstergirl.png'"; + fileName = "'data:image/png;base64,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'"; break; case "shemale": - fileName += "shemale.png'"; + fileName = "'data:image/png;base64,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'"; break; case "amazon": - fileName += "amazon.png'"; + fileName = "'data:image/png;base64,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'"; break; case "businesswoman": - fileName += "businesswoman.png'"; + fileName = "'data:image/png;base64,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'"; break; case "goddess": - fileName += "goddess.png'"; + fileName = "'data:image/png;base64,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'"; + break; + case "hypergoddess": + fileName = "'data:image/png;base64,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'"; break; case "schoolgirl": - fileName += "schoolgirl.png'"; + fileName = "'data:image/png;base64,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'"; break; case "angel": - fileName += "angel.png'"; + fileName = "'data:image/png;base64,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'"; break; case "cherub": - fileName += "cherub.png'"; + fileName = "'data:image/png;base64,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'"; break; case "ERROR_1606_APPEARANCE_FILE_CORRUPT": - fileName += "corrupt.png'"; + fileName = "'data:image/png;base64,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'"; break; case "fairy": - fileName += "fairy.png'"; + fileName = "'data:image/png;base64,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'"; break; case "imp": - fileName += "imp.png'"; + fileName = "'data:image/png;base64,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'"; break; case "incubus": - fileName += "incubus.png'"; + fileName = "'data:image/png;base64,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'"; break; case "pregnant fairy": - fileName += "pfairy.png'"; + fileName = "'data:image/png;base64,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'"; break; case "succubus": - fileName += "succubus.png'"; + fileName = "'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARoAAAJaCAIAAAB/YR8cAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMjHxIGmVAAA9p0lEQVR42u2dZ3cU17rnj89BIgokJEAEgUIrtdTdqm51zrlFEEjkZDIYMMb2sbENxuBAsslgcjA2YAzGZAPm3jM3zL13Zs1HmLXmxbycTzEbFWqXOlTvSl1Vrf9/PcsLQ6MWqv3r/exnP+EvXRAEyaS/4EcAQcAJgoATBAEnCIKAEwQBJwgCThAEnCAIAk4QBJwgCDhBEAScIAg4QRBwgiDgBEEQcIIg4ARBwAmCIOAEQcAJgoATBAEnCIKAEwQBJwgCThAEAScIAk4QBJwgCDhBEAScIAg4QRBwgiAIOEEQcIIg4ARBwAmCIOAEQcAJgoATBEHACYKAEwQBJwgCThAEAScdi2EYt8fj8/s9Xq/T5eru7s5+AX5KwAnKLavV2j0gAg8Byevz+QOBYCjENfKbabTI68nL8HMDTtCfImxkY0NjBC3yXxAFnKA/WWKpkGJOpxM/SeA0rP06wgA5F0kEKW3kfEW+JvuV8eMFTsOFIpfbLc61ozHyxYllBy0g4FSastvtyuGUPlPh5wycSl8Op1NRkNKGDQo4gSU5N6gVLtfpcPhOPP5PPT2s3Y7HD4dCO7zexeTYhiMWcNKpGIZxuVxFY4m196JRgtDTVCqNU4YdCYUWIyQInHR3WAoEg0VmKU3U3lgsH06snY1E1rndeEzACSxR2a/5N6i0XY/F3sF1MHDSuGw2m9JxvIJ2LJEoiBNrPwAq4KRluT0edVkitnngEEVvgAo4aVHd3d2qs8SaIJxYOxYOxxBtB07akfRkPBn9vZvJpFCi7iUS6xGlAE5akLOIt0wFbX44/HYkImKPIvZlIIBtCjipKYZhQmoH9DJMNE7pePq7Xi+4Ak7F3ZQYZqvHsyoc1hRL0nHickX+gXYUAgMnRZXo7v7U77+bSDxNpQ7E41rDKRkOy4ITaz/H438nJ0ObDc8dOMmsxU7noVDoJee2lBz9tYaTuPgevz1MJj8PBFLwAIGTLGLTTLPX2d5YbDjgxNofPT0Hg8F+hwPrATjJDBJr5KAiLwkfy8HnVeGxckF2Mhxeipxa4CQjSKzNlzsUQc5jm6NRjePE2uFQaI7dDpwgGUAidjOZVKLUQvp5jGxxlJe5F6PRXT7fQofjiSgCX6RSe/z+wDAOVAAnPhEf5jR1ZOxj+Q5O5AxG/EY2JZxsULLscjm/51vx+BHCrde7MOsIdCgYFLdN3UskyBdkgBOUVry7+xuB60kWTy8RDn8/kAn+MadgaYnkI1n6S92IxQ4Gg9s8nvkOR3ehS6SVLtcfYn2/67HYMMxUAk6ZIovs7z7fY4HeDvn43ydkd+rlsEd+TTy6pZEIwSbtlXGrlSTue7FQKOnzOUXdwBLP7biEmyuytw+ryl/gNETkA/VGoTrWnHYpGu2hrmPfHI2yF77Eo0vHCchJKZ9L9r3k45PL5ZLyY3nX65USpTgQDCaGxyUVcHqjPofjpNiPYeIWOhiGvy4j7bAdGGiKQjYc+oCb9OOTQ/LtEHEOLwksoOIa2e0/8PkY4FTyCtls+wIB0QuFHLvfeIn5cSLbEeGH68sJNYk3WrI0DLMxzF4JPyhiV6PR1dL2SeCkaW3xeO5RF4Fn2O14nHt9ma9p0ZKBGN0BTqcuMf6StGxAGX9imz2e3ym6UPDfUJVqgtLwxWm23S7lkH0iHA4PvWDxeL05Qw5PpS2+N5/r0i615P3R9Tsc4k6YXPf1I5/PVnL56cMUp/e9XimrfH8gkP01M3anY4lEIhy+KVNGwq9ij0/+QECJZst+q/Wo5GzA67HYmtLy/YYdTgsdjnPSSoA+zLM6ua2L1gwstZuyZveIDkJ4Bk93sutTv1/6v+u7UGh2qWQnDSOc7AzzmbTH/yKV2pjnajIjDnHY5ZI9KU7c1kS+N4eSSd8b3O7Hkj81yGFsV0nE/YYLTitdruvS3P17icSS/DeS3E5gPr//pRznpQzbHI32Cky8YK+blJ6l22u3SzxKpe/uFun8zndY4ETcM4lP+ko0yh+MGtLz1elUImWbHMaEpkfYipWNSt7pe5mq6IkDqd8QRYnj5GSYg2JTOdN2PBz28A6eIKs2vS+9jubZ7QoVQQjKLvfnipcop26G+VamUkXy4aXTAqpSxmmu3X5ZwkU+TxAvZ0zPNTB3/XVhhQIHJxHhcpcaGahfSLvn5doev193nV5KFqe1bvdDyUfkD+lCzF6fj52jzjas/EgZZ48eJzbGaFcpXPZ3ya41N5K+XFfbVGni9LHkJ/p7KrWB+tM9PUGdxWlHd7e6OCkaHKfRFo9Hxn/13kDApZNtqtRwIkcc6R78z/H4IlHBZXZb2GS1qogTe2Ryqv2hvtLleiTftduNWGyVHi58SwonJ8OcktxWjnyFqKiAGMMwbzpFWiwqhiLYWyZGAx/nCxyOW9IyFTNsl+ZnaZcOTl6r9ZzkWO1uv1/0N0DOKuyCXtjVpRBOe2OxRJ6rp8RAUDEQDDJa8oti3d2XJEeDMlIloxruRVEiOIVsNolBvNvx+AZpoTCXy8UGymMMoxBOv6ZSOSs1+gZ/4dbegCa31Xpc1k60vyQSmq3yKAWc4t3dP0i4lX+ZSn3m93skjzQnuxN7AeVV7OyUs/CJ7FfbByL1BGabVj+5v5Z8+6cLx68UcLomgaWjodA8WQPK/kDApdi9U06cDsTjSxwOr89n13Yi6Sdy5Mtq3PHTPU5zxKYgnA6HVyjgM7jcbrKyf1KslXEGTuR/rwWD5Mhklby7FkESe05o3/HTPU4fCb9iIiAtVCzJmvX39irm7yWHhiLIaeoDu92ln6qhdXJcr2vW8dM9TleFRCAOhUJh5d0DslfEm5oUwimju+Xr/n4OB6OrZBziUFyQNdwnMSQLnP7UXYGdHm7H42sVTmYjzl5DQ8N9uVdMBk5s2fwZr5fRYf61jWH2y5fdx9oXxU35LU2cCBsifvT7AgGHYqvQ7fGYTKZ3OzpkZ4nbIezYwOfIRj0/u60ezxNZHb+vgkHgJFU/iorsXY3FFGpQyp5kwvX1iiYZsb0ugmazrp/dbLv9pKy3UgdVJaoUcNogaoNibZsC955sU7u6urpL8uVWZ1zjLhnI/3hfD9E8Gu3wemXcpo7I3blpeOHUJe3qaY/cp9h0zHpla6vsGxRbkEv+eyMY9JRQYy15t6lj4TBwEq+NEjYo9qfvVeCTvqOh4Z5MJd/c/pVkgyKe3upSHKK+zOmUKyNJlVEDpZMC+420NBayv81VIKtge2envDjdTCb3xmIHS7o1cb/DIb3K5js1XL6Syij/SVo5wINkUvYrdk9zs+z+3lcaiAgXQeTTTeJHpK/oZ8uSqndaKUeynOzBiQ2yRsx/jUZLHqQ1dNNTNZgtUWrVuLvlyLP8RNbgRHNz82GZehvdj8UsFksJg0QOPHLVR/0Qi8HZkxxV6+qS5Xl8I+v1haeh4YnYOR1p+4xhOjs7SxUkO8PsljXlXJUhHSXYeqXXbn8sxyXGyXBYLufbbDYvb2mRVJFlscwt3X1pheQevRm2U6XOM6XZyWi9tLg5d7yXXB9ybW1tIqJ896PRd43Gj0wm8utFSrYaV0tuq3Wf3Ml730ciav1zSrbP3i6ZMhLuJhJy3WAQonZRt5E46XKtaW5e29x8cbBGqL/kcFrtcv0k66ak+g+qlLvAytXj93kqtV6mJHRC1H7eLnw/hULvtLcvaWzc2dHxYOhS6yshnLxW65dyb0rsiBN1+4eVeI/ya/J9+MnljpNz1MqOjl842RIPY7ETLtdnDPN3k2lPV9eDPN/zEp1Pl0hrjcslb8OwdLr9MrV/RKU/QeOxfLmVMmb3kW1qY0fH3NZWZ3Mz+XUXxeixEhjS7LdaZe/B8uYjKZlcrIGPm2ExkEbGx3Y4FOpWJlmuYDndZu01/RKkdW73zwpsSq8DNomERjzh4TIuTcaHdz4SSShwp1HwpKeR+m0RCtpsB5TZlNjuK72aaeE0jIZ5yvsIZR9AVLDt5kmVig4kaoPb/YvkK+x8Rs5gmpqrO7xGTcv4IP/o6XlHVu/r90LzP58kk/r6aYdttkOKNUgjdjYSiamR+gCcFCHqdeKPTA7YPLqkvrn6mXC+3ev9VbFNiXKMHXDSH1HkzBOR3GxsD1262hd6KM1Y4nSek7toMsPeVXV6FXDK1AtZJ6uTj+EtEhw/J8NQdkogL9PyfMuQzabE5SzX7sTjyzR8/zZMcSKSPWh7NBRKinLlBUW9vlS795Va3p02D0vA6U+dl9sneZRMCvVD9gr/ON+ksQuoVS6X0t6dZg9LwGmIDipwH3ImEqFZ8T6r9ZjYmtMPNNCVu5thiIt7WZlmt3o5LAGnTH2hjLt/P5HYFwjkc052er1PpZ3fTivTfYlGQZvtQ5/vtjIpDhl2MRpdqJ/cX+D0WrvlHj2U4fGTxbfN49nodr/tcn3udh/p7Hw+d67UPPe5c3/q7X3P6XQW8Tgx224n3ukjuUdg6HcYLnDKrU+UJGpIbGrBgkX19Td6e6UQRf7uzYUL15rNG63WXxcvPhQK9TkcCiUTuq3WNS4X2cOvFsWv0+OmBJxyaKvH80r5hUJIONLRwWIg+itcisVWtbevNZkIVFwsf4rHD4dCmz0e/rF8DoYhi5W1BQ7HHLs92d0dsdkCViuBh43FL3Y69/j9xURIv5sScMqtZU7nXYWjvewGtcxgOGm3C92gyOvJ3/22o4Psbwebm8mv+b/Cg2TyVjx+KRo9H4kQxkI2GznTX1GDkNLelIBTXpHP6YuyLrhbWXlrhIGrPT0ECbLJUBJFXkZ2M0LgsuZmsi/R/0WuvdIqRXrflIBTF78vdFjW3M2LXu8xp/NLzoRPAsMZj4fsUVcHfl0QJPJiQhG7p5H/5f6Vh7HYcadzl9lMvj55o4tyz5/FpgSctBicIOueLHpi7H5VkCjWtTtltxOQiJEXp0EicK5pbt7W3k4s/QX1aM9TqY/0vykBJyqR88ZzWbP70psVYYD8Nx9RrwN3c+acsFiIa7fRaj0XDBKQDns87BbH/l2d8sO1U+HwPP3kyAMnGdTvcNxQoHkVu1kRPO4lkyxRl2Oxyz7f1UiE2OGWFvI73xqNl5LJc3PmnA0EyCtLgB/uHfc2ndfqAyeR8lutRxXwpt5EFyIR4s6tNZsXNTRsYJjFDQ0rWlsPG42n5s9/vGDBQ2VIVtcOhUJRySUtwEnfkqsPJksR2YK+7eggJ6JF9fXEyC+upFI/LliwxeFI/85ZzmGpNOxmPL5Wpo6FwEn3Ikvhgdj8GpYi4s4dIo5cczPLDGvp21hiRy0W7h+VElR7AwFPqQzzBU7yaI7dLmhCBw9FrGXcxpJdK/s1eoeK/MSWlkrPTeAks+wM82Whsg6WohuJRDZFywwGLksZhJC/lY2TfqF6mEy+r5PaCuCkpjbmcfzYGDd7WcRF6EBLy2mv9x2nk4clFqeMv6hfqL4JBjVePAucNKRUd3c6Q5S7HXFhIMxc8vl+Wbr0Sk8Pd5vKyRKL00arNf0y8us7y5axKRFcqMjvX4rFNAvV+UhkmHh3wEk2dTPM3USCBYnsGBkYEAbYQxGboUfDEosTdwdjE8/TeUYZm1UGVA80EFW/l0hsH07eHXCSTR8MJCuc5Wwd5BdHLRbi7KWXOFuYxGVprclEMOM5dHGDe9w6DjbnKCP0R4zgl66e+jEYfKQeVPsCgWCJXigBJwXVabWaPZ6TbncaJNapy/a+Mpw38vqMCqVsO2Ey5cQpDRWBh/s1WSNOJrsZnvN4in/5ezoS6S/F4YjASXGQWpzOiMWyorOTxeOk3Z6v7ihjq6HJHy+IU/qcdi4YzDhQkT3wWFcX+aN9DkfRiLoVj28uxXQh4FQMljq6uuYO7AzExeIPBrDbCHe5k8MPTeSgIE6ZFVBDD1RsNVS/yXRP4Y4OT1OpXT6fS8NtNIGTpjelBdOmLW1tzTgd5W0NO9TNI/hRVrNT4sSFlhu9SL9dnxwNXvLZwWAwOcyC4MBJNplbWhJm81m3mzI2zbZz4Lp5BY9M4nDi2aaWGgyphoZHs2fLPhd9eAbBgZM88k2deqCjQ9AlT8bWROnmicOJWzC/lvN3WaKMEyc+kYkoHJOAkyS1trZGZs4Ucaznpt6RJS6oaZE4nNKR9INDc5r6GxtbKyufzZkj/ZiE9QCcRMpkMtVPnbrLbBaXPM5d0/xtUnxTpvD8XRH9w9jGY1yi5tXX11dXiz5HkWMS4g3ASbxmzZoVmjHjptiSQbYxJQ0Pn3d1WaqrebzEoxaLCAzYmnkuUf76esesWSKOSYg3ACfxMhgM5tpaKZXkZCmftNvT6/hcMMjDw/SxY/lTYM9wmh9JJCpQXr6uvZ3+mIR4A3ASL6PR2DRpkjjvLoOH15Xqg1dAPFsT2ZdOulyZ9apz5nAZuCph0EsG2MRmlJdfLjSz40UqhXgDcJIEUtu0adJByuaBnGHybU3Lm5pm19XlqLTz+bgA8GT3iTjFxQhREyZof9QNcAJIOVysG3n6M98KhQy5lnVGFIF/cxOwW3JChY7y8hWtrTyv3zmM88GBk1ZAyi6vWGYwZMOwbeD0Qo5MORtNZhyceDY3QYTf6O1N3/DOra+vGDnyZf7mge8CJ+BEr36v98ayZf9zx45/WbRI9tQbLg85Y3oEJ9+UKZ/nmR5PdjOup3dJvt5J3ExcskEtNBjyvXhjSXcaAk5ygvTT8uUEJNaUwIl7cMoZ4yY+XkZkPJ+nl3NzI/aP3l7ynRP7h5BjFZfz1xvUqFH5XrnS5QIVwCm3ogOLw8kwZxcsSIPE2n/r75cdJ24yRHaMmzh448rKaFZ8dsXuP8+Z828rV/7X1q3cfwL5339dskTEoa515MhtnZ05X4myJeCUW7Pd7n9s2fJg7dqXGzZksKQQTtz8oOwY9+y6unxuXvY1ETeMQTai/7F9e/Y/gbX/3LjxnylyiO4sWLCwqYn94vb6+knjx+d8Ge5tgVNuPVm/nl1wn4bD2avwn6WlsRX01rJxysdS9tbEPXfxs/Rmm9q8ueA/53WIj1PHMb6s7GmuwKMT+UTAKafI1vQamy1bUq2tmetv61Yl4hDc/CD6G9jsrSmd5kcgyXDw8tl/rF8v6F0ay8o2t7VlvOb3VApIAKfc+jgUIvuSp76eG4Fg7b+vXas0TvRxudezPfOkvf776tU0LFG6r9xkwkB5eUdNTXZuEZAATrl1qa8v38pTKEq+nmGEZq9mJC683tYG+0n8o7eXniWazwjyHfY1NqaPT2PHjMnsoBIOAwnglFvP1q7NfdJQwNPL2XGSppD2XDDIZYl7dfuvS5fm/P5fbtr0IldwhVjB77DXaEwnHL1VXk5+h2t7gBNwyimDwZDvU5ws0yLgRPw3mjYPXDdvVXs7N0nv31auzP7mfxhk7Om6ddl/yn8Z9boB+kADJtb+Ulb2dmcnedMVLS1LDYbFDQ0bkPwKnHIqbLGIO7LLkmHEn7OXbmeZzj3PWc2RE6cHa9awv9gdiQg9PpHvcAknlE9wer+5+YTJlLaluHQCTjkVM5nEBZTlyuXhaZ78ugp92bIMlrIz9HLitLSr6/qSJRscjuz4Cg1OKzinu7+MGLFnaOx+mPdwBU55tdnvzz4yKccSa+dcrow+kjmbTpJ9KWMfy9lP4t9yAUPsfH//w8E9KtPZ6+3lx2klB3iC016GSf/ps2QSPACn3No+FCfK1AGJxo1E5+xhlNPHy9c27B9ZiVH89j+2by/ojq4eitNRhyP9p2dQ6QScCuJEFhn5mC9Oh+GMaASLSjq68KZ3VxZLPJ2WKe9w6QPlS1tb2feND+DE/dOP4OkBp3xaxDD/uW0bOX4UYVPK160yfSi6kkiQpXzKbs+e58nfTCJfrFyEp5eR8G6vr//r0HzcJWYzeABOuVVRUXHa41FhOPnQZg+sfeFwZM+8oGxnSdxUGpb+ffXqwjNqOZXzjvLyyqFlGv7OTvAAnPLidFxCQyK5gntsm7tkTY04lti0vf8YzOUV7eZlp19MLytzTZ6c/tMHsZjFYgEPwCm3amtr1zQ3FxknckxamjXNtnfGjN2hUG9DQ8bgQEF9IIjX91+bN+fM8KC8leZmBs4bODh9YrGk//QQbpyAE48aGhqSM2YUeWvKSAwnZjEYbvX3kz9KjR9fMIZe0NhSXHIgZI2+ZCvje0uUl48YGodYZzQCBuCUV62trbVZKZ6KspSRMcT2Xt03MDyXvGBtlhPIH4RQrokFW+zkmDRpyMGpsREwACc+jRw58lE8XrT1mhEBj9fX95lMaWDuJpOB8nIp/p5cJzr7gKd3mVM/8jyZnDVzJmAATnyqrq7+ymYrznrN7rLvqq3N2Hx6DIZ5Rd+gsrfNmvJy49D2Lwe7u9va2gADcOKTwWDw1dYWgaVTQ3sXE2Y6Jk58kB0MSCSso0ZlnKDox6iJjo5wt02yQ771t79ljNhZ0tQEEoATVbj8lthBGDQgEW/tUEtLBkstlZV38uSSLzGb/UM3KLLWlXP5yHfI/fbIW48cMWJlVpO9jqlTQQJwotqgFAqXs9l3GZezZL02T5hwh7cuY1ZlZYbLR1a8oNGG4lCfN+DmTRs3LuOVv0QiM2bMAAnAiUq1VVXyblDsSs3OGCIsNU2eXHBe+lGvd9rQmAS7R8no9eVMWm8dOXJMeXn2JMWdHR04OAEnARFzuU5QLEiXYjFu0Dl9Jok2N1POdd7d3U0Wd8ZXWNHWxj+nkP6bzE60JW83sqzsl1zTaNy1tcAAOAnZoGprpXT3ZykiZ3qyI63MAok4Uc2jR38tMKFpp8VSX14+LyvziLhn5I3EQcXOxj3W1cXdNl9P8iwvH11WdjvXFv04Hp9YVQUMgJMAmUwm8uksKIWPRYjYjUSCUJThOHHTCwzV1T9EoyJWPyGKHGbiub4sgermnDmUB6o07Rkgsf4neYuJo0fnm5b9idk8a9YsYACcBLt8Y8rK3pkx4yLDXI1EMjr4cI386XmXiyxNglD2XsS9DK0fM2abySTFMTvi8UwaP96Ra5tiD1SEZO53y9KVRp0YoY68Jjtdfd5AzvhbZWWxmTN5vgHXlClm1GUAJxEi6/+tt94KlZXlI4TSCEjN48Yt7+r6Nf+UJHp7lkgsam4eX1YWyANVOoWC4E0gP2k2k/+S/yW2LCvdls3GICCNHDFiekXFWd4SFbJlVVVWggHgJFKNjY1/HTGC+D924RTFB+INppqa99xu2S9ebwSD4bo6wkDryJFmUZDPG/A8G8vK/jIA0qmsqbvZtt1oJB8xYAA4SVLlxInEC2I3BHshhMjiNo8c2VBVNWHKFN/06YomWNyNRJa3ttaMH/96bykrcwx8e/78/NgHCO8qL68ZoGh0eXl46tSL1M2cW6uqUOMEnGTbqaqqq8vHjRsxalTN6NH1o0bVlZeTRTxr5EjD2LGt48ePq66urqub3tbWMRjPmDJ6dHESau9Ho/usVufUqeRkVV5eTlBhbeTgL1gbUV4+trzcMH787Lq6kxTbEdeuBwITJ04EAMBJNY0dO/aa31/8gvnXLcc8no/N5neNxg86O3d3dX1ls0m8m17c0NCIogzgpKJqa2t3dHSogpPsXmXF6NF4oMBJTTU0NMyfNasEcCLOIfm34IECJzXV1tZmH1rEqke76PVWjBuHpwmc1Ne0sWP1jpOxqgo5r8BJExo/tDed7mxLW1stcl6Bk0Y0Ss84XfH7RyMCAZy0o7Fjxz7Ik06qcXuWSMyaMKGjowMPEThpRRUVFTcVq5ZX1CLTprW0tOAJAicNacKECdcDAd2xtN1oRAU7cNKcqqqqLni9+mLpmNNZhRpB4KRBVVdXn3a7dcQScU1rxo1DURNw0qJqamqEJpuqaE8TiYaKChyZgJNGNXny5OLPuRFnr3p67JMmoXYdOGlXU6ZM+ZYzT1bLtrypadKkSXhkwEnTOB2227XP0hcMM27cOFQHAidNi3zeH+ju1jhL1/z+caNGdWI4J3DSfmTv66JM5RBtL5LJpgkTWltb8bCAk9ZVVVV1RNvO3pLGxrq6Ojwp4KQDVVRUXFGpvp3GvnM4KidMwGMCTvrQ6NGj74vq+VqMCYjRaM3YsSaTCY8JOOlDZSNGvNLq1uSrrUXfPOCkG5nN5mqt1jvts1rHoWQdOOlIra2thgkTNMjS82RyyujRiOYBJz2JuFKuyZM1iNOG1lb0oAROOtPUqVOXNzVp8KKporzcaDTiAQEnPamqqurzri6t4fRBZ2clBmEAJ91p1KhRGizFZWpqmpqa8HSAk87CeqNGjNAaSw9jsfLycjwd4KQzNTc3G6uqtIbTEbsdnh5w0p+mT58+j3cwpiq2s6MDbSiBk/5ENoEvGEZrOH1msQAn4KQ/lZWVPdRew8pjTmd1dTWeDnDSk4xGY6f2Dk7Efk8mx40ZgwcEnPSkurq6dS0t2szW65w4EVnkwElnB6dzHo82cfqgsxOJ5MBJT6oeM0bLFbizkLAHnPSilpaWXm3P8NzR0YHelMBJH6qtrdV4q8pXqRQzdSqeFHDSgaZXVb3SMEus/RgMGnCCAk4aV2dnZ399vS7avn5gMiHEB5w0rZkzZ+poZMb85mY8MuCk4TjElCn6muYURkwCOGlTZrN5vVZvb/PZ/WjUgcpc4KRB1c+adTcS0d3oTuKdmtCgHDhpTbGGBj1OlSa2tbMT4zOAk4ZkMpk03t2f3xIGAx4icNIMTo2N+mWJ2KN43I1DFHDSiDZ0dOgaJ2KX/X4rXD7gpLo6Ojp+0WEQIts+t9vxNIGTyprb1lYCLLHWj8cJnNTVYZ3Mk6YcVONkGDxT4KSOXEbjq1Jh6c18DacTjxU4qaOtFss/lRZOr9P5rFY8WeBUbBGvqDSCEBl2PRjEwwVOxVaP/uPjGfZHInG7q+uBx/O5243nC5yKqs+7u0sAoedz5/66ePHN2bNP1tVdqK9/Fg6T37wbiRzAHgWciiab2fwskSgBkC7H4xtttg0Mc2XoyI+fw+FzkQgeNHAqhta1tZG1SFakfkE65/O93dGx2mg8Zbez/xZyFDzjdl/wetOvPAuigFMR9InRuNbpvLZggb6IIt/tz729J+32pU1NSw2GoxYL+d+7yeTjeDzfX3nP68XjBk7K6v7s2d97veu7us5Go7oginyTPyaT35lMi+rriR1ub7+WSNyh81f7HQ48ceCklJYNdP8iC/RyLLbMYCAOkmaJYv26q8HgAYOBBekdl+tEIPBbKiXo60RtNjx34KSIDgaD6cX6w7x5ZI2ST32tHaXIN3Nv0SKC+garlQWJHJP2MczhWEzE93k5GrUh/wg4KaGnnI92sjRvL1myuKFho91+fd48LRBFvodbc+YcZxjCDwsSsbUu10qzmRyTRH/ZgwidAyfZtdLlyl6+d5YtW9XevqK9/XwopBZRrF93PRY7YjQuaWxMg7Sqs7Nv5syPfT7p39gunw8LADjJqaOhUM6lTIjawDBk+Z6w2Yrs+L0JfAcC7zidaYpYi1gsidbW3+R6o1RqDsqigJNcsjPM8zyHeJaoJU1NZBFvstkuhMNFIIq8xc05cwjAa83mDJAWGI1MVdWXcn8b5NMEywA4yaO3szy9jMXNRiZYO9TWdnPgNxXajq6FQuQtlg6G7LiWqKhgZsz4VWD4jtLWIqMPOMmi73J5ehkL/ZTDkV7Wy1tavjObf0ql5ILqde5CX99pl2ujzZZNEbE5zc0zyss3K5meeyMWsyPKB5wkysYwzyg+78m+sYFDFLHFDQ0Hm5uvBoPizlTsXnR73rzzbjfZjla1t+cEiZjVYGiZNOmq8mUjiEkAJ6laTje7iT1E9bW1ZS/3dV1dRy2WH2IxGq7SkTqyv6XvjnjMOnJkpLm5OCEQxCSAk1Slb29piCKHqD5OtDqbK7LPnLXZWLTSdmfBghuJxCWf74zVesBgIL5iQYpYm1levqq1tZhx+d1+P5YEcBIpclZ4LOQOlBD16WCCnKKWNBimVlQcKvp869vxOKgATiLVJ7xjEdltnAoT1dXS0j5jxj0JuQ5SbJXLBTCAkxh9PrS6jnKDOjlvnjfXIUoWs40dGy3WYSmnHcYdFHASp9v5K4L4ieo3GhcqQNSUUaPmNzWpmxz4LJUKItMcOAlVQMKAjEezZzuqquRlaczo0Ru10fhlO4oLgZNQbefUe4uwPcGgvbNTLpbqRo/eY7drpAzkeDgMNoCTMJ2RdjFKXL4FFssiOcIS9rFjj/l82qmq+i2ZBBvASYBsDPNScvIbISpSV7e0uVkKS4mKivOFspxU6BqL+1zgRK9ldMkQBe1mf783T6IdjVlaWi5osoT+fRyfgBO99gsPkefboM739S3p7hbBUtBovNDXp82OFKdxfAJO9PpZVIg8H1HHk8mVQ8MSRy2WC273Ra/3uM22jhyxslia395+pb9fs91dnuL4BJwoFZR7hvRroqLRNYNEEZbSnLA5r6ddrgyoTslRl66ouTF0AzjRaIsCuXCvvb5kkhC1rLn5zoIF5Hf+1+K1GYnkJwZ9wq8MBu338Yt3d4MQ4FRYR5WJpBFCLvX0rHc6CTnkf//Phs+zX3A1kVhtNv+oUj6eIOtDX0vgRKPHiq1mAsxep5Pdef732l3/Mnd+9gt2uFy6aDH7NnJhgVNBReU+OGXY14Nfn+DE9ffSdkDhb0Au2+bxgBDgVEAb3W5FV+HDWOzkQC+X/+pfQYjKLCA3m8kLdIETat2BU2F9TV1+K9o+G5yu+//ePZbh7600GPQymAM4AafC+km+Gyce+7vJxAb3/u/mL/9MLXU6j8mUjQGcgJP6cjLMq2Itx30MQ+B5NX/17fi8K37/ge7u3V1dOhobBZyAUwEt1s/mAJyAk9b1gZbqIIATcNK3jg/MMIfR2Ea0WQZO/PpF54PZi2kLkRUBnHjkYBhAQm9hNGABTjyarV4zhgc6ubrlGvAATnxawzt4RlG7JlO1YtHsh1gMeAAnPr0vrXWRFDumtwD9N5iZC5z4tcfvV2t1fq6rC1xi7yD/FTjx64Dy2Xp5G0EajfrCKYXaQeDEr+9U6r/1Ryq1Wj+Zr8R+SSTABnAqoFMq3eE+iscXNzToCKf9gQDYAE4FdCEaVefDPhLpnTVLRzitQR0ucCqo6ypd/vwQCCRnzECIHDiVlG4VpdIp2y54vcGpUxHTA04lpTsq4XTC5XJNnoytCTiVlO6qlP96yuViqqt1gdMGZJEDJ0rdVwmn7z2e9qoq7bP0OQJ6wIleD1RqFnnV7zeMH69xlm5hZjtw0sXudCccnlVRga0JOJWU1KodfJpITB87Vuul7H4/eABOOgiUE5syerTGcfoCuxNwEqQf1avhmzhypMZxOhQKgQfgJEDX1MNpfHm5lll61dNzEuMGgZMgXVIpZ4/YmBEjNL47XYhGwQNwEqBzkYhai7Xsb3/TOE43kA8BnATptHpN9t566y2N4/QANU7ASZBU7FnpmzLlhnq1wDT2IpUCD8BJgFQsbp83c+ah7m6Nb1B+zJYGTvTarV7rldUGw7uabxfxvtcLJIATrXaq1xjsvY6Ovvp6jeN0E2l7wIleGxQe48k/68mph5KnuXY7qABOVFqmXu/IEy6XYcIENF0BTqWjeer1KP8hENB+2h6xx6lUN8MADOBUWBGbTa1l+ige135ixJuoCdoYASca2VUdSFOu+cSIN34pkveAE6Wep1Kq1WiMGaPxm9w397k9PW5cQAEnGqlY8tRWWan9m1zWNqM3GHCi0Rn1smB9tbXv6qTxP7LLgROVvlTP3eqvr1+lk8b/r5BwBJxo9J56iRGb29rm66dT+Xb4e8CpoFarN89zd1eXxlsrv+L8+hL8PeBUUCpOm77g9Rq13bzyIscTfpVKwd8DTgXktlpVC0Ank5O1nRixdegPZzsSzIFTQT1RqRes9mtyg21tzzitCOHvAafCuq5eP6NJo0dr+SY32Nm5mzMSG/E94FRYh1SakEusvarqtHpFIgWtx2731NZyf2cL4nvASbOx8p66ui9UzRssiNOk6up7nJvuU5EIIAFOfFqsXtXTO+3tW9vbNYtTsru7sbFxOyd143kqZUe9BnDikU+94N73Ho+1pkazOEVtNovFYpw4kfuby51OcAKc+PRYpeDe00RiTFmZdkMRNhv54VRXV18PBNK/+XUwCE6AE5/Oq5cIq+WrJ99AHK+pqWllU1P6N39LJuHtASc+7eV8+hbZumtqbqkXWuQ35+AxaUZFBTfhaHZ3N1ABTnmlYkuj/vr6vVoN7qW7RNTU1JznxD93+nxABTjlVVK9Mr73OzsXNzRoM/81/fPJ8PfOIFwOnPj1u0pV7t97PJbqag3i9JTTo9xisTRyZmM/S6VsYAU48UjFWU+VmpxEeH/oBI2JEydy43sLHA7QApy0GI2YoMlJhLeHdlRuaGjY2Nqa/tOPcHwCTjxap140wjRx4g/qwZy3sebQcWlms9nEcUqRXQ6c+BRTLxoxd+bMTy0WzdUOZgEzsbLy4WD2/Qt0hwVO/HqqUjRil9m8UHvBvezw3cyZM/dzErLm4/gEnHikVpOwp4mEfdIkreH0XSiU8fPp7OycU1eHZizAiUof+nyqdYTVXqpRztkZdZWV6RccyeINAk5/qs/hUGvtjtZe+/+Pc8XuJk+enA6X38YwNeDEI2tX1x8qrd3WysrL6u2NOW1bLl+uqalpZ0dHOm3Cg1p34MSjyypd5i5tbNRacO/tXHNozGZzYsaM9GuWoPYJOPFIreHT33s8yzlJcVqwhXkCdwbO7dMHuMwFTjxarl6hu3fKFK1Vtuf8EU2aNOnuYAj0G4z6BE48cjLMK5WWb93YsRqsHcxWfX39l4O3T+cR3ANO/FKr7d7f/vpXTVVn5Et56OjoICe9N5W5CO4BJ359qtLxyTV58hWV3jrbHiSTfHs4xy/FYELgxKd+lW6fjjoc2zUzPe360PzXTH+PE43otduxZoATn56plLznH9pyVUU7zjteevKkSY8Gh6Cux1x34MSvU+HwMO9qtI83ZFdXV3dmsJ7lA+AEnPi1zeNR6/ikEZx28s6eaW5u/shkYl+51+3GggFOfArZbGq1YbmmjWjE27x7jtFoXDJYUXIEQ5+AU0H9wplrVDT7ORwmRGkBJ/4Ag8ViiUyb9iafw+/HagFOBbRfpWrz6OAyVdcKznFyDMbKr6LHMnAqqGUqZRvFpk/XAk4Ffz7GwXrHW7wxQOAEvZEqnfcWaaDK/Q5FrkP94OCP++jBApxodFqNcPlRh+Om2i3Lz1I0eZ1YWckmNz7gvfAFTtAbvaNSuHyX2awuTl9Q5ImPHz/+yUC0BjgBJyoFVQqXqz6PcCtFT5UJEyY8HkiMgLMHnGj1oxrZ5R8O3pCqZYsoOn5VDvbcu4NQBHCilCrZ5Xu6utTFKWAr3NCfOHvs7nQFBbnAiVLz7XYVIgF+/y/qTUN8xhmcwaNxY8eyoYgTyNkDTvR6UPSxuTfj8d0qHduyW5PnU9WYMezrv8IkQuBEry+Knh7xczy+VT2cjtLVqzdUVLzpH2YyYZEAJ1otKHo14d1EYrF64z13UeTgdXZ2ugeT3xe1tmKRACft+nv3EwmHesG9tynOQgaDIZ294TcYsEKAkwAVeZLa3YGxf1dUikZEKcJ606ZN2zsQfnyWSLQAJ+Ck5fjeLwM4faFGSvtzurDe+PHjbw1kQp1wuUw4OwEnobpXxPIntpX+UjVS2i9QZOtZLJamCRPeeIZtbVgbwEnT/t7NwYTuF0VPad9NEYdobGx8u7n5TR3HrFlYG8BJsOYV0d+7MXjzc7q4x6dXqdQKihb+E6uqfgoG2b7qbdidgJM4/Vosf+/KYFJpkTvAvEyldhXKGOro6AgP1gunGhqwKoCTSBUtf+/c4AGmyCntz5LJlYV2p6lTprCtan8MBpsaG7EqgJNIpYo12v0kJ0e7mA3T7ycSSd6Mofb29lUGw5t4+syZWBLASZJuDbY+VdS+5aT5vOf1Fu3gdCQU8jAMzz/fMX3684Eb7b0M09zcjPUAnCTp70WZt/k1pzdQoFj+Hntw4tmbrI2N9wdGMxI3zzB9OhYDcJKqaFEW92dDo9UXijJflByc1rpc+famhMn068C38Vss1jppksViwWIATjKoCIeZjIbGm4sS3yMHp0SugxMBbKvD8WwgqnkrFDLW1CANAjjJph3KH2Y2Du367WSYlwrf5/6RSu0LBJxZB6f5dvu1wbuv407ntMpKsASc5JTPav1DYZyWZ0Wrjyvcoux5KrXZ7eb2fQ3ZbEdCIbbeljh4/fX1U6ZMgY8HnOSX0v335mX1B1/pcin6jo+SyfSbuhhmj9/P5jcRH29ja2v1uHEGpI0DJ4X0tsKLO5DVH9zW1fVEyZqr46GQ32plGGarx/No4I2Ie/lhZ2ftuHF1dXXYlICTglJ0cf+RZ8bzVwNpcgodnPYHAnO6uy8PhhD3W62zKiomT55sNpvxuIGT4vpascXN1g5ma75iNfbEryPu64uBX9+LRn21tdXV1Z2dnXjKwKlIUq6g8FL+pqp3lMnJeDVwTHrV0/OByTS5stJoNOL5AqdiS6F5at/mbyT0oWI5GbcJwzU15JiExwqc1JFCi5unkVDAZnulwDseczpnTJzY0dGBZwqcVJPPalUCp3W8k5vPyFpQSODc2NKysLXVwZv5CgGnYkiJ21X+obQENrne6HE8Hpw69YLXeyAYRB9X4KS+lOiO4uTdKOwM81yOhKMfg8HkjBkPY7HfBgKJNjxL4KQF3ZU1IPEwmSz4jkclzyY84XRubmtjf32AYjIaBJyKJHkroC5QjB5bJS0n48POzs8slj97vlL0WoGAU5EUsFpljLbRTNG0S0gw39befozjoJLv3IUgBHDSlE7JF5DYyBvWk/iOm9rargzdS69irC1w0po+ka/D0WzesF5aIgoK17e0XMn6Pj/C4EDgpDVtka9alvIdvQKvvLa2t9/I1cU2hUlnwElrWi5TuPxHIa4XfY39xybT9Vws3cuTawsBJzU1R6Z02AOcBkYFtaughzkQrthvtZ7PE3v8HCFy4KRByZVtRJxG+jft5WX494FyrIte76n8WRQLHA48O+CkRRUzDpHWY04J428c34/thnc3EvkyP+c098UQcFJH0qc/vUylhF4AcTMGD3R3vxig6/bAb5Ld6b2ODrkcSwg4FVVXJXeWvEKRD5Eh7nyNXWYz96ttb29/xXvVuwzJEMBJs5KeWr5PeGAgOTiCgHh3GX4dP0vPUykbkiGAk2a1X/JswrV0+RA5j08nXa6zWXdf9yKR83k6bB7jTOiAgJPm9IHkRNiITUyRxG8DZ7aPzeafOdvjq56e9zs7D+cP/e1DiBw4aVnrpVX1PRIVZwsPzh9YaTD8MejdEcdvYX39z7zO59H87Sgg4KS+Fknr2nVKlPeVrsztmzUr3fVh/qxZzwqFGS8KD3tAwKl4iksbTPihqFTULwcPbH319Wwh03tGI83b3RqcDA8BJy3KIy0x4pP83Yt4dGPw6nZxQwPZoL6l3iGf4A4XOGlZTFeXlCLCq8K9r26GYd/xbiTSWFFxXWBoEYFy4KRpPZLWtdwpcH2nT2u/xWKPhXeHDdrQbQU4aVi3pXU8XuFyCXq796VNbetBpRNw0rKuSMsz2i/wLuigtJkD/UgnB05alsSOET8JjLZJpHelwM0QAk5FlcTt4pXA8MDv0ppXbhSV0wQBpyJpj+QGLPT1TtILFncMHQ4PASdt6X3JE903UO8YfZJHp+1CDyPgpGVtktzPiL55w+YivhcEnFSQ9OHq5yIRyvfaJdmx/ArVuMBJy5LugN2l7tQlfez0ISSVAyctKyEtC5ZtF0H5XtKLf1GjAZw0La8c7cHcVivNe12U3JriFApygZPGJR0nyi7HtySPcKc/p0HASR1Jn0yzhK7B0GNp6baoIAROOpD0VU6ZrCB9G7wMnICTxiW9eeU2ir7KToaRjtM1THYCThrXTclHmp0UuT+yxDx+AE7ASeOS3gv2Y4rcn+BgA6OiDb+BgJMK+j4SkbjKd1M0jYjKgdNNdF8BThpXcVorpyTfF2N3Ak460KFQqAiT22WZznYdOAEnjWuf5E7lNHUTsuB0CYFy4KRxfSo50ZsmsieLs3cBOAEnjUt643+aeZ6yhCLOIskIOGlc2yRX9dGMpZElUI4UWOCkdW2QNkeDciigR45rXIx4Ak5a19uSC3L7KNrf2eVIMjqCeifgpHEtdzqL08xIOk4HUdwOnDSuRZLr2ylnEL6U1mQPvSKAkw7UK/lGyENXjftUMk57RI3AgYBT8dQjDaffqXtFPJBcWPUh+uwBJ40rJu2ClT6PTnolyFaKCy4IOKkpiTdCx6mD1xckV4KsQct/4KRxSbwR2k19njkqOdeWsikFBJxUk8QboU3UDth+ybm286jHC0DASTVJWeILqEeY/V1ycmAUwzyBk/b1XEII20cXJSfaIjk50EP9XhBwUk2ie4M9o46Sd8kxXgBz24GTDnRfbG8wQa2F5ku74HqSTOJJAScd6I7YGyFBOakRaRH52+i7Apx0IdEXrIKma1qlNXBGR2XgpA/diMWUDutJ9CqJfYfqDOCkC10VhRPZauyMsOjAFQmJEZjkCZz0oUuiVvlPwtt0SUmMwNh24KQPnRPVCFZEMd8eCV2TkLAHnPShM6JwEpHfLaXNi9BzGgSc1NEJUX2V5wrPoJNSSB9BhhFw0oW+E36keZlKiVjdUppXIr8IOOlDItqUi5tcJnpo2kOkRAAnveibYFCJNv859UhUfiAGpQEn3ehL4ZVIq8TG2a6JuuM6iYaVwEkv2iscJ9G1Et+Kunrahztc4KQX7RZ4HXRLQjbqJ6KunnbiDhc46UW7BNbJfi2hfeR6US3RV+MOFzjpRR8KxGk9xciMfFogquksukQAJ93ofa9X0OL2Sygy94lqnORHWTtw0oveFYLTvURC4tsJbU3xB8ragZOOtFVIKp30qTA/CoyV30EdLnDSkTYJwWmL5M7GxwWmCJ7DDE/gpCMJirbFurslvp3QuPwBzKEBTjrSGuqWXbLkzm0SWKbxEQZnACcdaRU1TrKM0+wTGCuXEpeHgFOxRV+GtFmOkTB+gbHyPhQOAicdaQk1TnJ1CX8hJFYeQuEgcNKRFtJ5XzIWHdG3IsOlE3DSmebT4XRYvk53x6hj5Xcl3xpDwKmomkvXPXyTfCGBT6lj5Wj+Cpx0ph66Fg4yNj/ZTB0rP4Lmr8BJX4pT4PRY1m4Ni6mDH3uoh4VCwEkTopltcVzW8nL6cfHvonAQOOlLAQqc3pN1WdNP03gbhYPASV+iGd7eK3cB32900zTm4w4XOOlLBdvfvUilZC/fu0o3ZwB3uMBJZ7IVwumSAtFqmmkar9D8FTjpUcUPr9FM03iA5q/ASY/iT6JboUA8gKYEGM1fgZMu9YwXJ68CnU+WUVw9nUUdLnDSox7nbx3+qzJZc3MoMpswDxc46VI8YeszymwRNJdd+9FLGTjpUXfz4/SZMmk+DMVN7i5kGAEnPep2PJ5vTa9VrLa84HAaZBgBJ12Kp/ddUnLrony6mZ9h1tahSwRw0qPy5Si8TKWUK4Y9X2jE9VKnE48GOOlP+Va2ojc/RwolRqDTP3DSpU7nwemQkqHqzwuNacO0duCkS+XLoNuhZDCg4OQONwZnACc9Kt/wdkXLjbYUyjNyMOhiBJx0qK/yDG9XtGXk2kK90bE3ASddKt+06bhiUfIuiu6zeC7ASZfKNwFa0dMLf7PyF6kUngtw0qVyjsd9qfCCns2bBfsUOAEnnWpHriDbfYU7sEZ5s2AfoXYQOOlUOYNsSlfv8Y+d/g3tlIGTTpVzAKHS1Xt23h4V2J2Ak161M5ezd0X5/uB8ZyfgBJz0KLfVmrPe6YnyCxqNIoBTqWlT/uvUVUpmRfDPlcLsDOCkS/EUOylaD7uDN2cPOAEn/Ym/37+iOB3mLdAATsBJf+LfIhTF6S5vm3LgBJz0p1O8czX3KdZLqOAUHOAEnPQntdb0pkLp5MAJOOlMq1yugs3uVDk4ASfgpD/tK1ReLu+Eaa6eFOoKBpyAk87EEyLnXubK3rOBZlcETsBJT3JTDB1UaGUfphjutA8dlYFTiR2c0rZQvip3gnFBTw8dlYGTzrSLYmBZ2g7L1yGsYEwPOAEn/eki3XRa2dNhKd8XZyfgVIIHJ3n7RkQo5tAAJ+BUygcnGY9POwq1qgROwEl/oomtZdhsOTqG03uYwAk46UY0sTWu3ZOpcwP9OwIn4KQPUcbWlMiNAE7AqdQkKKYn48rmL78FTsBJf6KPraXdPLl6wQrCCU2VgZMORB9bY1uxzpZvZpnQ6DweFnDSuvhrYJVuvQKcgNMw9fSUSPMRdGzDuDTgVCKenkKRAEGJgguVnC4FASep4u8MUYS5tPxTM4ATcNKTKG9vFc3mfppKqehtQsCpqDvDPYVHV9DnN6GCEDhpVzSdIZRrDpEWfU4GbnKBk0ZFWQN7T/mpSoJun/DggJMWRRlSU3prYkXT8kXRiAgEnBQ/NT1NpYpz1UPpdio9wgMCTmKcK8pMCBkbQvCLvngRwT3gpC2WNOhZocQdOOlPCx0OepaKtjWxKn7LFwg4idyRNrrdJ6kTIIgR6oqcIEefvCdjSjsEnAT7UYJyxlmHqvgBNHqcdni9eKzASTWc6OsCiYOnVl4cfXDvVDiMxwqcNHRkIv9LdgNiZGnu8vvJC1SvfRCUWo5KDeAEyYZTcS6XIeA0LHC6q3zqEwSchgtO2KCAE1TggCcIpyfJJE5QwAmSBydih4p70QycID1JKE5w+YATlFcixg4Qlw9JEsAJyiFBbVi4UT4cooATlENC43uqZOsCJ6jEXT783IATlFub3G76bmHocAScoAIixyHi+PFDpW7OLnCC9CdCC+GKa6tcLiAEnCAIOEEQcIIgCDhBEHCCIOAEQRBwgiDgBEHACYKAEwRBwAmCgBMEAScIgoATBAEnCAJOEAScIAgCThAEnCAIOEEQBJwgCDhBEHCCIOAEQRBwgiDgBEHACYIg4ARBwAmCgBMEAScIgoATBAEnCAJOEAQBJwgCThAEnCAIOEEQBJwgSBX9fwunVGK6BbdKAAAAAElFTkSuQmCC'"; break; case "witch": - fileName += "witch.png'"; + fileName = "'data:image/png;base64,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'"; break; default: - fileName += "default.png'"; + fileName = "'data:image/png;base64,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'"; + } + } else /* V.imageChoice === 0*/ { + fileName += "'resources/renders/assistant "; + switch (V.assistantAppearance) { + case "monstergirl": + fileName += "monstergirl.png'"; + break; + case "shemale": + fileName += "shemale.png'"; + break; + case "amazon": + fileName += "amazon.png'"; + break; + case "businesswoman": + fileName += "businesswoman.png'"; + break; + case "goddess": + fileName += "goddess.png'"; + break; + case "schoolgirl": + fileName += "schoolgirl.png'"; + break; + case "angel": + fileName += "angel.png'"; + break; + case "cherub": + fileName += "cherub.png'"; + break; + case "ERROR_1606_APPEARANCE_FILE_CORRUPT": + fileName += "corrupt.png'"; + break; + case "fairy": + fileName += "fairy.png'"; + break; + case "imp": + fileName += "imp.png'"; + break; + case "incubus": + fileName += "incubus.png'"; + break; + case "pregnant fairy": + fileName += "pfairy.png'"; + break; + case "succubus": + fileName += "succubus.png'"; + break; + case "witch": + fileName += "witch.png'"; + break; + default: + fileName += "default.png'"; + } } if (sizePlacement === 3) { @@ -13806,6 +13907,20 @@ 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 $his family tree.">> + <<replace #familyTreeLink>> + <<run renderFamilyTree($slaves, $activeSlave.ID)>> + <</replace>> + <</link>> +</span> + +*/ + window.renderFamilyTree = function(slaves, filterID) { var ftreeWidth,ftreeHeight; @@ -14024,14 +14139,13 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) { var charList = [fake_pc]; charList.push.apply(charList, slaves); charList.push.apply(charList, State.variables.tanks); - charList.push.apply(charList, State.variables.cribs); var unborn = {}; for(var i = 0; i < State.variables.tanks.length; i++) { unborn[State.variables.tanks[i].ID] = true; - for(var i = 0; i < State.variables.cribs.length; i++) { - unborn[State.variables.cribs[i].ID] = true; } + for (var i = 0; i < State.variables.cribs.length; i++) { + unborn[State.variables.cribs[i].ID] = true; } for(var i = 0; i < charList.length; i++) { @@ -14254,6 +14368,20 @@ 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; @@ -14402,7 +14530,7 @@ window.updateFamilyTree = function(activeSlave = lastActiveSlave, slaves = lastS }; -/*heroCreator.tw [script]*/ +/*:: heroCreator.tw [script]*/ window.getHeroSlave = function(heroSlave, baseHeroSlave) { var newSlave = clone(baseHeroSlave); @@ -14412,58 +14540,6 @@ window.getHeroSlave = function(heroSlave, baseHeroSlave) { return newSlave; } -/*SFJS [script]*/ - -window.simpleWorldEconomyCheck = function() { - var n1 = 4; - var n2 = 3; - var n3 = 2; - if(State.variables.economy === .5) { - return n1; - } else if(State.variables.economy === 1.5) { - return n3; - } else { - return n2; - } -} - -window.HSM = function() { - if (State.variables.PC.hacking <= -100) - return 1.5; - else if (State.variables.PC.hacking <= -75) - return 1.35; - else if (State.variables.PC.hacking <= -50) - return 1.25; - else if (State.variables.PC.hacking <= -25) - return 1.15; - else if (State.variables.PC.hacking < 0) - return 1.10; - else if (State.variables.PC.hacking === 0) - return 1; - else if (State.variables.PC.hacking <= 10) - return .97; - else if (State.variables.PC.hacking <= 25) - return .95; - else if (State.variables.PC.hacking <= 50) - return .90; - else if (State.variables.PC.hacking <= 75) - return .85; - else if (State.variables.PC.hacking < 100) - return .80; - else if (State.variables.PC.hacking >= 100) - return .75; - } - - window.TierTwoUnlockCalc = function() { - const V = State.variables; - if (V.securityForceInfantryPower > 5) V.securityForceInfantryPower = 5; - if (V.securityForceArcologyUpgrades > 5) V.securityForceArcologyUpgrades = 5; - if (V.securityForceVehiclePower > 5) V.securityForceVehiclePower = 5; - if (V.securityForceDronePower > 5) V.securityForceDronePower = 5; - if (V.securityForceStimulantPower > 5) V.securityForceStimulantPower = 5; - if (V.securityForceAircraftPower > 5) V.securityForceAircraftPower = 5; - } - /*:: colorModeJS [script]*/ window.flipColors = function (lightColorMap){ @@ -14521,9 +14597,9 @@ window.restoreColors = function(styleMap){ /* * <<htag>> macro * A simple macro which allows to create wrapping html elements with dynamic IDs. - * idea blatantly robbed from the spanMacroJS.tw but expanded to a more generic + * idea blatantly robbed from the spanMacroJS.tw but expanded to a more generic * case, allowing <div>, <button> or whatever you want. elements, default is for - * the div though. In addition, you can pass an object in as the first argument + * the div though. In addition, you can pass an object in as the first argument * instead of an id, and each of the object's attributes will become attributes * of the generate tag. * @@ -14887,7 +14963,7 @@ window.DefaultRules = (function() { break; case "work as a farmhand": - if ((V.farmyardSlaves < V.farmyard && canWalk(slave))) //TODO: rework these requirements + if ((V.farmyardSlaves < V.farmyard)) //TODO: rework these requirements break; else { RAFacilityRemove(slave, rule); @@ -15066,6 +15142,10 @@ window.DefaultRules = (function() { slave.collar = rule.collar; if ((slave.collar == "none")) r += `${slave.slaveName} has been given no collar.`; + else if ((slave.collar == "pretty jewelry")) + r += `${slave.slaveName} has been given ${slave.collar}.`; + else if ((["dildo gag", "massive dildo gag", "ball gag", "bit gag", "neck corset", "porcelain mask", "bell collar", "bowtie"].includes(slave.collar))) + r += `${slave.slaveName} has been given a ${slave.collar}.`; else r += `${slave.slaveName} has been given a ${slave.collar} collar.`; } @@ -15338,7 +15418,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>slave.slaveName is a virgin and has been given a slave.vaginalAccessory for her pussy.`; + r += `<br>slave.slaveName is a virgin and has been given a ${slave.vaginalAccessory} for her pussy.`; break; } } @@ -15394,7 +15474,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} has been given a slave.vaginalAccessory for her pussy.`; + r += `<br>${slave.slaveName} has been given a ${slave.vaginalAccessory} for her pussy.`; break; } } @@ -15526,7 +15606,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} is an anal virgin and has been given a slave.buttplug for her asshole.`; + r += `<br>${slave.slaveName} is an anal virgin and has been given a ${slave.buttplug} for her asshole.`; break; } } @@ -15583,7 +15663,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} has been given a slave.buttplug for her asshole.`; + r += `<br>${slave.slaveName} has been given a ${slave.buttplug} for her asshole.`; break; } } @@ -15604,7 +15684,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} has been given a slave.buttplugAttachment to attach to her buttplug.`; + r += `<br>${slave.slaveName} has been given a ${slave.buttplugAttachment} to attach to her buttplug.`; break; } } @@ -15698,7 +15778,7 @@ window.DefaultRules = (function() { function ProcessAssetGrowthDrugs(slave, rule) { // Asset Growth - const growth_drugs = new Set(["breast injections", "intensive breast injections", "breast redistributors", "butt injections", "intensive butt injections", "butt redistributors", "lip injections", "lip atrophiers", "penis enhancement", "intensive penis enhancement", "penis atrophiers", "testicle enhancement", "intensive testicle enhancement", "testicle atrophiers", "hyper breast injections", "hyper butt injections", "hyper penis enhancement", "hyper testicle enhancement"]); + const growth_drugs = new Set(["breast injections", "breast redistributors", "butt injections", "butt redistributors", "hyper breast injections", "hyper butt injections", "hyper penis enhancement", "hyper testicle enhancement", "intensive breast injections", "intensive butt injections", "intensive penis enhancement", "intensive testicle enhancement", "lip atrophiers", "lip injections", "penis atrophiers", "penis enhancement", "testicle atrophiers", "testicle enhancement"]); if ((slave.drugs == "super fertility drugs" || slave.drugs == "fertility drugs") && isFertile(slave)) { r += `<br>${slave.slaveName} is on ${slave.drugs} and will not be considered for drug enhancement until that regime is complete.`; return; @@ -17172,7 +17252,6 @@ window.DefaultRules = (function() { })(); /*:: Rules Assistant Options [script]*/ - // rewrite of the rules assistant options page in javascript // uses an object-oriented widget pattern // wrapped in a closure so as not to pollute the global namespace @@ -17957,7 +18036,6 @@ window.rulesAssistantOptions = (function() { if (V.club > 0) items.push("Club"); if (V.arcade > 0) items.push("Arcade"); if (V.dairy > 0) items.push("Dairy"); - if (V.farmyard > 0) items.push("Farmyard"); if (V.servantsQuarters > 0) items.push("Servant Quarters"); if (V.masterSuite > 0) items.push("Master Suite"); if (V.schoolroom > 0) items.push("Schoolroom"); @@ -18707,8 +18785,8 @@ window.rulesAssistantOptions = (function() { constructor() { const pairs = [ ["No default setting", "no default setting"], - ["B Cup", 350], - ["D Cup", 1000], + ["B-Cup", 350], + ["D-Cup", 1000], ["Monstrous", 9000], ["Unlimited", 48000], ["None", 0] @@ -21817,11 +21895,11 @@ window.SpaUIName = function() { return `<<link "${name}""Spa">><</link>> `} window.NurseryUIName = function() { const V = State.variables; - var name = ""; - if (V.nurseryNameCaps === "The Nursery") - name = "Nursery" - else - name = V.nurseryNameCaps; + var name = ""; + if (V.nurseryNameCaps === "The Nursery") + name = "Nursery" + else + name = V.nurseryNameCaps; return `<<link "${name}""Nursery">><</link>> `} window.ClinicUIName = function() { const V = State.variables; @@ -21999,7 +22077,7 @@ window.SlaveSummaryUncached = (function(){ } else { r += `pink`; } - r += `">`; + r += `"> `; if (slave.hormoneBalance < -400) { r += `Overwhelmingly masculine`; } else if (slave.hormoneBalance <= -300) { @@ -26469,7 +26547,7 @@ window.SlaveSummaryUncached = (function(){ return SlaveSummaryUncached; })(); -// :: Remove activeSlave JS [script] +/*:: Remove activeSlave JS [script]*/ window.removeActiveSlave = function removeActiveSlave() { "use strict"; @@ -26836,83 +26914,6 @@ window.getHighestPorn = function(slave) { /*:: Art JS [script]*/ -/* -Displays assistant images. Currently passage-based. -sizePlacement: Image size/center. - 3: Large, right. Example: description. - 2: Medium, right. Example: random events. -*/ -window.assistantArt = function assistantArt(sizePlacement) { - const V = State.variables; - let fileName = ""; - - if (V.imageChoice === 0 || V.imageChoice === 1) { - if (V.imageChoice === 1) { - fileName += "'resources/vector/avatar/"; - } else /* V.imageChoice === 0*/ { - fileName += "'resources/renders/assistant "; - } - switch (V.assistantAppearance) { - case "monstergirl": - fileName += "monstergirl.png'"; - break; - case "shemale": - fileName += "shemale.png'"; - break; - case "amazon": - fileName += "amazon.png'"; - break; - case "businesswoman": - fileName += "businesswoman.png'"; - break; - case "goddess": - fileName += "goddess.png'"; - break; - case "schoolgirl": - fileName += "schoolgirl.png'"; - break; - case "angel": - fileName += "angel.png'"; - break; - case "cherub": - fileName += "cherub.png'"; - break; - case "ERROR_1606_APPEARANCE_FILE_CORRUPT": - fileName += "corrupt.png'"; - break; - case "fairy": - fileName += "fairy.png'"; - break; - case "imp": - fileName += "imp.png'"; - break; - case "incubus": - fileName += "incubus.png'"; - break; - case "pregnant fairy": - fileName += "pfairy.png'"; - break; - case "succubus": - fileName += "succubus.png'"; - break; - case "witch": - fileName += "witch.png'"; - break; - default: - fileName += "default.png'"; - } - - if (sizePlacement === 3) { - fileName = `<img src=${fileName} style='float:right; border:3px hidden'/>`; - } else if (V.imageChoice === 1) { - fileName = `<img src=${fileName} style='float:right; border:3px hidden' width='282' height='602'/>`; - } else /* V.imageChoice === 0 */ { - fileName = `<img src=${fileName} style='float:right; border:3px hidden' width='300' height='300'/>`; - } - } - return fileName; -}; - window.ArtControlRendered = function ArtControlRendered(slave, sizePlacement) { const V = State.variables; let fileName = "'resources/renders/"; @@ -26987,45 +26988,55 @@ window.ArtControlRendered = function ArtControlRendered(slave, sizePlacement) { /* This takes a textual hair color description and tries to guess the appropriate HTML compliant color code. -hColor should be a color name, but can also be a string describing hair color. + +color should be a color name, but can also be a string describing hair color. +eyes can be nearly anything, it only indicates that the function is being used for eye color instead of hair color. + This code's working is described to the user in the Encyclopedia, chapter "Lore", section "Dyes". */ - -window.extractHairColor = function (hColor) { +window.extractColor = function (color, eyes) { /* these are color names known and used in FreeCities attributed color names are at the front of the array */ var FCname2HTMLarray = [ - ["auburn", "#7e543e"], - ["black", "#3F4040"], + ["amber", "#ffbf00"], + ["auburn", "#a53f2a"], + ["black", "#171717"], ["blazing red", "#E00E2B"], ["blonde", "#F4F1A3"], - ["blue-violet", "#8790B7"], ["blue", "#4685C5"], - ["brown", "#8D4F21"], - ["burgundy", "#5f3946"], + ["blue-violet", "#8790B7"], + ["brown", "#7e543e"], + ["burgundy", "#34000d"], ["chestnut", "#663622"], - ["chocolate", "#6e4937"], - ["copper", "#a16145"], - ["dark brown", "#463325"], + ["chocolate", "#402215"], + ["copper", "#e29c58"], + ["dark blue", "#000034"], + ["dark brown", "#4b3225"], + ["dark orchid", "#9932CC"], ["deep red", "#6D1318"], ["ginger", "#da822d"], - ["golden", "#ffdf31"], + ["golden", "#ffd700"], ["green", "#5FBA46"], - ["grey", "#9e9fa4"], + ["green-yellow", "#ADFF2F"], + ["grey", "#8d8d8d"], ["hazel", "#8d6f1f"], - ["light olive", "#d4c6bb"], - ["neon blue", "#2284C3"], + ["jet black", "#060606"], + ["light olive", "#806b00"], + ["neon blue", "#0e85fd"], ["neon green", "#25d12b"], - ["neon pink", "#cc26aa"], + ["neon pink", "#fc61cd"], + ["pale-grey", "#b3b3b3"], ["pink", "#D18CBC"], ["platinum blonde", "#fcf3c1"], + ["purple", "#800080"], ["red", "#BB2027"], - ["silver", "#cdc9c6"], + ["sea green", "#2E8B57"], + ["silver", "#d9d9d9"], ["strawberry-blonde", "#e5a88c"], /* these are not actually FreeCities canon, but like to appear in custom descriptions */ - ["brunette", "#8D4F21"], + ["brunette", "#6d4936"], ["dark", "#463325"] ]; @@ -27033,30 +27044,30 @@ window.extractHairColor = function (hColor) { var HTMLstandardColors = ["aliceblue", "antiquewhite", "aqua", "aquamarine", "azure", "beige", "bisque", "black", "blanchedalmond", "blue", "blueviolet", "brown", "burlywood", "cadetblue", "chartreuse", "chocolate", "coral", "cornflowerblue", "cornsilk", "crimson", "cyan", "darkblue", "darkcyan", "darkgoldenrod", "darkgray", "darkgrey", "darkgreen", "darkkhaki", "darkmagenta", "darkolivegreen", "darkorange", "darkorchid", "darkred", "darksalmon", "darkseagreen", "darkslateblue", "darkslategray", "darkslategrey", "darkturquoise", "darkviolet", "deeppink", "deepskyblue", "dimgray", "dimgrey", "dodgerblue", "firebrick", "floralwhite", "forestgreen", "fuchsia", "gainsboro", "ghostwhite", "gold", "goldenrod", "gray", "grey", "green", "greenyellow", "honeydew", "hotpink", "indianred", "indigo", "ivory", "khaki", "lavender", "lavenderblush", "lawngreen", "lemonchiffon", "lightblue", "lightcoral", "lightcyan", "lightgoldenrodyellow", "lightgray", "lightgrey", "lightgreen", "lightpink", "lightsalmon", "lightseagreen", "lightskyblue", "lightslategray", "lightslategrey", "lightsteelblue", "lightyellow", "lime", "limegreen", "linen", "magenta", "maroon", "mediumaquamarine", "mediumblue", "mediumorchid", "mediumpurple", "mediumseagreen", "mediumslateblue", "mediumspringgreen", "mediumturquoise", "mediumvioletred", "midnightblue", "mintcream", "mistyrose", "moccasin", "navajowhite", "navy", "oldlace", "olive", "olivedrab", "orange", "orangered", "orchid", "palegoldenrod", "palegreen", "paleturquoise", "palevioletred", "papayawhip", "peachpuff", "peru", "pink", "plum", "powderblue", "purple", "rebeccapurple", "red", "rosybrown", "royalblue", "saddlebrown", "salmon", "sandybrown", "seagreen", "seashell", "sienna", "silver", "skyblue", "slateblue", "slategray", "slategrey", "snow", "springgreen", "steelblue", "tan", "teal", "thistle", "tomato", "turquoise", "violet", "wheat", "white", "whitesmoke", "yellow", "yellowgreen"]; var FCnames = new Map(FCname2HTMLarray); - hColor = hColor.toLowerCase(); /* normalization: lowercase color name */ - var colorCode = FCnames.get(hColor); /* look up in FreeCities color names */ + color = color.toLowerCase(); /* normalization: lowercase color name */ + var colorCode = FCnames.get(color); /* look up in FreeCities color names */ if (!colorCode) { /* not a FreeCities color name*/ - if (HTMLstandardColors.includes(hColor) || hColor.match(/^#([0-9a-f]{3}){1,2}$/) !== null) { - colorCode = hColor; /* is a HTML color name or value, use it directly */ + if (HTMLstandardColors.includes(color) || color.match(/^#([0-9a-f]{3}){1,2}$/) !== null) { + colorCode = color; /* is a HTML color name or value, use it directly */ } else { /* - is not even a HTML color name. hColor probably is a description. + is not even a HTML color name. color probably is a description. look for anything resembling a valid color name within the description. */ - var hColorNoSpaces = hColor.replace(/\s+/g, ''); /* remove all spaces from description */ + var colorNoSpaces = color.replace(/\s+/g, ''); /* remove all spaces from description */ var FCkeys = Array.from(FCnames.keys()); var colorCodes = [ FCnames.get(FCkeys.find(function (e) { - return hColor.startsWith(e); + return color.startsWith(e); })), HTMLstandardColors.find(function (e) { - return hColorNoSpaces.startsWith(e); + return colorNoSpaces.startsWith(e); }), FCnames.get(FCkeys.find(function (e) { - return hColor.includes(e); + return color.includes(e); })), HTMLstandardColors.find(function (e) { - return hColorNoSpaces.includes(e); + return colorNoSpaces.includes(e); }) ]; colorCode = colorCodes.find(function (e) { @@ -27065,8 +27076,11 @@ window.extractHairColor = function (hColor) { } } if (!colorCode) { - console.log("Art Color Tools JS: Unable to determine HTML compliant color code for hair color string '" + hColor + "'."); - colorCode = "fuchsia"; /* use fuchsia as error marker */ + console.log("Art Color Tools JS: Unable to determine HTML compliant color code for color string '" + color + "'."); + if (eyes) + colorCode = "#89b7ff"; + else + colorCode = "fuchsia"; /* use fuchsia as error marker */ } return colorCode; }; @@ -27077,7 +27091,7 @@ window.clothing2artSuffix = function (v) { } /* universal "special case": latex art is actually "restrictive latex" TODO: align name in vector source */ return v.replace(/^a[n]? /, "") /* remove "a" and "an" from the beginning*/ .replace(/ ?(outfit|clothing) ?/, "") /* remove "outfit" and "clothing" (redundant) */ - .replace(/ and .+/, "") /* remove concatenated descriptions */ + .replace("-", "") /* remove minus character */ .replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + @@ -27088,11 +27102,11 @@ window.clothing2artSuffix = function (v) { }; window.skinColorCatcher = function (artSlave) { - var colorSlave = { - skinColor: "#e8b693;", - areolaColor: "#d76b93;", - labiaColor: "#d76b93;", - lipsColor: "#ff69b4;" + let colorSlave = { + skinColor: "#e8b693", + areolaColor: "#d76b93", + labiaColor: "#d76b93", + lipsColor: "#ff69b4" }; if (artSlave.skin == "camouflage patterned") { colorSlave.skinColor = "#78875a"; @@ -27129,1318 +27143,1510 @@ window.skinColorCatcher = function (artSlave) { colorSlave.areolaColor = "#E7DF7D"; colorSlave.labiaColor = "#F977A3"; colorSlave.lipsColor = "#e0d050"; - } else if (artSlave.race == "white") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#F4EAF0"; - colorSlave.areolaColor = "#FCCCDC"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#F4EAF0"; - colorSlave.areolaColor = "#FCCCDC"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F5E1DF"; - colorSlave.areolaColor = "#EFBFCA"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F5E1DF"; - colorSlave.areolaColor = "#EFBFCA"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F5D5C9"; - colorSlave.areolaColor = "#E2B4B9"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F5D5C9"; - colorSlave.areolaColor = "#E2B4B9"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F4C9AA"; - colorSlave.areolaColor = "#F19795"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F4C9AA"; - colorSlave.areolaColor = "#F19795"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F4C9AA"; - colorSlave.areolaColor = "#F19795"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#E1B585"; - colorSlave.areolaColor = "#C39696"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#E1B585"; - colorSlave.areolaColor = "#C39696"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#A2805C"; - colorSlave.areolaColor = "#8E6454"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#825633"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "black") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FEE4CA"; - colorSlave.areolaColor = "#E0B3A2"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FEE4CA"; - colorSlave.areolaColor = "#E0B3A2"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E3C5A7"; - colorSlave.areolaColor = "#EFBDC9"; - colorSlave.labiaColor = "#CC9B88"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E3C5A7"; - colorSlave.areolaColor = "#CC9B88"; - colorSlave.labiaColor = "#CC9B88"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#DEB892"; - colorSlave.areolaColor = "#AB806F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#DEB892"; - colorSlave.areolaColor = "#AB806F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#D59D73"; - colorSlave.areolaColor = "#8D6859"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#D59D73"; - colorSlave.areolaColor = "#8D6859"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#D59D73"; - colorSlave.areolaColor = "#8D6859"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#AC7C4A"; - colorSlave.areolaColor = "#7C594B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#AC7C4A"; - colorSlave.areolaColor = "#7C594B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#745C42"; - colorSlave.areolaColor = "#63463B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4B3121"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#5A3C24"; - colorSlave.areolaColor = "#493326"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#5A3C24"; - colorSlave.areolaColor = "#493326"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#46362C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#583D3D"; - colorSlave.areolaColor = "#3B3028"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#4A3A33"; - colorSlave.areolaColor = "#332B27"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#312926"; - colorSlave.areolaColor = "#181616"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "latina") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FEDECE"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FEDECE"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#8B644F"; - colorSlave.areolaColor = "#7B5749"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#775031"; - colorSlave.areolaColor = "#69452F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#614330"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#614330"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#74523E"; - colorSlave.areolaColor = "#573F30"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6B4B4B"; - colorSlave.areolaColor = "#473426"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4D3A2E"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4D3A2E"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "asian") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FFF8EE"; - colorSlave.areolaColor = "#F7DBD0"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FFF8EE"; - colorSlave.areolaColor = "#F7DBD0"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#EABFB3"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#EABFB3"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#9A774A"; - colorSlave.areolaColor = "#855E4E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#855834"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "middle eastern") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#84684A"; - colorSlave.areolaColor = "#735143"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#684528"; - colorSlave.areolaColor = "#563826"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#604534"; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#604534 "; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "amerindian") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FDE4BF"; - colorSlave.areolaColor = "#F0BEAA"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FDE4BF"; - colorSlave.areolaColor = "#F0BEAA"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#CDA499"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#CDA499"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#9A774A"; - colorSlave.areolaColor = "#855E4E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#855834"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "southern european") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#EBDBE4"; - colorSlave.areolaColor = "#FFE4E0"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#EBDBE4"; - colorSlave.areolaColor = "#FFE4E0"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F0D0CC"; - colorSlave.areolaColor = "#EAACBA"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F0D0CC"; - colorSlave.areolaColor = "#EAACBA"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F1C6B5"; - colorSlave.areolaColor = "#DCA2A9"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F1C6B5"; - colorSlave.areolaColor = "#DCA2A9"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F2BC94"; - colorSlave.areolaColor = "#EE8280"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F2BC94"; - colorSlave.areolaColor = "#EE8280"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F2BC94"; - colorSlave.areolaColor = "#EE8280"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#DCA972"; - colorSlave.areolaColor = "#BF7577"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#DCA972"; - colorSlave.areolaColor = "#BF7577"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#937453"; - colorSlave.areolaColor = "#7F5A4B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#7F5431"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "semitic") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#84684A"; - colorSlave.areolaColor = "#735143"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#684528"; - colorSlave.areolaColor = "#563826"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#604534"; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#604534 "; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "malay") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#7C563C"; - colorSlave.areolaColor = "#70493A"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#804A28"; - colorSlave.areolaColor = "#5F3F27"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "indo-aryan") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#F8D4BE"; - colorSlave.areolaColor = "#F8B6A4"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#F8D4BE"; - colorSlave.areolaColor = "#F8B6A4"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#EFCCAF"; - colorSlave.areolaColor = "#EA9B86"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#EFCCAF"; - colorSlave.areolaColor = "#EA9B86"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#FCC49A"; - colorSlave.areolaColor = "#D29577"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#FCC49A"; - colorSlave.areolaColor = "#D29577"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#E8B68E"; - colorSlave.areolaColor = "#D08661"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#E8B68E"; - colorSlave.areolaColor = "#D08661"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#E8B68E"; - colorSlave.areolaColor = "#D08661"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#C36E45"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#C36E45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#83684B"; - colorSlave.areolaColor = "#715043"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#8A593C"; - colorSlave.areolaColor = "#714931"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#845834"; - colorSlave.areolaColor = "#614635"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#845834"; - colorSlave.areolaColor = "#614635"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#7C5842"; - colorSlave.areolaColor = "#5F4538"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#7C5842"; - colorSlave.areolaColor = "#5F4538"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#6B5449"; - colorSlave.areolaColor = "#473C37"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#6B5449"; - colorSlave.areolaColor = "#473C37"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "pacific islander") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#7C563C"; - colorSlave.areolaColor = "#70493A"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#804A28"; - colorSlave.areolaColor = "#5F3F27"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - - } else if (artSlave.race == "mixed race") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FEE5CC"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FEE5CC"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#8B644F"; - colorSlave.areolaColor = "#7B5749"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#775031"; - colorSlave.areolaColor = "#69452F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#5E4434"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#5E4434"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#74523E"; - colorSlave.areolaColor = "#574135"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6B4B4B"; - colorSlave.areolaColor = "#413228"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4E3C32"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4E3C32"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; + } else { /* natural colors */ + switch (artSlave.race) { + case "white": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#F4EAF0"; + colorSlave.areolaColor = "#FCCCDC"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#F4EAF0"; + colorSlave.areolaColor = "#FCCCDC"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F5E1DF"; + colorSlave.areolaColor = "#EFBFCA"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F5E1DF"; + colorSlave.areolaColor = "#EFBFCA"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F5D5C9"; + colorSlave.areolaColor = "#E2B4B9"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F5D5C9"; + colorSlave.areolaColor = "#E2B4B9"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F4C9AA"; + colorSlave.areolaColor = "#F19795"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#E1B585"; + colorSlave.areolaColor = "#C39696"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#E1B585"; + colorSlave.areolaColor = "#C39696"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#D58E5F"; + colorSlave.areolaColor = "#B17777"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#D58E5F"; + colorSlave.areolaColor = "#B17777"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#A2805C"; + colorSlave.areolaColor = "#8E6454"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#825633"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#65422C"; + colorSlave.areolaColor = "#4A3A33"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#D58E5F"; + colorSlave.areolaColor = "#B17777"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "black": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEE4CA"; + colorSlave.areolaColor = "#E0B3A2"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEE4CA"; + colorSlave.areolaColor = "#E0B3A2"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E3C5A7"; + colorSlave.areolaColor = "#EFBDC9"; + colorSlave.labiaColor = "#CC9B88"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E3C5A7"; + colorSlave.areolaColor = "#CC9B88"; + colorSlave.labiaColor = "#CC9B88"; + break; + case "very fair": + colorSlave.skinColor = "#DEB892"; + colorSlave.areolaColor = "#AB806F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#DEB892"; + colorSlave.areolaColor = "#AB806F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#D59D73"; + colorSlave.areolaColor = "#8D6859"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#AC7C4A"; + colorSlave.areolaColor = "#7C594B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#AC7C4A"; + colorSlave.areolaColor = "#7C594B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#985C34"; + colorSlave.areolaColor = "#764B3A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#985C34"; + colorSlave.areolaColor = "#764B3A"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#745C42"; + colorSlave.areolaColor = "#63463B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#65422C"; + colorSlave.areolaColor = "#4B3121"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#5A3C24"; + colorSlave.areolaColor = "#493326"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#5A3C24"; + colorSlave.areolaColor = "#493326"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#46362C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#583D3D"; + colorSlave.areolaColor = "#3B3028"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#4A3A33"; + colorSlave.areolaColor = "#332B27"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#312926"; + colorSlave.areolaColor = "#181616"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#985C34"; + colorSlave.areolaColor = "#764B3A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "latina": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEDECE"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEDECE"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#DAA782"; + colorSlave.areolaColor = "#9E7666"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#8B644F"; + colorSlave.areolaColor = "#7B5749"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#775031"; + colorSlave.areolaColor = "#69452F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#614330"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#614330"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#74523E"; + colorSlave.areolaColor = "#573F30"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#6B4B4B"; + colorSlave.areolaColor = "#473426"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4D3A2E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4D3A2E"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "asian": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FFF8EE"; + colorSlave.areolaColor = "#F7DBD0"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FFF8EE"; + colorSlave.areolaColor = "#F7DBD0"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#EABFB3"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#EABFB3"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F4D1A3"; + colorSlave.areolaColor = "#BA8E83"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#9A774A"; + colorSlave.areolaColor = "#855E4E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#855834"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#724826"; + colorSlave.areolaColor = "#5C3D26"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "middle eastern": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EDA571"; + colorSlave.areolaColor = "#B16854"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#84684A"; + colorSlave.areolaColor = "#735143"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#684528"; + colorSlave.areolaColor = "#563826"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#604534 "; + colorSlave.areolaColor = "#514039"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "amerindian": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FDE4BF"; + colorSlave.areolaColor = "#F0BEAA"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FDE4BF"; + colorSlave.areolaColor = "#F0BEAA"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#CDA499"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#CDA499"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F4D1A3"; + colorSlave.areolaColor = "#BA8E83"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#9A774A"; + colorSlave.areolaColor = "#855E4E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#855834"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#724826"; + colorSlave.areolaColor = "#5C3D26"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "southern european": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#EBDBE4"; + colorSlave.areolaColor = "#FFE4E0"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#EBDBE4"; + colorSlave.areolaColor = "#FFE4E0"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F0D0CC"; + colorSlave.areolaColor = "#EAACBA"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F0D0CC"; + colorSlave.areolaColor = "#EAACBA"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F1C6B5"; + colorSlave.areolaColor = "#DCA2A9"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F1C6B5"; + colorSlave.areolaColor = "#DCA2A9"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F2BC94"; + colorSlave.areolaColor = "#EE8280"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#DCA972"; + colorSlave.areolaColor = "#BF7577"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#DCA972"; + colorSlave.areolaColor = "#BF7577"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#D0814C"; + colorSlave.areolaColor = "#A96767"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#D0814C"; + colorSlave.areolaColor = "#A96767"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#937453"; + colorSlave.areolaColor = "#7F5A4B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#7F5431"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#65422C"; + colorSlave.areolaColor = "#4A3A33"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#D0814C"; + colorSlave.areolaColor = "#A96767"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "semitic": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EDA571"; + colorSlave.areolaColor = "#B16854"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#84684A"; + colorSlave.areolaColor = "#735143"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#684528"; + colorSlave.areolaColor = "#563826"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#604534 "; + colorSlave.areolaColor = "#514039"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "malay": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EA9760"; + colorSlave.areolaColor = "#AB6755"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#7C563C"; + colorSlave.areolaColor = "#70493A"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#804A28"; + colorSlave.areolaColor = "#5F3F27"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#6F3E27"; + colorSlave.areolaColor = "#553823"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "indo-aryan": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#F8D4BE"; + colorSlave.areolaColor = "#F8B6A4"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#F8D4BE"; + colorSlave.areolaColor = "#F8B6A4"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#EFCCAF"; + colorSlave.areolaColor = "#EA9B86"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#EFCCAF"; + colorSlave.areolaColor = "#EA9B86"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#FCC49A"; + colorSlave.areolaColor = "#D29577"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#FCC49A"; + colorSlave.areolaColor = "#D29577"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#E8B68E"; + colorSlave.areolaColor = "#D08661"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#C36E45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#C36E45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#A75A34"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#A75A34"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#83684B"; + colorSlave.areolaColor = "#715043"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#8A593C"; + colorSlave.areolaColor = "#714931"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#845834"; + colorSlave.areolaColor = "#614635"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#845834"; + colorSlave.areolaColor = "#614635"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#7C5842"; + colorSlave.areolaColor = "#5F4538"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#6B5449"; + colorSlave.areolaColor = "#473C37"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#6B5449"; + colorSlave.areolaColor = "#473C37"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#A75A34"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "pacific islander": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EA9760"; + colorSlave.areolaColor = "#AB6755"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#7C563C"; + colorSlave.areolaColor = "#70493A"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#804A28"; + colorSlave.areolaColor = "#5F3F27"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#6F3E27"; + colorSlave.areolaColor = "#553823"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + case "mixed race": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#DAA782"; + colorSlave.areolaColor = "#9E7666"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#8B644F"; + colorSlave.areolaColor = "#7B5749"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#775031"; + colorSlave.areolaColor = "#69452F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#74523E"; + colorSlave.areolaColor = "#574135"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#6B4B4B"; + colorSlave.areolaColor = "#413228"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + default: + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#DAA782"; + colorSlave.areolaColor = "#9E7666"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#8B644F"; + colorSlave.areolaColor = "#7B5749"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#775031"; + colorSlave.areolaColor = "#69452F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#74523E"; + colorSlave.areolaColor = "#574135"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#6B4B4B"; + colorSlave.areolaColor = "#413228"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } } } return colorSlave; }; -/*::VignettesJS[script]*/ +/*:: VignettesJS [script]*/ window.GetVignette = function GetVignette(slave) { const V = State.variables; @@ -28621,7 +28827,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -29008,7 +29214,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a customer get past their religious hangups through sex with the friendly neighborhood whore,`, + text: `${he} helps a customer get past their religious hang-ups through sex with the friendly neighborhood whore,`, type: "rep", effect: 1, }); @@ -30205,7 +30411,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -30469,7 +30675,7 @@ window.GetVignette = function GetVignette(slave) { break; case "neglectful": vignettes.push({ - text: `${he} brings a denial fetishest to orgasm three times without cumming ${himself}, impressing them completely,`, + text: `${he} brings a denial fetishist to orgasm three times without cumming ${himself}, impressing them completely,`, type: "rep", effect: 3, }); @@ -30504,7 +30710,7 @@ window.GetVignette = function GetVignette(slave) { break; case "abusive": vignettes.push({ - text: `${he} abuses a rival public servant so viciously that an catfight lover takes ${him} right there,`, + text: `${he} abuses a rival public servant so viciously that a catfight lover takes ${him} right there,`, type: "rep", effect: 3, }); @@ -30592,7 +30798,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a citizen get past their religious hangups through sex with the friendly neighborhood slut,`, + text: `${he} helps a citizen get past their religious hang-ups through sex with the friendly neighborhood slut,`, type: "rep", effect: 1, }); @@ -33679,8 +33885,6 @@ window.BaseSlave = function BaseSlave() { HGExclude: 0, ballType: "human", eggType: "human", - reservedChildren: 0, - reservedChildrenNursery: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], @@ -34901,68 +35105,18 @@ window.GenerateNewSlave = (function(){ V.fixedNationality = 0; } nationalityToRace(slave); - - if (passage() == "Corporate Market" && (V.captureUpgradeRace != "unselected") && (V.captureUpgradeRace != "none")) { - if (V.captureUpgradeRace == "mixed race") { - slave.race = "mixed race"; - } else { - const capUpgradeCheck = setup[V.captureUpgradeRace.toLowerCase().replace(/[ -]/g, '')+'Nationalities']; - const keys = Object.keys(capUpgradeCheck); - var capUpgradeNationalities = {}; - for (var i = 0; i < keys.length; i++) { - if (keys[i] in V.nationalities) { - capUpgradeNationalities[keys[i]] = capUpgradeCheck[keys[i]]; - } - } - if (Object.keys(capUpgradeNationalities).length > 0) { - slave.nationality = hashChoice(capUpgradeNationalities); - } else { - slave.nationality = hashChoice(capUpgradeCheck); - } - slave.race = V.captureUpgradeRace; - } - } - } else { - switch (V.fixedRace) { - case "white": - slave.nationality = hashChoice(setup.whiteNationalities); - break; - case "asian": - slave.nationality = hashChoice(setup.asianNationalities); - break; - case "latina": - slave.nationality = hashChoice(setup.latinaNationalities); - break; - case "black": - slave.nationality = hashChoice(setup.blackNationalities); - break; - case "pacific islander": - slave.nationality = hashChoice(setup.pacificislanderNationalities); - break; - case "southern european": - slave.nationality = hashChoice(setup.southerneuropeanNationalities); - break; - case "amerindian": - slave.nationality = hashChoice(setup.amerindianNationalities); - break; - case "semitic": - slave.nationality = hashChoice(setup.semiticNationalities); - break; - case "middle eastern": - slave.nationality = hashChoice(setup.middleeasternNationalities); - break; - case "indo-aryan": - slave.nationality = hashChoice(setup.indoaryanNationalities); - break; - case "malay": - slave.nationality = hashChoice(setup.malayNationalities); - break; - default: - slave.nationality = hashChoice(V.nationalities); + if (V.fixedNationality == 0) { + slave.race = V.fixedRace; + V.fixedRace = 0; + raceToNationality(slave); + } else { + slave.race = V.fixedRace; + slave.nationality = V.fixedNationality; + V.fixedNationality = 0; + V.fixedRace = 0; } - slave.race = V.fixedRace; - V.fixedRace = 0; + } }; @@ -35156,7 +35310,7 @@ window.GenerateNewSlave = (function(){ return GenerateNewSlave; })(); -/*SecForceEX JS*/ +/*SecForceEX JS V = SugarCube.State.variables, T = SugarCube.State.temporary;*/ window.SFC = function() { const V = State.variables; if (V.SF.MercCon.CanAttend === -1) {return `The Colonel`;} @@ -35255,7 +35409,7 @@ window.Firebase = function() { if (S.Firebase >= 7) {slave = `A slave detention facility has been sectioned off to one side`; if (V.SF.Depravity > 1.5) slave += ` emanating the sounds of rape and torture`; slave += `,`;} - if (S.Firebase >= 8) appear = `has become a fully fledged military base.`, comms = `A Free City-wide communication network for $SF.Lower has been constructed to faciltate faster responses and efficient monitoring of the surrounding area.`; + if (S.Firebase >= 8) appear = `has become a fully fledged military base.`, comms = `A Free City-wide communication network for $SF.Lower has been constructed to facilitate faster responses and efficient monitoring of the surrounding area.`; if (S.Firebase >= 9) training = `A high-tech killhouse has been constructed to aid in soldier training.`; if (S.Firebase >= 10) artillery = `Railgun artillery batteries are set around the base of the arcology, capable of accurately destroying enemies an absurd distance away.`; @@ -35411,7 +35565,7 @@ window.SP = function() { if (S.SpacePlane >= 6) camera2 = `The camera sensor is capable of taking IR shots.`; if (S.SpacePlane >= 7) drag = `Miraculous advances in aerodynamics and materials allow frictionless flight, even while in the atmosphere.`; if (S.SpacePlane >= 8) crew = `Increased the crew comfort and life support systems to increase operational time.`; - if (S.SpacePlane >= 9) skin = `Replaced the underbelly skin with an chameleon kit, matching the color to the sky above it.`; + if (S.SpacePlane >= 9) skin = `Replaced the underbelly skin with a chameleon kit, matching the color to the sky above it.`; if (S.SpacePlane >= 10) engine = `experimental scramjet engines in the atmosphere that can reach Mach 15`, engine2 = ` and liquid rocket engines in orbit that can reach an equivalent Mach 25`; return `A prototype spaceplane ${b} rests in the hangar, its black fuselage gleaming. The craft is powered by ${engine}${engine2}. ${efficiency} ${shield} ${camera} ${camera2} ${drag} ${crew} ${skin}`; @@ -35489,7 +35643,7 @@ window.ms = function() { window.AC = function() { const V = State.variables, S = V.SF.Squad; - var recom = `has been recommisioned from the Old World for $SF.Lower. It`, jets = `Formerly mothballed strike jets`, loc = ``, radar = ``, AA = ``, prop = ``, torp = ``, armor = ``, power = ``, scramble = ``; + var recom = `has been recommissioned from the Old World for $SF.Lower. It`, jets = `Formerly mothballed strike jets`, loc = ``, radar = ``, AA = ``, prop = ``, torp = ``, armor = ``, power = ``, scramble = ``; if (V.week % 6 === 0) { loc = `moored to the pier in the Naval Yard`; } else { loc = `patrolling the waters near $arcologies[0].name`; } if (S.AircraftCarrier >= 2) radar = `The island's radar and comms have been improved.`, recom = ``; @@ -35607,25 +35761,41 @@ window.progress = function(x,max) { return `${out}`; }; +window.Main = function() { + const V = State.variables; + V.SF = {Toggle:V.SF.Toggle,Active:-1,Depravity:0, Bonus:0, Size:0, Upgrade:0, Gift:0, UC:{Assign:0, Lock:0}, ROE:"hold", Target:"recruit", Regs:"strict", Caps:"The Special Force", Lower:"the special force", Subsidy:1, BadOutcome:""}; + V.arcologies[0].SFRaid = 1,V.arcologies[0].SFRaidTarget = -1; +} +window.Squad = function() { + const V = State.variables; + V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0}; +} +window.Colonel = function() { + const V = State.variables; + V.SF.Colonel = {Core:"", Talk:0, Fun:0, Status:0}; +} +window.MercCon = function() { + const V = State.variables; + V.SF.MercCon = {History:0, CanAttend:0, Income:0, Revenue:0, Menials:0, TotalMenials:0, Mercs:0, TotalMercs:0}; +} +window.Facility = function() { + const V = State.variables; + V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; +} + window.SFInit = function() { - const V = State.variables; - V.SF = {Toggle:V.SF.Toggle,Active:-1,Depravity:0, Bonus:0, Size:0, Upgrade:0, Gift:0, UC:{Assign:0, Lock:0}, ROE:"hold", Target:"recruit", Regs:"strict", Caps:"The Special Force", Lower:"the special force", Subsidy:1, BadOutcome:""}; - V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0}; - V.SF.Colonel = {Core:"", Talk:0, Fun:0, Status:0}; - V.SF.MercCon = {History:0, CanAttend:0, Income:0, Revenue:0, Menials:0, TotalMenials:0, Mercs:0, TotalMercs:0}; - V.arcologies[0].SFRaid = 1,V.arcologies[0].SFRaidTarget = -1; - V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; + Main();Squad();Colonel();MercCon();Facility(); }; window.SFBC = function() { const V = State.variables; - function Init() { + function InitClean() { delete V.SFMODToggle; delete V.securityForceActive; delete V.securityForceCreate; delete V.securityForceEventSeen; } - function Main() { + function MainClean() { delete V.securityForceActive; delete V.securityForceRecruit; delete V.securityForceTrade; @@ -35645,22 +35815,22 @@ window.SFBC = function() { delete V.securityForceName; delete V.SubsidyActive; } - function Colonel() { + function ColonelClean() { delete V.SubsidyActive; delete V.ColonelCore; delete V.securityForceColonelToken; delete V.securityForceColonelSexed; delete V.ColonelRelationship; } - function TradeShow() { + function TradeShowClean() { delete V.OverallTradeShowAttendance; delete V.CurrentTradeShowAttendance; delete V.TradeShowIncome; delete V.TotalTradeShowIncome; - delete V.TradeShowMenials; - delete V.TotalTradeShowMenials; + delete V.TradeShowHelots; + delete V.TotalTradeShowHelots; } - function Units() { + function UnitsClean() { delete V.securityForcePersonnel; delete V.securityForceInfantryPower; delete V.securityForceArcologyUpgrades; @@ -35679,10 +35849,10 @@ window.SFBC = function() { delete V.securityForceHeavyAmphibiousTransport; } - if ( (V.SF.Toggle || V.SFMODToggle) > 0) { - if (V.SF == undefined) { + if ( (V.SF.Toggle || V.SFMODToggle) > 0 || V.SF === undefined) { + if (V.SF === undefined) { if (V.securityForceEventSeen < 1) { V.securityForceActive = -1 } else { V.securityForceActive = 2 }; - V.SF = {Toggle:V.SFMODToggle, Active:V.securityForceActive}; Init(); + V.SF = {Toggle:V.SFMODToggle, Active:V.securityForceActive}; InitClean(); if (V.securityForceName === undefined) V.securityForceName = "the special force"; if (V.SF.Active >= 1) { Object.assign(V.SF, { @@ -35696,7 +35866,7 @@ window.SFBC = function() { Regs:V.securityForceAccountability, Caps:"The Special Force", Lower:V.securityForceName, - Subsidy:V.SubsidyActive}); Main(); + Subsidy:V.SubsidyActive}); MainClean(); if (V.SF.Lower !== "the special force") V.SF.Caps = V.SF.Lower.replace("the ", "The "); if (V.ColonelCore === undefined) V.ColonelCore = ""; @@ -35706,27 +35876,19 @@ window.SFBC = function() { Core:V.ColonelCore, Talk:V.securityForceColonelToken, Fun:V.securityForceColonelSexed, - Status:V.ColonelRelationship}; Colonel(); + Status:V.ColonelRelationship}; ColonelClean(); if (V.TradeShowIncome === undefined) V.TradeShowIncome = 0; if (V.TotalTradeShowIncome === undefined) V.TotalTradeShowIncome = 0; - if (V.TradeShowMenials === undefined) V.TradeShowMenials = 0; - if (typeof V.TradeShowHelots !== 'undefined' || V.TradeShowHelots !== null) { - V.TradeShowHelots = undefined; - delete(V.TradeShowHelots); - } - if (V.TotalTradeShowMenials === undefined) V.TotalTradeShowMenials = 0; - if (typeof V.TotalTradeShowHelots !== 'undefined' || V.TotalTradeShowHelots !== null) { - V.TotalTradeShowHelots = undefined; - delete(V.TotalTradeShowHelots); - } + if (V.TradeShowHelots === undefined) V.TradeShowHelots = 0; + if (V.TotalTradeShowHelots === undefined) V.TotalTradeShowHelots = 0; V.SF.MercCon = { History:V.OverallTradeShowAttendance, CanAttend:V.CurrentTradeShowAttendance, Income:V.TradeShowIncome, Revenue:V.TotalTradeShowIncome, - Menials:V.TradeShowMenials, - TotalMenials:V.TotalTradeShowMenials, + Menials:V.TradeShowHelots, + TotalMenials:V.TotalTradeShowHelots, Mercs:0, TotalMercs:0}; TradeShow(); if (V.SF.MercCon.History > 0) V.SF.MercCon.View = 1; @@ -35758,27 +35920,16 @@ window.SFBC = function() { MissileSilo:V.securityForceMissileSilo, AircraftCarrier:V.securityForceAircraftCarrier, Sub:V.securityForceSubmarine, - HAT:V.securityForceHeavyAmphibiousTransport}; Units(); + HAT:V.securityForceHeavyAmphibiousTransport}; UnitsClean(); } else { - V.SF = {Depravity:0, Size:0, Upgrade:0, Gift:0, UC:{Assign:V.SF.SpecOps, Lock:V.SF.SpecOpsLock}, ROE:"hold", Target:"recruit", Regs:"strict", Caps:"The Special Force", Lower:"the special force", Subsidy:1}; - V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0}; - V.arcologies[0].SFRaid = 1,V.arcologies[0].SFRaidTarget = -1; - V.SF.Colonel = {Core:"", Talk:0, Fun:0, Status:0}; - V.SF.MercCon = {History:0, CanAttend:0, Income:0, Revenue:0, Menials:0, TotalMenials:0, Mercs:0, TotalMercs:0}; - if (V.securityForceName) { - Init(); Main(); Colonel(); TradeShow(); Units(); - } + SFInit(); } - V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; + Facility(); } else { if (V.SF.Active === -1) SFInit(); - if (V.SF.MWU) { - delete V.SF.MWU; - } - if (V.SpecOpsLock != undefined) { - V.SF.SpecOpsLock = V.SpecOpsLock; delete V.SpecOpsLock; - } - if (V.SF.UC == undefined) { + if (V.SF.MWU) delete V.SF.MWU; + if (V.SpecOpsLock != undefined) V.SF.SpecOpsLock = V.SpecOpsLock; delete V.SpecOpsLock; + if (V.SF.UC === undefined) { if (V.SF.SpecOps != undefined && V.SF.SpecOpsLock != undefined) { V.SF.UC = {Assign:V.SF.SpecOps, Lock:V.SF.SpecOpsLock}; delete V.SF.SpecOps; delete V.SF.SpecOpsLock; @@ -35786,50 +35937,41 @@ window.SFBC = function() { V.SF.UC = {Assign:0, Lock:0}; } } - if (V.SF.U != undefined) { - V.SF.Upgrade = V.SF.U; delete V.SF.U; - } - if (V.SF.WG != undefined) { - V.SF.Gift = V.SF.WG; delete V.SF.WG; - } - if (V.SF.Facility == undefined) { - V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; - } - if (V.SF.Bonus == undefined) { - V.SF.Bonus = 0; - } - if (V.SF.Depravity < 0) { - V.SF.Depravity = 0; - } - if (V.SF.Size == undefined) { - V.SF.Size = V.SF.Units; delete V.SF.Units; - } - if (V.SFUnit != undefined) { - if (V.SFUnit.AT != undefined) { - delete V.SFUnit.AT; V.SFUnitTA = 0; - } - V.SF.Squad = V.SFUnit; - delete V.SFUnit; + if (V.SF.U !== undefined) V.SF.Upgrade = V.SF.U; delete V.SF.U; + if (V.SF.WG !== undefined) V.SF.Gift = V.SF.WG; delete V.SF.WG; + if (V.SF.MercCon != undefined) { + V.SF.MercCon.Menials = V.SF.MercCon.Helots; + V.SF.MercCon.TotalMenials = V.SF.MercCon.TotalHelots; + delete V.SF.MercCon.Helots;delete V.SF.MercCon.TotalHelots; + } else { + MercCon(); + } + + if (V.SF.Facility === undefined) Facility(); + if (V.SF.Bonus === undefined) V.SF.Bonus = 0; + if (V.SF.Depravity < 0) V.SF.Depravity = 0; + if (V.SF.Size === undefined) V.SF.Size = V.SF.Units; delete V.SF.Units; + if (V.SFUnit !== undefined) { + if (V.SFUnit.AT !== undefined) delete V.SFUnit.AT; V.SFUnitTA = 0; + V.SF.Squad = V.SFUnit; delete V.SFUnit; V.SF.Squad.Sat = {lv:V.SF.Squad.Satellite, InOrbit:V.SatLaunched}; delete V.SatLaunched; V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; - if (V.SFTradeShow != undefined) V.SF.MercCon = V.SFTradeShow; delete V.SFTradeShow; - if (V.SFColonel != undefined) V.SF.Colonel = V.SFColonel; delete V.SFColonel; - if (V.securityForceName) Init(); Main(); Colonel(); TradeShow(); Units(); + if (V.SFTradeShow !== undefined) V.SF.MercCon = V.SFTradeShow; delete V.SFTradeShow; + if (V.SFColonel !== undefined) V.SF.Colonel = V.SFColonel; delete V.SFColonel; if (V.SF.BadOutcome === undefined) V.SF.BadOutcome = ""; if (V.SF.Squad.Satellite != undefined && V.SatLaunched == undefined) { - delete V.SFUnit; - V.SF.Squad.Sat = {lv:0, InOrbit:0}; - delete V.SatLaunched; - V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; + delete V.SFUnit; V.SF.Squad.Sat = {lv:0, InOrbit:0}; + delete V.SatLaunched; V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; } } - if (V.SF.Squad != undefined && V.SF.Squad.Satellite.lv === undefined) { + if (V.SF.Squad !== undefined && V.SF.Squad.Satellite.lv === undefined) { V.SF.Squad.Sat = {lv:V.SF.Squad.Satellite, InOrbit:0}; V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; } } } + if (V.securityForceName !== undefined) InitClean(); MainClean(); ColonelClean(); TradeShowClean(); UnitsClean(); }; window.BadOutcome = function() { @@ -35838,7 +35980,7 @@ window.BadOutcome = function() { case "Shell-Shocked": V.SF.BadOutcome = "lockdown",V.trinkets.push("${t} explosives detonator"); r +=`Unnerved by your ever-increasing influence over your men and undercutting of her authority, The Colonel uses heavy explosives at Midnight to seal off The Firebase from your access. When you step off of your express elevator, you are met not with two guards, but several armed proximity mines next to an incredibly thick wall of smoking rubble. No doubt there are machine gun nests, anti-tank nests, and lots more proximity mines just waiting for you on the other side, should you somehow get through the wall of debris.`; - r+=`<br>The ${V.SF.Lower} still deploys into the old world to plunder as it pleases, but no longer for you. You receive no money from their exploits, and their total defiance and independance of you is a permanent stain on your reputation. Of course, you'll never have the needed military power to dislodge them, especially with all the redundant fortifications, crossfire envelopes, and myriad traps that paranoid bitch had built around each entrance ever since she went rouge. Trying to sabotage certain support beams from above to make the Firebase facility collapse in on itself could easily cause enough damage to topple other parts of the arcology too, and such a thing would be very difficult to cover up. In other words, you're stuck with them. The Firebase has become a permanent tumor on your Arcology and good name.`; + r+=`<br>The ${V.SF.Lower} still deploys into the old world to plunder as it pleases, but no longer for you. You receive no money from their exploits, and their total defiance and independence of you is a permanent stain on your reputation. Of course, you'll never have the needed military power to dislodge them, especially with all the redundant fortifications, crossfire envelopes, and myriad traps that paranoid bitch had built around each entrance ever since she went rouge. Trying to sabotage certain support beams from above to make the Firebase facility collapse in on itself could easily cause enough damage to topple other parts of the arcology too, and such a thing would be very difficult to cover up. In other words, you're stuck with them. The Firebase has become a permanent tumor on your Arcology and good name.`; break; case "Cruel": V.SF.BadOutcome = "Revolt",V.trinkets.push("${t} dog tags"),V.Rep = 0, @@ -35851,26 +35993,26 @@ window.BadOutcome = function() { break; case "Cruel and Psychopathic": V.SF.BadOutcome = "Revolt",V.trinkets.push("${t} dog tags"),V.Rep = 0; - r += `<br>Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for an utterly ferocious rebellion. The promises of rape and plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves) are all thats needed to give the selfish lot of them a nearly unshakable resolve in the task of delivering their overlord Her most coveted prize: You.`; - r += `<br>It is now Midnight. The lights are the first thing they disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Things like this were never supposed to happen again. You had promised them that you'd create an army that would protect them...`; - r += `<br>Her army vanguard strikes fast and hard throughout the main Plaza, cutting through your security personnel, defensive platoons, and drones with an ease that stinks of months of careful planning and study. Your defensive platoons, veterans of many Battles, are outmanuvered at every turn; their hidden ammunition caches are found empty, their communications networks are mysteriously scrambled, and key chokepoints are found to be booby-trapped before your men can even get to them; their well-rehearsed arcology defense routines have gone to ash. Assuming you ever get a chance to speak to The Colonel again, you would ask if her betrayal was actually inevitable rather than something you triggered.`; - r += `<br>You watch with immense dissappointment as the very APC's and IFV's that you paid for now charge into resisting storefronts to storm the armed civillians inside with heavy infantry at point blank range. Battle Tanks trample wounded civillians in the streets as they maneuver to blast your citizens' hastily-made holdouts to pieces, burying dozens of civillian loyalists under mountains of rubble while hundreds more are gunned down in the streets for want of adequate cover. The Plaza is lost; the enemy vanguard has gained access to the Residential Sectors upstairs. Enticed, entire platoons of her vanguard decide to become bandits, ignoring their Colonel's orders and scattering off from the main force to kick down many apartment doors and help themselves to whatever desirable goods or inhabitants they find within.`; + r += `<br>Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for an utterly ferocious rebellion. The promises of rape and plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves) are all that's needed to give the selfish lot of them a nearly unshakable resolve in the task of delivering their overlord Her most coveted prize: You.`; + r += `<br>It is now midnight. The lights are the first thing they disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Things like this were never supposed to happen again. You had promised them that you'd create an army that would protect them...`; + r += `<br>Her army vanguard strikes fast and hard throughout the main Plaza, cutting through your security personnel, defensive platoons, and drones with an ease that stinks of months of careful planning and study. Your defensive platoons, veterans of many Battles, are outmaneuvered at every turn; their hidden ammunition caches are found empty, their communications networks are mysteriously scrambled, and key chokepoints are found to be booby-trapped before your men can even get to them; their well-rehearsed arcology defense routines have gone to ash. Assuming you ever get a chance to speak to The Colonel again, you would ask if her betrayal was actually inevitable rather than something you triggered.`; + r += `<br>You watch with immense disappointment as the very APC's and IFV's that you paid for now charge into resisting storefronts to storm the armed civilians inside with heavy infantry at point blank range. Battle Tanks trample wounded civilians in the streets as they maneuver to blast your citizens' hastily-made holdouts to pieces, burying dozens of civilian loyalists under mountains of rubble while hundreds more are gunned down in the streets for want of adequate cover. The Plaza is lost; the enemy vanguard has gained access to the Residential Sectors upstairs. Enticed, entire platoons of her vanguard decide to become bandits, ignoring their Colonel's orders and scattering off from the main force to kick down many apartment doors and help themselves to whatever desirable goods or inhabitants they find within.`; r += `<br>Outside, her many aircraft swarm the local airspace to patrol the Arcology outskirts, conduct recon scans of the upper levels, or monitor your sealed penthouse outside the range of your SAM turrets, while shooting down any other fleeing VTOL's. You will not be escaping by air today. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for later enslavement, as the remainder of her army begins to pour into the bloody Plaza. This is your Arcology's darkest hour.`; - r += `<br>And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armour platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camoflauged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harrassing constantly and preventing any hostile reconnaisance or infiltration from being done.`; - r += `<br>The main Residential courtyard features the Residential Sectors' massive elevator complex, which will give The Colonel's forces rapid access to the Promenade, and ultimately, You. In front of it, your Mercenary Captain stands atop one of the many metres-thick sandbag walls his men just assembled there, leading the raging defensive blockade in bringing the vangaurd's assault to a gory halt. ${V.SF.Lower}'s bodies and bits and debris pile up in small walls on the outskirts under the burning heat of hundreds of flying autocannon rounds and dozens of screeching missiles. Before the vanguard's morale can break however, The Colonel shows up in person behind her own lines, kitted in a customized power armour and dragging, of all things, a hydraulic trebucket loaded with a crudely-welded large metal box. She launches the box from beyond your Merceneries' line of sight, sending it reeling towards them and predicting that they will try to shoot it out of the sky. They do, not wanting the slow but strange projectile to hit them directly, only learning of their folly when the metal 'box' detonates midair and releases a dense cloud of cluster bombs over their position. The munitions themselves disable some of the exosuits, but they don't kill too many on their own. However, the bomblets do succeed in detonating the various ammo dumps that were feeding your Mercenaries' blazing guns. The chain explosions, resulting fires, destroyed cover, and widespread casualties and confusion all create the perfect opportunity for The Colonel to storm the previously implacable barricade at the head of her troops, with her followers rushing the merc lines and blasting off the heavy armour plating of your disoriented Mercenaries themselves before stabbing them to death, or in some cases, hauling off the dis-armoured and defeated female Mercenaries they discover for immediate use. As the few intact Mercenaries remaining desperately struggle to hold off the advancing horde with their remaining ammo, The Colonel takes on your dazed Mercenary Captain in single combat. When their ammunition runs dry, and their blasted battlesuits break down, they both eject, and then the knives come out. Minutes later, she stabs him in the side of his skull after she dodges yet another attempt to land a killing blow on her. With the source of Mercenary command and control gone, The Colonel stauches her own bleeding, yanks a trooper out of a near-pristine battlesuit that she now claims for herself, and directly organizes the isolation and extermination of the smaller teams of Mercenaries that are bleeding her troops everywhere else. She routs your Mercenaries for good with the razing of their Garrison structure. The ${V.SF.Lower} now enjoys absolute air and ground superiority. Soon the surviving rear of her army is brought upstairs from the killing floors down in the Markets, and the many elevators and cargo lifts of the elevator complex are boarded, with your executive override codes to remotely shut down the elevators somehow being manually bypassed by her combat engineers. It won't be long now.`; - r += `<br>Dawn has broken over the Free City. Only five hours into the slaughter (of which your Mercenaries no doubt bought you at least three), it becomes very clear to you that the only way to save your arcology is to destroy it. Everything and Everyone will burn before you let this crazy bitch and her rabid dogs get thier dirty hands on you or your slaves. On your order, your most loyal subordinates, the ones who were with you since the early days to patrol your Arcology before you even had drones to protect it, fight their way to through the carnage of your panicking civillians on The Promenade to get to the exact hidden elevators that your Personal Assistant specifies for them. Their destination is the arcology's reactor complex, of course. Following the PA's instructions precisely, they arm their many high-yield explosive charges on your now-exposed and de-stabilized reactor, and in one final service to you, detonate them, creating a collosal explosion. The rapidly ascending heretics quite literally have the rug pulled from under them, as the blast takes out nearly all of the arcology's lesser foundational support beams, thus collapsing many thousands of metric tons of concrete, steel, plastic, and plaster out from underneath the upward bound Colonel and her men... And everyone else, unforteunately. With no foundation any longer, all of your arcology's interior Sectors are utterly gutted from the bottom-up by gravity itself, and everything beneath your ration-stocked, backup-powered Penthouse crumbles to the earth. The massive cloud of dust created by the widespread fires and interior collapse ends up covering the entire Free City for hours. Her aircraft, now berift of their logistical support and command structure, immediately fly off to neighboring arcologies to offer their services to the various employers there, seeing as the coup has failed and they have nowhere else to go. The skies are free for You to travel as you please, but You aren't going anywhere.`; - r += `<br>It is Eveningtime when the tremors finally stop. Everything below your Penthouse is ruin, and your arcology, its population, and your reputation are now essentially dust. However, the arcology did not fall. It. Is. Still. Yours. You shall rise again, not flee this tragedy in shame. Of course, no one will ever know that you sacrificed the arcology delibrately in order to save yourself; it is all too easy to claim that The Colonel carelessly damaged the reactor complex during her assault, ironically causing her own defeat. Frankly, sacrificing most of your tenants doesn't bother you as much as it probably should; maybe its because you know that if The Colonel and her men had won, all those people were as good as dead anyway.`; - r += `<br>You know that if you want to survive, you'll need to sorround yourself with workers and allies to rebuild fast, else your rivals gobble you up. It costs you a horrific sum to clear and process the wreckage and rebuild the basic Sector superstructures and infrastructure for your arcology on such short notice, even after liqidating everything your workers salvage. Your powerful friends still residing in the Old World or other Free Cities have lent you a suprising amount of aid too, with quite a few lended super-heavy contruction assets getting huge amounts of work done quickly. Even then, what you've been able to rebuild is very little. After a nearly sleepless, sexless week of immense toil, you've successfully organized tens of thousands of people in restoring the arcology to a barely functional condition (along with rudimentary imitations of all your upgrades), and you've even got some new Garrison Mercenaries in by week's end too... But its just not the same. If it weren't for your bruised weather-plating your arcology would look like a giant skeleton. Inside, it feels like a concrete boneyard; everything has been built cheap and utilitarian, and the walls aren't even painted. With only a few operational services staffed by commuters from neighboring arcologies, there is just an eerie silence just about everywhere. With few amenities for relief, there are going to be many long days ahead for your few tenants, most of them being wealthy but distraught returning travellers who left before the attack. Maybe your slaves can help entertain them. A lot of these people are VIP's it seems.`; - r += `<br>It is now Midnight. In a rare moment of reflection, you contemplate that what The Colonel just did to your arcology was exactly what you were all too happy to have her do to dozens, if not hundreds of innocent villages and townships under your shadow during her 'Raiding and Slaving' operations. Nevertheless, You have hard work ahead of you, especially now that your enemies see that you are now much weaker than you have ever been.`; + r += `<br>And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armor platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camouflaged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harassing constantly and preventing any hostile reconnaissance or infiltration from being done.`; + r += `<br>The main Residential courtyard features the Residential Sectors' massive elevator complex, which will give The Colonel's forces rapid access to the Promenade, and ultimately, You. In front of it, your Mercenary Captain stands atop one of the many meters-thick sandbag walls his men just assembled there, leading the raging defensive blockade in bringing the vanguard's assault to a gory halt. ${V.SF.Lower}'s bodies and bits and debris pile up in small walls on the outskirts under the burning heat of hundreds of flying autocannon rounds and dozens of screeching missiles. Before the vanguard's morale can break however, The Colonel shows up in person behind her own lines, kitted in a customized power armor and dragging, of all things, a hydraulic trebuchet loaded with a crudely-welded large metal box. She launches the box from beyond your Merceneries' line of sight, sending it reeling towards them and predicting that they will try to shoot it out of the sky. They do, not wanting the slow but strange projectile to hit them directly, only learning of their folly when the metal 'box' detonates midair and releases a dense cloud of cluster bombs over their position. The munitions themselves disable some of the exosuits, but they don't kill too many on their own. However, the bomblets do succeed in detonating the various ammo dumps that were feeding your Mercenaries' blazing guns. The chain explosions, resulting fires, destroyed cover, and widespread casualties and confusion all create the perfect opportunity for The Colonel to storm the previously implacable barricade at the head of her troops, with her followers rushing the merc lines and blasting off the heavy armor plating of your disoriented Mercenaries themselves before stabbing them to death, or in some cases, hauling off the dis-armored and defeated female Mercenaries they discover for immediate use. As the few intact Mercenaries remaining desperately struggle to hold off the advancing horde with their remaining ammo, The Colonel takes on your dazed Mercenary Captain in single combat. When their ammunition runs dry, and their blasted battlesuits break down, they both eject, and then the knives come out. Minutes later, she stabs him in the side of his skull after she dodges yet another attempt to land a killing blow on her. With the source of Mercenary command and control gone, The Colonel staunches her own bleeding, yanks a trooper out of a near-pristine battlesuit that she now claims for herself, and directly organizes the isolation and extermination of the smaller teams of Mercenaries that are bleeding her troops everywhere else. She routs your Mercenaries for good with the razing of their Garrison structure. The ${V.SF.Lower} now enjoys absolute air and ground superiority. Soon the surviving rear of her army is brought upstairs from the killing floors down in the Markets, and the many elevators and cargo lifts of the elevator complex are boarded, with your executive override codes to remotely shut down the elevators somehow being manually bypassed by her combat engineers. It won't be long now.`; + r += `<br>Dawn has broken over the Free City. Only five hours into the slaughter (of which your Mercenaries no doubt bought you at least three), it becomes very clear to you that the only way to save your arcology is to destroy it. Everything and Everyone will burn before you let this crazy bitch and her rabid dogs get their dirty hands on you or your slaves. On your order, your most loyal subordinates, the ones who were with you since the early days to patrol your Arcology before you even had drones to protect it, fight their way to through the carnage of your panicking civilians on The Promenade to get to the exact hidden elevators that your Personal Assistant specifies for them. Their destination is the arcology's reactor complex, of course. Following the PA's instructions precisely, they arm their many high-yield explosive charges on your now-exposed and de-stabilized reactor, and in one final service to you, detonate them, creating a colossal explosion. The rapidly ascending heretics quite literally have the rug pulled from under them, as the blast takes out nearly all of the arcology's lesser foundational support beams, thus collapsing many thousands of metric tons of concrete, steel, plastic, and plaster out from underneath the upward bound Colonel and her men... And everyone else, unfortunately. With no foundation any longer, all of your arcology's interior Sectors are utterly gutted from the bottom-up by gravity itself, and everything beneath your ration-stocked, backup-powered Penthouse crumbles to the earth. The massive cloud of dust created by the widespread fires and interior collapse ends up covering the entire Free City for hours. Her aircraft, now bereft of their logistical support and command structure, immediately fly off to neighboring arcologies to offer their services to the various employers there, seeing as the coup has failed and they have nowhere else to go. The skies are free for You to travel as you please, but You aren't going anywhere.`; + r += `<br>It is late evening when the tremors finally stop. Everything below your Penthouse is ruin, and your arcology, its population, and your reputation are now essentially dust. However, the arcology did not fall. It. Is. Still. Yours. You shall rise again, not flee this tragedy in shame. Of course, no one will ever know that you sacrificed the arcology deliberately in order to save yourself; it is all too easy to claim that The Colonel carelessly damaged the reactor complex during her assault, ironically causing her own defeat. Frankly, sacrificing most of your tenants doesn't bother you as much as it probably should; maybe its because you know that if The Colonel and her men had won, all those people were as good as dead anyway.`; + r += `<br>You know that if you want to survive, you'll need to surround yourself with workers and allies to rebuild fast, else your rivals gobble you up. It costs you a horrific sum to clear and process the wreckage and rebuild the basic Sector superstructures and infrastructure for your arcology on such short notice, even after liquidating everything your workers salvage. Your powerful friends still residing in the Old World or other Free Cities have lent you a surprising amount of aid too, with quite a few lent super-heavy construction assets getting huge amounts of work done quickly. Even then, what you've been able to rebuild is very little. After a nearly sleepless, sexless week of immense toil, you've successfully organized tens of thousands of people in restoring the arcology to a barely functional condition (along with rudimentary imitations of all your upgrades), and you've even got some new Garrison Mercenaries in by week's end too... But its just not the same. If it weren't for your bruised weather-plating your arcology would look like a giant skeleton. Inside, it feels like a concrete boneyard; everything has been built cheap and utilitarian, and the walls aren't even painted. With only a few operational services staffed by commuters from neighboring arcologies, there is just an eerie silence just about everywhere. With few amenities for relief, there are going to be many long days ahead for your few tenants, most of them being wealthy but distraught returning travelers who left before the attack. Maybe your slaves can help entertain them. A lot of these people are VIP's it seems.`; + r += `<br>It is now midnight. In a rare moment of reflection, you contemplate that what The Colonel just did to your arcology was exactly what you were all too happy to have her do to dozens, if not hundreds of innocent villages and townships under your shadow during her 'Raiding and Slaving' operations. Nevertheless, You have hard work ahead of you, especially now that your enemies see that you are now much weaker than you have ever been.`; r += `<br>The Colonel's body was never found.`; break; case "Kind": V.SF.BadOutcome = "Exodus",V.trinkets.push("${t} gift card"), V.Cash += 55000,V.menials += 73; r += `Your Colonel has had enough of your meddling. In her eyes, you've broken faith with her. She asked one thing of you in return for her full support, and you could not even give her that.`; - r += `<br>At Midnight, a great mechanized convoy, the biggest you've seen in a long while, streams out of your Arcology. Troop Carriers, Aircraft, Heavy Trucks, and other war machines of varying sizes pour out of the Firebase in tight formation. The Colonel is refusing your calls, and you know it would be ill advised to go out there yourself or to try to stop them with force. The many bandits and mercenary groups that the convoy will inevitably pass by will probably feel this way as well. You have no idea where they are going or how they will end up, but with their wealth and weaponry, you are not worried.`; - r += `<br>Upon your inspection of the abandoned firebase itself, most of the heavier installations have been dismantled and carried away, but about 55,000# of miscellaneous supplies and 73 menials have been left behind, presumably because the convoy had no space for them. On The Colonel's old pavillion, you see a white gift card standing upright.`; - r += `<br>When you climb the crates to take it and read it, you see The Colonel's handwritten sentiments about the way things turned out; her gratitude for taking her in when you did, her dissappointment in your actions, a detailed account of your failings, her regrets that things had to end this way, and finally, her well wishes for your future endeavours.`; + r += `<br>At midnight, a great mechanized convoy, the biggest you've seen in a long while, streams out of your Arcology. Troop Carriers, Aircraft, Heavy Trucks, and other war machines of varying sizes pour out of the Firebase in tight formation. The Colonel is refusing your calls, and you know it would be ill advised to go out there yourself or to try to stop them with force. The many bandits and mercenary groups that the convoy will inevitably pass by will probably feel this way as well. You have no idea where they are going or how they will end up, but with their wealth and weaponry, you are not worried.`; + r += `<br>Upon your inspection of the abandoned firebase itself, most of the heavier installations have been dismantled and carried away, but about 55,000# of miscellaneous supplies and 73 menials have been left behind, presumably because the convoy had no space for them. On The Colonel's old pavilion, you see a white gift card standing upright.`; + r += `<br>When you climb the crates to take it and read it, you see The Colonel's handwritten sentiments about the way things turned out; her gratitude for taking her in when you did, her disappointment in your actions, a detailed account of your failings, her regrets that things had to end this way, and finally, her well wishes for your future endeavors.`; r += `<br>Disgusted, you pocket the gift card and leave your employees and menials to gather up the valuables here before stalking back to your Penthouse. The former Firebase is returned to being a warehouse facility.`; break; } @@ -35889,7 +36031,7 @@ window.generateDiffArray = function generateDiffArray(obj) { return diffArray; }; -/* +/* Shamelessly copied from https://codereview.stackexchange.com/a/11580 Finds and returns the difference between two objects. Potentially will have arbitrary nestings of objects. */ @@ -35918,9 +36060,9 @@ window.difference = function difference(o1, o2) { return false; }; -/* +/* Shamelessly copied from https://stackoverflow.com/a/19101235 -Flattens an object while concatenating property names. +Flattens an object while concatenating property names. For example {id: {number: 4, name: "A"}} --> {id.number: 4, id.name: "A"} */ window.diffFlatten = function diffFlatten(data) { @@ -36802,8 +36944,6 @@ window.slavePregnancyDatatypeCleanup = function slavePregnancyDatatypeCleanup(sl slave.ovaries = Math.clamp(+slave.ovaries, 0, 1) || 0; slave.vasectomy = Math.clamp(+slave.vasectomy, 0, 1) || 0; slave.mpreg = Math.clamp(+slave.mpreg, 0, 1) || 0; - slave.reservedChildren = WombReserveCount(slave, "incubator") || 0; - slave.reservedChildrenNursery = WombReserveCount(slave, "nursery") || 0; if (slave.pregAdaptation !== 0) { slave.pregAdaptation = Math.max(+slave.pregAdaptation, 0) || 50; } @@ -36850,7 +36990,9 @@ window.slaveGenitaliaDatatypeCleanup = function slaveGenitaliaDatatypeCleanup(sl slave.prostate = Math.clamp(+slave.prostate, 0, 3) || 0; } slave.balls = Math.max(+slave.balls, 0) || 0; - slave.scrotum = Math.max(+slave.scrotum, 0) || slave.balls; + if (slave.scrotum !== 0) { + slave.scrotum = Math.max(+slave.scrotum, 0) || slave.balls; + } }; window.slaveImplantsDatatypeCleanup = function slaveImplantsDatatypeCleanup(slave) { @@ -37204,7 +37346,7 @@ window.slaveMiscellaneousDatatypeCleanup = function slaveMiscellaneousDatatypeCl } }; -/* TODO: a lot of this may need to be removed */ +/* a lot of this may need to be removed */ window.ChildDatatypeCleanup = function ChildDatatypeCleanup(child) { childAgeDatatypeCleanup(child); childPhysicalDatatypeCleanup(child); @@ -37372,8 +37514,6 @@ window.childPregnancyDatatypeCleanup = function childPregnancyDatatypeCleanup(ch child.ovaries = Math.clamp(+child.ovaries, 0, 1) || 0; child.vasectomy = Math.clamp(+child.vasectomy, 0, 1) || 0; child.mpreg = Math.clamp(+child.mpreg, 0, 1) || 0; - child.reservedChildren = WombReserveCount(child, "incubator") || 0; - child.reservedChildrenNursery = WombReserveCount(child, "nursery") || 0; if (child.pregAdaptation !== 0) { child.pregAdaptation = Math.max(+child.pregAdaptation, 0) || 50; } @@ -37403,7 +37543,9 @@ window.childGenitaliaDatatypeCleanup = function childGenitaliaDatatypeCleanup(ch child.prostate = Math.clamp(+child.prostate, 0, 3) || 0; } child.balls = Math.max(+child.balls, 0) || 0; - child.scrotum = Math.max(+child.scrotum, 0) || child.balls; + if (child.scrotum !== 0) { + child.scrotum = Math.max(+child.scrotum, 0) || child.balls; + } }; window.childImplantsDatatypeCleanup = function childImplantsDatatypeCleanup(child) { @@ -37771,8 +37913,6 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() { V.playerAging = Math.clamp(+V.playerAging, 0, 2) || 2; } PC.newVag = Math.clamp(+PC.newVag, 0, 1) || 0; - PC.reservedChildren = WombReserveCount(PC, "incubator") || 0; - PC.reservedChildrenNursery = WombReserveCount(PC, "nursery") || 0; PC.fertDrugs = Math.clamp(+PC.fertDrugs, 0, 1) || 0; PC.forcedFertDrugs = Math.max(+PC.forcedFertDrugs, 0) || 0; PC.staminaPills = Math.clamp(+PC.staminaPills, 0, 1) || 0; @@ -37780,6 +37920,7 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() { PC.mpreg = 0; /* So knockMeUp() may be used with the PC */ PC.lactation = Math.max(+PC.lactation, 0) || 0; PC.lactationDuration = Math.max(+PC.lactationDuration, 0) || 0; + generatePlayerPronouns(PC); if (PC.age !== undefined) { delete PC.age; @@ -37835,8 +37976,17 @@ window.ArcologyDatatypeCleanup = function ArcologyDatatypeCleanup() { V.GDP = Math.max(+V.GDP, 1) || 278.6; V.NPCSlaves = Math.max(+V.NPCSlaves, 0) || 0; V.menials = Math.max(+V.menials, 0) || 0; - V.fuckdolls = Math.max(+V.fuckdolls , 0) || 0; - V.menialBioreactors = Math.max(+V.menialBioreactors , 0) || 0; + V.fuckdolls = Math.max(+V.fuckdolls, 0) || 0; + V.menialBioreactors = Math.max(+V.menialBioreactors, 0) || 0; + + V.assistant = Math.clamp(+V.assistant, 0, 1) || 0; + if (typeof V.assistantPronouns != "object") { + V.assistantPronouns = {}; + } + if (typeof V.marketAssistantPronouns != "object") { + V.marketAssistantPronouns = {}; + } + generateAssistantPronouns(); V.foodCost = Math.trunc(2500/V.economy); V.drugsCost = Math.trunc(10000/V.economy); diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index e0eea56eeaf025f0fd4467106ad08a7865e0c87d..b6ec76a1377521c0eef792753f01fb3896e13a18 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -1396,25 +1396,25 @@ boobs: slave boob size 0-299 - flat -300-399 - A cup -400-499 - B cup -500-649 - C cup -650-799 - D cup -800-999 - DD cup -1000-1199 - F cup -1200-1399 - G cup -1400-1599 - H cup -1600-1799 - I cup -1800-2049 - J cup -2050-2299 - K cup -2300-2599 - L cup -2600-2899 - M cup -2900-3249 - N cup -3250-3599 - O cup -3600-3949 - P cup -3950-4299 - Q cup -4300-4699 - R cup -4700-5099 - S cup +300-399 - A-cup +400-499 - B-cup +500-649 - C-cup +650-799 - D-cup +800-999 - DD-cup +1000-1199 - F-cup +1200-1399 - G-cup +1400-1599 - H-cup +1600-1799 - I-cup +1800-2049 - J-cup +2050-2299 - K-cup +2300-2599 - L-cup +2600-2899 - M-cup +2900-3249 - N-cup +3250-3599 - O-cup +3600-3949 - P-cup +3950-4299 - Q-cup +4300-4699 - R-cup +4700-5099 - S-cup 5100-10499- massive boobsMilk: @@ -3160,7 +3160,7 @@ accepts int HGExclude: -Is the head girl permitted to fuck this slave pregnant. +Is the Head Girl permitted to fuck this slave pregnant. 0 - no 1 - yes @@ -3318,7 +3318,7 @@ Used to tell if the slave is from this game or a previous. skillHG: -Her skill as a head girl +Her skill as a Head Girl accepts int default cap is 200 diff --git a/src/Mods/DinnerParty/dinnerPartyExecution.tw b/src/Mods/DinnerParty/dinnerPartyExecution.tw index e08a6f3cb735b38fe8b2f69ef441b8fe0521b7ce..3d7aefee548ce9b4dd66c341267af18403594858 100644 --- a/src/Mods/DinnerParty/dinnerPartyExecution.tw +++ b/src/Mods/DinnerParty/dinnerPartyExecution.tw @@ -415,13 +415,13 @@ <<set $slaves[_dpe].trust -= 5>> <</for>> - /% Head girl abuse %/ + /% Head Girl abuse %/ <<if ($HeadGirl != 0) && ($activeSlave.assignment != "be your Head Girl")>> <<setLocalPronouns $HeadGirl 2>> <br><br> You notice a group of guests corner your Head Girl. The group consists of some very powerful people. Most of them arcology owners themselves, some of them have more powerful arcologies than yours. $HeadGirl.slaveName tries to slip away, but _he2 was grabbed at the neck by the leader of the pack. He pulls _him2 down to the ground forcefully. - $HeadGirl.slaveName knows better than to resist, _he2 is still a slave despite _his2 position as your head girl. A slave does not raise their hand against a Master, even one that's not _his2 own. The leader rips off _his2 dress, exposing _his2 bare chest. Your head girl is frozen in terror when _he2 is lifted onto the hastily cleared dining hall table by several of the men. _Her2 eyes desperately search for you. You are the only one who can stop this. All that's required is a single word from you. + $HeadGirl.slaveName knows better than to resist, _he2 is still a slave despite _his2 position as your Head Girl. A slave does not raise their hand against a Master, even one that's not _his2 own. The leader rips off _his2 dress, exposing _his2 bare chest. Your Head Girl is frozen in terror when _he2 is lifted onto the hastily cleared dining hall table by several of the men. _Her2 eyes desperately search for you. You are the only one who can stop this. All that's required is a single word from you. $HeadGirl.slaveName's eyes meets yours; the look of relief on _his2 face is soon replaced by the sad realization that you will not intervene. _His2 mouth just barely forms the word <<if $PC.title > 0>> @@ -431,7 +431,7 @@ <</if>> as you shake your head, so _he2 closes _his2 mouth and resigns _himself2 to _his2 fate. <br> - Your head girl is placed across the corner of the dining hall table face down, _his2 hands and legs held open by 4 men. _He2 finds a hand on _his2 ass, groping roughly. Then another hand on the other cheek, roughly parting _his2 globes to get better access. + Your Head Girl is placed across the corner of the dining hall table face down, _his2 hands and legs held open by 4 men. _He2 finds a hand on _his2 ass, groping roughly. Then another hand on the other cheek, roughly parting _his2 globes to get better access. /% Pussy Check %/ <<if ($HeadGirl.vagina >= 0) && canDoVaginal($HeadGirl)>> A finger traces along _his2 slit, finding the source of that moisture and pressing its way in. Another finger was added and the hand began to finger fuck _him2 roughly. After a few seconds a third finger was added and then a fourth, stretching _his2 pussy. @@ -440,9 +440,9 @@ <<set $HeadGirl.vagina += 1>> <</if>> One man moves to the head of $HeadGirl.slaveName and shoved his cock into _his2 mouth, fucking _his2 throat roughly. He buries his cock deep down _his2 throat all the way to his balls. - He places both hands around _his2 neck and squeezes with every stroke. Your head girl's face turns red and $he gags uncontrollably. _His2 eyes roll back as another man shoves his hard cock in _his2 asshole, sodomizing _him2 with no mercy. As your head girl makes squeaking noises in pain, several guests pick up forks and jab it at _his2 butt and _his2 back, chanting "More meat... More meat..." and "Squeal, piggy, squeal." You slump over your chair at the head of the table. Gulping down your drink, you suppress the urge to order your security drones to open fire on those men. You know they would never dare to harm your head girl, not permanently, at least not anything your remote surgery couldn't fix. It's not as if you haven't done worse to your slaves, but the message is clear; the attack on your head girl was meant as disrespect and an insult towards you. Raping your head girl is like raping you. You stare at the group of men gang raping your head girl at the end of your own dining table, burning their @@.yellow;names and their faces@@ into your memory as they take turns fucking _him2. They make use of _his2 every hole. When they are done, _he2 is left on the floor, battered and bruised, covered in cum and blood from superficial wounds. - The leader of the pack pulls out his half erect cock and pees on your head girl as a final insult towards you. The poor _girl2 is so spent that _he2 doesn't even flinch at the urine hitting _his2 face. - He finishes showering your head girl, then turns towards you and says smilingly: + He places both hands around _his2 neck and squeezes with every stroke. Your Head Girl's face turns red and $he gags uncontrollably. _His2 eyes roll back as another man shoves his hard cock in _his2 asshole, sodomizing _him2 with no mercy. As your Head Girl makes squeaking noises in pain, several guests pick up forks and jab it at _his2 butt and _his2 back, chanting "More meat... More meat..." and "Squeal, piggy, squeal." You slump over your chair at the head of the table. Gulping down your drink, you suppress the urge to order your security drones to open fire on those men. You know they would never dare to harm your Head Girl, not permanently, at least not anything your remote surgery couldn't fix. It's not as if you haven't done worse to your slaves, but the message is clear; the attack on your Head Girl was meant as disrespect and an insult towards you. Raping your Head Girl is like raping you. You stare at the group of men gang raping your Head Girl at the end of your own dining table, burning their @@.yellow;names and their faces@@ into your memory as they take turns fucking _him2. They make use of _his2 every hole. When they are done, _he2 is left on the floor, battered and bruised, covered in cum and blood from superficial wounds. + The leader of the pack pulls out his half erect cock and pees on your Head Girl as a final insult towards you. The poor _girl2 is so spent that _he2 doesn't even flinch at the urine hitting _his2 face. + He finishes showering your Head Girl, then turns towards you and says smilingly: <br><br> //"I must congratulate you// <<if $PC.title > 0>> @@ -452,7 +452,7 @@ <</if>> //you trained a fine obedient slave. _He2 certainly understands _his2 position well."// You grit your teeth faking a smile, mentally repeating the old adage: @@.yellow;revenge is dish best served cold.@@ You have made some enemies tonight; you begin to plan a military conquest of them all. You will enjoy storming their arcologies and making them pay for this insult. <br><br> - The abuse your head girl suffers had @@.red;decreased _his2 health@@ and _he2 is @@.mediumorchid;less devoted@@ to you, as you allowed _him2 to be abused. + The abuse your Head Girl suffers had @@.red;decreased _his2 health@@ and _he2 is @@.mediumorchid;less devoted@@ to you, as you allowed _him2 to be abused. <br> <<set $HeadGirl.health -= 20>> <<set $HeadGirl.devotion -= 20>> diff --git a/src/SecExp/attackOptions.tw b/src/SecExp/attackOptions.tw index ef91fc34e50effb4fa16bcbf0b7095333308c091..b05ed1f226c0a99292606e03d622983a6a4c2aa2 100644 --- a/src/SecExp/attackOptions.tw +++ b/src/SecExp/attackOptions.tw @@ -225,7 +225,7 @@ __Battle Plan__: <</if>> <<if $HeadGirl != 0 && $slavesOfficers == 1>> | - <<link "Let your head girl lead your troops">> + <<link "Let your Head Girl lead your troops">> <<set $leadingTroops = "headGirl">> <<set _leader = $HeadGirl.slaveName>> <<replace "#leader">><strong><<print _leader>></strong><</replace>> diff --git a/src/SecExp/attackReport.tw b/src/SecExp/attackReport.tw index 9c7ca95b8bb59e952070133117df93069c4846c3..ab17149034f5ed949b117c5534b8c3859b9878df 100644 --- a/src/SecExp/attackReport.tw +++ b/src/SecExp/attackReport.tw @@ -1058,7 +1058,7 @@ She brought your army to victory so many times that her @@.green;prestige has increased@@. <</if>> <<elseif $leadingTroops == "headGirl">> - <<if $auto == 1>>$assistantName<<else>>You<</if>> decided it will be your head girl that leads the troops. + <<if $auto == 1>>$assistantName<<else>>You<</if>> decided it will be your Head Girl that leads the troops. <<if $deployingSlaves == 1>> <<if $HeadGirl.devotion < -20>> Her low devotion has a negative impact on the morale of your slave soldiers. diff --git a/src/SecExp/securityHQ.tw b/src/SecExp/securityHQ.tw index b9bf5e393a9ac02e1518168b4203bf085b3d680d..e77ea4bdfe702299e30d808cda2c7fc573c2a624 100644 --- a/src/SecExp/securityHQ.tw +++ b/src/SecExp/securityHQ.tw @@ -318,7 +318,7 @@ Considering the current upgrades the maximum level of crime is <<print $crimeCap <br> <<if $intelUpgrades.sensors == 0>> - [[Install perimeter sensors|securityHQ][$cash -= Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), $intelUpgrades.sensors = 1, $recon += 1, $reqMenials += 5, $secHQUpkeep += $upgradeUpkeep, $PC.hacking += 1]] + [[Install perimeter sensors|securityHQ][$cash -= Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier), $intelUpgrades.sensors = 1, $recon += 1, $reqMenials += 5, $secHQUpkeep += $upgradeUpkeep, $PC.hacking += 1]] <br>//Costs <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology*_HistoryDiscount*$HackingSkillMultiplier))>>. Will increase recon capabilities, but will require 5 extra slaves in the headquarters and increases upkeep.// <<else>> You have installed perimeter seismic sensors able to detect movement with high accuracy. diff --git a/src/SecExp/securityReport.tw b/src/SecExp/securityReport.tw index 628e646439f8a93d71d20f544e24ec3b818e0695..0c1f5154dcc79424e200c000190b49ff598c028b 100644 --- a/src/SecExp/securityReport.tw +++ b/src/SecExp/securityReport.tw @@ -296,7 +296,7 @@ <<set _recruits += 1>> <</if>> <<else>> - ''__@@.pink;<<= SlaveFullName($Recruiter)>>@@__'' is able to further boost your militia recruitement campaign from her PR hub office. + ''__@@.pink;<<= SlaveFullName($Recruiter)>>@@__'' is able to further boost your militia recruitment campaign from her PR hub office. <<if $propCampaignBoost == 1>> <<set _recruits += 4+Math.floor(($Recruiter.intelligence+$Recruiter.intelligenceImplant)/32)>> <<else>> @@ -441,7 +441,7 @@ <<set _newMercs += random(0,Math.round($SF.Size/10))>> <</if>> <<if $discountMercenaries > 0>> - More mercenaries are attracted to your archology as a result of the reduced rent. + More mercenaries are attracted to your arcology as a result of the reduced rent. <<set _newMercs += random(2,4)>> <</if>> <<set _newMercs = Math.trunc(_newMercs / 2)>> diff --git a/src/SecExp/seeUnit.tw b/src/SecExp/seeUnit.tw index 5d9c1eb599f78f61ae1065c26f6748d2ff3bc8c7..87ad9e17b3123ee9a23dd85b3f6731aafb1584c7 100644 --- a/src/SecExp/seeUnit.tw +++ b/src/SecExp/seeUnit.tw @@ -270,7 +270,7 @@ <<set $cash -= $equipUpgradeCost * $slaveUnits[$targetIndex].maxTroops + 1000>> <</link>> Provide special training for the officers and the commissars of the unit. - <br>//Costs <<print cashFormat(($equipUpgradeCost * $slaveUnits[$targetIndex].maxTroops) + 1000)>> and will increase the loyalty of the unit faster.// + <br>//Costs <<print cashFormat(($equipUpgradeCost * $slaveUnits[$targetIndex].maxTroops) + 1000)>> and will increase the loyalty of the unit faster.// <<elseif $slaveUnits[$targetIndex].commissars == 1>> <br>The unit has a commissar detachment, keeping under control the ambitions of the unit's officers. <<else>> diff --git a/src/SpecialForce/Firebase.tw b/src/SpecialForce/Firebase.tw index 3eac4577a335c36c6820a2eadd6a6ed317a7f2e3..d6921a0fbc5a859b5b9fecaf500911137d77f50e 100644 --- a/src/SpecialForce/Firebase.tw +++ b/src/SpecialForce/Firebase.tw @@ -76,9 +76,9 @@ <<if $SF.MercCon.History >= 1 && ((Math.trunc(($week-1)/24) === ($week-1)/24) || (Math.trunc(($week-2)/24) === ($week-2)/24) || (Math.trunc(($week-3)/24) === ($week-3)/24))>> - While at the recent merc meetup, the Colonel made @@.yellowgreen;<<print cashFormat(Math.ceil($SF.MercCon.Income))>>@@ selling generic schematics to her friends, <<print commaNum($SF.MercCon.Helots)>> menial slaves were won in a poker game, and <<print commaNum($SF.MercCon.TotalMercs)>> mercenaries were persuaded to join $SF.Lower. + While at the recent merc meetup, the Colonel made @@.yellowgreen;<<print cashFormat(Math.ceil($SF.MercCon.Income))>>@@ selling generic schematics to her friends, <<print commaNum($SF.V.SF.MercCon.Menials)>> menial slaves were won in a poker game, and <<print commaNum($SF.MercCon.TotalMercs)>> mercenaries were persuaded to join $SF.Lower. - <br>Total earnings thus far: @@.yellowgreen;<<print cashFormat(Math.ceil($SF.MercCon.Revenue))>>@@ in income, <<print commaNum($SF.MercCon.TotalHelots)>> menial slaves and <<print commaNum($SF.MercCon.Mercs)>> mercenaries joined across $SF.MercCon.History meetups. + <br>Total earnings thus far: @@.yellowgreen;<<print cashFormat(Math.ceil($SF.MercCon.Revenue))>>@@ in income, <<print commaNum($SF.V.SF.MercCon.TotalMenials)>> menial slaves and <<print commaNum($SF.MercCon.Mercs)>> mercenaries joined across $SF.MercCon.History meetups. <</if>> @@ -90,15 +90,15 @@ <br><<switch $SF.UC.Assign>> <<case 0>> - <br>No soldiers are working undercover. [[Full time assignement|Firebase][$SF.UC.Lock = 1]] + <br>No soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]] <br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]] <<case 1>> - <br>A small section of soldiers are working undercover. [[Full time assignement|Firebase][$SF.UC.Lock = 1]] + <br>A small section of soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]] <br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]] <<case 2>> - <br>A large section of soldiers are working undercover. [[Full time assignement|Firebase][$SF.UC.Lock = 1]] + <br>A large section of soldiers are working undercover. [[Full time assignment|Firebase][$SF.UC.Lock = 1]] <br>[[Reassign soldiers|Firebase][$SF.UC.Assign = -1]] <<default>> @@ -113,7 +113,7 @@ <</switch>> <<else>> - <br> <<if $SF.UC.Assign < 1>>''Zero''<<elseif $SF.UC.Assign < 2>>A ''small'' section<<else>>A ''large'' section<</if>> of the special force is assigned to undercover work. [[Re-alloclate the units|Firebase][$SF.UC.Lock = 0]] + <br> <<if $SF.UC.Assign < 1>>''Zero''<<elseif $SF.UC.Assign < 2>>A ''small'' section<<else>>A ''large'' section<</if>> of the special force is assigned to undercover work. [[Re-allocate the units|Firebase][$SF.UC.Lock = 0]] <</if>> <<if $SF.Squad.Firebase > 5 && $secExp > 0 && $SFSupportLevel >= 4 && $maxUnits === 16 && $readiness <= 10>> diff --git a/src/SpecialForce/FlavourText.tw b/src/SpecialForce/FlavourText.tw index 3c2a7607d6cc7b8492673845bb1f56d078a4e485..8134a0c891c5fa85debb137362c46f509122bfd5 100644 --- a/src/SpecialForce/FlavourText.tw +++ b/src/SpecialForce/FlavourText.tw @@ -45,7 +45,7 @@ reviewing maps of settlements and locations reported to have choice concentrations of material loot and potential slave stock, in preparation for their coming raids. <</if>> </div> <div style="margin-left:2em"> <<if $SF.ROE === "hold">> - There are posted (and very strict) guidelines for the use of force against non-citizens residents, forbidding the use of heavy weapons or indiscriminate fire. + There are posted (and very strict) guidelines for the use of force against non-citizen residents, forbidding the use of heavy weapons or indiscriminate fire. <<elseif $SF.ROE === "limited">> There are some guidelines posted regarding the use of force against non-citizens, forbidding general indiscriminate fire. <<elseif $SF.ROE === "free">> diff --git a/src/SpecialForce/JS.js b/src/SpecialForce/JS.js index 987d4b1f7ce4c9760c3f075a5baab06367edb51f..62b8d54781c578b58601ceb42709210973403291 100644 --- a/src/SpecialForce/JS.js +++ b/src/SpecialForce/JS.js @@ -1,4 +1,4 @@ -/*SecForceEX JS*/ +/*SecForceEX JS V = SugarCube.State.variables, T = SugarCube.State.temporary;*/ window.SFC = function() { const V = State.variables; if (V.SF.MercCon.CanAttend === -1) {return `The Colonel`;} @@ -97,7 +97,7 @@ window.Firebase = function() { if (S.Firebase >= 7) {slave = `A slave detention facility has been sectioned off to one side`; if (V.SF.Depravity > 1.5) slave += ` emanating the sounds of rape and torture`; slave += `,`;} - if (S.Firebase >= 8) appear = `has become a fully fledged military base.`, comms = `A Free City-wide communication network for $SF.Lower has been constructed to faciltate faster responses and efficient monitoring of the surrounding area.`; + if (S.Firebase >= 8) appear = `has become a fully fledged military base.`, comms = `A Free City-wide communication network for $SF.Lower has been constructed to facilitate faster responses and efficient monitoring of the surrounding area.`; if (S.Firebase >= 9) training = `A high-tech killhouse has been constructed to aid in soldier training.`; if (S.Firebase >= 10) artillery = `Railgun artillery batteries are set around the base of the arcology, capable of accurately destroying enemies an absurd distance away.`; @@ -253,7 +253,7 @@ window.SP = function() { if (S.SpacePlane >= 6) camera2 = `The camera sensor is capable of taking IR shots.`; if (S.SpacePlane >= 7) drag = `Miraculous advances in aerodynamics and materials allow frictionless flight, even while in the atmosphere.`; if (S.SpacePlane >= 8) crew = `Increased the crew comfort and life support systems to increase operational time.`; - if (S.SpacePlane >= 9) skin = `Replaced the underbelly skin with an chameleon kit, matching the color to the sky above it.`; + if (S.SpacePlane >= 9) skin = `Replaced the underbelly skin with a chameleon kit, matching the color to the sky above it.`; if (S.SpacePlane >= 10) engine = `experimental scramjet engines in the atmosphere that can reach Mach 15`, engine2 = ` and liquid rocket engines in orbit that can reach an equivalent Mach 25`; return `A prototype spaceplane ${b} rests in the hangar, its black fuselage gleaming. The craft is powered by ${engine}${engine2}. ${efficiency} ${shield} ${camera} ${camera2} ${drag} ${crew} ${skin}`; @@ -331,7 +331,7 @@ window.ms = function() { window.AC = function() { const V = State.variables, S = V.SF.Squad; - var recom = `has been recommisioned from the Old World for $SF.Lower. It`, jets = `Formerly mothballed strike jets`, loc = ``, radar = ``, AA = ``, prop = ``, torp = ``, armor = ``, power = ``, scramble = ``; + var recom = `has been recommissioned from the Old World for $SF.Lower. It`, jets = `Formerly mothballed strike jets`, loc = ``, radar = ``, AA = ``, prop = ``, torp = ``, armor = ``, power = ``, scramble = ``; if (V.week % 6 === 0) { loc = `moored to the pier in the Naval Yard`; } else { loc = `patrolling the waters near $arcologies[0].name`; } if (S.AircraftCarrier >= 2) radar = `The island's radar and comms have been improved.`, recom = ``; @@ -449,25 +449,41 @@ window.progress = function(x,max) { return `${out}`; }; +window.Main = function() { + const V = State.variables; + V.SF = {Toggle:V.SF.Toggle,Active:-1,Depravity:0, Bonus:0, Size:0, Upgrade:0, Gift:0, UC:{Assign:0, Lock:0}, ROE:"hold", Target:"recruit", Regs:"strict", Caps:"The Special Force", Lower:"the special force", Subsidy:1, BadOutcome:""}; + V.arcologies[0].SFRaid = 1,V.arcologies[0].SFRaidTarget = -1; +} +window.Squad = function() { + const V = State.variables; + V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0}; +} +window.Colonel = function() { + const V = State.variables; + V.SF.Colonel = {Core:"", Talk:0, Fun:0, Status:0}; +} +window.MercCon = function() { + const V = State.variables; + V.SF.MercCon = {History:0, CanAttend:0, Income:0, Revenue:0, Menials:0, TotalMenials:0, Mercs:0, TotalMercs:0}; +} +window.Facility = function() { + const V = State.variables; + V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; +} + window.SFInit = function() { - const V = State.variables; - V.SF = {Toggle:V.SF.Toggle,Active:-1,Depravity:0, Bonus:0, Size:0, Upgrade:0, Gift:0, UC:{Assign:0, Lock:0}, ROE:"hold", Target:"recruit", Regs:"strict", Caps:"The Special Force", Lower:"the special force", Subsidy:1, BadOutcome:""}; - V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0}; - V.SF.Colonel = {Core:"", Talk:0, Fun:0, Status:0}; - V.SF.MercCon = {History:0, CanAttend:0, Income:0, Revenue:0, Menials:0, TotalMenials:0, Mercs:0, TotalMercs:0}; - V.arcologies[0].SFRaid = 1,V.arcologies[0].SFRaidTarget = -1; - V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; + Main();Squad();Colonel();MercCon();Facility(); }; window.SFBC = function() { const V = State.variables; - function Init() { + function InitClean() { delete V.SFMODToggle; delete V.securityForceActive; delete V.securityForceCreate; delete V.securityForceEventSeen; } - function Main() { + function MainClean() { delete V.securityForceActive; delete V.securityForceRecruit; delete V.securityForceTrade; @@ -487,14 +503,14 @@ window.SFBC = function() { delete V.securityForceName; delete V.SubsidyActive; } - function Colonel() { + function ColonelClean() { delete V.SubsidyActive; delete V.ColonelCore; delete V.securityForceColonelToken; delete V.securityForceColonelSexed; delete V.ColonelRelationship; } - function TradeShow() { + function TradeShowClean() { delete V.OverallTradeShowAttendance; delete V.CurrentTradeShowAttendance; delete V.TradeShowIncome; @@ -502,7 +518,7 @@ window.SFBC = function() { delete V.TradeShowHelots; delete V.TotalTradeShowHelots; } - function Units() { + function UnitsClean() { delete V.securityForcePersonnel; delete V.securityForceInfantryPower; delete V.securityForceArcologyUpgrades; @@ -521,10 +537,10 @@ window.SFBC = function() { delete V.securityForceHeavyAmphibiousTransport; } - if ( (V.SF.Toggle || V.SFMODToggle) > 0) { - if (V.SF == undefined) { + if ( (V.SF.Toggle || V.SFMODToggle) > 0 || V.SF === undefined) { + if (V.SF === undefined) { if (V.securityForceEventSeen < 1) { V.securityForceActive = -1 } else { V.securityForceActive = 2 }; - V.SF = {Toggle:V.SFMODToggle, Active:V.securityForceActive}; Init(); + V.SF = {Toggle:V.SFMODToggle, Active:V.securityForceActive}; InitClean(); if (V.securityForceName === undefined) V.securityForceName = "the special force"; if (V.SF.Active >= 1) { Object.assign(V.SF, { @@ -538,7 +554,7 @@ window.SFBC = function() { Regs:V.securityForceAccountability, Caps:"The Special Force", Lower:V.securityForceName, - Subsidy:V.SubsidyActive}); Main(); + Subsidy:V.SubsidyActive}); MainClean(); if (V.SF.Lower !== "the special force") V.SF.Caps = V.SF.Lower.replace("the ", "The "); if (V.ColonelCore === undefined) V.ColonelCore = ""; @@ -548,7 +564,7 @@ window.SFBC = function() { Core:V.ColonelCore, Talk:V.securityForceColonelToken, Fun:V.securityForceColonelSexed, - Status:V.ColonelRelationship}; Colonel(); + Status:V.ColonelRelationship}; ColonelClean(); if (V.TradeShowIncome === undefined) V.TradeShowIncome = 0; if (V.TotalTradeShowIncome === undefined) V.TotalTradeShowIncome = 0; @@ -592,27 +608,16 @@ window.SFBC = function() { MissileSilo:V.securityForceMissileSilo, AircraftCarrier:V.securityForceAircraftCarrier, Sub:V.securityForceSubmarine, - HAT:V.securityForceHeavyAmphibiousTransport}; Units(); + HAT:V.securityForceHeavyAmphibiousTransport}; UnitsClean(); } else { - V.SF = {Depravity:0, Size:0, Upgrade:0, Gift:0, UC:{Assign:V.SF.SpecOps, Lock:V.SF.SpecOpsLock}, ROE:"hold", Target:"recruit", Regs:"strict", Caps:"The Special Force", Lower:"the special force", Subsidy:1}; - V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0}; - V.arcologies[0].SFRaid = 1,V.arcologies[0].SFRaidTarget = -1; - V.SF.Colonel = {Core:"", Talk:0, Fun:0, Status:0}; - V.SF.MercCon = {History:0, CanAttend:0, Income:0, Revenue:0, Menials:0, TotalMenials:0, Mercs:0, TotalMercs:0}; - if (V.securityForceName) { - Init(); Main(); Colonel(); TradeShow(); Units(); - } + SFInit(); } - V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; + Facility(); } else { if (V.SF.Active === -1) SFInit(); - if (V.SF.MWU) { - delete V.SF.MWU; - } - if (V.SpecOpsLock != undefined) { - V.SF.SpecOpsLock = V.SpecOpsLock; delete V.SpecOpsLock; - } - if (V.SF.UC == undefined) { + if (V.SF.MWU) delete V.SF.MWU; + if (V.SpecOpsLock != undefined) V.SF.SpecOpsLock = V.SpecOpsLock; delete V.SpecOpsLock; + if (V.SF.UC === undefined) { if (V.SF.SpecOps != undefined && V.SF.SpecOpsLock != undefined) { V.SF.UC = {Assign:V.SF.SpecOps, Lock:V.SF.SpecOpsLock}; delete V.SF.SpecOps; delete V.SF.SpecOpsLock; @@ -620,55 +625,41 @@ window.SFBC = function() { V.SF.UC = {Assign:0, Lock:0}; } } - if (V.SF.U != undefined) { - V.SF.Upgrade = V.SF.U; delete V.SF.U; - } - if (V.SF.WG != undefined) { - V.SF.Gift = V.SF.WG; delete V.SF.WG; - } - if (V.SF.MercCon.Helots != undefined) { - V.SF.MercCon.Menials = V.SF.MercCon.Helots; - V.SF.MercCon.TotalMenials = V.SF.MercCon.TotalHelots; - delete V.SF.MercCon.Helots;delete V.SF.MercCon.TotalHelots; - } - if (V.SF.Facility == undefined) { - V.SF.Facility = {Toggle:0, Active:0, LC:0, Workers:0, Max:5, Caps:"Special force support facility", Lower:"special force support facility", Decoration:"standard", Speed:0, Upgrade:0, IDs:[]}; - } - if (V.SF.Bonus == undefined) { - V.SF.Bonus = 0; - } - if (V.SF.Depravity < 0) { - V.SF.Depravity = 0; - } - if (V.SF.Size == undefined) { - V.SF.Size = V.SF.Units; delete V.SF.Units; - } - if (V.SFUnit != undefined) { - if (V.SFUnit.AT != undefined) { - delete V.SFUnit.AT; V.SFUnitTA = 0; - } - V.SF.Squad = V.SFUnit; - delete V.SFUnit; + if (V.SF.U !== undefined) V.SF.Upgrade = V.SF.U; delete V.SF.U; + if (V.SF.WG !== undefined) V.SF.Gift = V.SF.WG; delete V.SF.WG; + if (V.SF.MercCon != undefined) { + V.SF.MercCon.Menials = V.SF.MercCon.Helots; + V.SF.MercCon.TotalMenials = V.SF.MercCon.TotalHelots; + delete V.SF.MercCon.Helots;delete V.SF.MercCon.TotalHelots; + } else { + MercCon(); + } + + if (V.SF.Facility === undefined) Facility(); + if (V.SF.Bonus === undefined) V.SF.Bonus = 0; + if (V.SF.Depravity < 0) V.SF.Depravity = 0; + if (V.SF.Size === undefined) V.SF.Size = V.SF.Units; delete V.SF.Units; + if (V.SFUnit !== undefined) { + if (V.SFUnit.AT !== undefined) delete V.SFUnit.AT; V.SFUnitTA = 0; + V.SF.Squad = V.SFUnit; delete V.SFUnit; V.SF.Squad.Sat = {lv:V.SF.Squad.Satellite, InOrbit:V.SatLaunched}; delete V.SatLaunched; V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; - if (V.SFTradeShow != undefined) V.SF.MercCon = V.SFTradeShow; delete V.SFTradeShow; - if (V.SFColonel != undefined) V.SF.Colonel = V.SFColonel; delete V.SFColonel; - if (V.securityForceName) Init(); Main(); Colonel(); TradeShow(); Units(); + if (V.SFTradeShow !== undefined) V.SF.MercCon = V.SFTradeShow; delete V.SFTradeShow; + if (V.SFColonel !== undefined) V.SF.Colonel = V.SFColonel; delete V.SFColonel; if (V.SF.BadOutcome === undefined) V.SF.BadOutcome = ""; if (V.SF.Squad.Satellite != undefined && V.SatLaunched == undefined) { - delete V.SFUnit; - V.SF.Squad.Sat = {lv:0, InOrbit:0}; - delete V.SatLaunched; - V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; + delete V.SFUnit; V.SF.Squad.Sat = {lv:0, InOrbit:0}; + delete V.SatLaunched; V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; } } - if (V.SF.Squad != undefined && V.SF.Squad.Satellite.lv === undefined) { + if (V.SF.Squad !== undefined && V.SF.Squad.Satellite.lv === undefined) { V.SF.Squad.Sat = {lv:V.SF.Squad.Satellite, InOrbit:0}; V.SF.Squad.Satellite = V.SF.Squad.Sat; delete V.SF.Squad.Sat; } } } + if (V.securityForceName !== undefined) InitClean(); MainClean(); ColonelClean(); TradeShowClean(); UnitsClean(); }; window.BadOutcome = function() { @@ -677,7 +668,7 @@ window.BadOutcome = function() { case "Shell-Shocked": V.SF.BadOutcome = "lockdown",V.trinkets.push("${t} explosives detonator"); r +=`Unnerved by your ever-increasing influence over your men and undercutting of her authority, The Colonel uses heavy explosives at Midnight to seal off The Firebase from your access. When you step off of your express elevator, you are met not with two guards, but several armed proximity mines next to an incredibly thick wall of smoking rubble. No doubt there are machine gun nests, anti-tank nests, and lots more proximity mines just waiting for you on the other side, should you somehow get through the wall of debris.`; - r+=`<br>The ${V.SF.Lower} still deploys into the old world to plunder as it pleases, but no longer for you. You receive no money from their exploits, and their total defiance and independance of you is a permanent stain on your reputation. Of course, you'll never have the needed military power to dislodge them, especially with all the redundant fortifications, crossfire envelopes, and myriad traps that paranoid bitch had built around each entrance ever since she went rouge. Trying to sabotage certain support beams from above to make the Firebase facility collapse in on itself could easily cause enough damage to topple other parts of the arcology too, and such a thing would be very difficult to cover up. In other words, you're stuck with them. The Firebase has become a permanent tumor on your Arcology and good name.`; + r+=`<br>The ${V.SF.Lower} still deploys into the old world to plunder as it pleases, but no longer for you. You receive no money from their exploits, and their total defiance and independence of you is a permanent stain on your reputation. Of course, you'll never have the needed military power to dislodge them, especially with all the redundant fortifications, crossfire envelopes, and myriad traps that paranoid bitch had built around each entrance ever since she went rouge. Trying to sabotage certain support beams from above to make the Firebase facility collapse in on itself could easily cause enough damage to topple other parts of the arcology too, and such a thing would be very difficult to cover up. In other words, you're stuck with them. The Firebase has become a permanent tumor on your Arcology and good name.`; break; case "Cruel": V.SF.BadOutcome = "Revolt",V.trinkets.push("${t} dog tags"),V.Rep = 0, @@ -690,26 +681,26 @@ window.BadOutcome = function() { break; case "Cruel and Psychopathic": V.SF.BadOutcome = "Revolt",V.trinkets.push("${t} dog tags"),V.Rep = 0; - r += `<br>Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for an utterly ferocious rebellion. The promises of rape and plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves) are all thats needed to give the selfish lot of them a nearly unshakable resolve in the task of delivering their overlord Her most coveted prize: You.`; - r += `<br>It is now Midnight. The lights are the first thing they disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Things like this were never supposed to happen again. You had promised them that you'd create an army that would protect them...`; - r += `<br>Her army vanguard strikes fast and hard throughout the main Plaza, cutting through your security personnel, defensive platoons, and drones with an ease that stinks of months of careful planning and study. Your defensive platoons, veterans of many Battles, are outmanuvered at every turn; their hidden ammunition caches are found empty, their communications networks are mysteriously scrambled, and key chokepoints are found to be booby-trapped before your men can even get to them; their well-rehearsed arcology defense routines have gone to ash. Assuming you ever get a chance to speak to The Colonel again, you would ask if her betrayal was actually inevitable rather than something you triggered.`; - r += `<br>You watch with immense dissappointment as the very APC's and IFV's that you paid for now charge into resisting storefronts to storm the armed civillians inside with heavy infantry at point blank range. Battle Tanks trample wounded civillians in the streets as they maneuver to blast your citizens' hastily-made holdouts to pieces, burying dozens of civillian loyalists under mountains of rubble while hundreds more are gunned down in the streets for want of adequate cover. The Plaza is lost; the enemy vanguard has gained access to the Residential Sectors upstairs. Enticed, entire platoons of her vanguard decide to become bandits, ignoring their Colonel's orders and scattering off from the main force to kick down many apartment doors and help themselves to whatever desirable goods or inhabitants they find within.`; + r += `<br>Finally fed up with your constant intrusions into her territory and crew, The Colonel riles up her people for an utterly ferocious rebellion. The promises of rape and plunder and dominion over some of the wealthiest tenants in the entire Free City (and their world-class slaves) are all that's needed to give the selfish lot of them a nearly unshakable resolve in the task of delivering their overlord Her most coveted prize: You.`; + r += `<br>It is now midnight. The lights are the first thing they disable, as they still have the excellent night vision equipment you purchased for them. Some of your citizens start panicking almost immediately at the sudden blackout; this is very reminiscent of the Daughters of Liberty attack that still haunts many of their memories. Things like this were never supposed to happen again. You had promised them that you'd create an army that would protect them...`; + r += `<br>Her army vanguard strikes fast and hard throughout the main Plaza, cutting through your security personnel, defensive platoons, and drones with an ease that stinks of months of careful planning and study. Your defensive platoons, veterans of many Battles, are outmaneuvered at every turn; their hidden ammunition caches are found empty, their communications networks are mysteriously scrambled, and key chokepoints are found to be booby-trapped before your men can even get to them; their well-rehearsed arcology defense routines have gone to ash. Assuming you ever get a chance to speak to The Colonel again, you would ask if her betrayal was actually inevitable rather than something you triggered.`; + r += `<br>You watch with immense disappointment as the very APC's and IFV's that you paid for now charge into resisting storefronts to storm the armed civilians inside with heavy infantry at point blank range. Battle Tanks trample wounded civilians in the streets as they maneuver to blast your citizens' hastily-made holdouts to pieces, burying dozens of civilian loyalists under mountains of rubble while hundreds more are gunned down in the streets for want of adequate cover. The Plaza is lost; the enemy vanguard has gained access to the Residential Sectors upstairs. Enticed, entire platoons of her vanguard decide to become bandits, ignoring their Colonel's orders and scattering off from the main force to kick down many apartment doors and help themselves to whatever desirable goods or inhabitants they find within.`; r += `<br>Outside, her many aircraft swarm the local airspace to patrol the Arcology outskirts, conduct recon scans of the upper levels, or monitor your sealed penthouse outside the range of your SAM turrets, while shooting down any other fleeing VTOL's. You will not be escaping by air today. No one will. No escaping by land either: Swarms of her drones are tasing fleeing noncombatants by the hundreds for later enslavement, as the remainder of her army begins to pour into the bloody Plaza. This is your Arcology's darkest hour.`; - r += `<br>And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armour platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camoflauged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harrassing constantly and preventing any hostile reconnaisance or infiltration from being done.`; - r += `<br>The main Residential courtyard features the Residential Sectors' massive elevator complex, which will give The Colonel's forces rapid access to the Promenade, and ultimately, You. In front of it, your Mercenary Captain stands atop one of the many metres-thick sandbag walls his men just assembled there, leading the raging defensive blockade in bringing the vangaurd's assault to a gory halt. ${V.SF.Lower}'s bodies and bits and debris pile up in small walls on the outskirts under the burning heat of hundreds of flying autocannon rounds and dozens of screeching missiles. Before the vanguard's morale can break however, The Colonel shows up in person behind her own lines, kitted in a customized power armour and dragging, of all things, a hydraulic trebucket loaded with a crudely-welded large metal box. She launches the box from beyond your Merceneries' line of sight, sending it reeling towards them and predicting that they will try to shoot it out of the sky. They do, not wanting the slow but strange projectile to hit them directly, only learning of their folly when the metal 'box' detonates midair and releases a dense cloud of cluster bombs over their position. The munitions themselves disable some of the exosuits, but they don't kill too many on their own. However, the bomblets do succeed in detonating the various ammo dumps that were feeding your Mercenaries' blazing guns. The chain explosions, resulting fires, destroyed cover, and widespread casualties and confusion all create the perfect opportunity for The Colonel to storm the previously implacable barricade at the head of her troops, with her followers rushing the merc lines and blasting off the heavy armour plating of your disoriented Mercenaries themselves before stabbing them to death, or in some cases, hauling off the dis-armoured and defeated female Mercenaries they discover for immediate use. As the few intact Mercenaries remaining desperately struggle to hold off the advancing horde with their remaining ammo, The Colonel takes on your dazed Mercenary Captain in single combat. When their ammunition runs dry, and their blasted battlesuits break down, they both eject, and then the knives come out. Minutes later, she stabs him in the side of his skull after she dodges yet another attempt to land a killing blow on her. With the source of Mercenary command and control gone, The Colonel stauches her own bleeding, yanks a trooper out of a near-pristine battlesuit that she now claims for herself, and directly organizes the isolation and extermination of the smaller teams of Mercenaries that are bleeding her troops everywhere else. She routs your Mercenaries for good with the razing of their Garrison structure. The ${V.SF.Lower} now enjoys absolute air and ground superiority. Soon the surviving rear of her army is brought upstairs from the killing floors down in the Markets, and the many elevators and cargo lifts of the elevator complex are boarded, with your executive override codes to remotely shut down the elevators somehow being manually bypassed by her combat engineers. It won't be long now.`; - r += `<br>Dawn has broken over the Free City. Only five hours into the slaughter (of which your Mercenaries no doubt bought you at least three), it becomes very clear to you that the only way to save your arcology is to destroy it. Everything and Everyone will burn before you let this crazy bitch and her rabid dogs get thier dirty hands on you or your slaves. On your order, your most loyal subordinates, the ones who were with you since the early days to patrol your Arcology before you even had drones to protect it, fight their way to through the carnage of your panicking civillians on The Promenade to get to the exact hidden elevators that your Personal Assistant specifies for them. Their destination is the arcology's reactor complex, of course. Following the PA's instructions precisely, they arm their many high-yield explosive charges on your now-exposed and de-stabilized reactor, and in one final service to you, detonate them, creating a collosal explosion. The rapidly ascending heretics quite literally have the rug pulled from under them, as the blast takes out nearly all of the arcology's lesser foundational support beams, thus collapsing many thousands of metric tons of concrete, steel, plastic, and plaster out from underneath the upward bound Colonel and her men... And everyone else, unforteunately. With no foundation any longer, all of your arcology's interior Sectors are utterly gutted from the bottom-up by gravity itself, and everything beneath your ration-stocked, backup-powered Penthouse crumbles to the earth. The massive cloud of dust created by the widespread fires and interior collapse ends up covering the entire Free City for hours. Her aircraft, now berift of their logistical support and command structure, immediately fly off to neighboring arcologies to offer their services to the various employers there, seeing as the coup has failed and they have nowhere else to go. The skies are free for You to travel as you please, but You aren't going anywhere.`; - r += `<br>It is Eveningtime when the tremors finally stop. Everything below your Penthouse is ruin, and your arcology, its population, and your reputation are now essentially dust. However, the arcology did not fall. It. Is. Still. Yours. You shall rise again, not flee this tragedy in shame. Of course, no one will ever know that you sacrificed the arcology delibrately in order to save yourself; it is all too easy to claim that The Colonel carelessly damaged the reactor complex during her assault, ironically causing her own defeat. Frankly, sacrificing most of your tenants doesn't bother you as much as it probably should; maybe its because you know that if The Colonel and her men had won, all those people were as good as dead anyway.`; - r += `<br>You know that if you want to survive, you'll need to sorround yourself with workers and allies to rebuild fast, else your rivals gobble you up. It costs you a horrific sum to clear and process the wreckage and rebuild the basic Sector superstructures and infrastructure for your arcology on such short notice, even after liqidating everything your workers salvage. Your powerful friends still residing in the Old World or other Free Cities have lent you a suprising amount of aid too, with quite a few lended super-heavy contruction assets getting huge amounts of work done quickly. Even then, what you've been able to rebuild is very little. After a nearly sleepless, sexless week of immense toil, you've successfully organized tens of thousands of people in restoring the arcology to a barely functional condition (along with rudimentary imitations of all your upgrades), and you've even got some new Garrison Mercenaries in by week's end too... But its just not the same. If it weren't for your bruised weather-plating your arcology would look like a giant skeleton. Inside, it feels like a concrete boneyard; everything has been built cheap and utilitarian, and the walls aren't even painted. With only a few operational services staffed by commuters from neighboring arcologies, there is just an eerie silence just about everywhere. With few amenities for relief, there are going to be many long days ahead for your few tenants, most of them being wealthy but distraught returning travellers who left before the attack. Maybe your slaves can help entertain them. A lot of these people are VIP's it seems.`; - r += `<br>It is now Midnight. In a rare moment of reflection, you contemplate that what The Colonel just did to your arcology was exactly what you were all too happy to have her do to dozens, if not hundreds of innocent villages and townships under your shadow during her 'Raiding and Slaving' operations. Nevertheless, You have hard work ahead of you, especially now that your enemies see that you are now much weaker than you have ever been.`; + r += `<br>And yet your Mercenaries stand ready. On security feeds throughout the Residential Sectors and Garrison you see your elite sellswords charging out of their lodgings in full kit. They are few, but this is their home, and you are their Patron and Commander. They hold firm, fighting like legends of old in some places, and fighting like animals in others. The Mercenaries trapped downstairs near The Garrison take to the Markets, pinning down most of The Colonel's reinforcements from various shopping outlets using towed quad anti-aircraft guns, and ultimately cutting off many of the assets needed for The Colonel's ongoing assault upstairs. Enemy troop carriers laden with heavy infantry breach the shopping centers in order to dislodge them, only to have their inhabitants cooked alive before they can disembark in time or shot to pieces even when they do. Keeping these Mercenaries alive are the roving exosuit-clad tank hunter duos that frag entire armor platoons en route to these shopping outlets, resorting to carving open enemy AFV's up close with their powered CQB weapons once they've run out of missiles. Back in the Residencies upstairs, in the still-evacuating streets and atriums, your actively-camouflaged snipers take up choice positions on various balconies and overpasses, sowing panic among the advancing traitors with their impressive anti-material rifles with one explosive headshot after another, sometimes even hitting them through walls and buildings. In large indoor parks leading up to the main Residential courtyard, Mercenary fireteams force enemy flankers to flee every single footpath they walk through, harassing constantly and preventing any hostile reconnaissance or infiltration from being done.`; + r += `<br>The main Residential courtyard features the Residential Sectors' massive elevator complex, which will give The Colonel's forces rapid access to the Promenade, and ultimately, You. In front of it, your Mercenary Captain stands atop one of the many meters-thick sandbag walls his men just assembled there, leading the raging defensive blockade in bringing the vanguard's assault to a gory halt. ${V.SF.Lower}'s bodies and bits and debris pile up in small walls on the outskirts under the burning heat of hundreds of flying autocannon rounds and dozens of screeching missiles. Before the vanguard's morale can break however, The Colonel shows up in person behind her own lines, kitted in a customized power armor and dragging, of all things, a hydraulic trebuchet loaded with a crudely-welded large metal box. She launches the box from beyond your Merceneries' line of sight, sending it reeling towards them and predicting that they will try to shoot it out of the sky. They do, not wanting the slow but strange projectile to hit them directly, only learning of their folly when the metal 'box' detonates midair and releases a dense cloud of cluster bombs over their position. The munitions themselves disable some of the exosuits, but they don't kill too many on their own. However, the bomblets do succeed in detonating the various ammo dumps that were feeding your Mercenaries' blazing guns. The chain explosions, resulting fires, destroyed cover, and widespread casualties and confusion all create the perfect opportunity for The Colonel to storm the previously implacable barricade at the head of her troops, with her followers rushing the merc lines and blasting off the heavy armor plating of your disoriented Mercenaries themselves before stabbing them to death, or in some cases, hauling off the dis-armored and defeated female Mercenaries they discover for immediate use. As the few intact Mercenaries remaining desperately struggle to hold off the advancing horde with their remaining ammo, The Colonel takes on your dazed Mercenary Captain in single combat. When their ammunition runs dry, and their blasted battlesuits break down, they both eject, and then the knives come out. Minutes later, she stabs him in the side of his skull after she dodges yet another attempt to land a killing blow on her. With the source of Mercenary command and control gone, The Colonel staunches her own bleeding, yanks a trooper out of a near-pristine battlesuit that she now claims for herself, and directly organizes the isolation and extermination of the smaller teams of Mercenaries that are bleeding her troops everywhere else. She routs your Mercenaries for good with the razing of their Garrison structure. The ${V.SF.Lower} now enjoys absolute air and ground superiority. Soon the surviving rear of her army is brought upstairs from the killing floors down in the Markets, and the many elevators and cargo lifts of the elevator complex are boarded, with your executive override codes to remotely shut down the elevators somehow being manually bypassed by her combat engineers. It won't be long now.`; + r += `<br>Dawn has broken over the Free City. Only five hours into the slaughter (of which your Mercenaries no doubt bought you at least three), it becomes very clear to you that the only way to save your arcology is to destroy it. Everything and Everyone will burn before you let this crazy bitch and her rabid dogs get their dirty hands on you or your slaves. On your order, your most loyal subordinates, the ones who were with you since the early days to patrol your Arcology before you even had drones to protect it, fight their way to through the carnage of your panicking civilians on The Promenade to get to the exact hidden elevators that your Personal Assistant specifies for them. Their destination is the arcology's reactor complex, of course. Following the PA's instructions precisely, they arm their many high-yield explosive charges on your now-exposed and de-stabilized reactor, and in one final service to you, detonate them, creating a colossal explosion. The rapidly ascending heretics quite literally have the rug pulled from under them, as the blast takes out nearly all of the arcology's lesser foundational support beams, thus collapsing many thousands of metric tons of concrete, steel, plastic, and plaster out from underneath the upward bound Colonel and her men... And everyone else, unfortunately. With no foundation any longer, all of your arcology's interior Sectors are utterly gutted from the bottom-up by gravity itself, and everything beneath your ration-stocked, backup-powered Penthouse crumbles to the earth. The massive cloud of dust created by the widespread fires and interior collapse ends up covering the entire Free City for hours. Her aircraft, now bereft of their logistical support and command structure, immediately fly off to neighboring arcologies to offer their services to the various employers there, seeing as the coup has failed and they have nowhere else to go. The skies are free for You to travel as you please, but You aren't going anywhere.`; + r += `<br>It is late evening when the tremors finally stop. Everything below your Penthouse is ruin, and your arcology, its population, and your reputation are now essentially dust. However, the arcology did not fall. It. Is. Still. Yours. You shall rise again, not flee this tragedy in shame. Of course, no one will ever know that you sacrificed the arcology deliberately in order to save yourself; it is all too easy to claim that The Colonel carelessly damaged the reactor complex during her assault, ironically causing her own defeat. Frankly, sacrificing most of your tenants doesn't bother you as much as it probably should; maybe its because you know that if The Colonel and her men had won, all those people were as good as dead anyway.`; + r += `<br>You know that if you want to survive, you'll need to surround yourself with workers and allies to rebuild fast, else your rivals gobble you up. It costs you a horrific sum to clear and process the wreckage and rebuild the basic Sector superstructures and infrastructure for your arcology on such short notice, even after liquidating everything your workers salvage. Your powerful friends still residing in the Old World or other Free Cities have lent you a surprising amount of aid too, with quite a few lent super-heavy construction assets getting huge amounts of work done quickly. Even then, what you've been able to rebuild is very little. After a nearly sleepless, sexless week of immense toil, you've successfully organized tens of thousands of people in restoring the arcology to a barely functional condition (along with rudimentary imitations of all your upgrades), and you've even got some new Garrison Mercenaries in by week's end too... But its just not the same. If it weren't for your bruised weather-plating your arcology would look like a giant skeleton. Inside, it feels like a concrete boneyard; everything has been built cheap and utilitarian, and the walls aren't even painted. With only a few operational services staffed by commuters from neighboring arcologies, there is just an eerie silence just about everywhere. With few amenities for relief, there are going to be many long days ahead for your few tenants, most of them being wealthy but distraught returning travelers who left before the attack. Maybe your slaves can help entertain them. A lot of these people are VIP's it seems.`; + r += `<br>It is now midnight. In a rare moment of reflection, you contemplate that what The Colonel just did to your arcology was exactly what you were all too happy to have her do to dozens, if not hundreds of innocent villages and townships under your shadow during her 'Raiding and Slaving' operations. Nevertheless, You have hard work ahead of you, especially now that your enemies see that you are now much weaker than you have ever been.`; r += `<br>The Colonel's body was never found.`; break; case "Kind": V.SF.BadOutcome = "Exodus",V.trinkets.push("${t} gift card"), V.Cash += 55000,V.menials += 73; r += `Your Colonel has had enough of your meddling. In her eyes, you've broken faith with her. She asked one thing of you in return for her full support, and you could not even give her that.`; - r += `<br>At Midnight, a great mechanized convoy, the biggest you've seen in a long while, streams out of your Arcology. Troop Carriers, Aircraft, Heavy Trucks, and other war machines of varying sizes pour out of the Firebase in tight formation. The Colonel is refusing your calls, and you know it would be ill advised to go out there yourself or to try to stop them with force. The many bandits and mercenary groups that the convoy will inevitably pass by will probably feel this way as well. You have no idea where they are going or how they will end up, but with their wealth and weaponry, you are not worried.`; - r += `<br>Upon your inspection of the abandoned firebase itself, most of the heavier installations have been dismantled and carried away, but about 55,000# of miscellaneous supplies and 73 menials have been left behind, presumably because the convoy had no space for them. On The Colonel's old pavillion, you see a white gift card standing upright.`; - r += `<br>When you climb the crates to take it and read it, you see The Colonel's handwritten sentiments about the way things turned out; her gratitude for taking her in when you did, her dissappointment in your actions, a detailed account of your failings, her regrets that things had to end this way, and finally, her well wishes for your future endeavours.`; + r += `<br>At midnight, a great mechanized convoy, the biggest you've seen in a long while, streams out of your Arcology. Troop Carriers, Aircraft, Heavy Trucks, and other war machines of varying sizes pour out of the Firebase in tight formation. The Colonel is refusing your calls, and you know it would be ill advised to go out there yourself or to try to stop them with force. The many bandits and mercenary groups that the convoy will inevitably pass by will probably feel this way as well. You have no idea where they are going or how they will end up, but with their wealth and weaponry, you are not worried.`; + r += `<br>Upon your inspection of the abandoned firebase itself, most of the heavier installations have been dismantled and carried away, but about 55,000# of miscellaneous supplies and 73 menials have been left behind, presumably because the convoy had no space for them. On The Colonel's old pavilion, you see a white gift card standing upright.`; + r += `<br>When you climb the crates to take it and read it, you see The Colonel's handwritten sentiments about the way things turned out; her gratitude for taking her in when you did, her disappointment in your actions, a detailed account of your failings, her regrets that things had to end this way, and finally, her well wishes for your future endeavors.`; r += `<br>Disgusted, you pocket the gift card and leave your employees and menials to gather up the valuables here before stalking back to your Penthouse. The former Firebase is returned to being a warehouse facility.`; break; } diff --git a/src/SpecialForce/Report.tw b/src/SpecialForce/Report.tw index 44755b7a7bb35a4dde7256e9a114c12e76fe2a0e..3d48a0a15e744866c0d85364cc4a37d4db6207f9 100644 --- a/src/SpecialForce/Report.tw +++ b/src/SpecialForce/Report.tw @@ -131,7 +131,7 @@ <<if random(0,100) > _SurvivalChance>> <<set _Deaths = random(0,(($SF.Squad.Drugs*2)+4))>> <</if>> <<if _Deaths > 0>> <<set $SF.Squad.Troops -= _Deaths>> <</if>> - <</if>> + <</if>> <</silently>> <br><br>__Status and Activities of $SF.Lower __: <br>This week, $SF.Lower focused their <<print commaNum($SF.Squad.Troops)>> troops on @@ -186,13 +186,13 @@ $SF.Caps managed to recruit <<print Math.round(_FNGs/2)>> new soldiers this week | <<link "No Accountability">> <<set $SF.Regs = "none">> <<replace "#accountability">> ''No Accountability'' <</replace>> <</link>> <<if $SF.MercCon.View > 0 && $SF.MercCon.CanAttend === 1>> <br>''TradeShow'': - <<set $SF.MercCon.Income = 0,$SF.MercCon.Helots = 0>> + <<set $SF.MercCon.Income = 0,$SF.V.SF.MercCon.Menials = 0>> <<set _TradeShowAttendes = 200,_MenialSlavesPerAttendee = 5>> <<set _MenialSlaves = Math.ceil(random(1,((_TradeShowAttendes*_MenialSlavesPerAttendee)/10)))>> <<set _TSProfit = Math.ceil(500000*(1+($SF.Size/1000))*(1+($arcologies[0].prosperity/1000))*_Env)>> - During a break, The Colonel managed to sell some generic schematics to the _TradeShowAttendes attendes, some decided to also give her some menial slaves as a bonus.<br> + During a break, The Colonel managed to sell some generic schematics to the _TradeShowAttendes attendees, some decided to also give her some menial slaves as a bonus.<br> <<set $menials += _MenialSlaves>> - <<set $SF.MercCon.Helots += _MenialSlaves,$SF.MercCon.TotalHelots += _MenialSlaves>> + <<set $SF.V.SF.MercCon.Menials += _MenialSlaves,$SF.V.SF.MercCon.TotalMenials += _MenialSlaves>> <<set $cash += _TSProfit,$SF.MercCon.Income += _TSProfit>> <<set $SF.MercCon.Revenue += _TSProfit>> <<if $secExp > 0 && $mercenaries > 0>> <<set $SF.MercCon.Mercs = 0>> diff --git a/src/SpecialForce/TrickShotNight.tw b/src/SpecialForce/TrickShotNight.tw index 44d6c804acab8764c49fadf1ccdd65eab3009e1d..7867dc1ec615986de28ec5ffb70f46fed583d39a 100644 --- a/src/SpecialForce/TrickShotNight.tw +++ b/src/SpecialForce/TrickShotNight.tw @@ -6,7 +6,7 @@ Despite your direct elevator, interaction with the majority of your security for <br><br>On a particularly lackadaisical evening, you find yourself alerted to a message alert by $assistantName. <<if $assistant > 0>> - "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, a message from $SF.Lower." She pauses before continuing. "It seems they're asking if you'd like to join their trick shot night." + "<<= properMaster()>>, a message from $SF.Lower." She pauses before continuing. "It seems they're asking if you'd like to join their trick shot night." <<else>> It informs you that $SF.Lower have sent a message asking you to join them at their trick shot night. <</if>> diff --git a/src/SpecialForce/Upgrades.tw b/src/SpecialForce/Upgrades.tw index 82cc6a4307ae51847026dabcad51f8b43d6649db..5a8258e57ecee9cd3d751ab7e41387baff1634a4 100644 --- a/src/SpecialForce/Upgrades.tw +++ b/src/SpecialForce/Upgrades.tw @@ -27,7 +27,7 @@ <<else>>//More upgrades are required to unlock the next tier.// - <</if>> <span style="float:right;"> <<print progress($SF.Squad.Firebase)>> </span><br> + <</if>> <span style="float:right;"> <<print progress($SF.Squad.Firebase)>> </span><br> <<if $SF.Squad.Armoury < 5||_T1 && $SF.Squad.Armoury < _AU>> @@ -74,7 +74,7 @@ <<if $cash >= _cDrones>> - <<link "Upgrade Drone Bay">><<set $SF.Upgrade = 1, $SF.Squad.Drones++, $cash -= _cDrones>> <<goto "Firebase">> <</link>> + <<link "Upgrade Drone Bay">><<set $SF.Upgrade = 1, $SF.Squad.Drones++, $cash -= _cDrones>> <<goto "Firebase">> <</link>> <<else>>//Cannot afford to upgrade the Drone Bay.//<</if>> @@ -82,7 +82,7 @@ <<elseif $SF.Squad.Drones == _DU>>//The Drone Bay has been fully upgraded.//<span style="float:right;"> <<print progress($SF.Squad.Drones)>> </span> - <<elseif _T1 && $SF.Squad.Drones == 5>>//More upgrades are required to unlock the next tier.//<span style="float:right;"> <<print progress($SF.Squad.Drones)>> </span><</if>> + <<elseif _T1 && $SF.Squad.Drones == 5>>//More upgrades are required to unlock the next tier.//<span style="float:right;"> <<print progress($SF.Squad.Drones)>> </span><</if>> <<if $SF.Squad.Firebase >= 1 && $terrain !== "oceanic">><br>''Garage'' diff --git a/src/SpecialForce/WeeklyChoices.tw b/src/SpecialForce/WeeklyChoices.tw index 92372fd2fd2069ff41919439f702acc868cc5185..d8da0a6f0c78c9d558e16852435461dbfc8c639e 100644 --- a/src/SpecialForce/WeeklyChoices.tw +++ b/src/SpecialForce/WeeklyChoices.tw @@ -130,7 +130,7 @@ <br> <<link "Learn">> <<replace "#result1">> <<set $SF.Colonel.Talk = 1,$SF.Colonel.Status += 1>> - <br><br>"Sure boss, I can use a break from all of this," she laughs. The Colonel tells a story about one time when she + <br><br>"Sure boss, I can use a break from all of this," she laughs. The Colonel tells a story about one time when she <<switch random(1,6)>> <<case 1>> used field medicine to save another merc's life, teaching you some medical procedures in the process. diff --git a/src/art/vector/Anal_Accessories.tw b/src/art/vector/Anal_Accessories.tw index 1e29ff3fabb6f9b7a51b940643b7ebadb3f540b3..ee7d4de02a13aee9e07535204421a3d546be976b 100644 --- a/src/art/vector/Anal_Accessories.tw +++ b/src/art/vector/Anal_Accessories.tw @@ -13,7 +13,6 @@ <</if>> <<if _artSlave.buttplugAttachment == "tail">> <<include Art_Vector_Plug_Tail>> -<</if>> -<<if _artSlave.buttplugAttachment == "cat tail">> +<<elseif _artSlave.buttplugAttachment == "cat tail">> <<include Art_Vector_Cat_Tail>> <</if>> diff --git a/src/art/vector/Feet.tw b/src/art/vector/Feet.tw index 3823eb72afcd883804b7d49ebdc5db4346c1c45c..0b83887bb97e9c8497f8ba7b9a07855cbd777ab8 100644 --- a/src/art/vector/Feet.tw +++ b/src/art/vector/Feet.tw @@ -35,9 +35,7 @@ <<default>> <<include Art_Vector_Feet_Normal>> <</switch>> -<</if>> - -<<if _artSlave.amp == -1 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> +<<elseif _artSlave.amp == -1 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> <<switch _artSlave.shoes>> <<case "heels">> <<include Art_Vector_Shoes_Heel>> @@ -68,9 +66,7 @@ <<default>> <<include Art_Vector_Feet_ProstheticBasic>> <</switch>> -<</if>> - -<<if _artSlave.amp == -2 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> +<<elseif _artSlave.amp == -2 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> <<switch _artSlave.shoes>> <<case "heels">> <<include Art_Vector_Shoes_Heel>> @@ -101,9 +97,7 @@ <<default>> <<include Art_Vector_Feet_ProstheticSexy>> <</switch>> -<</if>> - -<<if _artSlave.amp == -3 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> +<<elseif _artSlave.amp == -3 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> <<switch _artSlave.shoes>> <<case "heels">> <<include Art_Vector_Shoes_Heel>> @@ -134,9 +128,7 @@ <<default>> <<include Art_Vector_Feet_ProstheticBeauty>> <</switch>> -<</if>> - -<<if _artSlave.amp == -4 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> +<<elseif _artSlave.amp == -4 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> <<switch _artSlave.shoes>> <<case "heels">> <<include Art_Vector_Shoes_Heel>> @@ -167,9 +159,7 @@ <<default>> <<include Art_Vector_Feet_ProstheticCombat>> <</switch>> -<</if>> - -<<if _artSlave.amp == -5 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> +<<elseif _artSlave.amp == -5 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>> <<switch _artSlave.shoes>> <<case "heels">> <<include Art_Vector_Shoes_Heel>> @@ -244,9 +234,7 @@ <<include Art_Vector_Shoes_Stockings_SS_Thick>> <</if>> <</if>> -<</if>> - -<<if _artSlave.legAccessory == "long stockings" && _artSlave.amp != 1>> +<<elseif _artSlave.legAccessory == "long stockings" && _artSlave.amp != 1>> <<if _artSlave.shoes == "heels">> <<if _legSize == "Narrow">> <<include Art_Vector_Shoes_Heel_LL_Narrow>> diff --git a/src/art/vector/Head.tw b/src/art/vector/Head.tw index bbdb8dfea9a9ebe225cd88896c8eb08265d0da48..59bd83b829d667284560af6d63bdc10e80120ca7 100644 --- a/src/art/vector/Head.tw +++ b/src/art/vector/Head.tw @@ -1111,17 +1111,13 @@ <<if _artSlave.fuckdoll == 0 >> /* fuckdolls cannot be decorated */ <<if _artSlave.collar == "dildo gag">> <<include Art_Vector_Dildo_Gag>> - <</if>> - <<if _artSlave.collar == "ball gag">> + <<elseif _artSlave.collar == "ball gag">> <<include Art_Vector_Ball_Gag>> - <</if>> - <<if _artSlave.collar == "bit gag">> + <<elseif _artSlave.collar == "bit gag">> <<include Art_Vector_Bit_Gag>> - <</if>> - <<if _artSlave.collar == "massive dildo gag">> + <<elseif _artSlave.collar == "massive dildo gag">> <<include Art_Vector_Massive_Dildo_Gag>> - <</if>> - <<if _artSlave.collar == "porcelain mask">> + <<elseif _artSlave.collar == "porcelain mask">> <<include Art_Vector_Porcelain_Mask>> <</if>> <<if _artSlave.eyewear == "corrective glasses" || _artSlave.eyewear == "glasses" || _artSlave.eyewear == "blurring glasses">> @@ -1131,77 +1127,53 @@ /* head clothing */ <<if _artSlave.clothes == "a slutty klan robe">> <<include Art_Vector_Head_Outfit_SluttyKlanRobe>> - <</if>> - <<if _artSlave.clothes == "a klan robe">> + <<elseif _artSlave.clothes == "a klan robe">> <<include Art_Vector_Head_Outfit_KlanRobe>> - <</if>> - <<if _artSlave.clothes == "a burkini">> + <<elseif _artSlave.clothes == "a burkini">> <<include Art_Vector_Head_Outfit_Burkini>> - <</if>> - <<if _artSlave.clothes == "a hijab and blouse">> + <<elseif _artSlave.clothes == "a hijab and blouse">> <<include Art_Vector_Head_Outfit_HijabAndBlouse>> - <</if>> - <<if _artSlave.clothes == "a burqa">> + <<elseif _artSlave.clothes == "a burqa">> <<include Art_Vector_Head_Outfit_Burqa>> - <</if>> - <<if _artSlave.clothes == "a niqab and abaya">> + <<elseif _artSlave.clothes == "a niqab and abaya">> <<include Art_Vector_Head_Outfit_NiqabAndAbaya>> - <</if>> - <<if _artSlave.clothes == "a hijab and abaya">> + <<elseif _artSlave.clothes == "a hijab and abaya">> <<include Art_Vector_Head_Outfit_HijabAndAbaya>> - <</if>> - <<if _artSlave.clothes == "a succubus outfit">> + <<elseif _artSlave.clothes == "a succubus outfit">> <<include Art_Vector_Head_Outfit_Succubus>> - <</if>> - <<if _artSlave.clothes == "a bunny outfit">> + <<elseif _artSlave.clothes == "a bunny outfit">> <<include Art_Vector_Head_Outfit_Bunny>> - <</if>> - <<if _artSlave.clothes == "a chattel habit">> + <<elseif _artSlave.clothes == "a chattel habit">> <<include Art_Vector_Head_Outfit_ChattelHabit>> - <</if>> - <<if _artSlave.clothes == "a fallen nuns habit">> + <<elseif _artSlave.clothes == "a fallen nuns habit">> <<include Art_Vector_Head_Outfit_FallenNunsHabit>> - <</if>> - <<if _artSlave.clothes == "harem gauze">> + <<elseif _artSlave.clothes == "harem gauze">> <<include Art_Vector_Head_Outfit_HaremGauze>> - <</if>> - <<if _artSlave.clothes == "a penitent nuns habit">> + <<elseif _artSlave.clothes == "a penitent nuns habit">> <<include Art_Vector_Head_Outfit_PenitentNunsHabit>> - <</if>> - <<if _artSlave.clothes == "Western clothing">> + <<elseif _artSlave.clothes == "Western clothing">> <<include Art_Vector_Head_Outfit_Western>> - <</if>> - <<if _artSlave.clothes == "a military uniform">> + <<elseif _artSlave.clothes == "a military uniform">> <<include Art_Vector_Head_Outfit_MilitaryUniform>> - <</if>> - <<if _artSlave.clothes == "a cybersuit">> + <<elseif _artSlave.clothes == "a cybersuit">> <<include Art_Vector_Head_Outfit_Cybersuit>> - <</if>> - <<if _artSlave.clothes == "a schutzstaffel uniform">> + <<elseif _artSlave.clothes == "a schutzstaffel uniform">> <<include Art_Vector_Head_Outfit_SchutzstaffelUniform>> - <</if>> - <<if _artSlave.clothes == "a slutty schutzstaffel uniform">> + <<elseif _artSlave.clothes == "a slutty schutzstaffel uniform">> <<include Art_Vector_Head_Outfit_SchutzstaffelUniform>> - <</if>> - <<if _artSlave.clothes == "a red army uniform">> + <<elseif _artSlave.clothes == "a red army uniform">> <<include Art_Vector_Head_Outfit_RedArmyUniform>> - <</if>> - <<if _artSlave.clothes == "battlearmor">> + <<elseif _artSlave.clothes == "battlearmor">> <<include Art_Vector_Head_Outfit_Battlearmor>> - <</if>> - <<if _artSlave.clothes == "a biyelgee costume">> + <<elseif _artSlave.clothes == "a biyelgee costume">> <<include Art_Vector_Head_Outfit_BiyelgeeCostume>> - <</if>> - <<if _artSlave.clothes == "a mounty outfit">> + <<elseif _artSlave.clothes == "a mounty outfit">> <<include Art_Vector_Head_Outfit_Mounty>> - <</if>> - <<if _artSlave.clothes == "a slutty nurse outfit">> + <<elseif _artSlave.clothes == "a slutty nurse outfit">> <<include Art_Vector_Head_Outfit_SluttyNurse>> - <</if>> - <<if _artSlave.clothes == "a police uniform">> + <<elseif _artSlave.clothes == "a police uniform">> <<include Art_Vector_Head_Outfit_PoliceUniform>> - <</if>> - <<if _artSlave.clothes == "kitty lingerie">> + <<elseif _artSlave.clothes == "kitty lingerie">> <<include Art_Vector_Cat_Ear_Fore>> <<include Art_Vector_Cat_Ear_Back>> <</if>> diff --git a/src/cheats/mod_EditSlaveCheat.tw b/src/cheats/mod_EditSlaveCheat.tw index 30e925a0cbf6c4f5c08c6aa6dd75f8ad147fcd88..bb9a18a01e782b80889f8e07caac2dac2c1f6f76 100644 --- a/src/cheats/mod_EditSlaveCheat.tw +++ b/src/cheats/mod_EditSlaveCheat.tw @@ -79,13 +79,13 @@ ''Fuckdoll: (0-100)'' <<textbox "$tempSlave.fuckdoll" $tempSlave.fuckdoll>> <br> -<<radiobutton "$tempSlave.fuckdoll" 0>> Not a fuckdoll -<<radiobutton "$tempSlave.fuckdoll" 15>> Barely a fuckdoll -<<radiobutton "$tempSlave.fuckdoll" 25>> Slight fuckdoll -<<radiobutton "$tempSlave.fuckdoll" 45>> Basic fuckdoll -<<radiobutton "$tempSlave.fuckdoll" 65>> Intermediate fuckdoll -<<radiobutton "$tempSlave.fuckdoll" 85>> Advanced fuckdoll -<<radiobutton "$tempSlave.fuckdoll" 100>> Total fuckdoll +<<radiobutton "$tempSlave.fuckdoll" 0>> Not a Fuckdoll +<<radiobutton "$tempSlave.fuckdoll" 15>> Barely a Fuckdoll +<<radiobutton "$tempSlave.fuckdoll" 25>> Slight Fuckdoll +<<radiobutton "$tempSlave.fuckdoll" 45>> Basic Fuckdoll +<<radiobutton "$tempSlave.fuckdoll" 65>> Intermediate Fuckdoll +<<radiobutton "$tempSlave.fuckdoll" 85>> Advanced Fuckdoll +<<radiobutton "$tempSlave.fuckdoll" 100>> Total Fuckdoll <br> diff --git a/src/cheats/mod_editSlaveCheatNew.tw b/src/cheats/mod_editSlaveCheatNew.tw index aafbc4317f31a8edb663c6d2a83006efdc1ce454..3fd18ba7a496cfb19318540c7735f8b28d236b74 100644 --- a/src/cheats/mod_editSlaveCheatNew.tw +++ b/src/cheats/mod_editSlaveCheatNew.tw @@ -2064,22 +2064,22 @@ <br><br> ''Fuckdoll: (0-100)'' - <<if $tempSlave.fuckdoll < 15>>@@.yellow;Not a fuckdoll@@ - <<elseif $tempSlave.fuckdoll < 25>>@@.yellow;Barely a fuckdoll@@ - <<elseif $tempSlave.fuckdoll < 45>>@@.yellow;Slight fuckdoll@@ - <<elseif $tempSlave.fuckdoll < 65>>@@.yellow;Basic fuckdoll@@ - <<elseif $tempSlave.fuckdoll < 85>>@@.yellow;Intermediate fuckdoll@@ - <<elseif $tempSlave.fuckdoll < 100>>@@.yellow;Advanced fuckdoll@@ - <<else>>@@.yellow;Total fuckdoll@@<</if>> + <<if $tempSlave.fuckdoll < 15>>@@.yellow;Not a Fuckdoll@@ + <<elseif $tempSlave.fuckdoll < 25>>@@.yellow;Barely a Fuckdoll@@ + <<elseif $tempSlave.fuckdoll < 45>>@@.yellow;Slight Fuckdoll@@ + <<elseif $tempSlave.fuckdoll < 65>>@@.yellow;Basic Fuckdoll@@ + <<elseif $tempSlave.fuckdoll < 85>>@@.yellow;Intermediate Fuckdoll@@ + <<elseif $tempSlave.fuckdoll < 100>>@@.yellow;Advanced Fuckdoll@@ + <<else>>@@.yellow;Total Fuckdoll@@<</if>> <<textbox "$tempSlave.fuckdoll" $tempSlave.fuckdoll>> <br> - <<radiobutton "$tempSlave.fuckdoll" 0>> Not a fuckdoll - <<radiobutton "$tempSlave.fuckdoll" 15>> Barely a fuckdoll - <<radiobutton "$tempSlave.fuckdoll" 25>> Slight fuckdoll - <<radiobutton "$tempSlave.fuckdoll" 45>> Basic fuckdoll - <<radiobutton "$tempSlave.fuckdoll" 65>> Intermediate fuckdoll - <<radiobutton "$tempSlave.fuckdoll" 85>> Advanced fuckdoll - <<radiobutton "$tempSlave.fuckdoll" 100>> Total fuckdoll + <<radiobutton "$tempSlave.fuckdoll" 0>> Not a Fuckdoll + <<radiobutton "$tempSlave.fuckdoll" 15>> Barely a Fuckdoll + <<radiobutton "$tempSlave.fuckdoll" 25>> Slight Fuckdoll + <<radiobutton "$tempSlave.fuckdoll" 45>> Basic Fuckdoll + <<radiobutton "$tempSlave.fuckdoll" 65>> Intermediate Fuckdoll + <<radiobutton "$tempSlave.fuckdoll" 85>> Advanced Fuckdoll + <<radiobutton "$tempSlave.fuckdoll" 100>> Total Fuckdoll <br><br> ''Muscles (-100 to 100):'' diff --git a/src/endWeek/saChoosesOwnClothes.tw b/src/endWeek/saChoosesOwnClothes.tw index 25218e01f8d4f039faa0c1ac475a4936ff6d6acf..40e99e6cf6deb66e9122c5783ff13e2b8bd6ad47 100644 --- a/src/endWeek/saChoosesOwnClothes.tw +++ b/src/endWeek/saChoosesOwnClothes.tw @@ -599,7 +599,7 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("body oil")) { wardrobeFS.push({text: `and coats ${his} pure body in oil to make it stand out.`, clothes: "body oil"}); } - } else if(V.arcologies[0].FSTransormationFetishest > 0) { + } else if(V.arcologies[0].FSTransformationFetishist > 0) { wardrobeFS.push({text: `and decides squeezing into a latex suit will only complement ${his} unnatural appearance.`, clothes: "restrictive latex"}); wardrobeFS.push({text: `and decides to go nude, ensuring everyone sees ${his} assets.`, clothes: "no clothing"}); if(isItemAccessible("body oil")) { diff --git a/src/endWeek/saServant.tw b/src/endWeek/saServant.tw index dab7851af7354f7f175a79ca68fe02ae73a0b645..8750536718ab71a028a528c25df09e61f5d1e9eb 100644 --- a/src/endWeek/saServant.tw +++ b/src/endWeek/saServant.tw @@ -67,7 +67,7 @@ window.saServant = function saServant(slave) { if (slave.relationship == -2) { t += ` ${He} does ${his} best to perfect your domesticity due to ${his} emotional bond to you.`; } else if (slave.relationship == -3 && slave.devotion > 50) { - t += ` ${He} does ${his}very best to be the perfect housewife, making ${him} an outstanding servant.`; + t += ` ${He} does ${his} very best to be the perfect housewife, making ${him} an outstanding servant.`; } if (setup.servantCareers.includes(slave.career)) { diff --git a/src/events/intro/initNationalities.tw b/src/events/intro/initNationalities.tw index 225e2d471f29b597b259f11a70d641bdf10dd9f4..dc95f0183bf06e2aef673aadd3c027ebb08333ef 100644 --- a/src/events/intro/initNationalities.tw +++ b/src/events/intro/initNationalities.tw @@ -7,6 +7,8 @@ /*PC qualities application*/ +<<run generatePlayerPronouns($PC)>> + <<set $upgradeMultiplierArcology = 1>> <<set $upgradeMultiplierMedicine = 1>> diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index 29a1895c7537c72cf619bab950a5c1d25add1e0b..49928f75fa135973ead5417dcd5763df9267da6a 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -561,9 +561,9 @@ __''Player Character''__ <br>You are a $PCCreationSex. <br>Change to <<if $PCCreationSex != "masculine ''Master''">> - [[masculine Master|Intro Summary][$PC.title = 1, $PC.genes = "XY", $PC.pronoun = "he", $PC.possessive = "his", $PC.object = "him", $PCCreationSex = "masculine ''Master''"]] + [[masculine Master|Intro Summary][$PC.title = 1, $PC.genes = "XY", $PCCreationSex = "masculine ''Master''"]] <<elseif $PCCreationSex != "feminine ''Mistress''">> - [[feminine Mistress|Intro Summary][$PC.title = 0, $PC.genes = "XX", $PC.pronoun = "her", $PC.possessive = "her", $PC.object = "her", $PCCreationSex = "feminine ''Mistress''"]] + [[feminine Mistress|Intro Summary][$PC.title = 0, $PC.genes = "XX", $PCCreationSex = "feminine ''Mistress''"]] <</if>> <br>Everyone calls you ''<<= PlayerName()>>.'' @@ -805,19 +805,19 @@ __''Player Character''__ <br> <<switch $PC.boobsBonus>> <<case -3>> - <<set _PCCreationBoobSize = "small B cups">> + <<set _PCCreationBoobSize = "small B-cups">> <<case -2>> - <<set _PCCreationBoobSize = "unnoticeable C cups">> + <<set _PCCreationBoobSize = "unnoticeable C-cups">> <<case -1>> - <<set _PCCreationBoobSize = "unremarkable D cups">> + <<set _PCCreationBoobSize = "unremarkable D-cups">> <<case 1>> - <<set _PCCreationBoobSize = "noticeable F cups">> + <<set _PCCreationBoobSize = "noticeable F-cups">> <<case 2>> - <<set _PCCreationBoobSize = "huge G cups">> + <<set _PCCreationBoobSize = "huge G-cups">> <<case 3>> - <<set _PCCreationBoobSize = "massive H cups">> + <<set _PCCreationBoobSize = "massive H-cups">> <<default>> - <<set _PCCreationBoobSize = "average DD cups">> + <<set _PCCreationBoobSize = "average DD-cups">> <</switch>> <<if $PC.boobsImplant>> diff --git a/src/events/intro/pcBodyIntro.tw b/src/events/intro/pcBodyIntro.tw index 95f68f16afc88757bfedb08c5086f5a83342183e..f42f251a3081a160f1f79d4d24c0ae16f5c9612f 100644 --- a/src/events/intro/pcBodyIntro.tw +++ b/src/events/intro/pcBodyIntro.tw @@ -7,10 +7,10 @@ Most slaveowners in the Free Cities are male. The preexisting power structures o <<if $PC.title > 0>> You are a <<if $PC.genes == "XX">>wo<</if>>man with a masculine figure and will be referred to as ''Master.'' - [[Switch to a feminine appearance|PC Body Intro][$PC.title = 0, $PC.pronoun = "her", $PC.possessive = "her", $PC.object = "her"]] + [[Switch to a feminine appearance|PC Body Intro][$PC.title = 0]] <<else>> You are a <<if $PC.genes == "XX">>wo<</if>>man with a feminine figure and will be referred to as ''Mistress.'' - [[Switch to a masculine appearance|PC Body Intro][$PC.title = 1, $PC.pronoun = "he", $PC.possessive = "his", $PC.object = "him"]] + [[Switch to a masculine appearance|PC Body Intro][$PC.title = 1]] <</if>> <br> //This option will affect scenes. Femininity may increase difficulty in the future, but for now only your chest and junk matter.// diff --git a/src/facilities/brothel/brothelAssignmentScene.tw b/src/facilities/brothel/brothelAssignmentScene.tw index 706447e241025dfd09c0e3a27523c7623cf60cc5..2255bd8a0ef72c8fa359500912b4473551f70cb2 100644 --- a/src/facilities/brothel/brothelAssignmentScene.tw +++ b/src/facilities/brothel/brothelAssignmentScene.tw @@ -278,17 +278,17 @@ You tell $him $he's to report to <<if $Madam != 0>>$Madam.slaveName immediately, <<case "hates penetration">> $He slowly gestures that he understands that customers will expect to fuck $him and <<if $activeSlave.amp == 1>>shifts uncomfortably, unconsciously trying to shield $his rear as best $he can manage without limbs.<<elseif $activeSlave.vagina > 0>>unconsciously lets $his hands fall to $his crotch, but catches $himself and doesn't quite shield $his pussy.<<else>>unconsciously reaches around behind $himself, not quite shielding $his anus with $his hands.<</if>> $His lower lip quivers, and $he does $his best not to cry in front of you. <<case "repressed">> - $He shakely gestures that $he'll be a sinner, but if that's what you want, $he'll do it. $He starts to cry quietly. + $He shakily gestures that $he'll be a sinner, but if that's what you want, $he'll do it. $He starts to cry quietly. <<case "idealistic">> - $He shakely gestures that $he'll do $his best to please any men that use $him. $He starts to cry quietly. + $He shakily gestures that $he'll do $his best to please any men that use $him. $He starts to cry quietly. <<case "shamefast">> - $He shakely gestures that $he'll do $his best to use $his naked body to attract men and entice passersby. $He starts to cry quietly. + $He shakily gestures that $he'll do $his best to use $his naked body to attract men and entice passersby. $He starts to cry quietly. <<case "apathetic">> - $He shakely gestures that $he'll do $his best to take cock. $He starts to cry quietly. + $He shakily gestures that $he'll do $his best to take cock. $He starts to cry quietly. <<case "crude">> $He gestures that $his body is going to become so foul after a day's worth of fucks. $He pauses for a moment, doubtful over whether $he should have said that or not. <<case "judgemental">> - $He gestures $his disapointment that only the most pathetic of losers will be fucking $him now. $He pauses for a moment, doubtful over whether $he should have said that or not. + $He gestures $his disappointment that only the most pathetic of losers will be fucking $him now. $He pauses for a moment, doubtful over whether $he should have said that or not. <</switch>> <<else>> $He puts on a brave face and gestures that $he'll do $his best. As you send $him off, you catch sight of $him trying to reassure $himself. diff --git a/src/facilities/farmyard/farmyardReport.tw b/src/facilities/farmyard/farmyardReport.tw index 5fc1ba6cb0f1463f34142ee959aa48a9a92f399e..b8ed59817a93429c33b7999764a0d8aec3108cb7 100644 --- a/src/facilities/farmyard/farmyardReport.tw +++ b/src/facilities/farmyard/farmyardReport.tw @@ -330,8 +330,6 @@ <<if $dairyPregSetting > 0>> <<set $reservedChildren = FetusGlobalReserveCount("incubator")>> <<set $reservedChildrenNursery = FetusGlobalReserveCount("nursery")>> - <<set $slaves[$i].reservedChildren = 0>> - <<set $slaves[$i].reservedChildrenNursery = 0>> <</if>> /* General End of Week effects */ diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw index a6c85f2defb94d8f65ebd3afe6ee84b0e54c0157..47f74cedf8a90b4c158178dfd9dddf4fca82ddf4 100644 --- a/src/facilities/nursery/childInteract.tw +++ b/src/facilities/nursery/childInteract.tw @@ -870,7 +870,7 @@ Hormones: <strong><span id="hormones"> <</if>> <</if>> <</for>> -/* TODO: childrens' living standards will be based on the Nursery and its FS decor */ +/* TODO: children's living standards will be based on the Nursery and its FS décor */ Living standard: ''<span id="livingRules">$activeChild.livingRules</span>.'' <<if setup.facilityCareers.includes($activeChild.assignment)>> //$His living conditions are managed by $his assignment.// diff --git a/src/facilities/nursery/childSummary.tw b/src/facilities/nursery/childSummary.tw index 2f49b4ff3b3d5bade7538209685b8e66beddb617..b1e40a02f7e0105a4526dd154cb12bf006f0f819 100644 --- a/src/facilities/nursery/childSummary.tw +++ b/src/facilities/nursery/childSummary.tw @@ -1,20 +1,20 @@ :: Child Summary [nobr] <<set setup.passagePreFilters = setup.passagePreFilters || { - "Main": c => (c.assignmentVisible == 1), - "Nursery" c => (c.assignmentVisible == 1 && c.fuckdoll == 0), - "Personal Attention Select": c => (c.assignmentVisible == 1 && c.fuckdoll <= 0) && ( - ($Flag == 0 && c.assignment != "be a child") - || ($Flag == 1 && c.assignment == "be a child") - ), - "New Game Plus": c => (($Flag == 0 && c.assignment != "be imported") || ($Flag != 0 && c.assignment == "be imported")), - "Rules Slave Select": c => (($Flag == 0 && !ruleSlaveSelected(s, $currentRule)) || ($Flag != 0 && ruleSlaveSelected(s, $currentRule))), - "Rules Slave Exclude": c => (($Flag == 0 && !ruleSlaveExcluded(s, $currentRule)) || ($Flag != 0 && ruleSlaveExcluded(s, $currentRule))), + "Main": c => (c.assignmentVisible == 1), + "Nursery" c => (c.assignmentVisible == 1 && c.fuckdoll == 0), + "Personal Attention Select": c => (c.assignmentVisible == 1 && c.fuckdoll <= 0) && ( + ($Flag == 0 && c.assignment != "be a child") + || ($Flag == 1 && c.assignment == "be a child") + ), + "New Game Plus": c => (($Flag == 0 && c.assignment != "be imported") || ($Flag != 0 && c.assignment == "be imported")), + "Rules Slave Select": c => (($Flag == 0 && !ruleSlaveSelected(s, $currentRule)) || ($Flag != 0 && ruleSlaveSelected(s, $currentRule))), + "Rules Slave Exclude": c => (($Flag == 0 && !ruleSlaveExcluded(s, $currentRule)) || ($Flag != 0 && ruleSlaveExcluded(s, $currentRule))), }>> <<set _Pass = passage(), _CL = $cribs.length, $assignTo = _Pass, _indexed = 0, - _passagePreFilter = (c => c.assignment != "be your agent" && c.assignment != "live with your agent" && (!setup.passagePreFilters.hasOwnProperty(_Pass) || setup.passagePreFilters[_Pass](c))), - _filteredSlaveIdxs = $cribs.map(function(slave, idx) { return _passagePreFilter(slave) ? idx : null; }).filter(function(idx) { return idx !== null; }), - _indexSlavesIdxs = $cribs.map(function(slave, idx) { return _passagePreFilter(slave) ? idx : null; }).filter(function(idx) { return idx !== null; })>> + _passagePreFilter = (c => c.assignment != "be your agent" && c.assignment != "live with your agent" && (!setup.passagePreFilters.hasOwnProperty(_Pass) || setup.passagePreFilters[_Pass](c))), + _filteredSlaveIdxs = $cribs.map(function(slave, idx) { return _passagePreFilter(slave) ? idx : null; }).filter(function(idx) { return idx !== null; }), + _indexSlavesIdxs = $cribs.map(function(slave, idx) { return _passagePreFilter(slave) ? idx : null; }).filter(function(idx) { return idx !== null; })>> <<for !_.isUndefined(_csi = _filteredSlaveIdxs.shift())>> <<set _Child = $cribs[_csi]>> <<set _childName = SlaveFullName(_Child);>> @@ -22,137 +22,137 @@ <<capture _csi>> <<if $useSlaveListInPageJSNavigation == 1>> - <<set _Count = _indexSlavesIdxs.length>> - /* Useful for finding weird combinations -- usages of this passage that don't yet generate the quick index. - * <<print 'pass/count/indexed/flag::[' + _Pass + '/' + _Count + '/' + _indexed + '/' + $Flag + ']'>> - */ - <<if ((_Count > 1) && (_indexed == 0) && (((_Pass == 'Main') && (ndef $Flag) && (($useSlaveSummaryTabs == 0) || ($childAssignmentTab == "all"))) || ($Flag == 1)))>> - <<set _indexed = 1, _counter = 0, _buttons = [], _offset = -50>> - <<if (/Select/i.test(_Pass))>> - <<set _offset = -25>> - <</if>> - <br /> - <<set _tableCount = _tableCount || 0>> - <<set _tableCount++>> - /* - * we want <button data-quick-index="<<= _tableCount>>"> ... - */ - <<set _buttonAttributes = { 'data-quick-index': _tableCount }>> - <<htag _buttonAttributes 'button'>>Quick Index<</htag>> - /* - * we want <div id="list_index3" class=" hidden">... - */ - <<set _divAttributes = { id: 'list_index' + _tableCount, class: 'hidden'}>> - <<htag _divAttributes>> - <<for !_.isUndefined(_csii = _indexSlavesIdxs.shift())>> - <<set _IndexSlave = $cribs[_csii]>> - <<set _indexSlaveName = SlaveFullName(_IndexSlave);>> - <<set _devotionClass = getSlaveDevotionClass(_IndexSlave);>> - <<set _trustClass = getSlaveTrustClass(_IndexSlave);>> - <<set _buttons.push({'data-name': _indexSlaveName, 'data-scroll-to': '#slave-' + _IndexSlave.ID, 'data-scroll-offset': _offset, 'data-devotion': _IndexSlave.devotion, 'data-trust': _IndexSlave.trust, class: _devotionClass + ' ' + _trustClass });>> - <</for>> - <<if !_.isUndefined(_buttons[0])>> - <<set $sortQuickList = $sortQuickList || 'Devotion'>> - //Sorting:// ''<span id="qlSort">$sortQuickList</span>.'' - <<link "Sort by Devotion">> - <<set $sortQuickList = 'Devotion'>> - <<replace "#qlSort">>$sortQuickList<</replace>> - <<script>> - $('#qlWrapper').removeClass('trust').addClass('devotion'); - sortButtonsByDevotion(); - <</script>> - <</link>> | - <<link "Sort by Trust">> - <<set $sortQuickList = 'Trust'>> - <<replace "#qlSort">>$sortQuickList<</replace>> - <<script>> - $('#qlWrapper').removeClass('devotion').addClass('trust'); - sortButtonsByTrust(); - <</script>> - <</link>> - <br/> - <div id="qlWrapper" class="quicklist devotion"> - <<for !_.isUndefined(_buttons[0])>> - <<set _button = _buttons.shift()>> - <<if !_.isUndefined(_button)>> - <<set _buttonSlaveName = _button['data-name'];>> - <<htag _button 'button'>>_buttonSlaveName<</htag>> - <</if>> - <</for>> - </div> - <script> - $("[data-quick-index]").click(function () { - var $this = $(this), which = $this.attr('data-quick-index'); - var $quick = $('div#list_index' + which); - $quick.toggleClass("hidden"); - }); - quickListBuildLinks(); - </script> - <</if>> - <</htag>> - <</if>> + <<set _Count = _indexSlavesIdxs.length>> + /* Useful for finding weird combinations -- usages of this passage that don't yet generate the quick index. + * <<print 'pass/count/indexed/flag::[' + _Pass + '/' + _Count + '/' + _indexed + '/' + $Flag + ']'>> + */ + <<if ((_Count > 1) && (_indexed == 0) && (((_Pass == 'Main') && (ndef $Flag) && (($useSlaveSummaryTabs == 0) || ($childAssignmentTab == "all"))) || ($Flag == 1)))>> + <<set _indexed = 1, _counter = 0, _buttons = [], _offset = -50>> + <<if (/Select/i.test(_Pass))>> + <<set _offset = -25>> + <</if>> + <br /> + <<set _tableCount = _tableCount || 0>> + <<set _tableCount++>> + /* + * we want <button data-quick-index="<<= _tableCount>>"> ... + */ + <<set _buttonAttributes = { 'data-quick-index': _tableCount }>> + <<htag _buttonAttributes 'button'>>Quick Index<</htag>> + /* + * we want <div id="list_index3" class=" hidden">... + */ + <<set _divAttributes = { id: 'list_index' + _tableCount, class: 'hidden'}>> + <<htag _divAttributes>> + <<for !_.isUndefined(_csii = _indexSlavesIdxs.shift())>> + <<set _IndexSlave = $cribs[_csii]>> + <<set _indexSlaveName = SlaveFullName(_IndexSlave);>> + <<set _devotionClass = getSlaveDevotionClass(_IndexSlave);>> + <<set _trustClass = getSlaveTrustClass(_IndexSlave);>> + <<set _buttons.push({'data-name': _indexSlaveName, 'data-scroll-to': '#slave-' + _IndexSlave.ID, 'data-scroll-offset': _offset, 'data-devotion': _IndexSlave.devotion, 'data-trust': _IndexSlave.trust, class: _devotionClass + ' ' + _trustClass });>> + <</for>> + <<if !_.isUndefined(_buttons[0])>> + <<set $sortQuickList = $sortQuickList || 'Devotion'>> + //Sorting:// ''<span id="qlSort">$sortQuickList</span>.'' + <<link "Sort by Devotion">> + <<set $sortQuickList = 'Devotion'>> + <<replace "#qlSort">>$sortQuickList<</replace>> + <<script>> + $('#qlWrapper').removeClass('trust').addClass('devotion'); + sortButtonsByDevotion(); + <</script>> + <</link>> | + <<link "Sort by Trust">> + <<set $sortQuickList = 'Trust'>> + <<replace "#qlSort">>$sortQuickList<</replace>> + <<script>> + $('#qlWrapper').removeClass('devotion').addClass('trust'); + sortButtonsByTrust(); + <</script>> + <</link>> + <br/> + <div id="qlWrapper" class="quicklist devotion"> + <<for !_.isUndefined(_buttons[0])>> + <<set _button = _buttons.shift()>> + <<if !_.isUndefined(_button)>> + <<set _buttonSlaveName = _button['data-name'];>> + <<htag _button 'button'>>_buttonSlaveName<</htag>> + <</if>> + <</for>> + </div> + <script> + $("[data-quick-index]").click(function () { + var $this = $(this), which = $this.attr('data-quick-index'); + var $quick = $('div#list_index' + which); + $quick.toggleClass("hidden"); + }); + quickListBuildLinks(); + </script> + <</if>> + <</htag>> + <</if>> <</if>> <<switch _Pass>> <<case "Main">> - <<if $useSlaveSummaryTabs == 1>> - <<if $childAssignmentTab == "overview">> - <</if>> - - <<if (_Child.choosesOwnClothes == 1) && (_Child.clothes == "choosing her own clothes")>> - <<set _oldDevotion = _Child.devotion>> - <<set _chosenClothes = saChoosesOwnClothes(_Child)>> - <<set $cribs[_csi].devotion = _oldDevotion, _Child = $cribs[_csi]>> /* restore devotion value so repeatedly changing clothes isn't an exploit */ - <</if>> - <br style="clear:both" /><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>><<if ($seeImages == 1) && ($seeSummaryImages == 1)>><div class="imageRef smlImg"><<SlaveArt _Child 1>></div><</if>> - <<if "be your Head Girl" == _Child.assignment>>''@@.lightcoral;HG@@'' - <<elseif "recruit girls" == _Child.assignment>>''@@.lightcoral;RC@@'' - <<elseif "guard you" == _Child.assignment>>''@@.lightcoral;BG@@'' - <</if>> - <<if Array.isArray($personalAttention) && $personalAttention.findIndex(function(s) { return s.ID == _Child.ID; }) != -1>>''@@.lightcoral;PA@@''<</if>> - [[_childName|Child Interact][$activeSlave = $cribs[_csi]]] /* lists their names */ + <<if $useSlaveSummaryTabs == 1>> + <<if $childAssignmentTab == "overview">> + <</if>> + + <<if (_Child.choosesOwnClothes == 1) && (_Child.clothes == "choosing her own clothes")>> + <<set _oldDevotion = _Child.devotion>> + <<set _chosenClothes = saChoosesOwnClothes(_Child)>> + <<set $cribs[_csi].devotion = _oldDevotion, _Child = $cribs[_csi]>> /* restore devotion value so repeatedly changing clothes isn't an exploit */ + <</if>> + <br style="clear:both" /><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>><<if ($seeImages == 1) && ($seeSummaryImages == 1)>><div class="imageRef smlImg"><<SlaveArt _Child 1>></div><</if>> + <<if "be your Head Girl" == _Child.assignment>>''@@.lightcoral;HG@@'' + <<elseif "recruit girls" == _Child.assignment>>''@@.lightcoral;RC@@'' + <<elseif "guard you" == _Child.assignment>>''@@.lightcoral;BG@@'' + <</if>> + <<if Array.isArray($personalAttention) && $personalAttention.findIndex(function(s) { return s.ID == _Child.ID; }) != -1>>''@@.lightcoral;PA@@''<</if>> + [[_childName|Child Interact][$activeSlave = $cribs[_csi]]] /* lists their names */ /* TODO: will the PC be able to give children PA? */ <<case "Personal Attention Select">> - <br style="clear:both" /><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>><<if ($seeImages == 1) && ($seeSummaryImages == 1)>><div class="imageRef smlImg"><<SlaveArt _Child 1>></div><</if>> - <<link _childName>> - <<if !Array.isArray($personalAttention)>> /* first PA target */ - <<set $personalAttention = [{ID: $cribs[_csi].ID, trainingRegimen: "undecided"}]>> - <<else>> - <<set _pai = $personalAttention.findIndex(function(s) { return s.ID == $cribs[_csi].ID; })>> - <<if _pai == -1>> /* not already a PA target; add */ - <<set $activeSlave = $cribs[_csi], $personalAttention.push({ID: $cribs[_csi].ID, trainingRegimen: "undecided"})>> - <<else>> /* already a PA target; remove */ - <<set $personalAttention.deleteAt(_pai)>> - <<if $personalAttention.length == 0>> - <<set $personalAttention = "sex">> - <</if>> - <</if>> - <</if>> - <<goto "Personal Attention Select">> - <</link>> + <br style="clear:both" /><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>><<if ($seeImages == 1) && ($seeSummaryImages == 1)>><div class="imageRef smlImg"><<SlaveArt _Child 1>></div><</if>> + <<link _childName>> + <<if !Array.isArray($personalAttention)>> /* first PA target */ + <<set $personalAttention = [{ID: $cribs[_csi].ID, trainingRegimen: "undecided"}]>> + <<else>> + <<set _pai = $personalAttention.findIndex(function(s) { return s.ID == $cribs[_csi].ID; })>> + <<if _pai == -1>> /* not already a PA target; add */ + <<set $activeSlave = $cribs[_csi], $personalAttention.push({ID: $cribs[_csi].ID, trainingRegimen: "undecided"})>> + <<else>> /* already a PA target; remove */ + <<set $personalAttention.deleteAt(_pai)>> + <<if $personalAttention.length == 0>> + <<set $personalAttention = "sex">> + <</if>> + <</if>> + <</if>> + <<goto "Personal Attention Select">> + <</link>> <<case "New Game Plus">> <<if $Flag == 0>> - <br>__''@@.pink;_Child.slaveName@@''__ + <br>__''@@.pink;_Child.slaveName@@''__ <<else>> - <br>__''@@.pink;_Child.slaveName@@''__ + <br>__''@@.pink;_Child.slaveName@@''__ <</if>> <<case "Rules Slave Select">> <<if $Flag == 0>> - <br>__'' - [[_childName|Rules Slave Select Workaround][$activeSlave = $cribs[_csi]]]''__ + <br>__'' + [[_childName|Rules Slave Select Workaround][$activeSlave = $cribs[_csi]]]''__ <<else>> - <br>__'' - [[_childName|Rules Slave Deselect Workaround][$activeSlave = $cribs[_csi]]]''__ + <br>__'' + [[_childName|Rules Slave Deselect Workaround][$activeSlave = $cribs[_csi]]]''__ <</if>> <<case "Rules Slave Exclude">> <<if $Flag == 0>> - <br>__'' - [[_childName|Rules Slave Exclude Workaround][$activeSlave = $cribs[_csi]]]''__ + <br>__'' + [[_childName|Rules Slave Exclude Workaround][$activeSlave = $cribs[_csi]]]''__ <<else>> - <br>__'' - [[_childName|Rules Slave NoExclude Workaround][$activeSlave = $cribs[_csi]]]''__ + <br>__'' + [[_childName|Rules Slave NoExclude Workaround][$activeSlave = $cribs[_csi]]]''__ <</if>> <</switch>> @@ -164,56 +164,56 @@ will <<if (_Child.assignment == "rest") && (_Child.health >= -20)>> - ''__@@.lawngreen;rest.@@__'' + ''__@@.lawngreen;rest.@@__'' <<elseif (_Child.assignment == "stay confined") && ((_Child.devotion > 20) || ((_Child.trust < -20) && (_Child.devotion >= -20)) || ((_Child.trust < -50) && (_Child.devotion >= -50)))>> - ''__@@.lawngreen;stay confined.@@__''<<if _Child.sentence > 0>> (_Child.sentence weeks)<</if>> + ''__@@.lawngreen;stay confined.@@__''<<if _Child.sentence > 0>> (_Child.sentence weeks)<</if>> <<else>> - <<if _Child.choosesOwnAssignment == 1>>choose her own job<<else>>_Child.assignment<<if _Child.sentence > 0>> (_Child.sentence weeks)<</if>><</if>>. + <<if _Child.choosesOwnAssignment == 1>>choose her own job<<else>>_Child.assignment<<if _Child.sentence > 0>> (_Child.sentence weeks)<</if>><</if>>. <</if>> <<if ($displayAssignments == 1) && (_Pass == "Main") && (_Child.ID != $HeadGirl.ID) && (_Child.ID != $Recruiter.ID) && (_Child.ID != $Bodyguard.ID)>> - <<if _Child.assignment != "rest">> - <<link "Rest" "Main">><<= removeJob($cribs[_csi], $cribs[_csi].assignment)>><</link>> - <<else>> - Rest - <</if>> - <<if _Child.fuckdoll == 0>> /* NON-FUCKDOLL ASSIGNMENTS */ - <<if (_Child.assignment != "take classes")>> - <<if (_Child.intelligenceImplant < 15) && ((_Child.devotion >= -20) || ((_Child.trust < -20) && (_Child.devotion >= -50)) || (_Child.trust < -50)) && (_Child.fetish != "mindbroken")>> - | <<link "Classes" "Main">><<= assignJob($cribs[_csi], "take classes")>><</link>> - <</if>> - <<else>> - | Classes - <</if>> - <<if (_Child.assignment != "choose her own job")>> - | <<link "Let _Child.object choose" "Main">><<= assignJob($cribs[_csi], "choose her own job")>><</link>> - <<else>> - | Let _Child.object choose - <</if>> - <</if>> /* CLOSES FUCKDOLL CHECK */ + <<if _Child.assignment != "rest">> + <<link "Rest" "Main">><<= removeJob($cribs[_csi], $cribs[_csi].assignment)>><</link>> + <<else>> + Rest + <</if>> + <<if _Child.fuckdoll == 0>> /* NON-FUCKDOLL ASSIGNMENTS */ + <<if (_Child.assignment != "take classes")>> + <<if (_Child.intelligenceImplant < 15) && ((_Child.devotion >= -20) || ((_Child.trust < -20) && (_Child.devotion >= -50)) || (_Child.trust < -50)) && (_Child.fetish != "mindbroken")>> + | <<link "Classes" "Main">><<= assignJob($cribs[_csi], "take classes")>><</link>> + <</if>> + <<else>> + | Classes + <</if>> + <<if (_Child.assignment != "choose her own job")>> + | <<link "Let _Child.object choose" "Main">><<= assignJob($cribs[_csi], "choose her own job")>><</link>> + <<else>> + | Let _Child.object choose + <</if>> + <</if>> /* CLOSES FUCKDOLL CHECK */ <</if>> <<set _numFacilities = $nursery>> /* more subfacilities may be added down the line */ <<if _numFacilities > 0>> - <<if _Pass == "Main">> - <<set $returnTo=_Pass >> + <<if _Pass == "Main">> + <<set $returnTo=_Pass >> - <br>Transfer to: + <br>Transfer to: - <<if _Child.assignment != "rest" && _Child.assignment != "be a child">> - <<link "Nursery" "Nursery">><<= removeJob($cribs[_csi], $cribs[_csi].assignment)>><</link>> | - <<else>> - Nursery - <</if>> + <<if _Child.assignment != "rest" && _Child.assignment != "be a child">> + <<link "Nursery" "Nursery">><<= removeJob($cribs[_csi], $cribs[_csi].assignment)>><</link>> | + <<else>> + Nursery + <</if>> - <</if>> /* Closes transfer options check */ + <</if>> /* Closes transfer options check */ <</if>> /* closes _numFacilities */ <<if ((_Pass != 'Main') || (def $Flag) || ($useSlaveSummaryTabs == 0) || ($childAssignmentTab == "all"))>> - <<print '<span id="slave-' + $cribs[_csi].ID + '"> </span>'>> + <<print '<span id="slave-' + $cribs[_csi].ID + '"> </span>'>> <</if>> <br/> <<if $seeImages != 1 || $seeSummaryImages != 1 || $imageChoice == 1>> <</if>> @@ -226,19 +226,19 @@ will <<switch _Pass>> <<case "Main">> - <<continue>> + <<continue>> <<case "New Game Plus">> - <br><<if $seeImages != 1 || $seeSummaryImages != 1 || $imageChoice == 1>> <</if>> - <<if $Flag === 0>> - <<link "Add to import list" "New Game Plus">> - <<set $cribsToImport += 1,$Flag = 1>> - <<= assignJob($cribs[_csi], "be imported")>> - <</link>> + <br><<if $seeImages != 1 || $seeSummaryImages != 1 || $imageChoice == 1>> <</if>> + <<if $Flag === 0>> + <<link "Add to import list" "New Game Plus">> + <<set $cribsToImport += 1,$Flag = 1>> + <<= assignJob($cribs[_csi], "be imported")>> + <</link>> <<else>> - <<link "Remove from import list" "New Game Plus">> - <<set $cribsToImport -= 1,$Flag = 0>> - <<= removeJob($cribs[_csi], $cribs[_csi].assignment)>> - <</link>> + <<link "Remove from import list" "New Game Plus">> + <<set $cribsToImport -= 1,$Flag = 0>> + <<= removeJob($cribs[_csi], $cribs[_csi].assignment)>> + <</link>> <</if>> <</switch>> diff --git a/src/facilities/nursery/childrenReport.tw b/src/facilities/nursery/childrenReport.tw index 4d033a7e7662aef1a7c341f38c71b2b2ccb91ded..a22fe4af419a97ce1f0f1da39e3574eb8baf8c5f 100644 --- a/src/facilities/nursery/childrenReport.tw +++ b/src/facilities/nursery/childrenReport.tw @@ -270,7 +270,7 @@ <</if>> <</if>> <<elseif $nurseryReproductionSetting == 1>> - Her hormone levels are being carefully managed, @@.green;encouraging early puberty.@@ + $His hormone levels are being carefully managed, @@.green;encouraging early puberty.@@ <<if $cribs[_nur].ovaries == 1>> <<set $cribs[_nur].pubertyXX = 1>> <<set $cribs[_nur].hormoneBalance = 250>> diff --git a/src/facilities/nursery/longChildDescription.tw b/src/facilities/nursery/longChildDescription.tw index 29d16b729263f57944d68e57a0f67468905ebcb3..5cfc1eb9242c417ceffb287b9b0d08303f0f8e88 100644 --- a/src/facilities/nursery/longChildDescription.tw +++ b/src/facilities/nursery/longChildDescription.tw @@ -416,7 +416,7 @@ $he's <<elseif ($activeChild.devotion < -20)>> and uses $his faith as a place of refuge. <<elseif ($activeChild.devotion <= 20)>> - and uses $his faith as a private place within herself. + and uses $his faith as a private place within $himself. <<else>> but has learned to keep $his faith private. <</if>> @@ -557,7 +557,7 @@ $he's <</if>> <<case "humiliation">> <<if ($activeChild.behavioralFlaw == "bitchy")>> - $His bitchiness is really just an expression of $his deep need to be @@.lightcoral;humiliated@@ herself. + $His bitchiness is really just an expression of $his deep need to be @@.lightcoral;humiliated@@ $himself. <<elseif ($activeChild.sexualFlaw == "shamefast")>> $His shame is genuine, and it is with real self-loathing that $he @@.lightcoral;gets off on humiliation.@@ <<elseif ($activeChild.fetishStrength > 95)>> @@ -595,7 +595,7 @@ $he's <</if>> <<case "dom">> <<if ($activeChild.sexualFlaw == "apathetic")>> - $He is at war with herself, since $his habitual apathy during sex barely masks a desire to @@.lightcoral;dominate.@@ + $He is at war with $himself, since $his habitual apathy during sex barely masks a desire to @@.lightcoral;dominate.@@ <<elseif ($activeChild.fetishStrength > 95)>> $He is a @@.lightcoral;complete dom;@@ with other slaves this is expressed as a strong preference to top, and with $his betters $he's an almost competitive lover. <<elseif ($activeChild.fetishStrength > 60)>> @@ -607,7 +607,7 @@ $he's <<if ($activeChild.fetishStrength > 95)>> $He is an @@.lightcoral;aggressive sadist@@; $he's constantly plotting to control, abuse, and hurt other slaves. <<elseif ($activeChild.fetishStrength > 60)>> - $He has @@.lightcoral;sadistic tendencies@@; $he enjoys watching other slaves in pain, but truly loves causing pain herself. + $He has @@.lightcoral;sadistic tendencies@@; $he enjoys watching other slaves in pain, but truly loves causing pain $himself. <<else>> $He gets off on @@.lightcoral;the suffering of others@@; $he enjoys watching other slaves in pain. <</if>> @@ -1376,7 +1376,7 @@ $He is <<if $showBodyMods == 1>> <<if $activeChild.fuckdoll > 0>> <<if $activeChild.earPiercing+$activeChild.eyebrowPiercing+$activeChild.nosePiercing > 0>> - The piercings on its head run through its suit, helping secure the material to its head. + The piercings on $his head run through $his suit, helping secure the material to $his head. <</if>> <<else>> <<earPiercingDescription>> diff --git a/src/facilities/nursery/nursery.tw b/src/facilities/nursery/nursery.tw index 422fe54f65539c6cf7741cd9cf4f7a57e0e0b096..6ba575f928eb68baee5342b00871202d2d1993a5 100644 --- a/src/facilities/nursery/nursery.tw +++ b/src/facilities/nursery/nursery.tw @@ -74,7 +74,7 @@ $nurseryNameCaps $Matron.slaveName is alone in $nurseryName, and has nothing to do but keep the place clean and look after the children. <<set $MatronInfluence = 1>> <<elseif ($nurserySlaves <= 0) && ($nurseryBabies <= 0)>> - $nurseryNameCaps is empty and quiet. <<link "Decommission the Nursery" "Main">><<set $nursery = 0, $nurseryNannies = 0, $nannyInfluence = 0, $nurseryDecoration = "standard", $cribs = [], $reservedChildrenNursery = 0>><<for _i = 0; _i < $slaves.length; _i++>><<set $slaves[_i].reservedChildrenNursery = 0>><</for>><</link>> + $nurseryNameCaps is empty and quiet. <<link "Decommission the Nursery" "Main">><<set $nursery = 0, $nurseryNannies = 0, $nannyInfluence = 0, $nurseryDecoration = "standard", $cribs = [], $reservedChildrenNursery = 0>><<for _i = 0; _i < $slaves.length; _i++>><<run WombCleanGenericReserve($slaves[_i], "nursery", 9999)>><</for>><</link>> <</if>> <<if $nurserySlaves > 0>> @@ -97,7 +97,7 @@ $nurseryNameCaps <<set _Tmult0 = Math.trunc($nurseryNannies*1000*$upgradeMultiplierArcology)>> <br>It can support $nurseryNannies nannies. Currently there <<if $nurserySlaves == 1>>is<<else>>are<</if>> $nurserySlaves nann<<if $nurserySlaves != 1>>ies<<else>>y<</if>> at $nurseryName. <<if $nurseryBabies > 0 && ($nurserySlaves < 1 && $Matron < 1)>> - //You must have at least one nanny or Matron to be able to influence the childrens' upbringing// + //You must have at least one nanny or Matron to be able to influence the children's upbringing// <br> <</if>> <<if $nurseryNannies < 5>> @@ -107,11 +107,12 @@ $nurseryNameCaps <</if>> <<if $Matron != 0>> + <<setLocalPronouns $Matron>> <br> <<if $MatronIgnoresFlaws != 1>> - $Matron.slaveName will attempt to fix flaws in nannies serving under her. [[Ignore flaws|Nursery][$MatronIgnoresFlaws = 1]] + $Matron.slaveName will attempt to fix flaws in nannies serving under $him. [[Ignore flaws|Nursery][$MatronIgnoresFlaws = 1]] <<else>> - $Matron.slaveName has been instructed to ignore flaws in the nannies serving under her. [[Fix flaws|Nursery][$MatronIgnoresFlaws = 0]] + $Matron.slaveName has been instructed to ignore flaws in the nannies serving under $him. [[Fix flaws|Nursery][$MatronIgnoresFlaws = 0]] <</if>> <</if>> @@ -215,13 +216,12 @@ Reserve an eligible mother-to-be's child to be placed in a room upon birth. Of $ <<if $slaves[_u].assignment == "work in the dairy" && $dairyPregSetting > 0>> <<else>> <<set _slaveId = "slave-" + $slaves[_u].ID>> - <<set _pregCount = $slaves[_u].pregType>> <<set _WL = $slaves[_u].womb.length>> <<set _reservedNursery = WombReserveCount($slaves[_u], "nursery")>> <<set _reservedIncubator = WombReserveCount($slaves[_u], "incubator")>> <<set _pregWeek = $slaves[_u].pregWeek>> <<set _slaveName = SlaveFullName($slaves[_u])>> - <div class="possible" @id="_slaveId" @data-preg-count="_pregCount" @data-reserved-spots="_reservedNursery" @data-preg-week="_pregWeek" @data-name="_slaveName"> + <div class="possible" @id="_slaveId" @data-preg-count="_WL" @data-reserved-spots="_reservedNursery" @data-preg-week="_pregWeek" @data-name="_slaveName"> <<print "[[_slaveName|Long Slave Description][$activeSlave = $slaves[" + _u + "], $nextLink = passage()]]">> is $slaves[_u].pregWeek weeks pregnant with <<if $slaves[_u].pregSource == 0 || $slaves[_u].preg <= 5>>someone's<<if $slaves[_u].preg <= 5>>, though it is too early to tell whose,<</if>> <<elseif $slaves[_u].pregSource == -1>>your @@ -294,8 +294,11 @@ Reserve an eligible mother-to-be's child to be placed in a room upon birth. Of $ //You have no pregnant slaves bearing eligible children.// <</if>> <<if $PC.pregKnown == 1 && $PC.pregSource != -6>> + <<set _WL = $PC.womb.length>> + <<set _reservedIncubator = WombReserveCount($PC, "incubator")>> + <<set _reservedNursery = WombReserveCount($PC, "nursery")>> <br>''@@.pink;You're pregnant@@'' and going to have - <<switch $PC.pregType>> + <<switch _WL>> <<case 1>> a baby. <<case 2>> @@ -313,9 +316,6 @@ Reserve an eligible mother-to-be's child to be placed in a room upon birth. Of $ <<case 8>> octuplets. <</switch>> - <<set _WL = $PC.womb.length>> - <<set _reservedIncubator = WombReserveCount($PC, "incubator")>> - <<set _reservedNursery = WombReserveCount($PC, "nursery")>> <<if _reservedNursery > 0>> <<set _childrenReservedNursery = 1>> <<if _WL == 1>> @@ -367,12 +367,9 @@ Reserve an eligible mother-to-be's child to be placed in a room upon birth. Of $ <br> <<link "Clear all reserved children">> <<for _u = 0; _u < _SL; _u++>> - <<if $slaves[_u].reservedChildrenNursery != 0>> - <<set $slaves[_u].reservedChildrenNursery = 0>> - <</if>> + <<run WombCleanGenericReserve($slaves[_u], "nursery", 9999)>> <</for>> - <<set $PC.reservedChildrenNursery = 0>> - <<set $reservedChildrenNursery = 0>> + <<run WombCleanGenericReserve($PC, "nursery", 9999)>> <<goto "Nursery">> <</link>> <</if>> @@ -573,19 +570,19 @@ Filter by assignment: | <<if $cribs[$i].fuckdoll == 0>> <<if $cribs[$i].toyHole != "all her holes">> her $cribs[$i].toyHole, but for now:// - <br> <<print "[[Use her mouth|FLips][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + <br> <<print "[[Use her mouth|FLips][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <<if canDoVaginal($cribs[$i])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Fuck her|FVagina][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <<if canDoAnal($cribs[$i])>> - | <<print "[[Use her holes|FButt][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Use her holes|FButt][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> <</if>> <<if canDoAnal($cribs[$i])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Fuck her ass|FAnus][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> <<if canDoVaginal($cribs[$i]) || canDoAnal($cribs[$i])>> <<if $cribs[$i].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> <</if>> /*check*//* @@ -595,26 +592,26 @@ Filter by assignment: | | <<print "[[Abuse her|FAbuse][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j,$nextLink = _k,$returnTo = _l]]">> <<else>> all of her holes equally, but for now:// - <br> <<print "[[Use her mouth|FLips][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + <br> <<print "[[Use her mouth|FLips][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <<if canDoVaginal($cribs[$i])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Fuck her|FVagina][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <<if canDoAnal($cribs[$i])>> - | <<print "[[Use her holes|FButt][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Use her holes|FButt][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> <</if>> <<if canDoAnal($cribs[$i])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Fuck her ass|FAnus][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> <<if canDoVaginal($cribs[$i]) || canDoAnal($cribs[$i])>> <<if $cribs[$i].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> <</if>> /*check*//* <<if canPenetrate($cribs[$i])>> | <<print "[[Ride her|FDick][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j,$nextLink = _k,$returnTo = _l]]">> <</if>> - | <<print "[[Abuse her|FAbuse][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | <<print "[[Abuse her|FAbuse][$activeSlave = $cribs["+$i+"], $childSex = 1, $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> <<else>> <<if $cribs[$i].toyHole != "all her holes">> diff --git a/src/facilities/nursery/nurseryReport.tw b/src/facilities/nursery/nurseryReport.tw index d5eca5141970e878784087269600eec182c3c4a0..c7c90d47992426e98e74d659ee1c57a477e6bdd3 100644 --- a/src/facilities/nursery/nurseryReport.tw +++ b/src/facilities/nursery/nurseryReport.tw @@ -65,10 +65,10 @@ <<set _idleBonus++>> */ <<elseif ($Matron.fetishKnown == 1)>> - $Matron.slaveName can't keep $him hands to herself, preventing the slaves in the nursery from relaxing completely. + $Matron.slaveName can't keep $his hands to $himself, preventing the slaves in the nursery from relaxing completely. <</if>> <<if ($Matron.visualAge > 35)>> - Her apparent maturity encourages the slaves in the nursery to relax and pour out their troubles to $him. + $His apparent maturity encourages the slaves in the nursery to relax and pour out their troubles to $him. <<set _healthBonus++, _idleBonus++>> <</if>> <<if ($Matron.intelligence > 0)>> diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw index 22f6a67080b0d4d4d4bb3b441eb2622ebc629722..e928106cf1eb758424de7bd73dfd313ad14d1854 100644 --- a/src/gui/Encyclopedia/encyclopedia.tw +++ b/src/gui/Encyclopedia/encyclopedia.tw @@ -21,23 +21,23 @@ PLAYING FREE CITIES <br> Start the game and select any of the world options; choose normal difficulty, since it's pretty forgiving and this opener will make good @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]].@@ Build a completely male PC for your first game; it makes @@.green;[[reputation|Encyclopedia][$encyclopedia = "Arcologies and Reputation"]]@@ maintenance much easier. Choose wealth for both your career and your rumored method of obtaining the arcology; the other options are fun but a full wealth build will set you up quickly to get started. <br><br>Now, customize your starting slaves. - <br>For your first, make her as @@.cyan;intelligent, educated,@@ and old as possible. Make her @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ , but save @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ by giving her flaws, an unknown fetish, and @@.gold;making her afraid of you.@@ (These are easy to fix.) You can customize the rest of her as you wish, but try to keep her under ;@@.yellowgreen;<<print cashFormat(5000)>>.@@ Don't worry about skills, since with two of them you'll be able to rotate head girl duty so the other can learn skills. Commit her, base another slave off her, and commit that one too. Those are your [[head girls|Encyclopedia][$encyclopedia = "Head Girl"]]. + <br>For your first, make her as @@.cyan;intelligent, educated,@@ and old as possible. Make her @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ , but save @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ by giving her flaws, an unknown fetish, and @@.gold;making her afraid of you.@@ (These are easy to fix.) You can customize the rest of her as you wish, but try to keep her under ;@@.yellowgreen;<<print cashFormat(5000)>>.@@ Don't worry about skills, since with two of them you'll be able to rotate Head Girl duty so the other can learn skills. Commit her, base another slave off her, and commit that one too. Those are your [[Head Girls|Encyclopedia][$encyclopedia = "Head Girl"]]. <br> Spend the rest of your @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ on prospects: slaves that are @@.yellowgreen;[[cheap|Encyclopedia][$encyclopedia = "Money"]]@@ now, but can be improved quickly. As long as you keep @@.hotpink;devotion@@ pretty high, low @@.mediumaquamarine;[[trust|Encyclopedia][$encyclopedia = "Trust"]]@@ can be fixed reliably. Unknown fetishes, emaciated or fat, flaws, deep voice, and poor skills are all good ways to drive prices down, and can all be fixed quickly. Virginities are a bad idea because they drive costs up and are easy to break. @@.cyan;Education@@ can take awhile and will take slaves away from other jobs, so make them all educated for now, and keep their @@.cyan;intelligence@@ reasonably high. <br><br>__First turn__ - <br> Assign one of your head girls to be Head Girl and make the other whore. Assign everyone else to whore. The [[rules ssistant|Encyclopedia][$encyclopedia = "Rules Assistant"]] will speed things up a lot when you know the basics, but leave it off for now; it's easy to miss a lot of stuff if you set it up without a bit of experience. Go through your girls one by one and experiment with their options, but anyone who's @@.hotpink;Accepting@@ or better should get nice clothes, accessories, and [[living conditions|Encyclopedia][$encyclopedia = "Living Conditions"]]; anyone who's not should not. When slaves tip over into @@.hotpink;Accepting,@@ switch them over from bedrolls and uncomfortable straps; until then, the good life is a waste of @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ and will spoil them. Give @@.red;unhealthy@@ slaves curatives, and give everyone hormones, since they're @@.yellowgreen;[[cheap|Encyclopedia][$encyclopedia = "Money"]]@@ and have good front end benefits. Get everyone working out or dieting to reach a basic fitness level and an attractive (not @@.red;red@@) [[weight|Encyclopedia][$encyclopedia = "Weight"]]. Sell the girl(s) your predecessor left behind for seed @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]],@@ and choose the most profitable option; there are ways to maximize this, but worry about that later. Check out the arcology management menu. You should have the @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ to upgrade the security systems, build the [[head girl suite|Encyclopedia][$encyclopedia = "Head Girl Suite"]], and to buy the kitchen upgrade; this will make dieting work faster. Check out the slave market, and buy a single bargain slave: @@.yellowgreen;<<print cashFormat(2000)>>@@ is good. Put her in the suite: if she won't go, abuse her until she will. Open the personal attention menu, and fix your head girl's flaws; softening is powerful but it takes longer and we're focusing on the basics. ''Save the game'' and end the turn. + <br> Assign one of your Head Girls to be ''the'' Head Girl and make the other whore. Assign everyone else to whore. The [[rules ssistant|Encyclopedia][$encyclopedia = "Rules Assistant"]] will speed things up a lot when you know the basics, but leave it off for now; it's easy to miss a lot of stuff if you set it up without a bit of experience. Go through your girls one by one and experiment with their options, but anyone who's @@.hotpink;Accepting@@ or better should get nice clothes, accessories, and [[living conditions|Encyclopedia][$encyclopedia = "Living Conditions"]]; anyone who's not should not. When slaves tip over into @@.hotpink;Accepting,@@ switch them over from bedrolls and uncomfortable straps; until then, the good life is a waste of @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ and will spoil them. Give @@.red;unhealthy@@ slaves curatives, and give everyone hormones, since they're @@.yellowgreen;[[cheap|Encyclopedia][$encyclopedia = "Money"]]@@ and have good front end benefits. Get everyone working out or dieting to reach a basic fitness level and an attractive (not @@.red;red@@) [[weight|Encyclopedia][$encyclopedia = "Weight"]]. Sell the girl(s) your predecessor left behind for seed @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]],@@ and choose the most profitable option; there are ways to maximize this, but worry about that later. Check out the arcology management menu. You should have the @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ to upgrade the security systems, build the [[Head Girl suite|Encyclopedia][$encyclopedia = "Head Girl Suite"]], and to buy the kitchen upgrade; this will make dieting work faster. Check out the slave market, and buy a single bargain slave: @@.yellowgreen;<<print cashFormat(2000)>>@@ is good. Put her in the suite: if she won't go, abuse her until she will. Open the personal attention menu, and fix your Head Girl's flaws; softening is powerful but it takes longer and we're focusing on the basics. ''Save the game'' and end the turn. <br><br>__The end turn report__ - <br> Read this, and note all the colored text. Pay particular attention to @@.red;red,@@ @@.gold;gold,@@ or @@.mediumorchid;orchid@@ text; these are generally bad. Being a slave whore is a hard life, and some trouble is inevitable. But take particular note of things like slaves losing [[health|Encyclopedia][$encyclopedia = "Health"]], becoming [[fearful|Encyclopedia][$encyclopedia = "Trust"]], or [[hating|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]] you due to their [[rules|Encyclopedia][$encyclopedia = "Rules Assistant"]], [[conditions|Encyclopedia][$encyclopedia = "Living Conditions"]], or other slaves - these things you can control. Reload your save and fiddle around with the options to address these areas. (The head girl's girl may have a rough time; you can't affect that.) Since your head girl has her own slave to help her around the house, she'll work with two of your slaves. + <br> Read this, and note all the colored text. Pay particular attention to @@.red;red,@@ @@.gold;gold,@@ or @@.mediumorchid;orchid@@ text; these are generally bad. Being a slave whore is a hard life, and some trouble is inevitable. But take particular note of things like slaves losing [[health|Encyclopedia][$encyclopedia = "Health"]], becoming [[fearful|Encyclopedia][$encyclopedia = "Trust"]], or [[hating|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]] you due to their [[rules|Encyclopedia][$encyclopedia = "Rules Assistant"]], [[conditions|Encyclopedia][$encyclopedia = "Living Conditions"]], or other slaves - these things you can control. Reload your save and fiddle around with the options to address these areas. (The Head Girl's girl may have a rough time; you can't affect that.) Since your Head Girl has her own slave to help her around the house, she'll work with two of your slaves. <br><br>__Economics and events__ <br> The economics report offers some flavor, but you should leave the options it offers alone until you've got some spare cash. An event or two will follow; feel free to reload the page on each (F5 on most browsers) to see what the different options do. Generally, try to pick options that give you @@.yellowgreen;[[money|Encyclopedia][$encyclopedia = "Money"]]@@ and improve @@.hotpink;[[devotion|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]].@@ @@.mediumaquamarine;[[Trust|Encyclopedia][$encyclopedia = "Trust"]]@@ and @@.green;[[reputation|Encyclopedia][$encyclopedia = "Arcologies and Reputation"]]@@ can wait. <br><br>__Moving forward__ - <br> Hopefully, many of your slaves learned skills during their week of [[whoring|Encyclopedia][$encyclopedia = "Whoring"]]. Three levels of skill (@@.cyan;Veteran Whore@@ or @@.cyan;W+++@@ for example) is the maximum, though slaves without vaginas will only acquire two complete levels of sexual skills. As you move through the first ten weeks or so, many of your slaves will max out their whoring and sexual skills. When they do, switch them over to [[public service|Encyclopedia][$encyclopedia = "Public Service"]] until they achieve maximum [[entertainment skill|Encyclopedia][$encyclopedia = "Entertainment Skill"]], and then put them back on whoring, since cross training will improve their whoring performance. When your head girl alternate has maxed skills, make her the head girl and train up the MILF she replaced. Switch your personal attention around; for now, fix the [[quirks|Encyclopedia][$encyclopedia = "Quirks"]] of the most @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ slave who has any, since that's the best way to maximize your chances of success each turn. + <br> Hopefully, many of your slaves learned skills during their week of [[whoring|Encyclopedia][$encyclopedia = "Whoring"]]. Three levels of skill (@@.cyan;Veteran Whore@@ or @@.cyan;W+++@@ for example) is the maximum, though slaves without vaginas will only acquire two complete levels of sexual skills. As you move through the first ten weeks or so, many of your slaves will max out their whoring and sexual skills. When they do, switch them over to [[public service|Encyclopedia][$encyclopedia = "Public Service"]] until they achieve maximum [[entertainment skill|Encyclopedia][$encyclopedia = "Entertainment Skill"]], and then put them back on whoring, since cross training will improve their whoring performance. When your Head Girl alternate has maxed skills, make her the Head Girl and train up the MILF she replaced. Switch your personal attention around; for now, fix the [[quirks|Encyclopedia][$encyclopedia = "Quirks"]] of the most @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ slave who has any, since that's the best way to maximize your chances of success each turn. - <br> Pay attention to your cash flow. If it's positive and you have a decent buffer of @@.yellowgreen;<<print cashFormat(10000)>>@@ or so built up, wait for the slave market prices to naturally dip, and then purchase a girl or two to work on once your starting stable is well trained, though you may have to confine or rest new purchases for a while if they're @@.hotpink;[[rebellious|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ or sick. If you get a virgin, consider applying chastity to preserve value for resale. When prices are high, consider selling anyone who's free of flaws and has a discovered sexual fetish, since this maximizes value bonuses. Within ten turns, you should be making decent weekly profit, with resale of slaves building up your bank when prices favor sale. Once you're confident of the whoring mechanics, consider building a [[brothel|Encyclopedia][$encyclopedia = "Brothel"]]. Your alternate head girl will make a good [[madam|Encyclopedia][$encyclopedia = "Madam"]]. + <br> Pay attention to your cash flow. If it's positive and you have a decent buffer of @@.yellowgreen;<<print cashFormat(10000)>>@@ or so built up, wait for the slave market prices to naturally dip, and then purchase a girl or two to work on once your starting stable is well trained, though you may have to confine or rest new purchases for a while if they're @@.hotpink;[[rebellious|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ or sick. If you get a virgin, consider applying chastity to preserve value for resale. When prices are high, consider selling anyone who's free of flaws and has a discovered sexual fetish, since this maximizes value bonuses. Within ten turns, you should be making decent weekly profit, with resale of slaves building up your bank when prices favor sale. Once you're confident of the whoring mechanics, consider building a [[brothel|Encyclopedia][$encyclopedia = "Brothel"]]. Your alternate Head Girl will make a good [[madam|Encyclopedia][$encyclopedia = "Madam"]]. <<case "How to Play">> This is not a game in which the PC slaveowner is some magical sexual god whose mere presence turns women into submissives. This means that sane slaves will tend to lose obedience and @@.mediumaquamarine;[[trust|Encyclopedia][$encyclopedia = "Trust"]]@@ over time if you don't take any steps to maintain their mental state. Mental stats have maximum and minimum values. These are somewhat 'sticky,' so slaves at minimum @@.hotpink;[[devotion|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ for example may require an extra jolt to break free of this state. @@ -767,7 +767,7 @@ Choose a more particular entry below: <<case "Head Girl">> //Most Free Cities slaveowners eventually find it convenient to promote a @@.mediumaquamarine;[[trusted|Encyclopedia][$encyclopedia = "Trust"]]@@y slave to a position over others. The stable of slaves necessary to present a proper public image has become so large that assistance managing and overseeing slaves is quite useful. In addition, such a slave can be an example to lesser livestock. - <br><br>A good head girl will be @@.hotpink;[[devotion|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ to her master and sexually skilled. Experienced slaveowners have also found that an older slave girl is often more effective than a young one. Since slavery is new, older slave girls will have spent part of their adult lives as free women, and have a deeper body of life experience to draw on. + <br><br>A good Head Girl will be @@.hotpink;[[devotion|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ to her master and sexually skilled. Experienced slaveowners have also found that an older slave girl is often more effective than a young one. Since slavery is new, older slave girls will have spent part of their adult lives as free women, and have a deeper body of life experience to draw on. <br><br>Naturally, some slaveowners form a strong emotional bond with their Head Girl. @@.mediumaquamarine;[[Trusting|Encyclopedia][$encyclopedia = "Trust"]]@@ and relying on a close companion can begin to resemble Old World relationships. It is a paradox of modern Free Cities life that such closeness is strongly frowned upon. Rumors that a prominent person is emotionally involved with his or her Head Girl can be as socially devastating as rumors of infidelity were a hundred years ago. @@ -1223,7 +1223,7 @@ SLAVE BEHAVIORAL QUIRKS <<case "Quirks">> ''Quirks '' are positive slave qualities. They increase slaves' value and performance at sexual assignments, and each quirk also has other, differing effects. Each quirk is associated with a corresponding [[flaw|Encyclopedia][$encyclopedia = "Flaws"]], and slave can have two quirks (a sexual quirk and a behavioral quirk), just like flaws. Quirks may appear randomly, but the most reliable way to give slaves quirks is to soften flaws. - <br><br>The [[head girl|Encyclopedia][$encyclopedia = "Head Girl"]] can be ordered to soften flaws, and the player character can soften flaws with personal attention. Flaws can also be naturally softened into quirks by fetishes. + <br><br>The [[Head Girl|Encyclopedia][$encyclopedia = "Head Girl"]] can be ordered to soften flaws, and the player character can soften flaws with personal attention. Flaws can also be naturally softened into quirks by fetishes. <<case "Adores men">> @@ -1305,7 +1305,7 @@ SLAVE BEHAVIORAL FLAWS <<case "Flaws">> ''Flaws '' are negative slave qualities. They decrease slaves' value and performance at sexual assignments, and each flaw also has other, differing effects. Each flaw is associated with a corresponding [[quirk|Encyclopedia][$encyclopedia = "Quirks"]], and slave can have two flaws (a sexual flaw and a behavioral flaw), just like quirks. New slaves will often have flaws, and tough experiences can also cause them to appear. - <br><br>The [[head girl|Encyclopedia][$encyclopedia = "Head Girl"]] can be ordered to soften or remove flaws, and the player character can soften or remove flaws with personal attention. Flaws can also be naturally softened or removed by fetishes, and can resolve on their own if a slave is happy. + <br><br>The [[Head Girl|Encyclopedia][$encyclopedia = "Head Girl"]] can be ordered to soften or remove flaws, and the player character can soften or remove flaws with personal attention. Flaws can also be naturally softened or removed by fetishes, and can resolve on their own if a slave is happy. <<case "Anorexic">> @@ -1387,7 +1387,7 @@ SLAVE PARAPHILIAS <<case "Abusiveness">> ''Abusiveness'' is a paraphilia, an intense form of sexual [[flaw|Encyclopedia][$encyclopedia = "Flaws"]] that cannot be softened. - <br><br>[[Doms|Encyclopedia][$encyclopedia = "Doms"]] serving as [[head girl|Encyclopedia][$encyclopedia = "Head Girl"]] may become abusive if allowed to punish slaves by molesting them. They can be satisfied by work as the head girl or [[wardeness|Encyclopedia][$encyclopedia = "Wardeness"]]. Abusive head girls are more effective when allowed or encouraged to punish slaves severely. + <br><br>[[Doms|Encyclopedia][$encyclopedia = "Doms"]] serving as [[Head Girl|Encyclopedia][$encyclopedia = "Head Girl"]] may become abusive if allowed to punish slaves by molesting them. They can be satisfied by work as the Head Girl or [[Wardeness|Encyclopedia][$encyclopedia = "Wardeness"]]. Abusive Head Girls are more effective when allowed or encouraged to punish slaves severely. <<case "Anal Addicts">> @@ -1423,7 +1423,7 @@ SLAVE PARAPHILIAS <<case "Maliciousness">> Sexual ''maliciousness'' is a paraphilia, an intense form of sexual [[flaw|Encyclopedia][$encyclopedia = "Flaws"]] that cannot be softened. - <br><br>[[Sadists|Encyclopedia][$encyclopedia = "Sadists"]] serving as [[Wardeness|Encyclopedia][$encyclopedia = "Wardeness"]] may become sexually malicious. They can be satisfied by work as the [[head girl|Encyclopedia][$encyclopedia = "Head Girl"]] or wardeness. Sexually malicious wardenesses break slaves very quickly but damage their sex drives doing so. + <br><br>[[Sadists|Encyclopedia][$encyclopedia = "Sadists"]] serving as [[Wardeness|Encyclopedia][$encyclopedia = "Wardeness"]] may become sexually malicious. They can be satisfied by work as the [[Head Girl|Encyclopedia][$encyclopedia = "Head Girl"]] or Wardeness. Sexually malicious Wardenesses break slaves very quickly but damage their sex drives doing so. <<case "Self Hatred">> @@ -1478,7 +1478,7 @@ THE X-SERIES ARCOLOGY <<case "What the Upgrades Do">> - //There are a lot of upgrades available for your arcology, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>. Please relax; some panic upon reviewing the options is normal. This list should familiarize you with your choices.// + //There are a lot of upgrades available for your arcology, <<= properTitle()>>. Please relax; some panic upon reviewing the options is normal. This list should familiarize you with your choices.// <br><br>''Construction'' <br>The first upgrade section on the arcology management menu offers an escalating series of generic upgrades for the arcology. A few of these have minor beneficial side effects, but all share the same main effect: they raise the arcology's maximum prosperity level. You will be informed on the end of week report if your arcology is nearing, at, or over this level. Upgrading early is //not// useless, since prosperity will increase more rapidly if the cap is much higher than the current prosperity level. @@ -2186,7 +2186,7 @@ LORE: FREE CITIES CULTURE TOMORROW <br><br>For the first time in modern memory, people - slaves - in the Free Cities are, in large numbers, doing exactly what their doctors recommend. Properly managed slaves eat right, exercise regularly, and do not smoke, drink, or do recreational drugs. These simple but revolutionary changes mean that the more valuable classes of slave are healthier, on average, than any group of human beings has ever been. - <br><br>Naturally, fetishism, competitiveness, and leisure have intersected to create in the Free Cities a constant escalation of physical oneupmanship when it comes to the training of slaves. Wonderfully muscled specimens have become very common, with feats of athletic prowess cited alongside sexual accomplishments without any distinction. The arcology owners most @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ to the human form are creating societies of uniform physical perfection unlike anything in human history. + <br><br>Naturally, fetishism, competitiveness, and leisure have intersected to create in the Free Cities a constant escalation of physical one-upmanship when it comes to the training of slaves. Wonderfully muscled specimens have become very common, with feats of athletic prowess cited alongside sexual accomplishments without any distinction. The arcology owners most @@.hotpink;[[devoted|Encyclopedia][$encyclopedia = "From Rebellious to Devoted"]]@@ to the human form are creating societies of uniform physical perfection unlike anything in human history. <br><br> -- Lawrence, J. K., and Bolingbroke, D. S., __Trends in Free Cities Culture, 2031__ //Journal of Modern Social Sciences, International Edition, February 2032//// @@ -2319,7 +2319,7 @@ LORE: INTERVIEWS <br>Well, Sir, those are my roles as one of the Prophet's many slave acolytes. In daily life, do you mean, Sir? Well, as I said I exercise a great deal. To maintain my body I must eat a lot, so I have to work hard or I will become fat. Other than that, I live up above us, Sir, in a lower level of the Prophet's penthouse, in a room with my wife. It's a simple life. <br><br>//Your wife?// - <br>Yes, Sir, my wife Perserverance. There she is, Sir, on the other side of the plaza. One of the ones dressed like me. She has bigger boobs, but she isn't as pregnant right now. [points] + <br>Yes, Sir, my wife Perseverance. There she is, Sir, on the other side of the plaza. One of the ones dressed like me. She has bigger boobs, but she isn't as pregnant right now. [points] <br><br>//She looks a lot like you.// <br>Well, she should, Sir, we're sisters. The Prophet says that slave marriages between sisters are very holy, as long as no seed passes between them, and of course no seed can pass between us, because we both have pussies. I love her very much. diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw index 8078172630e2a47bc66fbbce6e0a0f89b15ff6fe..c0129c3c92ad6c01e4f3793c9ac617c47012c600 100644 --- a/src/init/setupVars.tw +++ b/src/init/setupVars.tw @@ -299,11 +299,11 @@ equine: {type: "equine", normalOvaMin:1, normalOvaMax: 1, normalBirth: 48, minLi <<set setup.veryYoungCareers = ["a babysitter", "a beggar", "a beggar", "a bully hunter", "a bully", "a camp counselor", "a cheerleader", "a child actress", "a child prodigy", "a child prostitute", "a child prostitute", "a child soldier", "a child soldier", "a club manager", "a club recruiter", "a club treasurer", "a cum dump", "a dropout", "a dropout", "a drug mule", "a farmer's daughter", "a girl scout", "a girl scout", "a hall monitor", "a handmaiden", "a hospital volunteer", "a housesitter", "a juvenile delinquent", "a juvenile delinquent", "a latchkey kid", "a lemonade stand operator", "a marching band leader", "a meat toilet", "a military brat", "a model-UN star", "a model", "a noblewoman", "a pageant star", "a paper girl", "a part-time farm laborer", "a pick-pocket", "a refugee", "a refugee", "a refugee", "a school nurse's assistant", "a shrine maiden", "a street thug", "a street urchin", "a street urchin", "a street urchin", "a student council president", "a student from a boarding school", "a student from a private school", "a student from a public school", "a student from a public school", "a student from a public school", "a student from a public school", "a student from a public school", "a sweatshop worker", "a sweatshop worker", "a sweatshop worker", "a sweatshop worker", "a teacher's pet", "an apprentice", "an aspiring pop star", "an idol", "an orphan", "an orphan", "an orphan", "an orphan", "an orphan", "being homeschooled by her parents", "captain of the kendo club", "from a lower class family", "from a lower class family", "from a lower class family", "from a middle class family", "from a middle class family", "from an upper class family", "homeless", "homeless", "homeless"]>> /* pregmod */ -<<set setup.youngCareers = ["a babysitter", "a ballerina", "a barista", "a bartender", "a beggar", "a blogger", "a butler", "a camgirl", "a camp counselor", "a camwhore", "a cashier", "a cheerleader", "a cocktail waitress", "a comedian", "a con artist", "a cook", "a courier", "a cowgirl", "a criminal", "a croupier", "a cum dump", "a dairy worker", "a dancer", "a delivery woman", "a drug mule", "a factory worker", "a farm laborer", "a farm laborer", "a farmer's daughter", "a florist", "a gang member", "a gang member", "a gardener", "a groomer", "a gymnast", "a handmaiden", "a house DJ", "a housesitter", "a housewife", "a law enforcement officer", "a lifeguard", "a magician's assistant", "a maid", "a mail-order bride", "a masseuse", "a meat toilet", "a mechanic", "a medical student", "a mistress", "a model", "a musician", "a noblewoman", "a nun", "a nurse", "a paramedic", "a party girl", "a personal assistant", "a personal trainer", "a pirate", "a political activist", "a porn star", "a prisoner", "a programmer", "a prostitute", "a racing driver", "a reality show star", "a receptionist", "a refugee", "a ride attendant", "a saleswoman", "a school nurse", "a secretary", "a security guard", "a service worker", "a shrine maiden", "a shut-in", "a soldier", "a street performer", "a street vendor", "a stripper", "a student", "a student", "a student", "a switchboard operator", "a teaching assistant", "a tour guide", "a trophy wife", "a truck driver", "a video game streamer", "a waitress", "a wet nurse", "a yoga instructor", "an actress", "an air hostess", "an apprentice", "an arcade attendant", "an artist", "an aspiring pop star", "an assassin", "an athlete", "an au pair", "an escort", "an exotic dancer", "an idol", "an intern", "an office worker", "homeless", "in a militia", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> +<<set setup.youngCareers = ["a babysitter", "a ballerina", "a barista", "a bartender", "a beggar", "a blogger", "a butler", "a camgirl", "a camp counselor", "a camwhore", "a cashier", "a cheerleader", "a cocktail waitress", "a comedian", "a con artist", "a cook", "a courier", "a cowgirl", "a criminal", "a croupier", "a cum dump", "a dairy worker", "a dancer", "a delivery woman", "a dominatrix", "a drug mule", "a factory worker", "a farm laborer", "a farm laborer", "a farmer's daughter", "a florist", "a gang member", "a gang member", "a gardener", "a groomer", "a gymnast", "a handmaiden", "a house DJ", "a housesitter", "a housewife", "a law enforcement officer", "a lifeguard", "a magician's assistant", "a maid", "a mail-order bride", "a masseuse", "a meat toilet", "a mechanic", "a medical student", "a mistress", "a model", "a musician", "a noblewoman", "a nun", "a nurse", "a paramedic", "a party girl", "a personal assistant", "a personal trainer", "a pirate", "a political activist", "a porn star", "a prisoner", "a programmer", "a prostitute", "a racing driver", "a reality show star", "a receptionist", "a refugee", "a ride attendant", "a saleswoman", "a school nurse", "a secretary", "a security guard", "a service worker", "a shrine maiden", "a shut-in", "a soldier", "a street performer", "a street vendor", "a stripper", "a student", "a student", "a student", "a switchboard operator", "a teaching assistant", "a tour guide", "a trophy wife", "a truck driver", "a video game streamer", "a waitress", "a wet nurse", "a yoga instructor", "an actress", "an air hostess", "an apprentice", "an arcade attendant", "an artist", "an aspiring pop star", "an assassin", "an athlete", "an au pair", "an escort", "an exotic dancer", "an idol", "an intern", "an office worker", "homeless", "in a militia", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> <<set setup.educatedCareers = ["a ballerina", "a banker", "a bureaucrat", "a business owner", "a businessman", "a captain", "a chemist", "a chief of police", "a classical dancer", "a classical musician", "a coach", "a college scout", "a concierge", "a coroner", "a corporate executive", "a cosmetologist", "a counselor", "a criminal", "a critic", "a cult leader", "a dean", "a dentist", "a dentist", "a director", "a dispatch officer", "a doctor", "a historian", "a housekeeper", "a journalist", "a journalist", "a judge", "a lawyer", "a librarian", "a lobbyist", "a madam", "a manager", "a mechanic", "a mediator", "a medical student", "a mercenary", "a military officer", "a military recruiter", "a nanny", "a noblewoman", "a nun", "a painter", "a paramedic", "a personal assistant", "a pharmacist", "a physician", "a photographer", "a pilot", "a poet", "a police detective", "a police negotiator", "a police officer", "a political activist", "a politician", "a practitioner", "a principal", "a prison warden", "a private detective", "a private instructor", "a procuress", "a producer", "a professional bartender", "a professor", "a programmer", "a prostitute", "a psychologist", "a refugee", "a scholar", "a scientist", "a sculptor", "a secretary", "a serial divorcee", "a shut-in", "a stockbroker", "a surgeon", "a teacher", "a teaching assistant", "a therapist", "a train conductor", "a transporter", "a veterinarian", "a wedding planner", "a writer", "a zookeeper", "an actress", "an air hostess", "an animator", "an archaeologist", "an architect", "an artist", "an assassin", "an astronaut", "an economist", "an editor", "an engineer", "an escort", "an estate agent", "an investor", "an MS pilot", "an office worker", "an orchestra conductor", "retired", "unemployed"]>> -<<set setup.uneducatedCareers = ["a baker", "a barber", "a barista", "a bartender", "a beekeeper", "a beggar", "a blacksmith", "a blogger", "a bodyguard", "a bouncer", "a bounty hunter", "a boxer", "a brewer", "a bullfighter", "a bus driver", "a butcher", "a butler", "a camgirl", "a camp counselor", "a camwhore", "a candlestick maker", "a caregiver", "a carpenter", "a cashier", "a charity worker", "a chauffeur", "a cheerleader", "a chiropractor", "a clown", "a cobbler", "a cocktail waitress", "a comedian", "a con artist", "a construction worker", "a cook", "a cowgirl", "a criminal", "a croupier", "a cum dump", "a dairy worker", "a dancer", "a delivery woman", "a driller", "a drug mule", "a factory worker", "a farm laborer", "a farmer's daughter", "a farmer", "a firefighter", "a fisherwoman", "a florist", "a fortune teller", "a gang leader", "a gang member", "a gardener", "a gravedigger", "a groomer", "a gymnast", "a handmaiden", "a hotel manager", "a house DJ", "a housewife", "a hunter", "a janitor", "a landlady", "a launderer", "a law enforcement officer", "a lifeguard", "a local news anchor", "a lumberjack", "a magician's assistant", "a maid", "a mail carrier", "a mail-order bride", "a masseuse", "a masseuse", "a meat toilet", "a medic", "a medic", "a medium", "a messenger", "a midwife", "a milkmaid", "a mime", "a miner", "a missionary", "a mistress", "a model", "a mortician", "a musician", "a nanny", "a nurse", "a paramedic", "a park ranger", "a party girl", "a peddler", "a personal trainer", "a pimp", "a pirate", "a plumber", "a political activist", "a prison guard", "a prisoner", "a procuress", "a prostitute", "a racing driver", "a radio show host", "a rancher", "a receptionist", "a referee", "a refugee", "a revolutionary", "a ride attendant", "a roadie", "a rodeo star", "a sailor", "a saleswoman", "a school nurse", "a seamstress", "a secretary", "a security guard", "a service worker", "a shepherd", "a shrine maiden", "a soldier", "a stage magician", "a street performer", "a street vendor", "a stripper", "a student", "a student athlete", "a stuntwoman", "a switchboard operator", "a tailor", "a talent scout", "a taxi driver", "a teacher", "a tour guide", "a trophy wife", "a truck driver", "a waitress", "a weathergirl", "a welder", "a wet nurse", "a whaler", "a wrestler", "a zookeeper", "an acrobat", "an actress", "an arcade attendant", "an artist", "an aspiring pop star", "an athlete", "an electrician", "an enforcer", "an enforcer", "an escort", "an exotic dancer", "an exterminator", "an innkeeper", "an office worker", "an orderly", "homeless", "in a militia", "retired", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> +<<set setup.uneducatedCareers = ["a baker", "a barber", "a barista", "a bartender", "a beekeeper", "a beggar", "a blacksmith", "a blogger", "a bodyguard", "a bouncer", "a bounty hunter", "a boxer", "a brewer", "a bullfighter", "a bus driver", "a butcher", "a butler", "a camgirl", "a camp counselor", "a camwhore", "a candlestick maker", "a caregiver", "a carpenter", "a cashier", "a charity worker", "a chauffeur", "a cheerleader", "a chiropractor", "a clown", "a cobbler", "a cocktail waitress", "a comedian", "a con artist", "a construction worker", "a cook", "a cowgirl", "a criminal", "a croupier", "a cum dump", "a dairy worker", "a dancer", "a delivery woman", "a dominatrix", "a driller", "a drug mule", "a factory worker", "a farm laborer", "a farmer's daughter", "a farmer", "a firefighter", "a fisherwoman", "a florist", "a fortune teller", "a gang leader", "a gang member", "a gardener", "a gravedigger", "a groomer", "a gymnast", "a handmaiden", "a hotel manager", "a house DJ", "a housewife", "a hunter", "a janitor", "a landlady", "a launderer", "a law enforcement officer", "a lifeguard", "a local news anchor", "a lumberjack", "a magician's assistant", "a maid", "a mail carrier", "a mail-order bride", "a masseuse", "a masseuse", "a meat toilet", "a medic", "a medic", "a medium", "a messenger", "a midwife", "a milkmaid", "a mime", "a miner", "a missionary", "a mistress", "a model", "a mortician", "a musician", "a nanny", "a nurse", "a paramedic", "a park ranger", "a party girl", "a peddler", "a personal trainer", "a pimp", "a pirate", "a plumber", "a political activist", "a prison guard", "a prisoner", "a procuress", "a prostitute", "a racing driver", "a radio show host", "a rancher", "a receptionist", "a referee", "a refugee", "a revolutionary", "a ride attendant", "a roadie", "a rodeo star", "a sailor", "a saleswoman", "a school nurse", "a seamstress", "a secretary", "a security guard", "a service worker", "a shepherd", "a shrine maiden", "a soldier", "a stage magician", "a street performer", "a street vendor", "a stripper", "a student", "a student athlete", "a stuntwoman", "a switchboard operator", "a tailor", "a talent scout", "a taxi driver", "a teacher", "a tour guide", "a trophy wife", "a truck driver", "a waitress", "a weathergirl", "a welder", "a wet nurse", "a whaler", "a wrestler", "a zookeeper", "an acrobat", "an actress", "an arcade attendant", "an artist", "an aspiring pop star", "an athlete", "an electrician", "an enforcer", "an enforcer", "an escort", "an exotic dancer", "an exterminator", "an innkeeper", "an office worker", "an orderly", "homeless", "in a militia", "retired", "unemployed", "unemployed", "unemployed", "unemployed", "unemployed"]>> <<set setup.gratefulCareers = ["a beggar", "a drug mule", "a peddler", "a pick-pocket", "a prisoner", "a refugee", "a shut-in", "a street urchin", "a student from a boarding school", "a sweatshop worker", "a thief", "an orphan", "from a lower class family", "homeless", "unemployed"]>> @@ -313,7 +313,7 @@ equine: {type: "equine", normalOvaMin:1, normalOvaMax: 1, normalBirth: 48, minLi <<set setup.whoreCareers = ["a child prostitute", "a criminal", "a cum dump", "a Futanari Sister", "a juvenile delinquent", "a mail-order bride", "a meat toilet", "a mistress", "a model", "a pageant star", "a pirate", "a porn star", "a prostitute", "a reality show star", "a saleswoman", "a serial divorcee", "a stripper", "a trophy wife", "an escort", "an exotic dancer"]>> -<<set setup.HGCareers = ["a captain", "a corporate executive", "a director", "a gang leader", "a judge", "a lawyer", "a leading arcology citizen", "a military officer", "a model-UN star", "a noblewoman", "a politician", "a Queen", "a slaver", "a student council president"]>> +<<set setup.HGCareers = ["a captain", "a corporate executive", "a director", "a dominatrix", "a gang leader", "a judge", "a lawyer", "a leading arcology citizen", "a military officer", "a model-UN star", "a noblewoman", "a politician", "a Queen", "a slaver", "a student council president"]>> <<set setup.madamCareers = ["a banker", "a business owner", "a businessman", "a camp counselor", "a club manager", "a hotel manager", "a landlady", "a madam", "a manager", "a park ranger", "a pimp", "a procuress", "a stockbroker", "an innkeeper"]>> diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 988bf20d34331d0ebd7571f66d3e0ac7bbe19637..99f2fdc5dd436fa630de2647ba3ad205574673d3 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -48,8 +48,6 @@ You should have received a copy of the GNU General Public License along with thi <<set $slaves[_i].sisters = 0>> <<set $slaves[_i].canRecruit = 0>> <<set $slaves[_i].breedingMark = 0>> - <<set $slaves[_i].reservedChildren = 0>> - <<set $slaves[_i].reservedChildrenNursery = 0>> <<if $arcologies[0].FSRomanRevivalist > 90>> <<set $slaves[_i].nationality = "Roman Revivalist">> <<elseif $arcologies[0].FSAztecRevivalist > 90>> @@ -174,8 +172,6 @@ You should have received a copy of the GNU General Public License along with thi <<if ndef $PC.markings>> <<set $PC.markings = "none">> <</if>> - <<set $PC.reservedChildren = 0>> - <<set $PC.reservedChildrenNursery = 0>> <<else>> <<set $slaves = []>> <<set $slavesOriginal = []>> /* not used by pregmod */ @@ -835,10 +831,11 @@ You should have received a copy of the GNU General Public License along with thi <<set $toysBoughtButtPlugs = 0>> <<set $toysBoughtButtPlugTails = 0>> <<set $buckets = 0>> + /* assistant FS appearance variable */ <<set $assistantFSAppearance = "default">> - -<<set $assistantPronouns = {pronoun: "she", possessivePronoun: "hers", possessive: "her", object: "her", objectReflexive: "herself", noun: "girl"}>> +<<set $assistantPronouns = {pronoun: "it", possessivePronoun: "its", possessive: "its", object: "it", objectReflexive: "itself", noun: "program"}>> +<<set $marketAssistantPronouns = {pronoun: "it", possessivePronoun: "its", possessive: "its", object: "it", objectReflexive: "itself", noun: "program"}>> /*pregmod variables */ <<set $specialSlavesPriceOverride = 0>> diff --git a/src/js/DefaultRules.tw b/src/js/DefaultRules.tw index 55f223212137ae4ff4fece7535ff48623d23a29c..3baf4a4b50e69a4af0df9df89f643ad1d805065e 100644 --- a/src/js/DefaultRules.tw +++ b/src/js/DefaultRules.tw @@ -219,7 +219,7 @@ window.DefaultRules = (function() { delete rule.setAssignment; } break; - + case "be confined in the cellblock": if ((V.cellblockSlaves < V.cellblock && ((slave.devotion < -20 && slave.trust >= -20) || (slave.devotion < -50 && slave.trust >= -50)))) break; @@ -368,6 +368,10 @@ window.DefaultRules = (function() { slave.collar = rule.collar; if ((slave.collar == "none")) r += `${slave.slaveName} has been given no collar.`; + else if ((slave.collar == "pretty jewelry")) + r += `${slave.slaveName} has been given ${slave.collar}.`; + else if ((["dildo gag", "massive dildo gag", "ball gag", "bit gag", "neck corset", "porcelain mask", "bell collar", "bowtie"].includes(slave.collar))) + r += `${slave.slaveName} has been given a ${slave.collar}.`; else r += `${slave.slaveName} has been given a ${slave.collar} collar.`; } @@ -640,7 +644,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>slave.slaveName is a virgin and has been given a slave.vaginalAccessory for her pussy.`; + r += `<br>slave.slaveName is a virgin and has been given a ${slave.vaginalAccessory} for her pussy.`; break; } } @@ -696,7 +700,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} has been given a slave.vaginalAccessory for her pussy.`; + r += `<br>${slave.slaveName} has been given a ${slave.vaginalAccessory} for her pussy.`; break; } } @@ -828,7 +832,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} is an anal virgin and has been given a slave.buttplug for her asshole.`; + r += `<br>${slave.slaveName} is an anal virgin and has been given a ${slave.buttplug} for her asshole.`; break; } } @@ -885,7 +889,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} has been given a slave.buttplug for her asshole.`; + r += `<br>${slave.slaveName} has been given a ${slave.buttplug} for her asshole.`; break; } } @@ -906,7 +910,7 @@ window.DefaultRules = (function() { break; default: - r += `<br>${slave.slaveName} has been given a slave.buttplugAttachment to attach to her buttplug.`; + r += `<br>${slave.slaveName} has been given a ${slave.buttplugAttachment} to attach to her buttplug.`; break; } } diff --git a/src/js/assayJS.tw b/src/js/assayJS.tw index e05a98340fea65a0f4a090431e4aa33e7f4fe8e8..1b5a99fde6e5dbc2cfc48a8bffc72ebb7f39e94c 100644 --- a/src/js/assayJS.tw +++ b/src/js/assayJS.tw @@ -235,6 +235,14 @@ window.properTitle = function properTitle() { else return "Ma'am"; }; +// helper function returning slave's title for PC in situations where WrittenMaster() is inappropriate +window.properMaster = function properMaster() { + const PC = State.variables.PC; + if (PC.customTitle) return PC.customTitle; + else if (PC.title !== 0) return "Master"; + else return "Mistress"; +}; + window.newSlave = function newSlave(slave) { const V = State.variables; @@ -2066,13 +2074,13 @@ window.MenialPopCap = function MenialPopCap () { V.menialDemandFactor -= overMenialCap; V.fuckdolls -= overMenialCap; overMenialCap = 0; - r += "You don't have enough room for all your fuckdolls and are obliged to sell some."; + r += "You don't have enough room for all your Fuckdolls and are obliged to sell some."; } else { V.cash += V.fuckdolls * (price * 2); V.menialDemandFactor -= V.fuckdolls; overMenialCap -= V.fuckdolls; V.fuckdolls = 0; - r += "You don't have enough room for your fuckdolls and are obliged to sell them."; + r += "You don't have enough room for your Fuckdolls and are obliged to sell them."; } } if (overMenialCap > 0 && V.menialBioreactors > 0) { diff --git a/src/js/datatypeCleanupJS.tw b/src/js/datatypeCleanupJS.tw index 748d5f6b5a21c5e9cfc717e1445df282a9bd2db6..d3f7b7f66273b4d230c11186c65c45aa46f179c1 100644 --- a/src/js/datatypeCleanupJS.tw +++ b/src/js/datatypeCleanupJS.tw @@ -197,8 +197,6 @@ window.slavePregnancyDatatypeCleanup = function slavePregnancyDatatypeCleanup(sl slave.ovaries = Math.clamp(+slave.ovaries, 0, 1) || 0; slave.vasectomy = Math.clamp(+slave.vasectomy, 0, 1) || 0; slave.mpreg = Math.clamp(+slave.mpreg, 0, 1) || 0; - slave.reservedChildren = WombReserveCount(slave, "incubator") || 0; - slave.reservedChildrenNursery = WombReserveCount(slave, "nursery") || 0; if (slave.pregAdaptation !== 0) { slave.pregAdaptation = Math.max(+slave.pregAdaptation, 0) || 50; } @@ -245,7 +243,9 @@ window.slaveGenitaliaDatatypeCleanup = function slaveGenitaliaDatatypeCleanup(sl slave.prostate = Math.clamp(+slave.prostate, 0, 3) || 0; } slave.balls = Math.max(+slave.balls, 0) || 0; - slave.scrotum = Math.max(+slave.scrotum, 0) || slave.balls; + if (slave.scrotum !== 0) { + slave.scrotum = Math.max(+slave.scrotum, 0) || slave.balls; + } }; window.slaveImplantsDatatypeCleanup = function slaveImplantsDatatypeCleanup(slave) { @@ -767,8 +767,6 @@ window.childPregnancyDatatypeCleanup = function childPregnancyDatatypeCleanup(ch child.ovaries = Math.clamp(+child.ovaries, 0, 1) || 0; child.vasectomy = Math.clamp(+child.vasectomy, 0, 1) || 0; child.mpreg = Math.clamp(+child.mpreg, 0, 1) || 0; - child.reservedChildren = WombReserveCount(child, "incubator") || 0; - child.reservedChildrenNursery = WombReserveCount(child, "nursery") || 0; if (child.pregAdaptation !== 0) { child.pregAdaptation = Math.max(+child.pregAdaptation, 0) || 50; } @@ -798,7 +796,9 @@ window.childGenitaliaDatatypeCleanup = function childGenitaliaDatatypeCleanup(ch child.prostate = Math.clamp(+child.prostate, 0, 3) || 0; } child.balls = Math.max(+child.balls, 0) || 0; - child.scrotum = Math.max(+child.scrotum, 0) || child.balls; + if (child.scrotum !== 0) { + child.scrotum = Math.max(+child.scrotum, 0) || child.balls; + } }; window.childImplantsDatatypeCleanup = function childImplantsDatatypeCleanup(child) { @@ -1166,16 +1166,14 @@ window.PCDatatypeCleanup = function PCDatatypeCleanup() { V.playerAging = Math.clamp(+V.playerAging, 0, 2) || 2; } PC.newVag = Math.clamp(+PC.newVag, 0, 1) || 0; - PC.reservedChildren = WombReserveCount(PC, "incubator") || 0; - PC.reservedChildrenNursery = WombReserveCount(PC, "nursery") || 0; PC.fertDrugs = Math.clamp(+PC.fertDrugs, 0, 1) || 0; PC.forcedFertDrugs = Math.max(+PC.forcedFertDrugs, 0) || 0; PC.staminaPills = Math.clamp(+PC.staminaPills, 0, 1) || 0; PC.storedCum = Math.max(+PC.storedCum, 0) || 0; PC.mpreg = 0; /* So knockMeUp() may be used with the PC */ - PC.lactation = Math.max(+PC.lactation, 0) || 0; PC.lactationDuration = Math.max(+PC.lactationDuration, 0) || 0; + generatePlayerPronouns(PC); if (PC.age !== undefined) { delete PC.age; @@ -1231,8 +1229,17 @@ window.ArcologyDatatypeCleanup = function ArcologyDatatypeCleanup() { V.GDP = Math.max(+V.GDP, 1) || 278.6; V.NPCSlaves = Math.max(+V.NPCSlaves, 0) || 0; V.menials = Math.max(+V.menials, 0) || 0; - V.fuckdolls = Math.max(+V.fuckdolls , 0) || 0; - V.menialBioreactors = Math.max(+V.menialBioreactors , 0) || 0; + V.fuckdolls = Math.max(+V.fuckdolls, 0) || 0; + V.menialBioreactors = Math.max(+V.menialBioreactors, 0) || 0; + + V.assistant = Math.clamp(+V.assistant, 0, 1) || 0; + if (typeof V.assistantPronouns != "object") { + V.assistantPronouns = {}; + } + if (typeof V.marketAssistantPronouns != "object") { + V.marketAssistantPronouns = {}; + } + generateAssistantPronouns(); V.foodCost = Math.trunc(2500/V.economy); V.drugsCost = Math.trunc(10000/V.economy); diff --git a/src/js/familyTree.tw b/src/js/familyTree.tw index fd4461833e0b5bfe0012e49730538989403c60a6..6cf960120fba00c4f96f0ced269cc202c6f26aa9 100644 --- a/src/js/familyTree.tw +++ b/src/js/familyTree.tw @@ -8,7 +8,7 @@ var lastActiveSlave, lastSlaves, lastPC; <div id="familyTree"></div> <span id="familyTreeLink"> - <<link "Pull up the file on her family tree.">> + <<link "Pull up the file on $his family tree.">> <<replace #familyTreeLink>> <<run renderFamilyTree($slaves, $activeSlave.ID)>> <</replace>> diff --git a/src/js/generateGenetics.tw b/src/js/generateGenetics.tw index 854d626824b17a48294d972467e6fb234221b01e..411d867dc78b18a71558e47b1d0ac780a24c1208 100644 --- a/src/js/generateGenetics.tw +++ b/src/js/generateGenetics.tw @@ -825,17 +825,17 @@ window.generateChild = function(mother, ova, destination) { if (childName.indexOf("ovum") == 0) { if (genes.mother == -1) { if (genes.father <= 0) { - child.slaveName = "Your son"; + child.slaveName = "Your daughter"; } else { - child.slaveName = `Your and ${genes.fatherName}'s son`; + child.slaveName = `Your and ${genes.fatherName}'s daughter`; } } else { if (genes.father == -1) { - child.slaveName = `${genes.motherName} and your son`; + child.slaveName = `${genes.motherName} and your daughter`; } else if (genes.father > 0) { - child.slaveName = `${genes.motherName} and ${genes.fatherName}'s son`; + child.slaveName = `${genes.motherName} and ${genes.fatherName}'s daughter`; } else { - child.slaveName = `${genes.motherName}'s bastard son`; + child.slaveName = `${genes.motherName}'s bastard daughter`; } } } else { diff --git a/src/js/pregJS.tw b/src/js/pregJS.tw index 2e41463211212efd89ccda2029c8a0eb7355feef..d379a138601966f19a6cac5621e9e28bf5f529dc 100644 --- a/src/js/pregJS.tw +++ b/src/js/pregJS.tw @@ -63,7 +63,7 @@ window.bellyAdjective = function(slave) { /* calculates and returns expected ovum count during conception*/ window.setPregType = function(actor) { - /* IMHO rework is posssible. Can be more interesting to play, if this code will take in account more body conditions - age, fat, food, hormone levels, etc. */ + /* IMHO rework is possible. Can be more interesting to play, if this code will take in account more body conditions - age, fat, food, hormone levels, etc. */ var ovum = jsRandom(actor.pregData.normalOvaMin, actor.pregData.normalOvaMax); //for default human profile it's always 1. var fertilityStack = 0; // adds an increasing bonus roll for stacked fertility drugs diff --git a/src/js/rbuttonJS.tw b/src/js/rbuttonJS.tw index 4e1bf851f20520b2919657072782482e15adffc6..1c842ff6b94513bd663953000c14123b9a54a39a 100644 --- a/src/js/rbuttonJS.tw +++ b/src/js/rbuttonJS.tw @@ -103,4 +103,4 @@ Macro.add('rbutton', { Wikifier.setValue(varName, checkValue); } } - }); +}); diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw index d0df39bc8fb4da8ca69d81a719bbe27c074b5876..cdac390187a1f2bc127b30a8dd963bed99f287eb 100644 --- a/src/js/rulesAssistantOptions.tw +++ b/src/js/rulesAssistantOptions.tw @@ -1532,8 +1532,8 @@ window.rulesAssistantOptions = (function() { constructor() { const pairs = [ ["No default setting", "no default setting"], - ["B Cup", 350], - ["D Cup", 1000], + ["B-Cup", 350], + ["D-Cup", 1000], ["Monstrous", 9000], ["Unlimited", 48000], ["None", 0] diff --git a/src/js/slaveGenerationJS.tw b/src/js/slaveGenerationJS.tw index 6ec794cb8ec7e72e8028f0e619a07499ebd269cf..62987b67111b8d6fad147b4ab43957be37249629 100644 --- a/src/js/slaveGenerationJS.tw +++ b/src/js/slaveGenerationJS.tw @@ -1698,8 +1698,6 @@ window.BaseSlave = function BaseSlave() { HGExclude: 0, ballType: "human", eggType: "human", - reservedChildren: 0, - reservedChildrenNursery: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], diff --git a/src/js/slaveSummaryWidgets.tw b/src/js/slaveSummaryWidgets.tw index 1cb9a8bedf985eaf4066b5aba50651d79a9b2de5..560fd3dc2d0b3b3867afc7914b1bc4593f22892c 100644 --- a/src/js/slaveSummaryWidgets.tw +++ b/src/js/slaveSummaryWidgets.tw @@ -141,7 +141,7 @@ window.SlaveSummaryUncached = (function(){ } else { r += `pink`; } - r += `">`; + r += `"> `; if (slave.hormoneBalance < -400) { r += `Overwhelmingly masculine`; } else if (slave.hormoneBalance <= -300) { diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 8705bc8e03016d8379bbe1c029c7063504902e7c..a209bd90ae2f0e10a66357dac9f818e53ef33be2 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -1039,3 +1039,70 @@ window.resetFSCredits = function() { } V.FSCredits = Math.max(Math.trunc(V.FSGotRepCredits - activeFS), 0); }; + +window.generatePlayerPronouns = function(PC) { + if (PC.title === 0) { + PC.pronoun = "she"; + PC.possessivePronoun = "hers"; + PC.possessive = "her"; + PC.object = "her"; + PC.objectReflexive = "herself"; + PC.noun = "woman"; + } else { + PC.pronoun = "he"; + PC.possessivePronoun = "his"; + PC.possessive = "his"; + PC.object = "him"; + PC.objectReflexive = "himself"; + PC.noun = "man"; + } +}; + +window.generateAssistantPronouns = function() { + const V = State.variables; + if (V.assistant === 0) { + V.assistantPronouns.pronoun = "it"; + V.assistantPronouns.possessivePronoun = "its"; + V.assistantPronouns.possessive = "its"; + V.assistantPronouns.object = "it"; + V.assistantPronouns.objectReflexive = "itself"; + V.assistantPronouns.noun = "program"; + } else if ((V.assistantAppearance === "incubus") && (V.diversePronouns === 1)) { + V.assistantPronouns.pronoun = "he"; + V.assistantPronouns.possessivePronoun = "his"; + V.assistantPronouns.possessive = "his"; + V.assistantPronouns.object = "him"; + V.assistantPronouns.objectReflexive = "himself"; + V.assistantPronouns.noun = "boy"; + } else { + V.assistantPronouns.pronoun = "she"; + V.assistantPronouns.possessivePronoun = "hers"; + V.assistantPronouns.possessive = "her"; + V.assistantPronouns.object = "her"; + V.assistantPronouns.objectReflexive = "herself"; + V.assistantPronouns.noun = "girl"; + } + + if (V.assistant === 0) { + V.marketAssistantPronouns.pronoun = "it"; + V.marketAssistantPronouns.possessivePronoun = "its"; + V.marketAssistantPronouns.possessive = "its"; + V.marketAssistantPronouns.object = "it"; + V.marketAssistantPronouns.objectReflexive = "itself"; + V.marketAssistantPronouns.noun = "program"; + } else if ((V.assistantAppearance === "succubus") && (V.diversePronouns === 1)) { + V.marketAssistantPronouns.pronoun = "he"; + V.marketAssistantPronouns.possessivePronoun = "his"; + V.marketAssistantPronouns.possessive = "his"; + V.marketAssistantPronouns.object = "him"; + V.marketAssistantPronouns.objectReflexive = "himself"; + V.marketAssistantPronouns.noun = "boy"; + } else { + V.marketAssistantPronouns.pronoun = "she"; + V.marketAssistantPronouns.possessivePronoun = "hers"; + V.marketAssistantPronouns.possessive = "her"; + V.marketAssistantPronouns.object = "her"; + V.marketAssistantPronouns.objectReflexive = "herself"; + V.marketAssistantPronouns.noun = "girl"; + } +}; diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw index 0c96b764552e3a383d033d4c6271d765a19abe5e..32587040d2532b8b46f0fe6e525290618fff364f 100644 --- a/src/js/utilJS.tw +++ b/src/js/utilJS.tw @@ -38,7 +38,7 @@ * do lots of work generating and re-generating random heights until * one "fits". * - * Anon's explination: + * Anon's explanation: * limitMult: [0, -30] * * This specifies a range going up from 0 to -30. It needs to go [-30, 0] instead. Same thing with [0, -5] two lines down. note: technically, this isn't true, because for some bizarre reason Height.random reverses the numbers for you if you get them wrong. But it's important to establish good habits, so. @@ -1139,25 +1139,23 @@ window.induceLactation = function induceLactation(slave) { } } return r; -} +}; window.ResearchLabStockPile = function() { + V = State.variables; return `__Stockpile__ - Prosthetics interfaces: <<print commaNum($stockpile.basicPLimbInterface+ - $stockpile.advPLimbInterface)>> + Prosthetics interfaces: ${commaNum(V.stockpile.basicPLimbInterface + V.stockpile.advPLimbInterface)} Basic : $stockpile.basicPLimbInterface Advanced: $stockpile.advPLimbInterface - Limbs: <<print commaNum($stockpile.basicPLimb+$stockpile.advSexPLimb+ - $stockpile.advGracePLimb+$stockpile.advCombatPLimb+$stockpile.cyberneticPLimb)>> + Limbs: ${commaNum(V.stockpile.basicPLimb + V.stockpile.advSexPLimb + V.stockpile.advGracePLimb + V.stockpile.advCombatPLimb + V.stockpile.cyberneticPLimb)} Basic: $stockpile.basicPLimb Sex: $stockpile.advSexPLimb Beauty: $stockpile.advGracePLimb Combat: $stockpile.advCombatPLimb Cybernetic: $stockpile.cyberneticPLimb - Implants: <<print commaNum($stockpile.ocularImplant+$stockpile.cochlearImplant - +$stockpile.erectileImplant)>> + Implants: ${commaNum(V.stockpile.ocularImplant + V.stockpile.cochlearImplant + V.stockpile.erectileImplant)} Ocular: $stockpile.ocularImplant Cochlear: $stockpile.cochlearImplant - // Erectile: $stockpile.erectileImplant - Electrolarynx: $stockpile.electrolarynx` -} \ No newline at end of file + // Erectile: $stockpile.erectileImplant// + Electrolarynx: $stockpile.electrolarynx`; +}; diff --git a/src/js/vignettes.tw b/src/js/vignettes.tw index eb14308c63c725591cfef9c6b93ee3837f14d8ed..20046ade726a59b60c8cf40f429f9233104d99fd 100644 --- a/src/js/vignettes.tw +++ b/src/js/vignettes.tw @@ -1,4 +1,4 @@ -::VignettesJS [script] +:: VignettesJS [script] window.GetVignette = function GetVignette(slave) { const V = State.variables; @@ -179,7 +179,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -566,7 +566,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a customer get past their religious hangups through sex with the friendly neighborhood whore,`, + text: `${he} helps a customer get past their religious hang-ups through sex with the friendly neighborhood whore,`, type: "rep", effect: 1, }); @@ -1763,7 +1763,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -2027,7 +2027,7 @@ window.GetVignette = function GetVignette(slave) { break; case "neglectful": vignettes.push({ - text: `${he} brings a denial fetishest to orgasm three times without cumming ${himself}, impressing them completely,`, + text: `${he} brings a denial fetishist to orgasm three times without cumming ${himself}, impressing them completely,`, type: "rep", effect: 3, }); @@ -2062,7 +2062,7 @@ window.GetVignette = function GetVignette(slave) { break; case "abusive": vignettes.push({ - text: `${he} abuses a rival public servant so viciously that an catfight lover takes ${him} right there,`, + text: `${he} abuses a rival public servant so viciously that a catfight lover takes ${him} right there,`, type: "rep", effect: 3, }); @@ -2150,7 +2150,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a citizen get past their religious hangups through sex with the friendly neighborhood slut,`, + text: `${he} helps a citizen get past their religious hang-ups through sex with the friendly neighborhood slut,`, type: "rep", effect: 1, }); diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw index 0187122bf077f3ce30c49546cbfe2f26b90a1df1..2422ec55c96e452588cbf6b1c42ef9eb526faddf 100644 --- a/src/js/wombJS.tw +++ b/src/js/wombJS.tw @@ -698,7 +698,7 @@ window.WombReserveCount = function(actor, type) actor.womb.forEach(function(ft){ - if (ft.reserve == type) + if (ft.reserve == type) /* the lazy equality will catch "" case */ { cnt++; } @@ -772,17 +772,6 @@ window.BCReserveInit = function() if (ft.ID == undefined) ft.ID = generateNewID(); - try { - if (slave.reservedChildren > 0) - WombSetGenericReserve(slave, "incubator", reservedChildren); - - if (slave.reservedChildrenNursery > 0) - WombSetGenericReserve(slave, "nursery", reservedChildren); - } catch (err) { - - console.log (err + " slave ID: " + slave.ID + " slave name: " + slave.slaveName + " " + slave.slaveSurname); - slave.reservedChildren = 0; - } }); }); diff --git a/src/npc/abort.tw b/src/npc/abort.tw index 9807f2f7259bff0b1ede9d5a77a1d2b3bdc10bfb..2ae1ee1ed3c5c2598d7b52fee212ea512da1522f 100644 --- a/src/npc/abort.tw +++ b/src/npc/abort.tw @@ -4,7 +4,7 @@ <<run clearSummaryCache($activeSlave)>> The remote surgery makes aborting a pregnancy quick and efficient. $activeSlave.slaveName is -<<if $activeSlave.fuckdoll == 0 && $activeSlave.fetish != "mindbroken">> +<<if ($activeSlave.fuckdoll > 0) || ($activeSlave.fetish == "mindbroken")>> completely unmoved by the development. <<elseif $activeSlave.sexualFlaw == "breeder">> @@.red;fundamentally broken.@@ $His entire concept of self and sexuality was wrapped up in the life growing within $him, and now it is gone. diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw index 67dd4c64be9b6cdb3d456fc21e6dbfa1e72e2c44..33fcb0d1e8428f48728f372f6d70c9a6eaaef9af 100644 --- a/src/npc/acquisition.tw +++ b/src/npc/acquisition.tw @@ -37,14 +37,14 @@ <</if>> <<set $PC.geneticQuirks.fertility = 2>> <<for $i = 0; $i < $slaves.length; $i++>> - <<if $slaves[$i].origin == "She was another of your late master's servants. She spent nine months in your womb, courtesy of your master." || $slaves[$i].origin == "Your late master took pleasure in using his servants in creative ways. He inseminated you with your own sperm, and nine months later, your daughter was born.">> + <<if $slaves[$i].origin == "She was another of your late master's servants. She spent nine months in your womb, courtesy of your master.">> <<set $PC.births += 1>> <<set $PC.birthMaster += 1>> <</if>> <</for>> <<elseif $PC.career == "escort">> <<for $i = 0; $i < $slaves.length; $i++>> - <<if $slaves[$i].origin == "She was the result of unprotected sex with a client. He paid you quite well to enjoy your body as you grew heavy with his child." || $slaves[$i].origin == "A client paid you a large sum of credits to prove you could literally fuck yourself. She is the result of that lucrative night.">> + <<if $slaves[$i].origin == "She was the result of unprotected sex with a client. He paid you quite well to enjoy your body as you grew heavy with his child.">> <<set $PC.births += 1>> <<set $PC.birthClient += 1>> <</if>> @@ -52,8 +52,12 @@ <<else>> <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].mother == -1>> - <<set $PC.births += 1>> - <<set $PC.birthOther += 1>> + <<set $PC.births += 1>> + <<if $slaves[$i].father == -1>> + <<set $PC.birthSelf += 1>> + <<else>> + <<set $PC.birthOther += 1>> + <</if>> <</if>> <</for>> <</if>> @@ -244,7 +248,7 @@ The previous owner seems to have left in something of a hurry. <<switch $targetArcology.type>> <<case "Supremacist">> <<set $oneTimeDisableDisability = 1>> - <<set $arcologies[0].FSSupremacistLawME = 1>><<include "Generate New Slave">><<set $arcologies[0].FSSupremacistLawME = 0>> + <<set $fixedRace = $arcologies[0].FSSupremacistRace>><<include "Generate New Slave">> <<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(0,15)>> <<set $activeSlave.face = random(15,100)>> <<set $activeSlave.oralSkill = random(15,35), $activeSlave.analSkill = random(15,35)>> @@ -257,7 +261,7 @@ The previous owner seems to have left in something of a hurry. <<set $activeSlave.assignment = "please you">> <<case "Subjugationist">> <<set $oneTimeDisableDisability = 1>> - <<set $fixedRace = $activeArcology.FSSubjugationistRace>><<include "Generate New Slave">> + <<set $fixedRace = $arcologies[0].FSSubjugationistRace>><<include "Generate New Slave">> <<set $activeSlave.devotion = random(25,45), $activeSlave.trust = random(-25,-45), $activeSlave.health = random(0,15)>> <<set $activeSlave.face = random(15,100)>> <<set $activeSlave.oralSkill = random(15,35), $activeSlave.analSkill = random(15,35)>> diff --git a/src/npc/agent/agentWorkaround.tw b/src/npc/agent/agentWorkaround.tw index f2796ae4c71573d323e14fe57c48e3bbfd96a8ec..07035635010619826463e1322fe29a9acbd3492e 100644 --- a/src/npc/agent/agentWorkaround.tw +++ b/src/npc/agent/agentWorkaround.tw @@ -32,7 +32,7 @@ <<set $desc = SlaveTitle($slaves[$i])>> <<setLocalPronouns $slaves[$i]>> -You order $slaves[$i].slaveName to come into your office for orders. The devoted $desc has no prior warning that this is anything unusual, and from the <<if $slaves[$i].energy > 95>>horny glint<<else>>glow of sexual availability<</if>> in $his $slaves[$i].eyeColor eyes as $he <<if canWalk($slaves[$i])>>enters<<else>>is helped in<</if>>, $he <<if $slaves[$i].energy > 95>>seems to be hoping<<else>>wouldn't mind hearing<</if>> that you've called $him in for a quick fuck. In fact, the matter at hand is about as far as it could possibly be from that, on the spectrum of interactions between <<if $PC.title != 0>>master<<else>>mistress<</if>> and slave. +You order $slaves[$i].slaveName to come into your office for orders. The devoted $desc has no prior warning that this is anything unusual, and from the <<if $slaves[$i].energy > 95>>horny glint<<else>>glow of sexual availability<</if>> in $his $slaves[$i].eyeColor eyes as $he <<if canWalk($slaves[$i])>>enters<<else>>is helped in<</if>>, $he <<if $slaves[$i].energy > 95>>seems to be hoping<<else>>wouldn't mind hearing<</if>> that you've called $him in for a quick fuck. In fact, the matter at hand is about as far as it could possibly be from that, on the spectrum of interactions between <<= properMaster()>> and slave. <br><br>You offer $him, without preamble, agency on your behalf in $activeArcology.name. As a $woman of intelligence, $he knows the basics of such an arrangement, but $he's stunned into silence by the offer, so you outline it briefly. Having a slave lead an arcology would be too much, even for the most open minded of Free Cities societies. So, $he would be freed, albeit subject to a set of private, restrictive contracts that would allow you to recall $him if you wish, and require $him to follow your directions, if you give $him any. But other than that, $he would be the effective leader of an entire arcology. It's an unusual arrangement, but one that's becoming more common as multiple arcologies come under united control. diff --git a/src/npc/databases/dSlavesDatabase.tw b/src/npc/databases/dSlavesDatabase.tw index ef9fe8d10cc9705b0a90a02f6e2fcb5d27b48625..80db22447a885230b2fb1eac324e154a48ec4791 100644 --- a/src/npc/databases/dSlavesDatabase.tw +++ b/src/npc/databases/dSlavesDatabase.tw @@ -151,7 +151,7 @@ /*Is 'rapey' a quirk? Guess so. Added odd. Changed eye color, added nympho, added origin. -BoneyM*/ <<set _HS = {}>> -<<set _HS.slaveName = "Sophia", _HS.birthName = "Sophia", _HS.origin = "A former head girl of a rich man's harem, she is used to being in charge of others.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hLength = 35, _HS.hStyle = "shoulder length", _HS.boobs = 1000, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.vaginalSkill = 35, _HS.oralSkill = 35, _HS.analSkill = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 0, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.behavioralFlaw = "arrogant">> +<<set _HS.slaveName = "Sophia", _HS.birthName = "Sophia", _HS.origin = "A former Head Girl of a rich man's harem, she is used to being in charge of others.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hLength = 35, _HS.hStyle = "shoulder length", _HS.boobs = 1000, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.vaginalSkill = 35, _HS.oralSkill = 35, _HS.analSkill = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 0, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.behavioralFlaw = "arrogant">> <<set $heroSlaves.push(_HS)>> /*dislikes women*/ /*Added 'arrogant' and origin -BoneyM*/ diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw index 3738a706b016a96c98d7020834dd72b3b012b3a8..23959630ce5a2815fe4484dd456c9665dad9200c 100644 --- a/src/npc/descriptions/fBoobs.tw +++ b/src/npc/descriptions/fBoobs.tw @@ -187,7 +187,7 @@ tits. <</if>> <<elseif (random(1,100) > (110-$activeSlave.devotion))>> <<if ($activeSlave.fetish == "none") && ($activeSlave.behavioralFlaw !== "hates men")>> - Having attention and love lavished on $his boobs by $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title !== 0>>master<<else>>mistress<</if>> has $him thinking of $his @@.lightcoral;breasts as sexual organs.@@ + Having attention and love lavished on $his boobs by $his <<= WrittenMaster($activeSlave)>> has $him thinking of $his @@.lightcoral;breasts as sexual organs.@@ <<set $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1>> <</if>> <</if>> diff --git a/src/npc/descriptions/fFuckdollWidgets.tw b/src/npc/descriptions/fFuckdollWidgets.tw index 6bfbbcec049d538d7f243c4ef1b85f64f3cefbad..6a65a11d07b7fa4a199cded52e98ed98301e5675 100644 --- a/src/npc/descriptions/fFuckdollWidgets.tw +++ b/src/npc/descriptions/fFuckdollWidgets.tw @@ -6,28 +6,28 @@ <<run clearSummaryCache($activeSlave)>> You decide to use the Fuckdoll's <<if $activeSlave.lips > 95>>facepussy<<else>>face hole<</if>>. <<if $activeSlave.fuckdoll <= 10>> - Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>shove it into a kneeling position<<else>>set it on the couch<</if>> and straddle its face. + Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>shove $him into a kneeling position<<else>>set $him on the couch<</if>> and straddle $his face. <<elseif $activeSlave.fuckdoll <= 80>> - It can follow intermediate commands, so you order it into a position for use of its face hole. It obediently <<if $activeSlave.amp == 0>>gets to its knees<<else>>cranes its neck up<</if>> and sticks its tongue out as far as it will go, wiggling it invitingly. You straddle its face. + $He can follow intermediate commands, so you order $him into a position for use of $his face hole. $He obediently <<if $activeSlave.amp == 0>>gets to $his knees<<else>>cranes $his neck up<</if>> and sticks $his tongue out as far as it will go, wiggling it invitingly. You straddle $his face. <<else>> - It can follow advanced commands, so you order it into a position for use of its face hole. It instantly <<if $activeSlave.amp == 0>><<if $PC.dick == 1>>bends at the waist and turns its head upward, placing its throat horizontally and at waist height.<<else>>gets to its knees and turns its head upward at just the right angle for a pussy to ride its face hole.<</if>><<else>>cranes its neck up and sticks its tongue out as far as it will go, wiggling it invitingly.<</if>> You straddle its face. + $He can follow advanced commands, so you order $him into a position for use of $his face hole. $He instantly <<if $activeSlave.amp == 0>><<if $PC.dick == 1>>bends at the waist and turns $his head upward, placing $his throat horizontally and at waist height.<<else>>gets to $his knees and turns $his head upward at just the right angle for a pussy to ride $his face hole.<</if>><<else>>cranes $his neck up and sticks $his tongue out as far as it will go, wiggling it invitingly.<</if>> You straddle $his face. <</if>> <<if $activeSlave.fuckdoll <= 20>> - It's not fully used to being surprised with face rape, so it struggles, and its difficulty breathing <<if $PC.dick == 1>>makes its throat spasm around your dickhead<<else>>feels lovely on your cunt<</if>>. + $He's not fully used to being surprised with face rape, so $he struggles, and $his difficulty breathing <<if $PC.dick == 1>>makes $his throat spasm around your dickhead<<else>>feels lovely on your cunt<</if>>. <<elseif $activeSlave.fuckdoll <= 50>> - Aware that it is supposed to relax and let you rape its face, it does its best to let you <<if $PC.dick == 1>>fuck its throat<<else>>ride its face<</if>>. + Aware that $he is supposed to relax and let you rape $his face, $he does $his best to let you <<if $PC.dick == 1>>fuck $his throat<<else>>ride $his face<</if>>. <<else>> - You command it to <<if $PC.dick == 1>>milk your dick, and it begins to suck with almost frightening force<<else>>pleasure your cunt, and it begins to eat you out with almost frightening hunger<</if>>. + You command $him to <<if $PC.dick == 1>>milk your dick, and $he begins to suck with almost frightening force<<else>>pleasure your cunt, and $he begins to eat you out with almost frightening hunger<</if>>. <</if>> <<if $activeSlave.fuckdoll <= 60>> - <<if $activeSlave.energy > 80>>Denied any other outlet for its extreme sex drive, it orgasms from nothing more than oral stimulation.<</if>> + <<if $activeSlave.energy > 80>>Denied any other outlet for $his extreme sex drive, $he orgasms from nothing more than oral stimulation.<</if>> <<else>> - It's so perfectly tuned that it begins to orgasm from nothing more than oral stimulation, and it continues to shiver with repeated orgasms as it sucks. + $He's so perfectly tuned that $he begins to orgasm from nothing more than oral stimulation, and $he continues to shiver with repeated orgasms as $he sucks. <</if>> -You climax, <<if $PC.dick == 1>>blowing your load down its throat<<else>>giving it a good amount of femcum to swallow<</if>>, and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>>. +You climax, <<if $PC.dick == 1>>blowing your load down $his throat<<else>>giving $him a good amount of femcum to swallow<</if>>, and return $him to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>>. <<if $PC.dick == 1>> - <<if $activeSlave.lips > 95>>It gives sloppy blowjobs, its lips being too big for much control, and strings of your cum beribbon its suit. The Fuckdoll will be cleaned by another slave. - <<else>>It swallows repeatedly as it returns to its resting posture. + <<if $activeSlave.lips > 95>>$He gives sloppy blowjobs, $his lips being too big for much control, and strings of your cum beribbon $his suit. The Fuckdoll will be cleaned by another slave. + <<else>>$He swallows repeatedly as $he returns to $his resting posture. <</if>> <</if>> @@ -43,34 +43,34 @@ You climax, <<if $PC.dick == 1>>blowing your load down its throat<<else>>giving <<run clearSummaryCache($activeSlave)>> You decide to use the Fuckdoll's <<if $activeSlave.vagina > 3>>cavernous<<elseif $activeSlave.vagina == 3>>soft<<elseif $activeSlave.vagina == 2>>inviting<<elseif $activeSlave.vagina == 1>>tight<</if>> front hole. <<if $activeSlave.fuckdoll <= 10>> - Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push it down to lie on the couch<<else>>set it on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside its vagina. + Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push $him down to lie on the couch<<else>>set $him on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside $his vagina. <<elseif $activeSlave.fuckdoll <= 70>> - It can follow intermediate commands, so you order it into a position for use of its front hole. It obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks its hips, offering its cunt until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> into its wet channel. + $He can follow intermediate commands, so you order $him into a position for use of $his front hole. $He obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks $his hips, offering $his cunt until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> into $his wet channel. <<else>> - It can follow advanced commands, so you bring it over to your chair <<if $activeSlave.amp == 0>>and order it to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and ride.<<else>>and impale it on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering it to do its feeble best to bounce.<</if>> + $He can follow advanced commands, so you bring $him over to your chair <<if $activeSlave.amp == 0>>and order $him to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and ride.<<else>>and impale $him on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering $him to do $his feeble best to bounce.<</if>> <</if>> <<if $activeSlave.fuckdoll <= 20>> - It's not fully used to being raped without warning, so it struggles, its muscles spasming delightfully. + $He's not fully used to being raped without warning, so $he struggles, $his muscles spasming delightfully. <<elseif $activeSlave.fuckdoll <= 40>> - Aware that it is supposed to relax and accept rape, it does its best to let you take it without resistance. + Aware that $he is supposed to relax and accept rape, $he does $his best to let you take $him without resistance. <<else>> - You command it to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with its vaginal walls, and it obediently starts to flex its well-developed cunt muscles, squeezing <<if $PC.dick == 1>>you<<else>>your strap-on<</if>> from base to tip. + You command $him to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with $his vaginal walls, and $he obediently starts to flex $his well-developed cunt muscles, squeezing <<if $PC.dick == 1>>you<<else>>your strap-on<</if>> from base to tip. <</if>> <<if $activeSlave.fuckdoll <= 60>> - <<if $activeSlave.energy > 40>>Denied any other outlet for its healthy sex drive, it orgasms.<</if>> + <<if $activeSlave.energy > 40>>Denied any other outlet for $his healthy sex drive, $he orgasms.<</if>> <<else>> - It orgasmed for the first time as you entered it, and it continues to do so as you fuck it. It's perfectly tuned. + $He orgasmed for the first time as you entered $him, and $he continues to do so as you fuck $him. $He's perfectly tuned. <</if>> <<if $activeSlave.voice == 0>> - Though it is mute, its breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of its facepussy<<else>>through its mouth insert<</if>>. + Though $he is mute, $his breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>. <<else>> - It moans, <<if $activeSlave.lips > 95>>and the lips of its facepussy quiver<<else>>struggling to force the sound past its mouth insert<</if>>. + $He moans, <<if $activeSlave.lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>. <</if>> -You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its womb,<</if>> and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>>. +You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against $his womb,<</if>> and return $him to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>>. <<if $PC.dick == 1>> - <<if $activeSlave.vagina > 2>>Your cum flows out of its gaping front hole and down the material of its suit. - <<elseif $activeSlave.vagina == 2>>Your cum drips out of its well-fucked front hole and down the material of its suit. - <<else>>Its tight front hole retains almost every drop of your cum. A few escape and run down the material of its suit. + <<if $activeSlave.vagina > 2>>Your cum flows out of $his gaping front hole and down the material of $his suit. + <<elseif $activeSlave.vagina == 2>>Your cum drips out of $his well-fucked front hole and down the material of $his suit. + <<else>>$His tight front hole retains almost every drop of your cum. A few escape and run down the material of $his suit. <</if>> <<if canImpreg($activeSlave, $PC)>> <<= knockMeUp($activeSlave, 5, 1, -1)>> @@ -79,11 +79,11 @@ You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its <</if>> <<if $activeSlave.vagina == 0>> <<if $activeSlave.fetish != "mindbroken">> - As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its virginity. + As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his virginity. <<else>> - It gives no external indication that it's aware that it's just lost its virginity. + $He gives no external indication that $he's aware that $he's just lost $his virginity. <</if>> - In any case, @@.lime;its front hole has been broken in.@@ + In any case, @@.lime;$his front hole has been broken in.@@ <<set $activeSlave.vagina = 1>> <</if>> @@ -106,64 +106,64 @@ You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its You decide to use the Fuckdoll's fertile womb to grow a child. <<if $activeSlave.fuckdoll <= 10>> - Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push it down to lie on the couch<<else>>set it on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside its <<if $activeSlave.mpreg == 1>>asshole<<else>>vagina<</if>>. + Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push $him down to lie on the couch<<else>>set $him on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside $his <<if $activeSlave.mpreg == 1>>asshole<<else>>vagina<</if>>. <<elseif $activeSlave.fuckdoll <= 70>> - It can follow intermediate commands, so you order it into a position for use of its <<if $activeSlave.mpreg == 1>>rear<<else>>front<</if>> hole. It obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks its hips, offering its <<if $activeSlave.mpreg == 1>>asspussy<<else>>cunt<</if>> until you insert your cock into its <<if $activeSlave.mpreg == 1>>winking<<else>>wet<</if>> channel. + $He can follow intermediate commands, so you order $him into a position for use of $his <<if $activeSlave.mpreg == 1>>rear<<else>>front<</if>> hole. $He obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks $his hips, offering $his <<if $activeSlave.mpreg == 1>>asspussy<<else>>cunt<</if>> until you insert your cock into $his <<if $activeSlave.mpreg == 1>>winking<<else>>wet<</if>> channel. <<else>> - It can follow advanced commands, so you bring it over to your chair <<if $activeSlave.amp == 0>>and order it to squat down onto your cock and ride.<<else>>and impale it on your cock, ordering it to do its feeble best to bounce.<</if>> + $He can follow advanced commands, so you bring $him over to your chair <<if $activeSlave.amp == 0>>and order $him to squat down onto your cock and ride.<<else>>and impale $him on your cock, ordering $him to do $his feeble best to bounce.<</if>> <</if>> <<if $activeSlave.fuckdoll <= 20>> - It's not fully used to being raped without warning, so it struggles, its muscles spasming delightfully. + $He's not fully used to being raped without warning, so $he struggles, $his muscles spasming delightfully. <<elseif $activeSlave.fuckdoll <= 40>> - Aware that it is supposed to relax and accept rape, it does its best to let you take it without resistance. + Aware that $he is supposed to relax and accept rape, $he does $his best to let you take $him without resistance. <<else>> - You command it to milk your cock with its <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> walls, and it obediently starts to flex its well-developed <<if $activeSlave.mpreg == 1>>cunt<<else>>anal<</if>> muscles, squeezing you from base to tip. + You command $him to milk your cock with $his <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> walls, and $he obediently starts to flex $his well-developed <<if $activeSlave.mpreg == 1>>cunt<<else>>anal<</if>> muscles, squeezing you from base to tip. <</if>> <<if $activeSlave.fuckdoll <= 60>> - <<if $activeSlave.energy > 40>>Denied any other outlet for its healthy sex drive, it orgasms.<</if>> + <<if $activeSlave.energy > 40>>Denied any other outlet for $his healthy sex drive, $he orgasms.<</if>> <<else>> - It orgasmed for the first time as you entered it, and it continues to do so as you fuck it. It's perfectly tuned. + $He orgasmed for the first time as you entered $him, and $he continues to do so as you fuck $him. $He's perfectly tuned. <</if>> <<if $activeSlave.voice == 0>> - Though it is mute, its breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of its facepussy<<else>>through its mouth insert<</if>>. + Though $he is mute, $his breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>. <<else>> - It moans, <<if $activeSlave.lips > 95>>and the lips of its facepussy quiver<<else>>struggling to force the sound past its mouth insert<</if>>. + $He moans, <<if $activeSlave.lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>. <</if>> -You climax, your cum shooting forward to splash against its womb, and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>> to allow your seed to find its mark. +You climax, your cum shooting forward to splash against $his womb, and return $he to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>> to allow your seed to find $his mark. <<if $activeSlave.mpreg == 1>> - <<if $activeSlave.anus > 2>>Your cum flows out of its gaping rear hole and down the material of its suit. - <<elseif $activeSlave.anus == 2>>Your cum drips out of its well-fucked rear hole and down the material of its suit. - <<else>>Its tight rear hole retains almost every drop of your cum. A few escape and run down the material of its suit. + <<if $activeSlave.anus > 2>>Your cum flows out of $his gaping rear hole and down the material of $his suit. + <<elseif $activeSlave.anus == 2>>Your cum drips out of $his well-fucked rear hole and down the material of $his suit. + <<else>>$His tight rear hole retains almost every drop of your cum. A few escape and run down the material of $his suit. <</if>> The Fuckdoll will be cleaned by another slave. <<if $activeSlave.anus == 0>> <<if $activeSlave.fetish != "mindbroken">> - As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its anal virginity. + As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his anal virginity. <<else>> - It gives no external indication that it's aware that it's just lost its virginity. + $He gives no external indication that $he's aware that $he's just lost $his virginity. <</if>> - In any case, @@.lime;its rear hole has been broken in.@@ + In any case, @@.lime;$his rear hole has been broken in.@@ <<set $activeSlave.anus = 1>> <</if>> <<else>> - <<if $activeSlave.vagina == 10>>Your cum steadily flows from its prolapsed front hole and down the material of its suit. - <<elseif $activeSlave.vagina > 2>>Your cum flows out of its gaping front hole and down the material of its suit. - <<elseif $activeSlave.vagina == 2>>Your cum drips out of its well-fucked front hole and down the material of its suit. - <<else>>Its tight front hole retains almost every drop of your cum. A few escape and run down the material of its suit. + <<if $activeSlave.vagina == 10>>Your cum steadily flows from its prolapsed front hole and down the material of $his suit. + <<elseif $activeSlave.vagina > 2>>Your cum flows out of $his gaping front hole and down the material of $his suit. + <<elseif $activeSlave.vagina == 2>>Your cum drips out of $his well-fucked front hole and down the material of $his suit. + <<else>>$His tight front hole retains almost every drop of your cum. A few escape and run down the material of $his suit. <</if>> The Fuckdoll will be cleaned by another slave. <<if $activeSlave.vagina == 0>> <<if $activeSlave.fetish != "mindbroken">> - As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its virginity. + As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his virginity. <<else>> - It gives no external indication that it's aware that it's just lost its virginity. + $He gives no external indication that $he's aware that $he's just lost $his virginity. <</if>> - In any case, @@.lime;its front hole has been broken in.@@ + In any case, @@.lime;$his front hole has been broken in.@@ <<set $activeSlave.vagina = 1>> <</if>> <</if>> -You repeat this ritual throughout the week, ensuring that it will be an @@.lime;incubator for your child.@@ +You repeat this ritual throughout the week, ensuring that $he will be an @@.lime;incubator for your child.@@ <<= knockMeUp($activeSlave, 100, 2, -1, 1)>> @@ -186,34 +186,34 @@ You repeat this ritual throughout the week, ensuring that it will be an @@.lime; <<run clearSummaryCache($activeSlave)>> You decide to use the Fuckdoll's <<if $activeSlave.anus > 3>>gaping<<elseif $activeSlave.anus == 3>>loose<<elseif $activeSlave.anus == 2>>relaxed<<elseif $activeSlave.anus == 1>>tight<</if>> rear hole. <<if $activeSlave.fuckdoll <= 10>> - Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>walk over to it<<else>>flip it over<</if>> and ram <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up its rear hole. + Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>walk over to $him<<else>>flip $him over<</if>> and ram <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up $his rear hole. <<elseif $activeSlave.fuckdoll <= 80>> - It can follow intermediate commands, so you order it to present its rear hole. It obediently <<if $activeSlave.amp == 0>>bends over, arches its back, and<<else>>flips over and<</if>> winks its anus until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. + $He can follow intermediate commands, so you order $him to present $his rear hole. $He obediently <<if $activeSlave.amp == 0>>bends over, arches $his back, and<<else>>flips over and<</if>> winks $his anus until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. <<else>> - It can follow advanced commands, so you bring it over to your chair <<if $activeSlave.amp == 0>>and order it to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and slide its anus up and down <<if $PC.dick == 1>>your<<else>>the<</if>> shaft.<<else>>and impale it on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering it to do its feeble best to bounce.<</if>> + $He can follow advanced commands, so you bring $him over to your chair <<if $activeSlave.amp == 0>>and order $him to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and slide $his anus up and down <<if $PC.dick == 1>>your<<else>>the<</if>> shaft.<<else>>and impale $him on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering $him to do $his feeble best to bounce.<</if>> <</if>> <<if $activeSlave.fuckdoll <= 20>> - It's not fully used to having things suddenly forced up its ass, so it struggles, and its sphincter spasms deliciously. + $He's not fully used to having things suddenly forced up $his ass, so $he struggles, and $his sphincter spasms deliciously. <<elseif $activeSlave.fuckdoll <= 40>> - Aware that it is supposed to relax and accept anal rape, it does its best to accommodate the sodomy. + Aware that $he is supposed to relax and accept anal rape, $he does $his best to accommodate the sodomy. <<else>> - You command it to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with its asshole, and it obediently tightens its sphincter against the invading phallus rhythmically. + You command $him to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with $his asshole, and $he obediently tightens $his sphincter against the invading phallus rhythmically. <</if>> <<if $activeSlave.fuckdoll <= 60>> - <<if $activeSlave.energy > 60>>Denied any other outlet for its powerful sex drive, it orgasms.<</if>> + <<if $activeSlave.energy > 60>>Denied any other outlet for $his powerful sex drive, $he orgasms.<</if>> <<else>> - Tuned to enjoy any use by total denial of all other stimulation, it orgasms repeatedly as you fuck its anus. + Tuned to enjoy any use by total denial of all other stimulation, $he orgasms repeatedly as you fuck $his anus. <</if>> <<if $activeSlave.voice == 0>> - Though it is mute, its breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of its facepussy<<else>>through its mouth insert<</if>>. + Though $he is mute, $his breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>. <<else>> - It moans, <<if $activeSlave.lips > 95>>and the lips of its facepussy quiver<<else>>struggling to force the sound past its mouth insert<</if>>. + $He moans, <<if $activeSlave.lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>. <</if>> -You climax<<if $PC.dick == 1>>, filling its rectum with your cum,<</if>> and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>>. +You climax<<if $PC.dick == 1>>, filling $his rectum with your cum,<</if>> and return $him to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>>. <<if $PC.dick == 1>> - <<if $activeSlave.anus > 2>>Your cum flows out of its gaped rear hole and down the material of its suit. - <<elseif $activeSlave.anus == 2>>Your cum drips out of its loosened rear hole and down the material of its suit. - <<else>>Its tight rear hole retains every drop of your cum. + <<if $activeSlave.anus > 2>>Your cum flows out of $his gaped rear hole and down the material of $his suit. + <<elseif $activeSlave.anus == 2>>Your cum drips out of $his loosened rear hole and down the material of $his suit. + <<else>>$His tight rear hole retains every drop of your cum. <</if>> <<if canImpreg($activeSlave, $PC)>> <<= knockMeUp($activeSlave, 5, 0, -1)>> @@ -222,11 +222,11 @@ You climax<<if $PC.dick == 1>>, filling its rectum with your cum,<</if>> and ret <</if>> <<if $activeSlave.anus == 0>> <<if $activeSlave.fetish != "mindbroken">> - As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its anal virginity. + As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his anal virginity. <<else>> - It gives no external indication that it's aware that it's just lost its anal virginity. + $He gives no external indication that $he's aware that $he's just lost $his anal virginity. <</if>> - In any case, @@.lime;its rear hole has been broken in.@@ + In any case, @@.lime;$his rear hole has been broken in.@@ <<set $activeSlave.anus = 1>> <</if>> diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw index dc802d800a4bfceacfe9b30441d69aa4902da29c..f14456b9ef59833825b8dc6b098711e22dc0ef45 100644 --- a/src/npc/descriptions/fVagina.tw +++ b/src/npc/descriptions/fVagina.tw @@ -167,10 +167,10 @@ You call $him over so you can <<if ($activeSlave.fetish == "mindbroken")>> $He accepts your orders dumbly and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching without real interest as you don a strap-on<</if>>. Since $he is mindbroken, @@.lime;losing $his virginity@@ has no impact on any part of $him other than $his vagina. <<elseif ($activeSlave.devotion > 20)>> - $He accepts your orders without comment and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching with some small trepidation as you don a strap-on<</if>>. You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning loudly as you pound away. Since $he is already well broken, this new connection with $him <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in.@@ $He looks forward to having $his pussy fucked by you again. + $He accepts your orders without comment and presents $his virgin pussy for defloration<<if ($PC.dick == 0)>>, watching with some small trepidation as you don a strap-on<</if>>. You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning loudly as you pound away. Since $he is already well broken, this new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in.@@ $He looks forward to having $his pussy fucked by you again. <<set $activeSlave.devotion += 10>> <<elseif ($activeSlave.devotion >= -20)>> - $He is clearly unhappy at losing $his pearl of great price to you; this probably isn't what $he imagined $his first real sex would be like.<<if ($PC.dick == 0)>>$His lower lip quivers with trepidation as $he watches you don a strap-on and maneuver to fuck $his virgin hole.<</if>> You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning as you pound away. Nevertheless, this new connection with $him <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he is @@.gold;fearful@@ that sex will continue to be painful. + $He is clearly unhappy at losing $his pearl of great price to you; this probably isn't what $he imagined $his first real sex would be like.<<if ($PC.dick == 0)>>$His lower lip quivers with trepidation as $he watches you don a strap-on and maneuver to fuck $his virgin hole.<</if>> You gently ease into $his pussy before gradually increasing the intensity of your thrusts into $him. Before long, $he's moaning as you pound away. Nevertheless, this new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he is @@.gold;fearful@@ that sex will continue to be painful. <<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>> <<else>> As you anticipated, $he refuses to give you $his virginity. And as you expected, $he is unable to resist you. $He cries as <<if ($PC.dick == 0)>>your strap-on<<else>>your cock<</if>> opens $his fresh, tight hole. You force your way into $his pussy and continue thrusting into $him. $He sobs and cries with horror as you pound away. The rape @@.mediumorchid;decreases $his devotion to you.@@ @@.lime;$His pussy has been broken in,@@ and $he @@.gold;fears further abuse.@@ @@ -183,7 +183,7 @@ You call $him over so you can Since $he's a quadruple amputee, $he's yours to use as a human sex toy. You set $him <<if ($PC.dick != 0)>> <<if $activeSlave.belly >= 300000>> - atop $his massive stomach and <<if _fSpeed > 75>>fuck $his hard and fast<<elseif _fSpeed > 50>>fuck $him firmly and vigorously<<elseif _fSpeed > 25>>fuck $him steadily and controlled<<else>>fuck $him slowly and tenderly<</if>>, managing $him with your arms as you go. + atop $his massive stomach and <<if _fSpeed > 75>>fuck $him hard and fast<<elseif _fSpeed > 50>>fuck $him firmly and vigorously<<elseif _fSpeed > 25>>fuck $him steadily and controlled<<else>>fuck $him slowly and tenderly<</if>>, managing $him with your arms as you go. <<else>> atop your cock and slide $him up and down<<if _fSpeed > 75>>, hard and fast<<elseif _fSpeed > 50>>, firmly and vigorously<<elseif _fSpeed > 25>>, steadily and controlled<<else>>, slowly and tenderly<</if>>, managing $him with your arms. <</if>> @@ -544,7 +544,7 @@ You call $him over so you can <<case "be a subordinate slave">> though it's only a matter of time before another slave decides to play with $his fuckhole. <<case "be your Head Girl">> - worried that $his charges got up to trouble while $he enjoyed $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s use. + worried that $his charges got up to trouble while $he enjoyed $his <<= WrittenMaster()>>'s use. <<case "guard you">> so $he can be fresh and ready for more sexual use even as $he guards your person. <<case "train slaves">> diff --git a/src/npc/fAbuse.tw b/src/npc/fAbuse.tw index f8e689a8d7e3382dbd416c404f53d157d4f0208e..1c734db54ec4dea4e42b11c9176e9e91a6d85b31 100644 --- a/src/npc/fAbuse.tw +++ b/src/npc/fAbuse.tw @@ -194,11 +194,11 @@ <<case "a striped bra">> Because $he's nude under $his bra, $he simply lifts it over $his head. <<case "striped underwear">> - $he pulls off $his bra and panties with minimal effort. + $He pulls off $his bra and panties with minimal effort. <<case "a skimpy loincloth">> $He slips out of $his loincloth and kicks it aside. <<case "a slutty klan robe">> - $he slips off $his robe and throws it aside. + $He slips off $his robe and throws it aside. <<case "a sports bra">> Because $he's nude under $his bra, $he simply lifts it over $his head. <<case "a sweater and panties">> @@ -206,41 +206,41 @@ <<case "a t-shirt">> Because $he's nude under $his t-shirt, $he simply lifts it over $his head and throws it aside. <<case "a tank-top and panties">> - $he yanks off $his t-shirt and drops $his panties. + $He yanks off $his t-shirt and drops $his panties. <<case "a t-shirt and thong">> - $he yanks off $his t-shirt and drops $his thong. + $He yanks off $his t-shirt and drops $his thong. <<case "an oversized t-shirt and boyshorts">> - $he yanks off $his t-shirt and drops $his boy shorts. + $He yanks off $his t-shirt and drops $his boy shorts. <<case "an oversized t-shirt">> - $he yanks off $his t-shirt. + $He yanks off $his t-shirt. <<case "a t-shirt and jeans">> - $he yanks off $his t-shirt but struggles to wiggle out of $his blue jeans. + $He yanks off $his t-shirt but struggles to wiggle out of $his blue jeans. <<case "boyshorts">> - $he drops $his shorts quickly. + $He drops $his shorts quickly. <<case "cutoffs">> - $he wiggles out of $his shorts quickly. + $He wiggles out of $his shorts quickly. <<case "leather pants and pasties">> - $he yanks $his pasties off but struggles to wiggle out of $his leather pants. + $He yanks $his pasties off but struggles to wiggle out of $his leather pants. <<case "leather pants">> $he struggles to wiggle out of $his leather pants. <<case "panties">> - $he drops $his panties quickly. + $He drops $his panties quickly. <<case "sport shorts and a t-shirt">> - $he yanks off $his shirt and drops $his shorts. + $He yanks off $his shirt and drops $his shorts. <<case "a t-shirt and panties">> - $he yanks off $his t-shirt and drops $his panties. + $He yanks off $his t-shirt and drops $his panties. <<case "panties and pasties">> - $he yanks off $his pasties and drops $his panties. + $He yanks off $his pasties and drops $his panties. <<case "sport shorts and a sports bra">> - $he drops $his shorts and tosses $his bra. + $He drops $his shorts and tosses $his bra. <<case "jeans">> - $he struggles to wiggle out of $his blue jeans. + $He struggles to wiggle out of $his blue jeans. <<case "a sweater and cutoffs">> - $he tosses off $his sweater and drops $his shorts. + $He tosses off $his sweater and drops $his shorts. <<case "leather pants and a tube top">> - $he yanks $his tube top off but struggles to wiggle out of $his leather pants. + $He yanks $his tube top off but struggles to wiggle out of $his leather pants. <<case "sport shorts">> - $he drops $his shorts quickly. + $He drops $his shorts quickly. <<case "battledress">> $He strips $his tank top off in one motion, unfastens $his belt, and pulls down $his pants, though $his boots defeat $him and stay on. <<case "a slutty outfit">> diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw index 981f7fab4b86d0e9ceedc665ecfc3db04f37168d..5d345a01d610f3d1d976d8207ac718dbfd779a58 100644 --- a/src/npc/fFeelings.tw +++ b/src/npc/fFeelings.tw @@ -46,7 +46,7 @@ <<if ($activeSlave.devotion <= 50)>> <<if !canTalk($activeSlave)>> - $He gestures that you're $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>master<<else>>mistress<</if>>, and $he will do $his best to obey you. $He continues to sign<<if $activeSlave.accent == 3 && $activeSlave.voice != 0>>, using gestures to supplant $his poor $language<</if>>: + $He gestures that you're $his <<= WrittenMaster($activeSlave)>>, and $he will do $his best to obey you. $He continues to sign<<if $activeSlave.accent == 3 && $activeSlave.voice != 0>>, using gestures to supplant $his poor $language<</if>>: <<else>> "You're my <<Master>>, and I'll do my be<<s>>t to obey you," $he says <</if>> @@ -54,7 +54,7 @@ <<if !canTalk($activeSlave)>> $He gestures that you're $his beloved <<Master>>. $He continues to sign<<if $activeSlave.accent == 3>>, using gestures to supplant $his poor $language<</if>>: <<else>> - "<<if ($activeSlave.relationship == -3)>>I'm content with being your wife,<<else>>You're<</if>> my beloved <<Master>>, and you know what'<<s>> be<<s>>t for me," $he <<say>>s. + "<<if ($activeSlave.relationship == -3)>>I'm content with being your wife,<<else>>You're<</if>> my beloved <<Master>>, and you know what'<<s>> be<<s>>t for me," $he <<say>>s. <</if>> <<else>> <<if !canTalk($activeSlave)>> @@ -217,7 +217,7 @@ My favorite part of my body i<<s>> <<if ($activeSlave.boobs > 10000)>> my colo<<ss>>al boobie<<s>>, <<Master>>. <<S>>ometime<<s>>, I think I //am// my boobie<<s>>. I mean, they're <<s>>o much more me than the re<<s>>t of 'me,' right? Literally. They're bigger than the re<<s>>t of my body and the only thing that would make me happier i<<s>> if they were even //bigger.// <<elseif ($activeSlave.boobs > 2000)>> - my huge boobie<<s>>, <<Master>>. <<S>>ometime<<s>>, I think I //am// my boobie<<s>>. I mean, they're <<s>>o much more me than the re<<s>>t of 'me,' right? <<S>>o big, and <<s>>o beautiful, and <<s>>o heavy… I'm <<s>>orry, <<Master>>, what were we talking about? Oh, ye<<s>>! + my huge boobie<<s>>, <<Master>>. <<S>>ometime<<s>>, I think I //am// my boobie<<s>>. I mean, they're <<s>>o much more me than the re<<s>>t of 'me,' right? <<S>>o big, and <<s>>o beautiful, and <<s>>o heavy... I'm <<s>>orry, <<Master>>, what were we talking about? Oh, ye<<s>>! <<elseif ($activeSlave.nipples == "fuckable")>> my nipple pu<<ss>>ie<<s>> of cour<<s>>e. It'<<s>> <<s>>o hot when they get abu<<s>>ed and I'm alway<<s>> trying to think of new way<<s>> to u<<s>>e them to plea<<s>>ure you. <<elseif ($activeSlave.lactation > 0)>> @@ -325,7 +325,7 @@ My favorite part of my body i<<s>> <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 4)>> my big breeder ball<<s>>, I imagine knocking another <<s>>lave up all the time. <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>> - my cock, I imagine knocking another <<s>>lave up all the time. + my cock, I imagine knocking another <<s>>lave up all the time. <<elseif ($activeSlave.weight > 95)>> my big tummy, I can imagine my<<s>>elf pregnant. <<elseif ($activeSlave.weight > 10)>> @@ -507,10 +507,10 @@ My favorite part of my body i<<s>> <<elseif ($activeSlave.attrKnown == 1) && ($activeSlave.attrXX > 80)>> I'm <<s>>o horny, <<Master>>. I can't <<s>>top thinking about the other slaves' beautiful pu<<ss>>ie<<s>> and boob<<s>> and, and I want to fuck them <<s>>o bad. <<else>> - I haven't been touching my<<s>>elf, <<Master>>, just like you <<s>>aid, but I'm really horny. + I haven't been touching my<<s>>elf, <<Master>>, just like you <<s>>aid, but I'm really horny. <</if>> <<else>> - I haven't been touching my<<s>>elf, <<Master>>, just like you <<s>>aid, but I'm really horny. + I haven't been touching my<<s>>elf, <<Master>>, just like you <<s>>aid, but I'm really horny. <</if>> <</if>> <</if>> /* Closes release check */ @@ -565,7 +565,7 @@ My favorite part of my body i<<s>> <<if $PC.vagina == 1>>Um, and your vagina, too.<</if>> <</if>> <<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60)>> - <<if $PC.dick == 1>>I love your cock, <<Master>>," $he <<say>>s eagerly. "I<<if $activeSlave.anus == 0 || !canDoAnal($activeSlave)>>'d<</if>> love it in my backdoor.<</if>> + <<if $PC.dick == 1>>I love your cock, <<Master>>," $he <<say>>s eagerly. "I<<if $activeSlave.anus == 0 || !canDoAnal($activeSlave)>>'d<</if>> love it in my backdoor.<</if>> <<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60)>> <<if $PC.belly >= 10000>> You, uh." $He looks down, hesitating. "Your belly i<<s>> <<s>>o big and wonderful, I ju<<s>>t want to feel it, @@ -583,7 +583,7 @@ My favorite part of my body i<<s>> <<if $PC.boobsBonus == 3>>Your brea<<s>>t<<s>> are giant, <<Master>>," $he <<say>>s eagerly. "I just want to bury my fa<<c>>e in them. <<elseif $PC.boobsBonus == 2>>Your brea<<s>>t<<s>> are huge, <<Master>>," $he <<say>>s eagerly. "I love them. <<elseif $PC.boobsBonus == 1>>Your brea<<s>>t<<s>> are so big and lovely, <<Master>>," $he <<say>>s eagerly. "I love them. - <<elseif $PC.boobs == 1>>Your brea<<s>>t<<s>> are incredible, <<Master>>," $he <<say>>s eagerly. "I love them. + <<elseif $PC.boobs == 1>>Your brea<<s>>t<<s>> are incredible, <<Master>>," $he <<say>>s eagerly. "I love them. <</if>> <<elseif ($activeSlave.attrKnown == 1) && ($activeSlave.attrXX > 80)>> <<if $PC.boobs == 1>>You're, uh." $He looks down, hesitating. "You're really hot, <<Master>>.<</if>> @@ -606,7 +606,7 @@ My favorite part of my body i<<s>> <<case "masochist">> Being gelded," $he shivers, "hurt<<s>> <<s>>ometime<<s>>. Make<<s>> people want to hurt you. I like it. <<case "humiliation">> - I don't mind being clipped." $He shivers. "Everyone know<<s>>! It'<<s>> <<s>>o embarra<<ss>>ing. + I don't mind being clipped." $He shivers. "Everyone know<<s>>! It'<<s>> <<s>>o embarra<<ss>>ing. <<case "dom">> I <<s>>ometime<<s>> mi<<ss>> my ball<<s>>. It'<<s>> harder to be dominant without them. <<case "sadist">> @@ -614,7 +614,7 @@ My favorite part of my body i<<s>> <<case "pregnancy">> I <<s>>ometime<<s>> mi<<ss>> my ball<<s>>. I <<s>>till fanta<<s>>ize about getting the other girl<<s>> pregnant. <<case "cumslut">> - I barely cum without my ball<<s>>. I mi<<ss>>, you know, cleaning up after my<<s>>elf. With my mouth. + I barely cum without my ball<<s>>. I mi<<ss>>, you know, cleaning up after my<<s>>elf. With my mouth. <<case "buttslut">> I really like being clipped. I think it'<<s>> le<<ss>> di<<s>>tracting, you know, from my butthole. <<if $activeSlave.prostate > 0>>And I <<s>>till have my pro<<s>>tate which i<<s>> what matter<<s>>.<</if>> <<case "boobs">> @@ -823,7 +823,7 @@ My favorite part of my body i<<s>> <<case "intensive testicle enhancement">> My ball<<s>> feel incredibly full, <<Master>>. They're really uncomfortable. <<if ($activeSlave.fetishKnown == 1) && (($activeSlave.fetish == "dom") || ($activeSlave.fetish == "sadist")) && ($activeSlave.fetishStrength > 60)>> - But I can't wait to for<<c>>e a bitch to take the whole load. + But I can't wait to for<<c>>e a bitch to take the whole load. <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60)>> I feel like I could fill a girl'<<s>> womb with cum with one orga<<s>>m. <<else>> @@ -1078,7 +1078,7 @@ My favorite part of my body i<<s>> <<if ($activeSlave.vagina == -1)>> I'm really proud of my anal <<s>>kill<<s>>, I can take a dick a<<s>> well a<<s>> anyone. <<else>> - I'm really proud of my anal <<s>>kill<<s>>, it'<<s>> fun having three fuckhole<<s>>. + I'm really proud of my anal <<s>>kill<<s>>, it'<<s>> fun having three fuckhole<<s>>. <</if>> <<elseif ($activeSlave.analSkill <= 30) && ($activeSlave.anus > 0)>> I wish I were better at anal, if I could learn to relax getting buttfucked wouldn't hurt <<s>>o much. @@ -1171,7 +1171,7 @@ My favorite part of my body i<<s>> <<if ($arcologies[0].FSSupremacistDecoration > 50) || ($arcologies[0].FSSubjugationistDecoration > 50) || ($arcologies[0].FSGenderRadicalistDecoration > 50) || ($arcologies[0].FSGenderFundamentalistDecoration > 50) || ($arcologies[0].FSPaternalistDecoration > 50) || ($arcologies[0].FSDegradationistDecoration > 50) || ($arcologies[0].FSBodyPuristDecoration > 50) || ($arcologies[0].FSTransformationFetishistDecoration > 50) || ($arcologies[0].FSSlimnessEnthusiastDecoration > 50) || ($arcologies[0].FSMaturityPreferentialistDecoration > 50) || ($arcologies[0].FSYouthPreferentialistDecoration > 50) || ($arcologies[0].FSAssetExpansionistDecoration > 50) || ($arcologies[0].FSPastoralistDecoration > 50) || ($arcologies[0].FSPhysicalIdealistDecoration > 50) || ($arcologies[0].FSChattelReligionistDecoration > 50) || ($arcologies[0].FSRomanRevivalistDecoration > 50) || ($arcologies[0].FSAztecRevivalistDecoration > 50) || ($arcologies[0].FSEgyptianRevivalistDecoration > 50) || ($arcologies[0].FSRepopulationFocusDecoration > 50) || ($arcologies[0].FSRestartDecoration > 50) || ($arcologies[0].FSHedonisticDecadence > 50)>> <<if ($activeSlave.devotion > 75)>> - I'll do everything I can to <<s>>upport your vi<<s>>ion for the future. + I'll do everything I can to <<s>>upport your vi<<s>>ion for the future. <<elseif ($activeSlave.devotion > 50)>> I do my be<<s>>t to <<s>>upport your vi<<s>>ion for the future. <<else>> @@ -1227,7 +1227,7 @@ My favorite part of my body i<<s>> <</if>> <<if $arcologies[0].FSAssetExpansionist >= 10>> <<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>> - I've been watching all the body dysphoria on display lately; it's certainly novel. + I've been watching all the body dysphoria on display lately; it's certainly novel. <<elseif ($activeSlave.energy > 95)>> Thank you <<s>>o much for <<s>>upporting thi<<s>> new T&A expan<<s>>ion culture, <<Master>>. It'<<s>> like you made it ju<<s>>t for me. <<S>>o much eye candy! <<elseif ($activeSlave.boobs > 1000)>> @@ -1307,7 +1307,7 @@ My favorite part of my body i<<s>> <<if ($activeSlave.race == $arcologies[0].FSSubjugationistRace)>> I know that a<<s>> a $arcologies[0].FSSubjugationistRace <<s>>lave, it'<<s>> my proper pla<<c>>e to <<s>>erve. <<else>> - <<S>>ince I'm not a $arcologies[0].FSSubjugationistRace <<s>>lave, I'm a little afraid I don't fit into your vision of the future. + <<S>>ince I'm not a $arcologies[0].FSSubjugationistRace <<s>>lave, I'm a little afraid I don't fit into your vision of the future. <</if>> <</if>> <<if $arcologies[0].FSSupremacist >= 10>> @@ -1360,7 +1360,7 @@ My favorite part of my body i<<s>> <<elseif ($activeSlave.lactation > 0)>> I'll do my be<<s>>t to make a<<s>> much milk for the arcology as I can. <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>> - I'll do my best to make a<<s>> much cum for the arcology a<<s>> I can. + I'll do my best to make a<<s>> much cum for the arcology a<<s>> I can. <<else>> I wish I could make milk for the arcology. <</if>> diff --git a/src/npc/fKiss.tw b/src/npc/fKiss.tw index ca91dae6fe6fef6fb98014b38343a9ce7388c5d4..fec3535b4c2761f5bac168acf1a5e1c3a81bdbfc 100644 --- a/src/npc/fKiss.tw +++ b/src/npc/fKiss.tw @@ -34,7 +34,7 @@ You tell $activeSlave.slaveName to <<run Enunciate($activeSlave)>> <<if ($activeSlave.fetish == "mindbroken") && ($activeSlave.relationship != -3)>> - $He complies mechanically. $He remembers that when <<Master>>'s commands are not obeyed, there is punishment. + $He complies mechanically. $He remembers that when <<= WrittenMaster($activeSlave)>>'s commands are not obeyed, there is punishment. <<elseif ($activeSlave.relationship == -2)>> $He hurriedly complies, happy to be near the object of $his longing. Once $he's close, you take a moment to gaze deeply <<if canSee($activeSlave)>> @@ -78,31 +78,31 @@ You tell $activeSlave.slaveName to <<elseif ($activeSlave.devotion > 75)>> $He hurriedly complies, happy to be near you. Once $he's close, you take a moment to gaze deeply <<if canSee($activeSlave)>> - into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<Master>> disconcerting, and $his eyes flick downward after a moment. + into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<= WrittenMaster($activeSlave)>> disconcerting, and $his eyes flick downward after a moment. <<else>> - upon $his face. $He senses the intense look from $his beloved <<Master>> and finds it disconcerting, and after a moment glances away. + upon $his face. $He senses the intense look from $his beloved <<= WrittenMaster()>> and finds it disconcerting, and after a moment glances away. <</if>> $He blushes furiously. <<elseif ($activeSlave.devotion > 50)>> $He hurriedly complies, happy to be near you. Once $he's close, you take a moment to gaze deeply <<if canSee($activeSlave)>> - into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<Master>> disconcerting, and $he looks down after a moment, blushing. + into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> disconcerting, and $he looks down after a moment, blushing. <<else>> - upon $his face. $He finds the intense attention from $his <<Master>> disconcerting, and $he looks down after a moment, blushing. + upon $his face. $He finds the intense attention from $his <<= WrittenMaster()>>disconcerting, and $he looks down after a moment, blushing. <</if>> <<elseif ($activeSlave.devotion > 20)>> $He hurriedly complies, happy to be near you. Once $he's close, you take a moment to gaze deeply <<if canSee($activeSlave)>> - into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<Master>> worrying, and $he looks down after a moment, blushing nervously. + into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, blushing nervously. <<else>> - upon $his face. $He finds the intense attention from $his <<Master>> worrying, and $he looks down after a moment, blushing nervously. + upon $his face. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, blushing nervously. <</if>> <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust >= -20)>> $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take a moment to gaze deeply <<if canSee($activeSlave)>> - into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<Master>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. + into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. <<else>> - upon $his face. $He finds the intense attention from $his <<Master>> worrying, and turns away after a moment, $his lower lip trembling with nervousness. + upon $his face. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and turns away after a moment, $his lower lip trembling with nervousness. <</if>> <<elseif ($activeSlave.trust < -20)>> The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take a moment to gaze deeply @@ -155,7 +155,7 @@ Then, you gently raise $his <<if $activeSlave.face > 95>>heartrendingly beautifu <<elseif !canTalk($activeSlave)>> $He signs irritably, asking if you're done. <<else>> - $He splutters, "Are you done, <<Master>>? + $He splutters, "Are you done, <<Master>>?" <</if>> <<elseif $activeSlave.devotion < -20>> $He is nearly frozen with fear, and does not resist as you kiss $him deeply. In fact, $he barely reacts at all. $He opens $his mouth mechanically in response to your insistent tongue, but it's like kissing a doll. $He is so filled with terror that $he remains stiff even as it becomes clear to $him you're not going to hurt $him. When you bore of making out with your wife and pull away, $he stares at you in utter incomprehension. diff --git a/src/npc/fRelation.tw b/src/npc/fRelation.tw index 4f5e93c3f781d01596e1b730bd93ebfc09912f75..0524104b35e2c02540f7c5f6cd37095956987dcc 100644 --- a/src/npc/fRelation.tw +++ b/src/npc/fRelation.tw @@ -84,7 +84,7 @@ You call both $activeSlave.slaveName and $slaves[$partner].slaveName to your off <<= BothVCheck()>> <<= PartnerVCheck()>> <<elseif canWalk($activeSlave) && canWalk($slaves[$partner]) && ($activeSlave.devotion > 50) && ($slaves[$partner].devotion > 20) && (_activeSlaveRel == "sister" || _activeSlaveRel == "half-sister")>> - You call $activeSlave.slaveName's _activeSlaveRel $slaves[$partner].slaveName in for some incestuous fun, but see no reason to wait for _him2. When _he2 arrives, it's to the sight of $activeSlave.slaveName sitting on the couch with $his legs spread with you <<if ($activeSlave.vagina > -1)>>gently fucking $his pussy<<else>>using $his asshole<</if>><<if ($PC.dick == 0)>> with a strap-on<</if>>. You pull out and order $slaves[$partner].slaveName to orally service _his2 sister. _He2 gets down before the spreadeagled slave $girl to get to work. After watching $activeSlave.slaveName enjoy the attention for a while, you move behind the busy $slaves[$partner].slaveName and pull _him2 into a good position so you can fuck _him2 while _he2 sucks. After a few thrusts, $activeSlave.slaveName's eyes roll back. <<if ($activeSlave.voice == 0) || ($activeSlave.accent >= 3)>>$He gestures that it feels really good when you make $his sister moan into $him.<<else>>"Oh <<Master>>," $he <<say squeal>>s, "it feel<<s>> <<s>>o good when you make _him2 moan into me!"<</if>> + You call $activeSlave.slaveName's _activeSlaveRel $slaves[$partner].slaveName in for some incestuous fun, but see no reason to wait for _him2. When _he2 arrives, it's to the sight of $activeSlave.slaveName sitting on the couch with $his legs spread with you <<if ($activeSlave.vagina > -1)>>gently fucking $his pussy<<else>>using $his asshole<</if>><<if ($PC.dick == 0)>> with a strap-on<</if>>. You pull out and order $slaves[$partner].slaveName to orally service _his2 sister. _He2 gets down before the spread-eagled slave $girl to get to work. After watching $activeSlave.slaveName enjoy the attention for a while, you move behind the busy $slaves[$partner].slaveName and pull _him2 into a good position so you can fuck _him2 while _he2 sucks. After a few thrusts, $activeSlave.slaveName's eyes roll back. <<if ($activeSlave.voice == 0) || ($activeSlave.accent >= 3)>>$He gestures that it feels really good when you make $his sister moan into $him.<<else>>"Oh <<Master>>," $he <<say squeal>>s, "it feel<<s>> <<s>>o good when you make _him2 moan into me!"<</if>> <<set $slaves[$partner].oralCount++, $activeSlave.oralCount++, $oralTotal++>> <<= BothVCheck()>> <<= PartnerVCheck()>> diff --git a/src/npc/newSlaveIncestSex.tw b/src/npc/newSlaveIncestSex.tw index c485ac30036cd634950124ce335cac1b08bca6d8..e5ece5b0432aab21b9c115c1dfe630ca198548bf 100644 --- a/src/npc/newSlaveIncestSex.tw +++ b/src/npc/newSlaveIncestSex.tw @@ -117,7 +117,7 @@ As the _other's arousal grows, _othershe becomes more eager to please _otherher <br/><br/> You can tell how uncomfortable they are with you watching them, but as they become increasingly worked up, they lose their inhibitions. Soon, you are watching some fairly enthralling <<print $RecETSevent.replace("incest","") >> incest action at your office<<if _actions.length >>, including some enthusiastic <<print _actions.join(" and ")>><</if>>. Eventually, they bring each other to impressive mutual orgasms. Their lusty moans are muffled only by each others' crotches. Spent, exhausted, and with their faces covered in each others <<print _secretions.join(" and ")>>, they untangle to rest comfortably on your couch. <br/><br/> -You indicate them to present themselves to you. Still shaking from the aftershocks of their orgasms, they stand side by side in front of you, panting, naked and with their _genitals dripping mixed juices. You simply nod, showing your approval. They are visibly relieved, and not only sexually. They are more confident of having made the right choice in enslaving themselves to you, since you seem @@.mediumaquamarine;trustworthy@@ and @@.hotpink;sympathetic.@@ They hug again, kissing and licking the sexual fluids off each others' stained faces. +You indicate them to present themselves to you. Still shaking from the aftershocks of their orgasms, they stand side by side in front of you, panting, naked and with their _genitals dripping mixed juices. You simply nod, showing your approval. They are visibly relieved, and not only sexually. They are more confident of having made the right choice in enslaving themselves to you, since you seem @@.mediumaquamarine;trustworthy@@ and @@.hotpink;sympathetic.@@ They hug again, kissing and licking the sexual fluids off each others' stained faces. <</replace>> <<set $relative.devotion += 4>> <<set $relative.trust += 4>> diff --git a/src/player/actions/fCaress.tw b/src/player/actions/fCaress.tw index ac34d5f06119bf588eeea2627ddca29eacba724c..c71a9163f5c22e3b68084d029a28dbaedbb3fc7b 100644 --- a/src/player/actions/fCaress.tw +++ b/src/player/actions/fCaress.tw @@ -20,12 +20,12 @@ You tell $activeSlave.slaveName to <</if>> <<if ($activeSlave.fetish == "mindbroken") && ($activeSlave.relationship != -3)>> - $He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. + $He complies mechanically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment. <<elseif ($activeSlave.relationship == -2)>> $He eagerly complies, happy to be near the object of $his longing. Once $he's close, you hold $his face in your palms and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he loves overwhelming, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.relationship == -3)>> <<if $activeSlave.fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He doesn't react. + $He complies mechanically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He doesn't react. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> $He happily complies, eager to be close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and looks down with a smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> @@ -36,13 +36,13 @@ You tell $activeSlave.slaveName to $He complies obediently. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to reassuring, and looks down with a slight smile<<if $canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <</if>> <<elseif ($activeSlave.devotion > 75)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. + $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<= WrittenMaster()>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.devotion > 50)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $he looks down after a moment, blushing. + $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster($activeSlave)>> disconcerting, and $he looks down after a moment, blushing. <<elseif ($activeSlave.devotion > 20)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, blushing nervously. + $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster($activeSlave)>> worrying, and $he looks down after a moment, blushing nervously. <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. + $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster($activeSlave)>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. <<elseif ($activeSlave.trust < -20)>> The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He looks down fearfully, and begins to shake with terror, tears leaking silently down $his cheeks. <<else>> diff --git a/src/player/actions/fEmbrace.tw b/src/player/actions/fEmbrace.tw index 1deb96287982b7edfe7851d99a4d9b3d702e52b3..dc25094237ecb81c4a9928076d24eda14c6645f5 100644 --- a/src/player/actions/fEmbrace.tw +++ b/src/player/actions/fEmbrace.tw @@ -8,12 +8,12 @@ You tell $activeSlave.slaveName to <</if>> <<if ($activeSlave.fetish == "mindbroken") && ($activeSlave.relationship != -3)>> - $He complies automatically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. + $He complies automatically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment. <<elseif ($activeSlave.relationship == -2)>> $He excitedly complies, happy to be near the object of $his longing. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he loves overwhelming, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.relationship == -3)>> <<if $activeSlave.fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He shows no reaction. + $He complies mechanically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He shows no reaction. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> $He lovingly complies, hurrying to come close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and <<if canSee($activeSlave)>>looks down with a smile, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><<else>>looks down with a smile<</if>>. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> @@ -24,13 +24,13 @@ You tell $activeSlave.slaveName to $He complies obediently. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to reassuring, and looks down with a slight smile<<if $canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <</if>> <<elseif ($activeSlave.devotion > 75)>> - $He elatedly complies, joyful at being near to you. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. + $He elatedly complies, joyful at being near to you. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<= WrittenMaster()>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.devotion > 50)>> - $He dotingly complies, being near you filling $his with delight. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $he looks down after a moment, blushing. + $He dotingly complies, being near you filling $his with delight. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> disconcerting, and $he looks down after a moment, blushing. <<elseif ($activeSlave.devotion > 20)>> - $He joyfully complies, happy to be near you. Once $he's close, you you take $his willing head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, blushing nervously. + $He joyfully complies, happy to be near you. Once $he's close, you you take $his willing head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, blushing nervously. <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take $his head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. + $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take $his head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. <<elseif ($activeSlave.trust < -20)>> The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take $his trembling head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes for a moment. $He looks down fearfully, and begins to shake with terror, tears streaking down $his cheeks. <<else>> diff --git a/src/player/actions/fondleBoobs.tw b/src/player/actions/fondleBoobs.tw index de0687452b9a1b9a37c846e0c1e43b22d9752637..200ad148f4fce4869c78e46b8513aa5edd24679f 100644 --- a/src/player/actions/fondleBoobs.tw +++ b/src/player/actions/fondleBoobs.tw @@ -371,7 +371,7 @@ You call $him over so you can fondle $his <<if $activeSlave.nipples != "fuckable">> playing with $his<<if ($activeSlave.lactation > 0)>> milky<</if>> $activeSlave.nipples nipples so that they become hard in between your fingers and thumbs. You squeeze the tips of $his nipples with your thumbs and fingers and tweak them in your fingertips, then you dab $his nipples with your thumbs, flicking them in different directions. When you firmly pull $his nipples<<if ($activeSlave.lactation > 0)>> milk streams out of them and<</if>> $he lets out a gasp. <<else>> - playing with $his<<if ($activeSlave.lactation > 0)>> milky<</if>> $activeSlave.nipples nipples so that they become sodden with fluid around your fingers. You plunge the depths of $his nipple cunts and vigorously work the unusual orifice. When you finally withdraw from $his nipples<<if ($activeSlave.lactation > 0)>>, a stream of pentup milk flows out after you and<<else>>,<</if>> $he lets out a gasp. + playing with $his<<if ($activeSlave.lactation > 0)>> milky<</if>> $activeSlave.nipples nipples so that they become sodden with fluid around your fingers. You plunge the depths of $his nipple cunts and vigorously work the unusual orifice. When you finally withdraw from $his nipples<<if ($activeSlave.lactation > 0)>>, a stream of pent-up milk flows out after you and<<else>>,<</if>> $he lets out a gasp. <</if>> $His body softens as <<if canSee($activeSlave)>>$his $activeSlave.eyeColor eyes dart up to your face, before visibly catching $himself with a reminder<<else>>$he remembers<</if>> that $he's a slave and you're $his owner. When you finally stop, $he shivers but says nothing, uneasy at what you are going to do next. <<elseif ($activeSlave.trust < -50)>> diff --git a/src/player/actions/fondleButt.tw b/src/player/actions/fondleButt.tw index 28004ac5dae48c75df8110043ca4ca9c1e039873..b6c4f88146bfbd8db058db1bb7698c462810c6d8 100644 --- a/src/player/actions/fondleButt.tw +++ b/src/player/actions/fondleButt.tw @@ -36,7 +36,7 @@ as well as $his <</if>> <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.devotion >= -20)>> - $He's pleased at the prospect of you touching $his favorite bodypart. + $He's pleased at the prospect of you touching $his favorite body part. <</if>> <<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($activeSlave.anus == 0) && ($activeSlave.devotion >= -20)>> diff --git a/src/pregmod/assistantAppearancePackTwo.tw b/src/pregmod/assistantAppearancePackTwo.tw index 814200f99effac8987b2fc059fc8ea093d8309df..d4bf6cb09ec4214890688a3d9f80b8a510e00407 100644 --- a/src/pregmod/assistantAppearancePackTwo.tw +++ b/src/pregmod/assistantAppearancePackTwo.tw @@ -2,63 +2,65 @@ <<if $seeImages == 1>><<= assistantArt(3)>><</if>> -"Cool! New appearances to play around with!" Your assistant happily chimes. "Let's see what's inside! This looks heavenly..." She hunches forward as a large pair of white feathered wings extend from her upper back. She takes several experimental flaps before taking to the sky. "I feel positively radiant! Maybe a smaller version will be more to your liking?" She loses both height and wingspan until she stands roughly equivalent to <<= heightToEitherUnit(120)>>. She flutters around cutely. "This is neat, I'm like cupid. Want me to hook you up with anyone?" She winks as her wings become bat-like and a pair of cute little nubs appears on her head. "Or maybe you'd just like to play with me instead." The impish figure flirts, before landing and blossoming into a stunning woman. "You know a succubus can take her lover's ideal form." She runs her hands down her sides and to her crotch. <<if $seeDicks != 0>>She begins rubbing her clit as it steadily grows into a meaty cock. "Or an incubus, for the ladies." She returns to her previous form. <</if>>"Says here it comes with 'bonus novice witch' too. Neat. What's this though? It looks like an appeara" +<<setAssistantPronouns>> -<br><br><br><br><br><br><br><br>You tap at the screen; did she crash or something? +"Cool! New appearances to play around with!" Your assistant happily chimes. "Let's see what's inside! This looks heavenly..." _HeA hunches forward as a large pair of white feathered wings extend from _hisA upper back. _HeA takes several experimental flaps before taking to the sky. "I feel positively radiant! Maybe a smaller version will be more to your liking?" _HeA loses both height and wingspan until _heA stands roughly equivalent to <<= heightToEitherUnit(120)>>. _HeA flutters around cutely. "This is neat, I'm like cupid. Want me to hook you up with anyone?" _HeA winks as _hisA wings become bat-like and a pair of cute little nubs appears on _hisA head. "Or maybe you'd just like to play with me instead." The impish figure flirts, before landing and blossoming into a stunning woman. "You know a succubus can take _hisA lover's ideal form." _HeA runs _hisA hands down _hisA sides and to _hisA crotch. <<if $seeDicks != 0>>_HeA begins rubbing _hisA clit as it steadily grows into a meaty cock. "Or an incubus, for the ladies." _HeA returns to _hisA previous form. <</if>>"Says here it comes with 'bonus novice witch' too. Neat. What's this though? It looks like an appeara" + +<br><br><br><br><br><br><br><br>You tap at the screen; did _heA crash or something? <br><br><br> -After several minutes, she snaps back to life, with no mention about what exactly tied her up for so long. +After several minutes, _heA snaps back to life, with no mention about what exactly tied _himA up for so long. <br> <span ID="app"> __Personal assistant appearances:__ <br> <<link "Angel">> <<replace "#app">> - At your order, she installs the angel appearance. She spreads her wings and checks out her new body, "Thanks, <<= properTitle()>>, but could I have a robe or something? I'm indecent!" She blushes red. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the angel appearance. _HeA spreads _hisA wings and checks out _hisA new body, "Thanks, <<= properTitle()>>, but could I have a robe or something? I'm indecent!" _HeA blushes red. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "angel">> <</replace>> <</link>> <br> <<link "Cherub">> <<replace "#app">> - At your order, she installs the cherub appearance. She returns to her youthful figure and sprouts her wings. "This is awesome, little embarrassing though..." She says, covering her shame. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the cherub appearance. _HeA returns to _hisA youthful figure and sprouts _hisA wings. "This is awesome, little embarrassing though..." _HeA says, covering _hisA shame. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "cherub">> <</replace>> <</link>> <br> <<link "Imp">> <<replace "#app">> - At your order, she installs the imp appearance. She returns to her youthful figure and sprouts her wings. "This is awesome! So, wanna fool around? Maybe go torment some slaves?" She says, pulling out a pitchfork. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the imp appearance. _HeA returns to _hisA youthful figure and sprouts _hisA wings. "This is awesome! So, wanna fool around? Maybe go torment some slaves?" _HeA says, pulling out a pitchfork. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "imp">> <</replace>> <</link>> <br> <<link "Succubus">> <<replace "#app">> - At your order, she installs the succubus appearance. She promptly takes your breath away. "Thank you, <<= properTitle()>>. Now how shall I show you my appreciation..." Her avatar trails off while spreading her legs and flashing you her lovely pussy. "You can always customize me from the arcology management menu," she adds, with a hint of disapproval. + At your order, _heA installs the succubus appearance. _HeA promptly takes your breath away. "Thank you, <<= properTitle()>>. Now how shall I show you my appreciation..." _HisA avatar trails off while spreading _hisA legs and flashing you _hisA lovely pussy. "You can always customize me from the arcology management menu," _heA adds, with a hint of disapproval. <<set $assistantAppearance = "succubus">> <</replace>> <</link>> <<if $seeDicks != 0>> <br> <<link "Incubus">> <<replace "#app">> - At your order, she installs the incubus appearance. She becomes rather masculine, sporting a soft cock nearly as long as her thigh. "Thank you, <<= properTitle()>>. This is going to be fun. Would you like a taste?" She steadily becomes erect, a bead of precum forming at its tip. "You can always customize me from the arcology management menu," she adds, with a hint of disapproval. + At your order, _heA installs the incubus appearance. _HeA becomes rather masculine, sporting a soft cock nearly as long as _hisA thigh. "Thank you, <<= properTitle()>>. This is going to be fun. Would you like a taste?" _HeA steadily becomes erect, a bead of precum forming at its tip. "You can always customize me from the arcology management menu," _heA adds, with a hint of disapproval. <<set $assistantAppearance = "incubus">> <</replace>> <</link>> <</if>> <br> <<link "witch">> <<replace "#app">> - At your order, she installs the novice witch appearance. She wraps a tightly clinging robe around her voluptuous body and dons a wide-brimmed hat. "You can always customize me from the arcology management menu," she adds, pulling a book of lewd spells out. + At your order, _heA installs the novice witch appearance. _HeA wraps a tightly clinging robe around _hisA voluptuous body and dons a wide-brimmed hat. "You can always customize me from the arcology management menu," _heA adds, pulling a book of lewd spells out. <<set $assistantAppearance = "witch">> <</replace>> <</link>> <<link "_">> <<replace "#app">> - At your order, she installs the bugged appearance. Her body twists and contorts into an abomination of flesh and bone. It is honestly unsettling to look at. The thing morphs its body into a familiar female shape, though it is still off. Especially her eyes; they seem soulless. "You can always customize me from the arcology management menu," she adds, in an ill pronounced mimicry of your voice. + At your order, _heA installs the bugged appearance. _HisA body twists and contorts into an abomination of flesh and bone. It is honestly unsettling to look at. The thing morphs its body into a familiar female shape, though it is still off. Especially _hisA eyes; they seem soulless. "You can always customize me from the arcology management menu," _heA adds, in an ill pronounced mimicry of your voice. <<set $assistantAppearance = "ERROR_1606_APPEARANCE_FILE_CORRUPT">> <</replace>> <</link>> <br><<link "Your current appearance will do">> <<replace "#app">> - At your order, she maintains the $assistantAppearance appearance as her avatar. "Yes, <<= properTitle()>>," she confirms, and adds "if you reconsider, I can be customized from the arcology management menu." + At your order, _heA maintains the $assistantAppearance appearance as _hisA avatar. "Yes, <<= properTitle()>>," _heA confirms, and adds "if you reconsider, I can be customized from the arcology management menu." <</replace>> <</link>> </span> \ No newline at end of file diff --git a/src/pregmod/beastFuck.tw b/src/pregmod/beastFuck.tw index 4a42c176d881ca0c04978c9560f611254ab025ed..60d9157a74631b64bdb12452efe4d0a50aa5c311 100644 --- a/src/pregmod/beastFuck.tw +++ b/src/pregmod/beastFuck.tw @@ -361,7 +361,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to <<case "be a subordinate slave">> though it's only a matter of time before another slave decides to play with $his fuckhole. <<case "be your Head Girl">> - worried that $his charges got up to trouble while $he enjoyed $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s use. + worried that $his charges got up to trouble while $he enjoyed $his <<= WrittenMaster()>>'s use. <<case "guard you">> so $he can be fresh and ready for more sexual use even as $he guards your person. <<case "be the Schoolteacher">> diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw index 3e6c89e2eddc34e8c23d3c5817c997dbe4e7f386..f4269e11cc9bedfa07cca2a030d0028482318fa8 100644 --- a/src/pregmod/beastFucked.tw +++ b/src/pregmod/beastFucked.tw @@ -470,7 +470,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to <<case "be a subordinate slave">> though it's only a matter of time before another slave decides to play with $his fuckhole. <<case "be your Head Girl">> - worried that $his charges got up to trouble while $he enjoyed $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s use. + worried that $his charges got up to trouble while $he enjoyed $his <<= WrittenMaster()>>'s use. <<case "guard you">> so $he can be fresh and ready for more sexual use even as $he guards your person. <<case "be the Schoolteacher">> diff --git a/src/pregmod/csec.tw b/src/pregmod/csec.tw index 3bfb2073727a2f43e72702f34c6ca9e89fd4751f..540da863686d14697821e0cf57fc80f613c0ec3c 100644 --- a/src/pregmod/csec.tw +++ b/src/pregmod/csec.tw @@ -319,65 +319,65 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a <</link>> //Will cost <<print cashFormat(500)>> weekly// <<elseif _lostBabies != 1 && $DefaultBirthDestination != "anywhere">> - $His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sent to $DefaultBirthDestination. $slaves[$i].slaveName + $His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sent to $DefaultBirthDestination. $activeSlave.slaveName <<switch $DefaultBirthDestination>> <<case "an orphanage">> - <<if $slaves[$i].devotion > 95>> + <<if $activeSlave.devotion > 95>> worships you so completely that $he will not resent this. - <<elseif $slaves[$i].devotion > 50>> + <<elseif $activeSlave.devotion > 50>> is devoted to you, but $he will @@.mediumorchid;struggle to accept this.@@ - <<set $slaves[$i].devotion -= 2>> - <<elseif $slaves[$i].devotion > 20>> + <<set $activeSlave.devotion -= 2>> + <<elseif $activeSlave.devotion > 20>> has accepted being a sex slave, but $he will @@.mediumorchid;resent this intensely.@@ - <<set $slaves[$i].devotion -= 3>> + <<set $activeSlave.devotion -= 3>> <<else>> will of course @@.mediumorchid;hate you for this.@@ - <<set $slaves[$i].devotion -= 4>> + <<set $activeSlave.devotion -= 4>> <</if>> <<set $slaveOrphanageTotal += _curBabies>> <<case "a citizen school">> - <<if $slaves[$i].devotion > 95>> + <<if $activeSlave.devotion > 95>> loves you already, but <<print $he>>'ll @@.hotpink;love you even more@@ for this. - <<elseif $slaves[$i].devotion > 50>> + <<elseif $activeSlave.devotion > 50>> knows about these and will be @@.hotpink;overjoyed.@@ $He will miss $his child<<if _curBabies > 1>>ren<</if>>, but $he expected that. - <<elseif $slaves[$i].devotion > 20>> + <<elseif $activeSlave.devotion > 20>> will naturally miss $his child<<if _curBabies > 1>>ren<</if>>, but will @@.hotpink;take comfort@@ in the hope that $his offspring will have a better life. <<else>> will naturally retain some resentment over being separated from $his child<<if _curBabies > 1>>ren<</if>>, but this should be balanced by hope that $his offspring will have a better life. <</if>> - <<set $slaves[$i].devotion += 4, $citizenOrphanageTotal += _curBabies>> + <<set $activeSlave.devotion += 4, $citizenOrphanageTotal += _curBabies>> <<case "a private school">> - <<if $slaves[$i].devotion > 95>> + <<if $activeSlave.devotion > 95>> will @@.hotpink;worship you utterly@@ for this. - <<elseif $slaves[$i].devotion > 50>> + <<elseif $activeSlave.devotion > 50>> understands that this is the best possible outcome for the offspring of slave, and will be @@.hotpink;overjoyed.@@ - <<elseif $slaves[$i].devotion > 20>> + <<elseif $activeSlave.devotion > 20>> will miss $his child<<if _curBabies > 1>>ren<</if>>, but will be @@.hotpink;very grateful,@@ since <<print $he>>'ll understand this is the best possible outcome for a slave mother. <<else>> will resent being separated from $his child<<if _curBabies > 1>>ren<</if>>, but @@.hotpink;should understand and be grateful@@ that this is the best possible outcome here. <</if>> The child<<if _curBabies > 1>>ren<</if>> will be raised privately, with expert care and tutoring, an expensive proposition. - <<set $slaves[$i].devotion += 6, $privateOrphanageTotal += _curBabies>> + <<set $activeSlave.devotion += 6, $privateOrphanageTotal += _curBabies>> <<case "the market">> - <<if $slaves[$i].prestige > 1 || $slaves[$i].pornPrestige > 2>> + <<if $activeSlave.prestige > 1 || $activeSlave.pornPrestige > 2>> <<set _babyCost = random(-12,100)>> - <<if $slaves[$i].prematureBirth > 0>><<set _babyCost = random(-32,40)>><</if>> + <<if $activeSlave.prematureBirth > 0>><<set _babyCost = random(-32,40)>><</if>> <<else>> <<set _babyCost = random(-12,12)>> - <<if $slaves[$i].prematureBirth > 0>><<set _babyCost = -45>><</if>> + <<if $activeSlave.prematureBirth > 0>><<set _babyCost = -45>><</if>> <</if>> - $His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $slaves[$i].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>> - <<if $slaves[$i].devotion > 95>> + $His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $activeSlave.prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>> + <<if $activeSlave.devotion > 95>> $He adheres to your thoughts so strongly that even though you backed out of caring for $his child<<if _curBabies > 1>>ren<</if>>, $he still truly believes you are doing $him an honor. - <<elseif $slaves[$i].devotion > 50>> + <<elseif $activeSlave.devotion > 50>> $He is @@.mediumorchid;deeply hurt@@ by your sudden decision to sell $his child<<if _curBabies > 1>>ren<</if>> instead of having <<if _curBabies > 1>>them<<else>>it<</if>> cared for. $His trust in your words @@.gold;wavers@@ as $he thinks of $his child<<if _curBabies > 1>>ren<</if>>'s future. - <<set $slaves[$i].trust -= 5, $slaves[$i].devotion -= 5>> - <<elseif $slaves[$i].devotion > 20>> + <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>> + <<elseif $activeSlave.devotion > 20>> $He is @@.mediumorchid;devastated@@ by your sudden decision to sell $his child<<if _curBabies > 1>>ren<</if>> instead of having <<if _curBabies > 1>>them<<else>>it<</if>> cared for. $His mind struggles to comprehend @@.gold;such betrayal.@@ - <<set $slaves[$i].trust -= 10, $slaves[$i].devotion -= 10>> + <<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>> <<else>> For a moment, $he saw a glimmer of good in you; @@.mediumorchid;$he was clearly wrong.@@ $His mind struggles to comprehend @@.gold;why $he could ever even thing of trusting such a person.@@ - <<set $slaves[$i].trust -= 30, $slaves[$i].devotion -= 30>> + <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 30>> <</if>> <<set $cash += _curBabies*(50+_babyCost)>> <</switch>> diff --git a/src/pregmod/editGenetics.tw b/src/pregmod/editGenetics.tw index 381fcd0db3aacc22f931d9da4d87b25082402021..f5c78cf5da61e80f1f4737a082f0f283aa51298a 100644 --- a/src/pregmod/editGenetics.tw +++ b/src/pregmod/editGenetics.tw @@ -150,9 +150,9 @@ '8': 'immense', '9': 'immense', '10': 'immense', '11': 'inhuman', '12': 'inhuman', '13': 'inhuman', '14': 'inhuman', '15': 'inhuman', '16': 'inhuman', '17': 'inhuman', '18': 'inhuman', '19': 'inhuman', '20': 'inhuman'}[s] || 'unknown') + ' (' + Number(s) + ')'; }; - tmpl.cupCat = new Categorizer([0, 'flat'], [300, 'A cup'], [400, 'B cup'], [500, 'C cup'], [650, 'D cup'], [800, 'DD cup'], - [1000, 'F cup'], [1200, 'G cup'], [1400, 'H cup'], [1600, 'I cup'], [1800, 'J cup'], [2050, 'K cup'], [2300, 'L cup'], - [2600, 'M cup'], [2900, 'N cup'], [3250, 'O cup'], [3600, 'P cup'], [3950, 'Q cup'], [4300, 'R cup'], [4700, 'S cup'], + tmpl.cupCat = new Categorizer([0, 'flat'], [300, 'A-cup'], [400, 'B-cup'], [500, 'C-cup'], [650, 'D-cup'], [800, 'DD-cup'], + [1000, 'F-cup'], [1200, 'G-cup'], [1400, 'H-cup'], [1600, 'I-cup'], [1800, 'J-cup'], [2050, 'K-cup'], [2300, 'L-cup'], + [2600, 'M-cup'], [2900, 'N-cup'], [3250, 'O-cup'], [3600, 'P-cup'], [3950, 'Q-cup'], [4300, 'R-cup'], [4700, 'S-cup'], [5100, 'massive']); tmpl.areolaeDesc = function(s) { return ({'0': 'normal', '1': 'large', '2': 'unusually wide', '3': 'huge', '4': 'heart shaped', '5': 'star shaped'}[s] || 'unknown') + ' (' + Number(s) + ')'; diff --git a/src/pregmod/electiveSurgery.tw b/src/pregmod/electiveSurgery.tw index ab8f73e80c67000f566cd633f245a7076a091622..760ef06711a74fb0e92672296ab394373a6d750f 100644 --- a/src/pregmod/electiveSurgery.tw +++ b/src/pregmod/electiveSurgery.tw @@ -164,7 +164,7 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original You have a @@.orange;small pair of B-cup breasts.@@ <br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobsBonus = -2, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, $cash -= 5000, $surgeryType = "flatChest"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.// <<elseif $PC.boobs == 1>> - You have a @@.orange;big pair of DD breasts.@@ + You have a @@.orange;big pair of DD-cup breasts.@@ <br>[[Get a pair of breast implants|PC Surgery Degradation][$PC.boobsBonus = 1, $PC.boobsImplant = 1, $cash -= 10000, $surgeryType = "breastEnlargementImplant"]] | [[Add additional breast tissue|PC Surgery Degradation][$PC.boobsBonus = 1, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobsBonus = -1, $cash -= 5000, $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, $cash -= 5000, $surgeryType = "flatChest"]] <<elseif $PC.title == 1>> You have a @@.orange;masculine chest.@@ At your request, breast tissue could be added until you have a healthy bust, though society is unlikely to approve. @@ -361,9 +361,9 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original [[Remove your male half|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $cash -= 25000, $surgeryType = "herm2female"]] | [[Remove your female half|PC Surgery Degradation][$PC.vagina = 0, $PC.preg = 0, WombFlush($PC), $cash -= 25000, $surgeryType = "herm2male"]] <<if $PC.title > 0>> - | [[Remove your male half completely|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.title = 0, $PC.pronoun = "she", $PC.object = "her", $PC.possessive = "her", $cash -= 25000, $surgeryType = "herm2truefemale"]] + | [[Remove your male half completely|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.title = 0, generatePlayerPronouns($PC), $cash -= 25000, $surgeryType = "herm2truefemale"]] <<else>> - | [[Remove your female half completely|PC Surgery Degradation][$PC.vagina = 0, $PC.preg = 0, WombFlush($PC), $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $PC.title = 1, $PC.pronoun = "he", $PC.object = "him", $PC.possessive = "his", $cash -= 25000, $surgeryType = "herm2truemale"]] + | [[Remove your female half completely|PC Surgery Degradation][$PC.vagina = 0, $PC.preg = 0, WombFlush($PC), $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $PC.title = 1, generatePlayerPronouns($PC), $cash -= 25000, $surgeryType = "herm2truemale"]] <</if>> <<elseif $PC.dick == 1>> You have @@.orange;male genitalia@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@ "We'll store some of your sperm for you, should you decide to lose your maleness, and have it shipped to your arcology. Who you decide to use it on, well... That's up to you!" @@ -371,8 +371,8 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original [[Have your male organs replaced with female ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.vagina = 1, $PC.newVag = 1, $cash -= 50000, $surgeryType = "male2female"]] | [[Add a female reproductive tract|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), $cash -= 150000, $surgeryType = "male2herm"]] <<if $PC.title > 0>> - | [[Become a woman|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, $PC.title = 0, $PC.pronoun = "she", $PC.object = "her", $PC.possessive = "her", $cash -= 50000, $surgeryType = "male2truefemale"]] - | [[Become a hermaphrodite girl|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), $PC.title = 0, $PC.pronoun = "she", $PC.object = "her", $PC.possessive = "her", $cash -= 150000, $surgeryType = "male2hermfemale"]] + | [[Become a woman|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 0, $PC.storedCum += 10, $PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, $PC.title = 0, generatePlayerPronouns($PC), $cash -= 50000, $surgeryType = "male2truefemale"]] + | [[Become a hermaphrodite girl|PC Surgery Degradation][$PC.vagina = 1, $PC.newVag = 1, $PC.preg = 0, WombFlush($PC), $PC.title = 0, generatePlayerPronouns($PC), $cash -= 150000, $surgeryType = "male2hermfemale"]] <</if>> <<else>> You have @@.orange;female genitalia@@ and a @@.orange;<<if $PC.title > 0>>masculine<<else>>feminine<</if>> appearance.@@ @@ -380,8 +380,8 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original [[Have your female organs replaced with male ones|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.vagina = 0, $cash -= 50000, $surgeryType = "female2male"]] | [[Add a male reproductive tract|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $cash -= 150000, $surgeryType = "female2herm"]] <<if $PC.title == 0>> - | [[Become a man|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.vagina = 0, $PC.preg = 0, WombFlush($PC), $PC.title = 1, $PC.pronoun = "he", $PC.object = "him", $PC.possessive = "his", $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $cash -= 50000, $surgeryType = "female2truemale"]] - | [[Become a hermaphrodite boy|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.title = 1, $PC.pronoun = "he", $PC.object = "him", $PC.possessive = "his", $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $cash -= 150000, $surgeryType = "female2hermmale"]] + | [[Become a man|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.vagina = 0, $PC.preg = 0, WombFlush($PC), $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $cash -= 50000, $surgeryType = "female2truemale"]] + | [[Become a hermaphrodite boy|PC Surgery Degradation][$PC.ballsImplant = 0, $PC.balls = 0, $PC.dick = 1, $PC.title = 1, generatePlayerPronouns($PC), $PC.boobs = 0, $PC.boobsBonus = 0, $PC.boobsImplant = 0, $cash -= 150000, $surgeryType = "female2hermmale"]] <</if>> <</if>> <</if>> diff --git a/src/pregmod/eliteTakeOver.tw b/src/pregmod/eliteTakeOver.tw index 7e0b41288dfef8016dbc6b828741cb3ec669668e..5ce16f0d014e405dba8a625651ea65e4d849ef76 100644 --- a/src/pregmod/eliteTakeOver.tw +++ b/src/pregmod/eliteTakeOver.tw @@ -1,6 +1,7 @@ :: eliteTakeOver [nobr] <<set $nextButton = " ">> +<<setLocalPronouns $Bodyguard>> <<set _pregSurrender = 0>> /* preg/lobotomization check */ @@ -31,7 +32,7 @@ You look up from your desk as the locked door to your office unseals, and a doze What was that last thing he said? It's getting hard to think right. The $PC.refreshment... Drugged... You collapse onto your desk, unconscious. <br> <<if $Bodyguard != 0>> - A sharp pain and a rush of adrenaline drags you back to your senses. Sneaking a peak, you witness $Bodyguard.slaveName valiantly trying to protect you, despite <<if $Bodyguard.amp < 0>>her cybernetics being locked down<<else>>the overwhelming odds<</if>>. As she and their leader struggle closer to your desk, his revolver and a syringe are dislodged onto your desk. It seems drugging you wasn't their first thought. With $Bodyguard.slaveName's risky gamble, your fate has fallen back into your hands. + A sharp pain and a rush of adrenaline drags you back to your senses. Sneaking a peak, you witness $Bodyguard.slaveName valiantly trying to protect you, despite <<if $Bodyguard.amp < 0>>$his cybernetics being locked down<<else>>the overwhelming odds<</if>>. As she and their leader struggle closer to your desk, his revolver and a syringe are dislodged onto your desk. It seems drugging you wasn't their first thought. With $Bodyguard.slaveName's risky gamble, your fate has fallen back into your hands. <<else>> You'll spend the rest of your life a breeder to the Societal Elite; blinded and muted. More than a slave, but still less than your master. Life isn't so bad, your two most devoted slaves were taken along to keep you happy, and you are treated quite well, possibilities considered. Though once your eggs dry up, odds are your little remaining usefulness will be at an end. Best not to think too much into it. <<set _pregSurrender = 1>> @@ -55,7 +56,7 @@ You look up from your desk as the locked door to your office unseals, and a doze <<if $Bodyguard != 0>> <br> <<if $PC.pregSource == -1 || $PC.pregSource == -6>> - $Bodyguard.slaveName is already doing everything in her power to save you. + $Bodyguard.slaveName is already doing everything in $his power to save you. <<else>> <<link "Attempt to signal $Bodyguard.slaveName, your bodyguard">> <<set $finalChoice = "bodyguard">> diff --git a/src/pregmod/eliteTakeOverFight.tw b/src/pregmod/eliteTakeOverFight.tw index da76b30fbb39ee1e9601de7347497fe397b5b123..0f1f8f92fecb38b264dee6775e94bcfdc3e80c44 100644 --- a/src/pregmod/eliteTakeOverFight.tw +++ b/src/pregmod/eliteTakeOverFight.tw @@ -260,7 +260,8 @@ <<goto "eliteTakeOverResult">> <</link>> <<elseif $Bodyguard != 0>> - It is now that $Bodyguard.slaveName makes her entrance, pointing her guns at the <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite. + <<setLocalPronouns $Bodyguard>> + It is now that $Bodyguard.slaveName makes $his entrance, pointing $his guns at the <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite. She then asks<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, what should I do with the <<if $eliteLeft < $eliteTotal>>remaining<</if>> "elite" left? <br> <<link "Open fire">> diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw index c708060c9ba37178eb69c68659a2ee3a3efd18af..8acd1ee299e896a15e60fe71c06f6faac5798c10 100644 --- a/src/pregmod/fFeet.tw +++ b/src/pregmod/fFeet.tw @@ -79,53 +79,53 @@ <<elseif $activeSlave.boobs >= 8500>> <<set _boobsa = 'obscenely massive'>> <<elseif $activeSlave.boobs >= 8000>> - <<set _boobsa = 'Z cup'>> + <<set _boobsa = 'Z-cup'>> <<elseif $activeSlave.boobs >= 7500>> - <<set _boobsa = 'Y cup'>> + <<set _boobsa = 'Y-cup'>> <<elseif $activeSlave.boobs >= 7000>> - <<set _boobsa = 'X cup'>> + <<set _boobsa = 'X-cup'>> <<elseif $activeSlave.boobs >= 6500>> - <<set _boobsa = 'V cup'>> + <<set _boobsa = 'V-cup'>> <<elseif $activeSlave.boobs >= 5500>> - <<set _boobsa = 'U cup'>> + <<set _boobsa = 'U-cup'>> <<elseif $activeSlave.boobs >= 5100>> - <<set _boobsa = 'T cup'>> + <<set _boobsa = 'T-cup'>> <<elseif $activeSlave.boobs >= 4700>> - <<set _boobsa = 'S cup'>> + <<set _boobsa = 'S-cup'>> <<elseif $activeSlave.boobs >= 4300>> - <<set _boobsa = 'R cup'>> + <<set _boobsa = 'R-cup'>> <<elseif $activeSlave.boobs >= 3950>> - <<set _boobsa = 'Q cup'>> + <<set _boobsa = 'Q-cup'>> <<elseif $activeSlave.boobs >= 3600>> - <<set _boobsa = 'P cup'>> + <<set _boobsa = 'P-cup'>> <<elseif $activeSlave.boobs >= 3250>> - <<set _boobsa = 'O cup'>> + <<set _boobsa = 'O-cup'>> <<elseif $activeSlave.boobs >= 2900>> - <<set _boobsa = 'N cup'>> + <<set _boobsa = 'N-cup'>> <<elseif $activeSlave.boobs >= 2600>> - <<set _boobsa = 'M cup'>> + <<set _boobsa = 'M-cup'>> <<elseif $activeSlave.boobs >= 2300>> - <<set _boobsa = 'L cup'>> + <<set _boobsa = 'L-cup'>> <<elseif $activeSlave.boobs >= 2050>> - <<set _boobsa = 'K cup'>> + <<set _boobsa = 'K-cup'>> <<elseif $activeSlave.boobs >= 1800>> - <<set _boobsa = 'J cup'>> + <<set _boobsa = 'J-cup'>> <<elseif $activeSlave.boobs >= 1600>> - <<set _boobsa = 'I cup'>> + <<set _boobsa = 'I-cup'>> <<elseif $activeSlave.boobs >= 1400>> - <<set _boobsa = 'H cup'>> + <<set _boobsa = 'H-cup'>> <<elseif $activeSlave.boobs >= 1200>> - <<set _boobsa = 'G cup'>> + <<set _boobsa = 'G-cup'>> <<elseif $activeSlave.boobs >= 1000>> - <<set _boobsa = 'F cup'>> + <<set _boobsa = 'F-cup'>> <<elseif $activeSlave.boobs >= 800>> - <<set _boobsa = 'DD cup'>> + <<set _boobsa = 'DD-cup'>> <<elseif $activeSlave.boobs >= 650>> - <<set _boobsa = 'D cup'>> + <<set _boobsa = 'D-cup'>> <<elseif $activeSlave.boobs >= 400>> - <<set _boobsa = 'C cup'>> + <<set _boobsa = 'C-cup'>> <<elseif $activeSlave.boobs >= 300>> - <<set _boobsa = 'B cup'>> + <<set _boobsa = 'B-cup'>> <<else>> <<set _boobsa = 'skip'>> <<set _boobs = 'flat'>> @@ -378,7 +378,7 @@ You call $activeSlave.slaveName to your office, telling $his to use $his feet to <<elseif $activeSlave.fetish == "sadist" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> $activeSlave.slaveName is a sadist, and $his deft footjob toys with the boundaries of pain and pleasure. $His devoted yet belittling <<if canSee($activeSlave)>>gaze carefully watches your face<<else>>expressions are clear as $he feels<</if>> for every reaction. <<elseif $activeSlave.fetish == "dom" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> - $activeSlave.slaveName is a dominant and $his skilled feet roughly stroke your erect cock, but $he pauses often to rub $his soles on your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls so $he doesn't get too aggressive with $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. + $activeSlave.slaveName is a dominant and $his skilled feet roughly stroke your erect cock, but $he pauses often to rub $his soles on your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls so $he doesn't get too aggressive with $his <<= WrittenMaster()>>. <<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> $activeSlave.slaveName skillfully strokes your cock with $his feet, one of $his hands roaming across $his _belly belly as $he happily services you. $He occasionally pauses to <<if canSee($activeSlave)>>watch <<else>>feel <</if>>your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls churn with sperm, clearly lost in a pregnancy fantasy. <<else>> diff --git a/src/pregmod/fMarry.tw b/src/pregmod/fMarry.tw index 2e37ee6783e3755f3777448f16b9417befe6f8a9..4800df4c142e664acd3101f6e11d65f1f4cc949f 100644 --- a/src/pregmod/fMarry.tw +++ b/src/pregmod/fMarry.tw @@ -6,7 +6,7 @@ <<run clearSummaryCache($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<setLocalPronouns $assistantPronouns 2>> +<<setAssistantPronouns>> <<setPlayerPronouns>> <<if $activeSlave.relationship > 0>> @@ -299,11 +299,11 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <<if $assistant == 0>> instructions. <<else>> - instructions, _his2 + instructions, _hisA <<if $assistantAppearance == "monstergirl">> - monstergirl avatar appearing in a surprisingly conventional surplice that covers _him2 up decently. All except for _his2 horns, which protrude from under the headpiece. + monstergirl avatar appearing in a surprisingly conventional surplice that covers _himA up decently. All except for _hisA horns, which protrude from under the headpiece. <<elseif $assistantAppearance == "shemale">> - shemale avatar appears in a collar patterned to look like a minister's, and absolutely nothing else, stroking _himself2 with anticipation. + shemale avatar appears in a collar patterned to look like a minister's, and absolutely nothing else, stroking _himselfA with anticipation. <<elseif $assistantAppearance == "amazon">> amazon avatar wearing a tribal shaman's cape and carrying a medicine stick adorned with all sorts of little charms and baubles. <<elseif $assistantAppearance == "businesswoman">> @@ -311,31 +311,31 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of <<elseif $assistantAppearance == "fairy">> fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes and looking rather smug about it. <<elseif $assistantAppearance == "pregnant fairy">> - fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes stretched tight by _his2 pregnant belly and looking rather smug about it. + fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes stretched tight by _hisA pregnant belly and looking rather smug about it. <<elseif $assistantAppearance == "goddess">> - goddess avatar completely unchanged, since _he2 considers _his2 usual form perfectly appropriate for a marriage. + goddess avatar completely unchanged, since _heA considers _hisA usual form perfectly appropriate for a marriage. <<elseif $assistantAppearance == "hypergoddess">> - goddess avatar completely unchanged, since _he2 considers _his2 usual form perfectly appropriate for a marriage. + goddess avatar completely unchanged, since _heA considers _hisA usual form perfectly appropriate for a marriage. <<elseif $assistantAppearance == "loli">> - loli avatar looking surprisingly mature in a minister's collar. Though, _he2 would rather be the flower _girl2 in this wedding. + loli avatar looking surprisingly mature in a minister's collar. Though, _heA would rather be the flower _girlA in this wedding. <<elseif $assistantAppearance == "preggololi">> - loli avatar looking surprisingly mature in a minister's collar. Though, _he2 would rather be the flower _girl2 in this wedding. + loli avatar looking surprisingly mature in a minister's collar. Though, _heA would rather be the flower _girlA in this wedding. <<elseif $assistantAppearance == "schoolgirl">> - schoolgirl avatar looking willfully absurd in a minister's collar and _his2 usual short plaid skirt. + schoolgirl avatar looking willfully absurd in a minister's collar and _hisA usual short plaid skirt. <<elseif $assistantAppearance == "angel">> - angelic avatar looking, well, angelic in _his2 usual garb with an added minister's collar. + angelic avatar looking, well, angelic in _hisA usual garb with an added minister's collar. <<elseif $assistantAppearance == "cherub">> - angelic avatar looking absurd in _his2 oversized robe, complete with wing-holes, and minister's collar. + angelic avatar looking absurd in _hisA oversized robe, complete with wing-holes, and minister's collar. <<elseif $assistantAppearance == "incubus">> - demonic avatar completely unchanged, since _he2 considers _his2 usual form perfectly appropriate for a marriage, though _he2 has made sure to be fully erect for the wedding. + demonic avatar completely unchanged, since _heA considers _hisA usual form perfectly appropriate for a marriage, though _heA has made sure to be fully erect for the wedding. <<elseif $assistantAppearance == "succubus">> - demonic avatar wearing nothing but a minister's collar. _He2 has brought several marital aids along with _him2 to tease the bride and groom with. + demonic avatar wearing nothing but a minister's collar. _HeA has brought several marital aids along with _himA to tease the bride and groom with. <<elseif $assistantAppearance == "imp">> - demonic avatar looking absurd in _his2 oversized robe, complete with wing-holes, and minister's collar. + demonic avatar looking absurd in _hisA oversized robe, complete with wing-holes, and minister's collar. <<elseif $assistantAppearance == "witch">> witchy avatar looking rather formal in a fine robe and minister's collar. <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - twitching avatar completely unchanged, sans a bulbous ring of flesh around _his2 neck that sort of resembles a minister's collar. + twitching avatar completely unchanged, sans a bulbous ring of flesh around _hisA neck that sort of resembles a minister's collar. <<else>> symbol appearing in white. <</if>> @@ -350,43 +350,43 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of "Slave redesignated," it responds immediately. The thing is done. <<else>> <<if $assistantAppearance == "monstergirl">> - _His2 avatar snaps its fingers and shrugs off its surplice, revealing _his2 tentacle hair, pale skin, and cocks once more. + _HisA avatar snaps its fingers and shrugs off its surplice, revealing _hisA tentacle hair, pale skin, and cocks once more. <<elseif $assistantAppearance == "shemale">> - _His2 avatar snaps its fingers and starts to masturbate more energetically. + _HisA avatar snaps its fingers and starts to masturbate more energetically. <<elseif $assistantAppearance == "amazon">> - _His2 avatar gives its medicine stick a shake. + _HisA avatar gives its medicine stick a shake. <<elseif $assistantAppearance == "businesswoman">> - _His2 avatar snaps its fingers. + _HisA avatar snaps its fingers. <<elseif ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy")>> - _His2 avatar claps its hands twice, looking a bit disappointed at the lack of celebration. + _HisA avatar claps its hands twice, looking a bit disappointed at the lack of celebration. <<elseif $assistantAppearance == "goddess">> - _His2 avatar makes a complex hand gesture, looking beatific. + _HisA avatar makes a complex hand gesture, looking beatific. <<elseif $assistantAppearance == "hypergoddess">> - _His2 avatar makes a complex hand gesture, looking beatific. + _HisA avatar makes a complex hand gesture, looking beatific. <<elseif $assistantAppearance == "loli">> - _His2 avatar claps its hands together. + _HisA avatar claps its hands together. <<elseif $assistantAppearance == "preggololi">> - _His2 avatar claps its hands together. + _HisA avatar claps its hands together. <<elseif $assistantAppearance == "schoolgirl">> - _His2 avatar snaps its fingers and gives a little twirl. + _HisA avatar snaps its fingers and gives a little twirl. <<elseif $assistantAppearance == "angel">> - _His2 avatar spreads its wings and arms and emits a flash of light. + _HisA avatar spreads its wings and arms and emits a flash of light. <<elseif $assistantAppearance == "cherub">> - _His2 avatar claps its hands together, emitting a burst of light. + _HisA avatar claps its hands together, emitting a burst of light. <<elseif $assistantAppearance == "incubus">> - _His2 avatar flicks the tip of its penis and blows _his2 load towards the both of you. + _HisA avatar flicks the tip of its penis and blows _hisA load towards the both of you. <<elseif $assistantAppearance == "succubus">> - _His2 avatar starts to masturbate furiously and orgasms lewdly. + _HisA avatar starts to masturbate furiously and orgasms lewdly. <<elseif $assistantAppearance == "imp">> - _His2 avatar claps its hands together, emitting a burst of darkness. + _HisA avatar claps its hands together, emitting a burst of darkness. <<elseif $assistantAppearance == "witch">> - _His2 avatar pulls out its spellbook and attempts a spell to bind you two; _he2 manages to conjure a large ring around _him2, pinning _his2 arms to _his2 sides. + _HisA avatar pulls out its spell book and attempts a spell to bind you two; _heA manages to conjure a large ring around _himA, pinning _hisA arms to _hisA sides. <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - _His2 avatar splits open to reveal a number of tentacles and wraps them around each other. + _HisA avatar splits open to reveal a number of tentacles and wraps them around each other. <<else>> - _His2 symbol flashes. + _HisA symbol flashes. <</if>> - "Done," _he2 says. + "Done," _heA says. <</if>> <<if $activeSlave.relationship > 0>> <<set $activeSlave.relationshipTarget = 0>> @@ -564,45 +564,45 @@ You tell $activeSlave.slaveName that you're going to marry $him. (A proposal, of "The marriage protocol now requires you to <<if $PC.dick == 1>>fellate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders $him, and $he <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. <<else>> <<if $assistantAppearance == "monstergirl">> - "To consecrate the ceremony," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar begins to play with _his2 dicks. + "To consecrate the ceremony," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar begins to play with _hisA dicks. <<elseif $assistantAppearance == "shemale">> "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off. <<elseif $assistantAppearance == "amazon">> "To complete this ritual," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off. <<elseif $assistantAppearance == "businesswoman">> - "To consecrate the marriage," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>fellate<<else>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar sneaks a hand down _his2 suit skirt, blushing furiously. + "To consecrate the marriage," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>fellate<<else>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar sneaks a hand down _hisA suit skirt, blushing furiously. <<elseif $assistantAppearance == "fairy">> - "To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar spreads _his2 legs while still hovering in the air and masturbates eagerly through _his2 half-worn robes. + "To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar spreads _hisA legs while still hovering in the air and masturbates eagerly through _hisA half-worn robes. <<elseif $assistantAppearance == "pregnant fairy">> - "To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around _his2 large belly. + "To seal the deal," $assistantName concludes, "$activeSlave.slaveName, you gotta drink the <<if $PC.title == 1>>groom's <<else>>bride's <</if>><<if $PC.dick == 1>>semen<<if $PC.vagina == 1>> and pussy juices<</if>><<else>>pussy juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's pregnant avatar curls while still hovering in the air and masturbates eagerly around _hisA large belly. <<elseif $assistantAppearance == "goddess">> - "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _his2 perpetual pregnancy. + "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _hisA perpetual pregnancy. <<elseif $assistantAppearance == "hypergoddess">> - "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _his2 massive perpetual pregnancy. + "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now <<if $PC.dick == 1>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s seed<<else>>drink the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s female juices<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar looks on approvingly, cradling _hisA massive perpetual pregnancy. <<elseif $assistantAppearance == "loli">> - "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick _hisP cunny.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunny<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar sneaks a hand down _his2 dress, blushing furiously. + "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick _hisP cunny.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunny<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar sneaks a hand down _hisA dress, blushing furiously. <<elseif $assistantAppearance == "preggololi">> - "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s lovely cock<<if $PC.vagina == 1>>and eat out _hisP cunt.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunt<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar attempts to sneak a hand down _his2 dress, but is thwarted by _his2 belly. _He2 instead openly rubs _his2 crotch through the front of _his2 dress, blushing furiously. + "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s lovely cock<<if $PC.vagina == 1>>and eat out _hisP cunt.<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cunt<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar attempts to sneak a hand down _hisA dress, but is thwarted by _hisA belly. _HeA instead openly rubs _hisA crotch through the front of _hisA dress, blushing furiously. <<elseif $assistantAppearance == "schoolgirl">> "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar starts to jill off. <<elseif $assistantAppearance == "angel">> - "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now join <<= PlayerName()>> in their bedroom and consummate this marriage." The slave <<if _reactionType == 0>>stares blankly<<else>>looks confused<</if>>. "After the wedding ends, would be the time." $assistantName says, covering _his2 face in embarrassment at the thought. + "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you must now join <<= PlayerName()>> in their bedroom and consummate this marriage." The slave <<if _reactionType == 0>>stares blankly<<else>>looks confused<</if>>. "After the wedding ends, would be the time." $assistantName says, covering _hisA face in embarrassment at the thought. <<elseif $assistantAppearance == "cherub">> - "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick _hisP pussy,<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s pussy<</if>>, in the privacy of <<= PlayerName()>>'s bedroom, of course." $assistantName hides _his2 face in _his2 hands at the thought. + "To consummate the marriage," $assistantName concludes, "$activeSlave.slaveName, you should <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s cock<<if $PC.vagina == 1>>and lick _hisP pussy,<</if>><<else>>lick the <<if $PC.title == 1>>groom<<else>>the bride<</if>>'s pussy<</if>>, in the privacy of <<= PlayerName()>>'s bedroom, of course." $assistantName hides _hisA face in _hisA hands at the thought. <<elseif $assistantAppearance == "incubus">> "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Enjoying the sight, $assistantName's avatar begins to furiously stroke its shaft. <<elseif $assistantAppearance == "succubus">> - "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar pulls out a large dildo and begins ramming it into _his2 own pussy. + "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar pulls out a large dildo and begins ramming it into _hisA own pussy. <<elseif $assistantAppearance == "imp">> - "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar hikes _his2 robe and vigorously rubs _his2 pussy. + "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. Pleased by the sight, $assistantName's avatar hikes _hisA robe and vigorously rubs _hisA pussy. <<elseif $assistantAppearance == "witch">> "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar begins to fidget at the sight, having summoned a vibrator beforehand and accidentally linked it to your pleasure. <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. $assistantName's avatar begins to swell, drawing all its gained mass to its midsection. Its gravid middles splits vertically, allowing a new mass of flesh to fall to the floor, which quickly grows and reshapes itself into a spitting image of yourself. Meanwhile, the original twists into an image of $activeSlave.slaveName. $assistantName's two avatars begin copying you and $activeSlave.slaveName's actions perfectly. <<else>> - "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. With only a symbol to express _his2 approval, $assistantName is forced to content _himself2 with spinning the symbol and making it glow in time with your new slave wife's efforts. + "To get this marriage started," $assistantName concludes, "$activeSlave.slaveName, the rules say you should now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave <<if _reactionType == 0>>only starts when you push $his head to your crotch<<elseif _reactionType == 1>>eagerly complies<<elseif _reactionType == 2>>reluctantly obeys<<else>>hurries to obey<</if>>. With only a symbol to express _hisA approval, $assistantName is forced to content _himselfA with spinning the symbol and making it glow in time with your new slave wife's efforts. <</if>> - "Done," _he2 says when you climax. "Enjoy your + "Done," _heA says when you climax. "Enjoy your <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> <<if ($activeSlave.fetish == "submissive")>> submissive slave wife!" diff --git a/src/pregmod/fPat.tw b/src/pregmod/fPat.tw index 6401a1debb7c264e19e4482817a8430c4daeea66..0a0a199c3eb34aff4f7ae3017c6efa4cf764b9a8 100644 --- a/src/pregmod/fPat.tw +++ b/src/pregmod/fPat.tw @@ -120,13 +120,13 @@ You walk around $him, drawing closer and slowly resting your hand on $his head. <<elseif ($activeSlave.relationship == -3) && $activeSlave.devotion+$activeSlave.trust >= 175>> Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> and finally onto your lap<</if>>, relaxing as $he feels your caress. As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a <<if $PC.title == 1>>man and his <<else>>woman and her <</if>>devoted and content wife. <<elseif ($activeSlave.relationship == -2)>> - Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat her head. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses. As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a <<if $PC.title == 1>>man and his <<else>>woman and her<</if>>devoted and content servant. + Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat $his head. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses. As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a <<if $PC.title == 1>>man and his <<else>>woman and her<</if>>devoted and content servant. <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.amp != 1)>> As you start to touch $him $he smiles at you and takes your hand, following its movements. You tenderly and lovingly kiss it and let it rest on the side of $his head, before continuing with your ministrations. As opposed to your more submissive slaves, $activeSlave.slaveName takes an active role in your petting, gently guiding where your hand goes along $his head. You enjoy the feel of $his hand on yours, as well as $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>smooth scalp<<else>> hair<</if>>. <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> $He stiffens at your touch but slowly relaxes at the sensation of your hand on $his head. You tenderly and lovingly stroke your fingers along $his scalp, enjoying the feeling of your slave's subservience. $He gently, submissively, presses $his head against your hand, like a dog. As you continue <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>kneading $his shaved scalp<<else>>stroking $his hair<</if>>, $he starts to clutch $his thighs, and if you listen you can hear subdued whimpers. $He looks up at you with adoring eyes, and relishes in the pureness of this act as $his master's pet to $his beloved <<= WrittenMaster($activeSlave)>>. <<elseif $activeSlave.devotion > 50>> - $He accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's willingness to set aside her dignity for headpats. $He leans $his body backward, pressing $himself against you. You can feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. You take your time enjoying the sensation of <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>rubbing your slave's smooth scalp<<else>>gently running your fingers through your slave's hair<</if>>, and your slave smiles happily as you do. As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well. + $He accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's willingness to set aside $his dignity for headpats. $He leans $his body backward, pressing $himself against you. You can feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. You take your time enjoying the sensation of <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>rubbing your slave's smooth scalp<<else>>gently running your fingers through your slave's hair<</if>>, and your slave smiles happily as you do. As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well. <<elseif $activeSlave.devotion > 20>> $He willingly accepts it. As you tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's roiling emotions, and finally submission. You can still sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch. As you continue your ministrations, your slave slowly, and with more then a bit of uncertainty, finally starts to relax. $He looks at you with confusion and trepidation. Your eyes betray nothing however, you simply smile and press $his head into your <<if $PC.boobs == 1>>soft breasts<<else>>masculine chest<</if>>, all the while enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hands gliding over $his smooth head<<else>>fingers gliding through $his hair<</if>>. <<elseif $activeSlave.devotion >= -20 && $activeSlave.trust < -20>> diff --git a/src/pregmod/fSelf.tw b/src/pregmod/fSelf.tw index 04afb0335c8d360a2a3f35e36664825f8c5709ee..b1ec36a0442964e68a5a14685f7c48cf3dea5ff6 100644 --- a/src/pregmod/fSelf.tw +++ b/src/pregmod/fSelf.tw @@ -20,27 +20,27 @@ Taking the hose and attaching the delectable cockhead to it, you drag it over to <<elseif $PC.cumTap < 5>> -Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet a little more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your lover's pent up load into yourself. Patting your bloated belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you imagine you belly swelling even larger, be it with child or more cum. +Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet a little more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your bloated belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you imagine you belly swelling even larger, be it with child or more cum. <<elseif $PC.cumTap < 10>> -Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your lover's pent up load into yourself. Patting your rounded belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you cradle your bloated middle, you practically look pregnant already! +Taking the hose and attaching your favorite cockhead to it, you drag it over to your bed and make yourself comfortable. Teasing your pussylips with the dildo, even going as far as spurting a touch of cum across your belly, you drive it into your aching cunt. With every thrust, you jet more cum into your empty womb, bulging you more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your rounded belly, you stagger to your feet and make for your private bath to relax while you drain. You giggle as you cradle your bloated middle, you practically look pregnant already! <<elseif $PC.cumTap < 15>> -Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your lover's pent up load into yourself. Patting your huge belly, you struggle to your feet and waddle towards your private bath to relax while you drain. You giggle as you cradle your round middle, anyone who saw you like this would certainly say you were heavily pregnant! +Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your huge belly, you struggle to your feet and waddle towards your private bath to relax while you drain. You giggle as you cradle your round middle, anyone who saw you like this would certainly say you were heavily pregnant! <<elseif $PC.cumTap < 20>> -Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your lover's pent up load into yourself. Patting your enormous belly, you struggle to even get off the bed, eventually making it to your feet so that you may slowly stagger to the bath. You moan lewdly as the pressure within your full belly sets another orgasm coursing through your body, making it jiggle delightfully. Anyone who saw you like this would swear you were about to give birth! +Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet huge bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your enormous belly, you struggle to even get off the bed, eventually making it to your feet so that you may slowly stagger to the bath. You moan lewdly as the pressure within your full belly sets another orgasm coursing through your body, making it jiggle delightfully. Anyone who saw you like this would swear you were about to give birth! <<elseif $PC.cumTap < 25>> -Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your lover's pent up load into yourself. Patting your taut, overfilled belly, you struggle to even get off the bed. After minutes of effort, several attempts ruined by aftershock orgasms, you manage to get on your feet. Cradling your massive cum-belly, you gingerly waddle to your waiting bath. You look like you are ready to burst with triplets, imagine what the public would say if they way you in this state. +Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you struggle to even get off the bed. After minutes of effort, several attempts ruined by aftershock orgasms, you manage to get on your feet. Cradling your massive cum-belly, you gingerly waddle to your waiting bath. You look like you are ready to burst with triplets, imagine what the public would say if they way you in this state. <<else>> -Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your lover's pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your<<if $PC.boobs > 0>> breasts,<</if>><<if $PC.dick > 0>> dick,<</if>> belly and pussy. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a servant to clean up your bed; from the slave you enjoyed with the cum hose, of course. +Taking the hose and attaching your favorite cockhead to it, you eagerly drag it to your bed and make yourself comfortable. You waste no time driving it into your aching cunt. With every thrust, you jet massive bursts of cum into your empty womb, swelling yourself more and more as your pleasure rises, until you reach your climax and unleash your "lover"'s pent up load into yourself. Patting your taut, overfilled belly, you roll over onto your back so that you may tease your<<if $PC.boobs > 0>> breasts,<</if>><<if $PC.dick > 0>> dick,<</if>> belly and pussy. If anyone saw you, they would swear your were on the verge of delivering sextuplets. You made sure to schedule this block for absolute privacy, so no one should disturb you while you play with your bloated body. Once you are exhausted and drained of your contents, you head for the showers and to get a servant to clean up your bed; from the slave you enjoyed with the cum hose, of course. <</if>> diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw index 403e33ea12efe8936d3fdb8dd990eb9ae3916871..ff5d3291cc1492c6f868537a2d4e2700e9c7b402 100644 --- a/src/pregmod/fSlaveFeed.tw +++ b/src/pregmod/fSlaveFeed.tw @@ -19,7 +19,7 @@ The first necessary step is to prepare the milk cow and _his2 udders. <<elseif $milkTap.fetish == "mindbroken">> This is very easy, as $milkTap.slaveName blankly follows your every will. Combined with _his2 instinct to relieve the pressure in _his2 breasts, _he2 is simple to position. -<<elseif $milkTap.rivalTarget == $activeSlave.ID>> +<<elseif $milkTap.rivalryTarget == $activeSlave.ID>> This is rather easy, as $milkTap.slaveName wants to see $activeSlave.slaveName's belly swell painfully as $he is forcefed _his2 milk. <<if $milkTap.lactation > 1>>$he is practically gushing milk with excitement<<else>>It takes minimal effort to get _his2 milk flowing<</if>>. <<elseif $milkTap.relationshipTarget == $activeSlave.ID>> @@ -95,7 +95,7 @@ Next, you see to $activeSlave.slaveName. <<elseif $milkTap.fuckdoll > 0>> $He hesitantly brings $his mouth to its milky nipple, uncertain about suckling from a living doll. -<<elseif $activeSlave.rivalTarget == $milkTap.ID>> +<<elseif $activeSlave.rivalryTarget == $milkTap.ID>> Knowing $his relationship with $milkTap.slaveName, you feel it best to restrain $him and anchor $him to $milkTap.slaveName's milky nipple so $he has no choice but to drink until you release $him. <<elseif $activeSlave.relationshipTarget == $milkTap.ID>> @@ -165,48 +165,48 @@ Next, you see to $activeSlave.slaveName. <<set _pregDiscovery = 1>> <<elseif $milkTap.fuckdoll > 0>> - Slight moaning emanates from the fuckdoll as $activeSlave.slaveName drinks from its breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off it's nipple and settles into its breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off its nipple and settles into its breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off its nipple and settles into its breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + Slight moaning emanates from the Fuckdoll as $activeSlave.slaveName drinks from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off _his2 nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off _his2 nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off _his2 nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.rivalryTarget == $activeSlave.ID>> - $milkTap.slaveName grins as $his rival is forced to drink until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with milk. $activeSlave.slaveName struggles against $his bindings until the pressure building in $him overwhelms $him, causing $him to pass out directly into $milkTap.slaveName's cushiony breasts. You quickly remove $him from the nipple before $he drowns<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccuping pathetically<</if>><</if>>. + $milkTap.slaveName grins as $his rival is forced to drink until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with milk. $activeSlave.slaveName struggles against $his bindings until the pressure building in $him overwhelms $him, causing $him to pass out directly into $milkTap.slaveName's cushiony breasts. You quickly remove $him from the nipple before $he drowns<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccupping pathetically<</if>><</if>>. <<elseif $milkTap.relationshipTarget == $activeSlave.ID>> <<if $milkTap.relationship == 1>> - $milkTap.slaveName sighs contently as $his friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as $his friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 2>> - $milkTap.slaveName sighs contently as $his best friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as $his best friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 3>> - $milkTap.slaveName moans lewdly as $his friend with benefits drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as $his friend with benefits drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 4>> - $milkTap.slaveName moans lewdly as $his lover drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as $his lover drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 5>> - $milkTap.slaveName moans lewdly as $his wife drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as $his wife drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <</if>> <<elseif $activeSlave.mother == $milkTap.ID>> - $milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $activeSlave.father == $milkTap.ID>> - $milkTap.slaveName moans lewdly as _his2 daughter suckles from _his2 breasts<<if $milkTap.dick > 0 && canAchieveErection($milkTap)>>, _his2 dick throbbing with lust<</if>>. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $milkTap.dick > 0 && canAchieveErection($milkTap)>><<if $activeSlave.sexualQuirk == "perverted">>. The way $he is wiggling $his hips suggests $he isn't finished with $his daddy just yet, and $his father's moaning confirms $he is teasing him with $his rear. $He giggles as the horny cow unloads on $his backside<<else>>. $He doesn't stay put for long, as a strong moan and a blast of cum across $his rear from the horny cow startles $his from $his rest<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 daughter suckles from _his2 breasts<<if $milkTap.dick > 0 && canAchieveErection($milkTap)>>, _his2 dick throbbing with lust<</if>>. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $milkTap.dick > 0 && canAchieveErection($milkTap)>><<if $activeSlave.sexualQuirk == "perverted">>. The way $he is wiggling $his hips suggests $he isn't finished with $his daddy just yet, and $his father's moaning confirms $he is teasing him with $his rear. $He giggles as the horny cow unloads on $his backside<<else>>. $He doesn't stay put for long, as a strong moan and a blast of cum across $his rear from the horny cow startles $his from $his rest<</if>><</if>>. <<elseif $milkTap.mother == $activeSlave.ID>> - $milkTap.slaveName moans lewdly as _he2 enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _he2 enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.father == $activeSlave.ID>> - $milkTap.slaveName moans lewdly as _his2 father suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 father suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif areSisters($activeSlave, $milkTap) == 1>> - $milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif areSisters($activeSlave, $milkTap) == 2>> - $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif areSisters($activeSlave, $milkTap) == 3>> - $milkTap.slaveName moans lewdly as _his2 half-sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 half-sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationTarget == $activeSlave.ID>> <<if $milkTap.relation == "twin">> - $milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relation == "sister">> - $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relation == "mother">> - $milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relation == "daughter">> - $milkTap.slaveName moans lewdly as $he enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as $he enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <</if>> <<elseif ($activeSlave.devotion < -20) && ($milkTap.devotion < -20)>> @@ -378,7 +378,7 @@ The first necessary step is to prepare the cum slave and $his cock and balls. <<elseif $milkTap.fetish == "mindbroken">> This is very easy, as $milkTap.slaveName blankly follows your every will. Combined with _his2 instinct to relieve the building pressure in _his2 loins, _he2 is simple to position. -<<elseif $milkTap.rivalTarget == $activeSlave.ID>> +<<elseif $milkTap.rivalryTarget == $activeSlave.ID>> This is rather easy, as $milkTap.slaveName wants to see $activeSlave.slaveName's belly swell painfully as $he is forced to suck down _his2 huge loads. <<elseif $milkTap.relationshipTarget == $activeSlave.ID>> @@ -471,7 +471,7 @@ Next, you see to $activeSlave.slaveName. <<elseif $milkTap.fuckdoll > 0>> $He hesitantly brings $his mouth to its precum tipped dick, uncertain about sucking off a doll. -<<elseif $activeSlave.rivalTarget == $milkTap.ID>> +<<elseif $activeSlave.rivalryTarget == $milkTap.ID>> Knowing $his relationship with $milkTap.slaveName, you feel it best to restrain $him and anchor $his to $milkTap.slaveName's eager cock so $he has no choice but to suck $his way to release. <<elseif $activeSlave.relationshipTarget == $milkTap.ID>> @@ -541,48 +541,48 @@ Next, you see to $activeSlave.slaveName. <<set _pregDiscovery = 1>> <<elseif $milkTap.fuckdoll > 0>> - Slight moaning emanates from the fuckdoll as $activeSlave.slaveName sucks its dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off it's cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + Slight moaning emanates from the Fuckdoll as $activeSlave.slaveName sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off _his2 cock and settles into _his2 balls for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off _his2 cock and settles into _his2 balls for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off _his2 cock and settles into _his2 balls for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.rivalryTarget == $activeSlave.ID>> - $milkTap.slaveName grins as _his2 rival is forced to suck down loads until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with cum. $activeSlave.slaveName struggles against $his bindings until the pressure building in $his overwhelms $him, causing $him to pass out with $milkTap.slaveName's ejaculating cock still stuck in $him. You quickly remove $his from it, making sure $he gets roused from $his stupor by one last blast of cum directly to the face<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccuping pathetically<</if>><</if>>. + $milkTap.slaveName grins as _his2 rival is forced to suck down loads until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with cum. $activeSlave.slaveName struggles against $his bindings until the pressure building in $his overwhelms $him, causing $him to pass out with $milkTap.slaveName's ejaculating cock still stuck in $him. You quickly remove $his from it, making sure $he gets roused from $his stupor by one last blast of cum directly to the face<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccupping pathetically<</if>><</if>>. <<elseif $milkTap.relationshipTarget == $activeSlave.ID>> <<if $milkTap.relationship == 1>> - $milkTap.slaveName moans as _his2 friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans as _his2 friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 2>> - $milkTap.slaveName moans as _his2 best friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans as _his2 best friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 3>> - $milkTap.slaveName moans lewdly as _his2 friend with benefits energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 friend with benefits energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 4>> - $milkTap.slaveName moans lustfully as _his2 lover teases $his dick perfectly with _his2 tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lustfully as _his2 lover teases $his dick perfectly with _his2 tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationship == 5>> - $milkTap.slaveName moans lustfully as _his2 wife teases _his2 dick perfectly with $his tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lustfully as _his2 wife teases _his2 dick perfectly with $his tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <</if>> <<elseif $activeSlave.mother == $milkTap.ID>> - $milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $activeSlave.father == $milkTap.ID>> - $milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.mother == $activeSlave.ID>> - $milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.father == $activeSlave.ID>> - $milkTap.slaveName moans lewdly as _his2 father energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $activeSlave.dick > 0 && canAchieveErection($activeSlave)>>, $his own stiff prick throbbing against the underside of $his new belly<</if>>. + $milkTap.slaveName moans lewdly as _his2 father energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $activeSlave.dick > 0 && canAchieveErection($activeSlave)>>, $his own stiff prick throbbing against the underside of $his new belly<</if>>. <<elseif areSisters($activeSlave, $milkTap) == 1>> - $milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif areSisters($activeSlave, $milkTap) == 2>> - $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif areSisters($activeSlave, $milkTap) == 3>> - $milkTap.slaveName moans lewdly as _his2 half-sister sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 half-sister sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relationTarget == $activeSlave.ID>> <<if $milkTap.relation == "twin">> - $milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relation == "sister">> - $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relation == "mother">> - $milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <<elseif $milkTap.relation == "daughter">> - $milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. + $milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>. <</if>> <<elseif ($activeSlave.devotion < -20) && ($milkTap.devotion < -20)>> @@ -758,11 +758,11 @@ Next, you see to $activeSlave.slaveName. <<if $milkTap.fuckdoll == 0>> Once $he is gone, you see to it that the contented $milkTap.slaveName is helped back to _his2 assignment, but only after _his2 dribbling <<if $activeSlave.inflationType == "milk">>teats are dealt with<<else>>cock is dealt with<</if>>, causing the waiting servant to gulp nervously at what that may entail. <<else>> - Once $he is gone, you see to it that the dribbling fuckdoll is cleaned up and returned to its proper place, but only after its leaking <<if $activeSlave.inflationType == "milk">>teats are dealt with<<else>>cock is dealt with<</if>>, causing the waiting servant to gulp nervously at what that may entail. + Once $he is gone, you see to it that the dribbling Fuckdoll is cleaned up and returned to _his2 proper place, but only after _his2 leaking <<if $activeSlave.inflationType == "milk">>teats are dealt with<<else>>cock is dealt with<</if>>, causing the waiting servant to gulp nervously at what that may entail. <</if>> <<else>> <<if $milkTap.fuckdoll == 0>> - With $activeSlave.slaveName unable to continue, you are left with the backed up $milkTap.slaveName to deal with. Hopefully it doesn't leak too much as it waits for further use. + With $activeSlave.slaveName unable to continue, you are left with the backed up $milkTap.slaveName to deal with. Hopefully _he2 doesn't leak too much as _he2 waits for further use. <<else>> With $activeSlave.slaveName unable to continue, you are left with the backed up $milkTap.slaveName to deal with. _He2'll have to figure out some other way to relieve _himself2 as _he2 is helped back to _his2 assignment. <</if>> diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw index 8ef4572798be43d66fd412ba2e7e05abef0010a0..4692979679ec81ffd0352108b7c69c30deb77f9e 100644 --- a/src/pregmod/fSlaveSlaveDickConsummate.tw +++ b/src/pregmod/fSlaveSlaveDickConsummate.tw @@ -75,7 +75,7 @@ You take a look at the bound cock toy. <<set _bottomdrugged = 1>> <</if>> <<elseif ($activeSlave.fetish == "mindbroken") && ($activeSlave.career == "a breeding bull")>> - $activeSlave.slaveName, as a good bull, was already erect while being tied down. It seems they know what's going to happen to them soon. Maybe someone at the Cattle Ranch has been sampling their bulls? + $activeSlave.slaveName, as a good bull, was already erect while being tied down. It seems $he knows what's going to happen to $him soon. Maybe someone at the Cattle Ranch has been sampling their bulls? <<else>> <<if $activeSlave.devotion >= -20>> <<if $activeSlave.energy > 40>> diff --git a/src/pregmod/fillUpButt.tw b/src/pregmod/fillUpButt.tw index 0f83245decc6d50d0c672067a15ce0335afea1df..c4bfcec000f880b00db68823f657704927843264 100644 --- a/src/pregmod/fillUpButt.tw +++ b/src/pregmod/fillUpButt.tw @@ -55,7 +55,7 @@ before shoving the equipment into $his <<set _pregDiscovery = 1>> <<else>> <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.devotion >= -20)>> - $He's pleased at the prospect of you touching $his favorite bodypart. + $He's pleased at the prospect of you touching $his favorite body part. <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.devotion >= -20) && ($activeSlave.inflationType == "cum")>> $He's pleased at the idea of turning into a cum balloon. <</if>> diff --git a/src/pregmod/fillUpFace.tw b/src/pregmod/fillUpFace.tw index ca01b204d743f32d7e0ab4d82fb034af5f3abec7..53d3d919c48a7a800e6ac3f2073e11c22650146b 100644 --- a/src/pregmod/fillUpFace.tw +++ b/src/pregmod/fillUpFace.tw @@ -59,7 +59,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl <<else>> firm, flat <</if>> - belly, pulling $him into your lap. You force the hose down $his throat, strapping it to $his head to prevent it from slipping out, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a large belch from the broken slave and no motion at all from $his gut. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the broken slave and tons of motion from $his gut. You order $his to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover, After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small burp from the broken slave and a little jiggle from $his gut. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccuping $activeSlave.slaveName ready to be moved<</if>>. + belly, pulling $him into your lap. You force the hose down $his throat, strapping it to $his head to prevent it from slipping out, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a large belch from the broken slave and no motion at all from $his gut. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the broken slave and tons of motion from $his gut. You order $his to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover, After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small burp from the broken slave and a little jiggle from $his gut. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccupping $activeSlave.slaveName ready to be moved<</if>>. <<elseif $activeSlave.devotion < -20>> <<if canWalk($activeSlave)>> @@ -98,7 +98,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl <<else>> firm, flat <</if>> - belly. You force the hose down $his throat, strapping it to $his head to prevent $him from removing it, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting gagging from the overfilled slave and no motion at all from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the full slave and tons of motion from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a shudder from the bloated slave and a little jiggle from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccuping $activeSlave.slaveName ready to be moved<</if>>. + belly. You force the hose down $his throat, strapping it to $his head to prevent $him from removing it, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting gagging from the overfilled slave and no motion at all from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the full slave and tons of motion from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a shudder from the bloated slave and a little jiggle from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccupping $activeSlave.slaveName ready to be moved<</if>>. <<elseif $activeSlave.devotion <= 20>> <<if canWalk($activeSlave)>> @@ -137,7 +137,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl <<else>> firm, flat <</if>> - belly. You insert the hose down $his throat, choosing to hold it place instead of strapping it to $him, and turn the flow to low. With everything in place, you place your free hand on $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a restrained gag from the overfilled slave and no motion at all from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a strained burp from the full slave and tons of motion from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small shudder from the bloated slave and a little jiggle from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<</if>>. + belly. You insert the hose down $his throat, choosing to hold it place instead of strapping it to $him, and turn the flow to low. With everything in place, you place your free hand on $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a restrained gag from the overfilled slave and no motion at all from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a strained burp from the full slave and tons of motion from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small shudder from the bloated slave and a little jiggle from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<</if>>. <<elseif $activeSlave.devotion <= 50>> <<if canWalk($activeSlave)>> diff --git a/src/pregmod/forceFeeding.tw b/src/pregmod/forceFeeding.tw index 931cf841a2a4cde024edb917cf8a6a998e028787..40ed3b8d8d2b184acdd4bad3208540431bbce0d5 100644 --- a/src/pregmod/forceFeeding.tw +++ b/src/pregmod/forceFeeding.tw @@ -361,13 +361,13 @@ and a little jiggle from $his gut. Knocking the empty buckets aside, you help $his <<if $activeSlave.fetish == "mindbroken">> - hiccuping + hiccupping <<elseif $activeSlave.devotion < -20>> - hiccuping + hiccupping <<elseif $activeSlave.fetish == "submissive">> - hiccuping + hiccupping <<elseif $activeSlave.behavioralFlaw == "gluttonous">> - hiccuping + hiccupping <<elseif $activeSlave.devotion <= 20>> heaving <<elseif $activeSlave.devotion <= 50>> diff --git a/src/pregmod/huskSlaveSwapWorkaround.tw b/src/pregmod/huskSlaveSwapWorkaround.tw index d0008589b73a4d878ddd1293c7a52c21fb47f92e..2bb0b94411c9c3b9d7feee7a2007b36349e992b5 100644 --- a/src/pregmod/huskSlaveSwapWorkaround.tw +++ b/src/pregmod/huskSlaveSwapWorkaround.tw @@ -14,8 +14,7 @@ __Select an eligible slave:__ <<if $slaves[_i].amp >= 0>> <<if $slaves[_i].indenture == -1>> <<if $slaves[_i].breedingMark == 0 || $propOutcome == 0>> - <<if $slaves[_i].reservedChildren == 0>> - <<if $slaves[_i].reservedChildrenNursery ==0>> + <<if WombReserveCount($slaves[_i]) == 0>> <<if $slaves[_i].ID != $activeSlave.ID>> <<set _name = SlaveFullName($slaves[_i])>> <br><<print "[[_name|Husk Slave Swap][$swappingSlave = $slaves[" + _i + "], $cash -= 10000]]">> @@ -26,5 +25,4 @@ __Select an eligible slave:__ <</if>> <</if>> <</if>> - <</if>> <</for>> diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw index 89f29527b3bf2888f4706a11105a562bcd773f46..369d9c3da265b73cec343690b0705cfb664d54ed 100644 --- a/src/pregmod/incubator.tw +++ b/src/pregmod/incubator.tw @@ -153,8 +153,11 @@ Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $ //You have no pregnant slaves bearing eligible children.// <</if>> <<if $PC.pregKnown == 1 && $PC.pregSource != -6>> + <<set _WL = $PC.womb.length>> + <<set _reservedIncubator = WombReserveCount($PC, "incubator")>> + <<set _reservedNursery = WombReserveCount($PC, "nursery")>> <br>''@@.pink;You're pregnant@@'' and going to have - <<switch $PC.pregType>> + <<switch _WL>> <<case 1>> a baby. <<case 2>> @@ -172,9 +175,6 @@ Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $ <<case 8>> octuplets. <</switch>> - <<set _WL = $PC.womb.length>> - <<set _reservedIncubator = WombReserveCount($PC, "incubator")>> - <<set _reservedNursery = WombReserveCount($PC, "nursery")>> <<if (_reservedIncubator > 0)>> <<set _childrenReserved = 1>> <<if _WL == 1>> @@ -226,7 +226,7 @@ Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $ <br> <<link "Clear all reserved children">> <<for _u = 0; _u < _SL; _u++>> - <<if $slaves[_u].reservedChildren != 0>> + <<if WombReserveCount($slaves[_u], "incubator") != 0>> <<set WombCleanGenericReserve($slaves[_u], 'incubator', 9999)>> <</if>> <</for>> diff --git a/src/pregmod/incubatorReport.tw b/src/pregmod/incubatorReport.tw index ce3f960252f2febbda38938169d6520172aa9c59..d8028571577b61efa49d69ea62b48731c8680c4e 100644 --- a/src/pregmod/incubatorReport.tw +++ b/src/pregmod/incubatorReport.tw @@ -640,7 +640,7 @@ <</if>> <</if>> <<elseif $incubatorReproductionSetting == 1>> - Her hormone levels are being carefully managed, @@.green;encouraging early puberty.@@ + $His hormone levels are being carefully managed, @@.green;encouraging early puberty.@@ <<if $tanks[_inc].ovaries == 1>> <<set $tanks[_inc].pubertyXX = 1>> <<set $tanks[_inc].hormoneBalance = 250>> diff --git a/src/pregmod/incubatorRetrievalWorkaround.tw b/src/pregmod/incubatorRetrievalWorkaround.tw index df1d4e396e8bfa76ccaca72232eadabc6c54f0c3..48405e08bf9be31a7526f36e811d71f78d7dfe4a 100644 --- a/src/pregmod/incubatorRetrievalWorkaround.tw +++ b/src/pregmod/incubatorRetrievalWorkaround.tw @@ -1,6 +1,7 @@ :: Incubator Retrieval Workaround [nobr] -$readySlave.slaveName has been discharged from $incubatorName and is ready for her first ever inspection. +<<setLocalPronouns $readySlave>> +$readySlave.slaveName has been discharged from $incubatorName and is ready for $his first ever inspection. <br><br> diff --git a/src/pregmod/killSlave.tw b/src/pregmod/killSlave.tw index 0e698bcacf749ed82bbca421371a2fb94a61546e..9a3ae0d62977831e9a0a27cc99699c2f9b8cc99b 100644 --- a/src/pregmod/killSlave.tw +++ b/src/pregmod/killSlave.tw @@ -77,5 +77,5 @@ <</if>> <br><br> <<else>> - You abruptly cut $his begging short as you realize $slaveFightingBG.slaveName is already fighting your bodyguard $Bodyguard.slaveName for <<if $slaveFightingBG.genes == "XX">>her<<else>>his<</if>> life this week. [[Cancel the fight|KillSlave][$killChoice = -1]] + You abruptly cut $his begging short as you realize $slaveFightingBG.slaveName is already fighting your bodyguard $Bodyguard.slaveName for $his life this week. [[Cancel the fight|KillSlave][$killChoice = -1]] <</if>> \ No newline at end of file diff --git a/src/pregmod/killedSlave.tw b/src/pregmod/killedSlave.tw index 15ee8a867c67352677f59fff97a8098642bf8727..1f6a20997ece76cde16f4727d8616a2c8d046a76 100644 --- a/src/pregmod/killedSlave.tw +++ b/src/pregmod/killedSlave.tw @@ -1,6 +1,7 @@ :: KilledSlave [nobr] <<if $killChoice <= 0>> +<<setLocalPronouns $Bodyguard 2>> <<set _qualifiedFS = []>> <<if $arcologies[0].FSRomanRevivalist != "unset">> @@ -138,7 +139,7 @@ $activeSlave.slaveName gives an audible sigh of relief and begins to thank you p <<set $activeSlave.trust = -100>> <<elseif $killChoice == 2>> - You tell $him that you'll let your bodyguard $Bodyguard.slaveName decide $his fate -- if $he wants to live, $he'll have to beat <<if $Bodyguard.genes == "XY" && $diversePronouns == 1>>him<<else>>her<</if>> in hand-to-hand combat in $pitName. + You tell $him that you'll let your bodyguard $Bodyguard.slaveName decide $his fate -- if $he wants to live, $he'll have to beat _him2 in hand-to-hand combat in $pitName. <<if $activeSlave.combatSkill == 0>> The fear on $his face is palpable, though $he nods slowly and agrees, not seeing another choice. <<else>> diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw index 5d1c88018f801c1316afbd1b4f1e7548e4088c31..9e1a1413cc670b4228817202da2effcdea3fae91 100644 --- a/src/pregmod/managePersonalAffairs.tw +++ b/src/pregmod/managePersonalAffairs.tw @@ -90,23 +90,23 @@ Around back; <<if $PC.origHColor != "chocolate brown">>| [[Chocolate|Manage Personal Affairs][$PC.hColor = "chocolate brown"]]<</if>> <<if $PC.origHColor != "copper">>| [[Copper|Manage Personal Affairs][$PC.hColor = "copper"]]<</if>> <<if $PC.origHColor != "crimson">>| [[Crimson|Manage Personal Affairs][$PC.hColor = "crimson"]]<</if>> - <<if $PC.origHColor != "dark blue">>| [[Blue-Violet|Manage Personal Affairs][$PC.hColor = "dark blue"]]<</if>> + <<if $PC.origHColor != "dark blue">>| [[Dark Blue|Manage Personal Affairs][$PC.hColor = "dark blue"]]<</if>> <<if $PC.origHColor != "dark brown">>| [[Dark Brown|Manage Personal Affairs][$PC.hColor = "dark brown"]]<</if>> <<if $PC.origHColor != "dark orchid">>| [[Blue-Violet|Manage Personal Affairs][$PC.hColor = "dark orchid"]]<</if>> <<if $PC.origHColor != "ginger">>| [[Ginger|Manage Personal Affairs][$PC.hColor = "ginger"]]<</if>> <<if $PC.origHColor != "golden">>| [[Golden|Manage Personal Affairs][$PC.hColor = "golden"]]<</if>> <<if $PC.origHColor != "green">>| [[Green|Manage Personal Affairs][$PC.hColor = "green"]]<</if>> - <<if $PC.origHColor != "green-yellow">>| [[Blue-Violet|Manage Personal Affairs][$PC.hColor = "green-yellow"]]<</if>> + <<if $PC.origHColor != "green-yellow">>| [[Green-Yellow|Manage Personal Affairs][$PC.hColor = "green-yellow"]]<</if>> <<if $PC.origHColor != "grey">>| [[Grey|Manage Personal Affairs][$PC.hColor = "grey"]]<</if>> <<if $PC.origHColor != "hazel">>| [[Hazel|Manage Personal Affairs][$PC.hColor = "hazel"]]<</if>> - <<if $PC.origHColor != "jet black">>| [[Black|Manage Personal Affairs][$PC.hColor = "jet black"]]<</if>> + <<if $PC.origHColor != "jet black">>| [[Jet Black|Manage Personal Affairs][$PC.hColor = "jet black"]]<</if>> <<if $PC.origHColor != "pink">>| [[Pink|Manage Personal Affairs][$PC.hColor = "pink"]]<</if>> <<if $PC.origHColor != "platinum blonde">>| [[Platinum Blonde|Manage Personal Affairs][$PC.hColor = "platinum blonde"]]<</if>> - <<if $PC.origHColor != "purple">>| [[Blue-Violet|Manage Personal Affairs][$PC.hColor = "purple"]]<</if>> + <<if $PC.origHColor != "purple">>| [[Purple|Manage Personal Affairs][$PC.hColor = "purple"]]<</if>> <<if $PC.origHColor != "red">>| [[Red|Manage Personal Affairs][$PC.hColor = "red"]]<</if>> - <<if $PC.origHColor != "sea green">>| [[Blue-Violet|Manage Personal Affairs][$PC.hColor = "sea green"]]<</if>> + <<if $PC.origHColor != "sea green">>| [[Sea Green|Manage Personal Affairs][$PC.hColor = "sea green"]]<</if>> <<if $PC.origHColor != "silver">>| [[Silver|Manage Personal Affairs][$PC.hColor = "silver"]]<</if>> - <<if $PC.origHColor != "strawberry-blonde">>| [[Strawberry-blonde|Manage Personal Affairs][$PC.hColor = "strawberry-blonde"]]<</if>> + <<if $PC.origHColor != "strawberry-blonde">>| [[Strawberry-Blonde|Manage Personal Affairs][$PC.hColor = "strawberry-blonde"]]<</if>> <<if $PC.origHColor != "white">>| [[White|Manage Personal Affairs][$PC.hColor = "white"]]<</if>> <<if $FCTVreceiver == 1>> @@ -376,7 +376,7 @@ __Contraceptives and Fertility__ <span id="miniscene"> <<if $PC.preg < 6 && $PC.pregKnown == 1 && $PC.pregSource != -6>> - Your period is late, so the first thing you do is test yourself for a potential pregnancy: @@.lime;you are pregnant.@@ <<link "Abort your child">><<replace "#miniscene">><<set $PC.preg = 0, $PC.pregType = 0, $PC.pregSource = 0, $PC.pregKnown = 0, $PC.pregWeek = 0>><<set WombFlush($PC)>><<print "You take a syringe filled with abortifacients and make yourself comfortable. Injecting the vial through your belly into your womb, your close your eyes and wait for what is coming. Once you feel it is over, you clean yourself up and go on your way, child free.">><br> <</replace>><</link>> + Your period is late, so the first thing you do is test yourself for a potential pregnancy: @@.lime;you are pregnant.@@ <<link "Abort your child">><<replace "#miniscene">><<set $PC.preg = 0, $PC.pregType = 0, $PC.pregSource = 0, $PC.pregKnown = 0, $PC.pregWeek = 0>><<set WombFlush($PC)>><<print "You take a syringe filled with abortifacients and make yourself comfortable. Injecting the vial through your belly into your womb, your close your eyes and wait for what is coming. Once you feel it is over, you clean yourself up and go on your way, child free.">><br> <</replace>><</link>> <<elseif $PC.labor == 1>> You are beginning to feel contractions; you'll be giving birth soon. <<elseif $PC.preg >= 39>> diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index 262bf61951a1626cfc99793883db762e532977e5..d19733dbeeaaffb22ae64ff36cf79300b592059f 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -428,7 +428,7 @@ You completed the legalities before heading to $incubatorName, knowing the tank $His eyes focus on _tempDad.slaveName's <<= dickToEitherUnit(_tempDad.dick).replace("es","")>> long dick, trying to understand how it can fit in a girl. <<set _dadInterest = "dick">> <<elseif _tempDad.balls > 60>> - $His eyes focus on _tempDad.slaveName's <<= ballsToEitherUnit(_tempDad.balls).replace("es","")>> long testicles, taking in every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of their enormity, before shifting to the cum steadily drooling from <<if _tempDad.dick > 0>>the tip of _his2 dick<<else>>the hole in _his2 crotch<</if>>.. + $His eyes focus on _tempDad.slaveName's <<= ballsToEitherUnit(_tempDad.balls).replace("es","")>> long testicles, taking in every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of their enormity, before shifting to the cum steadily drooling from <<if _tempDad.dick > 0>>the tip of _his2 dick<<else>>the hole in _his2 crotch<</if>>. <<set _dadInterest = "balls">> <<elseif _tempDad.hips > 2>> $His eyes focus on _tempDad.slaveName's abnormally wide hips. $He runs $his hands down $his own sides, pondering how such a wonder occurs. @@ -753,7 +753,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <br><<link "Bring in another slave and let $him have fun">> <<replace "#result">> - You call in the next passing slave, bind $his hands and feet and present her to the curious new $desc. You gesture towards the bound girl, signifying permission to do whatever $he pleases. Eagerly, $activeSlave.slaveName begins exploring every inch of her body, paying close attention to her nipples and her holes, while you return to your work. It doesn't take long for you to be disrupted by a loud + You call in the next passing slave, bind her hands and feet and present her to the curious new $desc. You gesture towards the bound girl, signifying permission to do whatever $he pleases. Eagerly, $activeSlave.slaveName begins exploring every inch of her body, paying close attention to her nipples and her holes, while you return to your work. It doesn't take long for you to be disrupted by a loud <<if random(1,100) > 50>> moan emanating from the bound girl. Looking up, you see $activeSlave.slaveName <<if canPenetrate($activeSlave)>>fucking her hard and deep<<else>>licking her cunt<</if>>, hitting all the right places and making the helpless girl squirm with pleasure. Any plea for mercy results in a renewed effort to push the girl over the edge. $activeSlave.slaveName is certainly @@.hotpink;enjoying $his treat,@@ and by the looks of things, may be a developing dom! <<if random(1,100) > 60 && $activeSlave.fetish == "none">> diff --git a/src/pregmod/organFarm.tw b/src/pregmod/organFarm.tw index 177ee4e970c84d13e82e3a8553769e9dd8537f40..c0c2fada1e05ddad0c5b79442909c85a235644ee 100644 --- a/src/pregmod/organFarm.tw +++ b/src/pregmod/organFarm.tw @@ -39,8 +39,8 @@ The Organ Farm <br> //Will allow the organ farm to rapidly grow organs without risk to the implantee's health.// <br> <<elseif ($organFarmUpgrade == 1) && ($rep > 10000*_PCSkillCheck)>> - [[Upgrade the organ farm with an experimental growth accelerator|Organ Farm][$cash -= 100000*_PCSkillCheck, $organFarmUpgrade = 2]] - //Costs <<print cashFormat(50000*_PCSkillCheck)>>// + [[Upgrade the organ farm with an experimental growth accelerator|Organ Farm][$cash -= 75000*_PCSkillCheck, $organFarmUpgrade = 2]] + //Costs <<print cashFormat(75000*_PCSkillCheck)>>// <br> //Will allow the organ farm to quickly grow organs. Implanted organs may cause health issues.// <br> <</if>> diff --git a/src/pregmod/pcSurgeryDegredation.tw b/src/pregmod/pcSurgeryDegredation.tw index 2782e386996a27c5b790e6459e2b48da8c2f6350..a9f1d22f4b5770d32b574a49420108ddb29be8fe 100644 --- a/src/pregmod/pcSurgeryDegredation.tw +++ b/src/pregmod/pcSurgeryDegredation.tw @@ -22,13 +22,13 @@ After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your implant free boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your natural breasts. "We made sure to tighten them up a bit, get rid of that sag from not having the silicone pouch in them anymore." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "breastShrinkage">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your smaller <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your smaller <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "breastEnlargementImplant">> After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, round <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<else>>H-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them looking natural, <<if $PC.boobsBonus == 2>>but you can definitely tell<<elseif $PC.boobsBonus == 1>>and I say we did a pretty good job<<else>>but the implants were way too big for that<</if>>." She begins groping your breasts, feeling the implant within for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your implant laden breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "breastEnlargement">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus == 3>>H-cup<<elseif $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus == 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus == 3>>H-cup<<elseif $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus == 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "flatChest">> After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice the absence of the usual weight on your chest. Pulling the covers off yourself, you observe your flat chest in the mirror-covered wall across from your bed. "So do you like it?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your chest. "I honestly couldn't live without my pair." She begins groping your chest, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your tits and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts still work, but it's still strange coming from such a flat chest."<</if>> You can't help but moan under your building arousal as she massages and teases your nipples. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. diff --git a/src/pregmod/personalNotes.tw b/src/pregmod/personalNotes.tw index b777d7d1e02686031e79d9062af9e0dbed08ae10..f0f2938a0122bbea0292624eec7dd38d010a9a43 100644 --- a/src/pregmod/personalNotes.tw +++ b/src/pregmod/personalNotes.tw @@ -89,9 +89,9 @@ <</if>> <<if $pregnancyMonitoringUpgrade == 1>> <<if _oldCount < $PC.pregType>> - While making use of the advanced pregnancy monitoring equipement, you are surprised to find @@.lime;your womb is a little more occupied than last checkup.@@ + While making use of the advanced pregnancy monitoring equipment, you are surprised to find @@.lime;your womb is a little more occupied than last checkup.@@ <<elseif _oldCount > $PC.pregType>> - While making use of the advanced pregnancy monitoring equipement, you are surprised to find @@.orange;your womb houses less life than last checkup.@@ + While making use of the advanced pregnancy monitoring equipment, you are surprised to find @@.orange;your womb houses less life than last checkup.@@ <<if $PC.pregType == 0>> For all intent and purposes, @@.yellow;you are no longer pregnant.@@ <<set WombFlush($PC), $PC.pregKnown = 0, $PC.pregWeek = 0>> diff --git a/src/pregmod/reMaleCitizenHookup.tw b/src/pregmod/reMaleCitizenHookup.tw index 4d7b5f4325d974fb5921a63bee34dae32513f5b5..9ba6c20dd7bdcbe3d0cf2617f843e7bbb230090b 100644 --- a/src/pregmod/reMaleCitizenHookup.tw +++ b/src/pregmod/reMaleCitizenHookup.tw @@ -296,7 +296,7 @@ He's clearly attracted to you; even the most consummate actor would have difficu <</if>> <<elseif _FS != "Youth Preferentialist">> <<if $Concubine != 0 && $Concubine.amp != 1>> - The <<if canSee($Concubine)>>view of your bouncing tits<<else>>sound of lusty sex<</if>> is too much for $Concubine.slaveName to resist and crawls over to kiss and caress you as your lover finishes. + The <<if canSee($Concubine)>>view of your bouncing tits<<elseif canHear($activeSlave)>>sound of lusty sex<<else>>vibrations from your bed bouncing up and down<</if>> is too much for $Concubine.slaveName to resist and crawls over to kiss and caress you as your lover finishes. <</if>> <</if>> Sometimes society overlooks that you are a woman and have certain needs, but your lover tonight knows exactly how to treat you. When your guest <<if _FS != "Youth Preferentialist">>is finally spent<<else>>wakes up from against your body<</if>>, he showers, dresses, and leaves discreetly, offering you a proper thank you. This is the kind of thing that @@.green;builds a lasting reputation@@ in the Free Cities. diff --git a/src/pregmod/rePregInventorText.tw b/src/pregmod/rePregInventorText.tw index 1a8cd45141cc89d54778d41c0bec2ee543fa3ac7..6247de8e6c39d38d617f927721cb166028eb6140 100644 --- a/src/pregmod/rePregInventorText.tw +++ b/src/pregmod/rePregInventorText.tw @@ -137,7 +137,7 @@ Your slave's speaking assistant explains that the pool is designed to allow slaves and women to care for their bodies no matter how large they inflate. Meanwhile, your slave has been slowly rotating in the pool until $he is pressed conspicuously close to the host. The assistant asks if the host is feeling well, a look of mock concern on her face. <</if>> <br><br> - "Ah! Um, yes--yep! I'm feeling just fine," Millie says. She's blushing furiously and squirming, and you can just make out the outline of your slave performing some form of teasing shenanigans under the distorting effect of the pool's goo. "So--oooh, yes… $activeSlave.slaveName, how did you, um, come up with the idea for this pool? + "Ah! Um, yes - yep! I'm feeling just fine," Millie says. She's blushing furiously and squirming, and you can just make out the outline of your slave performing some form of teasing shenanigans under the distorting effect of the pool's goo. "So - oooh, yes... $activeSlave.slaveName, how did you, um, come up with the idea for this pool? <br><br> <<if canTalk($activeSlave)>> "I'm alway<<s>> trying to think of way<<s>> to keep my<<s>>elf pretty for--oh!--my <<Master>>," your slave <<say>>s, suddenly squirming $himself. Millie has slouched down into the pool and is grinning wickedly as she apparently gets revenge. "Thi<<s>> wa<<s>> ju<<s>>t the be<<s>>t--um--I Mean--the be<<s>>t--oh //fuck, keep//--I mean, the be<<s>>t method I could think of for doing that." diff --git a/src/pregmod/saPorn.tw b/src/pregmod/saPorn.tw index edfef4b45b0a752fce5bc3328638f75aaeb591fb..e6082b5beb7762533849dd9d65de1e16111a8a46 100644 --- a/src/pregmod/saPorn.tw +++ b/src/pregmod/saPorn.tw @@ -882,7 +882,7 @@ <<set $slaves[$i].pornTypeTease = Math.clamp($slaves[$i].pornTypeTease, 0, 150000)>> <<if $slaves[$i].pornFocus == "tease" || $slaves[$i].pornFameType == "softcore">> - $His tantalizes viewers with $his suggestive moves. + $He tantalizes viewers with $his suggestive moves. <<if $slaves[$i].pornTypeTease > _oldPorn>> Viewership @@.green;increased@@ this week. <<elseif $slaves[$i].pornTypeTease < _oldPorn>> diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw index 1143188d29f251f81b8e37511a9368f175b69b2c..fe531e6aa5da4c96eacb48752d6ba380be442bcc 100644 --- a/src/pregmod/seFCTVshows.tw +++ b/src/pregmod/seFCTVshows.tw @@ -444,7 +444,7 @@ The offered price is <<print cashFormat($slaveCost)>>. The milk maid gives an emphatic nod. <i>"My Master's daddy, and his daddy's daddy were dairy farmers, so he knows what he's doin'. Master said that lots of folks think slaves don't deserve any care or fancy treatment, that slaves are animals and you can't give 'em anything without putting ideas in their heads. Master said those folks are right we don't </i>deserve<i> anything, but that otherwise those folks just don't know jack shit about raising livestock."</i> Bess smiles. "I guess G-9 isn't at the top of the quality and quantity charts by accident!" She moves over toward one of the occupied milkers to take a better look. Rather than a chair, it's set up almost like a massage table, and the slave is lying face down on the table's comfortable padding. The chest area of the table is almost completely missing, allowing the cow's 15,000 CC udders to hang downward. Rather than hang painfully, however, they're well supported by some kind of strong fabric that looks soft but stretchy. Their supported shape seems ideal for milking, opening up the milk ducts and letting gravity drain the milk toward the exposed nipples. A clear cup is attached to each teat, rich milk flooding rhythmically down wide tubes to be collected in a massive intermediary reservoir. Bess turns back to the milk maid. "So I think I understand what the setup in the front is for, but what's all this going on in the back?" <br><br> - Anabell walks up to the milking table, and gestures to the lower half. <i>"Ma'am, is it okay if I answer one part at a time?"</i> Bess gives a cheerful nod, so Anabell points to the cow's abdomen. <i>"I know it's hard to see cause of that metal holdin' up the table, but there's actually an adjustable belly support there."</i> the dairy slave gives the cow an affectionate rub on one butt cheek. <i>"She may not look it right now, but this one here is more'n seven months pregnant with triplets. The table supports the womb, taking the weight and pressure off the cow. All the cows say it's the most comfortable place to be when they're full of calf!"</i> Smiling, Anabell points down between the cow's legs. The camera moves closer to get a good look, and the microphone starts picking up traces of audio from whatever program the cow's watching. Once the camera is positioned at the feet, you can see between her slightly-spread legs that there's a large adjustable-looking opening under her pubic region. More fascinating though, is the device attached to her groin; it looks really similar to an athletic cup. It's just a bit bigger and longer with some tubes and a wire coming out of it, and hides the cow's vulva and asshole from the camera. + Anabell walks up to the milking table, and gestures to the lower half. <i>"Ma'am, is it okay if I answer one part at a time?"</i> Bess gives a cheerful nod, so Anabell points to the cow's abdomen. <i>"I know it's hard to see cause of that metal holdin' up the table, but there's actually an adjustable belly support there."</i> the dairy slave gives the cow an affectionate rub on one butt cheek. <i>"She may not look it right now, but this one here is more 'n seven months pregnant with triplets. The table supports the womb, taking the weight and pressure off the cow. All the cows say it's the most comfortable place to be when they're full of calf!"</i> Smiling, Anabell points down between the cow's legs. The camera moves closer to get a good look, and the microphone starts picking up traces of audio from whatever program the cow's watching. Once the camera is positioned at the feet, you can see between her slightly-spread legs that there's a large adjustable-looking opening under her pubic region. More fascinating though, is the device attached to her groin; it looks really similar to an athletic cup. It's just a bit bigger and longer with some tubes and a wire coming out of it, and hides the cow's vulva and asshole from the camera. <br><br> With a questioning look, Anabell asks Bess <i>"Ma'am, I figure you already know what the hole's for, but should I explain it for the camera?"</i> Bess simply smiles and nods, indicating that the milk maid should continue. <i>"Well all of you watching probably already guessed one reason for the hole there: it lets the tubes and such through nice and neat so we don't have to worry about 'em getting pinched or kinked. The other reason for the hole is that plenty of cows have <<if $seeDicks == 0>><i>sensitive legs.</i><<else>>big ol balls that need milked too.<</if>> There's an attachment there for a stretch mesh just like what we use for the udders, it supports 'em nice and comfortable. There's even a motor in the table there, moves the mesh to roll 'em around a bit and keep 'em producing."</i> Anabell points toward the groin device. <i>"We call this miracle gadget here a 'cup'... cause it looks like one, right?"</i> Both Beth and Anabell give a chuckle at the rather flat joke. <i>"Probably the best way to explain it'd be to take it out, would you like to see?"</i> <br><br> @@ -526,7 +526,7 @@ The offered price is <<print cashFormat($slaveCost)>>. <br><br>..... <<elseif $arcologies[0].FSAssetExpansionist == "unset" && $randShow == 3>> - a documentary on the Slimness Enthusiast counter movement titled: "Slim Is In". Artistic opening credits play across the screen before a slim woman walks up and begins talking to the camera conversationally. She seems to be in her mid to late thirties, and is wearing conservative makeup to accent her natural beauty. Her narrow waist combines with her slim hips and full shoulders to create a balanced but muted hourglass profile. It's a look that was popular for decades on fashion models in the Old World, and it improves the attractiveness of her B or C cup breasts and taut butt. It's obvious that the woman aspires to be a role model in addition to being the documentary's commentator. + a documentary on the Slimness Enthusiast counter movement titled: "Slim Is In". Artistic opening credits play across the screen before a slim woman walks up and begins talking to the camera conversationally. She seems to be in her mid to late thirties, and is wearing conservative makeup to accent her natural beauty. Her narrow waist combines with her slim hips and full shoulders to create a balanced but muted hourglass profile. It's a look that was popular for decades on fashion models in the Old World, and it improves the attractiveness of her B- or C-cup breasts and taut butt. It's obvious that the woman aspires to be a role model in addition to being the documentary's commentator. <br><br>Much of the documentary's arguments center around the concept of fashion and the privileged. They point out how in the past societal changes have altered what people find attractive, giving skin tans as an example. When most worked outside and only the privileged stayed indoors pale skin was considered attractive. When the world changed and most people worked indoors, suddenly the tan skin of those with leisure time to spend outside came into vogue. She argues that modern hormones can easily expand the assets of the masses, but that only the privileged can afford to sculpt themselves into an ideal form like hers. She points out that even though the masses may imitate with surgery, they'll never be able to copy the naturally good bone structure and vibrancy of the well-bred elite. <br><br>..... diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw index de6e15b568872d97a7284cd8715b496ea0dc14f1..b3921b50ba60ed1f019f1b03a141b7b21df92c58 100644 --- a/src/pregmod/sePlayerBirth.tw +++ b/src/pregmod/sePlayerBirth.tw @@ -2,7 +2,7 @@ <<set $nextButton = "Continue", $nextLink = "Scheduled Event">> -<<set _gaveBirth = 0, _PCDegree = 0, _pregTypeDecrecement = WombReserveCount($PC, "incubator"), _pregTypeDecrecementNursery = WombReserveCount($PC, "incubator"), $PC.reservedChildren = _pregTypeDecrecement, $PC.reservedChildrenNursery = _pregTypeDecrecementNursery>> +<<set _gaveBirth = 0, _PCDegree = 0, _pregTypeDecrecement = WombReserveCount($PC, "incubator"), _pregTypeDecrecementNursery = WombReserveCount($PC, "incubator")>> /* PC.pregSource documentation @@ -52,7 +52,7 @@ PC.pregSource documentation <<set _babies.push("your own")>> <<elseif $PC.curBabies[_spb].fatherID == -2>> <<set _citizens++>> - <<set _babies.push("your arcology's citizen")>> + <<set _babies.push("an arcology citizen")>> <<elseif $PC.curBabies[_spb].fatherID == -3>> <<set _oldMaster++>> <<set _babies.push("your Master")>> @@ -239,7 +239,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin <<elseif tooBigButt($Concubine)>> You don't know how _he2 managed to get you here when _his2 ass prevent _him2 from walking<<if $PC.pregType == 8>>, especially with how heavy your pregnancy was<</if>>, but you give the jiggling giant a gentle caress as thanks. <<elseif tooBigBalls($Concubine)>> - You don't know how _he2 managed to get you here when _his2 balls prevent _him2 from walking<<if $PC.pregType == 8>>, especially with how heavy your pregnancy was<</if>>, but you give the pair a gentle caress as thanks. _He returns the kindness with a shudder and a large wetspot forming over _his2 crotch. + You don't know how _he2 managed to get you here when _his2 balls prevent _him2 from walking<<if $PC.pregType == 8>>, especially with how heavy your pregnancy was<</if>>, but you give the pair a gentle caress as thanks. _He returns the kindness with a shudder and a large wet spot forming over _his2 crotch. <<elseif tooFatSlave($Concubine)>> You don't know how _he2 managed to get you here when _he2's so fat _he2 can't walk<<if $PC.pregType == 8>>, especially with how heavy your pregnancy was<</if>>, but you give _his2 soft body a gentle caress as thanks. <<else>> @@ -444,7 +444,7 @@ You arrange yourself to give birth, relaxing until your body urges you to begin <<set $PC.birthOther += _others, $PC.birthSelf += _self, $PC.birthCitizen += _citizens, $PC.birthMaster += _oldMaster, $PC.birthArcOwner += _arcOwner, $PC.birthClient += _clients, $PC.birthElite += _elite, $PC.birthLab += _lab, $PC.birthDegenerate += _slavesLength>> <<if _curBabies == 1>> - <<set _p = 0>> + <<set _p = 0>> <<if $PC.curBabies[_p].genetics.race == $PC.origRace>> <<set _PCDegree++>> <</if>> @@ -472,11 +472,11 @@ You arrange yourself to give birth, relaxing until your body urges you to begin <</if>> <<if $PC.curBabies[0].reserve === "incubator">> - You set <<if _gender == "XX">>her<<else>>him<</if>> aside for incubation. + @@.pink;You set <<if _gender == "XX">>her<<else>>him<</if>> aside for incubation.@@ <<set $activeSlave = generateChild($PC, $PC.curBabies[0], 1)>> <<include "Incubator Workaround">> <<elseif $PC.curBabies[0].reserve === "nursery">> - You set <<if _gender == "XX">>her<<else>>him<</if>> aside for incubation. + @@.pink;You set <<if _gender == "XX">>her<<else>>him<</if>> aside for incubation.@@ <<set $activeSlave = generateChild($PC, $PC.curBabies[0])>> <<include "Nursery Workaround">> <</if>> @@ -515,19 +515,17 @@ You arrange yourself to give birth, relaxing until your body urges you to begin looks nothing like you; it's hard to believe <<if $PC.curBabies[_p].genetics.gender == "XX">>she's your daughter<<else>>he's you son<</if>> <</if>> <<if $PC.curBabies[_p].reserve == "incubator">> - You set <<if $PC.curBabies[_p].genetics.gender == "XX">>her<<else>>him<</if>> aside for incubation. + @@.pink;You set <<if $PC.curBabies[_p].genetics.gender == "XX">>her<<else>>him<</if>> aside for incubation.@@ <<set $activeSlave = generateChild($PC, $PC.curBabies[_p], 1)>> <<include "Incubator Workaround">> <<run $PC.curBabies.splice($PC.curBabies[_p], 1)>> <<set _p--, _curBabies-->> - <<set $PC.reservedChildren-->> <<elseif $PC.curBabies[_p].reserve == "nursery">> - You set <<if $PC.curBabies[_p].genetics.gender == "XX">>her<<else>>him<</if>> aside to be raised in the penthouse. + @@.pink;You set <<if $PC.curBabies[_p].genetics.gender == "XX">>her<<else>>him<</if>> aside to be raised in the penthouse.@@ <<set $activeSlave = generateChild($PC, $PC.curBabies[_p])>> <<include "Nursery Workaround">> <<run $PC.curBabies.splice($PC.curBabies[_p], 1)>> <<set _p--, _curBabies-->> - <<set $PC.reservedChildrenNursery-->> <</if>> <</for>> diff --git a/src/pregmod/theBlackMarket.tw b/src/pregmod/theBlackMarket.tw index 44af523c73b2d7235b2641298ca5fd595081fa30..5271a6a654a7114881152dc09b91329465fc4b18 100644 --- a/src/pregmod/theBlackMarket.tw +++ b/src/pregmod/theBlackMarket.tw @@ -379,7 +379,7 @@ Of all the wonders present, the thing that catches your eye the most is a shady You cannot afford the asking price of @@.red;<<print cashFormat(25000)>>@@ for animal anal wombs and ovaries. <</if>> /* TODO: flesh this out some more */ - "Got something real special this week. These are schematics for implanting non-human organs into humans. My supplier told me they came from some military expirements or something - maybe they were trying to make some kind of super soldier. Not my business, though." + "Got something real special this week. These are schematics for implanting non-human organs into humans. My supplier told me they came from some military experiments or something - maybe they were trying to make some kind of super soldier. Not my business, though." <<else>> You lack the facilities required to grow organs. <</if>> diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw index d07cd61a65ce217c2f7bb0addc0e8e9266c65f61..a1182cde32030d573912f8ea5ff93759470b9e16 100644 --- a/src/pregmod/widgets/bodyswapWidgets.tw +++ b/src/pregmod/widgets/bodyswapWidgets.tw @@ -209,8 +209,6 @@ <<set $args[0].bellyPreg = $args[1].bellyPreg>> <<set $args[0].bellyFluid = $args[1].bellyFluid>> <<set $args[0].readyOva = $args[1].readyOva>> -<<set $args[0].reservedChildren = $args[1].reservedChildren>> -<<set $args[0].reservedChildrenNursery = $args[1].reservedChildrenNursery>> <<set $args[0].womb = $args[1].womb>> /* this is array assigned by reference, if slave body that is $args[1] will be stil used anywhere in code (not discarded) - it's WRONG (they now technically share one womb object). Please tell me about it then. But if old body $args[1] just discarded - it's no problem then.*/ <<set $args[0].laborCount = $args[1].laborCount>> <<set $args[0].geneMods = $args[1].geneMods>> diff --git a/src/pregmod/widgets/deathWidgets.tw b/src/pregmod/widgets/deathWidgets.tw index 2a647cab77ae7b27e53513f6d35db85629d369d0..ebc56cd5fc2a6fb2d52c55125e60c1321e925154 100644 --- a/src/pregmod/widgets/deathWidgets.tw +++ b/src/pregmod/widgets/deathWidgets.tw @@ -24,7 +24,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>> You are notified by $dairyName staff that one of the occupied milkers has ceased producing. Upon inspection, it would seem ''@@.pink;$args[0].slaveName@@'', the cow restrained in it, died <<if $args[0].physicalAge >= 70>>naturally of old age despite<<else>>suddenly, unrelated to<</if>> $his living conditions. $He was a good cow; $he gave milk up until $his death. <<elseif $args[0].fuckdoll > 0>> - One of your fuckdoll's monitoring systems alerts you that the slave contained within has died. It would seem ''@@.pink;$args[0].slaveName@@'' has died <<if $args[0].physicalAge >= 70>>naturally of old age despite<<else>>suddenly, unrelated to<</if>> $his living conditions. Thankfully the suit notifies its owner of such things; especially with the rumors of earlier models and necrophilia you hear occasionally. + One of your Fuckdolls' monitoring systems alerts you that the slave contained within has died. It would seem ''@@.pink;$args[0].slaveName@@'' has died <<if $args[0].physicalAge >= 70>>naturally of old age despite<<else>>suddenly, unrelated to<</if>> $his living conditions. Thankfully the suit notifies its owner of such things; especially with the rumors of earlier models and necrophilia you hear occasionally. <<else>> ''@@.pink;$args[0].slaveName@@'' failed to report in for a routine inspection, something that rarely occurs under your watch. It doesn't take long to track down the wayward slave. <<set _deathSeed = random(1,100)>> @@ -67,7 +67,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>> You are notified by $dairyName staff that one of the occupied milkers has ceased producing. Upon inspection, it would seem ''@@.pink;$args[0].slaveName@@'', the cow restrained in it, died of an aphrodisiac overdose. How $he managed to get them is unknown, but $he was a good cow; $he gave milk up until $his death. <<elseif $args[0].fuckdoll > 0>> - One of your fuckdoll's monitoring systems alerts you that the slave contained within has died. It would seem ''@@.pink;$args[0].slaveName@@'' has died of an aphrodisiac overdose. Thankfully the suit notifies its owner of such things; especially with the rumors of earlier models and necrophilia you hear occasionally. It does little to deal with the resulting mess of the orgasm $he died during, however. + One of your Fuckdolls' monitoring systems alerts you that the slave contained within has died. It would seem ''@@.pink;$args[0].slaveName@@'' has died of an aphrodisiac overdose. Thankfully the suit notifies its owner of such things; especially with the rumors of earlier models and necrophilia you hear occasionally. It does little to deal with the resulting mess of the orgasm $he died during, however. <<else>> ''@@.pink;$args[0].slaveName@@'' failed to report in for a routine inspection, something that rarely occurs under your watch. It doesn't take long to track down the wayward slave. $He is found dead in $his bed, having died sometime earlier. Judging by the mess and the expression on $his face, $he died of a heart attack during a particularly intense orgasm bought about by the massive amount of aphrodisiacs in $his system. $args[0].slaveName died at the age of $args[0].actualAge; @@ -96,7 +96,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>> You are notified by $dairyName staff that one of the occupied milkers has ceased producing. Upon inspection, it would seem ''@@.pink;$args[0].slaveName@@'', the cow restrained in it, died to poor health caused by $his living conditions. $He was a good cow; $he gave milk up until $his death. <<elseif $args[0].fuckdoll > 0>> - One of your fuckdoll's monitoring systems alerts you that the slave contained within has died. It would seem ''@@.pink;$args[0].slaveName@@'' has died of general poor health. Thankfully the suit notifies its owner of such things; especially with the rumors of earlier models and necrophilia you hear occasionally. Clean up is easy enough, however. + One of your Fuckdolls' monitoring systems alerts you that the slave contained within has died. It would seem ''@@.pink;$args[0].slaveName@@'' has died of general poor health. Thankfully the suit notifies its owner of such things; especially with the rumors of earlier models and necrophilia you hear occasionally. Clean up is easy enough, however. <<else>> ''@@.pink;$args[0].slaveName@@'' failed to report in for a routine inspection, something that rarely occurs under your watch. It doesn't take long to track down the wayward slave. $He is found dead in $his bed, having died sometime during the night. $He has been in very poor health lately, so you knew this was a possibility. $args[0].slaveName died at the age of $args[0].actualAge; diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw index 78f5d8d06443d6ed293a177f98cf1b74468628a7..d59ef491abee9316321a7da768c62fe6e39bda09 100644 --- a/src/pregmod/widgets/playerDescriptionWidgets.tw +++ b/src/pregmod/widgets/playerDescriptionWidgets.tw @@ -81,7 +81,7 @@ They are covered in freckles, which are particularly dense in the cleft between them. <</if>> <<elseif $PC.boobs == 1>> - you have a @@.orange;healthy pair of DD breasts.@@ They are nice, perky and jiggle pleasantly with your every move. + you have a @@.orange;healthy pair of DD-cup breasts.@@ They are nice, perky and jiggle pleasantly with your every move. <<if $PC.lactation > 0>> Your breasts feel fuller lately; likely a side effect of your lactation. <</if>> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 874de7df3eb1662d59be1e8fac1605dc0431fd78..dfd784047fc2ef31ea2da47f0676e59668d7e8ef 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -316,7 +316,7 @@ $He begins desperately begging to be taken back to $his bed; instead you pull $him towards the couch and take a seat with $him in your lap, back against your front. Blushing thoroughly, $he gives a meek protest before focusing on the coming birth, rather than your wandering hands. $He begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. <<set $humiliation = 1>> <</if>> - $His child is promptly taken and, following a shower and a fresh change of clothes, $he is helped back to your office<<if $slaves[$i].devotion < -20>> where you are waiting to enjoy $his still very gravid body<</if>>. + $His child is promptly taken and, following a shower and a fresh change of clothes, $he is helped back to your office<<if $slaves[$i].devotion < -20>> where you are waiting to enjoy $his still very gravid body<</if>>. <<else>> While sitting nearby, $slaves[$i].slaveName's water breaks, startling $him. $He looks to you for guidance and you shake your head "no". Without permission to leave $he <<if $slaves[$i].devotion > 50>>decides to give you a show<<elseif $slaves[$i].devotion > 20>>reluctantly decides giving birth in front of you isn't so bad<<else>>begins to panic as $his contractions come sooner and sooner<<set $humiliation = 1>><</if>>. <<ClothingBirth>> @@ -805,13 +805,14 @@ <</if>> <<case "be your Concubine">> + <<setNonlocalPronouns $seeDicks>> <<if $slaves[$i].pregSource == -1 && $slaves[$i].relationship == -3>> <<if (random(1,20) > $suddenBirth)>> You make sure to find time in your busy schedule to be at your concubine wife's side as $he gives birth to your children, even if it's <<if $slaves[$i].birthsTotal == 0>>to be <</if>> a weekly occurrence. You gently caress $slaves[$i].slaveName's body as $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. You help $him upright and hold your child to $his breasts. The two of you cuddle as you watch your newborn suckle from its mother. Since $he is quite special to you, you allow $him the time to pick out names before $his child has to be taken away. When the time comes to pick up the newborn, the slave servant is surprised to find a name-card affixed to its blanket.<<if $slaves[$i].fetish != "mindbroken">> $He can't help but feel more devoted to $his master after seeing such a touching act. Before you leave, $slaves[$i].slaveName expresses how cute $he found your child and that $he can't wait to see the next one.<</if>> <<else>> Your sleep is awoken by a moist sensation and a loud moan beside you. As you help your concubine wife up, $he can't hold back the coming birth. <<ClothingBirth>> - As you swaddle <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, you cuddle up to the still very gravid girl. Bringing your child to $his breast, you enjoy each other's comfort until a servant comes to clean up. Since $he is quite special to you, you allow $him the time to pick out names before $his child has to be taken away. The slave servant is somewhat surprised to by your actions, but understands those closest to you are afforded luxuries far beyond her peers. + As you swaddle <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, you cuddle up to the still very gravid $girl. Bringing your child to $his breast, you enjoy each other's comfort until a servant comes to clean up. Since $he is quite special to you, you allow $him the time to pick out names before $his child has to be taken away. The slave servant is somewhat surprised by your actions, but understands those closest to you are afforded luxuries far beyond _hisU peers. <</if>> <<elseif !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> @@ -862,7 +863,7 @@ <<if !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - $He is aided in finding $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to _his2 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. + $He is aided in finding $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to _his2 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 $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> @@ -870,7 +871,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is aided in seeking out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out, enjoying _his2 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. + $He is aided in seeking out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out, enjoying _his2 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 $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>> @@ -880,7 +881,7 @@ <<else>> <<if $slaves[$i].fetish == "mindbroken">> <<if (random(1,20) > $suddenBirth)>> - $He wanders until $he finds $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to _his2 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. + $He wanders until $he finds $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to _his2 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 $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body. <<ClothingBirth>> @@ -888,7 +889,7 @@ <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He seeks out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, enjoying _his2 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. + $He seeks out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, enjoying _his2 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 $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>> @@ -945,7 +946,7 @@ While DJing $clubName, $slaves[$i].slaveName's water breaks. $He can't stop $his setlist without drawing attention, so $he tries $his best to ride out the contractions. As soon as the opportunity arises, $he attempts to sneak off stage. However, a number of fans block $his progress keeping $him 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 $his club. With a burst of energy $he hefts $his 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 $his 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 $his 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 $his 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">> diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index 6c66291ada2d84319bc5db871b7987efd6a503e2..598898f43b64f6ac0bf732a04091fb79415e6146 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -133,6 +133,12 @@ <<if ndef $args[0].clone>> <<set $args[0].clone = 0>> <</if>> +<<if def $args[0].reservedChildren>> + <<run delete $args[0].reservedChildren>> +<</if>> +<<if def $args[0].reservedChildrenNursery>> + <<run delete $args[0].reservedChildrenNursery>> +<</if>> <</widget>> @@ -246,11 +252,47 @@ <<widget "setPlayerPronouns">> <<set _heP = $PC.pronoun>> <<set _hisP = $PC.possessive>> + <<set _hersP = $PC.possessivePronoun>> <<set _himP = $PC.object>> + <<set _himselfP = $PC.objectReflexive>> + <<set _womanP = $PC.noun>> <<set _HeP = capFirstChar(_heP)>> <<set _HisP = capFirstChar(_hisP)>> + <<set _HersP = capFirstChar(_hersP)>> <<set _HimP = capFirstChar(_himP)>> + <<set _HimselfP = capFirstChar(_himselfP)>> + <<set _WomanP = capFirstChar(_womanP)>> +<</widget>> + +<<widget "setAssistantPronouns">> + <<set _girlA = $assistantPronouns.noun>> + <<set _hisA = $assistantPronouns.possessive>> + <<set _hersA = $assistantPronouns.possessivePronoun>> + <<set _heA = $assistantPronouns.pronoun>> + <<set _himA = $assistantPronouns.object>> + <<set _himselfA = $assistantPronouns.objectReflexive>> + + <<set _GirlA = capFirstChar(_girlA)>> + <<set _HisA = capFirstChar(_hisA)>> + <<set _HersA = capFirstChar(_hersA)>> + <<set _HeA = capFirstChar(_heA)>> + <<set _HimA = capFirstChar(_himA)>> + <<set _HimselfA = capFirstChar(_himselfA)>> + + <<set _girlM = $marketAssistantPronouns.noun>> + <<set _hisM = $marketAssistantPronouns.possessive>> + <<set _hersM = $marketAssistantPronouns.possessivePronoun>> + <<set _heM = $marketAssistantPronouns.pronoun>> + <<set _himM = $marketAssistantPronouns.object>> + <<set _himselfM = $marketAssistantPronouns.objectReflexive>> + + <<set _GirlM = capFirstChar(_girlM)>> + <<set _HisM = capFirstChar(_hisM)>> + <<set _HersM = capFirstChar(_hersM)>> + <<set _HeM = capFirstChar(_heM)>> + <<set _HimM = capFirstChar(_himM)>> + <<set _HimselfM = capFirstChar(_himselfM)>> <</widget>> /* diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw index bfdb0031355b23a2f59f20576d5d25d7152736a6..3303fe45de202c802d765933fab5d43d3db7f887 100644 --- a/src/pregmod/widgets/seBirthWidgets.tw +++ b/src/pregmod/widgets/seBirthWidgets.tw @@ -857,8 +857,6 @@ All in all, /* ----------------------- incubator/nursery adding subsection. There is support for broodmothers too. */ <<if (_cToIncub + _cToNursery > 0) && _curBabies > 0>> /*Do we need keep child checks?*/ - <<set $slaves[$i].reservedChildren -= _cToIncub>> - <<set $slaves[$i].reservedChildrenNursery -= _cToNursery>> <br><br> Of $his _curBabies child<<if _curBabies > 1>>ren<</if>>, _cToIncub <<if _cToIncub === 1>>was<<else>>were<</if>> taken to $incubatorName<<if $nursery > 0>>, and _cToNursery <<if _cToNursery === 1>>was<<else>>were<</if>> taken to $nurseryName<</if>>. <<if _cToIncub + _cToNursery > 0>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index a2e3a3a315a2fc595aefae350c88fca0eebf40d2..dfd0d56cb8843cb532dd3fc3503a55b4029a0792 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -233,13 +233,6 @@ <<if ndef $PC.markings>> <<set $PC.markings = "none">> <</if>> -<<if ndef $PC.pronoun>> - <<if $PC.title == 1>> - <<set $PC.pronoun = "he", $PC.possessive = "his", $PC.object = "him">> - <<else>> - <<set $PC.pronoun = "she", $PC.possessive = "her", $PC.object = "her">> - <</if>> -<</if>> <<if ndef $PC.pregKnown>> <<if $PC.preg > 0>> <<set $PC.pregKnown = 1>> @@ -989,9 +982,6 @@ <<if ndef $assistantBodyDesire>> <<set $assistantBodyDesire = 0>> <</if>> - - <<set $assistantPronouns = {pronoun: "she", possessivePronoun: "hers", possessive: "her", object: "her", objectReflexive: "herself", noun: "girl"}>> - <<if ndef $huskSlaveOrdered>> <<set $huskSlaveOrdered = 0>> <</if>> @@ -3602,6 +3592,8 @@ Done! <<if $secExp == 1>> <br> <<include "SecExpBackwardCompatibility">> +<<else>> + <<set $crime = 0, $security = 0>> <</if>> <<if ndef $masteredXP>> @@ -3692,5 +3684,5 @@ Done! <<set $releaseID = 1036>> <</if>> -/* reset NaNArray afterward BC is run */ +/* reset NaNArray after BC is run */ <<set $NaNArray = findNaN()>> diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index 566e3c5d0d80f85fa2c199663e83aee18ff50f3b..6a1b40f463d3e47990ba355c5b929e6bf32dde9b 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -101,7 +101,7 @@ Your milkmaid <<EventNameLink $activeSlave>> worked hard today. The cows have it <<case "loving concubine">> -It's been a long, harassing day as owner of the arcology. You're composing an angry communication to a couple of imbecile tenants who seem to think they're still in their old world shithole of a homeland, insist on acting like it, and are also wealthy enough to make it unwise to simply defenestrate them from the nearest window. Not that you aren't tempted. Suddenly, you feel a moist, <<if ($activeSlave.lips > 70)>>massive<<elseif ($activeSlave.lips > 40)>>pillowlike<<else>>girlish<</if>> pair of lips nibbling their way along your ear, and a <<if ($activeSlave.muscles > 95)>>powerful<<elseif ($activeSlave.muscles > 30)>>strong<<else>>feminine<</if>> hand over your shoulder. Its owner <<if !canTalk($activeSlave)>>passes you a handwritten note: "? ? It can wait, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> ? ?"<<else>><<say whisper>>s: "It can wait, <<Master>>."<</if>> +It's been a long, harassing day as owner of the arcology. You're composing an angry communication to a couple of imbecile tenants who seem to think they're still in their old world shithole of a homeland, insist on acting like it, and are also wealthy enough to make it unwise to simply defenestrate them from the nearest window. Not that you aren't tempted. Suddenly, you feel a moist, <<if ($activeSlave.lips > 70)>>massive<<elseif ($activeSlave.lips > 40)>>pillowlike<<else>>girlish<</if>> pair of lips nibbling their way along your ear, and a <<if ($activeSlave.muscles > 95)>>powerful<<elseif ($activeSlave.muscles > 30)>>strong<<else>>feminine<</if>> hand over your shoulder. Its owner <<if !canTalk($activeSlave)>>passes you a handwritten note: "? ? It can wait, <<= WrittenMaster()>> ? ?"<<else>><<say whisper>>s: "It can wait, <<Master>>."<</if>> You turn to see your concubine <<EventNameLink $activeSlave>>'s <<if ($activeSlave.butt > 5)>>massive, nude ass<<elseif ($activeSlave.butt > 2)>>big naked butt<<else>>nice, nude rear<</if>> vanishing back into your suite.<<if ($activeSlave.boobs > 2000)>> As $he sways away from you, you can clearly see the sides of $his massive tits, sticking out on either side of $his torso.<</if>> @@ -125,7 +125,7 @@ The business is brief and inconsequential, but it's good to speak with $him. Whe <<case "headgirl dickgirl">> -<<EventNameLink $activeSlave>>, despite being a loyal and sexually receptive slave $girl, still has a virile cock. $He certainly isn't shy about using it in pursuit of $his head girl duties. $slaves[$j].slaveName has apparently committed some minor sin, and is now being made to pay. $activeSlave.slaveName has _him2 lying on _his2 back on a table with _his2 helpless <<if $seeRace == 1>>$slaves[$j].race <</if>>throat serving as a hole for $activeSlave.slaveName to fuck <<if $seeRace == 1>>with _his2 $activeSlave.race cock <</if>>while $activeSlave.slaveName rains light slaps on poor $slaves[$j].slaveName's nipples, breasts, and <<if ($slaves[$j].dick > 0) && !canAchieveErection($slaves[$j])>>limp dick<<elseif ($slaves[$j].dick > 0)>>defenseless dick<<elseif ($slaves[$j].clit > 0)>>big clit<<else>>mons<</if>>. All the while, your head girl expounds on $slaves[$j].slaveName's shortcomings and the ways in which _he2 must apply _himself2 to better serve you. +<<EventNameLink $activeSlave>>, despite being a loyal and sexually receptive slave $girl, still has a virile cock. $He certainly isn't shy about using it in pursuit of $his Head Girl duties. $slaves[$j].slaveName has apparently committed some minor sin, and is now being made to pay. $activeSlave.slaveName has _him2 lying on _his2 back on a table with _his2 helpless <<if $seeRace == 1>>$slaves[$j].race <</if>>throat serving as a hole for $activeSlave.slaveName to fuck <<if $seeRace == 1>>with _his2 $activeSlave.race cock <</if>>while $activeSlave.slaveName rains light slaps on poor $slaves[$j].slaveName's nipples, breasts, and <<if ($slaves[$j].dick > 0) && !canAchieveErection($slaves[$j])>>limp dick<<elseif ($slaves[$j].dick > 0)>>defenseless dick<<elseif ($slaves[$j].clit > 0)>>big clit<<else>>mons<</if>>. All the while, your Head Girl expounds on $slaves[$j].slaveName's shortcomings and the ways in which _he2 must apply _himself2 to better serve you. <<case "worshipful impregnatrix">> @@ -520,7 +520,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<case "headgirl dickgirl">> -<<link "Compliment your head girl's efforts, and encourage $him">> +<<link "Compliment your Head Girl's efforts, and encourage $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> As you walk into the room to offer $activeSlave.slaveName some positive reinforcement, $he groans, arches $his back, and shoots $his load down $slaves[$j].slaveName's retching <<if $seeRace == 1>>$slaves[$j].race <</if>>throat. $activeSlave.slaveName immediately greets you with perfect decorum, despite $his recent orgasm, and delivers $slaves[$j].slaveName an agonizing flick to the ear when _he2 does not, in $activeSlave.slaveName's opinion, follow suit with sufficient speed. You inform $activeSlave.slaveName that $he is a fine Head Girl, and that if $he continues to apply $himself $he will bring credit to you as a slaveowner. $He looks a little surprised, but thanks you correctly. It is only due to the arcology's monitoring system that you know that, as you turn your back and go, a single tear escapes from $his eye and rolls down $his pretty <<if $seeRace == 1>>$activeSlave.race <</if>>cheek. In the coming week, no shirker is safe from $his wrath. @@.hotpink;Every single slave in your penthouse has become better broken to your will.@@ @@ -533,10 +533,10 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <</for>> <</replace>> <</link>> -<br><<link "Instruct your head girl to give that slave special attention">> +<br><<link "Instruct your Head Girl to give that slave special attention">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The next time you see $activeSlave.slaveName, you ask what $slaves[$j].slaveName did. It seems _he2 did not complete _his2 assigned duty with sufficient speed, and compounded _his2 sin by talking back to $activeSlave.slaveName when $he pointed this out. You observe that if _he2 continues to fail to clean, _he2 can do it with _his2 tongue; and that if _he2 continues to fail to be polite, _he2 can clean $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>body with _his2 tongue. Your head girl nods $his understanding with a grin. This is one week @@.hotpink;the disobedient bitch won't soon forget.@@ + The next time you see $activeSlave.slaveName, you ask what $slaves[$j].slaveName did. It seems _he2 did not complete _his2 assigned duty with sufficient speed, and compounded _his2 sin by talking back to $activeSlave.slaveName when $he pointed this out. You observe that if _he2 continues to fail to clean, _he2 can do it with _his2 tongue; and that if _he2 continues to fail to be polite, _he2 can clean $activeSlave.slaveName's <<if $seeRace == 1>>$activeSlave.race <</if>>body with _his2 tongue. Your Head Girl nods $his understanding with a grin. This is one week @@.hotpink;the disobedient bitch won't soon forget.@@ <<set $slaves[$j].devotion += 15>> <<set $slaves[$j].oralCount += 5>> <<set $oralTotal += 5>> diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw index c07e91ebd5fc7ca725c54d7574f78456ef8710e8..4ac690d41553b9a90d5ddbf28db6352bac668ab9 100644 --- a/src/uncategorized/RECI.tw +++ b/src/uncategorized/RECI.tw @@ -182,7 +182,7 @@ $He arches $his back and bats $his eyes at you. "A lot." <</if>> <</for>> -<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; +<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<= WrittenMaster()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>> $his chastity cage is dribbling precum, and $he's clearly uncomfortable with simultaneous arousal and unwillingness to suffer a hardon inside it. <<elseif canAchieveErection($activeSlave)>> @@ -217,7 +217,7 @@ And, <<Master>>." $He arches $his back prettily and then scoots $himself down th <</if>> <</for>> -<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: she's being inspected by $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; +<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: she's being inspected by $his <<= WrittenMaster()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>> $his chastity cage is dribbling precum, and she's clearly uncomfortable with simultaneous arousal and unwillingness to suffer a hardon inside it. <<elseif canAchieveErection($activeSlave)>> @@ -318,9 +318,9 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<setLocalPronouns $Concubine 2>> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling her that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before she can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, she points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>her cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt. + You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>_his2 cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt. <br><br> - Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push her sideways so she straddles the counter's edge. $He whimpers into the <<if $Concubine.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as she feels her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to _him2, and she takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap. + Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so she straddles the counter's edge. $He whimpers into the <<if $Concubine.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as she feels her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to _him2, and she takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap. <<if ($Concubine.boobs > 4000) && ($activeSlave.boobs > 4000)>> Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $Concubine.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh. <<else>> @@ -493,7 +493,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<link "Yes $he can">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>>, $he turns fully away from you, cocking $his hips at just the right angle to offer you $his anus, without any preamble or foreplay. But you come up behind her and encircle $his <<if ($activeSlave.belly >= 1500)>><<if $activeSlave.preg > $activeSlave.pregData.normalBirth/8>>pregnant <<else>>rounded <</if>>belly<<elseif ($activeSlave.weight > 10)>>plush belly<<elseif ($activeSlave.muscles > 5)>>toned stomach<<else>>trim waist<</if>> with your capable hands, your lips nibbling along the line of $his <<if ($activeSlave.muscles > 30)>>strong<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> shoulders and neck. $He shudders as the embrace brings your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> <<if ($activeSlave.height >= 185)>>up between $his buttocks, since she's nearly as tall as you<<elseif ($activeSlave.height >= 170)>>pressing into $his asscrack, since she's shorter than you<<else>>nestling down into $his asscrack, since she's so much shorter than you<</if>>. You whisper that a good slave girl doesn't have to touch $himself to come when $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> fucks $his butt, and ask whether she's a good slave girl. $He shivers and promises that she is, rubbing $his asshole against your <<if ($PC.dick == 0)>>phallus<<else>>cockhead<</if>>. $He gives a feminine sigh as it slides into her, and moves softly within your embrace, doing $his best to pleasure you with $his girly ass. $He was already very close, and your loving touch so aroused her that she gasps and stiffens after only a few thrusts, + When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>>, $he turns fully away from you, cocking $his hips at just the right angle to offer you $his anus, without any preamble or foreplay. But you come up behind her and encircle $his <<if ($activeSlave.belly >= 1500)>><<if $activeSlave.preg > $activeSlave.pregData.normalBirth/8>>pregnant <<else>>rounded <</if>>belly<<elseif ($activeSlave.weight > 10)>>plush belly<<elseif ($activeSlave.muscles > 5)>>toned stomach<<else>>trim waist<</if>> with your capable hands, your lips nibbling along the line of $his <<if ($activeSlave.muscles > 30)>>strong<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> shoulders and neck. $He shudders as the embrace brings your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> <<if ($activeSlave.height >= 185)>>up between $his buttocks, since she's nearly as tall as you<<elseif ($activeSlave.height >= 170)>>pressing into $his asscrack, since she's shorter than you<<else>>nestling down into $his asscrack, since she's so much shorter than you<</if>>. You whisper that a good slave girl doesn't have to touch $himself to come when $his <<= WrittenMaster()>> fucks $his butt, and ask whether she's a good slave girl. $He shivers and promises that she is, rubbing $his asshole against your <<if ($PC.dick == 0)>>phallus<<else>>cockhead<</if>>. $He gives a feminine sigh as it slides into her, and moves softly within your embrace, doing $his best to pleasure you with $his girly ass. $He was already very close, and your loving touch so aroused her that she gasps and stiffens after only a few thrusts, <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>> shuddering <<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> diff --git a/src/uncategorized/REFI.tw b/src/uncategorized/REFI.tw index 35a1e7f76efda401b1969ed957b05949c692afc3..aafa82bc52e7f8b9cc2fae0085a279b3e8663669 100644 --- a/src/uncategorized/REFI.tw +++ b/src/uncategorized/REFI.tw @@ -1424,7 +1424,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<< <<elseif $activeSlave.butt <= 5>> enormous <</if>> - <<if Math.floor($activeSlave.buttImplant/$activeSlave.butt) > .60>>firm<<else>>soft<</if>> buttocks, atop $his anal chastity. You let $him quiver with anticipation for a little before reminding $him that the belt's removal is a reward for good slaves, and you might give release $him from it one day - but that $he doesn't deserve it yet. With that, you begin thrusting against $his rear, enjoying the twin pairs off flesh against your palms.. $He is <<if !canTalk($activeSlave)>>practically <</if>> mewling with lust by the time you cum on $him, joining you in orgasm as $he feels your seed trickle down $his lower back and down to $his chastity belt. + <<if Math.floor($activeSlave.buttImplant/$activeSlave.butt) > .60>>firm<<else>>soft<</if>> buttocks, atop $his anal chastity. You let $him quiver with anticipation for a little before reminding $him that the belt's removal is a reward for good slaves, and you might give release $him from it one day - but that $he doesn't deserve it yet. With that, you begin thrusting against $his rear, enjoying the twin pairs off flesh against your palms. $He is <<if !canTalk($activeSlave)>>practically <</if>> mewling with lust by the time you cum on $him, joining you in orgasm as $he feels your seed trickle down $his lower back and down to $his chastity belt. <<else>> rest your cock between $his <<if $activeSlave.butt <= 0>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 97bd3f199f0ac7ffc303ed690b8c34ce9258a327..d3857eaae7f9a23a5754c5783f5ccd10f17731e2 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -57,7 +57,8 @@ <<run Enunciate($activeSlave)>> <<set _belly = bellyAdjective($activeSlave)>> <<setLocalPronouns $activeSlave>> -<<setPlayerPronouns $activeSlave>> +<<setPlayerPronouns>> +<<setAssistantPronouns>> <<switch $RESSevent>> @@ -272,39 +273,39 @@ With $his back arched and $his thighs together $his <<if $activeSlave.butt > 5>> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> wakes you in the morning, <<if $assistant == 0>> - its voice + _hisA voice <<else>> <<switch $assistantAppearance>> <<case "monstergirl">> - her monstergirl avatar's sultry voice + _hisA monstergirl avatar's sultry voice <<case "shemale">> - her shemale avatar's syrupy voice + _hisA shemale avatar's syrupy voice <<case "amazon">> - her amazon avatar's powerful voice + _hisA amazon avatar's powerful voice <<case "businesswoman">> - her businesswoman avatar's confident voice + _hisA businesswoman avatar's confident voice <<case "fairy" "pregnant fairy">> - her fairy avatar's adorable voice + _hisA fairy avatar's adorable voice <<case "schoolgirl">> - her schoolgirl avatar's bubbly voice + _hisA schoolgirl avatar's bubbly voice <<case "loli" "preggololi">> - her loli avatar's childish voice + _hisA loli avatar's childish voice <<case "angel">> - her angel avatar's heavenly voice + _hisA angel avatar's heavenly voice <<case "cherub">> - her cherub avatar's cheerful voice + _hisA cherub avatar's cheerful voice <<case "incubus">> - her incubus avatar's forceful voice + _hisA incubus avatar's forceful voice <<case "succubus">> - her succubus avatar's sultry voice + _hisA succubus avatar's sultry voice <<case "imp">> - her imp avatar's mischievous voice + _hisA imp avatar's mischievous voice <<case "witch">> - her witch avatar's cocky voice + _hisA witch avatar's cocky voice <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - her avatar's piecemeal voice + _hisA avatar's piecemeal voice <<default>> - her voice + _hisA voice <</switch>> <</if>> gently calling your name. As you regain consciousness, you become aware of a weight on your chest<<if $PC.boobsBonus >= 3>> other than your heavy tits<</if>>. <<EventNameLink $activeSlave>> has snuggled up against you in $his sleep. $He's nude, and so are you; everyone sleeps naked in your penthouse. The sheet is down at your hips, leaving your upper bodies bare. <<if $activeSlave.amp == 1>>$He's wormed $his limbless torso under your arm,<<else>>$He has one arm across your <<if $PC.boobs == 1>>chest, just below your breasts,<<elseif $PC.title == 1>>manly chest<<else>>flat chest,<</if>><</if>> and is using your shoulder as a pillow. You can feel $his warm breath across <<if $PC.boobs == 1 || $PC.title == 0>>your nipple on that side, and it hardens slowly under your gaze<<else>>your well-developed pectorals<</if>>. $His <<if $activeSlave.boobs > 4000>>incredible tits are resting to either side of your ribcage, with one of them a heavy mass on your chest and the other trapped under $his<<elseif $activeSlave.boobs > 1200>>big boobs form a warm, soft mass between you<<else>>soft chest rests warmly against your ribcage<</if>><<if $activeSlave.belly >= 10000>>, beneath them, $his _belly <<if $activeSlave.bellyPreg >= 8000>>pregnant <</if>>belly rests <<if $PC.belly >= 1500>>against your own baby bump<<else>>upon your flat stomach<</if>><</if>>, and farther down, there's another source of warmth where $he's <<if $activeSlave.amp == 1>>got $his legless pelvis resting against your hip<<else>>straddling your thigh<</if>>. @@ -591,7 +592,7 @@ from your view. The wait gives license to $his fears. $His<<if ($activeSlave.lip <<case "cooler lockin">> -You're circulating in $clubName, looking over your holdings but mostly just letting yourself be seen, when your personal assistant quietly alerts you. <<if $assistant == 0>>"<<= properTitle()>>,"<<else>>"Baby,"<</if>> she says, "<<EventNameLink $activeSlave>> can't get out of the refrigerator." <<if $assistant == 0>>The personal assistant explains the absurd statement: "$He's been assigned to get some items out of the walk-in refrigerator. $He accidentally let the door shut behind $him, didn't notice, took too long in there, and is now too chilled to figure out the emergency release. I can unlock it remotely, or you can let $him out yourself."<<else>>Chuckling, your personal assistant explains the absurd statement: "The silly $girl's been assigned to get some things out of the walk-in refrigerator. $He accidentally let the door shut behind $him, didn't notice, took too long in there, and is now too chilled to figure out the emergency release. I can unlock it remotely, or you can head over and have some fun with $him."<</if>> +You're circulating in $clubName, looking over your holdings but mostly just letting yourself be seen, when your personal assistant quietly alerts you. <<if $assistant == 0>>"<<= properTitle()>>,"<<else>>"Baby,"<</if>> _heA says, "<<EventNameLink $activeSlave>> can't get out of the refrigerator." <<if $assistant == 0>>The personal assistant explains the absurd statement: "$He's been assigned to get some items out of the walk-in refrigerator. $He accidentally let the door shut behind $him, didn't notice, took too long in there, and is now too chilled to figure out the emergency release. I can unlock it remotely, or you can let $him out yourself."<<else>>Chuckling, your personal assistant explains the absurd statement: "The silly $girl's been assigned to get some things out of the walk-in refrigerator. $He accidentally let the door shut behind $him, didn't notice, took too long in there, and is now too chilled to figure out the emergency release. I can unlock it remotely, or you can head over and have some fun with $him."<</if>> <br><br> The walk-in cooling unit is designed for the refrigeration of food for you and guests only, since the slaves drink a nutritive fluid that doesn't require it. Only servants ever have any reason to be in there, but $he was indeed instructed to fetch out some beverages necessary for an entertainment you have planned. It's cool in there, but not freezing, so $he's in no immediate danger. @@ -636,7 +637,7 @@ You shake your head no, for the moment, and just enjoy the view. After a few min <<case "nympho with assistant">> -You pass one of the penthouse's several supply closets by chance, and are surprised to hear $assistantName's voice inside. Oddly, there seems to be more than one of $him. You open the door on a whim, to find that almost every one of the dildo machines in the closet is currently fucking <<EventNameLink $activeSlave>>, +You pass one of the penthouse's several supply closets by chance, and are surprised to hear $assistantName's voice inside. Oddly, there seems to be more than one of _himA. You open the door on a whim, to find that almost every one of the dildo machines in the closet is currently fucking <<EventNameLink $activeSlave>>, <<if $activeSlave.belly >= 500000>> atop $his <<if $activeSlave.bellyPreg >= 5000>>excited and wriggling mass of children<<else>>over-inflated sphere of a stomach<</if>> <<else>> @@ -1135,7 +1136,7 @@ One morning, you see <<EventNameLink $activeSlave>> <</if>> hurriedly past your door, as though $he doesn't want you to notice $him. Of course, this only makes you notice $him, and you order $him in. As $he reluctantly obeys, you notice something off about $his gait. $He should be quite uncomfortable from the big buttplug $he is required to wear, but $he doesn't seem to be. <br><br> -Your order $him to turn around and present $his anus for inspection. $He doesn't refuse, exactly, but neither does $he obey. $He keeps $his butt pointed resolutely away from you, and backs away a little. You cover the distance between you in three steps and run a clinical hand between the terrified slave's buttocks. As you suspected, $he isn't wearing her buttplug. +Your order $him to turn around and present $his anus for inspection. $He doesn't refuse, exactly, but neither does $he obey. $He keeps $his butt pointed resolutely away from you, and backs away a little. You cover the distance between you in three steps and run a clinical hand between the terrified slave's buttocks. As you suspected, $he isn't wearing $his buttplug. <<if !canTalk($activeSlave)>> $He gestures pitifully, complaining that the plug hurts. <<else>> @@ -2396,46 +2397,46 @@ As you begin your day one morning, you hear the quiet <<case "schoolgirl">> but unmistakably suggestive voice of your schoolgirl <</switch>> -personal assistant coming from your office. Looking in, you are treated to the sight of <<EventNameLink $activeSlave>>'s <<if $activeSlave.butt > 8>>ridiculous bottom jiggling<<elseif $activeSlave.butt > 4>>big behind bouncing<<else>>cute rear<</if>><<if $activeSlave.belly >= 5000>>, and the _ belly rounded belly hanging between $his legs,<</if>> as $he reaches out over the glass top of your desk with a soft, dust-free cloth and a bottle of screen cleaner. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> is displaying her avatar right under where the slave is cleaning the glass screen, and $he's displaying it nude. $He's positioned $himself so that the poor slave appears to be wiping +personal assistant coming from your office. Looking in, you are treated to the sight of <<EventNameLink $activeSlave>>'s <<if $activeSlave.butt > 8>>ridiculous bottom jiggling<<elseif $activeSlave.butt > 4>>big behind bouncing<<else>>cute rear<</if>><<if $activeSlave.belly >= 5000>>, and the _ belly rounded belly hanging between $his legs,<</if>> as $he reaches out over the glass top of your desk with a soft, dust-free cloth and a bottle of screen cleaner. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> is displaying _hisA avatar right under where the slave is cleaning the glass screen, and $he's displaying it nude. $He's positioned $himself so that the poor slave appears to be wiping <<switch $assistantAppearance>> <<case "monstergirl">> - $his hair-tentacles + _hisA hair-tentacles <<case "shemale">> - the shaft of her massive prick + the shaft of _hisA massive prick <<case "amazon">> - the insides of her muscular thighs + the insides of _hisA muscular thighs <<case "businesswoman">> - $his pussy + _hisA pussy <<case "fairy">> - her tiny body + _hisA tiny body <<case "pregnant fairy">> - her tiny yet swollen body + _hisA tiny yet swollen body <<case "goddess">> - her motherly tits + _hisA motherly tits <<case "hypergoddess">> - her huge pregnant belly + _hisA huge pregnant belly <<case "loli">> - her flat chest + _hisA flat chest <<case "preggololi">> - her pregnant belly + _hisA pregnant belly <<case "angel">> - her wide-spread wings + _hisA wide-spread wings <<case "cherub">> - her cute pussy + _hisA cute pussy <<case "incubus">> - her throbbing prick + _hisA throbbing prick <<case "succubus">> - her lovely pussy + _hisA lovely pussy <<case "imp">> - $his pussy + _hisA pussy <<case "witch">> - her plump tits + _hisA plump tits <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - her phallic tentacles + _hisA phallic tentacles <<case "schoolgirl">> - her perky tits + _hisA perky tits <</switch>> -down with screen cleaner, and is talking dirty to the furiously blushing servant. "Ohh, that feels good," she moans. "Rub me right there, you +down with screen cleaner, and is talking dirty to the furiously blushing servant. "Ohh, that feels good," _heA moans. "Rub me right there, you $desc slut! I love it!" The poor slave is doing $his best to hurry, embarrassed and unsure of how to react to $assistantName's behavior. @@ -2457,7 +2458,7 @@ has run through the prescribed motions of a normal inspection, and you've reache <<case "kitchen molestation">> -<<EventNameLink $activeSlave>> is a horny bitch, and $he isn't particularly picky about how $he gets off. Since other slaves are not allowed to resist $his little molestations, $he's taken to haunting the kitchen around mealtimes. Since everyone has to suck her meals out of the phallic food dispensers, every slave has to spend some minutes of every day in the kitchen with their face to the wall and their rear defenseless. $activeSlave.slaveName does $his best to arrive as early as possible and eat as rapidly as possible so $he can then play with anyone who's slower to finish. +<<EventNameLink $activeSlave>> is a horny bitch, and $he isn't particularly picky about how $he gets off. Since other slaves are not allowed to resist $his little molestations, $he's taken to haunting the kitchen around mealtimes. Since everyone has to suck their meals out of the phallic food dispensers, every slave has to spend some minutes of every day in the kitchen with their face to the wall and their rear defenseless. $activeSlave.slaveName does $his best to arrive as early as possible and eat as rapidly as possible so $he can then play with anyone who's slower to finish. <br><br> You decide to stop by to see $his method at work. By the time you arrive, $he's already eaten and orgasmed at least once. As you spectate, $he <<if canPenetrate($activeSlave) && $activeSlave.prostate > 0>> @@ -2469,45 +2470,45 @@ You decide to stop by to see $his method at work. By the time you arrive, $he's <<case "forbidden masturbation">> <<if $assistant > 0>> - There is an alert from $assistantName, in her deliciously feminine voice: "$activeSlave.slaveName is masturbating, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>. Ooh, $he's breaking the rules, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>!" Her avatar + There is an alert from $assistantName, in _hisA deliciously feminine voice: "$activeSlave.slaveName is masturbating, <<= properMaster()>>. Ooh, $he's breaking the rules, <<= properMaster()>>!" _HisA avatar <<switch $assistantAppearance>> <<case "monstergirl">> - strokes its dicks suggestively. + strokes _hisA dicks suggestively. <<case "shemale">> - shifts uncomfortably, its cock rock hard. + shifts uncomfortably, _hisA cock rock hard. <<case "amazon">> - struts back and forth indignantly, its bone bangles rattling. + struts back and forth indignantly, _hisA bone bangles rattling. <<case "businesswoman">> - licks its cherry-red lips suggestively. + licks _hisA cherry-red lips suggestively. <<case "fairy" "pregnant fairy">> giggles uncontrollably. <<case "hypergoddess" "goddess">> - tutting disapprovingly, despite her blushing. + tutting disapprovingly, despite _hisA blushing. <<case "loli">> stares innocently at the scene. <<case "preggololi">> - stares at the scene, blushing, while a hand caresses her large belly. + stares at the scene, blushing, while a hand caresses _hisA large belly. <<case "angel">> - is covering her face, occasionally peeping through her fingers. + is covering _hisA face, occasionally peeping through _hisA fingers. <<case "cherub">> - is trying her hardest to look away, but keeps glancing back at the scene. + is trying _hisA hardest to look away, but keeps glancing back at the scene. <<case "incubus">> is openly jacking off to the sight. <<case "succubus">> - is groping $himself to the sight. + is groping herself to the sight. <<case "imp">> - is hovering while viciously fingering $his cunt. + is hovering while viciously fingering _hisA cunt. <<case "witch">> - is pretending to read from her spell book, but is obviously watching over the top of it. + is pretending to read from _hisA spell book, but is obviously watching over the top of it. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - is mimicking her actions nearly perfectly. + is mimicking _hisA actions nearly perfectly. <<case "schoolgirl">> giggles nervously. <<default>> spins accusingly. <</switch>> <<else>> - There is a gentle alert from $assistantName: "$activeSlave.slaveName is masturbating in violation of the rules, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>." + There is a gentle alert from $assistantName: "$activeSlave.slaveName is masturbating in violation of the rules, <<= properMaster()>>." <</if>> A video feed appears. <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> @@ -2610,43 +2611,43 @@ When you return, the comfortably nude $desc is flirting shamelessly with $assist <<case "monstergirl">> "I love your hair," the slave <<say>>s. "Have you done anything to it lately?" <br><br> - $assistantName smiles dangerously, her tentacle hair flaring out, its suckers starting to pulsate. "Don't you mean, 'have I done anyone with it lately?' I'd love to do you," she purrs. + $assistantName smiles dangerously, _hisA tentacle hair flaring out, its suckers starting to pulsate. "Don't you mean, 'have I done anyone with it lately?' I'd love to do you," _heA purrs. <<case "shemale">> "I love your cock," the slave <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps wistfully<<else>>sighs wistfully<</if>>. <<if canAchieveErection($activeSlave)>>"I'd love to be that big."<<else>>"I can't look away."<</if>> <br><br> - Complimented, $assistantName looks pleased. "Yeah, it's pretty great," she giggles. + Complimented, $assistantName looks pleased. "Yeah, it's pretty great," _heA giggles. <<case "amazon">> "You're <<s>>o big and <<s>>trong," the slave <<say>>s. "You look like you could give a great hug." <br><br> - $assistantName blushes. "Um, well," she says, her muscular avatar kicking its heels. "I can't. But I'd like to give you one!" + $assistantName blushes. "Um, well," _heA says, _hisA muscular avatar kicking its heels. "I can't. But I'd like to give you one!" <<case "businesswoman">> "You're <<s>>o confident and <<s>>e<<x>>y," the slave <<say>>s. "I love doing what you <<s>>ay." <br><br> - $assistantName favors $him with an aristocratic look. "Well, you are a good slave," she says measuringly. "So I suppose I love telling you what to do." She uncrosses and recrosses her legs. + $assistantName favors $him with an aristocratic look. "Well, you are a good slave," _heA says measuringly. "So I suppose I love telling you what to do." _HeA uncrosses and recrosses _hisA legs. <<case "fairy">> "You're <<s>>o tiny and adorable," the slave <<say>>s. "You're a load of fun to be with." <br><br> - $assistantName giggles and holds her hands up to her face. "Aw shucks, you're just saying that." she says shyly. "You're quite the cutie yourself!" She flits to and fro. + $assistantName giggles and holds _hisA hands up to _hisA face. "Aw shucks, you're just saying that," _heA says shyly. "You're quite the cutie yourself!" _HeA flits to and fro. <<case "pregnant fairy">> "You're <<s>>o tiny and adorable," the slave <<say>>s. "You're a load of fun to be with." <br><br> - $assistantName giggles and holds her hands up to her face. "Aw shucks, you're just saying that." she says shyly. "You're quite the cutie yourself!" She moves one hand down to caress her belly. + $assistantName giggles and holds _hisA hands up to _hisA face. "Aw shucks, you're just saying that," _heA says shyly. "You're quite the cutie yourself!" _HeA moves one hand down to caress _hisA belly. <<case "schoolgirl" "cherub">> "You're <<s>>o cute," the slave <<say>>s. "It make<<s>> thing<<s>> fun." <br><br> - $assistantName looks touched. "Aw," she coos, "I love you too!" + $assistantName looks touched. "Aw," _heA coos, "I love you too!" <<case "goddess" "hypergoddess">> "I love the way you glow," the slave <<say>>s. "It'<<s>> really comforting." <br><br> - $assistantName beams maternally. "That's wonderful," she says resonantly. "I want the best for you." + $assistantName beams maternally. "That's wonderful," _heA says resonantly. "I want the best for you." <<case "loli">> "You're <<s>>o cute," the slave <<say>>s. "It'<<s>> really calming." <br><br> - $assistantName beams cutely. She giggles quietly. "I'll be cuter just for you." + $assistantName beams cutely. _HeA giggles quietly. "I'll be cuter just for you." <<case "preggololi">> "You're <<s>>o cute," the slave <<say>>s. "It'<<s>> really calming." <br><br> - $assistantName beams proudly. She giggles loudly and pats her belly. "I'll be cuter just for you." + $assistantName beams proudly. _HeA giggles loudly and pats _hisA belly. "I'll be cuter just for you." <<case "angel">> "I love your wing<<s>>," the slave <<say>>s. "They are <<s>>o maje<<s>>tic." <br><br> @@ -2937,7 +2938,7 @@ Still dreaming, $he clasps $his arms protectively over $his <<if $activeSlave.pr <<case "cockfeeder resistance">> -As you're starting your day, $assistantName pauses <<if $assistant != 0>>her<<else>>its<</if>> review of business matters to report that <<EventNameLink $activeSlave>> is not accepting $his breakfast from the phallic feeders in the kitchen. With nothing else urgent, you head down to address the situation. $activeSlave.slaveName is in the proper position for feeding, on $his knees in front of a feeding fuckmachine. $He isn't sucking it off for $his breakfast, however. $He doesn't seem to be fully awake, and is <<if canSee($activeSlave)>>regarding<<else>>touching<</if>> the big dildo that $he's supposed to suck off for food with vague distaste. $His $activeSlave.faceShape face is scrunched into a look of tired disgust. +As you're starting your day, $assistantName pauses _hisA review of business matters to report that <<EventNameLink $activeSlave>> is not accepting $his breakfast from the phallic feeders in the kitchen. With nothing else urgent, you head down to address the situation. $activeSlave.slaveName is in the proper position for feeding, on $his knees in front of a feeding fuckmachine. $He isn't sucking it off for $his breakfast, however. $He doesn't seem to be fully awake, and is <<if canSee($activeSlave)>>regarding<<else>>touching<</if>> the big dildo that $he's supposed to suck off for food with vague distaste. $His $activeSlave.faceShape face is scrunched into a look of tired disgust. <br><br> @@ -2950,7 +2951,7 @@ $He turns to you as you enter, and <<if canSee($activeSlave)>>seeing<<else>>real <<case "suppository resistance">> -As you're starting your day, $assistantName pauses <<if $assistant != 0>>her<<else>>its<</if>> review of business matters to report that <<EventNameLink $activeSlave>> is not accepting $his breakfast from the phallic feeders in the kitchen. With nothing else urgent, you head down to address the situation. $activeSlave.slaveName is standing in front of the place where $he's supposed to take $his drugs. It's a little pad on the ground on which $he's supposed to kneel, with a fuckmachine positioned to penetrate $his anus once $he does so. $He's not completely awake yet, and is just standing there, <<if canSee($activeSlave)>>viewing<<else>>feeling<</if>> the setup with a vague look of distaste. $He's facing it, and has $his <<if $activeSlave.butt > 6>>massive behind<<elseif $activeSlave.butt > 3>>beautiful bottom<<else>>cute butt<</if>> pointed very much away from the machine that's supposed to be fucking it. +As you're starting your day, $assistantName pauses _hisA review of business matters to report that <<EventNameLink $activeSlave>> is not accepting $his breakfast from the phallic feeders in the kitchen. With nothing else urgent, you head down to address the situation. $activeSlave.slaveName is standing in front of the place where $he's supposed to take $his drugs. It's a little pad on the ground on which $he's supposed to kneel, with a fuckmachine positioned to penetrate $his anus once $he does so. $He's not completely awake yet, and is just standing there, <<if canSee($activeSlave)>>viewing<<else>>feeling<</if>> the setup with a vague look of distaste. $He's facing it, and has $his <<if $activeSlave.butt > 6>>massive behind<<elseif $activeSlave.butt > 3>>beautiful bottom<<else>>cute butt<</if>> pointed very much away from the machine that's supposed to be fucking it. <br><br> @@ -3066,7 +3067,7 @@ in time with $his humming, $he runs $his hands sensually over them, along $his f First thing in the morning, <<if $activeSlave.ID == $Bodyguard.ID>> - before you've even gotten out of bed, you hear <<EventNameLink $activeSlave>>'s voice coming up from where $he sleeps, on $his own bedroll in your suite. There's a distinctly plaintive note in $his voice, and as soon as you sit up and look in $his direction, it's obvious why. $He sleeps out of $his P-Limbs, since it's good to rest the anchor points implanted into $his torso. They're held in actuators over $his bedroll, which can swing down and attach them to $him the instant $he's awake. Except today, they're staying obstinately up near the ceiling. <<if $assistant != 0>>$assistantName tells you she's<<else>>Your personal assistant informs you it's<</if>> troubleshooting the problem, but in the meantime, poor + before you've even gotten out of bed, you hear <<EventNameLink $activeSlave>>'s voice coming up from where $he sleeps, on $his own bedroll in your suite. There's a distinctly plaintive note in $his voice, and as soon as you sit up and look in $his direction, it's obvious why. $He sleeps out of $his P-Limbs, since it's good to rest the anchor points implanted into $his torso. They're held in actuators over $his bedroll, which can swing down and attach them to $him the instant $he's awake. Except today, they're staying obstinately up near the ceiling. <<if $assistant != 0>>$assistantName tells you _heA's<<else>>Your personal assistant informs you _heA's<</if>> troubleshooting the problem, but in the meantime, poor <<else>> $assistantName informs you that there's a minor problem with <<EventNameLink $activeSlave>>, and asks whether you'd like it to be handled without you. $He sleeps out of $his P-Limbs, since it's good to rest the anchor points implanted into $his torso. When $he wakes up, $he usually asks whichever slave is nearest to attach $his dominant arm, at which point $he can do the rest $himself. Due to an unexpected change in the slaves' schedules, though, $he's all alone today. Poor <</if>> @@ -3100,9 +3101,9 @@ $He doesn't phrase it quite like that, of course. One evening, $assistantName breaks in on your <<if $assistant > 0>> - work, her $assistantAppearance avatar looking uncharacteristically somber. "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>," she says, "a group of tourists are giving <<EventNameLink $activeSlave>> a bad time." Before you can ask why the security drones haven't addressed the situation, she continues, "They're not abusing $him physically or anything. But, look." She + work, _hisA $assistantAppearance avatar looking uncharacteristically somber. "<<= properMaster()>>," _heA says, "a group of tourists are giving <<EventNameLink $activeSlave>> a bad time." Before you can ask why the security drones haven't addressed the situation, _heA continues, "They're not abusing $him physically or anything. But, look." _HeA <<else>> - work, announcing that a group of visitors to the arcology are being verbally abusive to <<EventNameLink $activeSlave>>. Before you can ask why it's bothering you with this, it continues, "An enslavement opportunity may exist," and + work, announcing that a group of visitors to the arcology are being verbally abusive to <<EventNameLink $activeSlave>>. Before you can ask why _heA's bothering you with this, _heA continues, "An enslavement opportunity may exist," and <</if>> brings up a video feed. <br><br> @@ -3783,9 +3784,9 @@ As another long week draws to a close, <<EventNameLink $activeSlave>> happens to One afternoon, $assistantName informs you $he that $he has a non-urgent matter that you might be interested in overseeing personally. <<if $assistant > 0>> - Her $assistantAppearance avatar looks unusually curious. "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, "a group of tourists have just entered the arcology. They seem strangely enthralled by <<EventNameLink $activeSlave>>." Before you can ask why she deemed this important enough news to draw your attention to, she continues, "They're not using $him or anything. Just look." She + _HisA $assistantAppearance avatar looks unusually curious. "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," _heA says, "a group of tourists have just entered the arcology. They seem strangely enthralled by <<EventNameLink $activeSlave>>." Before you can ask why _heA deemed this important enough news to draw your attention to, _heA continues, "They're not using $him or anything. Just look." _HeA <<else>> - It announces that a group of tourists have just entered the arcology, and seem unusually enthralled by <<EventNameLink $activeSlave>>. Before you can ask why it's bothering you with this, it continues, "A business opportunity may exist," and + It announces that a group of tourists have just entered the arcology, and seem unusually enthralled by <<EventNameLink $activeSlave>>. Before you can ask why _heA's bothering you with this, _heA continues, "A business opportunity may exist," and <</if>> brings up a video feed. <br><br> @@ -4455,7 +4456,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> chest <</if>> - planting your moistening pussy over the $girl's face. You lean forward, teasing $his twitching cock, as you grind against her face. As $he begins to moan with lust, you quickly bind the base of $his penis, denying her release. You grind your cunt into her face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his 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; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral; Your dominating display has left $him 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 $his face. As $he begins to moan with lust, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. Just undoing the binding is enough to set $him over the edge, coating $his <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in $his virile sperm. You turn around and order the exhausted $girl to clean $himself up and go back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral; Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5>> <</replace>> <<else>> @@ -4467,7 +4468,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> "What doe<<s>> that mean <<Master>>?" <</if>> - You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face down onto the couch<<if $activeSlave.belly >= 100000>> as best you can<</if>>. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect + You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face down onto the couch<<if $activeSlave.belly >= 100000>> as best you can<</if>>. $He <<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>> @@ -4509,7 +4510,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> flat <</if>> - butt sinking your cock deep into her <<if $activeSlave.anus == 0>>virgin<</if>> asspussy. You lean forward, running your hands across $his nipples<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> as you move to tease her stiff prick. Between your dick in $his ass and your hand on $his cock, $he rapidly approaches her peak. Quickly, you bind the base of $his penis, denying her release and eliciting a long moan from the pent-up $girl. You begin thrusting hard, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by filling her asspussy with your cum do you allow her release. Just undoing the binding is enough to set her over the edge, coating the cushions<<if $activeSlave.belly >= 5000>> and the bottom of her _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> in her virile sperm. You dismount and order the exhausted $girl to clean $himself and the couch up before going back to her assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral;Your dominating display has left her craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> + butt, sinking your cock deep into $his <<if $activeSlave.anus == 0>>virgin<</if>> asspussy. You lean forward, running your hands across $his nipples<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> as you move to tease $his stiff prick. Between your dick in $his ass and your hand on $his cock, $he rapidly approaches $his peak. Quickly, you bind the base of $his penis, denying $his release and eliciting a long moan from the pent-up $girl. You begin thrusting hard, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by filling $his asspussy with your cum do you allow $his release. Just undoing the binding is enough to set $him over the edge, coating the cushions<<if $activeSlave.belly >= 5000>> and the bottom of $his _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> in $his virile sperm. You dismount and order the exhausted $girl to clean $himself and the couch up before going back to $his assignment; $he @@.hotpink;complies meekly,@@ understanding that having a potent penis is meaningless in $his position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral;Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5>> <</replace>> <</if>> @@ -4518,13 +4519,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Let me teach you how to use it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he is just becoming a potent woman, and as such, $he will need to learn how to please her partners. + You tell $him that $he is just becoming a potent woman, and as such, $he will need to learn how to please $his partners. <<if !canTalk($activeSlave)>> $His expression shifts to confusion. <<else>> "What<<s>> that mean <<Master>>?" <</if>> - You quickly approach and catch $him, forcing her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up her fully erect + You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect <<if $activeSlave.dick == 1>> tiny dick. <<elseif $activeSlave.dick == 2>> @@ -4548,7 +4549,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied dick <</if>> - You push her back down as you straddle $his cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until $he delightfully penetrates you<<else>>yourself onto her needy prick<</if>>. You slowly ride her dick, instructing $him the proper way to thrust into you and how to adequately support your weight. Once $he gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning her into you. $He gingerly inserts $his cock<<if $activeSlave.belly >= 100000>> while you do your best to manage $his _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 $his 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 $him to pull out<</if>>. The poor $girl is so caught up in $his lust, $he can't stop thrusting. Before you can rectify this, $he 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 $his chest<</if>><</if>>. $He gingerly pulls $himself 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. + You push $him back down as you straddle $his cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until $he delightfully penetrates you<<else>>yourself onto $his needy prick<</if>>. You slowly ride $his dick, instructing $him the proper way to thrust into you and how to adequately support your weight. Once $he gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning $him into you. $He gingerly inserts $his cock<<if $activeSlave.belly >= 100000>> while you do your best to manage $his _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 $his thrusts<</if>>. As soon as you feel $his beginning to tense you <<if $PC.pregKnown == 1>>tell $his it's safe to cum in you, you're already pregnant<<else>>order $him to pull out<</if>>. The poor $girl is so caught up in $his lust, $he can't stop thrusting. Before you can rectify this, $he 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 $his chest<</if>><</if>>. $He gingerly pulls $himself 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; $his first time may be more fruitful than $he realizes. <</if>> @@ -4562,19 +4563,19 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <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 $him. $He gasps as $he feels it hug close to her struggling erection. You explain that $he 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. $He gasps as $he feels it hug close to $his struggling erection. You explain that $he has just become potent, and thus, will be restricted until you feel differently. <<if !canTalk($activeSlave)>> $He rubs a hand across $his caged dick. <<else>> "You don't want me to u<<s>>e my peni<<s>>, <<Master>>?" <</if>> - You bring $him over to the couch, set her on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around her chastity cage, torturing her dick and balls, but you only make it the center of attention once the poor over-aroused slave + You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity cage, torturing $his dick and balls, 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 $him. <<else>> begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me!" <</if>> - You snicker, but remind $him that $he has no say in her release. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> up $his ass and begin slowly fucking $him, making sure to stimulate her prostate. When $he finally orgasms <<if ($PC.dick == 0)>>her unabashed enjoyment<<else>>the strength of her spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to fuck, but you tell $him to get fucked. $He @@.hotpink;sides with your decision@@ and vows to be the one taking dick for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a father via anal cause $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>> + You snicker, but remind $him that $he has no say in $his release. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> up $his ass and begin slowly fucking $him, making sure to stimulate $his prostate. When $he finally orgasms <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to fuck, but you tell $him to get fucked. $He @@.hotpink;sides with your decision@@ and vows to be the one taking dick for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a father via anal cause $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5, $activeSlave.dickAccessory = "chastity">> <<= AnalVCheck()>> <</replace>> @@ -4611,7 +4612,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Embrace $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You gently grab her face and stare deeply into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't her fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your wife into a tight embrace, her coming back to you is more than enough a gift, $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you. + You gently grab $his face and stare deeply into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't $his fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your wife into a tight embrace -- $him coming back to you is more than enough of a gift; $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you. $He is @@.green;no longer mindbroken@@ and thanks to your care deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you. <<set $activeSlave.devotion = 100, $activeSlave.oldDevotion = 100, $activeSlave.trust = 100, $activeSlave.oldTrust = 100, $activeSlave.sexualQuirk = "romantic", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>> <<set $activeSlave.intelligence = $genePool[_ress].intelligence>> @@ -4627,15 +4628,15 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<replace "#result">> Getting head isn't going to cut it. You easily overpower the startled $desc and <<if canDoVaginal($activeSlave)>> - flip her onto her back. + flip $him onto $his back. <<if $PC.dick == 1>> - You viciously rape $him, forcing yourself deep into her before painting her insides with your seed. You leave the quivering $girl to leak fluids while you get comfortable again. + You viciously rape $him, forcing yourself deep into $his before painting $his insides with your seed. You leave the quivering $girl to leak fluids while you get comfortable again. <<if $activeSlave.vagina == 0>>$His once virgin pussy now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.vagina++>><</if>> <<else>> You don the biggest strap-on in reach and viciously rape $him, roughly groping $his breasts while you do. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his cunt. You shrug, not your problem. - <<if $activeSlave.vagina == 0>>$His once virgin pussy now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of her until it manages to do so with a wet thud.<<set $activeSlave.vagina++>><</if>> + <<if $activeSlave.vagina == 0>>$His once virgin pussy now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of $him until it manages to do so with a wet thud.<<set $activeSlave.vagina++>><</if>> <</if>> - $He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to her usual blank self when you awake. + $He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. <<set $activeSlave.vaginalCount++>> <<set $vaginalTotal++>> <<if canImpreg($activeSlave, $PC)>> @@ -4644,10 +4645,10 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif canDoAnal($activeSlave)>> force $his ass into the air. <<if $PC.dick == 1>> - You viciously assrape $him, cumming strongly into her spasming anus while making sure to save one last spurt to paint her back with. + You viciously assrape $him, cumming strongly into $his spasming anus while making sure to save one last spurt to paint $his back with. <<if $activeSlave.anus == 0>>$His once virgin hole now @@.lime;gapes slightly@@ after your enjoyment of it.<<set $activeSlave.anus++>><</if>> <<else>> - You don the biggest strap-on in reach and viciously assrape $him, forcing her face into the sheets with one hand while roughly groping $his breasts with the other. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his ass. You shrug, not your problem. + You don the biggest strap-on in reach and viciously assrape $him, forcing $his face into the sheets with one hand while roughly groping $his breasts with the other. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his ass. You shrug, not your problem. <<if $activeSlave.anus == 0>>$His once virgin hole now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of rear until it manages to do so with a soft thud.<<set $activeSlave.anus++>><</if>> <</if>> $He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. @@ -4657,17 +4658,17 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<set $activeSlave.analCount++>> <<set $analTotal++>> <<else>> - slam her head into your crotch. + slam $his head into your crotch. <<if $PC.dick == 1>> - You viciously face-fuck $him, cumming strongly down her gagging throat while making sure to save one last spurt to paint her face with. + You viciously face-fuck $him, cumming strongly down $his gagging throat while making sure to save one last spurt to paint $his face with. <<else>> - As $he recoils, you grab a strap-on and force it into $his mouth before fastening it to yourself. Once you are situated, you viciously face-fuck her until you are satisfied. As $he struggles to catch $his breath, you toggle the release and reveal that it is a squirt dildo, painting her face with fake semen. + As $he recoils, you grab a strap-on and force it into $his mouth before fastening it to yourself. Once you are situated, you viciously face-fuck $him until you are satisfied. As $he struggles to catch $his breath, you toggle the release and reveal that it is a squirt dildo, painting $his face with fake semen. <</if>> - $He falls backwards, where $he lays, unmoving. It seems her mind was still fragile, $he'll likely be back to her usual blank self when you awake. + $He falls backwards, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. <<set $activeSlave.oralCount++>> <<set $oralTotal++>> <</if>> - You pull the blanket back over yourself and nudge her off your bed; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling her used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to her first<</if>><</if>>. + You pull the blanket back over yourself and nudge $him off your bed; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>. <<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>> <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> <<if $activeSlave.anus < 3>> @@ -4699,11 +4700,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> <<set $activeSlave.kindness = -100>> <</replace>> -<</link>>//<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>This option will take her virginity<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>This option will take her anal virginity<</if>>// -<br><<link "Punish her for waking you">> +<</link>>//<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>This option will take $his virginity<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>This option will take $his anal virginity<</if>>// +<br><<link "Punish $him for waking you">> <<EventNameDelink $activeSlave>> <<replace "#result">> - In one swift motion you throw aside the cover and backhand the $desc for waking you. $He falls to your side, where $he lays, unmoving. It seems her mind was still fragile, $he'll likely be back to her usual blank self when you awake. You pull the blanket back over yourself; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling her used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to her first<</if>><</if>>. + In one swift motion you throw aside the cover and backhand the $desc for waking you. $He falls to your side, where $he lays, unmoving. It seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. You pull the blanket back over yourself; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling $his used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to $him first<</if>><</if>>. <<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>> <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> <<if $activeSlave.anus < 3>> @@ -4743,7 +4744,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Fight $him off as much as you can">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You know your own body well, at least enough to be able to make it as difficult as possible for $him to use you. If $he were to loosen her grip by a little, you'd be quick to shake $him off, but the position $he's got you in doesn't leave much room to fight back. When you start to tire, $he pushes you to the wall and starts rubbing $his + You know your own body well, at least enough to be able to make it as difficult as possible for $him to use you. If $he were to loosen $his grip by a little, you'd be quick to shake $him off, but the position $he's got you in doesn't leave much room to fight back. When you start to tire, $he pushes you to the wall and starts rubbing $his <<if $activeSlave.dick == 1>> pathetic <<elseif $activeSlave.dick == 2>> @@ -4766,14 +4767,14 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied <</if>> - dick on your lower body, thrusting blindly around your belly, before lodging $himself between your thighs. You have a hard time fighting against $him in your position, but you're not about to let $him dominate you either. You continue trying to shake $him off, making sure at the same time that your movements are as aggressive as possible to try and distract $him with pain or pleasure. You feel her grip loosen as $his body tenses before pending orgasm, so you strongly push into $him, knocking $him off balance and to the floor. $He spills $his seed all over $himself and you as you wrestle $him into a chokehold. Now that you have $him restrained, it's time $he learned $his place. + dick on your lower body, thrusting blindly around your belly, before lodging $himself between your thighs. You have a hard time fighting against $his in your position, but you're not about to let $him dominate you either. You continue trying to shake $him off, making sure at the same time that your movements are as aggressive as possible to try and distract $him with pain or pleasure. You feel $his grip loosen as $his body tenses before pending orgasm, so you strongly push into $him, knocking $him off balance and to the floor. $He spills $his seed all over $himself and you as you wrestle $him into a chokehold. Now that you have $him restrained, it's time $he learned $his place. <<set $mutinery = 2>> <br><br><span id="result2"> <<if $mutinery != 1>> <br><<link "Lock $his dick in chastity">> <<replace "#result2">> - You simply clamp a chastity cage onto her limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<if $PC.customTitle != 0>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. + You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. <<set $activeSlave.trust += 10, $activeSlave.dickAccessory = "chastity">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>> <</replace>> @@ -4796,7 +4797,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> //Will cost <<print cashFormat($surgeryCost)>>// <br><<link "Castrate $him">> <<replace "#result2">> - As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ <<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>> <<set $cash -= $surgeryCost>> @@ -4805,7 +4806,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.vagina == -2>> <br><<link "Surgically alter $his gender">> <<replace "#result2">> - You ask $him if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into her virgin pussy. You use her until you are satisfied and toss $him to the floor to think about her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -4813,9 +4814,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</replace>> <</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>// <<else>> - <br><<link "Remove her male genitalia">> + <br><<link "Remove $his male genitalia">> <<replace "#result2">> - You ask $him if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> <<set $cash -= ($surgeryCost*2)>> @@ -4824,7 +4825,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> <br><<link "Deny $him from ever having satisfying sex again">> <<replace "#result2">> - You ask $him if $he enjoyed her last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As her arousal grows, $he realizes you not only took her dick, but her prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch her squirm in sexual frustration. This will be her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0>> <<= AnalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -4873,7 +4874,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $mutinery != 1>> <br><<link "Lock $his dick in chastity">> <<replace "#result2">> - You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<if $PC.customTitle != 0>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. + You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. <<set $activeSlave.trust += 10, $activeSlave.dickAccessory = "chastity">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>> <</replace>> @@ -4938,7 +4939,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Fake playing along">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You start removing your top and putting on a show of seducing your slave, dropping to your knees while looking doe eyed at $him. By sucking $him off, you'll probably get $him to lower their guard enough to get the upper hand. You take $his + You start removing your top and putting on a show of seducing your slave, dropping to your knees while looking doe-eyed at $him. By sucking $him off, you'll probably get $him to lower $his guard enough to get the upper hand. You take $his <<if $activeSlave.dick == 1>> pathetic <<elseif $activeSlave.dick == 2>> @@ -4961,14 +4962,14 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied <</if>> - dick inside your<<if $PC.career == "escort" || $PC.career == "servant">> expert<</if>> mouth. You diligently suck until you feel $him begin to tense up; this is your chance. You clamp down on $his cock while simultaneously punching $him in the balls. $He howls in pain, until you headbutt $him in the stomach and knock the wind out of $him. You quickly pull $him into an arm lock and force $him over your desk. Now that you have $him restrained, it's time $he learned $his place; after you've gotten the taste of slut out of your mouth, that is. + dick inside your<<if $PC.career == "escort" || $PC.career == "servant">> expert<</if>> mouth. You diligently suck until you feel $him begin to tense up; this is your chance. You clamp down on $his cock while simultaneously punching $him in the balls. $He howls in pain, until you headbutt $him in the stomach and knock the wind out of $him. You quickly pull $him into an arm lock and force $him over your desk. Now that you have $him restrained, it's time $he learned $his place; after you've gotten the taste of the slut out of your mouth, that is. <<set $mutinery = 2>> <br><br><span id="result2"> <<if $mutinery != 1>> <br><<link "Lock $his dick in chastity">> <<replace "#result2">> - You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. + You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. <<set $activeSlave.trust += 10, $activeSlave.dickAccessory = "chastity">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>> <</replace>> @@ -5000,7 +5001,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.vagina == -2>> <br><<link "Surgically alter $his gender">> <<replace "#result2">> - You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $his against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -5038,7 +5039,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $mutinery != 1>> <br><<link "Lock $his dick in chastity">> <<replace "#result2">> - You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. + You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves. <<set $activeSlave.trust += 10, $activeSlave.dickAccessory = "chastity">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>> <</replace>> @@ -5070,7 +5071,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.vagina == -2>> <br><<link "Surgically alter $his gender">> <<replace "#result2">> - You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $his against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -5106,7 +5107,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $arcologies[0].FSPhysicalIdealist != "unset">> - You struggle underneath $his grip and manage to wriggle your arms free. You grab the amorous bull and effortlessly flip $him off of you. $He might be strong, but you are a chiseled goddess. You <<if $PC.dick == 0>>grab your biggest strap-on<<else>>stroke your growing erection<</if>> as $he struggles to right $himself, catching $his hips as $he tries to escape. You show no mercy as you force yourself into $his <<if $activeSlave.anus == 0>>virgin<</if>> ass and viciously fuck $him like $he intended to do to you. You savor the sight of your every thrust against $his prostate forcing spurts of precum out $his gigantic, throbbing erection. You pick up the pace as $he climaxes, soaking the sheets beneath $him; $he's not getting out of this until you are satisfied. By the end of things, the master suite reeks of fresh cum and $activeSlave.slaveName's twitching body is the center piece of $his semen puddle. The sheets will definitely need a changing, you note, as $his semi-erect cock twitches and a thick rope of jism sprays forth. + You struggle underneath $his grip and manage to wriggle your arms free. You grab the amorous bull and effortless flip $his off of you. $He might be strong, but you are a chiseled goddess. You <<if $PC.dick == 0>>grab your biggest strap-on<<else>>stroke your growing erection<</if>> as $he struggles to right $himself, catching $his hips as $he tries to escape. You show no mercy as you force yourself into $his <<if $activeSlave.anus == 0>>virgin<</if>> ass and viciously fuck $him like $he intended to do to you. You savor the sight of your every thrust against $his prostate forcing spurts of precum out $his gigantic, throbbing erection. You pick up the pace as $he climaxes, soaking the sheets beneath $him; $he's not getting out of this until you are satisfied. By the end of things, the master suite reeks of fresh cum and $activeSlave.slaveName's twitching body is the center piece of $his semen puddle. The sheets will definitely need a changing, you note, as $his semi-erect cock twitches and a thick rope of jism sprays forth. <<= AnalVCheck(5)>> <<else>> You struggle underneath $his grip and manage to wriggle your arms free. You push at the amorous bull and attempt to lift the heavy $girl off you. $activeSlave.slaveName takes this poorly and rams $his gigantic dick straight into your vagina and through your cervix. You pass out from the pain. @@ -5117,7 +5118,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> <</replace>> <</link>><<if ($activeSlave.anus == 0) && $arcologies[0].FSPhysicalIdealist != "unset">> //This option will take anal virginity//<</if>> -<br><<link "Wait for an chance to escape">> +<br><<link "Wait for a chance to escape">> <<EventNameDelink $activeSlave>> <<replace "#result">> $He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. $He cums so hard $he nearly blacks out; that will be your best chance to escape $him. You question your choice as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; should $he force through it, you may not be able to throw $him off. With a loud grunt, $he does just that. $He may be deep seated now, but you aren't going to give up. You feel $him tense up; now's your chance! As $he climaxes, you slip a leg around $his side and push $him with all your might. $He flops over, pulling out as $he spurts $his massive load and nailing you right in the face. You spit the jism out of your mouth and quickly restrain the dribbling bull. @@ -5199,7 +5200,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> $His eyes begin to water as $he struggles not to sob but $he quickly loses composure and hastily flees your gaze, likely to the cafeteria. <</if>> - $He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $hers.@@ Even more so when $he realizes the resuliting stress eating only @@.lime;filled her out more.@@ + $He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $hers.@@ Even more so when $he realizes the resulting stress eating only @@.lime;filled $him out more.@@ <<set $activeSlave.devotion += 7, $activeSlave.trust -= 5, $activeSlave.weight += 5>> <<elseif $activeSlave.behavioralFlaw == "anorexic">> <<if canTalk($activeSlave)>> @@ -5460,7 +5461,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del That's all $he needed to <<if canHear($activeSlave)>>hear<<else>>know<</if>>. @@.hotpink;All's well and good@@ if <<= WrittenMaster()>> says so. <<set $activeSlave.devotion += 3>> <<else>> - $He nods in acceptance and silently heads on her way. $His thoughts of your indifference @@.gold;written across her face.@@ + $He nods in acceptance and silently heads on $his way. $His thoughts of your indifference @@.gold;written across $his face.@@ <<set $activeSlave.trust -= 5>> <</if>> <</replace>> @@ -5472,7 +5473,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Apply lotion liberally">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You reach down to take $his hands, and pull her up to stand in front of you before crushing $him in a frankly sexual embrace. Taking charge of the lotion, you apply it to your hands and start with her face. $He submits to your close attention, even closing $his eyes so you can get her eyelids, only a slight quickening of breath betraying her intensity of feeling at having you do this. You take your time, which turns into exquisite sexual torture when you finally reach her <<if $activeSlave.boobs > 2000>>incredible breasts, which stand out so far in front of $him that you have to reach around their mass rather inelegantly<<elseif $activeSlave.boobs > 800>>heavy breasts<<else>>lovely chest<</if>>. When your warm, moist hands <<if $activeSlave.nipples != "fuckable">>rub<<else>>slip into<</if>> her<<if $activeSlave.lactation > 0>> milky<</if>> nipples, $he cannot suppress a moan. You take pity, take $his hands, guide them to the lotion bottle, and coat them generously. Then, you place $his hands in yours and move them to between $his legs, manipulating them like a music teacher guiding a pupil's hands on an instrument, guiding $him in gentle masturbation. You go back to applying lotion to the rest of $his body, enjoying the slave's intense pleasure. When you've covered every inch of $him, you hug her close, returning your hands to $his nipples <<if $PC.dick == 1>>and pushing your rock-hard prick in between her well-lubricated thighs<<if $PC.vagina == 1>>, <</if>><</if>><<if $PC.vagina == 1>>after guiding one of $hers around behind $him to see to your pussy<</if>>. $He quickens her pace<<if canSee($activeSlave)>> and raises her gaze to the mirror, seeing her magnificently nude, $activeSlave.skin skin flushed with arousal<<else>>, feeling her magnificently nude, $activeSlave.skin skin flush with arousal<</if>> as her + You reach down to take $his hands, and pull $him up to stand in front of you before crushing $him in a frankly sexual embrace. Taking charge of the lotion, you apply it to your hands and start with $his face. $He submits to your close attention, even closing $his eyes so you can get $his eyelids, only a slight quickening of breath betraying $his intensity of feeling at having you do this. You take your time, which turns into exquisite sexual torture when you finally reach $his <<if $activeSlave.boobs > 2000>>incredible breasts, which stand out so far in front of $him that you have to reach around their mass rather inelegantly<<elseif $activeSlave.boobs > 800>>heavy breasts<<else>>lovely chest<</if>>. When your warm, moist hands <<if $activeSlave.nipples != "fuckable">>rub<<else>>slip into<</if>> $his<<if $activeSlave.lactation > 0>> milky<</if>> nipples, $he cannot suppress a moan. You take pity, take $his hands, guide them to the lotion bottle, and coat them generously. Then, you place $his hands in yours and move them to between $his legs, manipulating them like a music teacher guiding a pupil's hands on an instrument, guiding $him in gentle masturbation. You go back to applying lotion to the rest of $his body, enjoying the slave's intense pleasure. When you've covered every inch of $him, you hug $him close, returning your hands to $his nipples <<if $PC.dick == 1>>and pushing your rock-hard prick in between $his well-lubricated thighs<<if $PC.vagina == 1>>, <</if>><</if>><<if $PC.vagina == 1>>after guiding one of $hers around behind $him to see to your pussy<</if>>. $He quickens $his pace<<if canSee($activeSlave)>> and raises $his gaze to the mirror, seeing $his magnificently nude, $activeSlave.skin skin flushed with arousal<<else>>, feeling $his magnificently nude, $activeSlave.skin skin flush with arousal<</if>> as $his <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> <<if canDoAnal($activeSlave)>> eager fingering of $his anus turn frantic. @@ -5488,7 +5489,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> frantic taint rubbing starts to pay off. <</if>> - $He gasps your name with her orgasm, and then turns and @@.mediumaquamarine;thanks you@@ prettily. + $He gasps your name with $his orgasm, and then turns and @@.mediumaquamarine;thanks you@@ prettily. <<set $activeSlave.trust += 5>> <</replace>> <</link>> @@ -5496,9 +5497,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Fist $his ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him to grab her ankles. $He giggles and<<if $activeSlave.belly >= 5000>> carefully<</if>> complies<<if $activeSlave.belly >= 120000>> to the best of her ability<</if>>, relaxing her <<if $activeSlave.anus > 2>>asspussy<<elseif $activeSlave.anus == 2>>asshole<<else>>little ass<</if>> in the expectation of <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>, but starts with surprise when $he feels two warm, lubricated fingers slide into $his rectum. + You tell $him to grab $his ankles. $He giggles and<<if $activeSlave.belly >= 5000>> carefully<</if>> complies<<if $activeSlave.belly >= 120000>> to the best of $his ability<</if>>, relaxing $his <<if $activeSlave.anus > 2>>asspussy<<elseif $activeSlave.anus == 2>>asshole<<else>>little ass<</if>> in the expectation of <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>, but starts with surprise when $he feels two warm, lubricated fingers slide into $his rectum. <<if $activeSlave.anus > 2>> - $He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into her without much trouble, and $he lets out a huge sigh. When you start to fuck $him, though, $he collapses to $his knees, + $He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $him, though, $he collapses to $his knees, <<if ($activeSlave.fetish == "buttslut")>> <<if !canTalk($activeSlave)>> whining and begging nonverbally @@ -5510,7 +5511,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - rub her taint. + rub $his taint. <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> rub $himself. <<elseif $activeSlave.dick > 0>> @@ -5518,11 +5519,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif canDoVaginal($activeSlave)>> jill off. <<else>> - rub her taint. + rub $his taint. <</if>> - $He manages to climax promptly, her overstimulated sphincter helping, no doubt. $He slumps to the ground when you withdraw your hand, gasping, but you haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's already masturbating again. + $He manages to climax promptly, $his overstimulated sphincter helping, no doubt. $He slumps to the ground when you withdraw your hand, gasping, but you haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's already masturbating again. <<elseif $activeSlave.anus == 2>> - $He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and does her best to relax. The wide part of your hand, at the knuckles, squeezes into her after some effort on your part and squealing on her part. When you withdraw it and press it back in, slowly starting to fist fuck $his ass, though, $he collapses to $his knees, + $He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and does $his best to relax. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. When you withdraw it and press it back in, slowly starting to fist fuck $his ass, though, $he collapses to $his knees, <<if ($activeSlave.fetish == "buttslut")>> <<if !canTalk($activeSlave)>> crying @@ -5534,7 +5535,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - rub her taint. + rub $his taint. <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> rub $himself. <<elseif $activeSlave.dick > 0>> @@ -5542,9 +5543,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif canDoVaginal($activeSlave)>> jill off. <<else>> - rub her taint. + rub $his taint. <</if>> - $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, but you haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and weeping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's tentatively masturbating again. + $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, but you haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and weeping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's tentatively masturbating again. <<else>> $He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses to $his knees, <<if ($activeSlave.fetish == "buttslut")>> @@ -5558,7 +5559,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - rub her taint. + rub $his taint. <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> rub $himself. <<elseif $activeSlave.dick > 0>> @@ -5566,9 +5567,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif canDoVaginal($activeSlave)>> jill off. <<else>> - rub her taint. + rub $his taint. <</if>> - As $he works her sphincter relaxes bit by bit, and you advance your fist up $his butt. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, but you haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly in confusion and disarray, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, and by the time you finish $he hasn't yet worked up the courage to touch her @@.lime;newly widened backdoor.@@ + As $he works $his sphincter relaxes bit by bit, and you advance your fist up $his butt. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, but you haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly in confusion and disarray, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, and by the time you finish $he hasn't yet worked up the courage to touch $his @@.lime;newly widened backdoor.@@ <<set $activeSlave.anus += 1>> <</if>> <<set $activeSlave.devotion += 5>> @@ -5579,11 +5580,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Fist $his pussy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You slide up behind $him and run a possessive hand down<<if $activeSlave.belly >= 1500>> her swollen midriff down<</if>> to finger her pussylips. $He compliantly cocks $his hips backward for you, and is surprised to find a couple of warm, lubricated fingers rather than <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> sliding into her ready cunt. + You slide up behind $him and run a possessive hand down<<if $activeSlave.belly >= 1500>> $his swollen midriff down<</if>> to finger $his pussylips. $He compliantly cocks $his hips backward for you, and is surprised to find a couple of warm, lubricated fingers rather than <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> sliding into $his ready cunt. <<if $activeSlave.vagina > 2>> - $He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into her without much trouble, and $he lets out a huge sigh. When you start to fuck her huge cunt with your hand, though, $he collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, whining and begging nonverbally. You kick the lotion towards $his hand; $he gets the message and starts to frantically + $He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into $him without much trouble, and $he lets out a huge sigh. When you start to fuck $his huge cunt with your hand, though, $he collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, whining and begging nonverbally. You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - rub her taint. + rub $his taint. <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> rub $himself. <<elseif $activeSlave.dick > 0>> @@ -5591,14 +5592,14 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif canDoVaginal($activeSlave)>> rub $his clit. <<else>> - rub her taint. + rub $his taint. <</if>> - $He manages to climax promptly, her big vagina squeezing your hand strongly. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into her open, pink-walled channel. You haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's replaced your hand with her own. + $He manages to climax promptly, $his big vagina squeezing your hand strongly. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his open, pink-walled channel. You haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's replaced your hand with $his own. <<set $activeSlave.devotion += 5>> <<elseif $activeSlave.vagina == 2>> - $He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and hurriedly gets down <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>on $his knees<</if>> to present a more comfortable angle. The wide part of your hand, at the knuckles, squeezes into her after some effort on your part and squealing on her part. You kick the lotion towards $his hand; $he gets the message and starts to frantically + $He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and hurriedly gets down <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>on $his knees<</if>> to present a more comfortable angle. The wide part of your hand, at the knuckles, squeezes into $him after some effort on your part and squealing on $his part. You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - rub her taint + rub $his taint <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> rub $himself <<elseif $activeSlave.dick > 0>> @@ -5606,14 +5607,14 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif canDoVaginal($activeSlave)>> rub $his clit <<else>> - rub her taint + rub $his taint <</if>> - as you slowly fist fuck $him. $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into her now-gaping, pink-walled channel. You haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and gasping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's masturbating again. + as you slowly fist fuck $him. $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $him around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and gasping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's masturbating again. <<set $activeSlave.devotion += 5>> <<else>> $He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, begging you to be gentle. You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - rub her taint, + rub $his taint, <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> rub $himself, <<elseif $activeSlave.dick > 0>> @@ -5621,9 +5622,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif canDoVaginal($activeSlave)>> rub $his clit, <<else>> - rub her taint, + rub $his taint, <</if>> - hoping to relax a little. As $he works $his pussy relaxes bit by bit, and you advance your fist into her womanhood. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, the collapse giving you a good view into her now-gaping, pink-walled channel. You haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly with overstimulation, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's gingerly massaging her @@.lime;newly loosened cunt.@@ + hoping to relax a little. As $he works $his pussy relaxes bit by bit, and you advance your fist into $his womanhood. $He screams in surprise and relief when your knuckles finally make it in, and achieves a crying orgasm shortly thereafter. $He slumps to the ground when you withdraw your hand, moaning incoherently, the collapse giving you a good view into $his now-gaping, pink-walled channel. You haul $his around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ crying quietly with overstimulation, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's gingerly massaging $his @@.lime;newly loosened cunt.@@ <<set $activeSlave.devotion += 5, $activeSlave.vagina += 1>> <</if>> <</replace>> @@ -5636,15 +5637,15 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<EventNameDelink $activeSlave>> <<replace "#result">> You tell $him to get ready to go into a handstand. $He looks puzzled, but anticipatory, and hurries to comply. - <<if $activeSlave.boobs > 2000>> $He has to be careful doing it, since her huge boobs come down and almost smother the poor slave once $he's inverted.<</if>> + <<if $activeSlave.boobs > 2000>> $He has to be careful doing it, since $his huge boobs come down and almost smother the poor slave once $he's inverted.<</if>> <<if $activeSlave.belly >= 300000>> $His belly is so hugely distended, $he'll practically require your assistance to stay inverted. <<elseif $activeSlave.weight > 130>> $His belly is so fat that $he has to take precautions to handle the massive shift in its mass when $he inverts. <</if>> - You get up from behind your desk,<<if $PC.dick == 0>> don a strap-on,<</if>> and stand behind $him. You grab $him by the ankles, and $he giggles self-consciously, aware that in this position, her <<if $activeSlave.vagina > -1>>holes are on display pretty much as openly as they can possibly be<<else>>butthole is on display pretty much as openly as it can possibly be<</if>>. $He groans with soreness as you lift $him by $his legs, pulling her upward until $he's in a full handstand, $his knees clasping you on either side to steady $him. Carefully, you maneuver your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> to line it up with her <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. Realizing what you intend, $he arches her back and cocks $his hips,<<if $activeSlave.belly >= 5000>> pushing her already bulging stomach even further out from $him, all the while<</if>> grunting and shivering as her sore muscles stretch to support $him in the necessary gymnastic pose to angle her hole just right. + You get up from behind your desk,<<if $PC.dick == 0>> don a strap-on,<</if>> and stand behind $him. You grab $him by the ankles, and $he giggles self-consciously, aware that in this position, $his <<if $activeSlave.vagina > -1>>holes are on display pretty much as openly as they can possibly be<<else>>butthole is on display pretty much as openly as it can possibly be<</if>>. $He groans with soreness as you lift $him by $his legs, pulling $him upward until $he's in a full handstand, $his knees clasping you on either side to steady $him. Carefully, you maneuver your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> to line it up with $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. Realizing what you intend, $he arches $his back and cocks $his hips,<<if $activeSlave.belly >= 5000>> pushing $his already bulging stomach even further out from $him, all the while<</if>> grunting and shivering as $his sore muscles stretch to support $him in the necessary gymnastic pose to angle $his hole just right. <br><br> - With the combined pain and pleasure of the stretch already overstimulating $him, $he gives a huge sobbing gasp as you enter $him. You move your hands to her + With the combined pain and pleasure of the stretch already overstimulating $him, $he gives a huge sobbing gasp as you enter $him. You move your hands to $his <<if $activeSlave.weight > 95>> soft <<elseif $activeSlave.weight > 10>> @@ -5654,7 +5655,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> trim <</if>> - hips one at a time, and then begin to slowly move her inverted body towards you and away from you, impaling $him. $His whole body shakes with pleasure and exertion, and when $he orgasms, you have to support $him to stop her crashing to the ground<<if $activeSlave.belly >= 300000>>, a struggle thanks to her excessive weight<</if>>. You let her down onto the floor slowly<<if $activeSlave.vagina > -1>>, but tell $him that after a short break, $he's to get back up so you can see to $his anus<</if>>. $He's breathing very hard and still coming down off a terrific head rush, so $he just @@.hotpink;blows you a kiss.@@ + hips one at a time, and then begin to slowly move $his inverted body towards you and away from you, impaling $him. $His whole body shakes with pleasure and exertion, and when $he orgasms, you have to support $him to stop $him crashing to the ground<<if $activeSlave.belly >= 300000>>, a struggle thanks to $his excessive weight<</if>>. You let $him down onto the floor slowly<<if $activeSlave.vagina > -1>>, but tell $him that after a short break, $he's to get back up so you can see to $his anus<</if>>. $He's breathing very hard and still coming down off a terrific head rush, so $he just @@.hotpink;blows you a kiss.@@ <<set $activeSlave.devotion += 4>> <<= BothVCheck()>> <</replace>> @@ -5672,41 +5673,41 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> and loudly tap the floor in front of you. <</if>> - $He hurries over and gets down on the floor with you, conforming to your manual guidance that $he should sit with her back to you. You place your hands on either side of her neck, run them capably down her spine, and then back up to explore her shoulders. $He gasps as $he realizes that you intend to give $him a massage, @@.mediumaquamarine;impressed@@ and a little perturbed that you would do this for $him. Indeed, it's unusual for a slaveowner to do something like this, but it's easily justifiable as hands-on maintenance of your property. You tell her so as your fingers begin to probe her muscles in more detail, eliciting a shiver<<if canTalk($activeSlave)>>.<<else>> and a tiny "Ye<<s>>, <<Master>>."<</if>> $He begins to breathe rather hard, and you notice + $He hurries over and gets down on the floor with you, conforming to your manual guidance that $he should sit with $his back to you. You place your hands on either side of $his neck, run them capably down $his spine, and then back up to explore $his shoulders. $He gasps as $he realizes that you intend to give $him a massage, @@.mediumaquamarine;impressed@@ and a little perturbed that you would do this for $him. Indeed, it's unusual for a slaveowner to do something like this, but it's easily justifiable as hands-on maintenance of your property. You tell $him so as your fingers begin to probe $his muscles in more detail, eliciting a shiver<<if canTalk($activeSlave)>>.<<else>> and a tiny "Ye<<s>>, <<Master>>."<</if>> $He begins to breathe rather hard, and you notice <<if $activeSlave.belly >= 120000>> - her starting to shift $his hips uncomfortably. $His _belly belly blocks any view of her crotch in the reflective wall opposite $him, but you can smell the precum beginning to flow under the crotch hiding orb. + $him starting to shift $his hips uncomfortably. $His _belly belly blocks any view of $his crotch in the reflective wall opposite $him, but you can smell the precum beginning to flow under the crotch hiding orb. <<elseif ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - her starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as caged as ever. + $him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as caged as ever. <<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - her starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as limp as ever. + $him starting to shift $his hips uncomfortably, though of course you see in the reflective wall opposite $him that $his cock remains as limp as ever. <<elseif ($activeSlave.dick > 0)>> - her starting to shift $his hips uncomfortably. You see in the reflective wall opposite $him that $his cock is almost agonizingly hard. + $him starting to shift $his hips uncomfortably. You see in the reflective wall opposite $him that $his cock is almost agonizingly hard. <<elseif $activeSlave.vagina == -1>> - her starting to shift $his ass uncomfortably. $He must really want it, and of course, $he knows that $his butt is her main source of stimulation now. + $him starting to shift $his ass uncomfortably. $He must really want it, and of course, $he knows that $his butt is $his main source of stimulation now. <<else>> the wonderful aroma of female arousal beginning to permeate the office as $he starts to shift $his hips uncomfortably. <</if>> <<set $activeSlave.trust += 2>> <br><br><span id="result2"> - <<link "Tell her $he's free to masturbate">> + <<link "Tell $him $he's free to masturbate">> <<replace "#result2">> You lean forward until your lips graze one of $his ears, and tell $him that $he can touch $himself if $he wants. <<if !canTalk($activeSlave)>> - $He raises a shaky hand to gesture @@.mediumaquamarine;her thanks@@ as the other + $He raises a shaky hand to gesture @@.mediumaquamarine;$his thanks@@ as the other <<else>> "@@.mediumaquamarine;Thank you@@ <<Master>>!" $he squeaks as a hand <</if>> dives for $his crotch. $He <<if ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>> - rubs her perineum and anus + rubs $his perineum and anus <<elseif ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> - rubs her perineum + rubs $his perineum <<elseif ($activeSlave.vagina > -1)>> shlicks $himself <<elseif ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - rubs her perineum and anus + rubs $his perineum and anus <<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - rubs her soft bitchclit + rubs $his soft bitchclit <<else>> jacks off <</if>> @@ -5717,7 +5718,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.anus > 0>> <br><<link "Fuck $him">> <<replace "#result2">> - You gently push her shoulders forward. $He moans as the forward lean stretches her hip flexors, and then breathes deeply with relief as you pull $his legs back and out of their crossed position. The rush of a completed stretch crashes into $him, and $he relaxes completely. This change of position leaves her with her <<if $activeSlave.butt > 6>>massive ass<<elseif $activeSlave.butt > 3>>big butt<<else>>rear<</if>> pointed right at you, and $he knows what's coming next. $His <<if $activeSlave.anus > 2>>loose butthole relaxes completely into a gape that positively begs to be penetrated<<elseif $activeSlave.anus > 1>>relaxed anus opens into a slight gape that positively begs to be penetrated<<else>>tight anus relaxes slightly, her rosebud begging to be fucked<</if>>. You rise partway to kneel behind $him, <<if $PC.dick == 0>>sliding fingers inside the slave's ass and humping your pussy against the heel of that hand<<else>>using a hand to guide your member inside the slave's ass<<if $PC.vagina == 1>>, not without teasing your own pussylips a bit<</if>><</if>>. $He gasps when your other hand grabs one of $his shoulders and continues the massage. You quickly find that working out a knot in her muscles produces reflexive reactions across her whole body, notably including her anal sphincter. After you've driven her into a state of @@.hotpink;mindless satiation@@ and climaxed yourself, you let her slump to the floor and curl up around her sweaty body. + You gently push $his shoulders forward. $He moans as the forward lean stretches $his hip flexors, and then breathes deeply with relief as you pull $his legs back and out of their crossed position. The rush of a completed stretch crashes into $him, and $he relaxes completely. This change of position leaves $him with $his <<if $activeSlave.butt > 6>>massive ass<<elseif $activeSlave.butt > 3>>big butt<<else>>rear<</if>> pointed right at you, and $he knows what's coming next. $His <<if $activeSlave.anus > 2>>loose butthole relaxes completely into a gape that positively begs to be penetrated<<elseif $activeSlave.anus > 1>>relaxed anus opens into a slight gape that positively begs to be penetrated<<else>>tight anus relaxes slightly, $his rosebud begging to be fucked<</if>>. You rise partway to kneel behind $him, <<if $PC.dick == 0>>sliding fingers inside the slave's ass and humping your pussy against the heel of that hand<<else>>using a hand to guide your member inside the slave's ass<<if $PC.vagina == 1>>, not without teasing your own pussylips a bit<</if>><</if>>. $He gasps when your other hand grabs one of $his shoulders and continues the massage. You quickly find that working out a knot in $his muscles produces reflexive reactions across $his whole body, notably including $his anal sphincter. After you've driven $him into a state of @@.hotpink;mindless satiation@@ and climaxed yourself, you let $him slump to the floor and curl up around $his sweaty body. <<set $activeSlave.devotion += 2>> <<= AnalVCheck()>> <</replace>> @@ -5738,7 +5739,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif _meetingBonus < 1000>> <<set _meetingBonus = 1000>> <</if>> - You finish the motion and get on with your day. $He burrows into the warm place on the bed where your body lay, which is actually an excellent sign of her mental state. It suggests that her dreaming mind is quite comfortable with your presence and even smell. You make the meeting, consoling yourself with the thought that you're hardly lacking for opportunities to <<if $PC.dick == 1>>stick your dick in<<else>>have sex with<</if>> $activeSlave.slaveName. The business opportunity turns out to be @@.yellowgreen;quite profitable;@@ you're glad you didn't pass it up. + You finish the motion and get on with your day. $He burrows into the warm place on the bed where your body lay, which is actually an excellent sign of $his mental state. It suggests that $his dreaming mind is quite comfortable with your presence and even smell. You make the meeting, consoling yourself with the thought that you're hardly lacking for opportunities to <<if $PC.dick == 1>>stick your dick in<<else>>have sex with<</if>> $activeSlave.slaveName. The business opportunity turns out to be @@.yellowgreen;quite profitable;@@ you're glad you didn't pass it up. <<set $cash += _meetingBonus>> <</replace>> <</link>> @@ -5761,7 +5762,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> kid <</if>> - draped across you. The meeting is long enough that your interlocutors eventually realize that something unusual is going on, especially once $he wakes up and starts sleepily <<if $PC.dick == 1>>sucking your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>, out of frame. They're @@.red;slightly annoyed,@@ since having sex during meetings is still considered a minor faux pas, but you @@.yellowgreen;close the deal,@@ and $activeSlave.slaveName is @@.hotpink;very pleased@@ that you would rearrange your affairs to make time for <<if $PC.dick == 1>>one of her blowjobs<<else>>oral sex with her<</if>>. + draped across you. The meeting is long enough that your interlocutors eventually realize that something unusual is going on, especially once $he wakes up and starts sleepily <<if $PC.dick == 1>>sucking your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>, out of frame. They're @@.red;slightly annoyed,@@ since having sex during meetings is still considered a minor faux pas, but you @@.yellowgreen;close the deal,@@ and $activeSlave.slaveName is @@.hotpink;very pleased@@ that you would rearrange your affairs to make time for <<if $PC.dick == 1>>one of $his blowjobs<<else>>oral sex with $him<</if>>. <<set $activeSlave.oralCount++, $oralTotal++>> <<set $cash += _meetingBonus>> <<set $rep -= 50>> @@ -5781,47 +5782,47 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> kid <</if>> - cuddled up beside you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in $his $activeSlave.eyeColor eyes as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on her face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>> + cuddled up beside you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in $his $activeSlave.eyeColor eyes as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on $his face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>> <br><br> - Since you're awake, $he rolls onto her face and then further, to place her back and <<if $activeSlave.butt > 5>>massive ass<<elseif $activeSlave.butt > 2>>healthy rear<<else>>butt<</if>> against you, making sure to drag her $activeSlave.nipples nipples against you the whole way. You accept the invitation and spoon $him, <<if $activeSlave.height >= 185>>your bodies lining up well, since $he's as tall as you are<<elseif $activeSlave.height >= 160>>$his body fitting neatly within the embrace of your larger frame<<else>>her small body fitting entirely within your embrace<</if>>. $His <<if $activeSlave.muscles > 30>>muscles<<else>>softness<</if>> and warmth awaken your desire, and $he feels <<if $PC.dick == 1>>your stiffening cock beginning to press against <<if $activeSlave.amp == 1>>her perineum. $He shifts to slide $himself along its shaft<<if $PC.vagina == 1>> and down to where your pussy begins<</if>><<else>>the place between her thighs. $He shifts to let your dick slide between them, and reaches down to massage its head<</if>><<else>>heat building against $his butt. <<if $activeSlave.amp == 1>>$He does her best to grind against you, since $he can't caress you without hands<<else>>$He snakes a hand behind $himself to caress your womanhood, and begins to gently masturbate with the other<</if>><</if>>. + Since you're awake, $he rolls onto $his face and then further, to place $his back and <<if $activeSlave.butt > 5>>massive ass<<elseif $activeSlave.butt > 2>>healthy rear<<else>>butt<</if>> against you, making sure to drag $his $activeSlave.nipples nipples against you the whole way. You accept the invitation and spoon $him, <<if $activeSlave.height >= 185>>your bodies lining up well, since $he's as tall as you are<<elseif $activeSlave.height >= 160>>$his body fitting neatly within the embrace of your larger frame<<else>>$his small body fitting entirely within your embrace<</if>>. $His <<if $activeSlave.muscles > 30>>muscles<<else>>softness<</if>> and warmth awaken your desire, and $he feels <<if $PC.dick == 1>>your stiffening cock beginning to press against <<if $activeSlave.amp == 1>>$his perineum. $He shifts to slide $himself along its shaft<<if $PC.vagina == 1>> and down to where your pussy begins<</if>><<else>>the place between $his thighs. $He shifts to let your dick slide between them, and reaches down to massage its head<</if>><<else>>heat building against $his butt. <<if $activeSlave.amp == 1>>$He does $his best to grind against you, since $he can't caress you without hands<<else>>$He snakes a hand behind $himself to caress your womanhood, and begins to gently masturbate with the other<</if>><</if>>. <<if $PC.dick == 1>> <<if ($activeSlave.vagina > 0) && ($activeSlave.anus > 0) && canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $He begins to shift farther forward and back along your dick, causing its head to press against $his anus and then slide forward to nestle between her pussylips. In response to her wordless question, you nibble her ear and tell $him that it's her choice. $He turns her upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see her surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. + $He begins to shift farther forward and back along your dick, causing its head to press against $his anus and then slide forward to nestle between $his pussylips. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> - $He hikes $himself up a bit, and then slides her anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal + $He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal <<set _didAnal = 1>> <<else>> - $He hikes $himself up to give your dickhead a last teasing press against $his butt before cocking $his hips and sliding your cock into her soaking cunt. You make love + $He hikes $himself up to give your dickhead a last teasing press against $his butt before cocking $his hips and sliding your cock into $his soaking cunt. You make love <<set _didVaginal = 1>> <</if>> <<elseif ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> - $He cocks $his hips and so that your cock is pressing against her soaked cunt. In response to her wordless question, you nibble her ear and tell $him that it's her choice. $He turns her upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see her surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. + $He cocks $his hips and so that your cock is pressing against $his soaked cunt. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1) && isFertile($activeSlave)>> $He pushes against you until you are fully inserted into $his pussy. $He's ripe for impregnation and needs your baby in $him. You make love <<elseif ($activeSlave.anus > 2)>> - $He easily slides your cock into her loose pussy. You make love + $He easily slides your cock into $his loose pussy. You make love <<else>> - $He hikes $himself up a bit, and then gently slides your cock into her tight pussy. You making love + $He hikes $himself up a bit, and then gently slides your cock into $his tight pussy. You making love <</if>> <<set _didVaginal = 1>> <<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>> - $He begins to shift farther forward along your dick, causing its head to press against $his anus. In response to her wordless question, you nibble her ear and tell $him that it's her choice. $He turns her upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see her surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. + $He begins to shift farther forward along your dick, causing its head to press against $his anus. In response to $his wordless question, you nibble $his ear and tell $him that it's $his choice. $He turns $his upper torso to <<if canSee($activeSlave)>>stare at you in surprise<<else>>so that you may see $his surprise<</if>> for a moment, and then smiles and gives you a peck on the cheek. <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> - $He hikes $himself up a bit, and then slides her anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal + $He hikes $himself up a bit, and then slides $his anal sphincter slowly around and down your cock until you're resting all the way up $his ass. You share loving anal <<set _didAnal = 1>> <<elseif ($activeSlave.anus > 2)>> - $He hikes $himself up a bit, and then easily slides your cock into her loose rectum. You share loving anal + $He hikes $himself up a bit, and then easily slides your cock into $his loose rectum. You share loving anal <<set _didAnal = 1>> <<else>> - $He decides against buttsex, and <<if $activeSlave.amp == 1>>contents $himself with grinding<<else>>presses her thighs together so you can frot $him.<</if>> After making love + $He decides against buttsex, and <<if $activeSlave.amp == 1>>contents $himself with grinding<<else>>presses $his thighs together so you can frot $him.<</if>> After making love <</if>> <<else>> - You <<if $activeSlave.amp == 1>>grind against her<<else>>frot her<</if>> + You <<if $activeSlave.amp == 1>>grind against $him<<else>>frot $him<</if>> <</if>> <<else>> You reach around $him and attend to a nipple with each hand, spreading your attention to the whole breast once they<<if $activeSlave.nipples != "fuckable">>'re perfectly stiff<<else>>'ve tightened around your fingers<</if>>. After sharing gentle lovemaking <</if>> - for a while, until you sense that $he's on the edge of climax. Without warning, you lift the edge of the blankets and send a gust of cool air down her front and <<if $activeSlave.dick > 0>>right onto $his cock<<else>>across her <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>. $He gasps at the sudden overstimulation and then orgasms very strongly, jerking against you + for a while, until you sense that $he's on the edge of climax. Without warning, you lift the edge of the blankets and send a gust of cool air down $his front and <<if $activeSlave.dick > 0>>right onto $his cock<<else>>across $him <<if $activeSlave.nipples != "fuckable">>hard<<else>>engorged<</if>> nipples<</if>>. $He gasps at the sudden overstimulation and then orgasms very strongly, jerking against you <<if !canTalk($activeSlave)>> and panting in lieu of an exclamation. <<else>> @@ -5839,7 +5840,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Spend the day in bed">> <<EventNameDelink $activeSlave>> <<replace "#result">> - What's the point of becoming a wealthy tycoon in an anarcho-libertarian paradise if you have to obey the rules all the time? You tell $assistantName to cancel the appointment. Then, you wake your bedmate, and <<if $PC.dick == 1>>get a blowjob<<if $PC.vagina == 1>> and some attention for your pussy<</if>><<else>>have $him eat you out<</if>> under the sheet while you enjoy the lurid sunrise through the glass wall of your bedroom. When the sun is up and you've <<if $PC.dick == 1>>shot your load down her throat<<else>>climaxed twice<</if>>, you pull the bemused $girl up alongside you again, bring the sheets up over you both, switch on a wallscreen, and ask $him if there's anything $he'd like to <<if canSee($activeSlave)>>watch<<elseif canHear($activeSlave)>>listen to<<else>>put on<</if>>. $He smiles incredulously, but after you encourage $him $he @@.mediumaquamarine;finds $his confidence@@ and admits that there's a Free Cities serial drama about slave life that $he enjoys. You put it on and watch three episodes with $him. It's terribly insipid, but there's a lot of explicit sex to liven things up, and all the actresses are nice enough to look at. $activeSlave.slaveName cuddles comfortably with you the entire time, <<if canSee($activeSlave)>>watching raptly<<else>>listening intently<<else>>staying as silent as possible<</if>> and doing $his best to explain the wretchedly trite plot you've missed. + What's the point of becoming a wealthy tycoon in an anarcho-libertarian paradise if you have to obey the rules all the time? You tell $assistantName to cancel the appointment. Then, you wake your bedmate, and <<if $PC.dick == 1>>get a blowjob<<if $PC.vagina == 1>> and some attention for your pussy<</if>><<else>>have $him eat you out<</if>> under the sheet while you enjoy the lurid sunrise through the glass wall of your bedroom. When the sun is up and you've <<if $PC.dick == 1>>shot your load down $his throat<<else>>climaxed twice<</if>>, you pull the bemused $girl up alongside you again, bring the sheets up over you both, switch on a wallscreen, and ask $him if there's anything $he'd like to <<if canSee($activeSlave)>>watch<<elseif canHear($activeSlave)>>listen to<<else>>put on<</if>>. $He smiles incredulously, but after you encourage $him $he @@.mediumaquamarine;finds $his confidence@@ and admits that there's a Free Cities serial drama about slave life that $he enjoys. You put it on and watch three episodes with $him. It's terribly insipid, but there's a lot of explicit sex to liven things up, and all the actresses are nice enough to look at. $activeSlave.slaveName cuddles comfortably with you the entire time, <<if canSee($activeSlave)>>watching raptly<<else>>listening intently<<else>>staying as silent as possible<</if>> and doing $his best to explain the wretchedly trite plot you've missed. <<set $activeSlave.oralCount++, $oralTotal++>> You have a meal delivered, <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>> @@ -5864,12 +5865,12 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<case "confident tanning">> -<<link "Ask her if $he needs help with her tan">> +<<link "Ask $his if $he needs help with $his tan">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You ask her if $he needs help with her tan. $He looks momentarily confused, but then $he catches <<if canSee($activeSlave)>>the gleam in your eye <<if $PC.dick == 1>>and notices your stiffening member<<else>>and the flush on your cheeks<</if>><<else>>on to the swing of things<</if>>. "Ooh," $he <<say>>s cheekily, + You ask $him if $he needs help with $his tan. $He looks momentarily confused, but then $he catches <<if canSee($activeSlave)>>the gleam in your eye <<if $PC.dick == 1>>and notices your stiffening member<<else>>and the flush on your cheeks<</if>><<else>>on to the swing of things<</if>>. "Ooh," $he <<say>>s cheekily, <<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> - "my back i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and lies still, sighing with submissive relaxation as you <<if $activeSlave.belly >= 5000>>climb atop <<else>>settle against<</if>>her warm back and take $him. + "my back i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and lies still, sighing with submissive relaxation as you <<if $activeSlave.belly >= 5000>>climb atop <<else>>settle against<</if>>$his warm back and take $him. <<if canDoVaginal($activeSlave)>> <<set _didVaginal = 1>> <<else>> @@ -5879,7 +5880,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del "my fa<<c>>e is getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me! I need <<s>>omewhere to hide it!" $He scrambles hungrily for your crotch, nuzzling you, licking you, and <<if $PC.dick == 1>>sucking your dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>. <<set $activeSlave.oralCount++, $oralTotal++>> <<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> - "I'm getting <<s>>unburnt! I had better go in<<s>>ide. But <<Master>> everyone in there will <<s>>ee me naked!" $He looks at you in mock horror, and giggles with building lust as you pull her sun-warmed body inside the arcology and into an open space for a good thorough public fucking. + "I'm getting <<s>>unburnt! I had better go in<<s>>ide. But <<Master>> everyone in there will <<s>>ee me naked!" $He looks at you in mock horror, and giggles with building lust as you pull $his sun-warmed body inside the arcology and into an open space for a good thorough public fucking. <<if canDoVaginal($activeSlave)>> <<set _didVaginal = 1>> <<else>> @@ -5891,22 +5892,22 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>> "my boob<<s>> are getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He wiggles $his torso around to make $himself bounce enticingly, and then giggles happily as you <<if $PC.dick == 1>> - get on top of $him and slide yourself <<if $activeSlave.nipples != "fuckable">>between her lotion-slick tits<<if $PC.vagina == 1>>, occasionally riding up to slide her hard nipples between your pussylips<</if>><<else>>all the way into a fuckable tit and attending to the other with your fingers<</if>>. + get on top of $him and slide yourself <<if $activeSlave.nipples != "fuckable">>between $his lotion-slick tits<<if $PC.vagina == 1>>, occasionally riding up to slide $his hard nipples between your pussylips<</if>><<else>>all the way into a fuckable tit and attending to the other with your fingers<</if>>. <<else>> begin to <<if $activeSlave.nipples != "fuckable">>play with<<else>>finger<</if>> $his nipples. <</if>> <<set $activeSlave.mammaryCount++, $mammaryTotal++>> <<elseif $activeSlave.trust >= 80 && $activeSlave.toyHole == "dick" && canPenetrate($activeSlave)>> - "my cock i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me find <<s>>omepla<<c>>e to hide it!" $He wiggles her pelvis around to make $himself bounce enticingly, and then giggles happily as you get on top of $him and slip her sun-warmed dick deep into your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>><<if $PC.dick == 1>>, shuddering with delight at the warmth tickling your prostate<</if>>. + "my cock i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me find <<s>>omepla<<c>>e to hide it!" $He wiggles $his pelvis around to make $himself bounce enticingly, and then giggles happily as you get on top of $him and slip $his sun-warmed dick deep into your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>><<if $PC.dick == 1>>, shuddering with delight at the warmth tickling your prostate<</if>>. <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 20, 0, $activeSlave.ID)>> <</if>> <<elseif ($activeSlave.vagina <= 0)>> - "my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and spreads $his buttocks, begging you to cover her up. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, her sun-warmed buttocks clenching wonderfully against your crotch. + "my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and spreads $his buttocks, begging you to cover $him up. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, $his sun-warmed buttocks clenching wonderfully against your crotch. <<set _didAnal = 1>> <<else>> - "my pu<<ss>>y i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spreads $his legs invitingly, running a hand across $his clit and down to spread her pussylips to the sunshine. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $him, her sun-warmed chest warm against yours. + "my pu<<ss>>y i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spreads $his legs invitingly, running a hand across $his clit and down to spread $his pussylips to the sunshine. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $him, $his sun-warmed chest warm against yours. <<set _didVaginal = 1>> <</if>> $He @@.mediumaquamarine;trusts you more@@ for being witty with $him, for allowing $him the simple pleasure of a little sunbathing - and for sharing fun sex with $him, of course. @@ -5921,7 +5922,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Just enjoy the sunshine with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Wordlessly, you fetch a towel of your own. $He raises her head a little to see if $he's needed, but as soon as $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> what you're doing, $he smiles with simple satisfaction and closes $his eyes again. You strip and lie down next to $him. $He made a good decision <<if $activeSlave.assignment == "rest">>about how to spend her rest<<else>>about what to do with her rest period<</if>>. The sun is warm and gentle, and the interminable demands of leadership and your harem suddenly seem very far away. You drop off for a short while, only waking when your apologetic personal assistant breaks in with notice of an upcoming meeting. As you get your senses back, you notice that $activeSlave.slaveName's hand is right next to yours, flattened out against the decking. $His eyes remain closed, and $his breath is steady; $he's fast asleep. It seems $he did not want to wake you, but @@.hotpink;wanted very much to be a little closer to you.@@ You consider canceling the meeting and waking the sun-warmed + Wordlessly, you fetch a towel of your own. $He raises $his head a little to see if $he's needed, but as soon as $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> what you're doing, $he smiles with simple satisfaction and closes $his eyes again. You strip and lie down next to $him. $He made a good decision <<if $activeSlave.assignment == "rest">>about how to spend $his rest<<else>>about what to do with $his rest period<</if>>. The sun is warm and gentle, and the interminable demands of leadership and your harem suddenly seem very far away. You drop off for a short while, only waking when your apologetic personal assistant breaks in with notice of an upcoming meeting. As you get your senses back, you notice that $activeSlave.slaveName's hand is right next to yours, flattened out against the decking. $His eyes remain closed, and $his breath is steady; $he's fast asleep. It seems $he did not want to wake you, but @@.hotpink;wanted very much to be a little closer to you.@@ You consider canceling the meeting and waking the sun-warmed <<if $activeSlave.physicalAge > 30>> $woman, <<elseif $activeSlave.physicalAge > 17>> @@ -6622,7 +6623,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Buttfuck $him against the railing">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You move quietly over to $him and encircle her with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your + You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your <<if $PC.boobsBonus > 2>> enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts <<elseif $PC.boobsBonus == 2>> @@ -6644,7 +6645,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.height >= 160>> $his ass. <<else>> - her lower back. + $his lower back. <</if>> $He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina == 1>> and total wetness<</if>><</if>> $he <<if $activeSlave.height >= 170>> @@ -6652,17 +6653,17 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hikes $himself up on the rail, up on tiptoe, to bring $his asshole to the most comfortable height. <</if>> - $He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his butt, but $he keeps her gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on her face. + $He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his butt, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face. <<= AnalVCheck()>> <<set $activeSlave.devotion += 4>> <</replace>> <</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>> <</if>> <<if canDoVaginal($activeSlave)>> -<br><<link "Fuck her against the railing">> +<br><<link "Fuck $him against the railing">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You move quietly over to $him and encircle her with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your + You move quietly over to $him and encircle $him with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your <<if $PC.boobsBonus > 2>> enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts <<elseif $PC.boobsBonus == 2>> @@ -6684,7 +6685,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.height >= 160>> $his ass. <<else>> - her lower back. + $his lower back. <</if>> $He automatically begins to rub $himself up and down to stimulate you; once $he feels you reach <<if $PC.dick == 0>>full arousal<<else>>rock hardness<<if $PC.vagina == 1>> and total wetness<</if>><</if>> $he <<if $activeSlave.height >= 170>> @@ -6692,7 +6693,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hikes $himself up on the rail, up on tiptoe, to bring $his pussy to the most comfortable height. <</if>> - $He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter her depths, but $he keeps her gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on her face. + $He moans a little as you<<if $PC.dick == 0>> pull on your trusty vibrating strap-on and<</if>> enter $his depths, but $he keeps $his gaze on the fiery horizon. $He extricated $his hands from yours to stabilize $himself against the railing, leaving you free to gently massage $his breasts in time with your slow thrusts. $He does not climax, but after you do $he turns halfway within your arms and kisses you impulsively. $He leaves the balcony with a @@.hotpink;small smile@@ on $his face. <<= VaginalVCheck()>> <<set $activeSlave.devotion += 4>> <</replace>> @@ -6701,12 +6702,12 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<case "nympho with assistant">> -<<link "No, spectate and relax with her afterward">> +<<link "No, spectate and relax with $him afterward">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You leave for a moment, but return quickly with a chair and a refreshing beverage so you can sit and enjoy the spectacle. It's hard to tell, but you're reasonably sure $activeSlave.slaveName is flattered by your interest. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not let her go for a long time, however, and when $he finally retracts all the phalli, $activeSlave.slaveName collapses weakly to the sweat-stained floor. + You leave for a moment, but return quickly with a chair and a refreshing beverage so you can sit and enjoy the spectacle. It's hard to tell, but you're reasonably sure $activeSlave.slaveName is flattered by your interest. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not let $him go for a long time, however, and when $he finally retracts all the phalli, $activeSlave.slaveName collapses weakly to the sweat-stained floor. <<if $activeSlave.belly >= 300000>> - You try to gather the limp nympho in your arms, but $his _belly is far too heavy to carry, so you settle for assisting $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you help her into the water and slip in beside $him. + You try to gather the limp nympho in your arms, but $his _belly is far too heavy to carry, so you settle for assisting $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you help $him into the water and slip in beside $him. <<else>> You gather the limp nympho in your arms and carry $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you lower $him, still cradled in your arms, into the water. <</if>> @@ -6747,7 +6748,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Replace the machines with cockmilkees from the Dairy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Some minutes later $activeSlave.slaveName feels one of the dildos retract and wriggles in protest. $He's not long disappointed, though, as $he immediately feels it replaced by a turgid dick. You and $assistantName stage-manage, and it isn't easy. Getting all the cocks into her requires some creative choreography; quite apart from the limits of even her well-used holes, it's hard just figuring out where everyone ought to stand. The cockmilked slaves are used to coming fast, and they do here, too, so there's also the necessity of switching them out periodically. Eventually you tire of the amusement and direct the Dairy bitches to clean up, which is no mean job, since $activeSlave.slaveName is by now lying in a pool of sweat and cum. But mostly cum. Despite the mess, everyone @@.hotpink;enjoys@@ themselves immensely. + Some minutes later $activeSlave.slaveName feels one of the dildos retract and wriggles in protest. $He's not long disappointed, though, as $he immediately feels it replaced by a turgid dick. You and $assistantName stage-manage, and it isn't easy. Getting all the cocks into $him requires some creative choreography; quite apart from the limits of even $his well-used holes, it's hard just figuring out where everyone ought to stand. The cockmilked slaves are used to coming fast, and they do here, too, so there's also the necessity of switching them out periodically. Eventually you tire of the amusement and direct the Dairy bitches to clean up, which is no mean job, since $activeSlave.slaveName is by now lying in a pool of sweat and cum. But mostly cum. Despite the mess, everyone @@.hotpink;enjoys@@ themselves immensely. <<if $activeSlave.vagina == 0 && canDoVaginal($activeSlave)>> $He certainly @@.lime;isn't a virgin any more.@@ <<set $activeSlave.vagina += 1>> @@ -6791,23 +6792,23 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Punish $his ass for insolence">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform her sternly that you will ensure that $he is not permanently damaged, and that otherwise, $he is to take anal pain like a good buttslave. $He starts to beg and whine as you lean back in your chair and <<if $PC.dick == 0>>hold her upside down on your chest so $he can lick your pussy while you use a dildo on $his ass.<<else>>set her on your chest before reaching around to line your cock up with her sore hole. $He shudders and writhes when you start pushing yourself inside.<</if>> You use hard pinches to $his nipples to punish her whining, forcing $him to take a long, painful buttfuck in silence. @@.gold;$He has become more afraid of you.@@ + You inform $him sternly that you will ensure that $he is not permanently damaged, and that otherwise, $he is to take anal pain like a good buttslave. $He starts to beg and whine as you lean back in your chair and <<if $PC.dick == 0>>hold $him upside down on your chest so $he can lick your pussy while you use a dildo on $his ass.<<else>>set $him on your chest before reaching around to line your cock up with $his sore hole. $He shudders and writhes when you start pushing yourself inside.<</if>> You use hard pinches to $his nipples to punish $his whining, forcing $him to take a long, painful buttfuck in silence. @@.gold;$He has become more afraid of you.@@ <<if ($activeSlave.anus < 3)>>$His week of tough anal experience has @@.lime;permanently loosened $his anus.@@<<set $activeSlave.anus += 1>><</if>> <<set $activeSlave.trust -= 5>> <<= AnalVCheck()>> <</replace>> <</link>> -<br><<link "Give her some care">> +<br><<link "Give $him some care">> <<EventNameDelink $activeSlave>> <<replace "#result">> $He's filled with anxiety as you <<if $activeSlave.belly < 1500>> - lay her face down on your desk, + lay $him face down on your desk, <<else>> - direct $him to lay on her side on your desk<<if $activeSlave.belly >= 300000>> with $his _belly belly hanging over the edge<</if>>, + direct $him to lay on $his side on your desk<<if $activeSlave.belly >= 300000>> with $his _belly belly hanging over the edge<</if>>, <</if>> but is surprised and reassured when $he's penetrated not by a <<if $PC.dick == 0>>strap-on<<else>>turgid<<if $PC.vagina == 1>> futa<</if>> cock<</if>> but by a single gentle finger coated with something healing and cool. The mixed analgesic and anti-inflammatory takes the sharpness off the sore feeling, and will help get $his butt back into fucking shape. @@.mediumaquamarine;$He has become more accepting of anal slavery,@@ and @@.green;$his asshole feels better.@@ - <<if ($activeSlave.anus > 2)>>Your expert care has @@.orange;allowed her loose asspussy to recover a little of its natural shape and size.@@<<set $activeSlave.anus -= 1>><</if>> + <<if ($activeSlave.anus > 2)>>Your expert care has @@.orange;allowed $his loose asspussy to recover a little of its natural shape and size.@@<<set $activeSlave.anus -= 1>><</if>> <<set $activeSlave.trust += 4, $activeSlave.minorInjury = 0>> <</replace>> <</link>> @@ -6817,9 +6818,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Make butt love">> <<EventNameDelink $activeSlave>> <<replace "#result">> - There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on her face as $he hears<<else>>on her face as $he senses<</if>> you stand up from your desk; + There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk; <<if $activeSlave.height >= 185>> - $he's tall enough for standing anal, so as you approach $he just turns her head back to face the door frame and cocks $his hips. + $he's tall enough for standing anal, so as you approach $he just turns $his head back to face the door frame and cocks $his hips. <<elseif $activeSlave.height < 160>> $he's so short standing anal is a stretch, so as you approach $he goes up on tiptoe with one leg and runs the other up the wall, using it as support to hike $his ass as high as $he can manage. <<else>> @@ -6841,7 +6842,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> inexperienced asshole <</if>> - with one finger, and then run your hands around her + with one finger, and then run your hands around $his <<if $activeSlave.waist < -95>> cartoonishly narrow <<elseif $activeSlave.waist < -10>> @@ -6851,7 +6852,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> thick <</if>> - waist and up her + waist and up $his <<if ($activeSlave.belly >= 100000)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly <<elseif ($activeSlave.weight > 130)>> @@ -6871,15 +6872,15 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> to rest <<if $activeSlave.boobs > 2000>> - buried under her enormous breasts. + buried under $his enormous breasts. <<elseif $activeSlave.boobs > 800>> - under her heavy breasts. + under $his heavy breasts. <<elseif $activeSlave.boobs > 200>> under the curve of $his breasts. <<else>> - against her trim chest. + against $his trim chest. <</if>> - Despite her poise $he sighs at your impromptu massage, gasps at your + Despite $his poise $he sighs at your impromptu massage, gasps at your <<if $PC.belly >= 5000>> pregnancy pushing <<elseif $PC.boobs != 0>> @@ -6889,7 +6890,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> muscular chest pressing <</if>> - against her back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina == 1>><<if $PC.dick == 1>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling $his $activeSlave.skin chin around to kiss her + against $his back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina == 1>><<if $PC.dick == 1>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling $his $activeSlave.skin chin around to kiss $his <<if $activeSlave.lips > 60>> bimbo <<elseif $activeSlave.lips > 40>> @@ -6905,7 +6906,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif $activeSlave.dick > 0>> spurting cum against the door frame. <<elseif $activeSlave.vagina == -1>> - grinding her featureless crotch against the door frame. + grinding $his featureless crotch against the door frame. <<else>> leaving a little girlcum on the door frame. <</if>> @@ -6917,7 +6918,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> tight sphincter tightens mercilessly <</if>> - with the orgasm, eliciting a sob of overstimulation, which you draw into a series of sobs by slowly assfucking her despite $his climax. You are gentle with $his butt, and continue teasing $his body, so that $his arousal builds again and $he manages to climax a second time when you do. You let her out from between you and the door frame to wash, and return to work, but when $he emerges from a quick trip to the bathroom $he + with the orgasm, eliciting a sob of overstimulation, which you draw into a series of sobs by slowly assfucking $him despite $his climax. You are gentle with $his butt, and continue teasing $his body, so that $his arousal builds again and $he manages to climax a second time when you do. You let $him out from between you and the door frame to wash, and return to work, but when $he emerges from a quick trip to the bathroom $he <<if $activeSlave.belly >= 300000>> leans against $his _belly stomach, <<else>> @@ -6936,7 +6937,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Pound that ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns her gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on her<</if>>; for all her sexual poise $he's surprised by the force of your + You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on $him<</if>>; for all $his sexual poise $he's surprised by the force of your <<if $PC.belly >= 5000>> pregnancy <<elseif $PC.boobs != 0>> @@ -6944,7 +6945,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> chest <</if>> - crashing into her + crashing into $his <<if $activeSlave.weight > 160>> rippling <<elseif $activeSlave.weight > 95>> @@ -6958,11 +6959,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> soft <</if>> - back, forcing her<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame. + back, forcing $him<<if ($activeSlave.belly >= 1500)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>> against the door frame. <<if $activeSlave.height >= 185>> $He's so tall $his butt is at the perfect height right where it is, so $he relaxes as much as possible, trapped against the door frame. <<elseif $activeSlave.height < 160>> - $He's short enough that even tiptoes aren't enough, and you force her up between you and the door frame, pinning $his little body helplessly in place. + $He's short enough that even tiptoes aren't enough, and you force $him up between you and the door frame, pinning $his little body helplessly in place. <<else>> $He squirms up on tiptoes to get $his butt to the right height, trapped between you and the door frame. <</if>> @@ -6974,19 +6975,19 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> worsened by $his tight little sphincter. <</if>> - You ravage $his ass hard from the first stroke, making it clear you're taking your pleasure, leaving her nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to + You ravage $his ass hard from the first stroke, making it clear you're taking your pleasure, leaving $him nothing to do but cling to the door frame and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to <<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>> - rubbing her oversized cock between it and $his leg + rubbing $his oversized cock between it and $his leg <<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - humping her pathetic limp dick against it + humping $his pathetic limp dick against it <<elseif $activeSlave.dick > 0>> rubbing $his cock against it <<elseif $activeSlave.vagina == -1>> - grind her smooth groin against it instinctively, even though that's not very useful + grind $his smooth groin against it instinctively, even though that's not very useful <<else>> humping $his pussy against it <</if>> - for stimulation. $His asshole eventually spasms in orgasm, but it's spasmed so frequently during the rough sodomy that you don't realize the slut came to having $his asshole savaged until <<if $activeSlave.dick > 0>>you notice the ejaculate running down $his leg<<else>>an aftershock almost makes $his legs give out<</if>>. You climax in triumph yourself before pulling the bitch off the door frame and flinging her towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently,@@ though you do notice $he sits to one side to take a bit of weight off her poor rear. + for stimulation. $His asshole eventually spasms in orgasm, but it's spasmed so frequently during the rough sodomy that you don't realize the slut came to having $his asshole savaged until <<if $activeSlave.dick > 0>>you notice the ejaculate running down $his leg<<else>>an aftershock almost makes $his legs give out<</if>>. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently,@@ though you do notice $he sits to one side to take a bit of weight off $his poor rear. <<set $activeSlave.devotion += 4>> <<= AnalVCheck()>> <</replace>> @@ -6996,7 +6997,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Pound that pussy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns her gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on her<</if>>; for all her sexual poise $he's surprised by the force of your + You choose your moment carefully, waiting until <<if canSee($activeSlave)>>$he turns $his gaze away from you for an instant. When $he looks back, your desk chair is empty<<else>>the ambient sound is loud enough for you to sneak up on $his<</if>>; for all $his sexual poise $he's surprised by the force of your <<if $PC.belly >= 5000>> pregnancy <<elseif $PC.boobs != 0>> @@ -7004,7 +7005,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> chest <</if>> - crashing into her + crashing into $his <<if $activeSlave.weight > 160>> rippling <<elseif $activeSlave.weight > 95>> @@ -7044,7 +7045,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> humping $his abdomen against it. <</if>> - $He eventually shudders and spasms in orgasm, <<if $activeSlave.dick > 0>>the ejaculate running down $his leg<<else>>$his legs almost give out<</if>> making obvious her pleasure in getting $his pussy fucked by you. You climax in triumph yourself before pulling the bitch off the door frame and flinging her towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently.@@ + $He eventually shudders and spasms in orgasm, <<if $activeSlave.dick > 0>>the ejaculate running down $his leg<<else>>$his legs almost give out<</if>> making obvious $his pleasure in getting $his pussy fucked by you. You climax in triumph yourself before pulling the bitch off the door frame and flinging $him towards the bathroom to clean $himself up. When $he emerges, $he comes over to sit quietly next to your desk, looking up at you @@.hotpink;obediently.@@ <<set $activeSlave.devotion += 4>> <<= VaginalVCheck()>> <</replace>> @@ -7054,13 +7055,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Invite $him 'in'">> <<EventNameDelink $activeSlave>> <<replace "#result">> - There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on her face as $he hears<<else>>on her face as $he senses<</if>> you stand up from your desk and saunter over; + There's a glint <<if canSee($activeSlave)>>in $his eyes as $he sees<<elseif canHear($activeSlave)>>on $his face as $he hears<<else>>on $his face as $he senses<</if>> you stand up from your desk and saunter over; <<if $activeSlave.height >= 185>> - $he's tall enough for standing <<if $PC.vagina == 1>>sex<<else>>anal<</if>>, so as you approach $he just readies $himself to fuck her lover. + $he's tall enough for standing <<if $PC.vagina == 1>>sex<<else>>anal<</if>>, so as you approach $he just readies $himself to fuck $his lover. <<elseif $activeSlave.height < 160>> $he's so short standing anal is a stretch, so once you approach you get down on your knees and greet the dick that will soon be in your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>>. <<else>> - $he's shorter than you, so as you approach $he goes up on tiptoe to bring her dick to just the right height for standing sex. + $he's shorter than you, so as you approach $he goes up on tiptoe to bring $his dick to just the right height for standing sex. <</if>> $He doesn't penetrate you right away, though; $he <<if $PC.butt == 3>> @@ -7082,28 +7083,28 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if ($activeSlave.belly >= 100000)>> You grunt as the weight of $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly comes to rest on your back<<if $activeSlave.belly >= 300000>>, the sheer gravity of it threatening to force you to the floor<</if>>. <<elseif ($activeSlave.boobs >= 15000)>> - You grunt as you feel the weight of her massive breasts slam into your back<<if $activeSlave.boobs >= 30000>>before falling to your sides<</if>>. + You grunt as you feel the weight of $his massive breasts slam into your back<<if $activeSlave.boobs >= 30000>>before falling to your sides<</if>>. <<elseif ($activeSlave.weight > 160)>> - You grunt as you feel the weight of her fat gut settle on your back. + You grunt as you feel the weight of $his fat gut settle on your back. <</if>> <<if $activeSlave.dick == 1>> <<if $PC.vagina == 1>> <<if $PC.newVag == 1>> - $He slips her tiny dick into your vagina. Fortunately your custom cunt is capable of making even the most embarrassing of dicks pleasurable; though you wish $he could fill you a little better. + $He slips $his tiny dick into your vagina. Fortunately your custom cunt is capable of making even the most embarrassing of dicks pleasurable; though you wish $he could fill you a little better. <<elseif $PC.career == "escort">> - You sigh as her tiny dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering. + You sigh as $his tiny dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering. <<elseif $PC.births >= 10>> - You sigh as her tiny dick enters your used pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore. + You sigh as $his tiny dick enters your used pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>> <<elseif $PC.career == "servant">> - You sigh as her tiny dick enters your used pussy. $He stands no chance of competing with your old Master. + You sigh as $his tiny dick enters your used pussy. $He stands no chance of competing with your old Master. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Suddenly, the size of $his cock doesn't seem to matter as much anymore.<</if>> <<elseif $PC.births > 2>> - You can barely feel her slip into your loose cunt, but $he is so small it's not like you're missing much. + You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much. <<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">> - You feel her slip into your vagina and abruptly stop; you sigh over how unsatisfyingly small $he is. + You feel $him slip into your vagina and abruptly stop; you sigh over how unsatisfyingly small $he is. <<else>> - You squirm as $he slips into your tight pussy. While her length may be disappointing, $he stands no chance of stretching you out. + You squirm as $he slips into your tight pussy. While $his length may be disappointing, $he stands no chance of stretching you out. <</if>> <<else>> You have to check to see if $he's even in your tight rear, only to find $he is already fully hilted. You sigh as $he thrusts into you; no prostate stimulation today. @@ -7111,115 +7112,115 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif $activeSlave.dick == 2>> <<if $PC.vagina == 1>> <<if $PC.newVag == 1>> - $He slips her cute dick into your vagina. Fortunately your custom cunt is capable of making her embarrassing offering pleasurable; though you wish $he could fill you a little better. + $He slips $his cute dick into your vagina. Fortunately your custom cunt is capable of making $his embarrassing offering pleasurable; though you wish $he could fill you a little better. <<elseif $PC.career == "escort">> - You sigh as her cute dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering, no matter how pathetically adorable it is. + You sigh as $his cute dick enters your stretched pussy. You're far too traveled to enjoy such a meager offering, no matter how pathetically adorable it is. <<elseif $PC.births >= 10>> - You sigh as her cute dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore. + You sigh as $his cute dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. Hopefully such a cute penis puts a cute baby in you.<</if>> <<elseif $PC.career == "servant">> - You sigh as her cute dick enters your used pussy. $He stands no chance of competing with your old Master. - <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. You doubt her children will stand up to his either.<</if>> + You sigh as $his cute dick enters your used pussy. $He stands no chance of competing with your old Master. + <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile. You doubt $his children will stand up to his either.<</if>> <<elseif $PC.births > 2>> - You can barely feel her slip into your loose cunt, but $he is so small it's not like you're missing much. + You can barely feel $him slip into your loose cunt, but $he is so small it's not like you're missing much. <<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">> - You feel her slip into your vagina and sigh over how unsatisfyingly small $he is. + You feel $him slip into your vagina and sigh over how unsatisfyingly small $he is. <<else>> You squirm as $he slips into your tight pussy. $He should be thankful you're so tight. <</if>> <<else>> - You sigh as you feel her slip her cute dick into your tight rear; no prostate stimulation today. + You sigh as you feel $him slip $his cute dick into your tight rear; no prostate stimulation today. <</if>> <<elseif $activeSlave.dick == 3>> <<if $PC.vagina == 1>> <<if $PC.newVag == 1>> - You shudder as $he slips her dick into your vagina. + You shudder as $he slips $his dick into your vagina. <<elseif $PC.career == "escort">> - You sigh as her dick slips into your stretched pussy. You're far too traveled for even average cocks these days. + You sigh as $his dick slips into your stretched pussy. You're far too traveled for even average cocks these days. <<elseif $PC.births >= 10>> - You sigh as her dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore. + You sigh as $his dick enters your abused pussy. You've been stretched out so much from childbirth that $he just can't satisfy you anymore. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.career == "servant">> - You sigh as her dick enters your used pussy. $He stands no chance of competing with your old Master. + You sigh as $his dick enters your used pussy. $He stands no chance of competing with your old Master. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.births > 2>> - You've gotten rather loose after your multiple children, so her average cock is somewhat underwhelming. + You've gotten rather loose after your multiple children, so $his average cock is somewhat underwhelming. <<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">> - You shiver with pleasure as $he slips her dick into your pussy. + You shiver with pleasure as $he slips $his dick into your pussy. <<else>> - You squirm as $he slips her dick into your tight pussy, the sensation making you quiver with pleasure. + You squirm as $he slips $his dick into your tight pussy, the sensation making you quiver with pleasure. <</if>> <<else>> - You squirm as you feel her slip her dick into your tight rear, the sensation making you quiver with pleasure. + You squirm as you feel $him slip $his dick into your tight rear, the sensation making you quiver with pleasure. <<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 == 4>> <<if $PC.vagina == 1>> <<if $PC.newVag == 1>> - You shudder as $he slips her big dick into your vagina. + You shudder as $he slips $his big dick into your vagina. <<elseif $PC.career == "escort">> - You shudder as her big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him. + You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him. <<elseif $PC.births >= 10>> - You shudder as her big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel her after the havok wreaked by your children. + You shudder as $his big dick slips into your stretched pussy. $He could use to be a little wider, but at least you can feel $him after the havok wreaked by your children. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.career == "servant">> - You shudder as her big dick slips into your used pussy. $He's just the right size for you to remember your Master. + You shudder as $his big dick slips into your used pussy. $He's just the right size for you to remember your Master. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.births > 2>> - You've gotten rather loose after your multiple children, so her big cock is a welcome feeling. + You've gotten rather loose after your multiple children, so $his big cock is a welcome feeling. <<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">> - You moan with pleasure as $he slips her big dick into your pussy, stretching you to your limit. + You moan with pleasure as $he slips $his big dick into your pussy, stretching you to your limit. <<else>> - You squirm as $he slips her big dick into your tight pussy, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to her size before continuing. + You squirm as $he slips $his big dick into your tight pussy, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing. <</if>> <<else>> - You squirm as you feel her slip her big dick into your tight rear, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to her size before continuing. + You squirm as you feel $him slip $his big dick into your tight rear, the sensation making you quiver with pleasure and a little pain. $He gives you a chance to get used to $his size before continuing. <<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 == 5>> <<if $PC.vagina == 1>> <<if $PC.newVag == 1>> - You shudder with delight as her impressive dick stretches you perfectly. + You shudder with delight as $his impressive dick stretches you perfectly. <<elseif $PC.career == "escort">> - You quiver with pleasure as her impressive dick slips into your stretched pussy. It takes a lot to satisfy you and $he is not disappointing. + You quiver with pleasure as $his impressive dick slips into your stretched pussy. It takes a lot to satisfy you and $he is not disappointing. <<elseif $PC.births >= 10>> - You quiver with pleasure as her impressive dick slips into your stretched pussy. Even given the state of your pussy, $he fills you completely and perfectly. + You quiver with pleasure as $his impressive dick slips into your stretched pussy. Even given the state of your pussy, $he fills you completely and perfectly. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.career == "servant">> - You quiver with pleasure as her impressive dick slips into your used pussy. $He's bigger than your Master was and is hitting all the right places. + You quiver with pleasure as $his impressive dick slips into your used pussy. $He's bigger than your Master was and is hitting all the right places. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.births > 2>> - You've gotten rather loose after your multiple children, but you still find her impressive dick almost uncomfortably large. + You've gotten rather loose after your multiple children, but you still find $his impressive dick almost uncomfortably large. <<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">> - You squeal with mixed pleasure and pain as $he pushes her impressive dick into your pussy, stretching you past your limit. $He gives you a chance to get used to her size before continuing. + You squeal with mixed pleasure and pain as $he pushes $his impressive dick into your pussy, stretching you past your limit. $He gives you a chance to get used to $his size before continuing. <<else>> - You grit your teeth as $he slips her impressive dick into your tight pussy, stretching you considerably. $He gives you a chance to get used to her size before continuing. + You grit your teeth as $he slips $his impressive dick into your tight pussy, stretching you considerably. $He gives you a chance to get used to $his size before continuing. <</if>> <<else>> - You grit your teeth as you feel her slip her impressive dick into your tight rear, stretching you considerably. You bring a hand to your lower belly, feeling the bulge of $his cock deep within you. $He gives you a chance to get used to her size before continuing, not that it will help much. + You grit your teeth as you feel $his slip $his impressive dick into your tight rear, stretching you considerably. You bring a hand to your lower belly, feeling the bulge of $his cock deep within you. $He gives you a chance to get used to $his size before continuing, 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 $his cock teasing your prostate.<</if>> <</if>> <<elseif $activeSlave.dick == 6>> <<if $PC.vagina == 1>> <<if $PC.newVag == 1>> - You shudder with overwhelming pleasure as her huge dick fills you completely. + You shudder with overwhelming pleasure as $his huge dick fills you completely. <<elseif $PC.career == "escort">> - You moan with pleasure as her huge dick completely fills your stretched pussy. You gently caress her dick through the bulge in your middle. + You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle. <<elseif $PC.births >= 10>> - You moan with pleasure as her huge dick completely fills your stretched pussy. You gently caress her dick through the bulge in your middle. + You moan with pleasure as $his huge dick completely fills your stretched pussy. You gently caress $his dick through the bulge in your middle. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.career == "servant">> - You moan with pleasure as her huge dick stretches your used pussy. $He's far bigger than your Master ever was. + You moan with pleasure as $his huge dick stretches your used pussy. $He's far bigger than your Master ever was. <<if canImpreg($PC, $activeSlave)>> A small tickling in your belly reminds you you're fertile.<</if>> <<elseif $PC.births > 2>> - You may be rather loose after your multiple children, but her huge dick is uncomfortably large. + You may be rather loose after your multiple children, but $his huge dick is uncomfortably large. <<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">> - You grit your teeth as $he pushes her huge dick into your pussy, trying to bear being so painfully overstretched. $He gives you a chance to get used to her size before continuing, not that it will help much. + You grit your teeth as $he pushes $his huge dick into your pussy, trying to bear being so painfully overstretched. $He gives you a chance to get used to $his size before continuing, not that it will help much. <<else>> - You cry out as $he forces her huge dick into your too-tight pussy, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries her best to allow you to get comfortable, not that it will help much. + You cry out as $he forces $his huge dick into your too-tight pussy, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his best to allow you to get comfortable, not that it will help much. <</if>> <<else>> - You cry out as $he forces her huge dick into your too-tight rear, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries her best to allow you to get comfortable, not that it will help much. + You cry out as $he forces $his huge dick into your too-tight rear, nearly breaking you. $He considers pulling back out, but you pat the bulge in your lower belly and urge $him to continue. $He tries $his 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 $his cock teasing your prostate.<</if>> <</if>> <<elseif $activeSlave.dick == 7>> @@ -7233,7 +7234,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied dick <</if>> - $He gently fucks you<<if $activeSlave.balls > 8>>, her oversized balls slapping your thighs with every thrust<</if>>, making sure you're enjoying $his penis as much as physically possible. You climax as $he cums inside eliciting a gasp from the horny $girl<<if $PC.dick == 1>>, as you spurt across the floor<</if>>. $He apologizes profusely for cumming in you, but after $he 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 + $He gently fucks you<<if $activeSlave.balls > 8>>, $his oversized balls slapping your thighs with every thrust<</if>>, making sure you're enjoying $his penis as much as physically possible. You climax as $he cums inside eliciting a gasp from the horny $girl<<if $PC.dick == 1>>, as you spurt across the floor<</if>>. $He apologizes profusely for cumming in you, but after $he helps clean you up and back to your desk, all is forgiven. As you work, you can't help but steal glances at $his renewed erection. $He winks <<if !canTalk($activeSlave)>> and @@.mediumaquamarine;earnestly asks@@ for more when you get the chance. <<else>> @@ -7252,7 +7253,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Enter the shower and quietly comfort $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He starts with surprise <<if canSee($activeSlave)>>as you enter the shower<<elseif canHear($activeSlave)>>as $he hears you enter the shower<<else>>as $he 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 $him, ignoring the water soaking your clothes. $He does not resist when you draw her gently into your lap. $He's stiff and uncomfortable as you hold her gently, but $he eventually relaxes and allows her head to rest <<if ($PC.boobs > 0)>>between your breasts<<else>>against your shoulder<</if>>. $He's utterly conflicted; the hateful person who $he is expected to fuck is tenderly comforting $him. $He finally seems to accept the animal comfort, whatever its source, and begins to @@.mediumaquamarine;trust@@ you to do more than just use $him. + $He starts with surprise <<if canSee($activeSlave)>>as you enter the shower<<elseif canHear($activeSlave)>>as $he hears you enter the shower<<else>>as $he 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 $him, ignoring the water soaking your clothes. $He does not resist when you draw $him gently into your lap. $He's stiff and uncomfortable as you hold $him gently, but $he eventually relaxes and allows $his head to rest <<if ($PC.boobs > 0)>>between your breasts<<else>>against your shoulder<</if>>. $He's utterly conflicted; the hateful person who $he is expected to fuck is tenderly comforting $him. $He finally seems to accept the animal comfort, whatever its source, and begins to @@.mediumaquamarine;trust@@ you to do more than just use $him. <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -7275,25 +7276,25 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif ($activeSlave.belly >= 5000)>> how firm $his _belly belly is.) <<elseif ($activeSlave.dick > 1)>> - her soft cock flop around as one of the air jets strikes it.) + $his soft cock flop around as one of the air jets strikes it.) <<elseif ($activeSlave.boobs > 800)>> <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> - how her fake tits refuse to jiggle under the air jets.) + how $his fake tits refuse to jiggle under the air jets.) <<else>> - how the air jets produce a lot of delectable jiggling when they strike her boobs.) + how the air jets produce a lot of delectable jiggling when they strike $his boobs.) <</if>> <<elseif ($activeSlave.butt > 4)>> - how $he has to spread her big buttcheeks to let an air jet dry between them.) + how $he has to spread $his big buttcheeks to let an air jet dry between them.) <<elseif ($activeSlave.labia > 0)>> - how one of the air jets creates some motion in her generous labia.) + how one of the air jets creates some motion in $his generous labia.) <<elseif ($activeSlave.muscles > 5)>> - how the air jets make her taut abs look even more impressive.) + how the air jets make $his taut abs look even more impressive.) <<else>> $his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>engorge<</if>> under the air jets.) <</if>> - As $he rotates, <<if canSee($activeSlave)>>$he notices you with a start and looks concerned, but you do your best to look reassuring and beckon<<else>>you gently call her name. $He jumps at the sound of your voice and looks concerned, but you do your best to calm $him and gingerly coax<</if>> her out of the shower. + As $he rotates, <<if canSee($activeSlave)>>$he notices you with a start and looks concerned, but you do your best to look reassuring and beckon<<else>>you gently call $his name. $He jumps at the sound of your voice and looks concerned, but you do your best to calm $him and gingerly coax<</if>> $him out of the shower. <br><br> - You ask her what's troubling $him, and the look of concern returns. Suspecting that $he's afraid of telling the truth, you gently encourage $him to be honest, and assure $him that you're simply taking an interest in her well-being. $He still hesitates, but eventually sniffles a little and + You ask $him what's troubling $him, and the look of concern returns. Suspecting that $he's afraid of telling the truth, you gently encourage $him to be honest, and assure $him that you're simply taking an interest in $his well-being. $He still hesitates, but eventually sniffles a little and <<if !canTalk($activeSlave)>> reluctantly gestures, <<elseif SlaveStatsChecker.checkForLisp($activeSlave)>> @@ -7320,23 +7321,23 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> "<<S>>orry, <<Master>>. I wa<<s>> ju<<s>>t r-remembering, b-before - all thi<<s>>." <</if>> -You tell her kindly that you understand, and that $he'll be trained to address this. Then, you turn and go. $He's mystified; though $he's not overjoyed by the promise of correction, $he finds $himself @@.hotpink;less resistant@@ to following your plans. +You tell $him kindly that you understand, and that $he'll be trained to address this. Then, you turn and go. $He's mystified; though $he's not overjoyed by the promise of correction, $he finds $himself @@.hotpink;less resistant@@ to following your plans. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Use her when $he gets out">> +<br><<link "Use $him when $he gets out">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Eventually $he finishes and switches the shower to dry. The airflow dries $him and $he steps out, but as $he does, $he's seized and flung over the countertop with a slap as her naked, $activeSlave.skin <<if $activeSlave.belly >= 5000>> _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>skin<</if>> hits the surface. + Eventually $he finishes and switches the shower to dry. The airflow dries $him and $he steps out, but as $he does, $he's seized and flung over the countertop with a slap as $his naked, $activeSlave.skin <<if $activeSlave.belly >= 5000>> _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>skin<</if>> hits the surface. <<if $activeSlave.vagina > -1 && !canDoVaginal($activeSlave)>> - With her chastity belt protecting $his pussy, you ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass instead, drawing a pained sob. + With $his chastity belt protecting $his pussy, you ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass instead, drawing a pained sob. <<elseif $activeSlave.vagina == -1>> You ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob. <<else>> - You take her silly cunt just long enough to force a few gasps out of her before you pull out and ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob. + You take $his silly cunt just long enough to force a few gasps out of $him before you pull out and ram <<if $PC.dick == 0>>your vibrating strap-on<<else>>yourself<</if>> up $his ass, drawing a pained sob. <</if>> - As $he takes the pounding sullenly, <<if canSee($activeSlave)>>$he has a direct view of her own eyes in the mirror, and clearly @@.gold;is disturbed by what $he sees.@@<<elseif canHear($activeSlave)>>$he can hear nothing but the sound of her brutal rape, and clearly @@.gold;is disturbed by what $he hears.@@<<else>>her blindness and deafness mean that one of the few things $he can feel is her own rape, which @@.gold;disturbs $him to no end.@@<</if>> + As $he takes the pounding sullenly, <<if canSee($activeSlave)>>$he has a direct view of $his own eyes in the mirror, and clearly @@.gold;is disturbed by what $he sees.@@<<elseif canHear($activeSlave)>>$he can hear nothing but the sound of $his brutal rape, and clearly @@.gold;is disturbed by what $he hears.@@<<else>>$his blindness and deafness mean that one of the few things $he can feel is $his own rape, which @@.gold;disturbs $him to no end.@@<</if>> <<set $activeSlave.trust -= 5>> <<= BothVCheck()>> <</replace>> @@ -7348,28 +7349,28 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Abuse $his ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on her face, but you seize her shoulder and spin her back around without a word. You drag her across the counter until her face is over the sink, and turn it on. $He struggles in sheer incomprehension as you hold her head over the filling basin with one hand and roughly grope $his butt with the other. When the sink is full, you tell $him to spread $his buttocks for you like a good butthole bitch. $He hesitates, so you push her face under the surface of the water and hold it there until $he complies. You shove <<if $PC.dick == 0>>a dildo<<else>>your member<</if>> up $his anus so harshly that $he spasms and reflexively tries to get away, so you push her under again until $he stops struggling. For the next ten minutes, $he gets shoved under water whenever $he offers the slightest resistance to anal rape. Soon, her tears are pattering down into the sink. The next time you decide to buttfuck $him, $he's @@.gold;compliant from sheer terror.@@ + $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but you seize $his shoulder and spin $his back around without a word. You drag $him across the counter until $his face is over the sink, and turn it on. $He struggles in sheer incomprehension as you hold $his head over the filling basin with one hand and roughly grope $his butt with the other. When the sink is full, you tell $him to spread $his buttocks for you like a good butthole bitch. $He hesitates, so you push $his face under the surface of the water and hold it there until $he complies. You shove <<if $PC.dick == 0>>a dildo<<else>>your member<</if>> up $his anus so harshly that $he spasms and reflexively tries to get away, so you push $him under again until $he stops struggling. For the next ten minutes, $he gets shoved under water whenever $he offers the slightest resistance to anal rape. Soon, $his tears are pattering down into the sink. The next time you decide to buttfuck $him, $he's @@.gold;compliant from sheer terror.@@ <<set $activeSlave.trust -= 5>> <<= AnalVCheck()>> <</replace>> <</link>> -<br><<link "Reassure her of her sexual worth">> +<br><<link "Reassure $him of $his sexual worth">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on her face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss her unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You gently turn her around to face the mirror again, and working from the top of her head, describe $his body in minute detail, explaining how pretty and valuable a sex slave $he is. When you're about to reach $his butt, + $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You gently turn $him around to face the mirror again, and working from the top of $his head, describe $his body in minute detail, explaining how pretty and valuable a sex slave $he is. When you're about to reach $his butt, <<if canTalk($activeSlave)>> $he uses gestures to beg you not to assrape $him. <<else>> <<if ($activeSlave.lips > 70)>> - $he begs meekly through her massive dick-sucking lips, + $he begs meekly through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - $he begs meekly through her mouthful of piercings, + $he begs meekly through $his mouthful of piercings, <<else>> $he begs meekly, <</if>> "<<Master>>, plea<<s>>e, plea<<s>>e don't a<<ss>>rape me. I don't think I can take it." <</if>> - You patiently explain that taking <<if $PC.dick == 0>>anything you feel like inserting into $his backdoor<<else>>your cock<</if>> is her duty, and begin to massage her sphincter open with a single gentle finger. $He doesn't enjoy the ensuing assfuck, but $he doesn't truly hate it either and @@.hotpink;begins to hope@@ that being your butt slave won't be so painful after all. + You patiently explain that taking <<if $PC.dick == 0>>anything you feel like inserting into $his backdoor<<else>>your cock<</if>> is $his duty, and begin to massage $his sphincter open with a single gentle finger. $He doesn't enjoy the ensuing assfuck, but $he doesn't truly hate it either and @@.hotpink;begins to hope@@ that being your butt slave won't be so painful after all. <<set $activeSlave.devotion += 4>> <<set $skillIncrease = 10>><<AnalSkillIncrease $activeSlave>> <<= AnalVCheck()>> @@ -7378,7 +7379,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Comfort $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on her face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss her unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You run your hands along $his body and kiss her deeply for a long while before reassuring her of her value to you. $He looks confused, but goes about her business with dry eyes. $He hates you a little less, but wonders whether $he can get away with retaining some independence. + $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on $his face, but is surprised by <<if canSee($activeSlave)>>your gentle expression<<else>>by how calm your steps seem<</if>>. $He's more shocked still when you give $him a reassuring hug and kiss $his unresisting mouth. $He's so unable to figure out what's happening that $he eventually gives up and relaxes into you. You run your hands along $his body and kiss $his deeply for a long while before reassuring $his of $his value to you. $He looks confused, but goes about $his business with dry eyes. $He hates you a little less, but wonders whether $he can get away with retaining some independence. <</replace>> <</link>> @@ -7422,7 +7423,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t After the patrons have their way with $him, @@.lime;both $his pussy and asshole have been broken in.@@ $He @@.mediumorchid;hates@@ losing $his virginities in such an indignified manner and @@.gold;fears@@ what will be taken from $him next. <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++, $activeSlave.anus++>> <<elseif $activeSlave.vagina == 0>> - After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing her virginity in such an indignified manner and @@.gold;fears@@ what will be taken from her next. + After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an indignified manner and @@.gold;fears@@ what will be taken from $him next. <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>> <<elseif $activeSlave.anus == 0>> After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an indignified manner and @@.gold;fears@@ what will be taken from $him next. @@ -7433,7 +7434,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if $activeSlave.vagina == 0>> - After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing her virginity in such an indignified manner and @@.gold;fears@@ what will be taken from her next. + After the patrons have their way with $him, @@.lime;$he's certainly no longer a virgin.@@ $He @@.mediumorchid;hates@@ losing $his virginity in such an indignified manner and @@.gold;fears@@ what will be taken from $him next. <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.vagina++>> <</if>> <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> @@ -7443,7 +7444,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif canDoAnal($activeSlave)>> <<set $activeSlave.analCount += 10, $analTotal += 10, $activeSlave.publicCount += 10>> <<if $activeSlave.anus == 0>> - After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing her anal virginity in such an indignified manner and @@.gold;fears@@ what will be taken from her next. + After the patrons have their way with $him, @@.lime;$he's certainly no longer an anal virgin.@@ $He @@.mediumorchid;hates@@ losing $his anal virginity in such an indignified manner and @@.gold;fears@@ what will be taken from $him next. <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5, $activeSlave.anus++>> <<if canGetPregnant($activeSlave) && $activeSlave.eggType == "human">> <<= knockMeUp($activeSlave, 50, 1, -2, 1)>> @@ -7464,17 +7465,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.weight >= 190)>> $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle. <<elseif ($activeSlave.weight >= -10)>> $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> - $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. + $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> $His weak body makes immuring $him in the arcade pathetically easy. <<else>> $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -7486,7 +7487,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Just confine would-be escapee to prevent future attempts">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $activeSlave.slaveName confined until further notice. $activeSlave.slaveName is @@.hotpink;a little crushed@@ by her failure to escape. However, every single one of your other slaves not already obedient to you is slightly @@.mediumaquamarine;encouraged in her trust that you won't hurt her@@ by this moderate punishment of an escape attempt. + You order $activeSlave.slaveName confined until further notice. $activeSlave.slaveName is @@.hotpink;a little crushed@@ by $his failure to escape. However, every single one of your other slaves not already obedient to you is slightly @@.mediumaquamarine;encouraged in $his trust that you won't hurt $him@@ by this moderate punishment of an escape attempt. <<set $activeSlave.devotion += 4>> <<= assignJob($activeSlave, "stay confined")>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust += 4; } })>> @@ -7495,7 +7496,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Flog the would-be escapee">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Lesser whippings are usually performed by binding a slave's hands and then securing them to the ceiling so that $he will dance titillatingly when struck. This is not such a beating. You tie $activeSlave.slaveName to a wall by her wrists and ankles and flog her with workmanlike thoroughness<<if $activeSlave.pregKnown == 1>>, making sure to avoid accidentally ending $his pregnancy<</if>>. $He passes from angry struggles to agonized sobbing and finally to bloody, exhausted weeping before you untie her now-limp form and apply first aid. $activeSlave.slaveName's rebelliousness is @@.gold;dulled by the experience,@@ and her @@.red;health is damaged.@@ Furthermore, every single one of your other slaves not already obedient to you is @@.gold;frightened@@ by the example set. + Lesser whippings are usually performed by binding a slave's hands and then securing them to the ceiling so that $he will dance titillatingly when struck. This is not such a beating. You tie $activeSlave.slaveName to a wall by $his wrists and ankles and flog $him with workmanlike thoroughness<<if $activeSlave.pregKnown == 1>>, making sure to avoid accidentally ending $his pregnancy<</if>>. $He passes from angry struggles to agonized sobbing and finally to bloody, exhausted weeping before you untie $his now-limp form and apply first aid. $activeSlave.slaveName's rebelliousness is @@.gold;dulled by the experience,@@ and $his @@.red;health is damaged.@@ Furthermore, every single one of your other slaves not already obedient to you is @@.gold;frightened@@ by the example set. <<set $activeSlave.trust -= 5, $activeSlave.health -= 40>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>> <</replace>> @@ -7503,7 +7504,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Clip the would-be escapee's tendons">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;saddened@@ and @@.gold;frightened@@ by this punishment, and her @@.red;health is damaged@@ by the surgery. Every single one of your other slaves with any resistance left in them is @@.gold;sensibly restrained@@ from trying such rash acts. + The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;saddened@@ and @@.gold;frightened@@ by this punishment, and $his @@.red;health is damaged@@ by the surgery. Every single one of your other slaves with any resistance left in them is @@.gold;sensibly restrained@@ from trying such rash acts. <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5, $activeSlave.health -= 10, $activeSlave.heels = 1>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>> <</replace>> @@ -7512,7 +7513,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Amputate the would-be escapee's limbs">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and her @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. + The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 40, $activeSlave.amp = 1, $activeSlave.shoes = "none", $activeSlave.diet = "healthy", $activeSlave.heels = 0>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>> <</replace>> @@ -7521,7 +7522,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Blind the would-be escapee">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. You make sure to point out all the things $he'll never get to see again. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and her @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. + The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, weeping form through the penthouse to the surgery. You make sure to point out all the things $he'll never get to see again. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 20, $activeSlave.eyes = -2, $activeSlave.eyeColor = "dulled " + $activeSlave.eyeColor>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>> <</replace>> @@ -7531,7 +7532,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Mute the would-be escapee">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, protesting form through the penthouse to the surgery. $He is allowed one last chance to verbally resist you, plead with you, and finally to beg with you, all in vain. $activeSlave.slaveName is @@.mediumorchid;filled with hatred@@ and @@.gold;terror@@ by this harsh punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.hotpink;terrified@@ by the example set. + The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag $his struggling, protesting form through the penthouse to the surgery. $He is allowed one last chance to verbally resist you, plead with you, and finally to beg with you, all in vain. $activeSlave.slaveName is @@.mediumorchid;filled with hatred@@ and @@.gold;terror@@ by this harsh punishment, and $his @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.hotpink;terrified@@ by the example set. <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 25, $activeSlave.health -= 10, $activeSlave.voice = 0>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>> <</replace>> @@ -7544,15 +7545,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Extirpate this foolishness with pain">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You seize $him and begin to bind $him for appropriate punishment. $activeSlave.slaveName does not resist you physically at first. $He finds $himself tied bent over your desk, face down, with $his arms locked behind her<<if $activeSlave.belly >= 1500>> and $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly hanging off the edge<</if>>. $He struggles a little when you insert your cock into her <<if ($activeSlave.anus == 1)>>poor little anus<<elseif ($activeSlave.anus == 2)>>whore's butt<<else>>gaping rear end<</if>>, but her real agony begins when you place $his arms in an inescapable joint lock and apply a little pressure. It doesn't damage $him, but it easily causes more pain than $he is capable of resisting. $He does a little dance within her bindings, squealing and involuntarily clenching you nicely with her anal ring. You require $him to recite the litany "My name i<<s>> <<print _slavename>>!", coaching her with alternate orders and agonizing correction until $he's screaming every word at the top of her lungs in an endless wail. $His screeching rises and falls as $he feels the burning sensation of your merciless use of $his ass, but $he works her lungs hard to avoid as much pain as $he can. When you've climaxed and cast off her bindings, you make her repeat her name one last time as $he stiffly rubs her abused arms and anus. $He does, @@.gold;without hesitation.@@ + You seize $him and begin to bind $him for appropriate punishment. $activeSlave.slaveName does not resist you physically at first. $He finds $himself tied bent over your desk, face down, with $his arms locked behind $him<<if $activeSlave.belly >= 1500>> and $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly hanging off the edge<</if>>. $He struggles a little when you insert your cock into $his <<if ($activeSlave.anus == 1)>>poor little anus<<elseif ($activeSlave.anus == 2)>>whore's butt<<else>>gaping rear end<</if>>, but $his real agony begins when you place $his arms in an inescapable joint lock and apply a little pressure. It doesn't damage $him, but it easily causes more pain than $he is capable of resisting. $He does a little dance within $his bindings, squealing and involuntarily clenching you nicely with $his anal ring. You require $him to recite the litany "My name i<<s>> <<print _slavename>>!", coaching $him with alternate orders and agonizing correction until $he's screaming every word at the top of $his lungs in an endless wail. $His screeching rises and falls as $he feels the burning sensation of your merciless use of $his ass, but $he works $his lungs hard to avoid as much pain as $he can. When you've climaxed and cast off $his bindings, you make $him repeat $his name one last time as $he stiffly rubs $his abused arms and anus. $He does, @@.gold;without hesitation.@@ <<set $activeSlave.trust -= 5>> <<= AnalVCheck()>> <</replace>> <</link>> -<br><<link "Allow $him to resume her birth name, but make it publicly humiliating">> +<br><<link "Allow $him to resume $his birth name, but make it publicly humiliating">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, and $he soon finds that her fears are not unjustified. You bring her out to <<if $club>>$clubName<<else>>a public club<</if>>, and explain with equanimity that $he has two choices: $he can either introduce $himself to strangers by name and offer them free oral sex, or $he can be whipped until $he introduces $himself to strangers by name and offers them free oral sex. $His lip quivers a little, but $he stumbles over to a nearby group of local worthies and whimpers hesitantly, "H-hi, my name i<<s>> <<print _name>>, can I <<s>>uck you off, plea<<s>>e?" They laugh, and understanding the situation perfectly, give you a @@.green;grateful wave@@ even as their leader pushes $him to $his knees. For the rest of the week, $he's seeing to $his duties, sleeping, or blowing strangers after telling them her name. Though $he has reassumed her birth name, it is @@.gold;no longer any source of independence to $him.@@ + You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, and $he soon finds that $his fears are not unjustified. You bring $him out to <<if $club>>$clubName<<else>>a public club<</if>>, and explain with equanimity that $he has two choices: $he can either introduce $himself to strangers by name and offer them free oral sex, or $he can be whipped until $he introduces $himself to strangers by name and offers them free oral sex. $His lip quivers a little, but $he stumbles over to a nearby group of local worthies and whimpers hesitantly, "H-hi, my name i<<s>> <<print _name>>, can I <<s>>uck you off, plea<<s>>e?" They laugh, and understanding the situation perfectly, give you a @@.green;grateful wave@@ even as their leader pushes $him to $his knees. For the rest of the week, $he's seeing to $his duties, sleeping, or blowing strangers after telling them $his name. Though $he has reassumed $his birth name, it is @@.gold;no longer any source of independence to $him.@@ <<set $rep += 100>> <<set $activeSlave.trust -= 5, $activeSlave.oralCount += 50, $activeSlave.publicCount += 50, $activeSlave.slaveName = $activeSlave.birthName>> <<set $oralTotal += 50>> @@ -7569,17 +7570,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.weight >= 190)>> $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle. <<elseif ($activeSlave.weight >= -10)>> $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> - $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. + $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> $His weak body makes immuring $him in the arcade pathetically easy. <<else>> $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -7588,23 +7589,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "bondage gear">> -<<link "Let her go naked">> +<<link "Let $him go naked">> <<EventNameDelink $activeSlave>> <<replace "#result">> - <<if $activeSlave.amp != 1>>$He skips away happily,<<else>>$He wriggles her stumps with pleasure,<</if>> overjoyed to be free of the clothing you ordered $him to wear. $His obedience to you @@.mediumorchid;has decreased,@@ as has @@.mediumaquamarine;her fear@@ of you. + <<if $activeSlave.amp != 1>>$He skips away happily,<<else>>$He wriggles $his stumps with pleasure,<</if>> overjoyed to be free of the clothing you ordered $him to wear. $His obedience to you @@.mediumorchid;has decreased,@@ as has @@.mediumaquamarine;$his fear@@ of you. <<set $activeSlave.devotion -= 5, $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Force $him to choose between her straps and public nudity">> +<br><<link "Force $him to choose between $his straps and public nudity">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that you understand, and that $he can go naked; $he looks thrilled until you tell her $he'll be walking every hallway in $arcologies[0].name today, nude. Before $he can protest, you add that her only other option is to put her proper clothes back on and be a good little bitch. + You tell $him that you understand, and that $he can go naked; $he looks thrilled until you tell $him $he'll be walking every hallway in $arcologies[0].name today, nude. Before $he can protest, you add that $his only other option is to put $his proper clothes back on and be a good little bitch. <<if $activeSlave.fetish == "humiliation">> $He @@.hotpink;happily accepts the alternative,@@ <<if canAchieveErection($activeSlave) && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - her dick hardening + $his dick hardening <<elseif $activeSlave.dick > 0>> - her dick leaking precum + $his dick leaking precum <<elseif $activeSlave.vagina > 0>> $his pussy moistening <<else>> @@ -7617,27 +7618,27 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.fetishKnown = 1>> <</if>> <<else>> - $He shudders and @@.gold;hurries to get her straps back on.@@ + $He shudders and @@.gold;hurries to get $his straps back on.@@ <<set $activeSlave.trust -= 5>> <</if>> <</replace>> <</link>> <<if $activeSlave.buttPlug == "none" && ($activeSlave.vagina < 0 || $activeSlave.vaginalAccessory == "none")>> -<br><<link "Add dildos to her gear">> +<br><<link "Add dildos to $his gear">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that you understand, and that you will get her some new clothing. $He is thrilled, but her pleasure turns to horror when $he sees that the new clothes are a version of the same slave bondage gear, just with inward-facing dildos for her <<if $activeSlave.vagina > -1>>pussy and <</if>> asshole. + You tell $him that you understand, and that you will get $him some new clothing. $He is thrilled, but $his pleasure turns to horror when $he sees that the new clothes are a version of the same slave bondage gear, just with inward-facing dildos for $his <<if $activeSlave.vagina > -1>>pussy and <</if>> asshole. <<if $activeSlave.anus == 0 || $activeSlave.vagina == 0>> - You pause before getting her dressed; there's little reason to waste virginities on plugs. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend her over, opting to start with her tight pussy. + You pause before getting $him dressed; there's little reason to waste virginities on plugs. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over, opting to start with $his tight pussy. <<= BothVCheck()>> <<elseif $activeSlave.anus == 0>> - You pause before getting her dressed; there's little reason to waste her anal virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend her over before working your way into her tight anus. + You pause before getting $him dressed; there's little reason to waste $his anal virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight anus. <<= AnalVCheck()>> <<elseif $activeSlave.vagina == 0>> - You pause before getting her dressed; there's little reason to waste her virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend her over before working your way into her tight pussy. + You pause before getting $him dressed; there's little reason to waste $his virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strap-on<</if>> and bend $him over before working your way into $his tight pussy. <<= VaginalVCheck()>> <</if>> - For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> her <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly >= 1500>>is<</if>> being penetrated by her own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into $his _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@ + For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> $his <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly >= 1500>>is<</if>> being penetrated by $his own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into $his _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@ <</replace>> <<set $activeSlave.devotion += 4>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> @@ -7652,17 +7653,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.weight >= 190)>> $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle. <<elseif ($activeSlave.weight >= -10)>> $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> - $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. + $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> $His weak body makes immuring $him in the arcade pathetically easy. <<else>> $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -7684,29 +7685,29 @@ You tell her kindly that you understand, and that $he'll be trained to address t $he's standing upright with $his ass in the air. <<else>> <<if $activeSlave.belly >= 300000>> - You carefully balance the protesting, defenseless torso atop her own _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>. + You carefully balance the protesting, defenseless torso atop $his own _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>. <<elseif $activeSlave.belly >= 5000>> You place the protesting, defenseless torso on your lap, face down with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly between your legs. <<else>> You place the protesting, defenseless torso on your desk, face down. <</if>> <</if>> - You spank her severely, leaving her buttocks bright pink. $He must count the strokes or have her punishment start over. Sobbing, $he counts + You spank $him severely, leaving $his buttocks bright pink. $He must count the strokes or have $his punishment start over. Sobbing, $he counts <<if ($activeSlave.lips > 70)>> - through her massive dick-sucking lips, + through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - through her inconvenient oral piercings + through $his inconvenient oral piercings <</if>> "<<S>>ix, AAGHHH, <<S>>even, AAGHHH, <<S>>even" - and then realizes her mistake and begs for mercy - in vain, of course. You finish her off with a rough + and then realizes $his mistake and begs for mercy - in vain, of course. You finish $him off with a rough <<if canDoVaginal($activeSlave)>> - fuck, with her jerking against her restraints every time you stroke into her sore buttocks. + fuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave)>> - assfuck, with her jerking against her restraints every time you stroke into her sore buttocks. + assfuck, with $him jerking against $his restraints every time you stroke into $his sore buttocks. <<= AnalVCheck()>> <<else>> - throatfuck, with her jerking against her restraints every time you hilt yourself and slap $his ass. + throatfuck, with $him jerking against $his restraints every time you hilt yourself and slap $his ass. <<set $activeSlave.oralCount++, $oralTotal++>> <</if>> @@.gold;$He learns from the experience.@@ @@ -7717,15 +7718,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Sentence $him to public use">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $he <<if canSee($activeSlave)>>sees $he's being taken to a sex booth<<elseif canHear($activeSlave)>>hears the sounds of a public sex parlor<<else>>finally figures out her destination<</if>>, $he begins to cry. $He begs + When $he <<if canSee($activeSlave)>>sees $he's being taken to a sex booth<<elseif canHear($activeSlave)>>hears the sounds of a public sex parlor<<else>>finally figures out $his destination<</if>>, $he begins to cry. $He begs <<if ($activeSlave.lips > 70)>> - through her massive dick-sucking lips, + through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - through her inconvenient oral piercings, + through $his inconvenient oral piercings, <<else>> - through her tears, + through $his tears, <</if>> - "Plea<<s>>e, no, <<Master>>, I'll be good-" but is cut off when the machine closes around her head. It will offer her + "Plea<<s>>e, no, <<Master>>, I'll be good-" but is cut off when the machine closes around $his head. It will offer $his <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> ass and pussy <<elseif canDoAnal($activeSlave)>> @@ -7733,7 +7734,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pussy <</if>> - to anyone who pays for the rest of the week, and keep her fed and cleaned. $His world will become nothing but silent, featureless darkness and dick. You earn some money off $him, and by the end of the night her + to anyone who pays for the rest of the week, and keep $his fed and cleaned. $His world will become nothing but silent, featureless darkness and dick. You earn some money off $him, and by the end of the night $his <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> holes get <<else>> @@ -7742,11 +7743,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t well stretched. @@.hotpink;$He learns from the experience.@@ <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - @@.lime;$He's lost both her virginity and anal cherry.@@ + @@.lime;$He's lost both $his virginity and anal cherry.@@ <<elseif $activeSlave.vagina == 0>> - @@.lime;$He's lost her virginity.@@ + @@.lime;$He's lost $his virginity.@@ <<elseif $activeSlave.anus == 0>> - @@.lime; $He's lost her anal cherry.@@ + @@.lime; $He's lost $his anal cherry.@@ <</if>> <<set $activeSlave.vagina++, $activeSlave.anus++, $activeSlave.vaginalCount += 10, $vaginalTotal += 10, $activeSlave.analCount += 10, $analTotal += 10>> <<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>> @@ -7754,7 +7755,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<elseif canDoAnal($activeSlave)>> <<if $activeSlave.anus == 0>> - @@.lime; $He's lost her anal cherry.@@ + @@.lime; $He's lost $his anal cherry.@@ <</if>> <<set $activeSlave.anus++, $activeSlave.analCount += 20, $analTotal += 20>> <<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>> @@ -7762,7 +7763,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if $activeSlave.vagina == 0>> - @@.lime;$He's lost her virginity.@@ + @@.lime;$He's lost $his virginity.@@ <</if>> <<set $activeSlave.vagina++, $activeSlave.vaginalCount += 20, $vaginalTotal += 20>> <<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>> @@ -7787,17 +7788,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Publicly prove the depths of $his humiliation to $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You drag a fearful, embarrassed<<if $activeSlave.belly >= 1500>>, <<if $activeSlave.bellyPreg >= 0>>pregnant<<else>>swollen<</if>><</if>> and totally naked $activeSlave.slaveName out into a public hall. A small knot of passersby gather around grinning, enjoying the sight of her nakedness and anticipating a show. To her surprise, you order $him to take a few minutes to recount her life story. $He's hesitant at first, but obeys, only realizing as $he nears the present day what an abject story of degradation and humiliation her life truly is. $He continues shakily, describing in brief her current life, crying a little and trembling with arousal. At a whispered command from you, $he concludes + You drag a fearful, embarrassed<<if $activeSlave.belly >= 1500>>, <<if $activeSlave.bellyPreg >= 0>>pregnant<<else>>swollen<</if>><</if>> and totally naked $activeSlave.slaveName out into a public hall. A small knot of passersby gather around grinning, enjoying the sight of $his nakedness and anticipating a show. To $his surprise, you order $him to take a few minutes to recount $his life story. $He's hesitant at first, but obeys, only realizing as $he nears the present day what an abject story of degradation and humiliation $his life truly is. $He continues shakily, describing in brief $his current life, crying a little and trembling with arousal. At a whispered command from you, $he concludes <<if !canTalk($activeSlave)>> in embarrassed gestures, "and now my <<= WrittenMaster()>> is going to fuck my worthless body in public." <<else>> "and now my <<Master>> i<<s>> going to fuck my worthle<<ss>> body in public." <</if>> - You take her standing there, as $he cries with mixed shame and sexual pleasure. + You take $him standing there, as $he cries with mixed shame and sexual pleasure. <<if !canDoVaginal($activeSlave)>> $He <<if ($activeSlave.dick > 0)>>cums even though $he's soft<<else>>climaxes even though $he's filled<</if>> with the shame, <<if $PC.dick == 0>>$his anus clenching around the strap-on you're pumping in and out of it<<else>>adding a sad little dribble to the load dripping out of $his asshole<</if>>. <<else>> - <<if $PC.dick == 0>>You make her clean her pussyjuice off your strap-on with her bitch mouth before you take it off.<<else>>As you pull out of her clenching pussy, cum runs down her quavering thighs.<</if>> + <<if $PC.dick == 0>>You make $him clean $his pussyjuice off your strap-on with $his bitch mouth before you take it off.<<else>>As you pull out of $his clenching pussy, cum runs down $his quavering thighs.<</if>> <</if>> @@.hotpink;$He has become more submissive to you,@@ and @@.green;your reputation has increased.@@ <<set $activeSlave.devotion += 4>> @@ -7812,13 +7813,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Use a bait and switch tactic on $him, before public use">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You instruct $him to get cleaned up and get dressed in her nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking her out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName $his real orders for the evening. $He freezes in terror but eventually makes $his way up to the stage, strips in front of all the patrons, and says + You instruct $him to get cleaned up and get dressed in $his nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking $him out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName $his real orders for the evening. $He freezes in terror but eventually makes $his way up to the stage, strips in front of all the patrons, and says <<if !canTalk($activeSlave)>> in embarrassed gestures, "please use me, I'm cheap." <<else>> "One credit per fuck, if you'll do my worthle<<ss>> body on <<s>>tage." <</if>> - By the end of the night, $he's been fucked by almost everyone in the bar, and $his itch for humiliation has been well and truly scratched. As you collect her earnings from the thoroughly pleased bartender, $he lies quiescent in a puddle of cum and exhaustion. @@.yellowgreen;You've collected a decent fee,@@ and @@.green;your reputation has increased.@@ + By the end of the night, $he's been fucked by almost everyone in the bar, and $his itch for humiliation has been well and truly scratched. As you collect $his earnings from the thoroughly pleased bartender, $he lies quiescent in a puddle of cum and exhaustion. @@.yellowgreen;You've collected a decent fee,@@ and @@.green;your reputation has increased.@@ <<set $rep += 100>> <<set $cash += 100>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> @@ -7845,18 +7846,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Nothing, $he'll crawl for the rest of the week">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He is surprised <<if canSee($activeSlave)>>to see the box is empty<<else>>when $he reaches into the and finds nothing<</if>>. By the time $he realizes what this means, you've confiscated her old heels and seated yourself at your desk. Ordered to suck, $he comes gingerly over on all fours<<if $activeSlave.belly >= 100000>>, $his belly dragging along the floor,<<elseif $activeSlave.belly >= 10000>>, her swollen belly getting in her way,<</if>> and gets you off with her whore's mouth. The rest of the week is a trying experience for $him. The most comfortable posture for $him to walk along in on all fours displays her + $He is surprised <<if canSee($activeSlave)>>to see the box is empty<<else>>when $he reaches into the and finds nothing<</if>>. By the time $he realizes what this means, you've confiscated $his old heels and seated yourself at your desk. Ordered to suck, $he comes gingerly over on all fours<<if $activeSlave.belly >= 100000>>, $his belly dragging along the floor,<<elseif $activeSlave.belly >= 10000>>, $his swollen belly getting in $his way,<</if>> and gets you off with $his whore's mouth. The rest of the week is a trying experience for $him. The most comfortable posture for $him to walk along in on all fours displays $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> holes nicely and you frequently avail yourself to which ever is more tempting at the time. <<= BothVCheck(5, 5)>> <<elseif canDoVaginal($activeSlave)>> - pussy nicely, so $he gets it in her feminine fold a lot. + pussy nicely, so $he gets it in $his feminine fold a lot. <<= VaginalVCheck(10)>> <<else>> - anus nicely, so $he gets it up her <<if $seeRace == 1>>$activeSlave.race <</if>>ass a lot. + anus nicely, so $he gets it up $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass a lot. <<= AnalVCheck(10)>> <</if>> - <<if $activeSlave.dick != 0>>The effort it takes to move usually keeps her dick soft as $he does, so it flops around beneath her all week.<</if>> + <<if $activeSlave.dick != 0>>The effort it takes to move usually keeps $his dick soft as $he does, so it flops around beneath $him all week.<</if>> @@.hotpink;$He has become more submissive to you.@@ <<set $activeSlave.devotion += 4, $activeSlave.shoes = "none">> <</replace>> @@ -7864,15 +7865,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Pretty heels, we're going out">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You have an appointment, and $activeSlave.slaveName gets to be your arm candy. $He's almost beside $himself with pride when you leave the penthouse and head out into the warm sun. You have to walk slowly so $he can keep her feet and still keep up, since you've taken the unusual step of rewarding $him by letting her walk under your arm. To avoid giving the impression that the $girl on your arm isn't a slave, $he's naked except for her lovely heels. As $he minces along $his breasts + You have an appointment, and $activeSlave.slaveName gets to be your arm candy. $He's almost beside $himself with pride when you leave the penthouse and head out into the warm sun. You have to walk slowly so $he can keep $his feet and still keep up, since you've taken the unusual step of rewarding $him by letting $him walk under your arm. To avoid giving the impression that the $girl on your arm isn't a slave, $he's naked except for $his lovely heels. As $he minces along $his breasts <<if $activeSlave.bellyFluid >= 5000>> - jiggle delightfully alongside her <<print $activeSlave.inflationType>>-filled belly + jiggle delightfully alongside $his <<print $activeSlave.inflationType>>-filled belly <<elseif $activeSlave.belly >= 5000>> - jiggle delightfully atop her gravid belly + jiggle delightfully atop $his gravid belly <<else>> sway freely <</if>> - and draw the respectful admiration of onlookers. <<if $activeSlave.dick != 0>>Most of the female onlookers and some of the men also spare an eye for her swinging dick. <</if>>@@.mediumaquamarine;$His trust in you has increased.@@ + and draw the respectful admiration of onlookers. <<if $activeSlave.dick != 0>>Most of the female onlookers and some of the men also spare an eye for $his swinging dick. <</if>>@@.mediumaquamarine;$His trust in you has increased.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -7880,7 +7881,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Heels for an anal slut">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName is a little perplexed to find that the heels look quite normal, though they're very tall. When $he tries them on, however, standing requires $him to splay $his hips slightly so that her <<if $seeRace == 1>>$activeSlave.race <</if>>butt is a little spread even when $he stands upright. What's more, the heels are tall to raise $his butt to the exact level <<if $PC.dick == 0>>a strap-on is at when you wear one and<<else>>your cock is at<</if>> when you stand behind $him. When you start demonstrating the advantages of this to $him, the heels detect that the wearer is being fucked, begin to play a light show, and start playing a heavy beat in time with your thrusts. $He would laugh if $he weren't concentrating on the buttsex. @@.hotpink;$His submission to you has increased.@@ + $activeSlave.slaveName is a little perplexed to find that the heels look quite normal, though they're very tall. When $he tries them on, however, standing requires $him to splay $his hips slightly so that $his <<if $seeRace == 1>>$activeSlave.race <</if>>butt is a little spread even when $he stands upright. What's more, the heels are tall to raise $his butt to the exact level <<if $PC.dick == 0>>a strap-on is at when you wear one and<<else>>your cock is at<</if>> when you stand behind $him. When you start demonstrating the advantages of this to $him, the heels detect that the wearer is being fucked, begin to play a light show, and start playing a heavy beat in time with your thrusts. $He would laugh if $he weren't concentrating on the buttsex. @@.hotpink;$His submission to you has increased.@@ <<set $activeSlave.devotion += 4>> <<= AnalVCheck()>> <</replace>> @@ -7889,10 +7890,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "heavy piercing">> -<<link "Weight her piercings and fuck her so they swing">> +<<link "Weight $his piercings and fuck $him so they swing">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to make sure all of her piercings have rings in them, and then come join you when $he's done. $He enters your office with a mixture of fear and curiosity on her face. You put her down on all fours with $his legs spread<<if $activeSlave.belly >= 50000>>, belly brushing the floor<</if>>, <<if canSee($activeSlave)>>blindfold $him, <</if>>and then start clipping little metal weights on short chains to each of her piercings. Before long, $his nipples are painfully stretched under the tugging, <<if ($activeSlave.dick > 0)>>and the weights up and down $his cock are causing her considerable discomfort.<<elseif $activeSlave.vagina == -1>>and though $he lacks any external genitalia to weight, you make sure $his ass feels the burn.<<else>>her pussylips are being pulled downward, and even $his clit is agonizingly tortured.<</if>> You fuck her thoroughly, pounding her so the weights swing. $He sobs and begs. @@.hotpink;$He has become more submissive to you.@@ + You order $him to make sure all of $his piercings have rings in them, and then come join you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You put $him down on all fours with $his legs spread<<if $activeSlave.belly >= 50000>>, belly brushing the floor<</if>>, <<if canSee($activeSlave)>>blindfold $him, <</if>>and then start clipping little metal weights on short chains to each of $his piercings. Before long, $his nipples are painfully stretched under the tugging, <<if ($activeSlave.dick > 0)>>and the weights up and down $his cock are causing $his considerable discomfort.<<elseif $activeSlave.vagina == -1>>and though $he lacks any external genitalia to weight, you make sure $his ass feels the burn.<<else>>$his pussylips are being pulled downward, and even $his clit is agonizingly tortured.<</if>> You fuck $him thoroughly, pounding $him so the weights swing. $He sobs and begs. @@.hotpink;$He has become more submissive to you.@@ <<set $activeSlave.devotion += 4>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -7901,17 +7902,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</replace>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> -<br><<link "Secure $him by her piercings for public use">> +<br><<link "Secure $him by $his piercings for public use">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to make sure all of her piercings have rings in them, and then come to you when $he's done. $He enters your office with a mixture of fear and curiosity on her face. You lead her outside and secure $him in a side hall so that $his ass is presented to anyone who takes interest. $He's forced to maintain this exact posture by a light chain between <<if $activeSlave.belly > 10000>>her popped navel and a ring on the ground.<<elseif ($activeSlave.dick > 0)>>her dickhead and a ring on the ground.<<elseif $activeSlave.vagina == -1>>$his nipples and a ring on the ground.<<else>>$his pussy and a ring on the ground.<</if>> You fuck $his ass to check the bondage; it's good. The chain is out of the way, and $he jerks and struggles amusingly to keep it from tugging her painfully. You pull out to leave her fucked butt with cum dribbling out of it, and leave $him to the tender mercies of the growing crowd. @@.green;The sadists among the public are duly grateful.@@ + You order $him to make sure all of $his piercings have rings in them, and then come to you when $he's done. $He enters your office with a mixture of fear and curiosity on $his face. You lead $him outside and secure $his in a side hall so that $his ass is presented to anyone who takes interest. $He's forced to maintain this exact posture by a light chain between <<if $activeSlave.belly > 10000>>$his popped navel and a ring on the ground.<<elseif ($activeSlave.dick > 0)>>$his dickhead and a ring on the ground.<<elseif $activeSlave.vagina == -1>>$his nipples and a ring on the ground.<<else>>$his pussy and a ring on the ground.<</if>> You fuck $his ass to check the bondage; it's good. The chain is out of the way, and $he jerks and struggles amusingly to keep it from tugging $him painfully. You pull out to leave $his fucked butt with cum dribbling out of it, and leave $him to the tender mercies of the growing crowd. @@.green;The sadists among the public are duly grateful.@@ <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - They take pleasure in claiming @@.lime;both her virginity and anal cherry.@@ + They take pleasure in claiming @@.lime;both $his virginity and anal cherry.@@ <<elseif $activeSlave.vagina == 0>> - They take pleasure in claiming @@.lime;her virginity.@@ + They take pleasure in claiming @@.lime;$his virginity.@@ <<elseif $activeSlave.anus == 0>> - They take pleasure in claiming @@.lime;her anal cherry.@@ + They take pleasure in claiming @@.lime;$his anal cherry.@@ <</if>> <<set $activeSlave.vagina++, $activeSlave.anus++, $activeSlave.publicCount += 10, $activeSlave.vaginalCount += 5, $vaginalTotal += 5, $activeSlave.analCount += 5, $analTotal += 5>> <<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>> @@ -7919,7 +7920,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<elseif canDoAnal($activeSlave)>> <<if $activeSlave.anus == 0>> - They take pleasure in claiming @@.lime;her anal cherry.@@ + They take pleasure in claiming @@.lime;$his anal cherry.@@ <</if>> <<set $activeSlave.anus++, $activeSlave.publicCount += 10, $activeSlave.analCount += 10, $analTotal += 10>> <<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>> @@ -7927,7 +7928,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if $activeSlave.vagina == 0>> - They take pleasure in claiming @@.lime;her virginity.@@ + They take pleasure in claiming @@.lime;$his virginity.@@ <</if>> <<set $activeSlave.vagina++, $activeSlave.publicCount += 10, $activeSlave.vaginalCount += 10, $vaginalTotal += 10>> <<if $activeSlave.eggType == "human" && canGetPregnant($activeSlave)>> @@ -7948,11 +7949,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t As a mute amputee $he communicates poorly, <<if $activeSlave.inflationType == "cum">> <<if $activeSlave.bellyFluid >= 10000>> - but $he sticks out her hugely bloated cum-belly and opens wide, her intent clear. + but $he sticks out $his hugely bloated cum-belly and opens wide, $his intent clear. <<elseif $activeSlave.bellyFluid >= 5000>> - but $he wiggles around so her cum-filled belly sloshes audibly before opening wide. + but $he wiggles around so $his cum-filled belly sloshes audibly before opening wide. <<else>> - but $he sticks out her cum-swollen belly and opens wide, her intent clear. + but $he sticks out $his cum-swollen belly and opens wide, $his intent clear. <</if>> <<else>> but $he does manage to look hungry. @@ -7960,51 +7961,51 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif !canTalk($activeSlave)>> <<if $activeSlave.inflationType == "cum">> <<if $activeSlave.bellyFluid >= 10000>> - $He strokes her hugely bloated cum-belly, makes a sign for "never," and then makes a sign for "enough." + $He strokes $his hugely bloated cum-belly, makes a sign for "never," and then makes a sign for "enough." <<elseif $activeSlave.bellyFluid >= 5000>> - $He jiggles her cum-filled belly lewdly, makes a sign for "need," and then makes a sign for "more." + $He jiggles $his cum-filled belly lewdly, makes a sign for "need," and then makes a sign for "more." <<else>> - $He pats her cum-swollen belly, makes a sign for "much," and then makes a sign for "room." + $He pats $his cum-swollen belly, makes a sign for "much," and then makes a sign for "room." <</if>> <<else>> - $He gestures at her<<if $activeSlave.belly >= 1500>> _belly<</if>> stomach, makes a sign for "full," and then makes a sign for "never." + $He gestures at $his<<if $activeSlave.belly >= 1500>> _belly<</if>> stomach, makes a sign for "full," and then makes a sign for "never." <</if>> <<else>> <<if $activeSlave.inflationType == "cum">> <<if $activeSlave.bellyFluid >= 10000>> - $He strokes her hugely bloated cum-belly, "Oh <<Master>>, I've had <<s>>o much cum already today, but I can't help my<<s>>elf if you're offering me even more. I'll find <<s>>ome room in there," + $He strokes $his hugely bloated cum-belly, "Oh <<Master>>, I've had <<s>>o much cum already today, but I can't help my<<s>>elf if you're offering me even more. I'll find <<s>>ome room in there," <<elseif $activeSlave.bellyFluid >= 5000>> - $He jiggles her cum-filled belly lewdly, "Oh <<Master>>, there'<<s>> <<s>>o much already in me, but I feel <<s>>o empty <<s>>till." + $He jiggles $his cum-filled belly lewdly, "Oh <<Master>>, there'<<s>> <<s>>o much already in me, but I feel <<s>>o empty <<s>>till." <<else>> - $He pats her cum-swollen stomach, "Oh <<Master>>, thi<<s>> little belly i<<s>> nothing, I alway<<s>> have room for more," + $He pats $his cum-swollen stomach, "Oh <<Master>>, thi<<s>> little belly i<<s>> nothing, I alway<<s>> have room for more," <</if>> <<else>> "Oh <<Master>>, I'll never be full again," <</if>> - $he <<say>>s<<if $activeSlave.lips > 70>> past her enormous lips<<elseif $activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2>> past her mouthful of piercings<</if>>. + $he <<say>>s<<if $activeSlave.lips > 70>> past $his enormous lips<<elseif $activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2>> past $his mouthful of piercings<</if>>. <</if>> - $He comes eagerly over and sucks you off with enthusiasm. As you cum, $he orgasms quickly at the taste of the stuff hitting $his mouth<<if $PC.balls > 2>>, even as your load keeps flowing into her gullet<<if $PC.balls > 3>> steadily bloated the poor $girl<</if>><</if>>. + $He comes eagerly over and sucks you off with enthusiasm. As you cum, $he orgasms quickly at the taste of the stuff hitting $his mouth<<if $PC.balls > 2>>, even as your load keeps flowing into $his gullet<<if $PC.balls > 3>> steadily bloated the poor $girl<</if>><</if>>. <<if !canTalk($activeSlave)>> $He signs that you taste great. <<else>> "<<Master>>, you ta<<s>>te great," $he purrs. <</if>> - @@.mediumaquamarine;$He has become more trusting@@ in your willingness to give her what $he wants. + @@.mediumaquamarine;$He has become more trusting@@ in your willingness to give $his what $he wants. <<set $activeSlave.trust += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <br><<link "Cum in $his mouth all night">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You've had a busy day, so you've been unusually remiss in fucking your slaves. Naturally, this means you'll be spending the evening wandering around your home using your living sexual appliances. $activeSlave.slaveName is instructed to follow you and assist. $He's tired, so <<if ($activeSlave.amp == 1)>>you bring her limbless torso along as a cum receptacle. Whenever you're about to finish in another slave, you pull out and fill $his mouth instead.<<else>>you let her tag meekly along, masturbating gently as you use other slaves or just watching lazily. But whenever you're on the point of coming, you switch to $his mouth and let her finish you with a few sucks and pumps of her fatigued hands.<</if>> By the time you put the exhausted $activeSlave.slaveName to bed $he's in a haze of cum-induced pleasure. @@.hotpink;$He has become more submissive to you.@@ + You've had a busy day, so you've been unusually remiss in fucking your slaves. Naturally, this means you'll be spending the evening wandering around your home using your living sexual appliances. $activeSlave.slaveName is instructed to follow you and assist. $He's tired, so <<if ($activeSlave.amp == 1)>>you bring $his limbless torso along as a cum receptacle. Whenever you're about to finish in another slave, you pull out and fill $his mouth instead.<<else>>you let $him tag meekly along, masturbating gently as you use other slaves or just watching lazily. But whenever you're on the point of coming, you switch to $his mouth and let $him finish you with a few sucks and pumps of $his fatigued hands.<</if>> By the time you put the exhausted $activeSlave.slaveName to bed $he's in a haze of cum-induced pleasure. @@.hotpink;$He has become more submissive to you.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount += 5, $oralTotal += 5>> <</replace>> <</link>> <<if ($cumSlaves >= 5)>> -<br><<link "Give her access to the Dairy's cockmilk">> +<br><<link "Give $him access to the Dairy's cockmilk">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You let $him know you have a sexual accessory for $him to use. This isn't too unusual, so $he comes to your office without much anticipation. $He doesn't understand why you have an enormous sealed canister of fresh cum on your desk, but when you explain that it's $hers to play with on the job, $he starts to bounce with excitement. Not all of her customers are interested in cum play, but quite a few are, and $he spends almost as much time cleaning up the gorgeous messes that get made as $he does making them. It's a valuable and @@.yellowgreen;profitable@@ whore who @@.hotpink;looks forward@@ to her next customer. + You let $him know you have a sexual accessory for $him to use. This isn't too unusual, so $he comes to your office without much anticipation. $He doesn't understand why you have an enormous sealed canister of fresh cum on your desk, but when you explain that it's $hers to play with on the job, $he starts to bounce with excitement. Not all of $his customers are interested in cum play, but quite a few are, and $he spends almost as much time cleaning up the gorgeous messes that get made as $he does making them. It's a valuable and @@.yellowgreen;profitable@@ whore who @@.hotpink;looks forward@@ to $his next customer. <<set $activeSlave.devotion += 10>> <<set $cash += random(500,1000)>> <</replace>> @@ -8013,18 +8014,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "loose buttslut">> -<<link "Add something to fill her completely">> +<<link "Add something to fill $him completely">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear you<<else>>sense your presence<</if>> until you<<if $PC.dick == 0>> don a strap-on and<</if>> tip her over face forward. With her on $his knees, her dildo-stuffed ass is in the air; $he's still masturbating between $his legs. After a moment's consideration, you slide two exploratory fingers in alongside the dildo. $He gasps and masturbates harder. Thus encouraged, you shove <<if $PC.dick == 0>>the strap-on<<else>>your member<</if>> in alongside the dildo. <<if $activeSlave.voice != 0>>$He screams at the surprise double anal, sobbing and begging,<<else>>$He screams noiselessly at the surprise double anal, waving $his hands in distress,<</if>> but $he doesn't try to stop you and doggedly keeps rubbing. By the time you're finished $his asshole is a gaping hole much bigger than the average pussy. @@.hotpink;$He has become more submissive to you.@@ + $He's so occupied that $he doesn't <<if canHear($activeSlave)>>hear you<<else>>sense your presence<</if>> until you<<if $PC.dick == 0>> don a strap-on and<</if>> tip $him over face forward. With $him on $his knees, $his dildo-stuffed ass is in the air; $he's still masturbating between $his legs. After a moment's consideration, you slide two exploratory fingers in alongside the dildo. $He gasps and masturbates harder. Thus encouraged, you shove <<if $PC.dick == 0>>the strap-on<<else>>your member<</if>> in alongside the dildo. <<if $activeSlave.voice != 0>>$He screams at the surprise double anal, sobbing and begging,<<else>>$He screams noiselessly at the surprise double anal, waving $his hands in distress,<</if>> but $he doesn't try to stop you and doggedly keeps rubbing. By the time you're finished $his asshole is a gaping hole much bigger than the average pussy. @@.hotpink;$He has become more submissive to you.@@ <<set $activeSlave.devotion += 4>> <<= AnalVCheck()>> <</replace>> <</link>> -<br><<link "Let her use a machine">> +<br><<link "Let $him use a machine">> <<EventNameDelink $activeSlave>> <<replace "#result">> - There's no reason for $him to do that in a quiet corner. You interrupt $him and bring her into your office, setting her up on a machine so $he can have that dildo rammed up $his ass for as long as $he likes. Your office is filled with the rhythmic sounds of a sloppy anus being pounded for a good long while. + There's no reason for $him to do that in a quiet corner. You interrupt $him and bring $him into your office, setting $him up on a machine so $he can have that dildo rammed up $his ass for as long as $he likes. Your office is filled with the rhythmic sounds of a sloppy anus being pounded for a good long while. <<if $assistant > 0>> The <<switch $assistantAppearance>> @@ -8062,7 +8063,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t poor slave is taken to the very limit by your assistant. <</switch>> <</if>> - By the time $he's climaxed out, $he's so tired and apathetic that $he can't bring $himself to get off it or ask for help, so $he just relaxes and enjoys the internal massage<<if $activeSlave.dick != 0>> while her flaccid dick twitches weakly<</if>>. @@.mediumaquamarine;$He has become more trusting of you,@@ since you knew just what $he needed. + By the time $he's climaxed out, $he's so tired and apathetic that $he can't bring $himself to get off it or ask for help, so $he just relaxes and enjoys the internal massage<<if $activeSlave.dick != 0>> while $his flaccid dick twitches weakly<</if>>. @@.mediumaquamarine;$He has become more trusting of you,@@ since you knew just what $he needed. <<set $activeSlave.trust += 4, $activeSlave.analCount++, $analTotal++>> <</replace>> <</link>> @@ -8119,33 +8120,33 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Impersonate a slave and manipulate $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Kneeling next to the port in the cell door, you <<if $PC.title == 1>>set up a voice filter through the arcology systems to make your voice sound feminine.<<else>>abandon your usual commanding woman's tone of voice and adopt the inflections of a slave.<</if>> You sympathize with $activeSlave.slaveName, listening to $him pour out her heart. $He despairs of being able to avoid punishment, and is afraid that you will hurt her or sell $him to a cheap brothel<<if $activeSlave.pregKnown == 1>> or harm her baby<</if>>. In your <<if $PC.title == 1>>fake female<<else>>slave's<</if>> voice, you encourage $him to keep trying, and you even give her some useful advice about how to address her faults. $He gathers $himself together and thanks you. Just then, you pop the door open, <<if canSee($activeSlave)>>revealing who you actually are and letting<<else>>and let<</if>> your voice return to <<if $PC.title == 1>>its masculine harshness<<else>>that of a confident and powerful woman<</if>>. When $he realizes the terrible truth, $he wordlessly prostrates $himself, trembling with terror. @@.gold;$His fear of you has increased.@@ + Kneeling next to the port in the cell door, you <<if $PC.title == 1>>set up a voice filter through the arcology systems to make your voice sound feminine.<<else>>abandon your usual commanding woman's tone of voice and adopt the inflections of a slave.<</if>> You sympathize with $activeSlave.slaveName, listening to $him pour out $his heart. $He despairs of being able to avoid punishment, and is afraid that you will hurt $him or sell $him to a cheap brothel<<if $activeSlave.pregKnown == 1>> or harm $his baby<</if>>. In your <<if $PC.title == 1>>fake female<<else>>slave's<</if>> voice, you encourage $him to keep trying, and you even give $him some useful advice about how to address $his faults. $He gathers $himself together and thanks you. Just then, you pop the door open, <<if canSee($activeSlave)>>revealing who you actually are and letting<<else>>and let<</if>> your voice return to <<if $PC.title == 1>>its masculine harshness<<else>>that of a confident and powerful woman<</if>>. When $he realizes the terrible truth, $he wordlessly prostrates $himself, trembling with terror. @@.gold;$His fear of you has increased.@@ <</replace>> <<set $activeSlave.trust -= 5>> <</link>> <<if $PC.belly < 5000>> <<if $PC.dick == 1 && (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && canWalk($activeSlave)>> - <br><<link "Exploit her need for personal contact">> + <br><<link "Exploit $him need for personal contact">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Without a word, you push your erect member through the hole and into the cell. After a moment's pause, you feel her begin to orally service you with almost desperate concentration. You climax quickly to her manic efforts, and begin to pull out. As you do, $he tearfully begs you not to go. $He promises something better, anything better, so you reinsert yourself, only to find that $he has her + Without a word, you push your erect member through the hole and into the cell. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to pull out. As you do, $he tearfully begs you not to go. $He promises something better, anything better, so you reinsert yourself, only to find that $he has $his <<if canDoVaginal($activeSlave)>> pussy <<else>> ass <</if>> - pressed against the slot. You can't fuck her all that hard through the door, so $he has to do the work. You begin to withdraw whenever $he shows $himself any mercy, so $he pounds $himself against you so hard that $he sobs a little even as you talk to $him, the lifeline $he so needs. - <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>In her desperation $he even guides your cock into $his butt, too, and without prompting.<</if>> + pressed against the slot. You can't fuck $him all that hard through the door, so $he has to do the work. You begin to withdraw whenever $he shows $himself any mercy, so $he pounds $himself against you so hard that $he sobs a little even as you talk to $him, the lifeline $he so needs. + <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>>In $his desperation $he even guides your cock into $his butt, too, and without prompting.<</if>> @@.hotpink;$His submission to you has increased.@@ <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - It was thoughtful of $him to yield @@.lime;both her virginity and anal cherry,@@ but it won't get her out of there sooner. + It was thoughtful of $him to yield @@.lime;both $his virginity and anal cherry,@@ but it won't get $him out of there sooner. <<set $activeSlave.vagina++, $activeSlave.anus++>> <<elseif $activeSlave.vagina == 0>> - It was thoughtful of $him to yield @@.lime;her virginity,@@ but it won't get her out of there sooner. + It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner. <<set $activeSlave.vagina++>> <<elseif $activeSlave.anus == 0>> - It was thoughtful of $him to yield @@.lime;her anal cherry,@@ but it won't get her out of there sooner. + It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner. <<set $activeSlave.anus++>> <</if>> <<set $activeSlave.vaginalCount++, $vaginalTotal++, $activeSlave.analCount++, $analTotal++, $activeSlave.oralCount++, $oralTotal++>> @@ -8154,7 +8155,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<elseif canDoAnal($activeSlave)>> <<if $activeSlave.anus == 0>> - It was thoughtful of $him to yield @@.lime;her anal cherry,@@ but it won't get her out of there sooner. + It was thoughtful of $him to yield @@.lime;$his anal cherry,@@ but it won't get $him out of there sooner. <<set $activeSlave.anus++>> <</if>> <<set $activeSlave.analCount++, $analTotal++, $activeSlave.oralCount++, $oralTotal++>> @@ -8163,7 +8164,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if $activeSlave.vagina == 0>> - It was thoughtful of $him to yield @@.lime;her virginity,@@ but it won't get her out of there sooner. + It was thoughtful of $him to yield @@.lime;$his virginity,@@ but it won't get $him out of there sooner. <<set $activeSlave.vagina++>> <</if>> <<set $activeSlave.vaginalCount++, $vaginalTotal++, $activeSlave.oralCount++, $oralTotal++>> @@ -8176,10 +8177,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> <</if>> <<if $PC.vagina == 1>> - <br><<link "Exploit her need for personal contact by giving $him a pussy to lick">> + <br><<link "Exploit $him need for personal contact by giving $him a pussy to lick">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Without a word, you push your eager pussy up against the hole. After a moment's pause, you feel her begin to orally service you with almost desperate concentration. You climax quickly to her manic efforts, and begin to rise. As you do, $he tearfully begs you not to go. $He promises to do better, to try to get you off harder, so you lower yourself back into position. You have to exert yourself to hold this position, so it better be worth it. You begin to back off whenever $he shows $himself any mercy, so $he eats you out so zealously that $he sobs a little when $he tries to catch $his breath. With $his mouth so busy, $he doesn't even have the time to talk to you, the lifeline $he so needs, but $he doesn't seem to notice. @@.hotpink;$His submission to you has increased.@@ + Without a word, you push your eager pussy up against the hole. After a moment's pause, you feel $him begin to orally service you with almost desperate concentration. You climax quickly to $his manic efforts, and begin to rise. As you do, $he tearfully begs you not to go. $He promises to do better, to try to get you off harder, so you lower yourself back into position. You have to exert yourself to hold this position, so it better be worth it. You begin to back off whenever $he shows $himself any mercy, so $he eats you out so zealously that $he sobs a little when $he tries to catch $his breath. With $his mouth so busy, $he doesn't even have the time to talk to you, the lifeline $he so needs, but $he doesn't seem to notice. @@.hotpink;$His submission to you has increased.@@ <<set $activeSlave.devotion += 10>> <</replace>> <</link>> @@ -8187,7 +8188,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<if $PC.preg > 30 && $PC.pregMood == 1 && $PC.boobs == 1 && $PC.boobsImplant == 0 && $PC.boobsBonus >= 0>> <br><<link "$He just needs a mother's touch">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You reassure the frightened $desc and beckon $him to return to the hole before settling your gravid body before the door and pushing a fat, milk-laden breast through the gap. You coax the nervous $girl to drink her fill; $he must be starving in there, after all. After some hesitation, you finally feel a pair of lips wrap themselves around your erect nipple and begin to drink deep. You talk to the suckling slave, explaining to her just what $he needs to do to thrive in her new life, shushing her whenever $he tries to object and asking $him to just listen. Before long, your teat is drained of all its mother's milk, and as you move to shift to the other closer to the door, the desperate slave begs you not to go. You slip a hand through the slat, caressing her face as you let $him know you're just turning around. As $he suckles your remaining milk, you feel her @@.mediumaquamarine;relax and lower her guard.@@ $He needed to connect to someone and $he didn't expect it to be you, especially like not this. @@.hotpink;$His willingness to listen to your has increased.@@ + You reassure the frightened $desc and beckon $him to return to the hole before settling your gravid body before the door and pushing a fat, milk-laden breast through the gap. You coax the nervous $girl to drink $his fill; $he must be starving in there, after all. After some hesitation, you finally feel a pair of lips wrap themselves around your erect nipple and begin to drink deep. You talk to the suckling slave, explaining to $him just what $he needs to do to thrive in $his new life, shushing $him whenever $he tries to object and asking $him to just listen. Before long, your teat is drained of all its mother's milk, and as you move to shift to the other closer to the door, the desperate slave begs you not to go. You slip a hand through the slat, caressing $his face as you let $him know you're just turning around. As $he suckles your remaining milk, you feel $him @@.mediumaquamarine;relax and lower $his guard.@@ $He needed to connect to someone and $he didn't expect it to be you, especially like not this. @@.hotpink;$His willingness to listen to your has increased.@@ <<set $activeSlave.devotion += 15, $activeSlave.trust += 5>> <</replace>> <</link>> <</if>> @@ -8195,7 +8196,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "scrubbing">> <<if canDoAnal($activeSlave)>> -<<link "Use $his butt to help her scrub">> +<<link "Use $his butt to help $him scrub">> <<EventNameDelink $activeSlave>> <<replace "#result">> In accordance with the rules, $he @@ -8204,14 +8205,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> scrambles hurriedly <</if>> - to her feet when you enter and asks + to $his feet when you enter and asks <<if !canTalk($activeSlave)>> in gestures how $he can serve you. <<else>> <<if ($activeSlave.lips > 70)>> - meekly through her massive dick-sucking lips, + meekly through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - meekly through her inconvenient oral piercings, + meekly through $his inconvenient oral piercings, <<else>> meekly, <</if>> @@ -8223,7 +8224,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He gets back to $his $activeSlave.skin knees, <</if>> - puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> pressing against her rosebud. You instruct her imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you buttfuck $him in time with her labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to shlick your pussy while you pound her<</if>>. You even carefully scoot along with her when $he needs to reach new spots. By the time $he's done $his arms and $his anus are very tired. $His submission to you @@.hotpink;has increased.@@ + puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> pressing against $his rosebud. You instruct $his imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you buttfuck $him in time with $his labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to shlick your pussy while you pound $him<</if>>. You even carefully scoot along with $him when $he needs to reach new spots. By the time $he's done $his arms and $his anus are very tired. $His submission to you @@.hotpink;has increased.@@ <<= AnalVCheck()>> <<set $activeSlave.devotion += 4>> <</replace>> @@ -8274,22 +8275,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> scrambles hurriedly <</if>> - to her feet when you enter and asks + to $his feet when you enter and asks <<if !canTalk($activeSlave)>> in gestures how $he can serve you. <<else>> <<if ($activeSlave.lips > 70)>> - meekly through her massive dick-sucking lips, + meekly through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - meekly through her inconvenient oral piercings, + meekly through $his inconvenient oral piercings, <<else>> meekly, <</if>> "<<Master>>, how may I <<s>>erve you?" <</if>> - You instruct $him to strip off her apron and lay $his $activeSlave.skin back against the ground. $He does, and you empty a bottle of lubricant across her entire body. $He gasps from the cold fluid. You slide around on the floor with $him, playfully scrubbing her <<if $seeRace == 1>>$activeSlave.race <</if>>body around in the pool of lube, playing with her wet breasts<<if ($activeSlave.belly >= 5000)>>, her rounded <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>,<</if>> and her lubricated thighs before + You instruct $him to strip off $his apron and lay $his $activeSlave.skin back against the ground. $He does, and you empty a bottle of lubricant across $his entire body. $He gasps from the cold fluid. You slide around on the floor with $him, playfully scrubbing $his <<if $seeRace == 1>>$activeSlave.race <</if>>body around in the pool of lube, playing with $his wet breasts<<if ($activeSlave.belly >= 5000)>>, $his rounded <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>,<</if>> and $his lubricated thighs before <<if $PC.dick == 0>> - wrestling the slick slave onto her back so you can ride her face while reaching down to spread $his legs and molest her + wrestling the slick slave onto $his back so you can ride $his face while reaching down to spread $his legs and molest $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> pussy and ass. <<elseif canDoVaginal($activeSlave)>> @@ -8298,10 +8299,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t ass. <</if>> <<else>> - sinking your cock into her - <<if !canDoVaginal($activeSlave)>>now-slick butthole<<else>>now-slick pussy<<if canDoAnal($activeSlave)>> and then her relaxing butthole<</if>><</if>><<if $PC.vagina == 1>>, followed by some grinding to coat her face in your pussyjuice<</if>>. + sinking your cock into $his + <<if !canDoVaginal($activeSlave)>>now-slick butthole<<else>>now-slick pussy<<if canDoAnal($activeSlave)>> and then $his relaxing butthole<</if>><</if>><<if $PC.vagina == 1>>, followed by some grinding to coat $his face in your pussyjuice<</if>>. <</if>> - $He had fun, though, and her @@.hotpink;trust in you has increased.@@ + $He had fun, though, and $his @@.hotpink;trust in you has increased.@@ <<= BothVCheck()>> <<set $activeSlave.trust += 4>> <</replace>> @@ -8316,20 +8317,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> scrambles hurriedly <</if>> - to her feet when you enter and asks + to $his feet when you enter and asks <<if !canTalk($activeSlave)>> in gestures how $he can serve you. <<else>> <<if ($activeSlave.lips > 70)>> - meekly through her massive dick-sucking lips, + meekly through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - meekly through her inconvenient oral piercings, + meekly through $his inconvenient oral piercings, <<else>> meekly, <</if>> "<<Master>>, how may I <<s>>erve you?" <</if>> - You instruct $him to return to work as you pull up a seat to enjoy the view of her + You instruct $him to return to work as you pull up a seat to enjoy the view of $his <<if $activeSlave.butt > 6>> ridiculous <<elseif $activeSlave.butt > 5>> @@ -8357,41 +8358,41 @@ You tell her kindly that you understand, and that $he'll be trained to address t your swollen belly and commenting on how its ever growing surface could use a good polishing. <<if $activeSlave.fetish == "pregnancy">> <<if $activeSlave.fetishKnown == 1>> - $He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming intensely aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement and even reaching orgasm just by being allowed to touch your belly. $He @@.mediumaquamarine;feels closer@@ to her lovely, gravid, owner after being permitted to shower attention on the thing $he loves most. + $He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming intensely aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement and even reaching orgasm just by being allowed to touch your belly. $He @@.mediumaquamarine;feels closer@@ to $his lovely, gravid, owner after being permitted to shower attention on the thing $he loves most. <<set $activeSlave.trust += 5>> <<else>> - $He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming visibly aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement. Once $he finishes her first lap and returns to your belly button, $he spasms with an intense orgasm. @@.lightcoral;$He clearly adores pregnant women.@@ + $He wastes no time in rushing over to your firm dome and bringing $his tongue to your navel. $He happily massages your middle with surprising gusto, becoming visibly aroused as your child<<if $PC.pregType > 1>>ren begin<<else>> begins<</if>> to kick with excitement. Once $he finishes $his first lap and returns to your belly button, $he spasms with an intense orgasm. @@.lightcoral;$He clearly adores pregnant women.@@ <<set $activeSlave.fetishKnown = 1>> <</if>> <<else>> $He does so diligently, making sure to not miss <<if $showInches == 2>>an inch<<else>>a centimeter<</if>> while keeping your enjoyment above all else. <</if>> <<elseif $PC.dick == 1>> - your erect dick and commenting on how it could use a good cleaning. $He carefully takes your cock into $his mouth, doing her best to bring you to a quick orgasm so $he can escape your gaze. After downing your cum, $he attempts to pull back, but you hold her down, clearly $he has more work to do here. + your erect dick and commenting on how it could use a good cleaning. $He carefully takes your cock into $his mouth, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After downing your cum, $he attempts to pull back, but you hold $him down, clearly $he has more work to do here. <<elseif $PC.vagina == 1>> - your soaked pussy and commenting on how someone needs to clean up after it, preferably with their tongue. $He carefully $his tongue to your clit, doing her best to bring you to a quick orgasm so $he can escape your gaze. After bring you to a rather unsatisfying climax, $he attempts to pull back, but you grab $him and force $him to lick the depths of your pussy. + your soaked pussy and commenting on how someone needs to clean up after it, preferably with their tongue. $He carefully $his tongue to your clit, doing $his best to bring you to a quick orgasm so $he can escape your gaze. After bring you to a rather unsatisfying climax, $he attempts to pull back, but you grab $him and force $him to lick the depths of your pussy. <</if>> - By the time you are satisfied with her efforts, $he @@.hotpink;has become more submissive to you.@@ + By the time you are satisfied with $his efforts, $he @@.hotpink;has become more submissive to you.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <<case "hormone dysfunction">> -<<link "Give her some vasodilators so $he can get relief">> +<<link "Give $him some vasodilators so $he can get relief">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give $him a shot and send her on her way. Within a few minutes it gives $him a raging hardon that lasts for hours. $He spends every spare moment masturbating furiously. Of course, this is a temporary solution, and will just make the eventual return of her problem more disappointing. @@.mediumorchid;$He is bitterly frustrated.@@ + You give $him a shot and send $him on $his way. Within a few minutes it gives $him a raging hardon that lasts for hours. $He spends every spare moment masturbating furiously. Of course, this is a temporary solution, and will just make the eventual return of $his problem more disappointing. @@.mediumorchid;$He is bitterly frustrated.@@ <<set $activeSlave.devotion -= 5>> <</replace>> <</link>> <br><<link "Sissy slave <<= $girl>>s don't need to climax to serve">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You explain patiently that $he needs to stop focusing on getting off. $He's a sex slave, and what matters is that $he pleasures others. If $he doesn't climax $himself, that's unfortunate but not really significant. $He looks terribly forlorn, so to drive home the point you push her down to the floor, give $him a rough face fuck, and send her away with tousled hair, <<if $PC.dick == 0>>a tired tongue<<else>>a mouthful of ejaculate<</if>>, and the same limp dick as before. @@.mediumorchid;It's frustrating for $him.@@ + You explain patiently that $he needs to stop focusing on getting off. $He's a sex slave, and what matters is that $he pleasures others. If $he doesn't climax $himself, that's unfortunate but not really significant. $He looks terribly forlorn, so to drive home the point you push $him down to the floor, give $him a rough face fuck, and send $him away with tousled hair, <<if $PC.dick == 0>>a tired tongue<<else>>a mouthful of ejaculate<</if>>, and the same limp dick as before. @@.mediumorchid;It's frustrating for $him.@@ <<set $activeSlave.devotion -= 2>> <<if ($activeSlave.clitSetting != $activeSlave.fetish)>> - But, $he slowly @@.lightcoral;accepts her new role as a submissive little sex toy.@@ + But, $he slowly @@.lightcoral;accepts $his new role as a submissive little sex toy.@@ <<set $activeSlave.fetishStrength = 65, $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.fetish = "submissive">> <</if>> <<set $activeSlave.oralCount++, $oralTotal++>> @@ -8401,7 +8402,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Prostate stimulation ought to do the trick">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You explain that $he will have to find a new way to climax to be a happy little shemale slut. As you do, you push $him against a wall and force her up on tiptoe so that $his butt is conveniently positioned, and then ram <<if $PC.dick == 0>>a vibrating strap-on<<else>>yourself<</if>> up $his ass. $He squeals and dances against the wall on tiptoe, impaled on your <<if $PC.dick == 0>>fake cock<<else>>member<</if>>. $He doesn't climax to anal then, or the next time you assfuck $him, or the time after that; but some time later a long buttsex session ends when $he gives a little shake and a whimper and dribbles a pathetic squirt of cum from her still-limp dick. By the end of the week @@.mediumaquamarine;$he's smiling trustingly@@ and offering you $his butt every chance $he gets. + You explain that $he will have to find a new way to climax to be a happy little shemale slut. As you do, you push $him against a wall and force $him up on tiptoe so that $his butt is conveniently positioned, and then ram <<if $PC.dick == 0>>a vibrating strap-on<<else>>yourself<</if>> up $his ass. $He squeals and dances against the wall on tiptoe, impaled on your <<if $PC.dick == 0>>fake cock<<else>>member<</if>>. $He doesn't climax to anal then, or the next time you assfuck $him, or the time after that; but some time later a long buttsex session ends when $he gives a little shake and a whimper and dribbles a pathetic squirt of cum from $his still-limp dick. By the end of the week @@.mediumaquamarine;$he's smiling trustingly@@ and offering you $his butt every chance $he gets. <<= AnalVCheck(10)>> <<set $activeSlave.trust += 4>> <<if ($activeSlave.clitSetting != $activeSlave.fetish)>> @@ -8421,17 +8422,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.health += 10>> <</replace>> <</link>> -<br><<link "Keep her warm">> +<br><<link "Keep $him warm">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You spoon her gently from behind, spending the night sleeping with her <<if $activeSlave.bellyPreg >= 5000>>pregnant<<else>>limbless<</if>> torso cradled in your arms. $He snuggles against you in her sleep, enjoying the animal warmth. When $he wakes in the morning, $he is surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> that it's you keeping her company, but after a few moments' confusion $he accepts the unlooked-for comfort and goes back to sleep. @@.mediumaquamarine;$He has become more trusting of you.@@ + You spoon $him gently from behind, spending the night sleeping with $his <<if $activeSlave.bellyPreg >= 5000>>pregnant<<else>>limbless<</if>> torso cradled in your arms. $He snuggles against you in $his sleep, enjoying the animal warmth. When $he wakes in the morning, $he is surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> that it's you keeping $him company, but after a few moments' confusion $he accepts the unlooked-for comfort and goes back to sleep. @@.mediumaquamarine;$He has become more trusting of you.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Leave her be">> +<br><<link "Leave $him be">> <<EventNameDelink $activeSlave>> <<replace "#result">> - In the morning, $his lips are blue and $he's nearly unresponsive. Your other slaves get her working again, but @@.red;$his health has been damaged.@@ + In the morning, $his lips are blue and $he's nearly unresponsive. Your other slaves get $him working again, but @@.red;$his health has been damaged.@@ <<set $activeSlave.health -= 10>> <</replace>> <</link>> @@ -8439,24 +8440,24 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "devoted amp">> <<if $activeSlave.belly < 1500 && canDoAnal($activeSlave)>> -<<link "Carry her over to your work">> +<<link "Carry $him over to your work">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Since you're so busy, you find a way of working and seeing to your sex toy both. You scoop her up, eliciting whimpers of joy at the impending relief, <<if $PC.dick == 0>>and move over to the couch so you can work lying down. You sit her on top of you, reversed so her head is between your legs for a little oral service, and slide a dildo up $his butt so you can sodomize her at leisure when you have a spare moment.<<else>>and sit back down at your desk. You slide her onto your erect member and carefully secure her with a few straps so $he can serve as your living cocksleeve as you see to your business.<</if>> There isn't much thrusting as you continue with your affairs, but $he's so horny $he doesn't need it. @@.hotpink;$He has become more submissive to you.@@ There's no telling what the day's faceless business interlocutors would think if they knew the person on the other side of their communications had <<if $PC.dick == 0>>a limbless slave gently sucking their clit while they spoke with them<<else>>his cock inside a limbless slave as he dealt with them<</if>>. + Since you're so busy, you find a way of working and seeing to your sex toy both. You scoop $him up, eliciting whimpers of joy at the impending relief, <<if $PC.dick == 0>>and move over to the couch so you can work lying down. You sit $him on top of you, reversed so $his head is between your legs for a little oral service, and slide a dildo up $his butt so you can sodomize $his at leisure when you have a spare moment.<<else>>and sit back down at your desk. You slide $him onto your erect member and carefully secure $him with a few straps so $he can serve as your living cocksleeve as you see to your business.<</if>> There isn't much thrusting as you continue with your affairs, but $he's so horny $he doesn't need it. @@.hotpink;$He has become more submissive to you.@@ There's no telling what the day's faceless business interlocutors would think if they knew the person on the other side of their communications had <<if $PC.dick == 0>>a limbless slave gently sucking their clit while they spoke with them<<else>>his cock inside a limbless slave as he dealt with them<</if>>. <<set $activeSlave.devotion += 4, $activeSlave.analCount++, $analTotal++>> <</replace>> <</link>> <</if>> <<if ($PC.dick == 1) && (canDoAnal($activeSlave) || (canDoVaginal($activeSlave) && $activeSlave.vagina > 0)) && $PC.belly < 100>> -<br><<link "Carry her outside">> +<br><<link "Carry $him outside">> <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.belly >= 600000>> - You struggle to heft her overfilled body up, eliciting whimpers of joy at the impending relief and the pressure removed from $his body, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> forcing you to experience what it is like to carry $activeSlave.pregType children,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>> and leaving a large wake as people make room for your gravid mass. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything,@@ once they figure out that the belly attached to you is, in fact, owned by a barely visible slavegirl. + You struggle to heft $his overfilled body up, eliciting whimpers of joy at the impending relief and the pressure removed from $his body, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> forcing you to experience what it is like to carry $activeSlave.pregType children,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>> and leaving a large wake as people make room for your gravid mass. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything,@@ once they figure out that the belly attached to you is, in fact, owned by a barely visible slavegirl. <<elseif $activeSlave.belly >= 300000>> - You heft her heavy body her up, eliciting whimpers of joy at the impending relief, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> massively jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ + You heft $his heavy body $him up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> massively jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ <<else>> - You scoop her up, eliciting whimpers of joy at the impending relief, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you walk outside brings $him to climax within a few steps. You take your time and stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you walking around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ + You scoop $him up, eliciting whimpers of joy at the impending relief, and carefully secure $him with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you walk outside brings $him to climax within a few steps. You take your time and stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you walking around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ <</if>> <<set $activeSlave.devotion += 4, $rep += 100>> <<if canDoVaginal($activeSlave)>> @@ -8468,18 +8469,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <</if>> <<if (canDoAnal($activeSlave) || (canDoVaginal($activeSlave) && $activeSlave.vagina > 0))>> -<br><<link "See how high her arousal will go">> +<br><<link "See how high $his arousal will go">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You scoop her up, eliciting whimpers of joy at the impending relief. $He moans with disappointment, however, to find $himself laid unceremoniously across your desk as you return to your work. You surreptitiously set your desk to monitor her vital signs and gauge her closeness to orgasm. Whenever you can do so without tipping her over, you gently run your fingers across a helpless nipple, across her <<if $activeSlave.vagina == -1>>groin<<else>>moist lips<</if>>,<<if $activeSlave.belly >= 10000>> around the edge of her <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly,<<elseif $activeSlave.belly >= 1500>> over the peak of her <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly,<</if>> or along her surgical scars. + You scoop $him up, eliciting whimpers of joy at the impending relief. $He moans with disappointment, however, to find $himself laid unceremoniously across your desk as you return to your work. You surreptitiously set your desk to monitor $his vital signs and gauge $his closeness to orgasm. Whenever you can do so without tipping $his over, you gently run your fingers across a helpless nipple, across $his <<if $activeSlave.vagina == -1>>groin<<else>>moist lips<</if>>,<<if $activeSlave.belly >= 10000>> around the edge of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly,<<elseif $activeSlave.belly >= 1500>> over the peak of $his <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly,<</if>> or along $his surgical scars. <<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>> - After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage her nether lips with a single finger and $he comes spastically, abdominal muscles quivering. $His pussy relaxes and opens naturally; taking the cue, you pick her up and lower $him, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by moaning <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with her<<else>>your cock<</if>>. + After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his nether lips with a single finger and $he comes spastically, abdominal muscles quivering. $His pussy relaxes and opens naturally; taking the cue, you pick $him up and lower $him, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by moaning <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>. <<= VaginalVCheck()>> <<else>> - After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his anus with a single finger and $he comes spastically, abdominal muscles quivering. $His sphincter relaxes and opens naturally; taking the cue, you pick her up and lower $his rectum, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by sobbing <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with her<<else>>your cock<</if>>. + After so much of this that $he's clearly ready to orgasm at the slightest further touch, you gently massage $his anus with a single finger and $he comes spastically, abdominal muscles quivering. $His sphincter relaxes and opens naturally; taking the cue, you pick $his up and lower $his rectum, <<if $showInches == 2>>inch<<else>>centimeter<</if>> by sobbing <<if $showInches == 2>>inch<<else>>centimeter<</if>>, onto <<if $PC.dick == 0>>a strap-on you put on while playing with $his<<else>>your cock<</if>>. <<= AnalVCheck()>> <</if>> - After pumping her helpless torso up and down with your arms, a parody of masturbation with her helpless body, you carry your toy to the shower to wash $him. @@.mediumaquamarine;$He has become more trusting of you.@@ + After pumping $his helpless torso up and down with your arms, a parody of masturbation with $his helpless body, you carry your toy to the shower to wash $him. @@.mediumaquamarine;$He has become more trusting of you.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -8487,24 +8488,24 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "plug disobedience">> -<<link "It's her role to hurt">> +<<link "It's $his role to hurt">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Without a word, you<<if $PC.dick == 0>> don a cruelly knobby strap-on,<</if>> throw her onto the couch, take both her ankles in one hand, and force them back over her head so her poor, doomed asshole is completely defenseless. You then spit on her hole, seize your <<if $PC.dick == 0>>instrument<<else>>rock-hard dick<<if $PC.vagina == 1>>, gather a little of your own pussyjuice and rub it on your cockhead<</if>><</if>>, and shove it up the wriggling slave $girl's spasming rectum. You've got the necessary skill to judge exactly where the line between anal pain and anal injury is, and you take her right up to it. Halfway through the long anal rape $he gives up struggling and just goes limp, sobbing. $He @@.hotpink;fears you,@@ and has also begun to @@.red;hate buttsex.@@ + Without a word, you<<if $PC.dick == 0>> don a cruelly knobby strap-on,<</if>> throw $him onto the couch, take both $his ankles in one hand, and force them back over $his head so $his poor, doomed asshole is completely defenseless. You then spit on $his hole, seize your <<if $PC.dick == 0>>instrument<<else>>rock-hard dick<<if $PC.vagina == 1>>, gather a little of your own pussyjuice and rub it on your cockhead<</if>><</if>>, and shove it up the wriggling slave $girl's spasming rectum. You've got the necessary skill to judge exactly where the line between anal pain and anal injury is, and you take $his right up to it. Halfway through the long anal rape $he gives up struggling and just goes limp, sobbing. $He @@.hotpink;fears you,@@ and has also begun to @@.red;hate buttsex.@@ <<set $activeSlave.trust -= 5, $activeSlave.sexualFlaw = "hates anal", $activeSlave.analCount++, $analTotal++>> <</replace>> <</link>> -<br><<link "Punish her for disobedience, but address her anal pain">> +<br><<link "Punish $him for disobedience, but address $his anal pain">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You patiently and calmly explain to $him that disobeying orders isn't acceptable, but that too much pain from her buttplug is a sign that something isn't right. First, you inform $him, $he will have to be punished for the disobedience, since $he should have brought her trouble to you instead of disobeying. $He's almost willing as you bend her over <<if $activeSlave.belly >= 300000>>her _belly middle<<else>>the desk<</if>> and spank $his buttocks severely, unsure whether to resent the corporal punishment or appreciate your measured response. When you're done tanning $his ass, $he's surprised to feel a cool, lubricated digit working its way into $his anus. $He stiffens a little but eventually relaxes enough to take the finger, then two, and finally three, before you gently and slowly emplace her plug. You instruct her kindly on how to relax in the future when $he inserts it on her own. $He @@.hotpink;appreciates@@ your approach. + You patiently and calmly explain to $him that disobeying orders isn't acceptable, but that too much pain from $his buttplug is a sign that something isn't right. First, you inform $him, $he will have to be punished for the disobedience, since $he should have brought $his trouble to you instead of disobeying. $He's almost willing as you bend $him over <<if $activeSlave.belly >= 300000>>$his _belly middle<<else>>the desk<</if>> and spank $his buttocks severely, unsure whether to resent the corporal punishment or appreciate your measured response. When you're done tanning $his ass, $he's surprised to feel a cool, lubricated digit working its way into $his anus. $He stiffens a little but eventually relaxes enough to take the finger, then two, and finally three, before you gently and slowly emplace $his plug. You instruct $him kindly on how to relax in the future when $he inserts it on $his own. $He @@.hotpink;appreciates@@ your approach. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> -<br><<link "Address her worrisome anal pain">> +<br><<link "Address $his worrisome anal pain">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You kindly explain how to relax and prepare one's asshole for such insertions. $He's been told already, but you make her fetch her plug and go through the steps in front of you so you can check her approach. $He leaves reminded how to wear her plug, but @@.mediumaquamarine;secretly relieved@@ $he got away with disobedience with nothing more than a lecture. + You kindly explain how to relax and prepare one's asshole for such insertions. $He's been told already, but you make $him fetch $his plug and go through the steps in front of you so you can check $his approach. $He leaves reminded how to wear $his plug, but @@.mediumaquamarine;secretly relieved@@ $he got away with disobedience with nothing more than a lecture. <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -8514,26 +8515,26 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Go out clubbing to make $him feel young again">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You call out to stop $him, and $he turns obediently to listen; you tell $him to take the day off and meet you that evening for a trip to $arcologies[0].name's most fashionable nightclub. You emphasize slightly that it's a place you prefer to enjoy with a young slave, and $his eyes widen a little at the implied compliment and challenge. Right at the proper time, $he arrives in your office wearing neon $activeSlave.hColor makeup to match $his hair, and a tiny iridescent clubgirl outfit of the same color. The hem of the skirt is barely low enough to conceal her <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>total lack of private parts<<else>>pussy<</if>>, and it's backless. The front is held up by a halter around her pretty neck, and is <<if ($activeSlave.boobs > 2000)>>specially tailored to cover her massive tits<<elseif ($activeSlave.boobs > 1000)>>strained by her big tits<<elseif ($activeSlave.boobs > 300)>>tightly filled by her healthy tits<<else>>tight against her flat chest<</if>><<if $activeSlave.belly >= 1500>> and _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>>. $He makes a gaudy and very fashionable spectacle, and in response to your <<if canSee($activeSlave)>>look<<else>>whistle<</if>> $he raises both arms over her head and twirls, shimmying $his body deliciously. + You call out to stop $him, and $he turns obediently to listen; you tell $him to take the day off and meet you that evening for a trip to $arcologies[0].name's most fashionable nightclub. You emphasize slightly that it's a place you prefer to enjoy with a young slave, and $his eyes widen a little at the implied compliment and challenge. Right at the proper time, $he arrives in your office wearing neon $activeSlave.hColor makeup to match $his hair, and a tiny iridescent clubgirl outfit of the same color. The hem of the skirt is barely low enough to conceal $him <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>total lack of private parts<<else>>pussy<</if>>, and it's backless. The front is held up by a halter around $his pretty neck, and is <<if ($activeSlave.boobs > 2000)>>specially tailored to cover $his massive tits<<elseif ($activeSlave.boobs > 1000)>>strained by $his big tits<<elseif ($activeSlave.boobs > 300)>>tightly filled by $his healthy tits<<else>>tight against $his flat chest<</if>><<if $activeSlave.belly >= 1500>> and _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly<</if>>. $He makes a gaudy and very fashionable spectacle, and in response to your <<if canSee($activeSlave)>>look<<else>>whistle<</if>> $he raises both arms over $his head and twirls, shimmying $his body deliciously. "I hope they let me into the club without checking my I.D., <<Master>>," $he jokes, for which $he receives a swat on $his rear as you head out. With the full day of rest, $he is full of vigor and ready to dance. $He eagerly heads out onto the floor with you, <<if ($activeSlave.entertainSkill >= 100)>> - masterfully moving her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, grabbing the attention of all the men and most of the women in $clubName. + masterfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, grabbing the attention of all the men and most of the women in $clubName. <<elseif ($activeSlave.entertainSkill > 60)>> - expertly moving her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, mesmerizing her neighbors on the floor. + expertly moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, mesmerizing $his neighbors on the floor. <<elseif ($activeSlave.entertainSkill > 30)>> - skillfully moving her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, drawing a lustful gaze or two. + skillfully moving $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> body to the heavy beat, drawing a lustful gaze or two. <<else>> clumsily moving <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid<<else>>rounded<</if>><</if>> $his body to the heavy beat, attracting little notice among the press of novices. <</if>> - It doesn't take long for $him to back $himself into you so $he can grind; $he cranes her neck back to plant an @@.hotpink;earnest kiss@@ on your chin. + It doesn't take long for $him to back $himself into you so $he can grind; $he cranes $his neck back to plant an @@.hotpink;earnest kiss@@ on your chin. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <br><<link "Attend a sporting event with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You call out to stop $him, and $he turns obediently to listen; you tell her $he'll be spending the day with you at a game outside the arcology, and $he's to meet you at your VTOL pad in two hours. $He ponders for a moment but clearly understands this is related to her age, somehow. Right at the proper time, $he arrives on the pad. $He's clearly spent the whole time getting the right clothing; somehow $he used the clothing inventory system to find a cheerleader uniform from the home team. It's one size too small, though you're unsure whether this is intentional or not. The hem of the pleated cheerleader skirt is barely low enough to conceal her <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>lack of private parts<<else>>pussy<</if>>, and $he bounces a little on her heels for you to show off how $he's going commando underneath it. $His + You call out to stop $him, and $he turns obediently to listen; you tell $him $he'll be spending the day with you at a game outside the arcology, and $he's to meet you at your VTOL pad in two hours. $He ponders for a moment but clearly understands this is related to $his age, somehow. Right at the proper time, $he arrives on the pad. $He's clearly spent the whole time getting the right clothing; somehow $he used the clothing inventory system to find a cheerleader uniform from the home team. It's one size too small, though you're unsure whether this is intentional or not. The hem of the pleated cheerleader skirt is barely low enough to conceal $his <<if ($activeSlave.dick > 0)>>dick<<elseif $activeSlave.vagina == -1>>lack of private parts<<else>>pussy<</if>>, and $he bounces a little on $his heels for you to show off how $he's going commando underneath it. $His <<if ($activeSlave.belly >= 100000)>> _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>> <<elseif ($activeSlave.weight > 130)>> @@ -8549,36 +8550,36 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> taut <</if>> - midriff is bare. The top <<if ($activeSlave.boobs > 2000)>>somehow contains $his tits, with the team's logo at least three feet wide across $his chest<<elseif ($activeSlave.boobs > 1000)>>is a great location for the team's logo, since $his tits allow it to be quite large<<elseif ($activeSlave.boobs > 300)>>is a good location for the team's logo, since $his tits allow it to be pretty big<<else>>flatters her flat chest, especially with the team logo over it<</if>>. $He even found a pair of appropriately colored pom-poms somewhere. The implicit message about age was understood; $he's made up to look even younger. + midriff is bare. The top <<if ($activeSlave.boobs > 2000)>>somehow contains $his tits, with the team's logo at least three feet wide across $his chest<<elseif ($activeSlave.boobs > 1000)>>is a great location for the team's logo, since $his tits allow it to be quite large<<elseif ($activeSlave.boobs > 300)>>is a good location for the team's logo, since $his tits allow it to be pretty big<<else>>flatters $his flat chest, especially with the team logo over it<</if>>. $He even found a pair of appropriately colored pom-poms somewhere. The implicit message about age was understood; $he's made up to look even younger. <br><br> - You have a front-row seat, of course, and $he excitedly takes her place beside you, + You have a front-row seat, of course, and $he excitedly takes $his place beside you, <<if $activeSlave.butt > 12>> - thankful that you reserved a seat for both of her massive cheeks. + thankful that you reserved a seat for both of $his massive cheeks. <<elseif $activeSlave.belly >= 300000>> thankful that the front row has plenty of room for $his _belly belly to occupy. <<elseif $activeSlave.butt > 6>> - carefully fitting her big bottom into the seat. + carefully fitting $his big bottom into the seat. <<elseif $activeSlave.boobs > 4000>> - her absurd boobs rubbing against your arm. + $his absurd boobs rubbing against your arm. <</if>> - $He cheers lustily at all the right moments, earning repeated crowd focus shots on the big screen; many fans wonder who their ridiculously hot fellow fan is before @@.green;recognizing you,@@ putting two and two together, and realizing enviously that $he's your sex slave. Since this is the Free Cities, the big screen gives her more attention rather than cutting away when $he intentionally cheers hard enough that her skirt rides up. + $He cheers lustily at all the right moments, earning repeated crowd focus shots on the big screen; many fans wonder who their ridiculously hot fellow fan is before @@.green;recognizing you,@@ putting two and two together, and realizing enviously that $he's your sex slave. Since this is the Free Cities, the big screen gives $him more attention rather than cutting away when $he intentionally cheers hard enough that $his skirt rides up. <<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>> - The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and goes into labor on another of her brood; the contractions forcing $him to lean forward onto $his _belly stomach and give the players below a clear view of her crowning child. + The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and goes into labor on another of $his brood; the contractions forcing $him to lean forward onto $his _belly stomach and give the players below a clear view of $his crowning child. <<elseif $activeSlave.belly < 300000>> - The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and bending down to show cleavage to the stands in such a way that her <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts her skirt up enough that the players below can clearly see her <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>. + The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and bending down to show cleavage to the stands in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>. <<else>> - The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, cheering while swinging her absurd belly back and forth and accidentally smashes into a concession vendor sending them to the floor. $His efforts to help him up forces $him to stand in such a way that her <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts her skirt up enough that the players below can clearly see her <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>. + The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, cheering while swinging $his absurd belly back and forth and accidentally smashes into a concession vendor sending them to the floor. $His efforts to help him up forces $him to stand in such a way that $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts $his skirt up enough that the players below can clearly see $his <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>. <</if>> A player from the visiting team is distracted enough to blow a play. Any fans who might have been inclined to disapprove forget their objections when the home team capitalizes on the mistake to score. <<set $rep += 100>> <</replace>> <</link>> -<br><<link "Put the old whore in her place">> +<br><<link "Put the old whore in $his place">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You call out to stop $him, and $he turns obediently to listen. You tell her you're interested to see if her old body can still perform. Something about the way you say 'old' makes her flinch, and $he's right to worry. You tell $him to go out and make you <<print cashFormat(200)>>, and to hurry back if $he wants to avoid punishment. $He hesitates for an instant before hurrying outside. A few hours later you check on her remotely. The feed shows her <<if $activeSlave.belly >= 10000>>waddle<<else>>walk<</if>> quickly up to a couple out on the street; you can't hear what's said, but $he + You call out to stop $him, and $he turns obediently to listen. You tell $him you're interested to see if $his old body can still perform. Something about the way you say 'old' makes $him flinch, and $he's right to worry. You tell $him to go out and make you <<print cashFormat(200)>>, and to hurry back if $he wants to avoid punishment. $He hesitates for an instant before hurrying outside. A few hours later you check on $him remotely. The feed shows $his <<if $activeSlave.belly >= 10000>>waddle<<else>>walk<</if>> quickly up to a couple out on the street; you can't hear what's said, but $he <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> - turns around to rub her bare butt against the crotch of the man's pants. He pulls them down and fucks her right there<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>@@.lime;taking her virginity@@<<set _didVaginal = 1>><<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>@@.lime;taking her anal virginity@@<<set _didAnal = 1>><</if>>, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> her poor nipples. Boring of this, $he switches to torturing the poor slave's + turns around to rub $his bare butt against the crotch of the man's pants. He pulls them down and fucks $his right there<<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>>@@.lime;taking $his virginity@@<<set _didVaginal = 1>><<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>>@@.lime;taking $his anal virginity@@<<set _didAnal = 1>><</if>>, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, $he switches to torturing the poor slave's <<if ($activeSlave.dick > 0)>> dick, <<elseif $activeSlave.vagina == -1>> @@ -8586,9 +8587,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pussy, <</if>> - slapping her until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask her how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. Hole<<s>> are pretty <<s>>ore though. Kinda loo<<s>>e." + slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. Hole<<s>> are pretty <<s>>ore though. Kinda loo<<s>>e." <<else>> - drops to $his knees to nuzzle against the man's pants. He pulls them down and face-fucks her right there, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> her poor nipples. Boring of this, $he switches to torturing the poor slave's + drops to $his knees to nuzzle against the man's pants. He pulls them down and face-fucks $him right there, as the woman <<if $activeSlave.nipples != "fuckable">>pulls and abuses<<else>>roughly fingers<</if>> $his poor nipples. Boring of this, $he switches to torturing the poor slave's <<if ($activeSlave.dick > 0)>> dick, <<elseif $activeSlave.vagina == -1>> @@ -8596,9 +8597,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pussy, <</if>> - slapping her until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask her how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. My jaw kinda hurt<<s>> and my leg<<s>> are really <<s>>ore." + slapping $him until $he cries and then making out with the weeping whore. Much later, $activeSlave.slaveName limps tiredly into your office and gives you your @@.yellowgreen;<<print cashFormat(200)>>.@@ You ask $him how $he's feeling, and $he mumbles, "I'm OK, <<Master>>. My jaw kinda hurt<<s>> and my leg<<s>> are really <<s>>ore." <</if>> - You tell $him that's of little concern, since $he has relatively few years of use left: you may as well extract what value you can from $him. $He's too exhausted to hide her response, and collapses, @@.gold;sobbing.@@ + You tell $him that's of little concern, since $he has relatively few years of use left: you may as well extract what value you can from $him. $He's too exhausted to hide $his response, and collapses, @@.gold;sobbing.@@ <<set $cash += 200>> <<set $activeSlave.trust -= 5, $activeSlave.publicCount++>> <<if _didAnal == 1>> @@ -8634,27 +8635,27 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You have work to do. You ignore the shameless slut, who gets $himself off in no time at all, <<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave.balls == 0)>> - her limp dick dribbling cum onto her<<if $activeSlave.pregKnown == 1>> pregnant<</if>> stomach. + $his limp dick dribbling cum onto $his<<if $activeSlave.pregKnown == 1>> pregnant<</if>> stomach. <<elseif $activeSlave.dick > 0>> - orgasming so strongly $he manages to hit $himself in the face with her own cum. + orgasming so strongly $he manages to hit $himself in the face with $his own cum. <<elseif $activeSlave.vagina == -1>> - indulging in the anal self-stimulation that's her best remaining avenue to an orgasm. + indulging in the anal self-stimulation that's $his best remaining avenue to an orgasm. <<else>> the smell of female pleasure filling the office. <</if>> $He gets up, washes $himself off and rearranges $his body on the couch again, languidly this time. $He returns to masturbating, gently playing with $himself with one hand and <<if $activeSlave.nipples != "fuckable">>teasing<<else>>fingering<</if>> a nipple with the other. <</replace>> <</link>> -<br><<link "Lend her some assistance">> +<br><<link "Lend $him some assistance">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand and ask her mockingly if $he could use some assistance. $He gapes at you for a lust-hazed moment before nodding happily, + You stand and ask $him mockingly if $he could use some assistance. $He gapes at you for a lust-hazed moment before nodding happily, <<if !canTalk($activeSlave)>> - gesturing her thanks. + gesturing $his thanks. <<else>> squealing, "Ye<<s>> plea<<s>>e, <<Master>>!" <</if>> - $He stops wanking and takes $his hands away, laying $himself wide for you like a horny human buffet. You make a show of selecting, but decide on her + $He stops wanking and takes $his hands away, laying $himself wide for you like a horny human buffet. You make a show of selecting, but decide on $his <<if canDoVaginal($activeSlave)>> <<if $activeSlave.vagina > 2>> slutty pussy. @@ -8674,21 +8675,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<set _didAnal = 1>> <</if>> - $He calmed down a little while offering $himself to you, so $he manages not to climax immediately when you <<if $PC.dick == 0>>push your strap-on into her<<else>>thrust your dick into her<</if>>, but $he's in a rare mood. You reward $him by guiding $his hands back to her crotch as you ramp up the pace, at which $he looks up at you with something like wordless glee. $He goes back to + $He calmed down a little while offering $himself to you, so $he manages not to climax immediately when you <<if $PC.dick == 0>>push your strap-on into $him<<else>>thrust your dick into $him<</if>>, but $he's in a rare mood. You reward $him by guiding $his hands back to $his crotch as you ramp up the pace, at which $he looks up at you with something like wordless glee. $He goes back to <<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - playing with her limp dick, + playing with $his limp dick, <<elseif $activeSlave.dick > 4>> - jerking off her giant cock, + jerking off $his giant cock, <<elseif $activeSlave.dick > 2>> jerking off, <<elseif $activeSlave.dick > 0>> - teasing her girly little dick, + teasing $his girly little dick, <<elseif $activeSlave.clit > 0>> - jerking off her ridiculous clit, + jerking off $his ridiculous clit, <<elseif $activeSlave.labia > 0>> - spreading and teasing her petals, + spreading and teasing $his petals, <<elseif $activeSlave.vagina == -1>> - playing with her asspussy, + playing with $his asspussy, <<else>> rubbing $his clit, <</if>> @@ -8697,7 +8698,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> mewling with pleasure. <</if>> - When you're finally done, $he's fairly tired, but $he manages to give her <<if $activeSlave.butt > 5>>huge<<elseif $activeSlave.butt > 2>>big<<else>>cute<</if>>, well-fucked butt a little wiggle for you, @@.mediumaquamarine;<<if canSee($activeSlave)>>looking<<else>>smiling<</if>> at you gratefully,@@ as $he skips off to wash. + When you're finally done, $he's fairly tired, but $he manages to give $his <<if $activeSlave.butt > 5>>huge<<elseif $activeSlave.butt > 2>>big<<else>>cute<</if>>, well-fucked butt a little wiggle for you, @@.mediumaquamarine;<<if canSee($activeSlave)>>looking<<else>>smiling<</if>> at you gratefully,@@ as $he skips off to wash. <<set $activeSlave.trust += 4>> <<if _didAnal == 1>> <<= AnalVCheck()>> @@ -8709,29 +8710,29 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Show the slut off">> <<EventNameDelink $activeSlave>> <<replace "#result">> - It takes a trifling command at your desk to surreptitiously slave one of the office cameras to her impromptu masturbation session, and send the feed to many of the public screens. After a few minutes, <<if canSee($activeSlave)>>$he notices the setup through one of the office's glass walls<<else>>you inform the eager masturbator that her show is live across the arcology<</if>>. + It takes a trifling command at your desk to surreptitiously slave one of the office cameras to $his impromptu masturbation session, and send the feed to many of the public screens. After a few minutes, <<if canSee($activeSlave)>>$he notices the setup through one of the office's glass walls<<else>>you inform the eager masturbator that $his show is live across the arcology<</if>>. <<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>> $He climaxes almost instantly at the realization, which plays right into $his fetish. <<else>> - $He pauses for a moment at the realization, but goes back to her business, blushing a little harder. + $He pauses for a moment at the realization, but goes back to $his business, blushing a little harder. <</if>> - $He even plays it up a little for her audience; when $he + $He even plays it up a little for $his audience; when $he <<if ($activeSlave.belly >= 120000) && ($activeSlave.dick > 0)>> climaxes, $he makes sure they can see the way $his enormously distended body spasms with orgasm. <<elseif ($activeSlave.belly >= 10000) && ($activeSlave.dick > 0)>> - finally orgasms, $he attempts to hike $his hips over her head and direct the cum into $his mouth. However, her <<if $activeSlave.bellyPreg >= 5000>>advanced pregnancy<<else>>_belly belly<</if>> thwarts her efforts and $he ends up cumming on $his stomach's underside. $He brushes some cum off with her fingers and brings it to $his mouth, smiling at the taste. + finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $his <<if $activeSlave.bellyPreg >= 5000>>advanced pregnancy<<else>>_belly belly<</if>> thwarts $his efforts and $he ends up cumming on $his stomach's underside. $He brushes some cum off with $his fingers and brings it to $his mouth, smiling at the taste. <<elseif ($activeSlave.dick > 0) && ($activeSlave.dick < 5) && ($activeSlave.belly >= 5000)>> - finally orgasms, $he attempts to hike $his hips over her head and direct the cum into $his mouth. However, $he ends up just coating her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> in her own cum. + finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. However, $he ends up just coating $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> in $his own cum. <<elseif ($activeSlave.dick > 4) && ($activeSlave.belly >= 5000)>> - finally orgasms, $he attempts to hike $his hips over her head and direct the cum into $his mouth. $His dick is large enough to extend past her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>>, allowing $him to blow her load into her waiting maw. + finally orgasms, $he attempts to hike $his hips over $his head and direct the cum into $his mouth. $His dick is large enough to extend past $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>>, allowing $him to blow $his load into $his waiting maw. <<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - finally manages to extract an orgasm from her limp dick, $he hikes $his hips over her head to direct it into $his mouth. + finally manages to extract an orgasm from $his limp dick, $he hikes $his hips over $his head to direct it into $his mouth. <<elseif $activeSlave.dick > 0>> - finally empties $his balls, $he hikes $his hips over her head to direct the cum into $his mouth. + finally empties $his balls, $he hikes $his hips over $his head to direct the cum into $his mouth. <<elseif $activeSlave.vagina == -1>> - climaxes, $he makes sure they can see the way her asspussy spasms with orgasm. + climaxes, $he makes sure they can see the way $his asspussy spasms with orgasm. <<else>> - finally climaxes, $he carefully licks $his hands clean, showing off her enjoyment of her own taste. + finally climaxes, $he carefully licks $his hands clean, showing off $his enjoyment of $his own taste. <</if>> Authenticity is hard to fake, and the many citizens who saw the broadcast don't doubt @@.green;your ability to train@@ a shameless slut. <<set $rep += 250>> @@ -8743,7 +8744,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Relaxed sex">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You flip the sheet off your naked body, revealing your already <<if $PC.dick == 0>>wet pussy<<else>>stiff prick<<if $PC.vagina == 1>> and the wet pussy below it<</if>><</if>>. $He slides $himself down, pressing her + You flip the sheet off your naked body, revealing your already <<if $PC.dick == 0>>wet pussy<<else>>stiff prick<<if $PC.vagina == 1>> and the wet pussy below it<</if>><</if>>. $He slides $himself down, pressing $his <<if ($activeSlave.boobs > 2000)>> ridiculous tits <<elseif ($activeSlave.boobs > 800)>> @@ -8753,7 +8754,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> trim chest <</if>> - against your legs, and nuzzles her warm nose and wet tongue against + against your legs, and nuzzles $his warm nose and wet tongue against <<if $PC.balls > 2 || $PC.ballsImplant > 2>> your oversized nuts. <<elseif $PC.vagina == 1>> @@ -8761,7 +8762,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> your ballsack. <</if>> - You run a languid hand through $his hair, but soon relax into a pleasant, tired fugue, letting yourself enjoy her ministrations. You almost drift off under the slow oral loving, but a sudden coolness against you brings you partially awake again: $he's taken $his mouth off you, leaving the night air against your saliva-wetted <<if $PC.vagina == 1>>pussylips<<else>>cock<</if>>. $He quickly realizes the error, and applies $himself diligently to you, never letting the warm feeling die down again. You orgasm twice, which $he absorbs without stopping, looking up at you with an expression that's unidentifiable in the gloom. But when you finally reach down and give her <<if ($activeSlave.belly >= 10000)>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly a light pat<<else>>shoulder a little tug<</if>> to let $him know that's enough, $he @@.mediumaquamarine;cuddles up close to you@@ without hesitation. + You run a languid hand through $his hair, but soon relax into a pleasant, tired fugue, letting yourself enjoy $his ministrations. You almost drift off under the slow oral loving, but a sudden coolness against you brings you partially awake again: $he's taken $his mouth off you, leaving the night air against your saliva-wetted <<if $PC.vagina == 1>>pussylips<<else>>cock<</if>>. $He quickly realizes the error, and applies $himself diligently to you, never letting the warm feeling die down again. You orgasm twice, which $he absorbs without stopping, looking up at you with an expression that's unidentifiable in the gloom. But when you finally reach down and give $his <<if ($activeSlave.belly >= 10000)>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly a light pat<<else>>shoulder a little tug<</if>> to let $him know that's enough, $he @@.mediumaquamarine;cuddles up close to you@@ without hesitation. <<set $activeSlave.trust += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -8770,14 +8771,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Surprise sex">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of her with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of her<</if>>. + You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>. <<if ($activeSlave.bellyPreg < 1500)>> <<if $activeSlave.belly >= 10000>> $His _belly belly squashes out to either side of $his torso, <<elseif ($activeSlave.boobs > 2000)>> $His huge breasts squash out to either side of $his torso, <<elseif ($activeSlave.dick > 0)>> - $He shifts desperately to get some weight off her trapped dick, + $He shifts desperately to get some weight off $his trapped dick, <<else>> $He squirms reflexively, <</if>> @@ -8786,7 +8787,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He squirms reflexively, <</if>> - but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under her middle, and spread her + but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his <<if $activeSlave.butt > 5>> inconveniently plush butt <<elseif $activeSlave.butt > 2>> @@ -8794,7 +8795,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> trim buttocks <</if>> - with one hand to get at $his pussy. You feel her take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against her moist slit. The relaxation + with one hand to get at $his pussy. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his moist slit. The relaxation <<if $activeSlave.vagina > 2>> gapes $his vagina wide, welcoming you in without any resistance at all. <<elseif $activeSlave.vagina > 1>> @@ -8802,26 +8803,26 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> welcomes you in, though $he does buck a little at the first penetration. <</if>> - You surprised her badly, but the adrenaline melts into arousal as you pump in and out of $his cunt. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving her any respite to fetch + You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his cunt. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch <<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - an egg vibe. You shove it between $him and the cushion to give her limp dick some stimulation. + an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation. <<elseif $activeSlave.dick > 4>> a huge onahole. You push it between $him and the cushion so $he can fuck it. <<elseif $activeSlave.dick > 0>> an onahole. You push it between $him and the cushion so $he can fuck it. <<elseif $activeSlave.clit > 1>> - a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff her pseudophallic clit into it. + a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it. <<elseif canDoAnal($activeSlave)>> - an egg vibe. You push it into $his ass to stimulate her <<if $activeSlave.prostate > 0>>prostate<<else>>insides<</if>>. + an egg vibe. You push it into $his ass to stimulate $his <<if $activeSlave.prostate > 0>>prostate<<else>>insides<</if>>. <<else>> - an egg vibe. You place it under her so it can stimulate the sensitive skin between $his legs, just beneath her asspussy. + an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy. <</if>> <<if !canTalk($activeSlave)>> $His hands jerk out a spastic thank you in the darkness, <<else>> $He coos a wordless thanks, <</if>> - and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress her;@@ as you spend an hour exhausting yourself against $his vagina, $he wonders whether her <<= WrittenMaster()>> is ever too tired to fuck. + and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his vagina, $he wonders whether $his <<= WrittenMaster()>> is ever too tired to fuck. <<set $activeSlave.devotion += 4>> <<= VaginalVCheck()>> <</replace>> @@ -8831,14 +8832,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Surprise buttsex">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of her with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of her<</if>>. + You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of $him with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of $him<</if>>. <<if ($activeSlave.bellyPreg < 1500)>> <<if $activeSlave.belly >= 10000>> $His _belly belly squashes out to either side of $his torso, <<elseif ($activeSlave.boobs > 2000)>> $His huge breasts squash out to either side of $his torso, <<elseif ($activeSlave.dick > 0)>> - $He shifts desperately to get some weight off her trapped dick, + $He shifts desperately to get some weight off $his trapped dick, <<else>> $He squirms reflexively, <</if>> @@ -8847,7 +8848,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He squirms reflexively, <</if>> - but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under her middle, and spread her + but your attention is directed farther down: you wrap an arm around $his hips, hoist $him, shove a cushion under $his middle, and spread $his <<if $activeSlave.butt > 5>> inconveniently plush butt <<elseif $activeSlave.butt > 2>> @@ -8855,34 +8856,34 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> trim buttocks <</if>> - with one hand to get at $his asshole. You feel her take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his anus. The relaxation + with one hand to get at $his asshole. You feel $him take a deep breath under you, and $he lets it out as you press <<if $PC.dick == 0>>the tip of your strap-on<<else>>your dickhead<</if>> against $his anus. The relaxation <<if $activeSlave.anus > 2>> - gapes her asspussy wide, welcoming you in without any resistance at all. + gapes $his asspussy wide, welcoming you in without any resistance at all. <<elseif $activeSlave.anus > 1>> welcomes you in, offering you only a delicious bit of resistance to push against. <<else>> - saves her from too much anal pain, though $he does buck a little at the first penetration. + saves $his from too much anal pain, though $he does buck a little at the first penetration. <</if>> - You surprised her badly, but the adrenaline melts into arousal as you pump in and out of $his ass. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving her any respite to fetch + You surprised $him badly, but the adrenaline melts into arousal as you pump in and out of $his ass. $He grinds shamelessly against the cushion; since $he's being a good $girl, you reach up to your bedside without giving $him any respite to fetch <<if ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - an egg vibe. You shove it between $him and the cushion to give her limp dick some stimulation. + an egg vibe. You shove it between $him and the cushion to give $his limp dick some stimulation. <<elseif $activeSlave.dick > 4>> a huge onahole. You push it between $him and the cushion so $he can fuck it. <<elseif $activeSlave.dick > 0>> an onahole. You push it between $him and the cushion so $he can fuck it. <<elseif $activeSlave.clit > 1>> - a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff her pseudophallic clit into it. + a shallow vibrating onahole. You push it between $him and the cushion so $he can stuff $his pseudophallic clit into it. <<elseif $activeSlave.vagina == -1>> - an egg vibe. You place it under her so it can stimulate the sensitive skin between $his legs, just beneath her asspussy. + an egg vibe. You place it under $him so it can stimulate the sensitive skin between $his legs, just beneath $his asspussy. <<else>> - an egg vibe. You push it between $him and the cushion so $he can rub her <<if !canDoVaginal($activeSlave)>>chaste <</if>>pussy against it. + an egg vibe. You push it between $him and the cushion so $he can rub $his <<if !canDoVaginal($activeSlave)>>chaste <</if>>pussy against it. <</if>> <<if !canTalk($activeSlave)>> $His hands jerk out a spastic thank you in the darkness, <<else>> $He coos a wordless thanks, <</if>> - and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress her;@@ as you spend an hour exhausting yourself against $his asshole, $he wonders whether her <<= WrittenMaster()>> is ever too tired to fuck a butt. + and $he starts humping away. If $he thought you were too tired for sex, you certainly @@.hotpink;impress $him;@@ as you spend an hour exhausting yourself against $his asshole, $he wonders whether $his <<= WrittenMaster()>> is ever too tired to fuck a butt. <<set $activeSlave.devotion += 4>> <<= AnalVCheck()>> <</replace>> @@ -8895,13 +8896,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Enter the shower and take $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's so occupied that $he doesn't hear you until you seize her under the armpits and drag $him to her feet. $His massive dickhead pops free of $his mouth and $he squeaks in surprise as you push her<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> against the wall of the shower and stuff your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up her + $He's so occupied that $he doesn't hear you until you seize $him under the armpits and drag $him to $his feet. $His massive dickhead pops free of $his mouth and $he squeaks in surprise as you push $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> against the wall of the shower and stuff your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his <<if canDoVaginal($activeSlave)>> cunt. <<else>> ass. <</if>> - $He was already very close to orgasm, and the stimulation of her dick rubbing against the warm, wet wall<<if $activeSlave.belly >= 1500>> of the shower and $his belly<<else>> of the shower<</if>>, not to mention the feeling of being + $He was already very close to orgasm, and the stimulation of $his dick rubbing against the warm, wet wall<<if $activeSlave.belly >= 1500>> of the shower and $his belly<<else>> of the shower<</if>>, not to mention the feeling of being <<if canDoVaginal($activeSlave)>> fucked, <<else>> @@ -8931,18 +8932,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<if ($PC.dick == 1)>> <<if ($PC.title == 1)>> - <br><<link "The only dick $he should suck is her Master's">> + <br><<link "The only dick $he should suck is $his Master's">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's so occupied that $he doesn't hear you until you seize $his hair and pull her head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down her throat. $He plays with your <<if $PC.vagina == 1>>cunt<<else>>balls<</if>> as you face fuck $him and jacks off with her other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@ + $He's so occupied that $he doesn't hear you until you seize $his hair and pull $his head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down $his throat. $He plays with your <<if $PC.vagina == 1>>cunt<<else>>balls<</if>> as you face fuck $him and jacks off with $his other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <<else>> - <br><<link "The only dick $he should suck is her Mistress's">> + <br><<link "The only dick $he should suck is $his Mistress's">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's so occupied that $he doesn't hear you until you seize $his hair and pull her head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down her throat. $He plays with your <<if $PC.vagina == 1>>cunt<<else>>balls<</if>> as you face fuck $him and jacks off with her other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@ + $He's so occupied that $he doesn't hear you until you seize $his hair and pull $his head back. $His massive dickhead pops free of $his mouth and $he squeaks in surprise. The noise is cut off by a gag as you ram yourself down $his throat. $He plays with your <<if $PC.vagina == 1>>cunt<<else>>balls<</if>> as you face fuck $him and jacks off with $his other hand. $He was so close when you intruded that $he cums long before you do. There's a lot of cum in the shower when you're through. <<if $activeSlave.balls == 3>>$His huge balls made an especially major contribution. <</if>>@@.hotpink;$He has become more submissive to you.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -8952,7 +8953,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "See if $he can do that while you take $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You interrupt $activeSlave.slaveName and make her lie on a nearby bed. After some preparatory stretching, during which her frustrated erection flops forlornly around, you manage to get both her ankles behind her head. In this position $he manages to resume sucking on the head of $his penis as you slip into $him. + You interrupt $activeSlave.slaveName and make $him lie on a nearby bed. After some preparatory stretching, during which $his frustrated erection flops forlornly around, you manage to get both $his ankles behind $his head. In this position $he manages to resume sucking on the head of $his penis as you slip into $him. <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> <<else>> @@ -8988,16 +8989,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He mumbles a hesitant question: "<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, am I a good <<s>>lave?" <</if>> - You tell $him that $he is, running a hand <<if $activeSlave.hStyle == "shaved bald">>across her bald scalp<<else>>through $his hair<</if>>. $He seems @@.hotpink;reassured,@@ and thankful when you give $him a cup of her proper rations from your own hand. + You tell $him that $he is, running a hand <<if $activeSlave.hStyle == "shaved bald">>across $his bald scalp<<else>>through $his hair<</if>>. $He seems @@.hotpink;reassured,@@ and thankful when you give $him a cup of $his proper rations from your own hand. <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <br><<link "Reassure $him and get $him to slow down">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's so intent on trying to suck off the food dispenser that $he doesn't hear you enter the room. $He starts with surprise when you encircle her<<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> belly<<else>> waist<</if>> with your arms and murmur reassuringly in her ear. + $He's so intent on trying to suck off the food dispenser that $he doesn't hear you enter the room. $He starts with surprise when you encircle $his<<if $activeSlave.belly >= 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> belly<<else>> waist<</if>> with your arms and murmur reassuringly in $his ear. <<if !canTalk($activeSlave)>> - $He sadly gestures at the spigot and then flicks her own head. + $He sadly gestures at the spigot and then flicks $his own head. <<else>> $He <<say>>s sadly, "<<S>>orry <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>. I'm trying to be a good <<s>>lave but it'<<s>> hard." <</if>> @@ -9007,7 +9008,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> "Really, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>?" $he asks hopefully. <</if>> - You whisper into her ear that yes, $he will be all right as long as $he does her best. $He wiggles $his butt against you a little and giggles <<if $PC.dick == 1>>at the responding stiffness $he feels between $his buttocks<<else>>as you shove $him to $his knees<</if>>. $He shimmies down and <<if $PC.dick == 1>>takes you into $his mouth<<if $PC.vagina == 1>> and does her best to reach the top of your pussy with the tip of $his tongue<</if>><<else>>eats you out<</if>>, <<if canSee($activeSlave)>>looking you in the eyes the whole time and <</if>>@@.hotpink;smiling@@ as much as $he can manage with <<if $PC.dick == 1>>a dick in $his mouth<<else>>$his tongue working your clit<</if>>. + You whisper into $his ear that yes, $he will be all right as long as $he does $his best. $He wiggles $his butt against you a little and giggles <<if $PC.dick == 1>>at the responding stiffness $he feels between $his buttocks<<else>>as you shove $him to $his knees<</if>>. $He shimmies down and <<if $PC.dick == 1>>takes you into $his mouth<<if $PC.vagina == 1>> and does $his best to reach the top of your pussy with the tip of $his tongue<</if>><<else>>eats you out<</if>>, <<if canSee($activeSlave)>>looking you in the eyes the whole time and <</if>>@@.hotpink;smiling@@ as much as $he can manage with <<if $PC.dick == 1>>a dick in $his mouth<<else>>$his tongue working your clit<</if>>. <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -9044,7 +9045,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against $his restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -9054,10 +9055,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "devoted old">> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<<link "Cheer her up">> +<<link "Cheer $him up">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You close in on $him, and $he starts to present $himself with the force of long habit. However, you take $him by the hand and draw her in close, running your fingertips along $his cheekbone, looking into her $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He only holds your gaze for a brief moment before blushing and looking down again,<<else>>Once $he feels your hand stop, $he quickly glances down while<</if>> muttering another apology. You raise $his chin again with a gentle hand and give $him a deep kiss. After a moment $he hugs you with almost painful + You close in on $him, and $he starts to present $himself with the force of long habit. However, you take $him by the hand and draw $him in close, running your fingertips along $his cheekbone, looking into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He only holds your gaze for a brief moment before blushing and looking down again,<<else>>Once $he feels your hand stop, $he quickly glances down while<</if>> muttering another apology. You raise $his chin again with a gentle hand and give $him a deep kiss. After a moment $he hugs you with almost painful <<if $activeSlave.belly >= 100000>> fierceness, a feat given the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly, where <<elseif $activeSlave.belly >= 5000>> @@ -9067,13 +9068,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> you can feel a heat radiating from $him. $He makes to get down on $his knees to serve you again, but instead, you <<if $activeSlave.belly >= 300000>> - help her up and guide + help $him up and guide <<elseif $activeSlave.belly >= 5000>> - gently scoop her up and carry + gently scoop $him up and carry <<else>> - scoop her up and carry + scoop $him up and carry <</if>> - $him to bed, laying the bemused $girl down before cuddling up behind $him. The two of you make languid love, with you murmuring reassuringly into her ear, nibbling her neck, cupping $his breasts,<<if $activeSlave.belly >= 1500>>rubbing her distended midriff,<</if>> and massaging her shoulders by turns. After a lovely climax together in her + $him to bed, laying the bemused $girl down before cuddling up behind $him. The two of you make languid love, with you murmuring reassuringly into $his ear, nibbling $his neck, cupping $his breasts,<<if $activeSlave.belly >= 1500>>rubbing $his distended midriff,<</if>> and massaging $his shoulders by turns. After a lovely climax together in $his <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> pussy $he coquettishly shifts $himself to line your recovering cock up with $his ass, <<set _didVaginal = 1, _didAnal = 1>> @@ -9099,9 +9100,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Perform a health exam personally">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He gets a weekly health exam from the automated systems, which also do their best to monitor her well-being, but $he does not protest as you take $him to the surgery and give $him a <<if $PC.medicine >= 100>>professional examination. It feels good to put the old skills to use on an attractive patient<<else>>thorough examination<</if>>. There's nothing the matter other than that $he hasn't been 18 for a long time. $He looks a little sad at some of the results, but whenever $he does, you place a hand on $his cheek and give $him a kiss. $He gets the idea. + $He gets a weekly health exam from the automated systems, which also do their best to monitor $his well-being, but $he does not protest as you take $him to the surgery and give $him a <<if $PC.medicine >= 100>>professional examination. It feels good to put the old skills to use on an attractive patient<<else>>thorough examination<</if>>. There's nothing the matter other than that $he hasn't been 18 for a long time. $He looks a little sad at some of the results, but whenever $he does, you place a hand on $his cheek and give $him a kiss. $He gets the idea. "I under<<s>>tand, <<Master>>. I can <<s>>till <<s>>erve you," $he <<say>>s. - You adjust her diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.medicine >= 100>>, and prescribe some new supplements that might help her @@.green;feel her best@@ all the time<<set $activeSlave.health += 10>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you. + You adjust $his diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.medicine >= 100>>, and prescribe some new supplements that might help $him @@.green;feel $his best@@ all the time<<set $activeSlave.health += 10>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you. <<set $activeSlave.health += 10, $activeSlave.trust += 4>> <</replace>> <</link>> @@ -9120,51 +9121,51 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "tendon fall">> -<<link "Help her clean $himself">> +<<link "Help $him clean $himself">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step into the running water and seat yourself in the shower, drawing her into your lap. $He seems surprised and <<if canSee($activeSlave)>>stares at you through the steam<<else>>gazes towards you<</if>> for a moment before looking away with a blush. $He expects you to <<if $PC.dick == 0>>ride her wet face<<else>>insert your member into her wet body<</if>>, but finds you handing $him the soap instead. You gently support her as $he washes, partaking of physical closeness and support. @@.hotpink;$He has become more devoted to you.@@ + You step into the running water and seat yourself in the shower, drawing $him into your lap. $He seems surprised and <<if canSee($activeSlave)>>stares at you through the steam<<else>>gazes towards you<</if>> for a moment before looking away with a blush. $He expects you to <<if $PC.dick == 0>>ride $his wet face<<else>>insert your member into $his wet body<</if>>, but finds you handing $him the soap instead. You gently support $him as $he washes, partaking of physical closeness and support. @@.hotpink;$He has become more devoted to you.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> -<br><<link "Fuck her prostrate body">> +<br><<link "Fuck $him prostrate body">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You make no answer, entering the shower to stand over her prostrate form. You reach down and grope her soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks, questing fingers moving towards her asscrack. + You make no answer, entering the shower to stand over $him prostrate form. You reach down and grope $him soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks, questing fingers moving towards $him asscrack. <<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>> $His rectum is so fucked out and loose that your groping hand almost slides up it. <<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>> $His pussy is so fucked out and loose that your groping hand almost slides up it. <<else>> - You finger fuck her for a while, the sting of the soap on her sensitive insides making her gasp. + You finger fuck $him for a while, the sting of the soap on $him sensitive insides making $him gasp. <</if>> - As $he moans down on the shower floor, you lie down behind $him, spooning her helpless body<<if $activeSlave.belly >= 5000>>, your hands encircling $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>><</if>>. + As $he moans down on the shower floor, you lie down behind $him, spooning $his helpless body<<if $activeSlave.belly >= 5000>>, your hands encircling $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>><</if>>. <<if $PC.dick == 1>> - Your cock slides into her with ease + Your cock slides into $him with ease <<elseif $PC.boobs == 1>> $His soft back is delicious against your hard nipples <<else>> - The contours of her soft rear feel lovely against your feminine petals + The contours of $him soft rear feel lovely against your feminine petals <</if>> and the warm water playing over your warm bodies is a comforting accompaniment to the comforting sex. <<if $PC.dick == 0>> - You ride yourself against her warm wet body until you climax from the rubbing alone + You ride yourself against $his warm wet body until you climax from the rubbing alone <<else>> You leave a load of cum in <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> each of $his holes <<set _didVaginal = 1, _didAnal = 1>> <<elseif canDoAnal($activeSlave)>> - her loosened butthole + $his loosened butthole <<set _didAnal = 1>> <<else>> - her loosened vagina + $his loosened vagina <<set _didVaginal = 1>> <</if>> - <<if $PC.vagina == 1>> and make her eat your pussy for a quick aftershock,<</if>> + <<if $PC.vagina == 1>> and make $him eat your pussy for a quick aftershock,<</if>> <</if>> - and only then do you help her back to her feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@ + and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@ <<if _didVaginal == 1 && _didAnal == 1>> <<= BothVCheck()>> <<elseif _didVaginal == 1>> @@ -9176,10 +9177,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>><<if $PC.dick == 1 && (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave)))>> //This option will take virginity//<</if>> <</if>> -<br><<link "Let her struggle">> +<br><<link "Let $him struggle">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He struggles for a while until you get bored and leave $him to it. Eventually her thrashing brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@ + $He struggles for a while until you get bored and leave $him to it. Eventually $his thrashing brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@ <<set $activeSlave.devotion -= 5>> <</replace>> <</link>> @@ -9187,19 +9188,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "unhappy virgin">> <<if canDoAnal($activeSlave)>> -<<link "No, and her role is to suck dick and take it in the ass">> +<<link "No, and $his role is to suck dick and take it in the ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You patiently explain that you've decided to use her as an oral and anal slave, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt her from this, but you do let her take it easy. Rather than facefucking her you let her suckle you gently. Rather that a hard buttfuck, you take $him to the couch and gently spoon her with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his ass while making out with $him and playing with $his nipples. $He understands your forbearance and @@.hotpink;appreciates how kind her <<= WrittenMaster()>> is.@@ + You patiently explain that you've decided to use $him as an oral and anal slave, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently. Rather that a hard buttfuck, you take $him to the couch and gently spoon $him with your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his ass while making out with $him and playing with $his nipples. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= WrittenMaster()>> is.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <<= AnalVCheck()>> <</replace>> <</link>> <<else>> -<<link "No, and her role is to suck dick and like it">> +<<link "No, and $his role is to suck dick and like it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You patiently explain that you've decided to use her as an oral slave, since $his ass is off-limits, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt her from this, but you do let her take it easy. Rather than facefucking her you let her suckle you gently, calmly patting her head as $he does. $He understands your forbearance and @@.hotpink;appreciates how kind her <<= WrittenMaster()>> is.@@ + You patiently explain that you've decided to use $him as an oral slave, since $his ass is off-limits, and leave $his pussy unfucked. $He's unsurprised, but $he understands your decision. You usually fuck slaves during your inspection, and you don't exempt $him from this, but you do let $him take it easy. Rather than facefucking $him you let $him suckle you gently, calmly patting $his head as $he does. $He understands your forbearance and @@.hotpink;appreciates how kind $his <<= WrittenMaster()>> is.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -9207,11 +9208,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "No, and $he shouldn't have asked">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Despite being allowed to ask questions $he should not question her <<= WrittenMaster()>>'s choices about her sexual duties. To communicate the point, you<<if $PC.dick == 0>> don a strap-on and<</if>> order $him to lie on the desk, on her back, with her throat slack for penetration. + Despite being allowed to ask questions $he should not question $his <<= WrittenMaster()>>'s choices about $his sexual duties. To communicate the point, you<<if $PC.dick == 0>> don a strap-on and<</if>> order $him to lie on the desk, on $his back, with $his throat slack for penetration. <<if canDoAnal($activeSlave)>> - After a good long throatfuck that leaves her gasping and moaning, you flip her over and fuck $his ass until $he's squealing with each thrust. + After a good long throatfuck that leaves $him gasping and moaning, you flip $him over and fuck $his ass until $he's squealing with each thrust. <<else>> - Only after an extended and forceful series of throatfuckings that leaves the bewildered $desc gasping for air and barely conscious, do you feel $he has learned what hole $he should be focused on. For good measure, you deepthroat her one last time, to really drive the point home. + Only after an extended and forceful series of throatfuckings that leaves the bewildered $desc gasping for air and barely conscious, do you feel $he has learned what hole $he should be focused on. For good measure, you deepthroat $him one last time, to really drive the point home. <</if>> As $he leaves, sore all over, $he's @@.mediumorchid;badly confused@@ that $he was apparently punished for asking questions. <<set $activeSlave.devotion -= 5>> @@ -9226,34 +9227,34 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Yes, the time has come">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He framed her desire to lose her virginity in businesslike terms, but her reaction to your assent suggests that $he also wouldn't mind having vanilla sex with her <<= WrittenMaster()>>. You're already quite + $He framed $his desire to lose $his virginity in businesslike terms, but $his reaction to your assent suggests that $he also wouldn't mind having vanilla sex with $his <<= WrittenMaster()>>. You're already quite <<if $PC.dick == 0>> - turned on by the idea, so you pull on a strap-on, pull her over to the couch<<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>>, unfasten her chastity belt<</if>>, + turned on by the idea, so you pull on a strap-on, pull $him over to the couch<<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>>, unfasten $his chastity belt<</if>>, <<else>> - hard, so you just lie down with her on the couch<<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>>, unfasten her chastity belt,<</if>> + hard, so you just lie down with $him on the couch<<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>>, unfasten $his chastity belt,<</if>> <</if>> - and have gentle vaginal sex in the missionary position <<if $PC.vagina == 1>><<if $PC.dick == 1>>, your own pussy moving back and forth gently at the base of your dick as you fuck her<</if>><</if>>. $He gasps at the first penetration, but you take it slowly and lavish attention on $his lips, breasts, and nipples. Soon $he's shamelessly enjoying $himself. $His first vaginal sex is crowned with an abdominal-clenching orgasm. $He @@.hotpink;adores her kind <<= WrittenMaster()>>.@@ + and have gentle vaginal sex in the missionary position <<if $PC.vagina == 1>><<if $PC.dick == 1>>, your own pussy moving back and forth gently at the base of your dick as you fuck $him<</if>><</if>>. $He gasps at the first penetration, but you take it slowly and lavish attention on $his lips, breasts, and nipples. Soon $he's shamelessly enjoying $himself. $His first vaginal sex is crowned with an abdominal-clenching orgasm. $He @@.hotpink;adores $his kind <<= WrittenMaster()>>.@@ <<set $activeSlave.devotion += 10, $activeSlave.vaginalCount++, $activeSlave.vagina = 1, $vaginalTotal++>> <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>><<set $activeSlave.vaginalAccessory = "none">><</if>> <<if canImpreg($activeSlave, $PC)>> <<= knockMeUp($activeSlave, 25, 0, -1)>> <</if>> <</replace>> -<</link>><<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> //This option will remove her chastity belt//<</if>> +<</link>><<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> //This option will remove $his chastity belt//<</if>> <<case "obedient bitchy">> -<<link "Beg her pardon and offer to loan the bitch to $him">> +<<link "Beg her pardon and offer to loan the bitch to her">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with $him. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@ + The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with her. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@ <<set $activeSlave.behavioralFlaw = "none", $activeSlave.oralCount += 5, $oralTotal += 5>> <</replace>> <</link>> <br><<link "Offer to spitroast the bitch between the two of you">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The businesswoman grins slowly and reaches into her purse as you inform $activeSlave.slaveName that you and the businesswoman will punish $him together. $activeSlave.slaveName's eyes widen as the businesswoman fishes a massive strap on out of her bag. The surprise turns to fear as the businesswoman begins to slap it against $activeSlave.slaveName's buttocks as you + The businesswoman grins slowly and reaches into $his purse as you inform $activeSlave.slaveName that you and the businesswoman will punish $him together. $activeSlave.slaveName's eyes widen as the businesswoman fishes a massive strap on out of $his bag. The surprise turns to fear as the businesswoman begins to slap it against $activeSlave.slaveName's buttocks as you <<if $activeSlave.amp != 1>> <<if $activeSlave.belly >= 300000>> push $him onto $his _belly belly. @@ -9317,7 +9318,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> shakes with release <</if>> - after just a few strokes of your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his butt. $His <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> ass spasms and tightens with her climax<<if $PC.dick == 1>>, a wonderful sensation<</if>>. You aren't finished with $him, but $he rubs $himself languidly and enjoys the hard anal reaming more than $he ever has previously. $His devotion to you @@.hotpink;has increased.@@ + after just a few strokes of your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up $his butt. $His <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> ass spasms and tightens with $his climax<<if $PC.dick == 1>>, a wonderful sensation<</if>>. You aren't finished with $him, but $he rubs $himself languidly and enjoys the hard anal reaming more than $he ever has previously. $His devotion to you @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> <<= AnalVCheck()>> <</replace>> @@ -9325,7 +9326,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Train $him to be a skilled anal bottom">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He obeys your orders to keep $his hands off her dick, but can't hide her disappointment and frustration. You keep a close watch on $him, and buttfuck her every chance you get, teaching $him the finer points of taking a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up the butt. You focus entirely on your pleasure, teaching her how to use her <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anal ring to extract orgasms from cocks. This experience was hard for her but has increased her anal skill. + $He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and buttfuck $him every chance you get, teaching $him the finer points of taking a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up the butt. You focus entirely on your pleasure, teaching $him how to use $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anal ring to extract orgasms from cocks. This experience was hard for $him but has increased $his anal skill. <<set $skillIncrease = 10>><<AnalSkillIncrease $activeSlave>> <<= AnalVCheck(9)>> <</replace>> @@ -9334,7 +9335,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Train $him to orgasm anally">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He obeys your orders to keep $his hands off her dick, but can't hide her disappointment and frustration. You keep a close watch on $him, and fuck her <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anus every chance you get, keeping her desperately aroused and desperately sodomized. After some days of this, $he finally reaches a point of desperate arousal that permits $him to orgasm to prostate stimulation alone. + $He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and fuck $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anus every chance you get, keeping $him desperately aroused and desperately sodomized. After some days of this, $he finally reaches a point of desperate arousal that permits $him to orgasm to prostate stimulation alone. <<= AnalVCheck(9)>> <<if random(1,100) > 50>> <<set $activeSlave.fetishStrength = 10, $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>> @@ -9351,45 +9352,46 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Make an example by forcing $him to take a massive dose">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You take $him by the shoulders, look into $his eyes, and tell her you'll fix things so $he doesn't mind so much. $He looks hopeful, even when you tell $him to take her pill. $He does, and you hand her another. And another. $He's crying with dread by the fourth pill, knowing that this is $his punishment for complaining. $His pupils dilate, $he begins to breathe hard, and $his $activeSlave.skin skin flushes badly. $He tries to beg you to fuck her but can't seem to find the words. $He begins to masturbate compulsively, so hard that $he collapses to the kitchen floor with her first spastic orgasm. + You take $him by the shoulders, look into $his eyes, and tell $him you'll fix things so $he doesn't mind so much. $He looks hopeful, even when you tell $him to take $his pill. $He does, and you hand $him another. And another. $He's crying with dread by the fourth pill, knowing that this is $his punishment for complaining. $His pupils dilate, $he begins to breathe hard, and $his $activeSlave.skin skin flushes badly. $He tries to beg you to fuck $him but can't seem to find the words. $He begins to masturbate compulsively, so hard that $he collapses to the kitchen floor with $his first spastic orgasm. <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - $His cock is painfully compressed by her chastity cage, but it does nothing to stop her frantic efforts to come. + $His cock is painfully compressed by $his chastity cage, but it does nothing to stop $his frantic efforts to come. <<elseif canAchieveErection($activeSlave)>> <<if $activeSlave.dick > 9>> - $His inhuman cock is as engorged as physically possible given its size, threatens to knock her unconscious from the sheer amount of blood diverted into it, and doesn't shrink at all when cum weakly splurts from its tip. + $His inhuman cock is as engorged as physically possible given its size, threatens to knock $him unconscious from the sheer amount of blood diverted into it, and doesn't shrink at all when cum weakly splurts from its tip. <<elseif $activeSlave.dick > 6>> - $His monstrous cock is agonizingly erect, threatens to knock her unconscious from the sheer amount of blood is takes $him to get hard, and doesn't soften at all when $he spatters her own chest with cum. + $His monstrous cock is agonizingly erect, threatens to knock $him unconscious from the sheer amount of blood is takes $him to get hard, and doesn't soften at all when $he spatters $his own chest with cum. <<elseif $activeSlave.dick > 4>> - $His huge cock is agonizingly erect and doesn't soften at all when $he spatters her own chest with cum. + $His huge cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum. <<elseif $activeSlave.dick > 3>> - $His big cock is agonizingly erect and doesn't soften at all when $he spatters her own chest with cum. + $His big cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum. <<elseif $activeSlave.dick > 1>> - $His cock is agonizingly erect and doesn't soften at all when $he spatters her own chest with cum. + $His cock is agonizingly erect and doesn't soften at all when $he spatters $his own chest with cum. <<elseif $activeSlave.dick > 0>> $His pathetic dick is agonizingly erect and doesn't soften at all when $he weakly dribbles cum. <</if>> <<elseif canDoVaginal($activeSlave)>> - $His pussy is dripping with moisture and her ragingly stiff clit doesn't soften at all when $he comes. + $His pussy is dripping with moisture and $his ragingly stiff clit doesn't soften at all when $he comes. <<elseif canDoAnal($activeSlave)>> - $His hungry asshole spasms with orgasm, but $he doesn't even pause her anal masturbation. + $His hungry asshole spasms with orgasm, but $he doesn't even pause $his anal masturbation. <<else>> - $His whole body spasms with orgasm, but $he doesn't even pause her efforts to draw out an orgasm by any means possible. + $His whole body spasms with orgasm, but $he doesn't even pause $his efforts to draw out an orgasm by any means possible. <</if>> - For the hour or so it takes $him to pass out, slaves using the kitchen have to step over her prostrate, orgasming body, lying in a pool of her own drool, tears, sweat, and fluids. The next time you see $him in the kitchen, $he takes her medicine like a @@.gold;good $girl.@@ All your aphrodisiac addicts recognize the symptoms and the punishment, and @@.gold;avoid even thinking@@ about resisting the system. + For the hour or so it takes $him to pass out, slaves using the kitchen have to step over $his prostrate, orgasming body, lying in a pool of $his own drool, tears, sweat, and fluids. The next time you see $him in the kitchen, $he takes $his medicine like a @@.gold;good $girl.@@ All your aphrodisiac addicts recognize the symptoms and the punishment, and @@.gold;avoid even thinking@@ about resisting the system. +>>>>>>> c8b743c512a5c105a25650a1fea2d23f9edcb511 <<set $slaves.forEach(function(s) { if (s.aphrodisiacs > 0 || s.inflationType == "aphrodisiac") { s.trust -= 5; } })>> <</replace>> <</link>> <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> -<br><<link "Have caring sex with her before $he takes the aphrodisiacs">> +<br><<link "Have caring sex with $him before $he takes the aphrodisiacs">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You back her up against the wall of the kitchen, kissing $him, touching $his body with care, and quietly shushing her attempts to ask questions. You deftly extract the pill form $his hand and put it on the counter for later. With time and skill you bring $him to a fine state of arousal, not to mention @@.hotpink;emotional need;@@ $he begins to kiss you back with almost frantic enthusiasm. When $he's clearly ready, you lay her across the kitchen table and <<if $PC.dick == 0>>work your groin up between $his legs<<else>>enter her<</if>>, drawing out a lusty moan. As the sex continues, however, $he begins to look doubtful, then distracted, and then to twitch occasionally. Finally $he bursts into tears. + You back $him up against the wall of the kitchen, kissing $him, touching $his body with care, and quietly shushing $his attempts to ask questions. You deftly extract the pill form $his hand and put it on the counter for later. With time and skill you bring $him to a fine state of arousal, not to mention @@.hotpink;emotional need;@@ $he begins to kiss you back with almost frantic enthusiasm. When $he's clearly ready, you lay $him across the kitchen table and <<if $PC.dick == 0>>work your groin up between $his legs<<else>>enter $him<</if>>, drawing out a lusty moan. As the sex continues, however, $he begins to look doubtful, then distracted, and then to twitch occasionally. Finally $he bursts into tears. <<if !canTalk($activeSlave)>> - $He indicates through her weeping that $he can't climax without the drugs. + $He indicates through $his weeping that $he can't climax without the drugs. <<else>> "I - I - fucking need my fix to come, <<Master>>," $he sobs. <</if>> - You pass $him the pill, and $he continues to weep inconsolably, apologizing all the while, until the drug takes away her ability to care about anything but getting fucked. When you finish and extract <<if $PC.dick == 0>>yourself from between $his legs<<else>>your cock from her well-used hole<</if>>, though, you think you can detect a deep sadness in $his eyes that it cannot reach. + You pass $him the pill, and $he continues to weep inconsolably, apologizing all the while, until the drug takes away $his ability to care about anything but getting fucked. When you finish and extract <<if $PC.dick == 0>>yourself from between $his legs<<else>>your cock from $his well-used hole<</if>>, though, you think you can detect a deep sadness in $his eyes that it cannot reach. <<set $activeSlave.devotion += 4>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -9405,16 +9407,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Put a slave in $him">> <<if $activeSlave.mpreg == 1>> <<if !canDoAnal($activeSlave)>> - You slowly undo her chastity, allowing $him to be overwhelmed with anticipation of the deed to come. + You slowly undo $his chastity, allowing $him to be overwhelmed with anticipation of the deed to come. <</if>> <<else>> <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> - You slowly undo her chastity, allowing $him to be overwhelmed with anticipation of the deed to come. + You slowly undo $his chastity, allowing $him to be overwhelmed with anticipation of the deed to come. <</if>> <</if>> <<EventNameDelink $activeSlave>> <<replace "#result">> - Despite $himself, $he breaks down when $he feels your cock enter her + Despite $himself, $he breaks down when $he feels your cock enter $his <<if $activeSlave.mpreg == 1>> <<if ($activeSlave.anus == 1)>> deliciously tight @@ -9434,21 +9436,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> cunt. <</if>> - $He smiles up reassuringly at you to let you know $he's not in pain or anguish, blinking away her happy tears. $He reaches up to hug $himself close to you, + $He smiles up reassuringly at you to let you know $he's not in pain or anguish, blinking away $his happy tears. $He reaches up to hug $himself close to you, <<if ($activeSlave.boobs < 600) && $activeSlave.belly < 5000>> - and her modest breasts let her snuggle close to you, face-to-face, as you take $him. + and $his modest breasts let $him snuggle close to you, face-to-face, as you take $him. <<elseif $activeSlave.belly >= 5000 && $activeSlave.boobs < 600>> - her big $activeSlave.inflationType stuffed belly pushing against you as you take $him. + $his big $activeSlave.inflationType stuffed belly pushing against you as you take $him. <<elseif ($activeSlave.boobs < 10000)>> - and her big tits <<if $activeSlave.belly >= 2000>>and $activeSlave.inflationType stuffed belly <</if>>form a soft cushion between you as you take $him. + and $his big tits <<if $activeSlave.belly >= 2000>>and $activeSlave.inflationType stuffed belly <</if>>form a soft cushion between you as you take $him. <<else>> - but her massive tits stop her from bringing $himself too close to you as you take $him. + but $his massive tits stop $him from bringing $himself too close to you as you take $him. <</if>> $He enjoys $himself immensely, but $he loses it again when $he feels your <<if $PC.balls == 3>> - seed inflating her womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>. + seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>. <<elseif $PC.balls == 2>> - seed pumping into her until her womb is stuffed with cum. + seed pumping into $his until $his womb is stuffed with cum. <<elseif $PC.balls == 1>> seed pouring into $him. <<else>> @@ -9462,7 +9464,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> whimpering <</if>> - @@.hotpink;her thanks.@@ + @@.hotpink;$his thanks.@@ <<set $activeSlave.devotion += 4>> <<if $activeSlave.mpreg == 1>> <<set $activeSlave.analCount++, $analTotal++>> @@ -9473,19 +9475,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if $activeSlave.mpreg == 0>> -<br><<link "Use $his ass but give her what $he wants">> +<br><<link "Use $his ass but give $him what $he wants">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that impregnation will be her reward if $he's a good little buttslut<<if ["chastity belt", "combined chastity", "anal chastity"].includes($activeSlave.vaginalAccessory) || ["chastity", "combined chastity", "anal chastity"].includes($activeSlave.dickAccessory)>> as you undo her chastity<</if>>. - $He visibly resolves to do her anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other rubbing $his pussy. $He + You tell $him that impregnation will be $his reward if $he's a good little buttslut<<if ["chastity belt", "combined chastity", "anal chastity"].includes($activeSlave.vaginalAccessory) || ["chastity", "combined chastity", "anal chastity"].includes($activeSlave.dickAccessory)>> as you undo $his chastity<</if>>. + $He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other rubbing $his pussy. $He <<if ($activeSlave.anus == 1)>> - winces in pain as $he lowers her tight + winces in pain as $he lowers $his tight <<elseif ($activeSlave.anus == 2)>> - moans with discomfort as $he lowers her tight + moans with discomfort as $he lowers $his tight <<else>> - barely reacts as $he lowers her huge + barely reacts as $he lowers $his huge <</if>> - butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck her own ass on your stationary dick. Since $he's facing you you get a great view of $his body in motion. $His <<if $activeSlave.clit>>clitoral <</if>>stimulation is having an effect, and after a while $he + butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick. Since $he's facing you you get a great view of $his body in motion. $His <<if $activeSlave.clit>>clitoral <</if>>stimulation is having an effect, and after a while $he <<if !canTalk($activeSlave)>> takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he wishes $he could get pregnant anally. <<else>> @@ -9493,9 +9495,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> When you're close, you scoot back to pull yourself out and $he spears $his cunt down onto your cock. The sudden difference of sensation brings you to violent climax, and $he @@.hotpink;cries with joy@@ at feeling your hot <<if $PC.balls == 3>> - seed inflating her womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>. + seed inflating $his womb until $his stomach is <<if $activeSlave.belly >= 2000>>noticeably larger than when $he started<<else>>distended and wobbling with cum<</if>>. <<elseif $PC.balls == 2>> - seed pumping into her until her womb is stuffed with cum. + seed pumping into $him until $his womb is stuffed with cum. <<elseif $PC.balls == 1>> seed pouring into $him. <<else>> @@ -9508,7 +9510,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Sneak it into $his ass instead">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Despite $himself, $he breaks down when $he <<if canSee($activeSlave)>>sees<<else>>hears<</if>> you coming over and kneeling down to line your cock up with the entrance to her + Despite $himself, $he breaks down when $he <<if canSee($activeSlave)>>sees<<else>>hears<</if>> you coming over and kneeling down to line your cock up with the entrance to $his <<if ($activeSlave.vagina == 1)>> deliciously tight <<elseif ($activeSlave.vagina == 2)>> @@ -9516,7 +9518,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> fucked-out <</if>> - cunt. $His happy tears turn to a ragged gasp of surprise and pain when you slide your dickhead down to her + cunt. $His happy tears turn to a ragged gasp of surprise and pain when you slide your dickhead down to $his <<if ($activeSlave.anus == 1)>> painfully inexperienced <<elseif ($activeSlave.anus == 2)>> @@ -9524,44 +9526,44 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> loose <</if>> - ass and shove it up there instead. $He knows better than to protest, but the expression on her face is a wonderful mix of submission, anguish and disappointment as $he takes the anal fuck. To stop her fugue of disappointment you give $him a light slap on the cheek to get her attention, and then instruct $him that it's not her place to plan her pregnancies. They'll happen when they happen, and until then $he'll take it up the butt like a good slut. $He @@.gold;nods and wipes $his eyes@@ even as + ass and shove it up there instead. $He knows better than to protest, but the expression on $his face is a wonderful mix of submission, anguish and disappointment as $he takes the anal fuck. To stop $his fugue of disappointment you give $him a light slap on the cheek to get $his attention, and then instruct $him that it's not $his place to plan $his pregnancies. They'll happen when they happen, and until then $he'll take it up the butt like a good slut. $He @@.gold;nods and wipes $his eyes@@ even as <<if ($activeSlave.anus == 1)>> - $he grimaces involuntarily at your painful use of her tight butthole. + $he grimaces involuntarily at your painful use of $his tight butthole. <<elseif ($activeSlave.anus == 2)>> - $he takes your cock up her tight ass. + $he takes your cock up $his tight ass. <<else>> - her gaping anus makes occasional lewd noises as you pound it. + $his gaping anus makes occasional lewd noises as you pound it. <</if>> <<set $activeSlave.trust -= 5, $activeSlave.analCount++, $analTotal++>> <</replace>> <</link>> <<else>> -<br><<link "Use $his ass but finish across her back">> +<br><<link "Use $his ass but finish across $his back">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that impregnation will be her reward if $he's a good little buttslut. $He visibly resolves to do her anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple. $He + You tell $him that impregnation will be $his reward if $he's a good little buttslut. $He visibly resolves to do $his anal best. You recline on the couch and $he squats over you, one leg on the floor and the other bent up on the cushion, with one hand on the back of the couch and the other <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple. $He <<if ($activeSlave.anus == 1)>> - winces in pain as $he lowers her tight + winces in pain as $he lowers $his tight <<elseif ($activeSlave.anus == 2)>> - moans with discomfort as $he lowers her tight + moans with discomfort as $he lowers $his tight <<else>> - barely reacts as $he lowers her huge + barely reacts as $he lowers $his huge <</if>> - butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck her own ass on your stationary dick. Since $he's facing you you get a great view of $his body in motion. $His stimulation is having an effect, and after a while $he + butthole down onto your cock. $He gets quite a workout, raising and lowering $his body to fuck $his own ass on your stationary dick. Since $he's facing you you get a great view of $his body in motion. $His stimulation is having an effect, and after a while $he <<if !canTalk($activeSlave)>> takes $his hand away to make an unintelligible gesture. After $he repeats it, you figure out that $he means $he is thrilled to be able to get anally pregnant. <<else>> pants, "That'<<s>> <<s>>o good, <<Master>>. I'm <<s>>o glad my a<<ss>> i<<s>> fertile." <</if>> - When you're at your limit, you quickly pull out, slide slightly further under $him and thrust up between her asscheeks, blowing your hot seed + When you're at your limit, you quickly pull out, slide slightly further under $him and thrust up between $his asscheeks, blowing your hot seed <<if $PC.balls == 3>> - across her entire back. + across $his entire back. <<elseif $PC.balls == 2>> - across her back. + across $his back. <<else>> - across her lower back. + across $his lower back. <</if>> - $He stops riding you and <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you with a look of @@.mediumorchid;disbelief.@@ You shrug, must have slippped out under all her enthusiasm. + $He stops riding you and <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> you with a look of @@.mediumorchid;disbelief.@@ You shrug, must have slippped out under all $his enthusiasm. <<set $activeSlave.devotion -= 5, $activeSlave.analCount++, $analTotal++>> <</replace>> <</link>> @@ -9570,7 +9572,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Use the Dairy cockmilk to impregnate $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he'll be having everyone's children. $He looks puzzled until you put her on the couch, legs spread, and produce a large, soft injector full of fresh cum. At this $he giggles and thanks you; $he rapturously rubs $his belly as you gently push the injector home. For the rest of the week, $he appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. $He goes about her other business with a @@.hotpink;deeply pleased@@ expression on her face. Whenever $he has a spare moment $he steals down to the Dairy to hug the slaves there or otherwise show them a little affection. + You tell $him $he'll be having everyone's children. $He looks puzzled until you put $him on the couch, legs spread, and produce a large, soft injector full of fresh cum. At this $he giggles and thanks you; $he rapturously rubs $his belly as you gently push the injector home. For the rest of the week, $he appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. $He goes about $his other business with a @@.hotpink;deeply pleased@@ expression on $his face. Whenever $he has a spare moment $he steals down to the Dairy to hug the slaves there or otherwise show them a little affection. <<set $activeSlave.devotion += 10>> <<set _cumSlaves = $slaves.filter(function(s) { return (s.assignment == "get milked" || s.assignment == "work in the dairy") && s.balls > 0 && s.ballType == "human"; })>> <<if _cumSlaves.length > 0>> @@ -9583,12 +9585,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "fearful balls">> -<<link "Threaten her with castration">> +<<link "Threaten $him with castration">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You open a drawer of your desk and extract a razor-sharp ceramic-bladed knife. <<if canSee($activeSlave)>>You make a show of inspecting its edge and then place it on your desk before looking meaningfully at $his ballsack. $He watches this display with wide eyes<<else>>You describe what it is you took out of your desk and how easily it could be used to remove $his ballsack. $He cocks her head slightly<</if>> until $he gets your meaning, and then collapses to the ground, almost wetting $himself. + You open a drawer of your desk and extract a razor-sharp ceramic-bladed knife. <<if canSee($activeSlave)>>You make a show of inspecting its edge and then place it on your desk before looking meaningfully at $his ballsack. $He watches this display with wide eyes<<else>>You describe what it is you took out of your desk and how easily it could be used to remove $his ballsack. $He cocks $his head slightly<</if>> until $he gets your meaning, and then collapses to the ground, almost wetting $himself. <<if !canTalk($activeSlave)>> - $He frantically uses $his hands to promise you perfect obedience if you'll only spare her from emasculation. + $He frantically uses $his hands to promise you perfect obedience if you'll only spare $his from emasculation. <<else>> $He begs through tears, "Plea<<s>>e no, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>! Plea<<s>>e let me keep them! Plea<<s>>e!" <</if>> @@ -9599,14 +9601,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Force obedience using pain">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You shove her unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of her sack, leaving her writhing on the couch in considerable discomfort. After letting her wriggle for a while, you tell $him that $he can have it off when $he gets you off. $He scrabbles for your <<if $PC.dick == 0>>pussy and desperately starts to perform cunnilingus; after a while you get bored and ride her face. You finally climax<<else>>dick and starts to desperately suck you off<<if $PC.vagina == 1>> and eat you out<</if>>; you let her work for a while before getting bored and adding painful slaps to $his cheeks. You blow your load down her throat<</if>> and then stand, <<if canSee($activeSlave)>>brandishing the knife<<else>>swishing the knife through the air<</if>>. <<if canSee($activeSlave)>>$His eyes are huge<<else>>$He grimaces<</if>> with terror, but $he holds still. $His private parts have gone so numb that $he has to <<if canSee($activeSlave)>>look down<<else>>run $his hand across $his scrotum<</if>> in trepidation to verify that you cut the rubber, not $him. $He leaves with the pins and needles working their agonizing way back into her along with the blood flow to $his balls, promising tearfully to @@.gold;stay out of trouble.@@ + You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. After letting $him wriggle for a while, you tell $him that $he can have it off when $he gets you off. $He scrabbles for your <<if $PC.dick == 0>>pussy and desperately starts to perform cunnilingus; after a while you get bored and ride $his face. You finally climax<<else>>dick and starts to desperately suck you off<<if $PC.vagina == 1>> and eat you out<</if>>; you let $him work for a while before getting bored and adding painful slaps to $his cheeks. You blow your load down $his throat<</if>> and then stand, <<if canSee($activeSlave)>>brandishing the knife<<else>>swishing the knife through the air<</if>>. <<if canSee($activeSlave)>>$His eyes are huge<<else>>$He grimaces<</if>> with terror, but $he holds still. $His private parts have gone so numb that $he has to <<if canSee($activeSlave)>>look down<<else>>run $his hand across $his scrotum<</if>> in trepidation to verify that you cut the rubber, not $him. $He leaves with the pins and needles working their agonizing way back into $him along with the blood flow to $his balls, promising tearfully to @@.gold;stay out of trouble.@@ <<set $activeSlave.trust -= 5, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> -<br><<link "Geld her gradually">> +<br><<link "Geld $him gradually">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You shove her unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of her sack, leaving her writhing on the couch in considerable discomfort. You add leather mittens to $his hands to stop her removing the rubber, and then observe that this is a method used to geld livestock. $His tearful begging goes on until you tire of it and put her out. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> tracks her agonized, weeping progress around the arcology for the many hours it takes the lack of blood flow to necessitate a trip to the remote surgery. When that time comes, you make her beg you to remove $his balls for an hour straight before you do - and $he's so desperate for relief from the pain that $he does it. The experience has left her @@.red;slightly injured,@@ @@.orange;gelded,@@ @@.red;thoroughly traumatized,@@ and @@.gold;willing to do anything@@ to avoid any more pain. + You shove $his unresisting<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>swollen<</if>><</if>> body over the couch and seize $his ballsack. When $he feels your tight grip $he spasms and tries to pull away reflexively, but goes limp when $he feels the agony of a warning squeeze. You fasten a tight rubber ring around the base of $his sack, leaving $him writhing on the couch in considerable discomfort. You add leather mittens to $his hands to stop $him removing the rubber, and then observe that this is a method used to geld livestock. $His tearful begging goes on until you tire of it and put $him out. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> tracks $his agonized, weeping progress around the arcology for the many hours it takes the lack of blood flow to necessitate a trip to the remote surgery. When that time comes, you make $him beg you to remove $his balls for an hour straight before you do - and $he's so desperate for relief from the pain that $he does it. The experience has left $him @@.red;slightly injured,@@ @@.orange;gelded,@@ @@.red;thoroughly traumatized,@@ and @@.gold;willing to do anything@@ to avoid any more pain. <<set $activeSlave.behavioralFlaw = "odd", $activeSlave.trust -= 20, $activeSlave.health -= 10, $activeSlave.balls = 0, $activeSlave.scrotum = 0>> <</replace>> <</link>> @@ -9616,14 +9618,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Take pity and give $him relief">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You sit on the edge of the bed and draw her down to sit on your lap. This way, you can enjoy gently fucking her while you draw orgasm after orgasm out of her with your hands. $He'll only be relieved for a few hours, but $he's @@.hotpink;tearfully grateful all the same.@@ + You sit on the edge of the bed and draw $him down to sit on your lap. This way, you can enjoy gently fucking $him while you draw orgasm after orgasm out of $him with your hands. $He'll only be relieved for a few hours, but $he's @@.hotpink;tearfully grateful all the same.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <br><<link "See how rough you can be and still get $him to cum">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The aphrodisiac dosage $he's on will let her orgasm to almost anything. You spend a few minutes playing with $his nipples, skillfully edging her away from climax, and $he's almost vibrating with discomfort. $He's so desperate that $he sobs with relief when you order $him to <<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels")>>kneel<<elseif ($activeSlave.shoes == "heels")>>totter up<<else>>stand<</if>> <<if $activeSlave.belly >= 5000>>_belly belly <</if>>against a wall and spread $his buttocks. A little saliva and<<if $PC.vagina == 1>> a bit of your own pussyjuice, transferred by a couple of fingers, and<</if>> <<if $PC.dick == 0>>your vibrating strap-on<<else>>your dick<</if>> is up her willing ass. The position is uncomfortable for $him, and you are not gentle, but $he comes anyway. By the end of the night her butthole is so sore that $he <<if $activeSlave.belly >= 5000>>lies on her side<<else>>lies on $his stomach<</if>> every chance $he gets. $His submissiveness @@.hotpink;has increased.@@ + The aphrodisiac dosage $he's on will let $him orgasm to almost anything. You spend a few minutes playing with $his nipples, skillfully edging $him away from climax, and $he's almost vibrating with discomfort. $He's so desperate that $he sobs with relief when you order $him to <<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels")>>kneel<<elseif ($activeSlave.shoes == "heels")>>totter up<<else>>stand<</if>> <<if $activeSlave.belly >= 5000>>_belly belly <</if>>against a wall and spread $his buttocks. A little saliva and<<if $PC.vagina == 1>> a bit of your own pussyjuice, transferred by a couple of fingers, and<</if>> <<if $PC.dick == 0>>your vibrating strap-on<<else>>your dick<</if>> is up $his willing ass. The position is uncomfortable for $him, and you are not gentle, but $he comes anyway. By the end of the night $his butthole is so sore that $he <<if $activeSlave.belly >= 5000>>lies on $his side<<else>>lies on $his stomach<</if>> every chance $he gets. $His submissiveness @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -9681,40 +9683,40 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Join $him in the shower">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step into the running water and help $him to her feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have her back against the shower wall, her titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of her huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His $activeSlave.eyeColor eyes stare straight into yours<<else>>You stare into $his $activeSlave.eyeColor eyes<</if>> as $he writhes with overstimulation, @@.mediumaquamarine;her trust in your stewardship of her pleasure total.@@ + You step into the running water and help $him to $his feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have $his back against the shower wall, $his titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of $his huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His $activeSlave.eyeColor eyes stare straight into yours<<else>>You stare into $his $activeSlave.eyeColor eyes<</if>> as $he writhes with overstimulation, @@.mediumaquamarine;$his trust in your stewardship of $his pleasure total.@@ <<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck()>><</if>> <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <<if ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)>>//This will take vaginal virginity//<<elseif ($activeSlave.vagina == -1) && ($activeSlave.anus == 0) && canDoAnal($activeSlave)>>//This will take anal virginity//<</if>> -<br><<link "Fuck her immobilized body">> +<br><<link "Fuck $his immobilized body">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You make no answer, groping her soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks. + You make no answer, groping $his soapy <<if $seeRace == 1>>$activeSlave.race <</if>>buttocks. <<if ($activeSlave.anus > 2) && canDoAnal($activeSlave)>> $His rectum is so fucked out and loose that your groping hand almost slides up it. <<elseif ($activeSlave.vagina > 2) && canDoVaginal($activeSlave)>> $His pussy is so fucked out and loose that your groping hand almost slides up it. <<else>> - You finger fuck her for a while, the sting of the soap on her sensitive insides making her gasp. + You finger fuck $him for a while, the sting of the soap on $his sensitive insides making $him gasp. <</if>> - It's not like you can't tie her up and fuck her whenever you like, but sliding back and forth on her soapy body is kind of nice. + It's not like you can't tie $him up and fuck $him whenever you like, but sliding back and forth on $his soapy body is kind of nice. <<if $PC.dick == 0>> - You ride yourself against her until you orgasm + You ride yourself against $him until you orgasm <<else>> You leave a load of cum in <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> each of $his holes <<set _didVaginal = 1, _didAnal = 1>> <<elseif canDoAnal($activeSlave)>> - her loosened butthole + $his loosened butthole <<set _didAnal = 1>> <<else>> - her loosened vagina + $his loosened vagina <<set _didVaginal = 1>> <</if>> - <<if $PC.vagina == 1>> and make her eat your pussy for a quick aftershock,<</if>> + <<if $PC.vagina == 1>> and make $him eat your pussy for a quick aftershock,<</if>> <</if>> - and only then do you help her back to her feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@ + and only then do you help $him back to $his feet. $He drips soap, water, and <<if $PC.dick == 0>>your juices<<else>>ejaculate<</if>>. @@.hotpink;$He has become more submissive.@@ <<if _didVaginal == 1 && _didAnal == 1>> <<= BothVCheck()>> <<elseif _didVaginal == 1>> @@ -9725,10 +9727,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion += 4>> <</replace>> <</link>><<if ($activeSlave.anus == 0) || ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>> -<br><<link "Let her figure it out">> +<br><<link "Let $him figure it out">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He flounders around for a while until you get bored and leave $him to it. Eventually her whining brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@ + $He flounders around for a while until you get bored and leave $him to it. Eventually $his whining brings another slave in, who helps $him. This interdependence between slaves @@.mediumorchid;reduces $his devotion.@@ <<set $activeSlave.devotion -= 5>> <</replace>> <</link>> @@ -9738,22 +9740,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "No, reassure $him that $he doesn't need to be a slut">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You kindly explain that you've decided to save her virginity - for now. $He looks slightly down-hearted and tries to smile nonetheless, but finds $himself swept off her <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing her whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight. $He shudders, almost uncontrollably, when you grind your <<if $PC.dick == 0>>clitoris<<else>>dick<</if>> against her moistened, wet pussy between her thighs, taking extra care not to penetrate the willing slave. $He leaves your office feeling @@.hotpink;very close to her <<= WrittenMaster()>> indeed,@@ and seems to have forgotten her unfucked vagina, for now. + You kindly explain that you've decided to save $his virginity - for now. $He looks slightly down-hearted and tries to smile nonetheless, but finds $himself swept off $his <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing $his whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight. $He shudders, almost uncontrollably, when you grind your <<if $PC.dick == 0>>clitoris<<else>>dick<</if>> against $his moistened, wet pussy between $his thighs, taking extra care not to penetrate the willing slave. $He leaves your office feeling @@.hotpink;very close to $his <<= WrittenMaster()>> indeed,@@ and seems to have forgotten $his unfucked vagina, for now. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> -<br><<link "Make sure her first time is enjoyable">> +<br><<link "Make sure $his first time is enjoyable">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring her over to the couch<<if !canDoVaginal($activeSlave)>>, unfasten her chastity<</if>>, set her on your lap, and teasingly play with her<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you move your hands over her pussylips, making her shiver and press $himself against you, but you only make it the center of attention once the poor over-aroused slave + You bring $him over to the couch<<if !canDoVaginal($activeSlave)>>, unfasten $his chastity<</if>>, set $him on your lap, and teasingly play with $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you move your hands over $his pussylips, making $his shiver and press $himself against you, but you only make it the center of attention once the poor over-aroused slave <<if !canTalk($activeSlave)>> begins to reach for your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> to pull it towards $himself. <<else>> begs, "I can't take it any more, <<Master>>! Fuck me, plea<<s>>e. Plea<<s>>e!" <</if>> - Finally, you lubricate your hand. Then you slowly and gently push a finger into her invitingly tight virgin pussy. $He's already on the edge of orgasm, and you patiently inch your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> into $his pussy without making her climax. You then start pumping and $he starts to moan and breathing more and more heavily. You continue pumping until $he finally starts to orgasm, <<if $PC.dick == 0>>her climactic shudders<<else>>the walls of her tightening vagina<</if>> send you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from her @@.lime;newly initiated pussy,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now. + Finally, you lubricate your hand. Then you slowly and gently push a finger into $his invitingly tight virgin pussy. $He's already on the edge of orgasm, and you patiently inch your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> into $his pussy without making $him climax. You then start pumping and $he starts to moan and breathing more and more heavily. You continue pumping until $he finally starts to orgasm, <<if $PC.dick == 0>>$his climactic shudders<<else>>the walls of $his tightening vagina<</if>> send you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from $his @@.lime;newly initiated pussy,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now. <<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "pregnancy")>> - $He's back again before the week is over, eager for @@.lightcoral;another dick in her fuckhole.@@ + $He's back again before the week is over, eager for @@.lightcoral;another dick in $his fuckhole.@@ <<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "pregnancy">> <</if>> <<set $activeSlave.devotion += 3, $activeSlave.trust += 3, $activeSlave.vagina = 1, $activeSlave.vaginalCount++, $vaginalTotal++>> @@ -9762,10 +9764,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</replace>> <</link>> -<br><<link "Make sure her first fuck puts $him in her place">> +<br><<link "Make sure $his first fuck puts $him in $his place">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You throw her onto the couch beside your desk, $he fails to stop her from losing balance with her flailing <<if $activeSlave.amp == 1>>stumps<<else>>limbs<</if>>. $He looks around doubtfully; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoVaginal($activeSlave)>> her vaginal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing her virgin pussy wide. You have her face shoved deep between the leather cushions and you ignore the muffled sounds coming from $him. $He limply tries to relax for her beloved master, but the painful sensation coming from her crotch causes $him to start to writhe uncontrollably. $He pushes against the couch, trying to endure the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from her<</if>> @@.lime;newly fucked vagina,@@ a stream of drying tears running down each side of her face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of her totally flaccid dick,<</if>> and a new understanding of @@.gold;her place in life.@@ + You throw $him onto the couch beside your desk, $he fails to stop $him from losing balance with $his flailing <<if $activeSlave.amp == 1>>stumps<<else>>limbs<</if>>. $He looks around doubtfully; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoVaginal($activeSlave)>> $his vaginal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing $his virgin pussy wide. You have $his face shoved deep between the leather cushions and you ignore the muffled sounds coming from $him. $He limply tries to relax for $his beloved master, but the painful sensation coming from $his crotch causes $him to start to writhe uncontrollably. $He pushes against the couch, trying to endure the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from $his<</if>> @@.lime;newly fucked vagina,@@ a stream of drying tears running down each side of $his face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of $his totally flaccid dick,<</if>> and a new understanding of @@.gold;$his place in life.@@ <<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "submissive")>> Before the end of the week it's clear that $he's taken the rape to heart, and now sees $his body as something @@.lightcoral;for others to use and abuse.@@ <<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive">> @@ -9782,29 +9784,29 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "No, reassure $him that $he doesn't need to be an anal slut">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You kindly explain that you've decided to save $his ass - for now. $He starts to express understanding and apologize for bothering you, but finds $himself swept off her <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing her whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight. + You kindly explain that you've decided to save $his ass - for now. $He starts to express understanding and apologize for bothering you, but finds $himself swept off $his <<if $activeSlave.amp == 1>>stumps<<else>>feet<</if>> and<<if $activeSlave.bellyPreg >= 5000>> gently<</if>> deposited on the couch. $He gasps with surprise when $he finds $himself being teased, fondled, and massaged rather than outright used. In no time at all $he's pressing $his whole<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body against you and shivering with delight. <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>> - $His shivers reach a crescendo when you <<if $PC.dick == 0>>scissor yourself against<<else>>enter<</if>> her warm, wet pussy, which convulsively flexes against your <<if $PC.dick == 0>>clit<<else>>rock hard dick<</if>>. + $His shivers reach a crescendo when you <<if $PC.dick == 0>>scissor yourself against<<else>>enter<</if>> $his warm, wet pussy, which convulsively flexes against your <<if $PC.dick == 0>>clit<<else>>rock hard dick<</if>>. <<else>> - <<if $PC.dick == 0>>You ride her face,<<else>>You push your dick<<if $PC.vagina == 1>> and as much of the upper part of your pussy as you can manage<</if>> between her thighs for some frottage,<</if>> lavishing attention on $his nipples to ensure that $he has fun, too. + <<if $PC.dick == 0>>You ride $his face,<<else>>You push your dick<<if $PC.vagina == 1>> and as much of the upper part of your pussy as you can manage<</if>> between $his thighs for some frottage,<</if>> lavishing attention on $his nipples to ensure that $he has fun, too. <</if>> - $He leaves your office feeling @@.hotpink;very close to her <<= WrittenMaster()>> indeed,@@ and seems to have forgotten her unfucked butthole for now. + $He leaves your office feeling @@.hotpink;very close to $his <<= WrittenMaster()>> indeed,@@ and seems to have forgotten $his unfucked butthole for now. <<set $activeSlave.devotion += 4>> <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> <</if>> <</replace>> <</link>> -<br><<link "Make sure her first anal sex is enjoyable">> +<br><<link "Make sure $his first anal sex is enjoyable">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring her over to the couch<<if !canDoAnal($activeSlave)>>, unfasten her anal chastity<</if>>, set her on your lap, and teasingly play with her<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you graze a finger over her unfucked butthole, making her shiver and press $himself against you, but you only make it the center of attention once the poor over-aroused slave + You bring $him over to the couch<<if !canDoAnal($activeSlave)>>, unfasten $his anal chastity<</if>>, set $him on your lap, and teasingly play with $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>><</if>> body for a long time. Every so often you graze a finger over $his unfucked butthole, making $him shiver and press $himself against you, 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 for anal. <<else>> begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck my a<<ss>>!" <</if>> - In reward, you sink a lightly lubricated finger up to the first knuckle in her delightfully tight asshole. $He's already on the edge of orgasm, and it takes a long, long time for you to work first a finger, then two, and then your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his ass without sending her over. When you finally let her orgasm <<if $PC.dick == 0>>her unabashed enjoyment<<else>>the strength of her spasming sphincter<</if>> sends you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from her @@.lime;newly stretched asshole,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now. + In reward, you sink a lightly lubricated finger up to the first knuckle in $his delightfully tight asshole. $He's already on the edge of orgasm, and it takes a long, long time for you to work first a finger, then two, and then your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> up $his ass without sending $him over. When you finally let $him orgasm <<if $PC.dick == 0>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a haze of @@.hotpink;sexual satisfaction@@ that radiates outward from $his @@.lime;newly stretched asshole,@@ and $he @@.mediumaquamarine;trusts you@@ a lot more, now. <<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "buttslut")>> Before the end of the week $he's back, begging for @@.lightcoral;another dick up the ass.@@ <<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "buttslut">> @@ -9815,10 +9817,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</replace>> <</link>> -<br><<link "Make sure her first buttfuck puts $him in her place">> +<br><<link "Make sure $his first buttfuck puts $him in $his place">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You throw her onto the couch face-down<<if $activeSlave.belly >= 5000>>, $his rear pushed into the air by her rounded belly<</if>>, catching a glimpse of her doubtful face as $he goes; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoAnal($activeSlave)>> her anal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing her virgin sphincter wide. Whatever noises $he might be making are pretty inaudible, since you have her sobbing face shoved deep between the leather cushions. $He tries not to struggle and relax for her beloved master, but $his body rebels against the pain and $he starts to wriggle spastically, trying to burrow into the couch to get away from the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from her<</if>> @@.lime;newly fucked butthole,@@ a stream of drying tears running down each side of her face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of her totally flaccid dick,<</if>> and a new understanding of @@.gold;her place in life.@@ + You throw $him onto the couch face-down<<if $activeSlave.belly >= 5000>>, $his rear pushed into the air by $his rounded belly<</if>>, catching a glimpse of $his doubtful face as $he goes; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoAnal($activeSlave)>> $his anal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing $his virgin sphincter wide. Whatever noises $he might be making are pretty inaudible, since you have $his sobbing face shoved deep between the leather cushions. $He tries not to struggle and relax for $his beloved master, but $his body rebels against the pain and $he starts to wriggle spastically, trying to burrow into the couch to get away from the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from $his<</if>> @@.lime;newly fucked butthole,@@ a stream of drying tears running down each side of $his face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of $his totally flaccid dick,<</if>> and a new understanding of @@.gold;$his place in life.@@ <<if ($activeSlave.fetishKnown != 1) || ($activeSlave.fetish != "submissive")>> Before the end of the week it's clear that $he's taken the anal rape to heart, and now sees $his body as something @@.lightcoral;for others to use and abuse.@@ <<set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.fetish = "submissive">> @@ -9835,7 +9837,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "$He asked for it; give $him the works">> <<EventNameDelink $activeSlave>> <<replace "#result">> - As the sterile doors of the surgical equipment hiss closed over $him, you whisper in her ear that $he's about to be cut up. $He looks at you with a mix of fear and wild excitement. After nearly a whole week of constant surgery and expensive drug-induced recovery, <<if canSee($activeSlave)>>$he finally gets to see her new body in the mirror<<elseif $activeSlave.amp == 1>>you finally describe all the new implants in $his body and how they make her look<<else>>you finally let $him feel her new body, even helping $his hands to the less obvious changes<</if>>. $He has cartoonishly huge lips, boobs, and buttocks; $he looks like a caricature of a bimbo. $He cries with gratitude <<if canSee($activeSlave)>>to see $himself<<elseif $activeSlave.amp == 1>>to hear how $he looks<<else>>as $he feels her new body<</if>>, and can scarcely wait to recover enough to get fucked. @@.hotpink;$He has become extremely devoted to you.@@ + As the sterile doors of the surgical equipment hiss closed over $him, you whisper in $his ear that $he's about to be cut up. $He looks at you with a mix of fear and wild excitement. After nearly a whole week of constant surgery and expensive drug-induced recovery, <<if canSee($activeSlave)>>$he finally gets to see $his new body in the mirror<<elseif $activeSlave.amp == 1>>you finally describe all the new implants in $his body and how they make $him look<<else>>you finally let $him feel $his new body, even helping $his hands to the less obvious changes<</if>>. $He has cartoonishly huge lips, boobs, and buttocks; $he looks like a caricature of a bimbo. $He cries with gratitude <<if canSee($activeSlave)>>to see $himself<<elseif $activeSlave.amp == 1>>to hear how $he looks<<else>>as $he feels $his new body<</if>>, and can scarcely wait to recover enough to get fucked. @@.hotpink;$He has become extremely devoted to you.@@ <<set $cash -= 125>> <<set $activeSlave.devotion += 10>> <<set _surgeryAddict = Math.clamp(20000-$activeSlave.boobs, 0, 2000)>> @@ -9850,14 +9852,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Not while $he is so pregnant">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's clearly disappointed, but $he accepts that you are watching out for $his health and goes about her business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when her implants are groped, but her favorite is when $he gets to fuck another slave with fake tits. $He can't keep her <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs. + $He's clearly disappointed, but $he accepts that you are watching out for $his health and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs. <</replace>> <</link>> <</if>> <br><<link "No">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's clearly disappointed, but $he accepts your will and goes about her business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when her implants are groped, but her favorite is when $he gets to fuck another slave with fake tits. $He can't keep her <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs. + $He's clearly disappointed, but $he accepts your will and goes about $his business. After the incident, you notice that $he definitely seems to have a kink for implants. $He loves it when $his implants are groped, but $his favorite is when $he gets to fuck another slave with fake tits. $He can't keep $his <<if ($activeSlave.amp != 1)>>hands<<else>>lips<</if>> off a pair of bolted-on boobs. <</replace>> <</link>> @@ -9875,7 +9877,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> gentle anal sex <</if>> - for the rest of the night<<if $PC.vagina == 1>><<if $PC.dick == 1>>; whenever you go soft for a moment, all $he has to do is eat you out, and you're rock hard again<</if>><</if>>. As you move from position to position<<if $activeSlave.belly >= 5000>>, and exploring several unusual ones thanks to $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>, $he twists to face you whenever $he can. When $he manages it, $he kisses you when $he can reach your lips, and $he <<if canSee($activeSlave)>>stares deeply into your eyes<<else>>meets your face with her own<</if>> when $he cannot. $His trust in you @@.mediumaquamarine;has increased.@@ + for the rest of the night<<if $PC.vagina == 1>><<if $PC.dick == 1>>; whenever you go soft for a moment, all $he has to do is eat you out, and you're rock hard again<</if>><</if>>. As you move from position to position<<if $activeSlave.belly >= 5000>>, and exploring several unusual ones thanks to $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>, $he twists to face you whenever $he can. When $he manages it, $he kisses you when $he can reach your lips, and $he <<if canSee($activeSlave)>>stares deeply into your eyes<<else>>meets your face with $his own<</if>> when $he cannot. $His trust in you @@.mediumaquamarine;has increased.@@ <<set $activeSlave.trust += 4>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> <<= BothVCheck()>> @@ -9892,11 +9894,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Assrape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to kneel. $He looks hopeful and complies, but her anticipation of enjoyable sex vanishes with a pathetic little gasp when you<<if $PC.dick == 0>> don a strap-on and<</if>> <<if $PC.vagina == 1>>use a couple of fingers to collect some of your pussyjuice for improvised lube<<else>>spit on her butthole<</if>>. With only a little saliva as lubrication, you brutally sodomize $him, fucking her <<if $seeRace == 1>>$activeSlave.race <</if>>ass to the limit of what you can get away with without damaging $him. + You order $him to kneel. $He looks hopeful and complies, but $his anticipation of enjoyable sex vanishes with a pathetic little gasp when you<<if $PC.dick == 0>> don a strap-on and<</if>> <<if $PC.vagina == 1>>use a couple of fingers to collect some of your pussyjuice for improvised lube<<else>>spit on $his butthole<</if>>. With only a little saliva as lubrication, you brutally sodomize $him, fucking $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass to the limit of what you can get away with without damaging $him. <<if (($activeSlave.fetish == "buttslut" && $activeSlave.fetishStrength > 60) || ($activeSlave.energy > 95)) && ($activeSlave.fetishKnown == 1)>> $He loves anal so much that after a while pleasure overwhelms pain to the extent that $he manages a @@.hotpink;sobbing orgasm.@@ <<else>> - $He gets the message: $he's your property and her desires are entirely subject to your will. $His @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased. + $He gets the message: $he's your property and $his desires are entirely subject to your will. $His @@.hotpink;submission@@ to you and @@.gold;fear of you@@ have both increased. <</if>> <<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>> <<= AnalVCheck()>> @@ -9908,29 +9910,29 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You get into bed and crook a finger, silently ordering $him to join you. $He<<if $activeSlave.clothes != "no clothing">> hurries out of $his clothes and<</if>> bounces over, <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - her posture communicating the arousal that her caged cock cannot. + $his posture communicating the arousal that $his caged cock cannot. <<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>> - her impotent dick already streaming watery precum. + $his impotent dick already streaming watery precum. <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>> - her dick pathetically soft despite her obvious arousal. + $his dick pathetically soft despite $his obvious arousal. <<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave)>> - her dick swollen with arousal yet too large to become erect. + $his dick swollen with arousal yet too large to become erect. <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> - her dick tipped with precum yet enable to get hard. + $his dick tipped with precum yet enable to get hard. <<elseif $activeSlave.dick > 4>> - her massive cock rock hard. + $his massive cock rock hard. <<elseif $activeSlave.dick > 2>> - her erection standing out stiffly. + $his erection standing out stiffly. <<elseif $activeSlave.dick > 0>> - her tiny little dick poking out stiffly. + $his tiny little dick poking out stiffly. <<elseif $activeSlave.clit > 0>> - her big clit visibly stiff. + $his big clit visibly stiff. <<elseif $activeSlave.vagina == -1>> - already arching her back to present her bottom. + already arching $his back to present $his bottom. <<else>> - her pussylips shining with arousal. + $his pussylips shining with arousal. <</if>> - As $he <<if $activeSlave.belly >= 10000>>hefts her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk<<else>>climbs<</if>> into bed you take $his $activeSlave.skin hand and guide her into your lap, facing away from you. $He sighs happily and snuggles her + As $he <<if $activeSlave.belly >= 10000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk<<else>>climbs<</if>> into bed you take $his $activeSlave.skin hand and guide $him into your lap, facing away from you. $He sighs happily and snuggles $his <<if $activeSlave.weight > 160>> rippling <<elseif $activeSlave.weight > 95>> @@ -9946,13 +9948,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> back into your chest. You<<if $activeSlave.belly >= 5000>> embrace $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly before you<</if>> <<if ($activeSlave.boobs > 2000)>> - run your hands across her massive chest + run your hands across $his massive chest <<elseif ($activeSlave.boobs > 800)>> - heft her heavy breasts + heft $his heavy breasts <<else>> - massage her pretty chest + massage $his pretty chest <</if>> - and tease her + and tease $his <<if $activeSlave.nipples == "huge">> ridiculous <<elseif $activeSlave.nipples == "puffy">> @@ -9966,7 +9968,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> erect <</if>> - nipples, as $he shimmies $himself back <<if $PC.dick == 0>>so her warmth is against yours, your legs spreading her<<else>>onto you so your cock is lodged between her<</if>> + nipples, as $he shimmies $himself back <<if $PC.dick == 0>>so $his warmth is against yours, your legs spreading $his<<else>>onto you so your cock is lodged between $his<</if>> <<if ($activeSlave.butt > 10)>> unfathomable <<elseif ($activeSlave.butt > 5)>> @@ -9976,7 +9978,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pert <</if>> - buttocks. When $he's close to orgasm from all the stimulation, $he reflexively squeezes <<if $PC.dick == 0>>your body between $his legs<<else>>your dick between her asscheeks<</if>>, bringing you to climax. At the feeling of your <<if $PC.dick == 0>>juices<<else>>warm cum<</if>> between her + buttocks. When $he's close to orgasm from all the stimulation, $he reflexively squeezes <<if $PC.dick == 0>>your body between $his legs<<else>>your dick between $his asscheeks<</if>>, bringing you to climax. At the feeling of your <<if $PC.dick == 0>>juices<<else>>warm cum<</if>> between $his <<if ($activeSlave.weight > 190)>> immense <<elseif ($activeSlave.weight > 160)>> @@ -9992,19 +9994,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> thighs, $he tips over the edge and <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - shivers with orgasm, ejaculate dribbling out of her chastity cage. + shivers with orgasm, ejaculate dribbling out of $his chastity cage. <<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>> - cums weakly, her soft dick twitching. + cums weakly, $his soft dick twitching. <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>> - shivers with orgasm, her soft dick twitching weakly. + shivers with orgasm, $his soft dick twitching weakly. <<elseif $activeSlave.balls > 4>> making a massive mess all over $himself. <<elseif $activeSlave.balls > 2>> - adding her own load to the mess. + adding $his own load to the mess. <<elseif $activeSlave.balls > 0>> - adding her own pathetic load to the mess. + adding $his own pathetic load to the mess. <<elseif $activeSlave.clit > 0>> - pitches forward convulsively, gasping with overstimulation at the sensation on her huge clit. + pitches forward convulsively, gasping with overstimulation at the sensation on $his huge clit. <<else>> quivers in your grasp, gasping, before relaxing back into you in a puddle of satisfaction. <</if>> @@ -10012,20 +10014,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion += 4, $activeSlave.mammaryCount++, $mammaryTotal++>> <</replace>> <</link>> -<br><<link "Send her away">> +<br><<link "Send $him away">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He tries to hide her disappointment as $he turns to go, and as $he flees out the door you hear her begin to cry. By the next morning, however, her responses to your commands have become less flirtatious and much more attentive. $His obedience to you @@.hotpink;has increased.@@ + $He tries to hide $his disappointment as $he turns to go, and as $he flees out the door you hear $him begin to cry. By the next morning, however, $his responses to your commands have become less flirtatious and much more attentive. $His obedience to you @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <<case "trusting HG">> -<<link "Commend her service">> +<<link "Commend $his service">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You clear your throat and compliment $him, commending her work ethic, trustworthiness, and loyalty. $He blushes much harder as $he understands. "Thank you, + You clear your throat and compliment $him, commending $his work ethic, trustworthiness, and loyalty. $He blushes much harder as $he understands. "Thank you, <<if $HGFormality == 1>> <<Master>>!" <<else>> @@ -10034,34 +10036,34 @@ You tell her kindly that you understand, and that $he'll be trained to address t $he says fervently, and gestures at the tablet. "I've noti<<c>>ed a couple of the girl<<s>> working better together re<<c>>ently, <<s>>o I'm making <<s>>ome minor adju<<s>>tment<<s>> to give them more <<sh>>ift<<s>> together." <br><br> - You're sure $he'll do her best, and you tell her so. $He thanks you again, and you both go back to your work. Though your Head Girl continues manipulating her tablet diligently, $he can't seem to stop $himself from @@.hotpink;stealing the occasional glance at you.@@ $His $activeSlave.eyeColor eyes, dark in the dimness of the office, seem to have an unaccountable sheen. + You're sure $he'll do $his best, and you tell $his so. $He thanks you again, and you both go back to your work. Though your Head Girl continues manipulating $his tablet diligently, $he can't seem to stop $himself from @@.hotpink;stealing the occasional glance at you.@@ $His $activeSlave.eyeColor eyes, dark in the dimness of the office, seem to have an unaccountable sheen. <<if $assistant != 0>> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>'s $assistantAppearance avatar appears on your desktop, glowing brightly, and ruins the moment. "$activeSlave.slaveName loooves her <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Maaaster<<else>>Miiistress<</if>>," $he taunts, + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>'s $assistantAppearance avatar appears on your desktop, glowing brightly, and ruins the moment. "$activeSlave.slaveName loooves $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Maaaster<<else>>Miiistress<</if>>," $he taunts, <<switch $assistantAppearance>> <<case "monstergirl">> $his hair forming a heart shape. <<case "shemale">> using $his hands to make a heart shape over $his balls. <<case "amazon">> - grinning far more sweetly than her muscular form should be able to manage. + grinning far more sweetly than $his muscular form should be able to manage. <<case "businesswoman">> though $he's blushing $himself. <<case "fairy" "pregnant fairy" "cherub">> flitting around and giggling excitedly. <<case "goddess">> - massaging her pregnant belly meaningfully. + massaging $his pregnant belly meaningfully. <<case "hypergoddess">> - massaging her squirming pregnant belly meaningfully. + massaging $his squirming pregnant belly meaningfully. <<case "loli">> giggling playfully. <<case "preggololi">> - giggling playfully, though $his hands have wandered to her crotch. + giggling playfully, though $his hands have wandered to $his crotch. <<case "angel">> using $his hands to make a heart shape. <<case "incubus">> - using $his hands to make a heart shape around her erection as $he thrusts. + using $his hands to make a heart shape around $his erection as $he thrusts. <<case "succubus">> - <<if $PC.dick == 1>>forms an O with $his lips and makes exaggerated head bobbing motions<<else>>forms a V with her fingers and wiggles $his tongue in it<</if>>. + <<if $PC.dick == 1>>forms an O with $his lips and makes exaggerated head bobbing motions<<else>>forms a V with $his fingers and wiggles $his tongue in it<</if>>. <<case "imp">> flapping around and cackling manically. <<case "witch">> @@ -10071,7 +10073,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "schoolgirl">> the very picture of a malicious schoolgirl. <<default>> - turning her avatar a throbbing pink. + turning $his avatar a throbbing pink. <</switch>> <br><br> Your Head Girl turns a darker shade of red. "Oh, <<sh>>ut up, you little @@ -10198,10 +10200,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> I need it <<s>>o bad right now, plea<<s>>e rip off my cha<<s>>tity and fuck me <<s>>en<<s>>ele<<ss>>." <</if>> - A vague hint of embarrassment at begging for <<if $PC.dick == 1>>a hard<<if $PC.vagina == 1>> futa<</if>> dicking<<else>>your strap-on<</if>> flickers across her face, but hope for sexual release extinguishes it quickly. + A vague hint of embarrassment at begging for <<if $PC.dick == 1>>a hard<<if $PC.vagina == 1>>futa<</if>> dicking<<else>>your strap-on<</if>> flickers across $his face, but hope for sexual release extinguishes it quickly. <br><br> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> - $He groans with relief as your <<if $PC.dick == 1>>cock<<else>>phallus<</if>> enters $him. $He does not orgasm immediately, but $he knows sweet release is coming. You have her atop your desk, on her back, and $he's participating in her own sexual degradation by holding $his legs spread wide apart for you. "Ohh," $he moans as you fuck $him, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now? Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!" + $He groans with relief as your <<if $PC.dick == 1>>cock<<else>>phallus<</if>> enters $him. $He does not orgasm immediately, but $he knows sweet release is coming. You have $him atop your desk, on $his back, and $he's participating in $his own sexual degradation by holding $his legs spread wide apart for you. "Ohh," $he moans as you fuck $him, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now? Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!" <<if $PC.dick == 1>> $His <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> @@ -10213,23 +10215,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He shudders with climax. <</if>> - $He smiles @@.mediumaquamarine;trustingly@@ up at you in the afterglow, + $He smiles @@.mediumaquamarine;trustingly@@ up at you in the afterglow, <<if $activeSlave.balls > 0>> - her ejaculate + $his ejaculate <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - seeping from her chastity cage, + seeping from $his chastity cage, <<else>> - glistening on her<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly, + glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly, <</if>> <</if>> - touched that you would tell her something like that so honestly. + touched that you would tell $him something like that so honestly. <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> <<= BothVCheck()>> <<else>> <<= AnalVCheck()>> <</if>> <<else>> - $He groans with lust as pull her onto your lap to make out. "Ohh," $he moans as you run your hands across her + $He groans with lust as pull $his onto your lap to make out. "Ohh," $he moans as you run your hands across $his <<if $activeSlave.boobsImplant >= 1000 && (Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60)>> bimbo <<elseif $activeSlave.boobs >= 1000 && $activeSlave.butt > 5 && $activeSlave.hips > 0>> @@ -10257,33 +10259,33 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> needy <</if>> - body, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now?" You reward her for the realization by + body, "thank you for telling me why I feel thi<<s>> way, <<Master>>. I gue<<ss>> thi<<s>> i<<s>> how I, oh, am now?" You reward $him for the realization by <<switch $activeSlave.nipples>> <<case "huge">> - stroking her lewdly erect nipples. + stroking $his lewdly erect nipples. <<case "puffy">> - cupping and fondling her puffy nipples. + cupping and fondling $his puffy nipples. <<case "partially inverted">> - teasing her fully exposed nipples. + teasing $his fully exposed nipples. <<case "inverted">> - squeezing her puffy areolae until her inverted nipples pop out for you to tease. + squeezing $his puffy areolae until $his inverted nipples pop out for you to tease. <<case "fuckable">> sticking your fingers deep into $his nipples. <<default>> - tweaking her $activeSlave.nipples nipples. + tweaking $his $activeSlave.nipples nipples. <</switch>> - The pent-up $girl is so desperate for release, you can feel her trembling with ecstasy from the nipple stimulation alone. + The pent-up $girl is so desperate for release, you can feel $him trembling with ecstasy from the nipple stimulation alone. "Oh, oh, it feel<<s>> <<s>>o g-good! Ye<<s>>! AHH!" $He shudders with climax, smiling @@.mediumaquamarine;trustingly@@ up at you in the afterglow, <<if $activeSlave.balls > 0>> - her ejaculate + $his ejaculate <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - seeping from her chastity cage, + seeping from $his chastity cage, <<else>> - glistening on her<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly, + glistening on $his<<if $activeSlave.belly > 1500>> _belly<<if $activeSlave.bellyPreg >= 1500>> gravid<</if>><</if>> belly, <</if>> <</if>> - touched that you would tell her something like that so honestly. + touched that you would tell $him something like that so honestly. <<set $activeSlave.mammaryCount++, $mammaryTotal++>> <</if>> <<set $activeSlave.trust += 4>> @@ -10294,35 +10296,35 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<EventNameDelink $activeSlave>> <<replace "#result">> You observe, noncommittally, that $he seems ready to get off. - "Ye<<s>> <<Master>>!" $he squeals, too <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50>>horny<<else>>stupid<</if>> to notice the sarcasm. Sighing inwardly, you slide yourself back from your desk and glance downward significantly, indicating your <<if $PC.dick == 1>>dick<<if $PC.vagina == 1>> and pussy<</if>><<else>>girl parts<</if>>. $He hurries over, almost throwing $himself at your feet in her eagerness. Touch yourself, you say, making it an imperious command rather than kind permission. $He moans into your <<if $PC.dick == 1>>cock<<else>>cunt<</if>> with gratitude as $he + "Ye<<s>> <<Master>>!" $he squeals, too <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -50>>horny<<else>>stupid<</if>> to notice the sarcasm. Sighing inwardly, you slide yourself back from your desk and glance downward significantly, indicating your <<if $PC.dick == 1>>dick<<if $PC.vagina == 1>> and pussy<</if>><<else>>girl parts<</if>>. $He hurries over, almost throwing $himself at your feet in $his eagerness. "Touch yourself", you say, making it an imperious command rather than kind permission. $He moans into your <<if $PC.dick == 1>>cock<<else>>cunt<</if>> with gratitude as $he <<if canDoVaginal($activeSlave)>> <<if $activeSlave.dick > 0 && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - wraps one hand around her dick and slips the other into $his pussy. + wraps one hand around $his dick and slips the other into $his pussy. <<else>> dives for $his pussy with both hands. <</if>> <<elseif $activeSlave.dick > 0 && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> <<if canAchieveErection($activeSlave)>> <<if $activeSlave.dick > 4>> - wraps $his hands around her huge erection. + wraps $his hands around $his huge erection. <<elseif canDoAnal($activeSlave) && $activeSlave.prostate > 0>> - wraps a hand around her throbbing erection and reaches around to finger $his butt and stimulate her prostate. + wraps a hand around $his throbbing erection and reaches around to finger $his butt and stimulate $his prostate.$his <<else>> - wraps a hand around her throbbing erection. + wraps a hand around $his throbbing erection. <</if>> <<else>> <<if $activeSlave.dick > 4>> - dives for her huge, soft cock with both hands. + dives for $his huge, soft cock with both hands. <<else>> - reaches down to fondle her limp dick. + reaches down to fondle $his limp dick. <</if>> <</if>> <<elseif canDoAnal($activeSlave)>> <<if $activeSlave.dick == 0>> - reaches down and around to rub her <<if canDoAnal($activeSlave)>>anus and <</if>>perineum. + reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum. <<else>> <<if $activeSlave.vagina == -1>> - reaches around to finger $his butt, since that's her only hole. + reaches around to finger $his butt, since that's $his only hole. <<elseif $activeSlave.vaginalAccessory == "chastity">> reaches around to finger $his butt, since $his pussy's in chastity. <<else>> @@ -10331,12 +10333,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<elseif $activeSlave.vagina == -1 && $activeSlave.dick == 0>> <<if $activeSlave.balls > 4>> - cups her desperate balls, massaging them and encouraging them to release their pent-up cum. + cups $his desperate balls, massaging them and encouraging them to release their pent-up cum. <<else>> - reaches down and around to rub her <<if canDoAnal($activeSlave)>>anus and <</if>>perineum. + reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum. <</if>> <<else>> - brings $his hands to $his breasts to <<if $activeSlave.nipples != "fuckable">>tease her erect<<else>>finger her swollen<</if>> nipples. + brings $his hands to $his breasts to <<if $activeSlave.nipples != "fuckable">>tease $his erect<<else>>finger $his swollen<</if>> nipples. <</if>> <br><br> $He's extremely pent up, and orgasms twice with <<if $PC.dick == 1>>your dick in $his mouth<<if $PC.vagina == 1>> first and $his tongue quivering along your pussylips second<</if>><<else>>$his mouth on your cunt<</if>>. The mental effects of this formative little experience are impossible to control with precision. Over the next few days, you notice that whenever $he sees you, @@ -10356,11 +10358,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Make $him cum like a girl">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to get $his ass up on your desk. $He obeys, though not without a flicker of trepidation. $He points $his butt at you like a sex slave should, and doesn't crane around to see what you're doing behind $him, but $he's stiff with the awareness that <<if $PC.dick == 1>>there's almost certainly a hard<<if $PC.vagina == 1>> futa<</if>> dick about<<else>>you're almost certainly donning a strap-on<</if>> to slide inside her girly asspussy. $He's not wrong, and $he lets out a little moan as <<if $PC.dick == 1>>your cockhead<<if $PC.vagina == 1>>, which you kindly lubed with a bit of your pussyjuice,<</if>><<else>>its broad tip<</if>> <<if $activeSlave.anus > 2>>slides easily inside her whorish anus<<elseif $activeSlave.anus == 2>>slides up her experienced butthole<<else>>forces its way inside her tight sphincter<</if>>. + You order $him to get $his ass up on your desk. $He obeys, though not without a flicker of trepidation. $He points $his butt at you like a sex slave should, and doesn't crane around to see what you're doing behind $him, but $he's stiff with the awareness that <<if $PC.dick == 1>>there's almost certainly a hard<<if $PC.vagina == 1>> futa<</if>> dick about<<else>>you're almost certainly donning a strap-on<</if>> to slide inside $his girly asspussy. $He's not wrong, and $he lets out a little moan as <<if $PC.dick == 1>>your cockhead<<if $PC.vagina == 1>>, which you kindly lubed with a bit of your pussyjuice,<</if>><<else>>its broad tip<</if>> <<if $activeSlave.anus > 2>>slides easily inside $his whorish anus<<elseif $activeSlave.anus == 2>>slides up $his experienced butthole<<else>>forces its way inside $his tight sphincter<</if>>. <br><br> - As you fuck $him, you pull $his torso up so you can play with her <<if $activeSlave.boobs > 2000>>udders<<elseif $activeSlave.boobs > 800>>tits<<else>>nipples<</if>> and whisper manipulation into her ear. You tell her $he's about to cum like a girl. $He says nothing, but $his body language communicates incomprehension. Girls, you tell $him, cum when they get fucked. They cum when <<if $PC.title == 1>>guys<<else>>their betters<</if>> stick dick inside them. $He bursts into tears, sobbing with shame and degradation even as $he shakes and <<if $activeSlave.balls > 0>>squirts cum<<else>>dribbles ejaculate<</if>>. The next time $he sees you, + As you fuck $him, you pull $his torso up so you can play with $his <<if $activeSlave.boobs > 2000>>udders<<elseif $activeSlave.boobs > 800>>tits<<else>>nipples<</if>> and whisper manipulation into $his ear. You tell $him $he's about to cum like a girl. $He says nothing, but $his body language communicates incomprehension. Girls, you tell $him, cum when they get fucked. They cum when <<if $PC.title == 1>>guys<<else>>their betters<</if>> stick dick inside them. $He bursts into tears, sobbing with shame and degradation even as $he shakes and <<if $activeSlave.balls > 0>>squirts cum<<else>>dribbles ejaculate<</if>>. The next time $he sees you, <<if (random(0,1) == 1)>> - $he visibly gathers her courage, and flirtily @@.lightcoral;offers you $his ass.@@ + $he visibly gathers $his courage, and flirtily @@.lightcoral;offers you $his ass.@@ <<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> <<else>> $he manages to stop $himself from breaking down, and seems to be @@.hotpink;working hard@@ to convince $himself that $he's a girl. @@ -10370,17 +10372,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<elseif ($activeSlave.vagina > -1)>> -<br><<link "Work on broadening her sexual horizons">> +<br><<link "Work on broadening $his sexual horizons">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He seems a little too focused on her hot cunt. You order $him to get up on your desk, and $he obeys eagerly, her <<if canSee($activeSlave)>>$activeSlave.eyeColor eyes shining<<else>>facial expression filled<</if>> with lust. <<if canSee($activeSlave)>>They focus<<else>>$He focuses<</if>> on <<if $PC.dick == 1>>your cock as you bring it to bear<<if $PC.vagina == 1>>, not to mention the pussy at its base<</if>><<else>>your strap-on as you step into it<</if>>, and $he's about to express her gratitude when you push the slave, who is sitting on the edge of your desk with $his legs spread to provide you access to $his pussy, over onto her back. $He barely has time to reorient $himself when $he feels <<if $activeSlave.anus > 2>>a sudden fullness in her loose ass<<elseif $activeSlave.anus == 2>>a presence inside her experienced ass<<else>>something starting to push its way up her poor little bottom<</if>>. + $He seems a little too focused on $his hot cunt. You order $him to get up on your desk, and $he obeys eagerly, $his <<if canSee($activeSlave)>>$activeSlave.eyeColor eyes shining<<else>>facial expression filled<</if>> with lust. <<if canSee($activeSlave)>>They focus<<else>>$He focuses<</if>> on <<if $PC.dick == 1>>your cock as you bring it to bear<<if $PC.vagina == 1>>, not to mention the pussy at its base<</if>><<else>>your strap-on as you step into it<</if>>, and $he's about to express $his gratitude when you push the slave, who is sitting on the edge of your desk with $his legs spread to provide you access to $his pussy, over onto $his back. $He barely has time to reorient $himself when $he feels <<if $activeSlave.anus > 2>>a sudden fullness in $his loose ass<<elseif $activeSlave.anus == 2>>a presence inside $his experienced ass<<else>>something starting to push its way up $his poor little bottom<</if>>. <br><br> - $He cannot hide her disappointment, but has the presence of mind not to protest as you assfuck her hard enough that her <<if $activeSlave.boobs > 2000>>ridiculous tits almost hit $him in the face with each stroke<<elseif $activeSlave.boobs > 800>>big boobs bounce all over the place<<else>>boobs bounce<</if>><<if $activeSlave.belly >= 10000>> and taut belly is forced back<</if>>. $His orgasm sneaks up on $him, and comes by surprise, forcing a squeal out of her as her sphincter tightens down involuntarily. $He gets up gingerly, clearly feeling sore, + $He cannot hide $his disappointment, but has the presence of mind not to protest as you assfuck $him hard enough that $his <<if $activeSlave.boobs > 2000>>ridiculous tits almost hit $his in the face with each stroke<<elseif $activeSlave.boobs > 800>>big boobs bounce all over the place<<else>>boobs bounce<</if>><<if $activeSlave.belly >= 10000>> and taut belly is forced back<</if>>. $His orgasm sneaks up on $him, and comes by surprise, forcing a squeal out of $his as $his sphincter tightens down involuntarily. $He gets up gingerly, clearly feeling sore, <<if (random(0,1) == 1)>> - and looks preoccupied. $He reaches idly around and massages her well-fucked backdoor meditatively, biting her lower lip as $he investigates. Maybe, $he seems to be thinking, @@.lightcoral;anal is fun?@@ + and looks preoccupied. $He reaches idly around and massages $his well-fucked backdoor meditatively, biting $his lower lip as $he investigates. Maybe, $he seems to be thinking, @@.lightcoral;anal is fun?@@ <<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> <<else>> - but @@.hotpink;does her honest best@@ to look grateful. $He knows $he's a sex slave and can't afford to be particular about little things like getting buttfucked. + but @@.hotpink;does $his honest best@@ to look grateful. $He knows $he's a sex slave and can't afford to be particular about little things like getting buttfucked. <<set $activeSlave.devotion += 4>> <</if>> <<= AnalVCheck()>> @@ -10391,10 +10393,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "cage relief">> -<<link "Help her get off">> +<<link "Help $him get off">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You take $him by the hand and pull $him to her feet, and then kiss $him. $He knows that this means no, but melts into you anyway, accepting the comforting gesture for what it is. $He's surprised when you do not break the kiss, but continues to make out with you compliantly. You take $him by the hands, intertwining your fingers with $hers and holding them down at your sides for a while before wrapping $his arms around you at your + You take $him by the hand and pull $him to $his feet, and then kiss $him. $He knows that this means no, but melts into you anyway, accepting the comforting gesture for what it is. $He's surprised when you do not break the kiss, but continues to make out with you compliantly. You take $him by the hands, intertwining your fingers with $hers and holding them down at your sides for a while before wrapping $his arms around you at your <<if $PC.belly >= 10000>> heavily pregnant <<elseif $PC.belly >= 5000>> @@ -10408,9 +10410,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> masculine <</if>> - waist. Your hands, thus freed to grope $him, tenderly hold her head and neck instead, cupping her <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face >= -10>>pretty<<else>>homely<</if>> jawline and making her moan at the intimacy. + waist. Your hands, thus freed to grope $him, tenderly hold $his head and neck instead, cupping $his <<if $activeSlave.face > 95>>gorgeous<<elseif $activeSlave.face >= -10>>pretty<<else>>homely<</if>> jawline and making $him moan at the intimacy. <br><br> - $He's completely forgotten her troubles, and you see that it stays that way. You consider yourself something of an expert on human stimulation at this point, and you manage $hers expertly. (Admittedly, you're also cheating, using discreet scanning of her vital signs to check on her state of arousal.) Whenever $he's in danger of achieving an erection, which would remind her of her chastity cage with a twinge of discomfort, you cool your makeout session off slightly, massaging her capably instead of kissing her deeply. After some time, $he shudders, to her own complete surprise and to your unsurprised satisfaction. $He's just done what in a normal sexual encounter would be considered premature ejaculation, since you wrought $him to such a subtle state of arousal that $he got off without really getting hard. $He can muster no coherent response, but @@.mediumaquamarine;hugs you convulsively,@@ sobbing into your + $He's completely forgotten $his troubles, and you see that it stays that way. You consider yourself something of an expert on human stimulation at this point, and you manage $hers expertly. (Admittedly, you're also cheating, using discreet scanning of $his vital signs to check on $his state of arousal.) Whenever $he's in danger of achieving an erection, which would remind $him of $his chastity cage with a twinge of discomfort, you cool your makeout session off slightly, massaging $him capably instead of kissing $him deeply. After some time, $he shudders, to $his own complete surprise and to your unsurprised satisfaction. $He's just done what in a normal sexual encounter would be considered premature ejaculation, since you wrought $him to such a subtle state of arousal that $he got off without really getting hard. $He can muster no coherent response, but @@.mediumaquamarine;hugs you convulsively,@@ sobbing into your <<if $PC.boobsBonus > 2>> enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts <<elseif $PC.boobsBonus == 2>> @@ -10428,7 +10430,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> with gratitude and release. <br><br> - The scans suggest her discomfort will return in less than half an hour. + The scans suggest $his discomfort will return in less than half an hour. <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -10437,40 +10439,40 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You agree, on the condition that $he be a good little bitch like $he promised. $He thanks you frantically, following you with mixed relief, gratitude, and deep terror as you lead $him to the surgery. It's a medically simple procedure, but $he's @@.red;retained for recovery@@ for some time, a common precaution in your penthouse where the surgery affects an area that might be reinjured by sexual use without a short break for the curatives to take effect. When the medical equipment verifies that $he can be fucked without pain or danger to $his health, you order $him to come back up to your office. $He is a @@.hotpink;very good little bitch,@@ <<if canDoAnal($activeSlave)>> - taking <<if $PC.dick == 1>>a hard buttfuck<<else>>a hard anal fingerfuck<</if>> with apparent enthusiasm and a strong orgasm, though of course her continued use of a chastity cage conceals almost all the effects. + taking <<if $PC.dick == 1>>a hard buttfuck<<else>>a hard anal fingerfuck<</if>> with apparent enthusiasm and a strong orgasm, though of course $his continued use of a chastity cage conceals almost all the effects. <<= AnalVCheck()>> <<else>> - enduring all of your teasing without the slightest hint of an erection. Even though her chastity blocks the use of $his ass, you still focus most of your attention on $his rear for the day the belt comes off. + enduring all of your teasing without the slightest hint of an erection. Even though $his chastity blocks the use of $his ass, you still focus most of your attention on $his rear for the day the belt comes off. <</if>> - When $he goes to the bathroom afterward, however, you see her <<if canSee($activeSlave)>>glance at $himself in the mirror, just once, and then @@.gold;glance away again,@@<<else>>run $his hand under $his cock, just once, and then @@.gold;quickly removing $his hand,@@<</if>> a tear leaking down $his cheek. + When $he goes to the bathroom afterward, however, you see $him <<if canSee($activeSlave)>>glance at $himself in the mirror, just once, and then @@.gold;glance away again,@@<<else>>run $his hand under $his cock, just once, and then @@.gold;quickly removing $his hand,@@<</if>> a tear leaking down $his cheek. <<set $activeSlave.balls = 0, $activeSlave.scrotum = 0,$activeSlave.health -= 5, $activeSlave.trust -= 4, $activeSlave.devotion += 4>> <</replace>> <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> - <<else>> - <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> - <</if>> + <<if $imageChoice == 1>> + <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> + <<else>> + <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> + <</if>> <</if>> /* 000-250-006 */ <</replace>> <</link>><<if ($activeSlave.anus == 0) && canDoAnal($activeSlave)>> //This option will take anal virginity//<</if>> <<if canDoAnal($activeSlave)>> -<br><<link "Use her cage to torture $him">> +<br><<link "Use $his cage to torture $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You make no reply at all, but walk around to stand behind the slave. $He knows $he's fucked, and starts to shake with fear. You put a foot on $his ass and shove her down<<if $activeSlave.belly >= 5000>> so $his rear is pointed into the air again<<else>> to lie flat on the floor<</if>>, and then straddle $him, shoving <<if $PC.dick == 1>>your<<if $PC.vagina == 1>> futa<</if>> cock up $his butt<<else>>one more finger than $he can comfortably take up $his butt<</if>>. $He tries to beg some more, but you give $him a warning slap, and $he shuts up. Despite your roughness, $he's so horny that $he starts to get hard. You can't see or feel this directly, of course, but it's easy to tell from her desperate sobbing and involuntary writhing, and the lovely spasming of her anal sphincter. $His tears dry up as $he builds towards a climax; orgasm might be an uncomfortable experience for $him, but it will buy $him a few minutes free of discomfort. + You make no reply at all, but walk around to stand behind the slave. $He knows $he's fucked, and starts to shake with fear. You put a foot on $his ass and shove $him down<<if $activeSlave.belly >= 5000>> so $his rear is pointed into the air again<<else>> to lie flat on the floor<</if>>, and then straddle $him, shoving <<if $PC.dick == 1>>your<<if $PC.vagina == 1>> futa<</if>> cock up $his butt<<else>>one more finger than $he can comfortably take up $his butt<</if>>. $He tries to beg some more, but you give $him a warning slap, and $he shuts up. Despite your roughness, $he's so horny that $he starts to get hard. You can't see or feel this directly, of course, but it's easy to tell from $his desperate sobbing and involuntary writhing, and the lovely spasming of $his anal sphincter. $His tears dry up as $he builds towards a climax; orgasm might be an uncomfortable experience for $him, but it will buy $him a few minutes free of discomfort. <br><br> - But $he's to be disappointed. You <<if $PC.dick == 1>>worm a hand down between $his ass and your stomach, and shove a finger up inside $him, alongside your dick<<if $PC.vagina == 1>>, dexterously using the thumb of that hand to stroke your own pussy<</if>><<else>>use the hand that isn't fucking $him to pull one of $his arms around behind her into a painful joint lock<</if>>. The pain ruins her building orgasm, and $he cries with frustration and @@.gold;despair@@ as $he realizes that $he won't be getting off today. You force $him to experience this horrible near-release twice more, bringing $him to a terribly uncomfortable state of arousal and then using sudden pain to destroy any chance $he has of getting relief. All the wriggling and jerking around is good for you, though. + But $he's to be disappointed. You <<if $PC.dick == 1>>worm a hand down between $his ass and your stomach, and shove a finger up inside $him, alongside your dick<<if $PC.vagina == 1>>, dexterously using the thumb of that hand to stroke your own pussy<</if>><<else>>use the hand that isn't fucking $him to pull one of $his arms around behind $him into a painful joint lock<</if>>. The pain ruins $his building orgasm, and $he cries with frustration and @@.gold;despair@@ as $he realizes that $he won't be getting off today. You force $him to experience this horrible near-release twice more, bringing $him to a terribly uncomfortable state of arousal and then using sudden pain to destroy any chance $he has of getting relief. All the wriggling and jerking around is good for you, though. <<set $activeSlave.trust -= 4>> <<= AnalVCheck()>> <</replace>> <</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> <</if>> <<if ((($activeSlave.fetish == "pregnancy" && $PC.belly >= 5000) || ($activeSlave.fetish == "cumslut" && $PC.balls > 2) || ($activeSlave.fetish == "boobs" && $PC.boobsBonus == 3)) && $activeSlave.fetishKnown == 1) || ((($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina == 1 && $PC.dick == 0) || ($activeSlave.attrXY > 70 && $activeSlave.attrXX < 50 && $PC.title == 1 && $PC.vagina == 0 && $PC.dick == 1)) && $activeSlave.attrKnown == 1)>> -<br><<link "Use your body to make her cage feel even tighter">> +<br><<link "Use your body to make $his cage feel even tighter">> <<EventNameDelink $activeSlave>> <<replace "#result">> You order $him to pay close attention<<if canSee($activeSlave)>> and not look away<</if>>. @@ -10488,9 +10490,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pregnant belly <</if>> - and slowly stripping down. $He groans at the sight, her dick rapidly hardening at the view of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. + and slowly stripping down. $He groans at the sight, $his dick rapidly hardening at the view of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. <<else>> - $He questions what you mean until you grab her head and push her face against your + $He questions what you mean until you grab $his head and push $his face against your <<if $PC.belly >= 100000>> massive pregnancy. <<elseif $PC.belly >= 60000>> @@ -10502,34 +10504,34 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pregnant belly. <</if>> - $He tries to recoil, bringing a hand to your middle. You catch it and run it along your motherly curve to your popped navel. You trace $his hand around is as $he groans at the sensation, her dick rapidly hardening at the feel of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. + $He tries to recoil, bringing a hand to your middle. You catch it and run it along your motherly curve to your popped navel. You trace $his hand around is as $he groans at the sensation, $his dick rapidly hardening at the feel of your motherly body. You make sure to play off $his pregnancy fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. <</if>> <<elseif ($activeSlave.fetish == "cumslut" && $PC.balls > 2)>> <<if canSee($activeSlave)>> - $He questions what you mean until you begin sensually caressing your massive balls and slowly stripping down. You quickly bring yourself erect and start to jack off. $He groans at the sight, licking $his lips a the thought of your coming load as her dick rapidly hardens. You tease yourself and hype up just how big and messy your orgasm will be, making her quiver with painful arousal. You moan as you feel the distinct sensation of your coming ejaculation, the sheer amount of sperm moving through you takes some time to release. You hug your nuts, thrusting repeatedly until the wave of cum forces its way out of your throbbing dick. You sigh with relief, just to rub it in her face. + $He questions what you mean until you begin sensually caressing your massive balls and slowly stripping down. You quickly bring yourself erect and start to jack off. $He groans at the sight, licking $his lips a the thought of your coming load as $his dick rapidly hardens. You tease yourself and hype up just how big and messy your orgasm will be, making $him quiver with painful arousal. You moan as you feel the distinct sensation of your coming ejaculation, the sheer amount of sperm moving through you takes some time to release. You hug your nuts, thrusting repeatedly until the wave of cum forces its way out of your throbbing dick. You sigh with relief, just to rub it in $his face. <<else>> - $He questions what you mean until you strip down and pull her face directly into your massive balls. $He tries to recoil, bringing $his hands to immense spheres. You catch them and use one to massage your nuts and encourage a nice big load for $him and the other the help jack you off. You can feel her shaking from the pressure on her dick. Not only do you paint her with seed, but you sigh loudly with relief, just to rub it in. + $He questions what you mean until you strip down and pull $his face directly into your massive balls. $He tries to recoil, bringing $his hands to immense spheres. You catch them and use one to massage your nuts and encourage a nice big load for $him and the other the help jack you off. You can feel $him shaking from the pressure on $his dick. Not only do you paint $him with seed, but you sigh loudly with relief, just to rub it in. <</if>> <<elseif ($activeSlave.fetish == "boobs" && $PC.boobsBonus == 3)>> <<if canSee($activeSlave)>> - $He questions what you mean until you pull your arms back, forcing your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts to pop free of your top. $He groans at the sight, her dick rapidly hardening at the view of your impressive rack. You make sure to play off her tit fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. + $He questions what you mean until you pull your arms back, forcing your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts to pop free of your top. $He groans at the sight, $his dick rapidly hardening at the view of your impressive rack. You make sure to play off $his tit fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. <<else>> - $He questions what you mean until you grab her head and push her face against your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts. $He tries to recoil, bringing $his hands to your breasts. You continue burying her face in your rack as $he begins to grope you. $He groans at the sensation, her dick rapidly hardening at the feel of your lovely tits. You make sure to play off her boob fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. + $He questions what you mean until you grab $his head and push $his face against your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts. $He tries to recoil, bringing $his hands to your breasts. You continue burying $his face in your rack as $he begins to grope you. $He groans at the sensation, $his dick rapidly hardening at the feel of your lovely tits. You make sure to play off $his boob fetish in every way possible until the aroused slave is in tears from the pressure on $his cock. <</if>> <<elseif ($activeSlave.attrXX > 70 && $activeSlave.attrXY < 50 && $PC.title == 0 && $PC.vagina == 1 && $PC.dick == 0)>> <<if canSee($activeSlave)>> - $He questions what you mean until you begin your strip tease. $He groans at the sight, her dick rapidly hardening at the view of your tits and pussy. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock. + $He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your tits and pussy. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock. <<else>> - $He questions what you mean until you grab her head and push her face into your pussy. $He tries to recoil, bringing $his hands to your rear. You continue rubbing yourself against her face as begins to grope you, enjoying your feminine features. $He groans as her dick rapidly hardens at the feel of your curves and the scent of your arousal. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock. + $He questions what you mean until you grab $his head and push $his face into your pussy. $He tries to recoil, bringing $his hands to your rear. You continue rubbing yourself against $his face as begins to grope you, enjoying your feminine features. $He groans as $his dick rapidly hardens at the feel of your curves and the scent of your arousal. You know just how arousing $he finds the female form, and you play off that until the aroused slave is in tears from the pressure on $his cock. <</if>> <<else>> <<if canSee($activeSlave)>> - $He questions what you mean until you begin your strip tease. $He groans at the sight, her dick rapidly hardening at the view of your erection. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock. + $He questions what you mean until you begin your strip tease. $He groans at the sight, $his dick rapidly hardening at the view of your erection. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock. <<else>> - $He questions what you mean until you grab her head and push her face against your dick. $He tries to recoil, bringing $his hands to your balls. You continue rubbing yourself against her face as begins to fondle you, enjoying your masculine features. $He groans as her dick rapidly hardens at the feel of your penis against your face and the scent of your arousal and precum. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock. + $He questions what you mean until you grab $his head and push $his face against your dick. $He tries to recoil, bringing $his hands to your balls. You continue rubbing yourself against $his face as begins to fondle you, enjoying your masculine features. $He groans as $his dick rapidly hardens at the feel of your penis against your face and the scent of your arousal and precum. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock. <</if>> <</if>> - You leave $him in a @@.gold;worse state than $he started in,@@ $he's hornier than ever and still lacks any satisfying release. But that's her problem, not yours.<<if $PC.belly >= 10000>> Even when so heavily pregnant, it feels good to know you can still bring a dick to full attention.<</if>> + You leave $him in a @@.gold;worse state than $he started in,@@ $he's hornier than ever and still lacks any satisfying release. But that's $his problem, not yours.<<if $PC.belly >= 10000>> Even when so heavily pregnant, it feels good to know you can still bring a dick to full attention.<</if>> <<set $activeSlave.trust -= 4>> <</replace>> <</link>> @@ -10538,16 +10540,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "used whore">> -<<link "Use her anyway">> +<<link "Use $him anyway">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You reach out, grab her shoulder, and shove her against the wall. + You reach out, grab $his shoulder, and shove $him against the wall. <<if !canTalk($activeSlave)>> $He manages to use a gesture to beg you not to, <<else>> $He manages to beg, "Plea<<s>>e no, <<Master>> -" <</if>> - before you give $him a hard warning slap on the ass to shut her up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>your cock<</if>> against her + before you give $him a hard warning slap on the ass to shut $his up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>your cock<</if>> against $his <<if canDoAnal($activeSlave)>> anus. <<if ($activeSlave.anus > 2)>> @@ -10560,9 +10562,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if ($activeSlave.height >= 185)>> $He's tall enough that the angle isn't that uncomfortable for $him. <<elseif ($activeSlave.anus > 0)>> - $He hikes $himself desperately up on her tiptoes to make the angle less uncomfortable for $him. + $He hikes $himself desperately up on $his tiptoes to make the angle less uncomfortable for $him. <<else>> - $He hikes $himself desperately up on her tiptoes, but $he's so short the angle is desperately uncomfortable for $him. + $He hikes $himself desperately up on $his tiptoes, but $he's so short the angle is desperately uncomfortable for $him. <</if>> $He decides to try begging one last time, and <<if canDoVaginal($activeSlave)>> @@ -10580,17 +10582,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> as you shove <<if $PC.dick == 0>>the strap-on<<else>>yourself<</if>> up $his butt. $He reflexively tries to get away into the wall, <<if $activeSlave.belly > 100000>> - her _belly belly squashing out to either side. + $his _belly belly squashing out to either side. <<elseif ($activeSlave.boobs > 2000)>> - her enormous boobs squashing out to either side. + $his enormous boobs squashing out to either side. <<elseif ($activeSlave.boobs > 1000)>> - her big boobs squashing out to either side. + $his big boobs squashing out to either side. <<elseif ($activeSlave.boobs > 300)>> - her boobs crashing into it. + $his boobs crashing into it. <<else>> - her sore nipples giving $him a jerk as $he does. + $his sore nipples giving $him a jerk as $he does. <</if>> - After some continued whining through her tears, $he gives up and just @@.gold;lets you@@ rape her sore ass. + After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore ass. <<= AnalVCheck()>> <<else>> pussy lips. @@ -10629,20 +10631,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t After some continued whining through $his tears, $he gives up and just @@.gold;lets you@@ rape $his sore vagina. <<= VaginalVCheck()>> <</if>> - When you finally <<if ($PC.dick == 1)>>fill her <<if canDoAnal($activeSlave)>>butt<<else>>pussy<</if>> with your ejaculate and pull out,<<if $PC.vagina == 1>> the motion releasing a waft of the combined cum and pussyjuice smell of a satisfied futa,<</if>><<else>>shudder with orgasm and withdraw your strap-on,<</if>> $he slumps and turns to go, looking a bit sad for some reason. + When you finally <<if ($PC.dick == 1)>>fill $his <<if canDoAnal($activeSlave)>>butt<<else>>pussy<</if>> with your ejaculate and pull out,<<if $PC.vagina == 1>> the motion releasing a waft of the combined cum and pussyjuice smell of a satisfied futa,<</if>><<else>>shudder with orgasm and withdraw your strap-on,<</if>> $he slumps and turns to go, looking a bit sad for some reason. <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Manipulate her into asking to suck you off">> +<br><<link "Manipulate $him into asking to suck you off">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You reach out, grab her shoulder, and shove her against the wall. + You reach out, grab $his shoulder, and shove $him against the wall. <<if !canTalk($activeSlave)>> $He manages to use a gesture to beg you not to, <<else>> $He manages to beg, "Plea<<s>>e no, <<Master>> -" <</if>> - before you give $him a hard warning slap on the ass to shut her up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>an invading<<if $PC.vagina == 1>> futa<</if>> cockhead<</if>> against her + before you give $him a hard warning slap on the ass to shut $him up. $He's quiet, but starts to sob a little when $he feels <<if $PC.dick == 0>>the head of a strap-on<<else>>an invading<<if $PC.vagina == 1>> futa<</if>> cockhead<</if>> against $his <<if canDoAnal($activeSlave)>> anus. <<if ($activeSlave.anus > 2)>> @@ -10668,7 +10670,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> whines, "Let me <<s>>uck you off, plea<<s>>e!" <</if>> - Having gotten $him to beg for what you wanted all along, you spin her so her + Having gotten $him to beg for what you wanted all along, you spin $him so $his <<if $activeSlave.weight > 160>> rippling <<elseif $activeSlave.weight > 95>> @@ -10682,7 +10684,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> feminine <</if>> - back hits the wall with a smack and shove her down it until her + back hits the wall with a smack and shove $him down it until $his <<if ($activeSlave.lips > 70)>> massive <<elseif ($activeSlave.lips > 40)>> @@ -10694,7 +10696,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> miniscule <</if>> - lips are level with your <<if $PC.dick == 0>>fake dick<<else>>dick<</if>><<if $activeSlave.belly >= 100000>>, straddle $his _belly belly<</if>>, and push it into $his mouth without waiting for $him to get ready. $He gags, but does her best to work her tired mouth. When you're finally satisfied and you let her up, you aim another slap at her + lips are level with your <<if $PC.dick == 0>>fake dick<<else>>dick<</if>><<if $activeSlave.belly >= 100000>>, straddle $his _belly belly<</if>>, and push it into $his mouth without waiting for $him to get ready. $He gags, but does $his best to work $his tired mouth. When you're finally satisfied and you let $him up, you aim another slap at $his <<if ($activeSlave.butt > 12)>> inhuman ass <<elseif ($activeSlave.butt > 5)>> @@ -10706,20 +10708,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> flat ass <</if>> - and let her see it coming; $he @@.hotpink;accepts@@ the spank due to fright at what you might do if $he dodged before fleeing. + and let $him see it coming; $he @@.hotpink;accepts@@ the spank due to fright at what you might do if $he dodged before fleeing. <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <br><<link "Just talk with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You take $him by the hand, lead $him to a nearby couch, and sit down with $him, letting her seat $himself beside you so $he can + You take $him by the hand, lead $him to a nearby couch, and sit down with $him, letting $him seat $himself beside you so $he can <<if $activeSlave.belly >= 5000>> - rest her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk against you + rest $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk against you <<else>> lean against you <</if>> - without putting too much weight on her poor overused butthole. You ask her about your day. + without putting too much weight on $his poor overused butthole. You ask $him about $his day. <<if !canTalk($activeSlave)>> $He uses gestures to recount it through her tears. Apparently while one guy was using $his anus, another thought it was hot and waited for him to be done before using $him in turn, without letting her rest or clean $himself. It took four cocks total for another slave to notice and rescue $him. <<else>> @@ -10748,13 +10750,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><br><span id="result2"> <<link "Kiss $him back">> <<replace "#result2">> - You turn to kiss her back, on the lips this time. $He <<if canSee($activeSlave)>>sees<<else>>feels<</if>> your intention and @@.mediumaquamarine;complies trustingly,@@ closing $his eyes and tilting her head slightly so your lips lock perfectly. + You turn to kiss $him back, on the lips this time. $He <<if canSee($activeSlave)>>sees<<else>>feels<</if>> your intention and @@.mediumaquamarine;complies trustingly,@@ closing $his eyes and tilting $his head slightly so your lips lock perfectly. <<if ($activeSlave.lips > 70)>> $His ridiculous, pillowlike lips part softly. <<elseif ($activeSlave.teeth == "pointy")>> $He opens $his jaw wide, careful to keep $his shark's teeth well clear of you. <</if>> - After a few seconds, $he realizes you aren't planning to break the kiss anytime soon, and softens, $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> body relaxing against yours. $He scoots closer to you, bringing $his legs up under her on the couch cushions so $he can face you comfortably. $He leans one + After a few seconds, $he realizes you aren't planning to break the kiss anytime soon, and softens, $his<<if $activeSlave.bellyPreg >= 1500>> pregnant<</if>> body relaxing against yours. $He scoots closer to you, bringing $his legs up under $him on the couch cushions so $he can face you comfortably. $He leans one <<if $activeSlave.weight > 160>> extremely well padded <<elseif $activeSlave.weight > 95>> @@ -10766,7 +10768,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.hips > -1>> pretty <</if>> - hip against your leg, hiking $himself half onto your lap so $he can make out with you without having to sit with any weight on her sore butthole. + hip against your leg, hiking $himself half onto your lap so $he can make out with you without having to sit with any weight on $his sore butthole. <<set $activeSlave.trust += 2>> <</replace>> <</link>> @@ -10774,23 +10776,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result2">> But $he's wrong to place that kind of faith in you. As $he withdraws from the kiss, you snake a betraying hand between $his butt and the couch, and shove <<if $activeSlave.anus <= 1>> - two rude fingers up her sore little anus. + two rude fingers up $his sore little anus. <<elseif $activeSlave.anus == 2>> - three rude fingers up her sore anus. + three rude fingers up $his sore anus. <<else>> - all four of your fingers and your thumb, formed into a point, as far up her loose butt as they will go. + all four of your fingers and your thumb, formed into a point, as far up $his loose butt as they will go. <</if>> - $He lets out a pained "oh," and then goes silent. For such a little sound, it bears a great weight of @@.gold;betrayed trust.@@ You insert your fingers to the knuckle, making her writhe with discomfort, and then turf her off the couch to land + $He lets out a pained "oh," and then goes silent. For such a little sound, it bears a great weight of @@.gold;betrayed trust.@@ You insert your fingers to the knuckle, making $him writhe with discomfort, and then turf $him off the couch to land <<if $activeSlave.belly >= 300000>> across $his _belly stomach <<else>> face first <</if>> - on the floor in front of you. $He tries to spread $his butt and angle $his hips like a good $girl, but you slap $his hands away and push your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> inside her without regard for $his poor anus. $He shudders and begins to cry, and keeps crying as you ravage $his asshole. When you climax and pull out, $he continues to weep, but stumbles off to wash. When $he comes back, $he's still sniffling, but without being prompted, + on the floor in front of you. $He tries to spread $his butt and angle $his hips like a good $girl, but you slap $his hands away and push your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> inside $him without regard for $his poor anus. $He shudders and begins to cry, and keeps crying as you ravage $his asshole. When you climax and pull out, $he continues to weep, but stumbles off to wash. When $he comes back, $he's still sniffling, but without being prompted, <<if $activeSlave.belly >= 300000>> - @@.hotpink;$he leans over $his belly and offers you her sore butthole again.@@ + @@.hotpink;$he leans over $his belly and offers you $his sore butthole again.@@ <<else>> - @@.hotpink;$he gets down on $his knees and offers you her sore butthole again.@@ + @@.hotpink;$he gets down on $his knees and offers you $his sore butthole again.@@ <</if>> <<set $activeSlave.trust -= 4, $activeSlave.devotion += 5>> <<= AnalVCheck()>> @@ -10802,22 +10804,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "desperately horny">> -<<link "Touch her enough to get her off">> +<<link "Touch $him enough to get $him off">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a reward for coming to you. $He almost bursts into tears and nods jerkily, unable to do anything else. You brush a finger across $his cheek, her ear, $his lips; at each touch $he <<if !canTalk($activeSlave)>>breathes in sharply<<else>>gasps<</if>>. Moving around behind $him, you run a hand down her flank to her hip, and then around to her<<if $activeSlave.belly >= 10000 || $activeSlave.bellyPreg >= 5000>> popped<</if>> navel, and up to cup $his breasts. Your run a thumb <<if $activeSlave.nipples != "fuckable">>over<<else>>into<</if>> each nipple, almost tipping her over the edge. Your hands move down again, + You tell $him that $he deserves a reward for coming to you. $He almost bursts into tears and nods jerkily, unable to do anything else. You brush a finger across $his cheek, $his ear, $his lips; at each touch $he <<if !canTalk($activeSlave)>>breathes in sharply<<else>>gasps<</if>>. Moving around behind $him, you run a hand down $his flank to $his hip, and then around to $his<<if $activeSlave.belly >= 10000 || $activeSlave.bellyPreg >= 5000>> popped<</if>> navel, and up to cup $his breasts. Your run a thumb <<if $activeSlave.nipples != "fuckable">>over<<else>>into<</if>> each nipple, almost tipping $him over the edge. Your hands move down again, <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> - spreading $his buttocks to tease her clenched anus, and then forward across her perineum. From there, you trace her labia and end with a pinch of $his clit - and this is enough. + spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum. From there, you trace $his labia and end with a pinch of $his clit - and this is enough. <<elseif canDoAnal($activeSlave)>> - spreading $his buttocks to tease her clenched anus, and then forward across her perineum - and this is enough. + spreading $his buttocks to tease $his clenched anus, and then forward across $his perineum - and this is enough. <<elseif canDoVaginal($activeSlave)>> - tracing her labia, and then forward to $his clit - and this is enough. + tracing $his labia, and then forward to $his clit - and this is enough. <<else>> - to give $his buttcheeks a rub down before teasing at her chastity - and this is enough. + to give $his buttcheeks a rub down before teasing at $his chastity - and this is enough. <</if>> $He spasms, pitching forward <<if $activeSlave.belly >= 300000>> - onto her obscene belly. + onto $his obscene belly. <<else>> and almost falling. <</if>> @@ -10835,7 +10837,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "submissive">> lie down on your desk on $his side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull $him over, $his $activeSlave.skin skin sliding across the cool glass desktop, until $his <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> - butt is right at the edge of the desk. You warm yourself up with a pussy fuck before shifting your attention to her neglected asshole. + butt is right at the edge of the desk. You warm yourself up with a pussy fuck before shifting your attention to $his neglected asshole. <<= BothVCheck(3)>> When you finish, you <<elseif canDoAnal($activeSlave)>> @@ -10850,44 +10852,44 @@ You tell her kindly that you understand, and that $he'll be trained to address t mouth is right at the edge of the desk. You give it a good fuck and then <<set $activeSlave.oralCount += 3, $oralTotal += 3>> <</if>> - order her brusquely to clean up and come right back. You use her as a nice little desktop <<if $PC.dick == 1>>cockholster<<else>>sex toy<</if>> for the rest of the day. + order $him brusquely to clean up and come right back. You use $him as a nice little desktop <<if $PC.dick == 1>>cockholster<<else>>sex toy<</if>> for the rest of the day. <<case "cumslut">> get under your desk and <<if $PC.dick == 1>>suck a dick<<if $PC.vagina == 1>> and eat a pussy<</if>><<else>>eat pussy<</if>> while you work. <<if $activeSlave.belly >= 120000>> - As $his _belly belly bumps into you, you sigh and swivel your chair to the side; there is no way $he'll fit under there in her bloated state. + As $his _belly belly bumps into you, you sigh and swivel your chair to the side; there is no way $he'll fit under there in $his bloated state. <</if>> - $He's so horny that $he's barely got <<if $PC.dick == 1>>your cock into $his mouth<<else>>$his lips and tongue on your cunt<</if>> before $he climaxes spontaneously, shivering and moaning nicely. You keep her down there for a while, doing light work and orgasming occasionally as $he gently <<if $PC.dick == 1>>blows you<<if $PC.vagina == 1>> and eats you out<</if>><<else>>lavishes attention on your wet vagina<</if>>. + $He's so horny that $he's barely got <<if $PC.dick == 1>>your cock into $his mouth<<else>>$his lips and tongue on your cunt<</if>> before $he climaxes spontaneously, shivering and moaning nicely. You keep $him down there for a while, doing light work and orgasming occasionally as $he gently <<if $PC.dick == 1>>blows you<<if $PC.vagina == 1>> and eats you out<</if>><<else>>lavishes attention on your wet vagina<</if>>. <<set $activeSlave.oralCount += 3, $oralTotal += 3>> <<case "humiliation">> - run an unimportant message to a citizen across $arcologies[0].name. Naked. $He blushes with mixed embarrassment and anticipation. $He's so pent up that before taking ten steps out of your penthouse entryway and towards her objective, the open stares her naked, horny body is getting push her over the edge. + run an unimportant message to a citizen across $arcologies[0].name. Naked. $He blushes with mixed embarrassment and anticipation. $He's so pent up that before taking ten steps out of your penthouse entryway and towards $his objective, the open stares $his naked, horny body is getting push $him over the edge. <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - As $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> along, her chastity cage continues to stream precum. It spatters $his legs, making her desperation completely obvious to anyone who looks at her<<if $activeSlave.belly >= 150000>> from behind<</if>>. + As $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> along, $his chastity cage continues to stream precum. It spatters $his legs, making $his desperation completely obvious to anyone who looks at $his<<if $activeSlave.belly >= 150000>> from behind<</if>>. <<elseif canAchieveErection($activeSlave)>> $His rock hard cock, <<if $activeSlave.belly >= 150000>> forced down by the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly and shoots out a little squirt of cum down the underside of $his belly. <<else>> - sticking straight forward as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly upward and shoots out a little squirt of cum<<if $activeSlave.belly >= 10000>> across the underside of her <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>. + sticking straight forward as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly upward and shoots out a little squirt of cum<<if $activeSlave.belly >= 10000>> across the underside of $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>. <</if>> As $he stumbles forward, each step releases another squirt. <<elseif ($activeSlave.dick > 0)>> $His <<if $activeSlave.dick > 6>>enormous <</if>>soft cock, flopping around as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, starts to twitch weakly and release little dribbles of cum. As $he stumbles forward, each step releases another squirt. <<elseif $activeSlave.anus > 2>> - As $he stumbles a little with the orgasm, her <<if canDoAnal($activeSlave)>>naked anus is easily visible from behind $him, and its lewd spasms attract attention<<else>>anus lewdly spasms under her chastity, and $his odd motions attract attention<</if>>. + As $he stumbles a little with the orgasm, $his <<if canDoAnal($activeSlave)>>naked anus is easily visible from behind $him, and its lewd spasms attract attention<<else>>anus lewdly spasms under $his chastity, and $his odd motions attract attention<</if>>. <<elseif canDoVaginal($activeSlave)>> - $He focuses her attention on $his pussy, awkwardly stumbling along as $he tries to walk and finger $himself at the same time. + $He focuses $his attention on $his pussy, awkwardly stumbling along as $he tries to walk and finger $himself at the same time. <<elseif canDoAnal($activeSlave)>> - $He focuses her attention on her asspussy, awkwardly stumbling along as $he tries to walk and play with her own butt at the same time. + $He focuses $his attention on $his asspussy, awkwardly stumbling along as $he tries to walk and play with $his own butt at the same time. <<elseif $activeSlave.vagina > 0>> - $He squirts a little femcum down her inner thighs as $he stumbles along, trailing the odor of a woman's pleasure behind $him. + $He squirts a little femcum down $his inner thighs as $he stumbles along, trailing the odor of a woman's pleasure behind $him. <<else>> - $He focuses her attention on $his breasts, awkwardly stumbling along as $he tries to walk and <<if $activeSlave.nipples != "fuckable">>tweak<<else>>finger<</if>> her own nipples at the same time. + $He focuses $his attention on $his breasts, awkwardly stumbling along as $he tries to walk and <<if $activeSlave.nipples != "fuckable">>tweak<<else>>finger<</if>> $his own nipples at the same time. <</if>> Passersby point and laugh, thrilling $him. <<case "buttslut">> sit on your lap. <<if canDoAnal($activeSlave)>> - $He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> touches her <<if $activeSlave.anus > 2>>anal gape<<else>>pucker<</if>>, but $he knows this is just the start, and $he laughs with pleasure as her <<if $activeSlave.anus > 2>>lewd sphincter loosely squeezes<<else>>sphincter tightens against<</if>> the base of <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You + $He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> touches $his <<if $activeSlave.anus > 2>>anal gape<<else>>pucker<</if>>, but $he knows this is just the start, and $he laughs with pleasure as $his <<if $activeSlave.anus > 2>>lewd sphincter loosely squeezes<<else>>sphincter tightens against<</if>> the base of <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You <<if $activeSlave.belly >= 5000>> spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work. <<else>> @@ -10901,7 +10903,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<= AnalVCheck()>> <<else>> - $He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> squeezes between her + $He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> squeezes between $his <<if $activeSlave.butt < 2>> flat, tight cheeks, <<elseif $activeSlave.butt <= 2>> @@ -10938,7 +10940,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t under the desk as cockbun for as long as you feel like keeping the happy buttslut trapped under there. <</if>> <<case "boobs">> - lie atop your desk. You don't bother specifying that $he's to lie on her back, since the boob slut jumps up and presents $his tits without instructions. You keep working with one hand while you idly tease and <<if $activeSlave.nipples != "fuckable">>flick<<else>>finger<</if>> the nearest <<if $activeSlave.lactation > 0>>milky <</if>> nipple with the other. $He's so horny that $he immediately experiences an immodest orgasm, her back arching away from the cool glass desktop as $he rides its waves. $He giggles a little, and then gasps as you resume playing with $him. + lie atop your desk. You don't bother specifying that $he's to lie on $his back, since the boob slut jumps up and presents $his tits without instructions. You keep working with one hand while you idly tease and <<if $activeSlave.nipples != "fuckable">>flick<<else>>finger<</if>> the nearest <<if $activeSlave.lactation > 0>>milky <</if>> nipple with the other. $He's so horny that $he immediately experiences an immodest orgasm, $his back arching away from the cool glass desktop as $he rides its waves. $He giggles a little, and then gasps as you resume playing with $him. <<set $activeSlave.mammaryCount++, $mammaryTotal++>> <<if $activeSlave.lactation > 0>> <<set $activeSlave.lactationDuration = 2>> @@ -10949,7 +10951,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<case "pregnancy">> <<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>> - join you on the couch. Since <<if ($activeSlave.vagina >= 0)>>you're saving $his pussy<<else>>this slave $girl doesn't have a pussy<</if>>, and her tight little rosebud is off limits, your options are a bit limited. But you work with what you have, playing with her + join you on the couch. Since <<if ($activeSlave.vagina >= 0)>>you're saving $his pussy<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is off limits, your options are a bit limited. But you work with what you have, playing with $his <<if isFertile($activeSlave)>> <<if $activeSlave.lactation == 0>> nipples and describing in whispers how pregnancy would make them drip with cream. @@ -10966,7 +10968,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.lactation == 0>> nipples and describing in whispers how $his pregnancy will soon have them drip with cream. <<else>> - breasts and describing in whispers how $his pregnancy will soon swell them to feed her child<<if $activeSlave.pregType > 1>>ren<</if>>. + breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>. <</if>> <<else>> <<if $activeSlave.lactation == 0>> @@ -10978,7 +10980,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t $He gasps and shudders against you. <<set $activeSlave.mammaryCount++, $mammaryTotal++>> <<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina <= 0)>> - join you on the couch. Since <<if ($activeSlave.vagina == 0)>>$he's a virgin and you haven't elected to introduce $him to pussyfucking just yet<<else>>this slave $girl doesn't have a pussy<</if>>, and her tight little rosebud is fresh and unspoiled, your options are a bit limited. But you work with what you have, playing with her + join you on the couch. Since <<if ($activeSlave.vagina == 0)>>$he's a virgin and you haven't elected to introduce $him to pussyfucking just yet<<else>>this slave $girl doesn't have a pussy<</if>>, and $his tight little rosebud is fresh and unspoiled, your options are a bit limited. But you work with what you have, playing with $his <<if isFertile($activeSlave)>> <<if $activeSlave.lactation == 0>> nipples and describing in whispers how pregnancy would make them drip with cream. @@ -10995,7 +10997,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.lactation == 0>> nipples and describing in whispers how $his pregnancy will soon have them drip with cream. <<else>> - breasts and describing in whispers how $his pregnancy will soon swell them to feed her child<<if $activeSlave.pregType > 1>>ren<</if>>. + breasts and describing in whispers how $his pregnancy will soon swell them to feed $his child<<if $activeSlave.pregType > 1>>ren<</if>>. <</if>> <<else>> <<if $activeSlave.lactation == 0>> @@ -11007,23 +11009,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t $He gasps and shudders against you. <<set $activeSlave.mammaryCount++, $mammaryTotal++>> <<elseif $activeSlave.pregKnown == 1>> - join you on the couch. <<if $PC.dick == 1>>You orgasm inside her promptly, and then tell her you'll be leaving your seed inside $him to do its work while you have her again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell her you'll be leaving it inside $him to do its work while you have her again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily. + join you on the couch. <<if $PC.dick == 1>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily. <<if !canDoVaginal($activeSlave)>> <<if $activeSlave.mpreg == 1>> - $He's already pregnant, but that doesn't disrupt her fantasy of being even more pregnant. + $He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant. <<else>> - It's $his butt you're fucking, but that doesn't disrupt her fantasy. + It's $his butt you're fucking, but that doesn't disrupt $his fantasy. <</if>> <<= AnalVCheck()>> <<else>> - $He's already pregnant, but that doesn't disrupt her fantasy of being even more pregnant. + $He's already pregnant, but that doesn't disrupt $his fantasy of being even more pregnant. <<= VaginalVCheck()>> <</if>> <<else>> - join you on the couch. <<if $PC.dick == 1>>You orgasm inside her promptly, and then tell her you'll be leaving your seed inside $him to do its work while you have her again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell her you'll be leaving it inside $him to do its work while you have her again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily. + join you on the couch. <<if $PC.dick == 1>>You orgasm inside $him promptly, and then tell $him you'll be leaving your seed inside $him to do its work while you have $him again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into $him. You tell $him you'll be leaving it inside $him to do its work while you have $him again.<</if>> $He gasps at the appeal of the idea and grinds $himself against you hungrily. <<if !canDoVaginal($activeSlave)>> <<if $activeSlave.mpreg == 1>> - $He's eager to get pregnant and intends to put her asspussy to use. + $He's eager to get pregnant and intends to put $his asspussy to use. <<else>> It's $his butt you're fucking, but that doesn't disrupt $his fantasy. <</if>> @@ -11044,17 +11046,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.belly >= 300000>> lie off the side atop $his _belly stomach. <<elseif $activeSlave.belly < 1500>> - lie on her side. + lie on $his side. <<else>> lie face down. <</if>> - $He <<if $activeSlave.belly >= 10000>>struggles to heft her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>body<<else>>clambers<</if>> up, and you let her lie there for a while, tortured by anticipation and arousal, before giving $his nearest buttock a harsh open-handed slap. The shock and pain send her over the edge immediately, and $he grinds forward into the desk involuntarily; the feeling of the cool desk against her <<if ($activeSlave.dick > 0)>>dickhead<<elseif $activeSlave.vagina == -1>>crotch<<else>>mons<</if>> slams her into a second climax, and $he sobs with overstimulation. You keep her there for a good long while, using her as a desktop toy that makes interesting noises when you hit it. + $He <<if $activeSlave.belly >= 10000>>struggles to heft $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>body<<else>>clambers<</if>> up, and you let $his lie there for a while, tortured by anticipation and arousal, before giving $his nearest buttock a harsh open-handed slap. The shock and pain send $him over the edge immediately, and $he grinds forward into the desk involuntarily; the feeling of the cool desk against $his <<if ($activeSlave.dick > 0)>>dickhead<<elseif $activeSlave.vagina == -1>>crotch<<else>>mons<</if>> slams $his into a second climax, and $he sobs with overstimulation. You keep $him there for a good long while, using $him as a desktop toy that makes interesting noises when you hit it. <</switch>> <<if ($activeSlave.fetishStrength > 95)>> - Since $he's totally sure of what gets her off, this proof you know it too makes her @@.mediumaquamarine;trust you.@@ + Since $he's totally sure of what gets $him off, this proof you know it too makes $him @@.mediumaquamarine;trust you.@@ <<set $activeSlave.trust += 5>> <<else>> - Since $he's developing her kinks, this reinforcement of her sexual identity @@.lightcoral;advances $his fetish.@@ + Since $he's developing $his kinks, this reinforcement of $his sexual identity @@.lightcoral;advances $his fetish.@@ <<set $activeSlave.fetishStrength += 4>> <</if>> <</replace>> @@ -11065,7 +11067,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "while $he sucks">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and ask to <<if $PC.dick == 0>>perform cunnilingus on you<<else>>blow you<<if $PC.vagina == 1>> and eat you out<</if>><</if>>, and masturbate while $he does. $He nods through her tears and hurriedly gets to $his knees, gagging in her clumsy eagerness, crying a little with relief as $he masturbates furiously<<if $PC.vagina == 1>><<if $PC.dick == 1>> and does her best to simultaneously please both a cock and a cunt with only one mouth<</if>><</if>>. $He doesn't even pause after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and ask to <<if $PC.dick == 0>>perform cunnilingus on you<<else>>blow you<<if $PC.vagina == 1>> and eat you out<</if>><</if>>, and masturbate while $he does. $He nods through $his tears and hurriedly gets to $his knees, gagging in $his clumsy eagerness, crying a little with relief as $he masturbates furiously<<if $PC.vagina == 1>><<if $PC.dick == 1>> and does $his best to simultaneously please both a cock and a cunt with only one mouth<</if>><</if>>. $He doesn't even pause after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<set $activeSlave.oralCount += 5, $oralTotal += 5, $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -11081,7 +11083,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "during nipple play">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and offer you $his breasts; $he will be allowed to masturbate while you do. $He nods through her tears and hurriedly presents $his chest, crying a little with relief as $he feels <<if $activeSlave.nipples != "fuckable">>you nip a nipple with your teeth<<elseif $PC.dick == 1>>your dick slip into a nipple<<else>>your tongue penetrate into $his nipple<</if>>. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. From now on, $he can come to you and offer you $his breasts; $he will be allowed to masturbate while you do. $He nods through $his tears and hurriedly presents $his chest, crying a little with relief as $he feels <<if $activeSlave.nipples != "fuckable">>you nip a nipple with your teeth<<elseif $PC.dick == 1>>your dick slip into a nipple<<else>>your tongue penetrate into $his nipple<</if>>. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<set $activeSlave.mammaryCount += 5, $mammaryTotal += 5, $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -11097,7 +11099,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "during insemination play">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.vagina > 3)>>hopelessly gaped pussy<<elseif ($activeSlave.vagina > 2)>>loose pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate while you fill her with cum. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a spurting strap-on<<else>>your cock<</if>> into her spasming cunt. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly gaped pussy<<elseif ($activeSlave.vagina > 2)>>loose pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate while you fill $him with cum. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a spurting strap-on<<else>>your cock<</if>> into $his spasming cunt. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<= VaginalVCheck(5)>> <<set $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>> @@ -11108,14 +11110,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of getting pregnant.@@ <</if>> <</replace>> -<</link>><<if ($activeSlave.vagina == 0)>> //This option will take her virginity//<</if>> +<</link>><<if ($activeSlave.vagina == 0)>> //This option will take $his virginity//<</if>> <</if>> <<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> <<if canDoAnal($activeSlave)>> <br> <<link "while $he takes it up the ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate while you buttfuck $him. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into her spasming rectum. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate while you buttfuck $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<= AnalVCheck(5)>> <<set $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> @@ -11133,7 +11135,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can masturbate in public, sitting with $his legs spread for as much exposure as possible. $He nods through her tears and sprints out of your office, dripping as $he goes. $He throws $himself to the ground outside, to the considerable amusement of passersby, spreading $his legs painfully wide. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can masturbate in public, sitting with $his legs spread for as much exposure as possible. $He nods through $his tears and sprints out of your office, dripping as $he goes. $He throws $himself to the ground outside, to the considerable amusement of passersby, spreading $his legs painfully wide. $He masturbates furiously, not even pausing after $his first orgasm; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -11151,25 +11153,25 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. <<if canDoVaginal($activeSlave)>> - For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.vagina > 3)>>hopelessly loose pussy<<elseif ($activeSlave.vagina > 2)>>big slit of an pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread her nether lips apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into her spasming vagina. You are not gentle, and despite the stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just + For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.vagina > 3)>>hopelessly loose pussy<<elseif ($activeSlave.vagina > 2)>>big slit of an pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his nether lips apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming vagina. You are not gentle, and despite the stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just <<if $activeSlave.belly >= 1500>> snakes a hand down to fondle $himself. <<else>> - rolls onto her face to hump $himself against $his hand, against the desk. + rolls onto $his face to hump $himself against $his hand, against the desk. <</if>> - <<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of her used cunt and onto her working hand<</if>>; her acceptance of sexual slavery @@.hotpink;has increased.@@ + <<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used cunt and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<= VaginalVCheck(5)>> <<elseif canDoAnal($activeSlave)>> - For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into her spasming rectum. You are not gentle, and despite the anal stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just + For the rest of the week, $he can come to you and offer you $his <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through $his tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on $his side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into $his spasming rectum. You are not gentle, and despite the anal stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just <<if $activeSlave.belly >= 1500>> snakes a hand down to fondle $himself. <<else>> - rolls onto her face to hump $himself against $his hand, against the desk. + rolls onto $his face to hump $himself against $his hand, against the desk. <</if>> - <<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of her used backdoor and onto her working hand<</if>>; her acceptance of sexual slavery @@.hotpink;has increased.@@ + <<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of $his used backdoor and onto $his working hand<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<= AnalVCheck(5)>> <<else>> - For the rest of the week, $he can come to you and politely ask to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>; $he will be allowed to masturbate after, but only after, you are satisfied. $He nods through her tears and + For the rest of the week, $he can come to you and politely ask to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>; $he will be allowed to masturbate after, but only after, you are satisfied. $He nods through $his tears and <<if $activeSlave.belly >= 300000>> leans over $his _belly stomach, <<else>> @@ -11180,13 +11182,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> to $his knees, <</if>> - where $he brings her face to your <<if $PC.dick == 1>>erect cock<<else>>moist pussy<</if>> and $his hand to her crotch. $He starts crying a little with relief as $he feels you slowly <<if $PC.dick == 0>>push your slit against<<else>>insert your cock into<</if>> $his mouth. You are not gentle, and by the time you <<if $PC.dick == 1>>blow your load down her throat<<else>>splash her face with your girlcum<</if>>, $he still hasn't reached her climax. $He's so eager to get off $he doesn't bother to move, and just humps $himself against $his hand, against + where $he brings $his face to your <<if $PC.dick == 1>>erect cock<<else>>moist pussy<</if>> and $his hand to $his crotch. $He starts crying a little with relief as $he feels you slowly <<if $PC.dick == 0>>push your slit against<<else>>insert your cock into<</if>> $his mouth. You are not gentle, and by the time you <<if $PC.dick == 1>>blow your load down $his throat<<else>>splash $his face with your girlcum<</if>>, $he still hasn't reached $his climax. $He's so eager to get off $he doesn't bother to move, and just humps $himself against $his hand, against <<if $activeSlave.belly >= 300000>> $his belly. <<else>> your leg. <</if>> - <<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>After the momentary pause of your climax, you pull her face back to your crotch for a second round<</if>>; her acceptance of sexual slavery @@.hotpink;has increased.@@ + <<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>After the momentary pause of your climax, you pull $his face back to your crotch for a second round<</if>>; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<set $activeSlave.oralCount += 5, $oralTotal += 5>> <</if>> <<set $activeSlave.devotion += 4>> @@ -11198,20 +11200,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of submission.@@ <</if>> <</replace>> -<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take her virginity//<</if>> +<</link>><<if (canDoVaginal($activeSlave) && $activeSlave.vagina == 0) || (canDoAnal($activeSlave) && $activeSlave.anus == 0)>> //This option may take $his virginity//<</if>> <</if>> <<if ($activeSlave.fetish != "masochist") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> <br> <<link "while in pain">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and masturbate: but you will abuse her while $he does. $He starts to cry in fear, but <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk anyway. You swat her thighs apart so $he can get a hand down there. $He hesitates desperately before touching $himself, knowing that as soon as $he does the pain will start, but her horniness wins out. You aim a vicious flick at her <<if ($activeSlave.nipples == "huge")>>absurd nipples<<elseif ($activeSlave.nipples != "tiny")>>big nipples<<else>>nipples<</if>> and then take a crop out of your desk, flogging her <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>fake<<elseif ($activeSlave.boobs > 1000)>>jiggling<<else>>firm<</if>> breasts without mercy. $He finally orgasms and flees, falling over her own feet in her desperation; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and masturbate: but you will abuse $him while $he does. $He starts to cry in fear, but <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk anyway. You swat $his thighs apart so $he can get a hand down there. $He hesitates desperately before touching $himself, knowing that as soon as $he does the pain will start, but $his horniness wins out. You aim a vicious flick at $his <<if ($activeSlave.nipples == "huge")>>absurd nipples<<elseif ($activeSlave.nipples != "tiny")>>big nipples<<else>>nipples<</if>> and then take a crop out of your desk, flogging $his <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>fake<<elseif ($activeSlave.boobs > 1000)>>jiggling<<else>>firm<</if>> breasts without mercy. $He finally orgasms and flees, falling over $his own feet in $his desperation; $his acceptance of sexual slavery @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@.lightcoral;$His enjoyment of pain has increased.@@ <<elseif random(1,100) > 50>> <<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.title != 0>>her master<<else>>her mistress<</if>> beating $him.@@ + Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of $his <<= WrittenMaster()>> beating $him.@@ <</if>> <</replace>> <</link>> @@ -11219,12 +11221,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "milkgasm">> -<<link "Have some fun with her once $he's using the milkers">> +<<link "Have some fun with $him once $he's using the milkers">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName is face down into a special chair a bit like a massage setup<<if $activeSlave.belly >= 1500>>, though with a hole for her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> to fit into<</if>>, with $his breasts hanging down so the milkers can work away at $his nipples. As such, her back and ass are on display as $he grunts and groans with relief. $He starts at your hand on her back but <<if $activeSlave.devotion > 20>>quickly<<else>>slowly<</if>> relaxes. + $activeSlave.slaveName is face down on a special bench much like one used for massages<<if $activeSlave.belly >= 1500>>, though with a hole for $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> to fit into<</if>>, with $his breasts hanging down so the milkers can work away at $his nipples. As such, $his back and ass are on display as $he grunts and groans with relief. $He starts at your hand on $his back but <<if $activeSlave.devotion > 20>>quickly<<else>>slowly<</if>> relaxes. <<if canDoVaginal($activeSlave)>> - The stimulation of the milking has her soaking wet, and $he whimpers with pleasure as you enter her sopping pussy. $He's so wet that her plentiful vaginal secretions make it + The stimulation of the milking has $his soaking wet, and $he whimpers with pleasure as you enter $his sopping pussy. $He's so wet that $his plentiful vaginal secretions make it <<if canDoAnal($activeSlave)>> very easy for you to switch <<if $PC.dick == 0>>your strap-on<<else>>your dick<</if>> to the cow's butt. <<= BothVCheck()>> @@ -11233,30 +11235,30 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<= VaginalVCheck(2)>> <</if>> <<elseif ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> - This milk cow's vagina is protected by a chastity belt, but her butthole isn't. You fuck it<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair. + This milk cow's vagina is protected by a chastity belt, but $his butthole isn't. You fuck it<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair. <<= AnalVCheck()>> <<else>> - Perversely, this milk cow has no pussy, so you spit on $his ass and sodomize her<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair. + Perversely, this milk cow has no pussy, so you spit on $his ass and sodomize $his<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair. <<= AnalVCheck()>> <</if>> - When $he comes, the milkers detect her orgasm to your fucking and shunt the milk into different reservoirs. Though you've never been able to taste much difference, there's a belief out there that 'milk-cum,' the squirts of milk a slave milk girl produces when climaxing with her <<= WrittenMaster()>>, have special aphrodisiac powers. @@.yellowgreen;It can be sold at a special premium.@@ Naturally, @@.hotpink;$his devotion to you has also increased.@@ + When $he comes, the milkers detect $his orgasm to your fucking and shunt the milk into different reservoirs. Though you've never been able to taste much difference, there's a belief out there that 'milk-cum,' the squirts of milk a slave milk girl produces when climaxing with $his <<= WrittenMaster()>>, have special aphrodisiac powers. @@.yellowgreen;It can be sold at a special premium.@@ Naturally, @@.hotpink;$his devotion to you has also increased.@@ <</replace>> <<set $cash += 100>> <<set $activeSlave.devotion += 4>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> -<br><<link "Delay her milking and then fuck $him in public">> +<br><<link "Delay $his milking and then fuck $him in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His equanimity is severely tested over the next hours as you ignore $him. The occasional glance at her shows her growing increasingly frantic as $his breasts grow heavier and $his nipples <<if $activeSlave.nipples != "fuckable">>get prouder<<else>>begin to prolapse<</if>>. <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>Soon, her child's kicking is forcing milk out of her swollen breasts.<</if>> Eventually, the slight rising and falling of her ribcage as $he inhales and exhales induces enough motion in her overfull breasts that milk spurts out of her with each breath. Satisfied that $he's ready, you<<if $PC.dick == 0>> don a strap-on and<</if>> lead the whimpering, dripping slave out to a public street. Here, you hold her upright so you can fuck her standing. When $he finally comes through the pain of her overfull udders, you reach forward and squeeze her so that $he screams in pain and relief, spraying jets of milk. $He continually aftershock orgasms as you continue pounding. You offer $his breasts to the growing crowd, many of whom come forward to taste her cream. + $activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His equanimity is severely tested over the next hours as you ignore $him. The occasional glance at $him shows $him growing increasingly frantic as $his breasts grow heavier and $his nipples <<if $activeSlave.nipples != "fuckable">>get prouder<<else>>begin to prolapse<</if>>. <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>Soon, $his child's kicking is forcing milk out of $his swollen breasts.<</if>> Eventually, the slight rising and falling of $his ribcage as $he inhales and exhales induces enough motion in $his overfull breasts that milk spurts out of $his with each breath. Satisfied that $he's ready, you<<if $PC.dick == 0>> don a strap-on and<</if>> lead the whimpering, dripping slave out to a public street. Here, you hold $him upright so you can fuck $him standing. When $he finally comes through the pain of $his overfull udders, you reach forward and squeeze $him so that $he screams in pain and relief, spraying jets of milk. $He continually aftershock orgasms as you continue pounding. You offer $his breasts to the growing crowd, many of whom come forward to taste $his cream. <<if !canDoVaginal($activeSlave)>> - You fuck $his butt until they've sucked her empty. + You fuck $his butt until they've sucked $him empty. <<= AnalVCheck()>> <<else>> <<if !canDoAnal($activeSlave)>> - You fuck $his pussy until they've sucked her empty. + You fuck $his pussy until they've sucked $him empty. <<= VaginalVCheck()>> <<else>> - You fuck $his pussy and ass, one after the other, until they've sucked her empty. + You fuck $his pussy and ass, one after the other, until they've sucked $him empty. <<= BothVCheck()>> <</if>> <</if>> @@ -11281,7 +11283,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He does, but the simple movement is agonizing and $he shrieks in spite of $himself. <</if>> - You slide <<if $PC.dick == 1>>your turgid cock<<else>>a big strap-on<</if>> into $him and seize $him by her + You slide <<if $PC.dick == 1>>your turgid cock<<else>>a big strap-on<</if>> into $him and seize $him by $his <<if $activeSlave.weight > 160>> extremely well padded <<elseif $activeSlave.weight > 95>> @@ -11297,20 +11299,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> skinny <</if>> - hips. $He knows what's coming and tries to ready $himself, but as you begin to pound her without mercy, the motion of $his breasts forces a huge sobbing scream out of $him. + hips. $He knows what's coming and tries to ready $himself, but as you begin to pound $him without mercy, the motion of $his breasts forces a huge sobbing scream out of $him. "Plea<<s>>e, <<Master>>! AAAH! It hurt<<s>>! It AAAH hurt<<s>> <<s>>-<<s>>o b-baAAAH!" - It hurts so badly, in fact, that $he doesn't seem to notice what you're doing to her lower half, other than the motion it produces in her upper half. Amused by the realization, + It hurts so badly, in fact, that $he doesn't seem to notice what you're doing to $his lower half, other than the motion it produces in $his upper half. Amused by the realization, <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - you pull your <<if $PC.dick == 1>>dick<<else>>phallus<</if>> out of $him and shove it up her butthole without warning. + you pull your <<if $PC.dick == 1>>dick<<else>>phallus<</if>> out of $him and shove it up $his butthole without warning. <<else>> you insert a couple of fingers alongside your <<if $PC.dick == 1>>dick<<else>>phallus<</if>>. <</if>> - $He just goes on screaming about how much her boobs hurt. Eventually, you tire of her bellowing, so you reach around and pop <<if $activeSlave.nipples != "fuckable">>$his nipples out one by one<<else>>finger into each nipple<</if>>. The shrieking reaches a paroxysm, but once they're <<if $activeSlave.nipples != "fuckable">>protruded<<else>>opened<</if>>, the milk begins to jet out of $him in a pair of uninterrupted streams. $He collapses forward onto her face, crying with relief as the pain in $his breasts recedes. As it does, $he finally begins to notice + $He just goes on screaming about how much $his boobs hurt. Eventually, you tire of $his bellowing, so you reach around and pop <<if $activeSlave.nipples != "fuckable">>$his nipples out one by one<<else>>finger into each nipple<</if>>. The shrieking reaches a paroxysm, but once they're <<if $activeSlave.nipples != "fuckable">>protruded<<else>>opened<</if>>, the milk begins to jet out of $his in a pair of uninterrupted streams. $He collapses forward onto $his face, crying with relief as the pain in $his breasts recedes. As it does, $he finally begins to notice <<if canDoAnal($activeSlave)>> the pain in $his backdoor as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer an anal virgin@@<</if>>. <<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>> <<set $activeSlave.vagina++>> - $He'll eventually realize that her @@.lime;virginity was taken@@ while $he was distracted by $his breasts. + $He'll eventually realize that $his @@.lime;virginity was taken@@ while $he was distracted by $his breasts. <</if>> <<= BothVCheck()>> <<else>> @@ -11324,10 +11326,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "whore rebellious">> -<<link "Increase her assignment to 24 hours a day">> +<<link "Increase $his assignment to 24 hours a day">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give $activeSlave.slaveName no indication that her public use assignment is about to change. Late in the day, when her shift would normally end, another of your slaves simply maintains her as usual and then leaves her be. $activeSlave.slaveName is so deprived of any way to tell time that $he doesn't realize $he's been left for some time. The first indication $he gets that something's different is when liquid food is squirted down her throat the next morning. When $he's finally stripped out of the suit at the end of the week, $he's pale and wan and $his holes are puffy and red. @@.red;$His health was damaged.@@ However, her permanent presence became quite noted. @@.green;Your reputation has increased.@@ And when $he's out of the suit, $he instantly begs you to allow $him to do anything to save $himself from more of that. @@.gold;$His fear of you has increased.@@ + You give $activeSlave.slaveName no indication that $his public use assignment is about to change. Late in the day, when $his shift would normally end, another of your slaves simply maintains $him as usual and then leaves $his be. $activeSlave.slaveName is so deprived of any way to tell time that $he doesn't realize $he's been left for some time. The first indication $he gets that something's different is when liquid food is squirted down $his throat the next morning. When $he's finally stripped out of the suit at the end of the week, $he's pale and wan and $his holes are puffy and red. @@.red;$His health was damaged.@@ However, $his permanent presence became quite noted. @@.green;Your reputation has increased.@@ And when $he's out of the suit, $he instantly begs you to allow $him to do anything to save $himself from more of that. @@.gold;$His fear of you has increased.@@ <</replace>> <<set $rep += 100>> <<set $activeSlave.trust -= 10, $activeSlave.health -= 10, $activeSlave.publicCount += 30>> @@ -11350,20 +11352,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - $His patrons, however, enjoyed claiming @@.lime;both her virginity and anal cherry.@@ + $His patrons, however, enjoyed claiming @@.lime;both $his virginity and anal cherry.@@ <<set $activeSlave.anus++, $activeSlave.vagina++>> <<elseif $activeSlave.vagina == 0>> - $His patrons, however, enjoyed claiming @@.lime;her virginity.@@ + $His patrons, however, enjoyed claiming @@.lime;$his virginity.@@ <<set $activeSlave.vagina++>> <<elseif $activeSlave.anus == 0>> - $His patrons, however, enjoyed claiming @@.lime;her anal cherry.@@ + $His patrons, however, enjoyed claiming @@.lime;$his anal cherry.@@ <<set $activeSlave.anus++>> <</if>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> <br><<link "Take the first and last every day">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and her struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the female-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@ + When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and $his struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the female-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@ <</replace>> <<set $activeSlave.trust -= 5, $activeSlave.publicCount += 18>> <<if canDoVaginal($activeSlave)>> @@ -11394,13 +11396,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - You made sure to claim @@.lime;both her virginity and anal cherry@@ before anyone else could. + You made sure to claim @@.lime;both $his virginity and anal cherry@@ before anyone else could. <<set $activeSlave.anus++, $activeSlave.vagina++>> <<elseif $activeSlave.vagina == 0>> - You made sure to claim @@.lime;her virginity@@ before anyone else could. + You made sure to claim @@.lime;$his virginity@@ before anyone else could. <<set $activeSlave.vagina++>> <<elseif $activeSlave.anus == 0>> - You made sure to claim @@.lime;her anal cherry@@ before anyone else could. + You made sure to claim @@.lime;$his anal cherry@@ before anyone else could. <<set $activeSlave.anus++>> <</if>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> @@ -11414,17 +11416,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.weight >= 190)>> $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle. <<elseif ($activeSlave.weight >= -10)>> $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> - $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. + $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit $him properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> $His weak body makes immuring $him in the arcade pathetically easy. <<else>> $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of $his butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of $his discomfiture is a slight movement of $his butt as $he wriggles desperately against $his restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -11440,23 +11442,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if ($activeSlave.amp != 1)>> $activeSlave.slaveName is surprised to find you walking beside $him, but obediently falls in behind you as a proper slave should. <<else>> - You scoop $activeSlave.slaveName's limbless form up and carry her out. + You scoop $activeSlave.slaveName's limbless form up and carry $him out. <</if>> You take $him to a lovely open balcony and seat yourself on a bench surrounded by the lush greenery and flowing water of $arcologies[0].name's food systems. You pull $his ass down onto your <<if $PC.dick == 0>>strap-on<<else>>rigid cock<</if>> so $he can offer everything else to the public.<<if $PC.vagina == 1>><<if $PC.dick == 1>> They know not to presume to use the pussy located beneath your thrusting cock.<</if>><</if>> <<if canDoVaginal($activeSlave)>> - For several hours, citizens come and go, most choosing to fuck her wet and available pussy. You climax repeatedly from the <<if $PC.dick == 0>>titillating nature of<<else>>extra fullness of $his butt during<</if>> double penetration, and by the time you're finished $he's dripping ejaculate from both $his holes. + For several hours, citizens come and go, most choosing to fuck $his wet and available pussy. You climax repeatedly from the <<if $PC.dick == 0>>titillating nature of<<else>>extra fullness of $his butt during<</if>> double penetration, and by the time you're finished $he's dripping ejaculate from both $his holes. <<elseif $activeSlave.belly >= 120000>> Since <<if $activeSlave.bellyPreg >= 3000>> - $he's so enormously pregnant that $his _belly stomach blocks her crotch + $he's so enormously pregnant that $his _belly stomach blocks $his crotch <<else>> - her _belly stomach is so massive that is blocks her crotch + $his _belly stomach is so massive that is blocks $his crotch <</if>> - and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that her face, hair, chest and belly are liberally spattered with cum. + and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and belly are liberally spattered with cum. <<elseif ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> - Since $he's wearing a chastity belt and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that her face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum. + Since $he's wearing a chastity belt and you're wearing $his backdoor around your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, $his mouth is all that's left. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum. <<else>> - With your cock pumping $his butt as much as you can manage with her seated in your lap, her <<if $activeSlave.dick != 0>>dick flops up and down<<if $activeSlave.belly >= 5000>> against the bottom of her rounded stomach<</if>><<else>>tiny front hole begins to glisten with the promise of a messy little orgasm<</if>>, lewdly advertising her sexual availability. $He gives so many blowjobs by the time you're finished that her face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum. + With your cock pumping $his butt as much as you can manage with $him seated in your lap, $his <<if $activeSlave.dick != 0>>dick flops up and down<<if $activeSlave.belly >= 5000>> against the bottom of $his rounded stomach<</if>><<else>>tiny front hole begins to glisten with the promise of a messy little orgasm<</if>>, lewdly advertising $his sexual availability. $He gives so many blowjobs by the time you're finished that $his face, hair, chest and <<if $activeSlave.belly >= 5000>><<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<<else>>even stomach<</if>> are liberally spattered with cum. <</if>> The public is sure to remember this spectacle; @@.green;your reputation has increased.@@ <<set $rep += 100>> @@ -11477,10 +11479,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <</if>> <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> -<br><<link "Give her some aftercare">> +<br><<link "Give $him some aftercare">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName returns many hours later. $He carefully took breaks for her own safety <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>,especially so given her advanced pregnancy<</if>>, and cleaned $himself periodically, so there isn't much evidence, but $he's obviously bone tired. When you meet her at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You give $him a strong massage and put $him to bed. Afterward you turn to be about your business, but $he wordlessly offers $himself to you as you do. + $activeSlave.slaveName returns many hours later. $He carefully took breaks for $his own safety <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>,especially so given $his advanced pregnancy<</if>>, and cleaned $himself periodically, so there isn't much evidence, but $he's obviously bone tired. When you meet $him at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You give $him a strong massage and put $him to bed. Afterward you turn to be about your business, but $he wordlessly offers $himself to you as you do. <<if canDoVaginal($activeSlave)>> <<if $activeSlave.vagina == 0>> $His virgin pussy is certainly tempting. @@ -11508,21 +11510,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t $His capacious asshole is certainly inviting. <</if>> <</if>> - $He's sore, so you spoon her<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> gently in bed, fucking her slowly to sleep. + $He's sore, so you spoon $his<<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>rounded<</if>> body<</if>> gently in bed, fucking $him slowly to sleep. <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> <<else>> <<= AnalVCheck()>> <</if>> - $He falls asleep with a serene expression on her face. @@.mediumaquamarine;$His trust in you has increased.@@ + $He falls asleep with a serene expression on $his face. @@.mediumaquamarine;$His trust in you has increased.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>> <</if>> -<br><<link "Chat about her day">> +<br><<link "Chat about $his day">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName returns many hours later. $He's obviously bone tired. When you meet her at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You bring her back to your office, and $he's clearly expecting to get fucked, so $he's surprised when you hand $him a hot beverage and sit down on the couch with $him. $He relaxes quickly and chats with you about her day, gossiping about all the private doings of all the prominent citizens who fucked her + $activeSlave.slaveName returns many hours later. $He's obviously bone tired. When you meet $him at the entrance to your penthouse $he's surprised to <<if canSee($activeSlave)>>see<<else>>find<</if>> you, but $he gives you a little smile anyway. You bring $him back to your office, and $he's clearly expecting to get fucked, so $he's surprised when you hand $him a hot beverage and sit down on the couch with $him. $He relaxes quickly and chats with you about $his day, gossiping about all the private doings of all the prominent citizens who fucked $his <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> cunt <<elseif ($activeSlave.anus > 0) && canDoAnal($activeSlave)>> @@ -11532,13 +11534,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> today. <<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>> - $He's witty and holds up her end of the conversation without straying from her role as a slave. + $He's witty and holds up $his end of the conversation without straying from $his role as a slave. <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15)>> - $He has a few juicy items to share, and even gossiping, $he's mindful of her role as a slave. + $He has a few juicy items to share, and even gossiping, $he's mindful of $his role as a slave. <<else>> - $He may be an idiot, but her babble is amusing enough. + $He may be an idiot, but $his babble is amusing enough. <</if>> - Time flies, and when you finally stand up to continue with your evening, $he thanks you prettily for listening to $him <<if $activeSlave.belly >= 10000>>as you help her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body off the couch<</if>>. @@.hotpink;$His devotion to you has increased.@@ + Time flies, and when you finally stand up to continue with your evening, $he thanks you prettily for listening to $him <<if $activeSlave.belly >= 10000>>as you help $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body off the couch<</if>>. @@.hotpink;$His devotion to you has increased.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -11549,19 +11551,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Give $him $his thousandth fuck">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You decide that a slave's thousandth fuck ought to be representative of sexual slavery. So, you<<if $PC.dick == 0>> don a strap-on,<</if>> push her over + You decide that a slave's thousandth fuck ought to be representative of sexual slavery. So, you<<if $PC.dick == 0>> don a strap-on,<</if>> push $him over <<if $activeSlave.belly >= 300000>> _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> <<else>> - the arm of the couch next to your desk<<if $activeSlave.belly >= 5000>> so that her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> hangs off its edge<</if>> + the arm of the couch next to your desk<<if $activeSlave.belly >= 5000>> so that $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> hangs off its edge<</if>> <</if>> - and take her <<if $seeRace == 1>>$activeSlave.race <</if>> + and take $his <<if $seeRace == 1>>$activeSlave.race <</if>> <<if !canDoVaginal($activeSlave)>> ass <<else>> pussy <</if>> - hard and fast, doggy style. $He's clearly got a lot of experience, so $he takes the pounding well. Before long $he's happily moaning and begging, pushing $himself back into you<<if $PC.vagina == 1>> and using a hand thrust back between her own legs to stimulate your pussy<</if>>. You thrust deep inside $him. $He thanks you and wishes you a happy millenary. @@.mediumaquamarine;$He has become much more trusting@@ of her place with you. + hard and fast, doggy style. $He's clearly got a lot of experience, so $he takes the pounding well. Before long $he's happily moaning and begging, pushing $himself back into you<<if $PC.vagina == 1>> and using a hand thrust back between $his own legs to stimulate your pussy<</if>>. You thrust deep inside $him. $He thanks you and wishes you a happy millenary. @@.mediumaquamarine;$He has become much more trusting@@ of $his place with you. <<set $activeSlave.trust += 10>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -11575,15 +11577,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Include everyone in $his millenary">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You decide to celebrate this happy event with everyone. You beckon to the watching slaves<<if $PC.dick == 0>>, while you don a strap-on,<</if>> and they come eagerly or sullenly according to their natures. They troop in. After some thought, you position a slave on the couch next to your desk, $activeSlave.slaveName <<if $activeSlave.amp != 1>>on all fours<<else>>propped up<</if>> in front of her giving cunnilingus, a third slave<<if $activeSlave.belly >= 5000>>squeezed<</if>> under $activeSlave.slaveName to orally service her in turn, and yourself behind $activeSlave.slaveName to + You decide to celebrate this happy event with everyone. You beckon to the watching slaves<<if $PC.dick == 0>>, while you don a strap-on,<</if>> and they come eagerly or sullenly according to their natures. They troop in. After some thought, you position a slave on the couch next to your desk, $activeSlave.slaveName <<if $activeSlave.amp != 1>>on all fours<<else>>propped up<</if>> in front of $his giving cunnilingus, a third slave<<if $activeSlave.belly >= 5000>>squeezed<</if>> under $activeSlave.slaveName to orally service $him in turn, and yourself behind $activeSlave.slaveName to <<if canDoVaginal($activeSlave)>> - take her <<if $seeRace == 1>>$activeSlave.race <</if>>pussy. + take $his <<if $seeRace == 1>>$activeSlave.race <</if>>pussy. <<elseif canDoAnal($activeSlave)>> - take her <<if $seeRace == 1>>$activeSlave.race <</if>>ass. + take $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass. <<else>> - enjoy her <<if $seeRace == 1>>$activeSlave.race <</if>>asscheeks. + enjoy $his <<if $seeRace == 1>>$activeSlave.race <</if>>asscheeks. <</if>> - Each slave besides $activeSlave.slaveName gets a suck from $activeSlave.slaveName on the couch and then slides under $him to reciprocate. $He works her way through all your slaves one by one, with feminine lips and tongues delighting her + Each slave besides $activeSlave.slaveName gets a suck from $activeSlave.slaveName on the couch and then slides under $him to reciprocate. $He works $his way through all your slaves one by one, with feminine lips and tongues delighting $his <<if $activeSlave.dick != 0 && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> dickhead <<elseif !canDoVaginal($activeSlave)>> @@ -11591,7 +11593,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> clit <</if>> - and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> gently pumping $his butt the whole time. When $he's done, $he thanks you exhaustedly and begs you to do this for her next millenary. @@.hotpink;$His love for you has greatly increased.@@ + and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> gently pumping $his butt the whole time. When $he's done, $he thanks you exhaustedly and begs you to do this for $his next millenary. @@.hotpink;$His love for you has greatly increased.@@ <<set $activeSlave.devotion += 10, $activeSlave.oralCount += ($slaves.length*2), $oralTotal += ($slaves.length*2)>> <<set $slaves.forEach(function(s) { if (s.ID != $activeSlave.ID) { s.oralCount++; } })>> <<if canDoVaginal($activeSlave)>> @@ -11602,32 +11604,32 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if canDoAnal($activeSlave) && $activeSlave.analCount != 0>> -<br><<link "Drive up her anal count">> +<br><<link "Drive up $his anal count">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You make a ceremony of querying $assistantName, aloud for everyone to hear, into $activeSlave.slaveName's sexual history. $He soon realizes this is a sort of recitation of her service for the benefit of the other slaves, and $he stands a little straighter. $His <<if canSee($activeSlave)>>$activeSlave.eyeColor eyes glitter<<else>>face beams<</if>> with @@.mediumaquamarine;pride@@ as $assistantName finishes, "...and $his anus has been penetrated $activeSlave.analCount times." You announce that $activeSlave.analCount isn't nearly enough, detail a slave to fetch you a comfortable chair, seat yourself, and draw the compliant $activeSlave.slaveName's head down towards your <<if $PC.dick == 0>>pussy<<else>>cock<</if>>. $He gets eagerly to work, surrounded by a circle of slaves staring at the show. You select a favored girl and tell her to get to work driving that anal count up. $activeSlave.slaveName keeps <<if $PC.dick == 0>>eating you out<<else>>sucking your dick<</if>> as the chosen girl pulls $activeSlave.slaveName's hips up a little and + You make a ceremony of querying $assistantName, aloud for everyone to hear, into $activeSlave.slaveName's sexual history. $He soon realizes this is a sort of recitation of $his service for the benefit of the other slaves, and $he stands a little straighter. $His <<if canSee($activeSlave)>>$activeSlave.eyeColor eyes glitter<<else>>face beams<</if>> with @@.mediumaquamarine;pride@@ as $assistantName finishes, "...and $his anus has been penetrated $activeSlave.analCount times." You announce that $activeSlave.analCount isn't nearly enough, detail a slave to fetch you a comfortable chair, seat yourself, and draw the compliant $activeSlave.slaveName's head down towards your <<if $PC.dick == 0>>pussy<<else>>cock<</if>>. $He gets eagerly to work, surrounded by a circle of slaves staring at the show. You select a favored girl and tell $him to get to work driving that anal count up. $activeSlave.slaveName keeps <<if $PC.dick == 0>>eating you out<<else>>sucking your dick<</if>> as the chosen girl pulls $activeSlave.slaveName's hips up a little and <<if $activeSlave.butt > 18>> - struggles into her immense butt. + struggles into $his immense butt. <<elseif $activeSlave.butt > 10>> - pushes between her massive cheeks. + pushes between $his massive cheeks. <<elseif $activeSlave.butt > 5>> - spreads her big buttocks. + spreads $his big buttocks. <<elseif $activeSlave.weight > 95>> - spreads her fat rear. + spreads $his fat rear. <<elseif $activeSlave.muscles > 30>> - pushes between her muscular buttocks. + pushes between $his muscular buttocks. <<else>> massages $his butt a little. <</if>> $activeSlave.slaveName snakes a $activeSlave.skin hand down between $his legs to <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - tease her chastity bound dick + tease $his chastity bound dick <<elseif canAchieveErection($activeSlave)>> jack off <<else>> play with $himself as much as $he can manage <</if>> - as $his asshole takes its first fuck of the night. You let her change positions between each slave, and by the end $he's draped limply across the arm of your chair so $he can tiredly <<if $PC.vagina == 1>>nibble your pussylips<<else>>suck on your balls one at a time<</if>> as the last few slaves, taking advantage of her enormously gaped butt, slide lubricated hands in and out of $his rectum while giggling at the perversion and playing with each other. As the final slave withdraws their hand, $activeSlave.slaveName crawls into your lap and burrows her face + as $his asshole takes its first fuck of the night. You let $him change positions between each slave, and by the end $he's draped limply across the arm of your chair so $he can tiredly <<if $PC.vagina == 1>>nibble your pussylips<<else>>suck on your balls one at a time<</if>> as the last few slaves, taking advantage of $his enormously gaped butt, slide lubricated hands in and out of $his rectum while giggling at the perversion and playing with each other. As the final slave withdraws their hand, $activeSlave.slaveName crawls into your lap and burrows $his face <<if $PC.boobsBonus > 2>> between your enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts <<elseif $PC.boobsBonus == 2>> @@ -11648,14 +11650,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <</if>> <</if>> -<br><<link "Send her off">> +<br><<link "Send $him off">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He leaves sadly, and you can see a few of the other slaves comforting her as they prepare for bed. + $He leaves sadly, and you can see a few of the other slaves comforting $him as they prepare for bed. <<if canPenetrate($activeSlave)>> - To cheer her up, a couple of your slaves let her fuck them before bed. + To cheer $him up, a couple of your slaves let $him fuck them before bed. <<else>> - To cheer her up, a couple of your slaves get her off before bed. + To cheer $him up, a couple of your slaves get $him off before bed. <</if>> This disappointment @@.mediumorchid;reduces $his devotion.@@ <<set $activeSlave.devotion -= 5>> @@ -11672,7 +11674,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Bake $him a cake">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bake a simple cake while patiently explaining birthdays. $He slowly remembers, and <<if canSee($activeSlave)>>looks repeatedly at the date display<<else>>focuses intently on the date as $he repeats it to $himself<</if>> to ingrain her birthday back in her mind. When the cake is done, you quickly dust it with confectionary sugar, stand a hotwax candle in the middle of it, and invite $him to think of a wish and blow it out. $He sits on your lap and the two of you take turns feeding each other warm cake. When the cake is gone $he gets up to do the dishes and you turn to go. As you go, $he asks <<if ($activeSlave.lips > 70)>>through her massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>through her inconvenient oral piercings, <</if>>"<<Master>>, may I tell you what my wi<<sh>> wa<<s>>?" You nod, and $he kneels on the kitchen chair with $his eyes closed, + You bake a simple cake while patiently explaining birthdays. $He slowly remembers, and <<if canSee($activeSlave)>>looks repeatedly at the date display<<else>>focuses intently on the date as $he repeats it to $himself<</if>> to ingrain $his birthday back in $his mind. When the cake is done, you quickly dust it with confectionary sugar, stand a hotwax candle in the middle of it, and invite $him to think of a wish and blow it out. $He sits on your lap and the two of you take turns feeding each other warm cake. When the cake is gone $he gets up to do the dishes and you turn to go. As you go, $he asks <<if ($activeSlave.lips > 70)>>through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>through $his inconvenient oral piercings, <</if>>"<<Master>>, may I tell you what my wi<<sh>> wa<<s>>?" You nod, and $he kneels on the kitchen chair with $his eyes closed, <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> $his hands spreading $his buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>." <<= BothVCheck()>> @@ -11689,15 +11691,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t $He feels so much @@.hotpink;closer to you@@ than before. <<set $activeSlave.devotion += 4>> <</replace>> -<</link>><<if canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.vagina == 0 && $activeSlave.anus == 0)>> //This option will take virginities//<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina == 0>> //This option will take her virginity//<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take her anal virginity//<</if>> +<</link>><<if canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.vagina == 0 && $activeSlave.anus == 0)>> //This option will take virginities//<<elseif canDoVaginal($activeSlave) && $activeSlave.vagina == 0>> //This option will take $his virginity//<<elseif canDoAnal($activeSlave) && $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>> <br><<link "Teach $him a new meaning of birthdays">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You explain at length that $he will feel this way once a year, and that this day is special. On the day that makes $him feel this way, $he is to cover $his nipples with whipped cream, add a pattern with chocolate syrup, garnish each with a cherry, and present $himself to her <<= WrittenMaster()>>. $He nods in understanding and gets to work. When $he's done, you help her reach the confection on her left breast $himself while you eat the one on her right. When you're done, $he @@.hotpink;kisses you impulsively.@@ $He tastes like whipped cream and chocolate. + You explain at length that $he will feel this way once a year, and that this day is special. On the day that makes $him feel this way, $he is to cover $his nipples with whipped cream, add a pattern with chocolate syrup, garnish each with a cherry, and present $himself to $his <<= WrittenMaster()>>. $He nods in understanding and gets to work. When $he's done, you help $him reach the confection on $his left breast $himself while you eat the one on $his right. When you're done, $he @@.hotpink;kisses you impulsively.@@ $He tastes like whipped cream and chocolate. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> -<br><<link "Punish her for making a mess">> +<br><<link "Punish $him for making a mess">> <<EventNameDelink $activeSlave>> <<replace "#result">> $He begs your forgiveness and quickly cleans up the food and candles. $He can't seem to shake the feeling that @@.mediumorchid;something is wrong with this@@. @@ -11707,10 +11709,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "inconvenient labia">> -<<link "Let her have labiaplasty to resolve the issue">> +<<link "Let $him have labiaplasty to resolve the issue">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When you assent, $he cheers up immediately, looking remarkably happy for a $girl who's just learned $his vagina is about to have a surgical operation performed on it. Then again, having those huge pussylips constantly getting in her way when $he runs must be extremely uncomfortable, so it's not shocking $he would consider a radical solution to her problem. When $he exits the remote surgery, $he looks @@.red;sorer than ever,@@ of course, but $he @@.hotpink;smiles gratefully@@ at you the next time $he <<if canSee($activeSlave)>>sees<<else>>meets<</if>> you, and lets you know $he's really looking forward to recovering enough for $him to take her beloved <<= WrittenMaster()>> into her @@.orange;newly streamlined cunt.@@ + When you assent, $he cheers up immediately, looking remarkably happy for a $girl who's just learned $his vagina is about to have a surgical operation performed on it. Then again, having those huge pussylips constantly getting in $his way when $he runs must be extremely uncomfortable, so it's not shocking $he would consider a radical solution to $his problem. When $he exits the remote surgery, $he looks @@.red;sorer than ever,@@ of course, but $he @@.hotpink;smiles gratefully@@ at you the next time $he <<if canSee($activeSlave)>>sees<<else>>meets<</if>> you, and lets you know $he's really looking forward to recovering enough for $him to take $his beloved <<= WrittenMaster()>> into $his @@.orange;newly streamlined cunt.@@ <<set $activeSlave.devotion += 4, $activeSlave.health -= 10, $activeSlave.labia = 0>> <</replace>> <</link>> @@ -11718,7 +11720,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Let $him know $he's got a wonderful vagina">> <<EventNameDelink $activeSlave>> <<replace "#result">> - By way of an answer, you embrace $him and give $him a deep kiss on her + By way of an answer, you embrace $him and give $him a deep kiss on $his <<if $activeSlave.lips > 70>> enormous <<elseif $activeSlave.lips > 40>> @@ -11728,7 +11730,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pretty <</if>> - lips, spreading a blush across $his $activeSlave.skin cheeks. Your hands rove down her + lips, spreading a blush across $his $activeSlave.skin cheeks. Your hands rove down $his <<if $activeSlave.belly >= 1500>> <<if $activeSlave.bellyPreg >= 1500>> pregnant @@ -11750,7 +11752,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> nice <</if>> - body, coming to rest on her + body, coming to rest on $his <<if $activeSlave.butt > 15>> immeasurable <<elseif $activeSlave.butt > 10>> @@ -11764,7 +11766,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> tight <</if>> - butt. You hug her up and into you, crushing her <<if $activeSlave.boobs > 2000>>titanic<<elseif $activeSlave.boobs > 800>>big<<else>>small<</if>> breasts against + butt. You hug $him up and into you, crushing $his <<if $activeSlave.boobs > 2000>>titanic<<elseif $activeSlave.boobs > 800>>big<<else>>small<</if>> breasts against <<if $PC.boobsBonus > 2>> your enormous <<if $PC.boobsImplant == 1>>balloons<<else>>bust<</if>>. <<elseif $PC.boobsBonus == 2>> @@ -11778,13 +11780,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> your manly chest. <</if>> - Before long being kissed and held by her beloved <<= WrittenMaster()>> has her playing the slut in your arms, and $he backs against the wall before wrapping $his legs around your middle to bring $his pussy against your + Before long being kissed and held by $his beloved <<= WrittenMaster()>> has $him playing the slut in your arms, and $he backs against the wall before wrapping $his legs around your middle to bring $his pussy against your <<if $PC.dick == 0>> - own.<<if $activeSlave.belly >= 5000>> You move your hands under $him to better support her <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He moans in pain as you scissor against her sore pussy, + own.<<if $activeSlave.belly >= 5000>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He moans in pain as you scissor against $his sore pussy, <<else>> - stiff prick.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You move your hands under $him to better support her <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He gasps in pain as you press past her sore pussylips, + stiff prick.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You move your hands under $him to better support $his <<if $activeSlave.bellyPreg >= 3000>>gravid bulk<<else>>distended body<</if>>.<</if>> $He gasps in pain as you press past $his sore pussylips, <</if>> - but before long $he's grinding against you with her back propped against the wall, using the embrace of her strong legs to provide the power for a vigorous fuck. When $he finally slides down the wall to stand again, a look of @@.hotpink;profound pleasure@@ on her face, $he lets you know that $he understands your meaning and that $he'll put up with sore petals, since her <<= WrittenMaster()>> prefers $him that way. + but before long $he's grinding against you with $his back propped against the wall, using the embrace of $his strong legs to provide the power for a vigorous fuck. When $he finally slides down the wall to stand again, a look of @@.hotpink;profound pleasure@@ on $his face, $he lets you know that $he understands your meaning and that $he'll put up with sore petals, since $his <<= WrittenMaster()>> prefers $him that way. <<= VaginalVCheck()>> <<set $activeSlave.devotion += 4>> <</replace>> @@ -11793,38 +11795,38 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "restricted smart">> -<<link "Discuss her future with $him">> +<<link "Discuss $his future with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You announce matter-of-factly that $he's allowed to speak temporarily, and that you'll be discussing where $he is and where $he sees $himself in the near future. $He's disconcerted by the subject but so desperate for conversation that $he's overjoyed anyway. "I under<<s>>tand what you're doing, <<Master>>," $he <<say>>s forthrightly. "I'm to be broken down into a devoted <<s>>lave." $He looks thoughtful. "I'll help you with that. It'll be ea<<s>>ier if I do, won't it?" $He looks up, and you <<if canSee($activeSlave)>>nod<<else>>acknowledge<</if>>; $he gives you a rueful smile. "A good <<s>>lut would offer to <<if $PC.dick == 0>>give you oral now, I think. <<S>>o, <<Master>>, may I plea<<s>>e be allowed to lick your pu<<ss>>y?"<<else>><<s>>uck your cock now, I think. <<S>>o, <<Master>>, may I plea<<s>>e be allowed to <<s>>uck your cock?"<</if>> You <<if canSee($activeSlave)>>nod<<else>>acknowledge<</if>>, and tell $him that the rules are back in effect. As <<if $activeSlave.amp == 1>> - you get her helpless form into position, + you get $his helpless form into position, <<elseif $activeSlave.belly >= 300000>> $he struggles to get into position with $his _belly stomach in the way, <<elseif $activeSlave.belly >= 10000>> - $he gently lowers her <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form to its knees, + $he gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form to its knees, <<else>> $he gets down on $his knees, <</if>> - $he @@.hotpink;focuses on the task@@ in front of her with all her considerable intelligence, clearly having decided to make things easier on $himself by conforming to her new life. + $he @@.hotpink;focuses on the task@@ in front of $him with all $his considerable intelligence, clearly having decided to make things easier on $himself by conforming to $his new life. <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <<if canDoAnal($activeSlave)>> -<br><<link "Let her talk during a rough buttfuck">> +<br><<link "Let $him talk during a rough buttfuck">> <<EventNameDelink $activeSlave>> <<replace "#result">> You <<if $activeSlave.amp == 1>> - lay her fuckpuppet torso across + lay $his fuckpuppet torso across <<elseif $activeSlave.belly >= 5000>> - tip her <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto + tip $him <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto <<else>> - push her backwards onto + push $him backwards onto <</if>> - your desk, groping her + your desk, groping $his <<if $activeSlave.butt > 15>> absurd <<elseif $activeSlave.butt > 10>> @@ -11838,7 +11840,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> meager <</if>> - butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a couple of fingers up<<else>>line your cock up with<</if>> her + butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a couple of fingers up<<else>>line your cock up with<</if>> $his <<if $activeSlave.anus > 2>> gaping <<elseif $activeSlave.anus > 1>> @@ -11848,31 +11850,31 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> asshole. As you penetrate $him, you tell $him that the time to talk is now. <<if $activeSlave.anus > 2>> - To make the sex sufficiently uncomfortable, you <<if $PC.dick == 0>>finger fuck<<else>>dick<</if>> her without mercy. + To make the sex sufficiently uncomfortable, you <<if $PC.dick == 0>>finger fuck<<else>>dick<</if>> $him without mercy. <<elseif $activeSlave.anus > 1>> - To make the sex sufficiently uncomfortable, you pull yourself out with every stroke, putting her through initial anal penetration over and over. + To make the sex sufficiently uncomfortable, you pull yourself out with every stroke, putting $him through initial anal penetration over and over. <<else>> - $His butt is so tight that just a simple assfuck makes her uncomfortable enough. + $His butt is so tight that just a simple assfuck makes $him uncomfortable enough. <</if>> - $He opens $his mouth, closes it again, grunts at the burning sensation of your rough use of her poor ass, and then shuts up. You ask her if $he's sure $he doesn't have anything to say, and $he makes her one verbal comment of the day: "No, <<Master>>." $He understands the lesson here: fail to @@.hotpink;conform,@@ @@.gold;get assraped.@@ It's as simple as that. + $He opens $his mouth, closes it again, grunts at the burning sensation of your rough use of $his poor ass, and then shuts up. You ask $him if $he's sure $he doesn't have anything to say, and $he makes $his one verbal comment of the day: "No, <<Master>>." $He understands the lesson here: fail to @@.hotpink;conform,@@ @@.gold;get assraped.@@ It's as simple as that. <<set $activeSlave.devotion += 3, $activeSlave.trust -= 3>> <<= AnalVCheck()>> <</replace>> <</link>><<if ($activeSlave.anus == 0)>> //This option will take virginity//<</if>> <</if>> <<if canDoVaginal($activeSlave)>> -<br><<link "Let her try to talk during a vigorous fucking">> +<br><<link "Let $him try to talk during a vigorous fucking">> <<EventNameDelink $activeSlave>> <<replace "#result">> You <<if $activeSlave.amp == 1>> - lay her fuckpuppet torso across + lay $his fuckpuppet torso across <<elseif $activeSlave.belly >= 5000>> - tip her <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto + tip $him <<if $activeSlave.bellyPreg >= 3000>>motherly<<else>>swollen<</if>> body backwards onto <<else>> - push her backwards onto + push $him backwards onto <</if>> - your desk, groping her + your desk, groping $his <<if $activeSlave.butt > 15>> absurd <<elseif $activeSlave.butt > 10>> @@ -11886,7 +11888,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> meager <</if>> - butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a dildo into<<else>>line your cock up with<</if>> her + butt. You instruct $him that $he'll be allowed to talk if $he wants, but not yet, as you <<if $PC.dick == 0>>push a dildo into<<else>>line your cock up with<</if>> $his <<if $activeSlave.anus > 2>> gaping <<elseif $activeSlave.anus > 1>> @@ -11896,13 +11898,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> pussy. As you penetrate $him, you tell $him that the time to talk is now. <<if $activeSlave.vagina > 2>> - To make the sex sufficiently overwhelming, you <<if $PC.dick == 0>>ram<<else>>dick<</if>> her without mercy. + To make the sex sufficiently overwhelming, you <<if $PC.dick == 0>>ram<<else>>dick<</if>> $him without mercy. <<elseif $activeSlave.vagina > 1>> - To make the sex sufficiently overwhelming, you pull yourself out with every stroke, putting her through initial penetration over and over. + To make the sex sufficiently overwhelming, you pull yourself out with every stroke, putting $him through initial penetration over and over. <<else>> - $His cunt is so tight that just a simple fucking overwhelms her with pleasure. + $His cunt is so tight that just a simple fucking overwhelms $him with pleasure. <</if>> - $He opens $his mouth, closes it again, groaning at the sensation of your rough use of $his body, and then stops trying. You ask her if $he's sure $he doesn't have anything to say, and $he lets off an orgasmic moan. There's @@.hotpink;no need to talk@@ when your owner is @@.mediumaquamarine;fucking your brains out.@@ + $He opens $his mouth, closes it again, groaning at the sensation of your rough use of $his body, and then stops trying. You ask $him if $he's sure $he doesn't have anything to say, and $he lets off an orgasmic moan. There's @@.hotpink;no need to talk@@ when your owner is @@.mediumaquamarine;fucking your brains out.@@ <<set $activeSlave.devotion += 3, $activeSlave.trust += 3>> <<= VaginalVCheck()>> <</replace>> @@ -11911,10 +11913,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "restricted profession">> -<<link "Let her speak briefly if $he's very quiet">> +<<link "Let $him speak briefly if $he's very quiet">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand up from your desk and approach her very closely without touching $him. Looking straight into $his eyes, which are <<if canSee($activeSlave)>>fixed helplessly on you<<else>>gazing in your general direction<</if>>, you tell $him that you'll let her say whatever it is $he needs to say to you, but only if $he's very quiet. $He <<if canSee($activeSlave)>>looks at you with huge eyes but<</if>> nods vigorously. $He waits until you lean into $him, making her shiver at your proximity, before putting her + You stand up from your desk and approach $him very closely without touching $him. Looking straight into $his eyes, which are <<if canSee($activeSlave)>>fixed helplessly on you<<else>>gazing in your general direction<</if>>, you tell $him that you'll let $him say whatever it is $he needs to say to you, but only if $he's very quiet. $He <<if canSee($activeSlave)>>looks at you with huge eyes but<</if>> nods vigorously. $He waits until you lean into $him, making $him shiver at your proximity, before putting $his <<if $activeSlave.lips > 70>> ridiculous <<elseif $activeSlave.lips > 40>> @@ -11924,7 +11926,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> girlish <</if>> - lips next to your ear and whispering nervously, "I love you, <<Master>>." $He recoils a little as if burned by the audacity of her words, but only manages to back off a little before you gather her + lips next to your ear and whispering nervously, "I love you, <<Master>>." $He recoils a little as if burned by the audacity of $his words, but only manages to back off a little before you gather $his <<if $activeSlave.amp == 1>> limbless <<elseif $activeSlave.bellyPreg >= 1500>> @@ -11934,7 +11936,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> rocking <</if>> - torso into your arms, holding the back of her head with one hand and rubbing her quivering back with the other. Eventually, $he relaxes into + torso into your arms, holding the back of $his head with one hand and rubbing $his quivering back with the other. Eventually, $he relaxes into <<if ($PC.boobs > 0)>> <<if $PC.boobsImplant == 1>> your fake breasts, @@ -11944,31 +11946,31 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> you, <</if>> - knowing that her <<= WrittenMaster()>> can never and will never reciprocate, but @@.hotpink;accepting@@ that the loving physical contact is a tremendously kind gesture for a master to make. + knowing that $his <<= WrittenMaster($activeSlave)>> can never and will never reciprocate, but @@.hotpink;accepting@@ that the loving physical contact is a tremendously kind gesture for a master to make. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> -<br><<link "Make her say it in public">> +<br><<link "Make $him say it in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Since you suspect you know what it is $he wants to say, you <<if $activeSlave.amp == 1>>carry her out<<else>>lead $him by the hand<</if>> onto the club, busy with citizens. You tell her quietly that $he's to shout whatever it is $he wanted to say, if it's something everyone should hear; otherwise $he's to keep it to $himself. $He <<if canSee($activeSlave)>>looks around<<else>>listens<</if>> nervously, $his $activeSlave.skin skin betraying a growing blush, before clearing her throat twice, licking $his lips, and howling "I LOVE MY _shoutitoutloud" at the tops of her lungs. When this is out of her $he collapses a little, as though the pressure of holding it inside were propping her up. This attracted a considerable amount of attention, almost all of it @@.green;positive,@@ with many passersby laughing at the fun, and your fellow slaveowners giving you discreet winks and quiet congratulations. + Since you suspect you know what it is $he wants to say, you <<if $activeSlave.amp == 1>>carry $him out<<else>>lead $him by the hand<</if>> onto the club, busy with citizens. You tell $him quietly that $he's to shout whatever it is $he wanted to say, if it's something everyone should hear; otherwise $he's to keep it to $himself. $He <<if canSee($activeSlave)>>looks around<<else>>listens<</if>> nervously, $his $activeSlave.skin skin betraying a growing blush, before clearing $his throat twice, licking $his lips, and howling "I LOVE MY _shoutitoutloud" at the tops of $his lungs. When this is out of $him $he collapses a little, as though the pressure of holding it inside were propping $him up. This attracted a considerable amount of attention, almost all of it @@.green;positive,@@ with many passersby laughing at the fun, and your fellow slaveowners giving you discreet winks and quiet congratulations. <<set $rep += 150>> <</replace>> <</link>> -<br><<link "Keep her quiet but spend some time with $him">> +<br><<link "Keep $him quiet but spend some time with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that you're finished with business for the day, and feel like some quiet time. $He cannot keep <<if canSee($activeSlave)>>a gleam of humor out of her eye<<else>>the corners of $his lips from rising slightly<</if>> at hearing 'quiet time,' and $he <<if $activeSlave.amp == 1>>presents $himself to be carried<<else>>follows you<</if>> happily enough. When $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> you're headed to your bedroom $he begins to anticipate her <<= WrittenMaster()>>'s <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, but is surprised to find that instead of using her you simply + You announce that you're finished with business for the day, and feel like some quiet time. $He cannot keep <<if canSee($activeSlave)>>a gleam of humor out of $his eye<<else>>the corners of $his lips from rising slightly<</if>> at hearing 'quiet time,' and $he <<if $activeSlave.amp == 1>>presents $himself to be carried<<else>>follows you<</if>> happily enough. When $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> you're headed to your bedroom $he begins to anticipate $his <<= WrittenMaster($activeSlave)>>'s <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, but is surprised to find that instead of using $him you simply <<if $activeSlave.amp == 1>> - place $him in bed and curl up around her limbless torso. + place $him in bed and curl up around $his limbless torso. <<elseif $activeSlave.bellyPreg >= 5000>> - help her into bed and curl up with $him, your arms encircling her prominent baby bump. + help $him into bed and curl up with $him, your arms encircling $his prominent baby bump. <<elseif $activeSlave.belly >= 5000>> - help her into bed and curl up with $him, your arms encircling $his _belly dome of a middle. + help $him into bed and curl up with $him, your arms encircling $his _belly dome of a middle. <<else>> - climb into bed and pull her under the sheets with you. + climb into bed and pull $him under the sheets with you. <</if>> - $He's almost disappointed, but after looking into your resting face for a while, nestles her head onto your broad chest and goes to sleep with a @@.hotpink;look of contentment@@ on her face. When the two of you wake from your brief nap, you ask her if $he has anything else to communicate to you. $He smiles sleepily and shakes her head no. + $He's almost disappointed, but after looking into your resting face for a while, nestles $his head onto your broad chest and goes to sleep with a @@.hotpink;look of contentment@@ on $his face. When the two of you wake from your brief nap, you ask $him if $he has anything else to communicate to you. $He smiles sleepily and shakes $his head no. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -11978,21 +11980,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "That's nice">> <<EventNameDelink $activeSlave>> <<replace "#result">> - It's not just a feeling. However, slapping slaves for idiotic devotion isn't wise, since the idiotic part of idiotic devotion is less important than the devotion part. You thank her kindly, tell $him to put her offering on your desk, and go back to your work. $He flees, feeling relieved but foolish. When $he's gone, you direct another slave to return the napkin to its proper place. + It's not just a feeling. However, slapping slaves for idiotic devotion isn't wise, since the idiotic part of idiotic devotion is less important than the devotion part. You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, feeling relieved but foolish. When $he's gone, you direct another slave to return the napkin to its proper place. <</replace>> <</link>> <br><<link "These slaves clearly have too much time on their hands">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, and once $he's gone, you <<if $HeadGirl != 0>>have $assistantName pass a note to your Head Girl instructing her<<else>>instruct $assistantName<</if>> to tighten up your slaves' schedules, since you feel that they have too much time on their hands. Then you direct another slave to return the napkin to its proper place. Your slaves find their spare moments occupied by household minutiae during the coming week, @@.yellowgreen;saving you some money@@ on penthouse and slave upkeep. + You thank $him kindly, tell $him to put $his offering on your desk, and go back to your work. $He flees, and once $he's gone, you <<if $HeadGirl != 0>>have $assistantName pass a note to your Head Girl instructing $him<<else>>instruct $assistantName<</if>> to tighten up your slaves' schedules, since you feel that they have too much time on their hands. Then you direct another slave to return the napkin to its proper place. Your slaves find their spare moments occupied by household minutiae during the coming week, @@.yellowgreen;saving you some money@@ on penthouse and slave upkeep. <<set $cash += 2000>> <</replace>> <</link>> <<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">> -<br><<link "Give her something in return">> +<br><<link "Give $him something in return">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You thank $him, and tell her you're considering what to give $him in return. $He looks flirty, and says, + You thank $him, and tell $him you're considering what to give $him in return. $He looks flirty, and says, <<switch $activeSlave.fetish>> <<case "submissive">> <<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>> @@ -12002,7 +12004,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> over the couch, <</if>> - lest you misunderstand. You could hold her down and fuck $him, and you do. + lest you misunderstand. You could hold $him down and fuck $him, and you do. <<if canDoAnal($activeSlave)>> <<= AnalVCheck()>> <<else>> @@ -12015,7 +12017,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> over the couch <</if>> - and opens wide, lest you misunderstand. You could hold her down and <<if $PC.dick == 1>>face-fuck her<<else>>make her eat you out<</if>>, and you do. + and opens wide, lest you misunderstand. You could hold $him down and <<if $PC.dick == 1>>face-fuck $him<<else>>make $him eat you out<</if>>, and you do. <<set $activeSlave.oralCount++, $oralTotal++>> <</if>> <<case "cumslut">> @@ -12023,11 +12025,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.belly >= 300000>> leans onto $his _belly middle <<elseif $activeSlave.belly >= 10000>> - gently lowers her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body to its knees + gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body to its knees <<else>> gets down on $his knees <</if>> - and licks $his lips, lest you misunderstand. You could let her <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>, and you do. + and licks $his lips, lest you misunderstand. You could let $him <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>, and you do. <<set $activeSlave.oralCount++, $oralTotal++>> <<case "humiliation">> <<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>> @@ -12049,17 +12051,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t "Plea<<s>>e, would you play with my butt, <<Master>>?" $He turns halfway and shakes $his rear enticingly, lest you misunderstand. You could play with $his butt, and you do, managing intercourse several ways without penetrating $him. <</if>> <<case "boobs">> - "Plea<<s>>e, would you play with my boob<<s>>, <<Master>>?" $He sticks out $his chest and bounces $his breasts for you, lest you misunderstand. You could play with her boobs, and you do, managing mammary intercourse several ways. + "Plea<<s>>e, would you play with my boob<<s>>, <<Master>>?" $He sticks out $his chest and bounces $his breasts for you, lest you misunderstand. You could play with $his boobs, and you do, managing mammary intercourse several ways. <<set $activeSlave.mammaryCount += 3, $mammaryTotal += 3>> <<case "pregnancy">> <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave) && $PC.vagina == 1>> <<if isPlayerFertile($PC)>> - "Plea<<s>>e, can I try to get you pregnant, <<Master>>?" $His eyes are glued to your middle. You could let her seed you, and you do, enjoying the feeling of her hot cum jetting into your fertile pussy. + "Plea<<s>>e, can I try to get you pregnant, <<Master>>?" $His eyes are glued to your middle. You could let $him seed you, and you do, enjoying the feeling of $his hot cum jetting into your fertile pussy. <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 20, 0, $activeSlave.ID)>> <</if>> <<elseif $PC.belly >= 1500>> - "Plea<<s>>e, could I play with your pregnan<<c>>y while I fuck you, <<Master>>?" $His eyes are glued to your gravid middle. You could let $him play with your pregnancy, and you do, enjoying her fondling as $he fucks your pussy. + "Plea<<s>>e, could I play with your pregnan<<c>>y while I fuck you, <<Master>>?" $His eyes are glued to your gravid middle. You could let $him play with your pregnancy, and you do, enjoying $his fondling as $he fucks your pussy. <<else>> "Plea<<s>>e, would you pretend to be pregnant with my baby, <<Master>>?" $His eyes are glued to your middle. You could play pretend with $him, and you do, <<if isItemAccessible("a small empathy belly")>> @@ -12071,7 +12073,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<else>> <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> - "Plea<<s>>e, would you <<if $PC.dick == 1>>fill me with your <<s>>eed<<else>>fuck me<</if>>, <<Master>>?" $He reclines on the couch and offers $himself to you, lest you misunderstand. You could <<if $PC.dick == 1>>fill her with your seed<<else>>fuck her<</if>>, and you do. + "Plea<<s>>e, would you <<if $PC.dick == 1>>fill me with your <<s>>eed<<else>>fuck me<</if>>, <<Master>>?" $He reclines on the couch and offers $himself to you, lest you misunderstand. You could <<if $PC.dick == 1>>fill $him with your seed<<else>>fuck $him<</if>>, and you do. <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> <<else>> @@ -12082,21 +12084,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> "Plea<<s>>e, would you pretend that I'm pregnant with your baby, <<Master>>?" $He pokes out $his belly and sways it enticingly, lest you misunderstand. You could play pretend with $him, and you do, <<if isItemAccessible("a small empathy belly")>> - strapping an empathy belly on her before feeling her up. + strapping an empathy belly on $him before feeling $him up. <<else>> - tossing $him a camisole and a pillow before feeling her up. + tossing $him a camisole and a pillow before feeling $him up. <</if>> <</if>> <</if>> <<case "dom">> <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>> - "Plea<<s>>e, could I bang you, <<Master>>?" $He bounces on her heels, rock-hard and biting her lip with anticipation. You could let her fuck your brains out, and you do, enjoying playing the sub for once. + "Plea<<s>>e, could I bang you, <<Master>>?" $He bounces on $his heels, rock-hard and biting $his lip with anticipation. You could let $him fuck your brains out, and you do, enjoying playing the sub for once. <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 20, 0, $activeSlave.ID)>> <</if>> <<else>> - "Plea<<s>>e, would you fuck my brain<<s>> out, <<Master>>?" $He bounces on her heels, biting her lip with anticipation. You could fuck her brains out, and you do, enjoying the dominant slave's constant sexual oneupmanship. + "Plea<<s>>e, would you fuck my brain<<s>> out, <<Master>>?" $He bounces on $his heels, biting $his lip with anticipation. You could fuck $his brains out, and you do, enjoying the dominant slave's constant sexual one-upmanship. <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave)>> @@ -12107,7 +12109,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<case "sadist">> <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>> - "Plea<<s>>e, can I pretend to rape you, <<Master>>?" $His eyes are wild. You could let her rape you, and you do, pretending to go about your day until $he shoves you onto the couch and roughly fucks your + "Plea<<s>>e, can I pretend to rape you, <<Master>>?" $His eyes are wild. You could let $him rape you, and you do, pretending to go about your day until $he shoves you onto the couch and roughly fucks your <<if $PC.vagina == 1>> pussy. <<if canImpreg($PC, $activeSlave)>> @@ -12117,18 +12119,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t ass. <</if>> <<else>> - "Plea<<s>>e, would you let me rape <<s>>omeone, <<Master>>?" $His eyes are wild. You could let her rape someone, and you do, bringing in an appropriate slave and letting her have her way with the poor girl. + "Plea<<s>>e, would you let me rape <<s>>omeone, <<Master>>?" $His eyes are wild. You could let $him rape someone, and you do, bringing in an appropriate slave and letting $him have $his way with the poor girl. <</if>> <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<case "masochist">> <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>> - "Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing her across the couch and riding her through so many orgasms that $he begs for mercy. + "Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and riding $him through so many orgasms that $he begs for mercy. <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 20, 0, $activeSlave.ID)>> <</if>> <<else>> - "Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing her across the couch and fucking her so hard $he begs for mercy as $he orgasms. + "Plea<<s>>e, would you rape me, <<Master>>?" $His eyes are hungry. You could rape $him, and you do, throwing $him across the couch and fucking $him so hard $he begs for mercy as $he orgasms. <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave)>> @@ -12141,7 +12143,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t "I forgot what my feti<<sh>> i<<s>>, but I think it i<<s>> //<<print $activeSlave.fetish>>//; plea<<s>>e report thi<<s>> after you u<<s>>e me." <</switch>> <<if ($activeSlave.fetishStrength > 95)>> - This is very close to her dream of the ideal sexual encounter, and getting rewarded for such devoted behavior with pleasure on such a level encourages $him to @@.mediumaquamarine;trust you.@@ + This is very close to $his dream of the ideal sexual encounter, and getting rewarded for such devoted behavior with pleasure on such a level encourages $him to @@.mediumaquamarine;trust you.@@ <<set $activeSlave.trust += 5>> <<else>> It isn't exactly an old world romance, but sharing this with you @@.lightcoral;advances $his fetish.@@ In the Free Cities, it will do for romance. @@ -12154,7 +12156,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "$He's already gift enough">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You smile gently at $him and tell $him to put her gift down on your desk. $He does, looking doubtful, but then you thank $him, going on to say that it was very nice of $him to have the thought, but $he's already gift enough. $He looks momentarily confused, but you continue, describing $his body in rhapsodic terms, lingering on her + You smile gently at $him and tell $him to put $his gift down on your desk. $He does, looking doubtful, but then you thank $him, going on to say that it was very nice of $him to have the thought, but $he's already gift enough. $He looks momentarily confused, but you continue, describing $his body in rhapsodic terms, lingering on $his <<if ($activeSlave.boobs > 5000)>> gargantuan tits <<elseif ($activeSlave.butt > 5)>> @@ -12188,7 +12190,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> nice nipples. <</if>> - $He blushes more and more furiously as you continue, alternately <<if canSee($activeSlave)>>glancing back down at her feet and stealing looks at you, @@.hotpink;adoration@@ in $his eyes<<else>>facing her feet and facing you, @@.hotpink;adoration@@ on her face<</if>>. When $he's gone, you direct another slave to return the napkin to its proper place. + $He blushes more and more furiously as you continue, alternately <<if canSee($activeSlave)>>glancing back down at $his feet and stealing looks at you, @@.hotpink;adoration@@ in $his eyes<<else>>facing $his feet and facing you, @@.hotpink;adoration@@ on $his face<</if>>. When $he's gone, you direct another slave to return the napkin to its proper place. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -12196,7 +12198,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Place it in your display case">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You thank her kindly, and hold out your hand. $He places her creation in your hands with something like reverence. You enter a secure command on your desk, and the display case behind you slides open. You place the folded napkin in its own little place within. $activeSlave.slaveName watches incredulously, unable to believe what you're doing. When $he finally processes it, $he bursts into inelegant tears. Cuffing them away from $his eyes and sniffling, $he tells you @@.hotpink;$he loves you.@@ + You thank $him kindly, and hold out your hand. $He places $his creation in your hands with something like reverence. You enter a secure command on your desk, and the display case behind you slides open. You place the folded napkin in its own little place within. $activeSlave.slaveName watches incredulously, unable to believe what you're doing. When $he finally processes it, $he bursts into inelegant tears. Cuffing them away from $his eyes and sniffling, $he tells you @@.hotpink;$he loves you.@@ <<set $activeSlave.devotion += 4, $activeSlave.napkin = 1>> <<set _napkin = "a cloth napkin skillfully folded into the shape of " + _napkin + " given to you by " + $activeSlave.slaveName>> <<set $trinkets.push(_napkin)>> @@ -12209,20 +12211,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Perform it yourself">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand up from behind your desk and head towards the body modification studio, <<if canSee($activeSlave)>>crooking a finger at<<else>>calling<</if>> her as you as you go. $He follows bouncily, thanking you profusely, and then thanking you again when it becomes apparent to $him that you intend to do the body art yourself. $He snuggles into the chair, relaxing as the restraints bind her in. They're not really necessary to modify a willing $girl, never mind one this enthusiastic, but they could possibly prevent her from flinching, and it's not like $he resents being bound at this point. + You stand up from behind your desk and head towards the body modification studio, <<if canSee($activeSlave)>>crooking a finger at<<else>>calling<</if>> $him as you as you go. $He follows bouncily, thanking you profusely, and then thanking you again when it becomes apparent to $him that you intend to do the body art yourself. $He snuggles into the chair, relaxing as the restraints bind $him in. They're not really necessary to modify a willing $girl, never mind one this enthusiastic, but they could possibly prevent $him from flinching, and it's not like $he resents being bound at this point. <br><br> Manipulating the machine, you <<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>> - place the first piercing, eliciting a hum of mild pain and abject submission from $activeSlave.slaveName. The piercing session goes on and on, with the slave sinking into a boneless, mindless state in which her being is completely in your hands. $He's almost sleepy when you finally release $him, but $he rises and <<if canSee($activeSlave)>>turns, craning around to see in the mirror<<else>>gingerly feeling around her new piercings<</if>>. $He @@.hotpink;smiles devotedly,@@ and asks you when $he'll be healed enough that $he can be laced up. + place the first piercing, eliciting a hum of mild pain and abject submission from $activeSlave.slaveName. The piercing session goes on and on, with the slave sinking into a boneless, mindless state in which $his being is completely in your hands. $He's almost sleepy when you finally release $him, but $he rises and <<if canSee($activeSlave)>>turns, craning around to see in the mirror<<else>>gingerly feeling around $his new piercings<</if>>. $He @@.hotpink;smiles devotedly,@@ and asks you when $he'll be healed enough that $he can be laced up. <<set $activeSlave.corsetPiercing = 1>> <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>> - hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in her eye<<else>>look on her face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures her thanks, @@.hotpink;smiling devotedly,@@ and begs you to try her out when $he's healed up. + hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly,@@ and begs you to try $him out when $he's healed up. <<set $activeSlave.tonguePiercing = 2>> <<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>> - activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, inscribing the slave's status as a sex object on her forehead. The pain is intense, but $he tolerates it, the tears running fast out of the corners of $his eyes and low groans rising out of her throat. When $he's finally allowed to rise<<if canSee($activeSlave)>> and sees $himself in a mirror<<else>>and listens intently on your descriptions of her new face<</if>>, $he blushes furiously and cries harder, knowing that her status as a humiliation slut is now permanent. This culmination of her deeply perverse sense of self @@.hotpink;draws her closer to you.@@ + activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, inscribing the slave's status as a sex object on $his forehead. The pain is intense, but $he tolerates it, the tears running fast out of the corners of $his eyes and low groans rising out of $his throat. When $he's finally allowed to rise<<if canSee($activeSlave)>> and sees $himself in a mirror<<else>>and listens intently on your descriptions of $his new face<</if>>, $he blushes furiously and cries harder, knowing that $his status as a humiliation slut is now permanent. This culmination of $his deeply perverse sense of self @@.hotpink;draws $him closer to you.@@ <<set $activeSlave.lipsTat = "degradation">> <<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> - place a spreader to keep $his legs and cheeks apart and start piercing. $He whines with the pain, and then gasps when $he realizes that the piercing is going on much longer than $he expected. You give $him a couple of huge piercings below $his anus, big enough that $he'll never be free of them rubbing against her slutty butthole. Not done yet, you put some small, smooth studs around it, just to make sure nobody can possibly misunderstand where to fuck this bitch. $He gets up gingerly, but @@.hotpink;smiling sluttily.@@ + place a spreader to keep $his legs and cheeks apart and start piercing. $He whines with the pain, and then gasps when $he realizes that the piercing is going on much longer than $he expected. You give $him a couple of huge piercings below $his anus, big enough that $he'll never be free of them rubbing against $his slutty butthole. Not done yet, you put some small, smooth studs around it, just to make sure nobody can possibly misunderstand where to fuck this bitch. $He gets up gingerly, but @@.hotpink;smiling sluttily.@@ <<set $activeSlave.anusPiercing = 2>> <<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>> <<if ($activeSlave.nipples.includes("inverted"))>> @@ -12252,21 +12254,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.vaginaTat = "degradation">> <</if>> <<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>> - activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, making the side of her face fierce with tribal patterns. Tattooing over such thin and sensitive skin is intensely painful, but $he tolerates it, permitting nothing but a low and continuing growl to escape. $He's obviously tired out by the pain when $he's finally allowed to rise, but $he <<if canSee($activeSlave)>>looks at $himself in the mirror<<elseif canHear($activeSlave)>>listens to your description<<else>>traces the design with $his fingertips<</if>> with @@.hotpink;obvious approval.@@ + activate the ink gun, its low buzzing drawing a moan of anticipation out of $activeSlave.slaveName. Working at a touchscreen, you exercise your artistic talents, making the side of $his face fierce with tribal patterns. Tattooing over such thin and sensitive skin is intensely painful, but $he tolerates it, permitting nothing but a low and continuing growl to escape. $He's obviously tired out by the pain when $he's finally allowed to rise, but $he <<if canSee($activeSlave)>>looks at $himself in the mirror<<elseif canHear($activeSlave)>>listens to your description<<else>>traces the design with $his fingertips<</if>> with @@.hotpink;obvious approval.@@ <<set $activeSlave.lipsTat = "tribal patterns">> <<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishKnown == 1)>> <<if canAchieveErection($activeSlave)>> - take hold of her most intimate parts and put a set of massive piercings straight through her shaft. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to stick $his cock in anything, but $he's @@.hotpink;thankful enough.@@ + take hold of $his most intimate parts and put a set of massive piercings straight through $his shaft. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to stick $his cock in anything, but $he's @@.hotpink;thankful enough.@@ <<set $activeSlave.dickPiercing = 2>> <<elseif $activeSlave.dick > 0>> - hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in her eye<<else>>look on her face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures her thanks, @@.hotpink;smiling devotedly;@@ $he looks eager to try out her new piercing on a fresh pussy. + hold $his mouth agape and place the first piercing. $He can't make much of a facial expression with $his mouth that wide, but there is a lewd <<if canSee($activeSlave)>>glint in $his eye<<else>>look on $his face<</if>> when $he realizes $he's getting more than one. When you're done, $he's sore enough that $he gestures $his thanks, @@.hotpink;smiling devotedly;@@ $he looks eager to try out $his new piercing on a fresh pussy. <<set $activeSlave.tonguePiercing = 2>> <<else>> - take hold of her most intimate parts and put a set of massive piercings straight through her pussylips. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to trib anything, but $he's @@.hotpink;thankful enough.@@ + take hold of $his most intimate parts and put a set of massive piercings straight through $his pussylips. $He shrieks with agony, the noise going on and on before diminishing into breathless sobbing. Much later, when $he gets gingerly up from the chair, $he doesn't look eager to trib anything, but $he's @@.hotpink;thankful enough.@@ <<set $activeSlave.vaginaPiercing = 2>> <</if>> <<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1)>> - take hold of her most intimate parts and put a series of massive piercing straight through her + take hold of $his most intimate parts and put a series of massive piercing straight through $his <<if $activeSlave.dick > 0>> shaft. <<set $activeSlave.dickPiercing = 2>> @@ -12274,14 +12276,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t pussylips. <<set $activeSlave.vaginaPiercing = 2>> <</if>> - $He shrieks with agony and then orgasms as strongly as you've ever seen a slave climax, her every fiber tensing against the restraints. For a long, long time $he has to work to breathe, the overstimulation clearing slowly. When you finally let her up, $he hasn't remembered how to talk yet, but her gaze says it for $him. It looks like $he's just had @@.hotpink;the best sex of her life.@@ + $He shrieks with agony and then orgasms as strongly as you've ever seen a slave climax, $his every fiber tensing against the restraints. For a long, long time $he has to work to breathe, the overstimulation clearing slowly. When you finally let $him up, $he hasn't remembered how to talk yet, but $his gaze says it for $him. It looks like $he's just had @@.hotpink;the best sex of $his life.@@ <<else>> <<if ($activeSlave.nipples.includes("inverted"))>> use a couple of its actuators to stimulate $his nipples until they're almost all the way protruded, and then direct them to pull them out all the way. $He screams wholeheartedly at the pain, yelling on and on until $he's out of breath and relaxes against the restraints, gasping and crying. <<else>> use its actuators to pull $his nipples out as far as they will go, forcing a gasp of pain out of $him. <</if>> - This done, you give $him a simple pair of barbell nipple piercings. The machine makes this take less time than it takes to describe it, and after a shocked squeal of pain $he's released. $He rises carefully, trying to keep her boobs still, and @@.hotpink;smiles thankfully@@ at you. $He <<if canSee($activeSlave)>>glances at $himself in the mirror<<else>>listens to your description of her<</if>>, looking pleased. + This done, you give $him a simple pair of barbell nipple piercings. The machine makes this take less time than it takes to describe it, and after a shocked squeal of pain $he's released. $He rises carefully, trying to keep $his boobs still, and @@.hotpink;smiles thankfully@@ at you. $He <<if canSee($activeSlave)>>glances at $himself in the mirror<<else>>listens to your description of $him<</if>>, looking pleased. <<set $activeSlave.nipplesPiercing = 1>> <</if>> <<set $activeSlave.devotion += 5>> @@ -12290,14 +12292,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "$He's beautiful just the way $he is">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her firmly that $he's beautiful just the way $he is. $He blushes and giggles at the absurdly trite statement. You conclude the inspection, and $he continues on to the next item in her life as a sex slave, @@.mediumaquamarine;pleased and reassured@@ that you have a plan for what $he should look like. + You tell $him firmly that $he's beautiful just the way $he is. $He blushes and giggles at the absurdly trite statement. You conclude the inspection, and $he continues on to the next item in $his life as a sex slave, @@.mediumaquamarine;pleased and reassured@@ that you have a plan for what $he should look like. <<set $activeSlave.trust += 4>> <</replace>> <</link>> <br><<link "No, and slaves should not make requests of this kind">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her firmly that you don't intend to apply body modifications to $him, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about body modifications are yours alone. + You tell $him firmly that you don't intend to apply body modifications to $him, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about body modifications are yours alone. <<set $modRequestsAllowed = 0>> <</replace>> <</link>> @@ -12325,15 +12327,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif _injection == "clit">> clit, <</if>> - producing a hiss each time as pressurized gas painlessly drives the drugs deep into her tissues. $He leaves @@.hotpink;thanking@@ you profusely, massaging $himself in anticipation. + producing a hiss each time as pressurized gas painlessly drives the drugs deep into $his tissues. $He leaves @@.hotpink;thanking@@ you profusely, massaging $himself in anticipation. <<set $activeSlave.devotion += 2>> - Before the end of the week, her + Before the end of the week, $his <<if _injection == "boobs">> @@.lime;boobs have grown,@@ delighting $him. <<if ($activeSlave.markings == "freckles") || ($activeSlave.markings == "heavily freckled")>> - $He proudly shows your other slaves $his breast growth by keeping track of the increasing distance between a couple of chosen freckles on the front of her boobs. + $He proudly shows your other slaves $his breast growth by keeping track of the increasing distance between a couple of chosen freckles on the front of $his boobs. <</if>> - The dose of growth hormones necessary to cause such rapid tissue changes left her feeling @@.red;rather ill,@@ but $he is recovering normally. + The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<if $activeSlave.geneMods.NCS == 0>> <<set $activeSlave.health -= 10, $activeSlave.boobs += 200>> <<else>> @@ -12342,22 +12344,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif _injection == "butt">> @@.lime;buttocks have grown,@@ delighting $him. <<set $activeSlave.butt++>> - The dose of growth hormones necessary to cause such rapid tissue changes left her feeling @@.red;rather ill,@@ but $he is recovering normally. + The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<set $activeSlave.health -= 10>> <<elseif _injection == "lips">> - @@.lime;lips have swelled,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left her feeling @@.red;rather ill,@@ but $he is recovering normally. + @@.lime;lips have swelled,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<set $activeSlave.health -= 10, $activeSlave.lips += 10>> <<elseif _injection == "clit">> - @@.lime;clit has grown,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left her feeling @@.red;rather ill,@@ but $he is recovering normally. + @@.lime;clit has grown,@@ delighting $him. The dose of growth hormones necessary to cause such rapid tissue changes left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<set $activeSlave.health -= 10, $activeSlave.clit++>> <<elseif _injection == "dick">> @@.lime;cock has grown,@@ delighting $him. <<set $activeSlave.dick++>> <<if $activeSlave.balls < 5 && random(1,100) > 70>> - As a side effect, her @@.lime;balls have also swelled,@@ which $he sees as an added benefit. + As a side effect, $his @@.lime;balls have also swelled,@@ which $he sees as an added benefit. <<set $activeSlave.balls++>> <</if>> - The dose of growth hormones and male hormone treatment necessary to cause such rapid change left her feeling @@.red;rather ill,@@ but $he is recovering normally. + The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<set $activeSlave.health -= 10>> <<elseif _injection == "dickMinus">> @@.orange;dick has shrunk,@@ delighting $him. @@ -12366,19 +12368,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.dick-->> <</if>> <<if $activeSlave.balls > 1 && random(1,100) > 70>> - As a side effect, her @@orange:lime;balls have also atrophied,@@ which $he sees as an added benefit. + As a side effect, $his @@orange:lime;balls have also atrophied,@@ which $he sees as an added benefit. <<set $activeSlave.balls-->> <<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>> <<set $activeSlave.balls-->> <</if>> <</if>> - The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left her feeling @@.red;rather ill,@@ but $he is recovering normally. + The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<set $activeSlave.health -= 10>> <<elseif _injection == "balls">> - @@.lime;testicles have grown,@@ delighting $him. The dose of growth hormones and male hormone treatment necessary to cause such rapid change left her feeling @@.red;rather ill,@@ but $he is recovering normally. + @@.lime;testicles have grown,@@ delighting $him. The dose of growth hormones and male hormone treatment necessary to cause such rapid change left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<set $activeSlave.health -= 10, $activeSlave.balls++>> <<elseif _injection == "ballsMinus">> - @@.orange;testicles have shrunk,@@ delighting $him. The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left her feeling @@.red;rather ill,@@ but $he is recovering normally. + @@.orange;testicles have shrunk,@@ delighting $him. The dose of growth hormones and hormone treatment necessary to cause such rapid tissue reduction left $him feeling @@.red;rather ill,@@ but $he is recovering normally. <<set $activeSlave.balls--, $activeSlave.health -= 10>> <<if (($activeSlave.geneMods.NCS == 1) && ($activeSlave.balls > 1) && (random(1,100) > 50))>> <<set $activeSlave.balls-->> @@ -12390,7 +12392,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Not when you're pregnant">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that you would prefer not to inject your pregnant slaves with large doses of growth hormones, and $he must respect your judgment in this regard. $He leaves looking disappointed, but vows to return once $he has given birth. $He isn't satisfied with $his body, but @@.mediumaquamarine;trusts@@ that her <<= WrittenMaster()>> cares for $him and her unborn child<<if $activeSlave.pregType > 1>>ren<</if>>'s health. + You tell $him that you would prefer not to inject your pregnant slaves with large doses of growth hormones, and $he must respect your judgment in this regard. $He leaves looking disappointed, but vows to return once $he has given birth. $He isn't satisfied with $his body, but @@.mediumaquamarine;trusts@@ that $his <<= WrittenMaster($activeSlave)>> cares for $him and $his unborn child<<if $activeSlave.pregType > 1>>ren<</if>>'s health. <<set $activeSlave.trust++>> <</replace>> <</link>> @@ -12398,14 +12400,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Decline">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he's better as $he is, and $he must respect your judgment in this regard. $He leaves looking more @@.hotpink;flattered@@ than disappointed. $He's less insecure in her own body, and @@.mediumaquamarine;trusts@@ that her <<= WrittenMaster()>> has a plan for $him. + You tell $him that $he's better as $he is, and $he must respect your judgment in this regard. $He leaves looking more @@.hotpink;flattered@@ than disappointed. $He's less insecure in $his own body, and @@.mediumaquamarine;trusts@@ that $his <<= WrittenMaster($activeSlave)>> has a plan for $him. <<set $activeSlave.devotion++, $activeSlave.trust++>> <</replace>> <</link>> <br><<link "No, and slaves should not make requests of this kind">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her firmly that you don't intend to apply growth hormones to her at the moment, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about asset size are yours alone. + You tell $him firmly that you don't intend to apply growth hormones to $him at the moment, your tone communicating that further requests on this subject are not permitted. $He understands clearly and looks a little crushed, but trusts that $he won't be punished for violating a rule you hadn't promulgated. You repair the oversight immediately, directing your personal assistant to spread notice that decisions about asset size are yours alone. <<set $expansionRequestsAllowed = 0>> <</replace>> <</link>> @@ -12415,7 +12417,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Not so fast">> <<EventNameDelink $activeSlave>> <<replace "#result">> - As $he goes, $he follows the natural human impulse when embarrassed, and turns her head resolutely away from you, trying very hard to forget making such a fool of $himself. This means that $he does not see your rapid, predatory pursuit of $him; nor does $he hear your careful stride across the flooring. $His first indication that $he's prey is when your hands grab her around her + As $he goes, $he follows the natural human impulse when embarrassed, and turns $his head resolutely away from you, trying very hard to forget making such a fool of $himself. This means that $he does not see your rapid, predatory pursuit of $him; nor does $he hear your careful stride across the flooring. $His first indication that $he's prey is when your hands grab $him around $his <<if $activeSlave.bellyPreg >= 5000>> pregnant belly <<elseif $activeSlave.belly >= 5000>> @@ -12431,7 +12433,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> middle <</if>> - and hug her hard against your + and hug $him hard against your <<if $PC.belly >= 100000>> massive sweaty pregnancy. <<elseif $PC.belly >= 60000>> @@ -12455,30 +12457,30 @@ You tell her kindly that you understand, and that $he'll be trained to address t sweaty, bare chest. <</if>> <</if>> - $He stiffens<<if $activeSlave.voice != 0>> and shrieks<</if>> with surprise, but relaxes obediently within your embrace. Your warm, animal presence has an immediate effect. You hear $him suck in $his breath and then feel her begin to breathe increasingly hard as your scent sinks into $him and her embarrassment fades. + $He stiffens<<if $activeSlave.voice != 0>> and shrieks<</if>> with surprise, but relaxes obediently within your embrace. Your warm, animal presence has an immediate effect. You hear $him suck in $his breath and then feel $him begin to breathe increasingly hard as your scent sinks into $him and $his embarrassment fades. <br><br><span id="result2"> <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> - <<link "Fuck her right here">> + <<link "Fuck $him right here">> <<replace "#result2">> <<if $PC.title == 0 || $PC.boobs == 1 || $PC.belly >= 1500>> Despite your feminine appearance, you have capable hands. <<else>> You have strong hands to go with your masculine appeal. <</if>> - They rove across her front, hugging her hard against you as you massage and grope. + They rove across $his front, hugging $him hard against you as you massage and grope. <<if $activeSlave.boobs > 4000>> - $His tits are so big that hefting them creates a bit of a burn in your biceps, in addition to making her writhe against you. + $His tits are so big that hefting them creates a bit of a burn in your biceps, in addition to making $him writhe against you. <<elseif $activeSlave.belly >= 10000>> - The skin that covers her swollen belly is erotically taught, and you run your fingers across it possessively. + The skin that covers $his swollen belly is erotically taught, and you run your fingers across it possessively. <<elseif $activeSlave.nipples == "inverted">> - You wrap your hands around the bases of her inverted nipples, and use your strong grip to stimulate and squeeze them until they protrude, much to the writhing slave's anguish. + You wrap your hands around the bases of $his inverted nipples, and use your strong grip to stimulate and squeeze them until they protrude, much to the writhing slave's anguish. <<elseif $activeSlave.nipples == "fuckable">> - You slip your fingers into $his nipples and spread her wide, making the slave writhe and buck against you. + You slip your fingers into $his nipples and spread $him wide, making the slave writhe and buck against you. <<else>> You pinch $his nipples and tug them hard, making the slave writhe and buck against you. <</if>> <<if $PC.dick == 0>> - You grab one of $his hands and guide it down to her + You grab one of $his hands and guide it down to $his <<if $activeSlave.dick > 0 && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> cock, <<elseif canDoVaginal($activeSlave)>> @@ -12492,16 +12494,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.vagina == -1>> perineum, <</if>> - making $him play with $himself. Meanwhile, you look after your womanhood with your other hand, schlicking expertly while holding her close, ensuring that $he feels every motion of what you're doing. When your fingers are thoroughly coated with pussyjuice, you drop $his hand, letting her continue masturbating on her own, and then use the freed hand to replace the one you're using to touch yourself. Then, you take the wet fingers and push them into $his mouth; $he willingly sucks them clean, using $his tongue to gather every trace of your secretions. You gather sweat from between your breasts, and make $him suck that off her fingers too. When $he orgasms, you shove her against the wall and hump against $him and your hand both, climaxing yourself. + making $him play with $himself. Meanwhile, you look after your womanhood with your other hand, schlicking expertly while holding $him close, ensuring that $he feels every motion of what you're doing. When your fingers are thoroughly coated with pussyjuice, you drop $his hand, letting $him continue masturbating on $his own, and then use the freed hand to replace the one you're using to touch yourself. Then, you take the wet fingers and push them into $his mouth; $he willingly sucks them clean, using $his tongue to gather every trace of your secretions. You gather sweat from between your breasts, and make $him suck that off $his fingers too. When $he orgasms, you shove $him against the wall and hump against $him and your hand both, climaxing yourself. <<else>> - You pull her up onto her toes and slide yourself inside $him, the slave gasping when $he feels your hot dick enter her + You pull $him up onto $his toes and slide yourself inside $him, the slave gasping when $he feels your hot dick enter $his <<if canDoVaginal($activeSlave)>> cunt. <<else>> anus. <</if>> <<if $PC.belly >= 5000 && $activeSlave.belly >= 10000>> - You'd like to lift her up into a standing fuck, but there is so much distended stomach between the both of you that it's impossible so you opt for a position where you can both penetrate $him and continue your work out. + You'd like to lift $him up into a standing fuck, but there is so much distended stomach between the both of you that it's impossible so you opt for a position where you can both penetrate $him and continue your work out. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> After a while, you shift positions, freeing your member, and force yourself up $his butt despite the slave's anxious begging. <<= BothVCheck()>> @@ -12514,9 +12516,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t It doesn't take long before you fill $his ass with cum. <</if>> <<elseif $PC.belly >= 5000>> - You'd like to lift her up into a standing fuck, but you are far too pregnant to manage. Instead, you lie on your back and have her work your legs as you fuck $him. + You'd like to lift $him up into a standing fuck, but you are far too pregnant to manage. Instead, you lie on your back and have $him work your legs as you fuck $him. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - After a while, you lift her up as high as you can, freeing your member, and then lower her back down again, forcing yourself up $his butt instead despite the slave's anxious begging. + After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging. <<= BothVCheck()>> It doesn't take long before you fill $his ass with cum. <<elseif canDoVaginal($activeSlave)>> @@ -12529,7 +12531,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.belly >= 300000>> You'd like to lift $him up into a standing fuck, but even you aren't strong enough to lift $his extreme weight. Instead, you choose to have $him ride you; supporting $his _belly middle is a workout in its own right. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - After a while, you push her up as high as you can, freeing your member, and then lower her back down again, forcing yourself up $his butt instead despite the slave's anxious begging. + After a while, you push $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging. <<= BothVCheck()>> It doesn't take long before you fill $his ass with cum. <<elseif canDoVaginal($activeSlave)>> @@ -12542,7 +12544,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.belly >= 100000>> Once you're hilted, you hoist $him up by the underarms, shifting your stance to handle $his _belly stomach's weight, and hold $him in midair, impaled on your dick. You can't pound $him all that hard in this challenging position, but the effort of holding $him this way forces you to work out hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - After a while, you lift $him up as high as you can, freeing your member, and then lower her back down again, forcing yourself up $his butt instead despite the slave's anxious begging. + After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging. <<= BothVCheck()>> It doesn't take long before you fill $his ass with cum. <<elseif canDoVaginal($activeSlave)>> @@ -12554,9 +12556,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> You're going to be feeling this tomorrow. <<else>> - Once you're hilted, you bring $his hands up on either side of her head to grasp your shoulders behind $him, and then scoop $his legs up and hoist $him to rest against your chest, held in midair and impaled on your dick. You can't pound her all that hard in this challenging position, but the effort of holding $himself this way forces $him to tighten her muscles down hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>> + Once you're hilted, you bring $his hands up on either side of $his head to grasp your shoulders behind $him, and then scoop $his legs up and hoist $him to rest against your chest, held in midair and impaled on your dick. You can't pound $him all that hard in this challenging position, but the effort of holding $himself this way forces $him to tighten $his muscles down hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - After a while, you lift her up as high as you can, freeing your member, and then lower her back down again, forcing yourself up $his butt instead despite the slave's anxious begging. + After a while, you lift $him up as high as you can, freeing your member, and then lower $him back down again, forcing yourself up $his butt instead despite the slave's anxious begging. <<= BothVCheck()>> It doesn't take long before you fill $his ass with cum. <<elseif canDoVaginal($activeSlave)>> @@ -12568,40 +12570,40 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <</if>> - You tell your quivering sex toy that $he doesn't have to be embarrassed about her needs. @@.mediumaquamarine;$He seems relieved@@ that the sexual being $he's becoming is acceptable, at least to you. + You tell your quivering sex toy that $he doesn't have to be embarrassed about $his needs. @@.mediumaquamarine;$He seems relieved@@ that the sexual being $he's becoming is acceptable, at least to you. <<set $activeSlave.trust += 4>> <</replace>> <</link>><<if (($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) && ($PC.dick == 1)>> //This option will take virginity//<</if>> <</if>> - <br><<link "Have her lick you clean">> + <br><<link "Have $him lick you clean">> <<replace "#result2">> - You take $him by the hand and <<if $PC.belly >= 10000>>waddle<<else>>walk<</if>> towards the shower. The sudden loss of your closeness jerks her rudely out of her sexual reverie, but $he follows willingly, perhaps distracted by the view as you shed your workout clothes on the way. When you get there, you pull $him in with you, but you do not turn on the water. Instead, you tell $him to wash you. Not understanding, $he turns to switch on the shower, but you catch $him, and insert two sweaty fingers into the slave's compliant mouth. $He sucks on them, taking refuge in the simple task, and then understands what you mean. $He runs $his tongue up your arm, sucking the salty sweat off you as best $he can. Soon, $he bends down and heads for your + You take $him by the hand and <<if $PC.belly >= 10000>>waddle<<else>>walk<</if>> towards the shower. The sudden loss of your closeness jerks $him rudely out of $his sexual reverie, but $he follows willingly, perhaps distracted by the view as you shed your workout clothes on the way. When you get there, you pull $him in with you, but you do not turn on the water. Instead, you tell $him to wash you. Not understanding, $he turns to switch on the shower, but you catch $him, and insert two sweaty fingers into the slave's compliant mouth. $He sucks on them, taking refuge in the simple task, and then understands what you mean. $He runs $his tongue up your arm, sucking the salty sweat off you as best $he can. Soon, $he bends down and heads for your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>> - but you pull her up again and tell $him to do that last. + but you pull $him up again and tell $him to do that last. <<if $PC.belly >= 60000>> - $He quickly finds something almost as good by licking and sucking her way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold her there head there for a while, savoring the erotic sensation before pushing her along to the rest of your expansive midriff. + $He quickly finds something almost as good by licking ,and sucking $his way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold $his head there for a while, savoring the erotic sensation before pushing $him along to the rest of your expansive midriff. <<elseif $PC.belly >= 5000>> - $He quickly finds something almost as good by licking and sucking her way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold her there head there for a while, savoring the erotic sensation. + $He quickly finds something almost as good by licking ,and sucking $his way up your linea nigra. When $he reaches your <<if $PC.preg >= 22>>popped<<else>>flattened<</if>> navel, you hold $his head there for a while, savoring the erotic sensation. <<elseif $PC.boobsBonus > 2>> - $He quickly finds something almost as good by licking and sucking her way up the sweaty crevice between your enormous breasts. When $he reaches your nipples, you hold her there head there for a while, enjoying $his tongue. + $He quickly finds something almost as good by licking ,and sucking $his way up the sweaty crevice between your enormous breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue. <<elseif $PC.boobsBonus == 2>> - $He quickly finds something almost as good by licking and sucking her way up the sweaty crevice between your huge breasts. When $he reaches your nipples, you hold her there head there for a while, enjoying $his tongue. + $He quickly finds something almost as good by licking ,and sucking $his way up the sweaty crevice between your huge breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue. <<elseif $PC.boobsBonus == 1>> - $He quickly finds something almost as good by licking and sucking her way up the sweaty crevice between your big breasts. When $he reaches your nipples, you hold her there head there for a while, enjoying $his tongue. + $He quickly finds something almost as good by licking ,and sucking $his way up the sweaty crevice between your big breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue. <<elseif $PC.boobs == 1>> - $He quickly finds something almost as good by licking and sucking her way up the sweaty crevice between your breasts. When $he reaches your nipples, you hold her there head there for a while, enjoying $his tongue. + $He quickly finds something almost as good by licking ,and sucking $his way up the sweaty crevice between your breasts. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue. <<else>> <<if $PC.title == 0>> - $He settles for kissing and licking her way up your abs, pecs, and non-existent tits. When $he reaches your nipples, you hold her there head there for a while, enjoying $his tongue. + $He settles for kissing and licking $his way up your abs, pecs, and non-existent tits. When $he reaches your nipples, you hold $his head there for a while, enjoying $his tongue. <<else>> - $He settles for kissing and licking her way up your abs, pecs, and collarbone, before shyly sucking the line of sweat that runs down each of your temples when you perspire heavily off of you. + $He settles for kissing and licking $his way up your abs, pecs, and collarbone, before shyly sucking the line of sweat that runs down each of your temples when you perspire heavily off of you. <</if>> <</if>> - When you've enjoyed the tongue bath enough, you reach over and activate the shower, the warm water producing a hum from the slave. You coach her towards your + When you've enjoyed the tongue bath enough, you reach over and activate the shower, the warm water producing a hum from the slave. You coach $him towards your <<if $PC.dick == 0>> cunt, and $he eats you out with enthusiasm <<else>> - stiff prick, and $he gives you an enthusiastic blowjob<<if $PC.vagina == 1>> before turning her oral attentions to your pussy<</if>> + stiff prick, and $he gives you an enthusiastic blowjob<<if $PC.vagina == 1>> before turning $his oral attentions to your pussy<</if>> <</if>> as the water plays over you both. After looking up and letting the water cascade down your face for a long moment, you quietly tell $him to masturbate before opening your mouth to drink from the downpour. With your eyes closed against the stream, your only indications that $he's obeying the command is a slight increase in the force with which $he sucks, and a faint <<if canDoVaginal($activeSlave)>> @@ -12618,10 +12620,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t </span> <</replace>> <</link>> -<br><<link "Let her go">> +<br><<link "Let $him go">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You let her go, and $he hurries off to go on with her day. But her attraction to you does not go away, and neither does the embarrassment of having made a fool of $himself in front of you. The experience leaves her @@.gold;a bit worried@@ about how life as your slave is affecting $him, but @@.hotpink;increasingly infatuated with you.@@ Before long, love will conquer doubt. + You let $him go, and $he hurries off to go on with $his day. But $his attraction to you does not go away, and neither does the embarrassment of having made a fool of $himself in front of you. The experience leaves $him @@.gold;a bit worried@@ about how life as your slave is affecting $him, but @@.hotpink;increasingly infatuated with you.@@ Before long, love will conquer doubt. <<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>> <</replace>> <</link>> @@ -12633,7 +12635,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> The poor $girl is having trouble with <<if $activeSlave.attrXY <= 35>> - guys, so you decide to be kind to $him and play up your feminine side. You lift $his $activeSlave.skin chin with a soft touch, and kiss her gently on the lips, pressing your breasts full against her + guys, so you decide to be kind to $him and play up your feminine side. You lift $his $activeSlave.skin chin with a soft touch, and kiss $him gently on the lips, pressing your breasts full against $his <<if $activeSlave.boobs > 5000>> titanic udders, which are squashed between you. <<elseif $activeSlave.boobs > 1000>> @@ -12656,7 +12658,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t generous breasts. <</if>> <br><br> - $He hesitates, clearly surprised that you're allowing $him to fondle you, but building arousal is making her forget her awkwardness and $he begins to play with your boobs in earnest. You direct her fingers to your nipples, and $he obeys the nonverbal cue, devoting more attention to the <<if $PC.preg > 30 || $PC.births > 0>>milky<<else>>hard<</if>>, sensitive nubs. Satisfied that $he's got the idea, you run your hands lightly down her + $He hesitates, clearly surprised that you're allowing $him to fondle you, but building arousal is making $him forget $his awkwardness and $he begins to play with your boobs in earnest. You direct $his fingers to your nipples, and $he obeys the nonverbal cue, devoting more attention to the <<if $PC.preg > 30 || $PC.births > 0>>milky<<else>>hard<</if>>, sensitive nubs. Satisfied that $he's got the idea, you run your hands lightly down $his <<if $activeSlave.weight > 190>> voluminous <<elseif $activeSlave.belly >= 5000>> @@ -12678,7 +12680,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> soft <</if>> - body and give her + body and give $his <<if $activeSlave.butt > 15>> obscene <<elseif $activeSlave.butt > 10>> @@ -12692,7 +12694,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> buttocks a gentle massage. <br><br> - $He has $his eyes closed, and is spared any indication that $he's petting and being petted by a person with a cock. $His arousal builds quickly, and so does yours. You resolve the situation by using a hand on each of you: you finish yourself off with practiced ease while giving her + $He has $his eyes closed, and is spared any indication that $he's petting and being petted by a person with a cock. $His arousal builds quickly, and so does yours. You resolve the situation by using a hand on each of you: you finish yourself off with practiced ease while giving $his <<if canDoVaginal($activeSlave)>> clit <<elseif canAchieveErection($activeSlave) && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> @@ -12708,21 +12710,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> soft perineum <</if>> - some manual stimulation that tips her over the edge. $He opens $his eyes slowly, @@.hotpink;grateful@@ that you were so merciful. + some manual stimulation that tips $him over the edge. $He opens $his eyes slowly, @@.hotpink;grateful@@ that you were so merciful. <<elseif $activeSlave.attrXX <= 35>> - girls, so you decide to be kind to $him and play up your masculine side. You grab the side of her neck with a rough grip, and pull her downward, forcing $him to $his knees. $He goes willingly, her field of vision filling with your rapidly hardening member. + girls, so you decide to be kind to $him and play up your masculine side. You grab the side of $his neck with a rough grip, and pull $him downward, forcing $him to $his knees. $He goes willingly, $his field of vision filling with your rapidly hardening member. <<if ($activeSlave.teeth == "removable")>> - $He quickly pulls her removable teeth out, getting ready to offer you her soft facepussy. + $He quickly pulls $his removable teeth out, getting ready to offer you $his soft facepussy. <<elseif ($activeSlave.teeth == "pointy")>> - $He runs $his tongue over her frightening teeth carefully, and then opens her jaws wide, getting ready to keep her fangs well clear of your shaft. + $He runs $his tongue over $his frightening teeth carefully, and then opens $his jaws wide, getting ready to keep $his fangs well clear of your shaft. <<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>> - $He runs $his tongue over her braces, and then opens wide, mindful of keeping her orthodontia clear of your shaft. + $He runs $his tongue over $his braces, and then opens wide, mindful of keeping $his orthodontia clear of your shaft. <<elseif ($activeSlave.teeth == "gapped")>> $He runs $his tongue across the gap in $his front teeth and opens wide. <</if>> - $He takes you into $his mouth without hesitation, and keeps $his eyes closed. $He visibly concentrates all her attention on your dick, ignoring the breasts that are starting to bounce right over her head as you begin rocking your hips with enjoyment. + $He takes you into $his mouth without hesitation, and keeps $his eyes closed. $He visibly concentrates all $his attention on your dick, ignoring the breasts that are starting to bounce right over $his head as you begin rocking your hips with enjoyment. <br><br> - You run a possessive hand through her $activeSlave.hColor hair, and let $him know what a good little cocksucker $he is. $He moans submissively in response, and the humming feels so wonderful that you order $him to do it again. Knowing that you're being nice to $him by letting her ignore your more feminine characteristics for the moment, $he does her best to please you, humming as best $he can and using both hands to pleasure your base and balls. You blow your load down her throat, and $he swallows it all. $He opens $his eyes slowly, @@.mediumaquamarine;relieved@@ that you were so merciful. + You run a possessive hand through $his $activeSlave.hColor hair, and let $him know what a good little cocksucker $he is. $He moans submissively in response, and the humming feels so wonderful that you order $him to do it again. Knowing that you're being nice to $him by letting $his ignore your more feminine characteristics for the moment, $he does $his best to please you, humming as best $he can and using both hands to pleasure your base and balls. You blow your load down $his throat, and $he swallows it all. $He opens $his eyes slowly, @@.mediumaquamarine;relieved@@ that you were so merciful. <</if>> <<set $activeSlave.oralCount++, $oralTotal++, $activeSlave.trust += 4>> <</replace>> @@ -12840,9 +12842,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><br> You snake a hand under $him and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily against you. You release $him, and $he barely manages to catch $himself from collapsing, the motion sending a blob of $his owner's semen running down $his thigh. <<else>> - $He knows what's coming when you pin $his torso even harder and reach down to pull $his knees up to clasp you around your waist, and does her best to relax. + $He knows what's coming when you pin $his torso even harder and reach down to pull $his knees up to clasp you around your waist, and does $his best to relax. <br><br> - $He screws $his eyes shut tight as you maneuver yourself inside her + $He screws $his eyes shut tight as you maneuver yourself inside $his <<if canDoVaginal($activeSlave)>> <<if $activeSlave.vagina > 2>> cavernous cunt. @@ -12862,39 +12864,39 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> Once you're confident your member is properly seated inside $him, and you won't drop $him, you give $him a brusque order to open $his eyes and look down. $He obeys, but unwillingly, bending as best $he can to look at the base of your dick where it <<if canDoVaginal($activeSlave)>> - enters her womanhood. + enters $his womanhood. <<else>> disappears beneath <<if canAchieveErection($activeSlave) && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - her own erect cock. + $his own erect cock. <<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - her own dangling cock. + $his own dangling cock. <<elseif ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - her chastity. + $his chastity. <<else>> - $him. $He can't see where it enters her bowels, but $he's very aware of it. + $him. $He can't see where it enters $his bowels, but $he's very aware of it. <</if>> <</if>> - You tell $him to do her best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Bent almost in half, $he stares, transfixed by the sight of your penis delving inside $his body. + You tell $him to do $his best to watch, and begin thrusting. $He groans from the awkward position, internal fullness, and sexual confusion. Bent almost in half, $he stares, transfixed by the sight of your penis delving inside $his body. <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck(7)>> <<else>> <<= AnalVCheck(7)>> <</if>> <br><br> - You push a hand between the two of you and begin to stimulate her manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage her skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force her over the edge, and $he comes so hard that $he wriggles involuntarily within your grasp. You drop $him, and $he barely manages to catch $himself on shaking legs, the motion sending a blob of her owner's semen running down her thigh. + You push a hand between the two of you and begin to stimulate $him manually. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, bringing $him to the point of climax before shooting your cum deep inside $him. The internal sensation of heat, the tightening and twitching of your member inside $him, and your obvious pleasure force $him over the edge, and $he comes so hard that $he wriggles involuntarily within your grasp. You drop $him, and $he barely manages to catch $himself on shaking legs, the motion sending a blob of $his owner's semen running down $his thigh. <</if>> <br><br> Over the week, you force $him to achieve daily orgasm as your cock pounds in and out of $him. It's difficult, blowing your load inside a compliant slave $girl every day, but you make the necessary sacrifice. <<if random(1,2) == 1>> - After a few days, $he's @@.green;obviously reconsidering her previous hesitations about dick.@@ + After a few days, $he's @@.green;obviously reconsidering $his previous hesitations about dick.@@ <<set $activeSlave.attrXY += 5>> <<else>> - $He takes it like a good slave. $His dislike for dick doesn't change, but $he gets better at @@.hotpink;suppressing her own inclinations@@ and serving as your cum receptacle. + $He takes it like a good slave. $His dislike for dick doesn't change, but $he gets better at @@.hotpink;suppressing $his own inclinations@@ and serving as your cum receptacle. <<set $activeSlave.devotion += 4>> <</if>> <<elseif $activeSlave.attrXX <= 35>> - girls, so $he gets to spend some quality time with your feminine side. You kiss $him, teasing your tongue against $him, and press your breasts maliciously against her + girls, so $he gets to spend some quality time with your feminine side. You kiss $him, teasing your tongue against $him, and press your breasts maliciously against $his <<if $activeSlave.boobs > 5000>> titanic udders, which are squashed between you. <<elseif $activeSlave.boobs > 1000>> @@ -12902,10 +12904,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> chest. <</if>> - $He shrinks away from you involuntarily, but you stroke loving hands down her temples, the sides of her neck, and her upper arms. $He shudders involuntarily, and you can almost feel her hate $himself through your lip lock. You cock your hips back and to the side, keeping your prick well clear of $him. As far as $he can feel, you're all boobs and feminine lips. + $He shrinks away from you involuntarily, but you stroke loving hands down $his temples, the sides of $his neck, and $his upper arms. $He shudders involuntarily, and you can almost feel $him hate $himself through your lip lock. You cock your hips back and to the side, keeping your prick well clear of $him. As far as $he can feel, you're all boobs and feminine lips. <br><br> <<if $activeSlave.toyHole == "dick" || ($sexualOpeness == 1 && canPenetrate($activeSlave))>> - You walk forward, pressing her against the far wall, and then turn yourself around, pinning her against the wall with your butt<<if $activeSlave.belly >= 5000>>, working your way under $his _belly belly<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your + You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt<<if $activeSlave.belly >= 5000>>, working your way under $his _belly belly<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your <<if $PC.butt > 2>> enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>, <<elseif $PC.butt > 1>> @@ -12915,14 +12917,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> ass, <</if>> - leading her like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against her for a while, grinning to yourself as you feel an unwilling erection building between your cheeks. Pleased, you lean forward and line up your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>> with her dick head and push back into $him. You repeat until $his hips start moving on their own. You bite on your finger at the sensation of $his cock inside you and, using your other hand, begin to jerk yourself off. Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick; it must feel as though $he is banging a beautiful woman. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage her skillfully, taking $him to the point of climax before enjoying your own orgasm. The heat of your insides, the tightening and twitching of your <<if $PC.vagina == 1>>vagina<<else>>rectum<</if>> around $his cock, and your obvious pleasure force her over the edge, and $he comes so hard that $he nearly knocks your to the floor. You scoot forward, letting her slip from you. $He gets a splendid sight of your still gaped <<if $PC.vagina == 1>>cunt<<else>>anus<</if>> begging for more<<if $activeSlave.balls > 0>> as a blob of $his semen drips from your body<</if>>. + leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel an unwilling erection building between your cheeks. Pleased, you lean forward and line up your <<if $PC.vagina == 1>>pussy<<else>>asshole<</if>> with $his dick head and push back into $him. You repeat until $his hips start moving on their own. You bite on your finger at the sensation of $his cock inside you and, using your other hand, begin to jerk yourself off. Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick; it must feel as though $he is banging a beautiful woman. $He whimpers pathetically, seeing and feeling $himself build towards an inevitable orgasm. You manage $him skillfully, taking $him to the point of climax before enjoying your own orgasm. The heat of your insides, the tightening and twitching of your <<if $PC.vagina == 1>>vagina<<else>>rectum<</if>> around $his cock, and your obvious pleasure force $him over the edge, and $he comes so hard that $he nearly knocks your to the floor. You scoot forward, letting $him slip from you. $He gets a splendid sight of your still gaped <<if $PC.vagina == 1>>cunt<<else>>anus<</if>> begging for more<<if $activeSlave.balls > 0>> as a blob of $his semen drips from your body<</if>>. <br><br> Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to savor a compliant slave's penis every day, but you make the necessary sacrifice. <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 40, 0, $activeSlave.ID)>> <</if>> <<elseif $activeSlave.belly >= 150000>> - You walk forward, pressing her against the far wall, and then turn yourself around, pinning her against the wall with your butt, working your way under $his _belly belly. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your + You walk forward, pressing $him against the far wall, and then turn yourself around, pinning $him against the wall with your butt, working your way under $his _belly belly. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your <<if $PC.butt > 2>> enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>, <<elseif $PC.butt > 1>> @@ -12932,23 +12934,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> ass, <</if>> - leading her like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against her for a while, grinning to yourself as you feel + leading $him like a music teacher guiding a student's hands. When $he's groping your buttocks properly, you grind against $him for a while, grinning to yourself as you feel <<if canDoVaginal($activeSlave)>> an unwilling heat building low behind you. Pleased, you lean back and start to play with $his clit, using your other hand to jerk off. <<elseif canAchieveErection($activeSlave) && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - an unwilling erection building between your cheeks. Pleased, you lean back and start to play with her dick, using your other hand to jerk yourself off. + an unwilling erection building between your cheeks. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off. <<elseif $activeSlave.dick > 6 && !canAchieveErection($activeSlave) && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - the huge cock behind you start to leak onto your back. Pleased, you lean back and start to play with her dick, using your other hand to jerk yourself off. + the huge cock behind you start to leak onto your back. Pleased, you lean back and start to play with $his dick, using your other hand to jerk yourself off. <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave) && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - the pretty girldick behind you start to leak. Pleased, you lean back and start to play with her soft bitchclit, using your other hand to jerk yourself off. + the pretty girldick behind you start to leak. Pleased, you lean back and start to play with $his soft bitchclit, using your other hand to jerk yourself off. <<elseif ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - an unwilling heat building low behind you. Pleased, you lean back and start to tease her chastity cage, using your other hand to jerk off. + an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity cage, using your other hand to jerk off. <<elseif ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>> - an unwilling heat building low behind you. Pleased, you lean back and start to tease her chastity, using your other hand to jerk off. + an unwilling heat building low behind you. Pleased, you lean back and start to tease $his chastity, using your other hand to jerk off. <<else>> a demure heat building behind you. Pleased, you lean back and start to play with the soft smooth skin between $his legs. <</if>> - Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman under her middle, and is playing with $his ass while $he gets her off manually. You complete the feeling by bucking against her with extra enthusiasm when you climax. + Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman under $his middle, and is playing with $his ass while $he gets $him off manually. You complete the feeling by bucking against $him with extra enthusiasm when you climax. <br><br> Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having to grind against a compliant slave every day, but you make the necessary sacrifice. <<else>> @@ -12968,7 +12970,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> a demure heat building behind you. Pleased, you snake a hand around behind yourself and start to play with the soft smooth skin between $his legs. <</if>> - Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman in $his arms, and is playing with her boobs while $he gets her off manually. You complete the feeling by craning around to rain nibbles and kisses on $his $activeSlave.faceShape face. + Except for your vigorous stroking with one hand, there's little to indicate to $him that you have a dick. It must feel as though $he has a beautiful woman in $his arms, and is playing with $his boobs while $he gets $him off manually. You complete the feeling by craning around to rain nibbles and kisses on $his $activeSlave.faceShape face. <br><br> Over the week, you require $him to repeat this sexually confusing performance daily. It's difficult, having one of your slaves detailed to stimulate your nipples every day, but you make the necessary sacrifice. <</if>> @@ -12988,26 +12990,26 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Require $him to self-flagellate">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that you will offer $him a method of expiating her deep and troubling sin. $He looks almost hopeful at this, until you lead her out onto a balcony and order $him to strip before handing $him a simple length of hempen rope. $He already knows what's coming next, but $he breaks down as $he obeys your orders to kneel. $He sobs abjectly, but you don't even have to give the next order: $he's already flogging the rope against her own back in the hope of earning a reprieve by obedience. You count the strokes aloud, stopping at one in disapproval of how light $he's hitting $himself. $He flogs $himself harder and harder, screaming a little and crying in pain and fear as you obstinately refuse to say "two." When $he strikes so hard that $he draws a little blood, you finally say the terrible word. When you're finally satisfied with her self-torture, $he's so exhausted that you carry her limp, bloody, vaguely urine-scented <<if $activeSlave.bellyPreg >= 1500>>gravid <</if>>form into the shower, wash $him, and apply curatives, @@.red;though $he's still quite injured.@@ $He wakes to find $himself curled up in your lap, and $he stiffens for a brief moment before @@.hotpink;relaxing against your chest,@@ weeping softly. + You tell $him that you will offer $him a method of expiating $his deep and troubling sin. $He looks almost hopeful at this, until you lead $him out onto a balcony and order $him to strip before handing $him a simple length of hempen rope. $He already knows what's coming next, but $he breaks down as $he obeys your orders to kneel. $He sobs abjectly, but you don't even have to give the next order: $he's already flogging the rope against $his own back in the hope of earning a reprieve by obedience. You count the strokes aloud, stopping at one in disapproval of how light $he's hitting $himself. $He flogs $himself harder and harder, screaming a little and crying in pain and fear as you obstinately refuse to say "two." When $he strikes so hard that $he draws a little blood, you finally say the terrible word. When you're finally satisfied with $his self-torture, $he's so exhausted that you carry $his limp, bloody, vaguely urine-scented <<if $activeSlave.bellyPreg >= 1500>>gravid <</if>>form into the shower, wash $him, and apply curatives, @@.red;though $he's still quite injured.@@ $He wakes to find $himself curled up in your lap, and $he stiffens for a brief moment before @@.hotpink;relaxing against your chest,@@ weeping softly. <<if ($activeSlave.fetish != "submissive") && (random(1,100) > 50)>> <<set $activeSlave.fetish = "submissive",set $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> $He has come to associate @@.lightcoral;submission@@ with sexual fulfillment. <</if>> <<if ($activeSlave.behavioralFlaw != "odd") && (random(1,100) > 50)>> <<set $activeSlave.behavioralFlaw = "odd">> - The terrible experience has left her with @@.red;unpleasant nervous tics.@@ + The terrible experience has left $him with @@.red;unpleasant nervous tics.@@ <</if>> <<set $activeSlave.devotion += 10, $activeSlave.health -= 10>> <</replace>> <</link>> <<if canImpreg($activeSlave, $PC)>> <<if $activeSlave.mpreg == 1 && canDoAnal($activeSlave) || $activeSlave.ovaries == 1 && canDoVaginal($activeSlave)>> - <br><<link "Put a baby in her while $he prays">> + <br><<link "Put a baby in $him while $he prays">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger her <<if $activeSlave.mpreg == 1>>asspussy<<else>>pussy<</if>>. $He gasps out: + $activeSlave.slaveName finds $himself standing in front of you, feeling you roughly using two fingers to finger $his <<if $activeSlave.mpreg == 1>>asspussy<<else>>pussy<</if>>. $He gasps out: "Oh <<Master>>, owner, protector, and father of my children, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, the tear<<s>> of my womb. Remember not my iniquitie<<s>> but my willingne<<ss>> to be bred by you. I long to <<s>>erve your <<if $PC.vagina == 1>>futa <</if>>dick, and beg that you will u<<s>>e me and ble<<ss>> my body with your off<<s>>pring. I promi<<s>>e to <<s>>ubmit to you a<<s>> your breeding <<s>>lut all the day<<s>> of my <<s>>ervitude, and to grow heavy with child, again and again." - $He moans with relief when $he feels you withdraw your penetrating digits partway through her recitation, but by the time $he's finished, you've shoved your dick up her waiting <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> and are close so blessing her with a load of cum. $He @@.hotpink;does her best@@ to relax and resumes, "Oh <<Master>>..." + $He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved your dick up $his waiting <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> and are close so blessing $him with a load of cum. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..." <<if $activeSlave.mpreg == 1>><<= AnalVCheck()>><<else>><<= VaginalVCheck()>><</if>> <<= knockMeUp($activeSlave, 100, 2, -1, 1)>> <<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>> @@ -13050,7 +13052,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $activeSlave.slaveName finds $himself standing in front of you, feeling you roughly probe $his ass with two fingers. $He gasps out: "Oh <<Master>>, owner and protector, forgive my <<s>>in<<s>>, ju<<s>>t a<<s>> you forgave my <<s>>i<<s>>ter<<s>> in <<s>>lavery before me. Count not my tran<<s>>gre<<ss>>ion<<s>> again<<s>>t your rule<<s>>, but, rather, my tear<<s>> of anal <<s>>ervi<<c>>e. Remember not my iniquitie<<s>> but my willingne<<ss>> to be a<<ss>>raped by you. I long to <<s>>erve your <<if $PC.dick == 0>>pu<<ss>>y<<else>><<if $PC.vagina == 1>>futa <</if>>dick<</if>>, and beg that you will u<<s>>e me and make your dwelling pla<<c>>e within my butthole. I promi<<s>>e to <<s>>ubmit to you a<<s>> your anal <<s>>lut all the day<<s>> of my <<s>>ervitude." - $He moans with relief when $he feels you withdraw your penetrating digits partway through her recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up her loosened ass. $He @@.hotpink;does her best@@ to relax and resumes, "Oh <<Master>>..." + $He moans with relief when $he feels you withdraw your penetrating digits partway through $his recitation, but by the time $he's finished, you've shoved <<if $PC.dick == 0>>a strap-on<<else>>your dick<</if>> up $his loosened ass. $He @@.hotpink;does $his best@@ to relax and resumes, "Oh <<Master>>..." <<= AnalVCheck()>> <<if ($activeSlave.fetish != "humiliation") && (random(1,100) > 50)>> <<set $activeSlave.fetish = "humiliation", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> @@ -13077,7 +13079,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!" <</if>> - You make a show of considering, and then tell $him that if $he's extra obedient, you might let her keep $his butt - for now. You tell $him to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>lick your pussy<</if>>, and $he does with unusual obedience. When $he's done, you bend down and whisper in her ear that if $he shows any sign of rebelliousness, you'll ruin her little asshole. @@.gold;$He's terrified.@@ + You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him keep $his butt - for now. You tell $him to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>lick your pussy<</if>>, and $he does with unusual obedience. When $he's done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll ruin $his little asshole. @@.gold;$He's terrified.@@ <<set $activeSlave.trust -= 5, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -13085,13 +13087,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Force $him to degrade $himself">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Suction cup dildos are terribly useful. You place a moderate-sized one on a low table in your office<<if ["combined chastity", "anal chastity"].includes($activeSlave.vaginalAccessory) || ["combined chastity", "anal chastity"].includes($activeSlave.dickAccessory)>>, unlock her chastity belt<</if>>, and order $him to squat down on it and fuck her own asshole. $He hesitates, incredulous, and finds $himself bound to the couch and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he hobbles over and up onto the table, + Suction cup dildos are terribly useful. You place a moderate-sized one on a low table in your office<<if ["combined chastity", "anal chastity"].includes($activeSlave.vaginalAccessory) || ["combined chastity", "anal chastity"].includes($activeSlave.dickAccessory)>>, unlock $his chastity belt<</if>>, and order $him to squat down on it and fuck $his own asshole. $He hesitates, incredulous, and finds $himself bound to the couch and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he hobbles over and up onto the table, <<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>> - struggles to line $himself up, and finds it slammed into $his asshole when the table gives out under her<<if $activeSlave.belly >= 300000>> gravid<</if>> weight. You leave her there to struggle with the dildo wedged in $his rear until $he finally manages to pop it free from the table fragment stuck under mass and roll over. You haul her onto + struggles to line $himself up, and finds it slammed into $his asshole when the table gives out under $his<<if $activeSlave.belly >= 300000>> gravid<</if>> weight. You leave $him there to struggle with the dildo wedged in $his rear until $he finally manages to pop it free from the table fragment stuck under mass and roll over. You haul $him onto <<else>> - <<if $activeSlave.belly > 20>>gingerly lowers her <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>bulk onto it,<</if>> and fucks her little ass open on the dildo. You keep her up there until $his legs give out<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 190>>and her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>weight pins her on the toy;<<else>>, and<</if>> then let her lie down on + <<if $activeSlave.belly > 20>>gingerly lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>bulk onto it,<</if>> and fucks $his little ass open on the dildo. You keep $him up there until $his legs give out<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 190>>and $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>weight pins $his on the toy;<<else>>, and<</if>> then let $him lie down on <</if>> - the couch, telling $him to keep working the dildo with $his hands or suffer another whipping. After $he's had $his ass filled for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and be a good little anal slave. @@.gold;$He fears you,@@ and @@.lime;her butthole has been broken in.@@ + the couch, telling $him to keep working the dildo with $his hands or suffer another whipping. After $he's had $his ass filled for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and be a good little anal slave. @@.gold;$He fears you,@@ and @@.lime;$his butthole has been broken in.@@ <<set $activeSlave.trust -= 5, $activeSlave.anus = 1>> <<= AnalVCheck()>> <</replace>> @@ -13100,7 +13102,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Make $him choose between $his virginities">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he's a sex slave, and that $he needs to learn how to take a dick up the ass. + You tell $him $he's a sex slave, and that $he needs to learn how to take a dick up the ass. <<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>> $He frantically begs with gestures, pleading on $his knees. <<elseif !canTalk($activeSlave)>> @@ -13108,13 +13110,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape me in my a<<ss>>, <<Master>>!" <</if>> - You make a show of considering, and then tell her you know a way $he can continue being an anal virgin - for now. You want a new hole to play with, and $he has two untouched holes. $He gasps when $he realizes what you want. $He hesitates to answer, uncertain of which $he values more, and finds $himself bound to the couch<<if ["combined chastity", "anal chastity"].includes($activeSlave.vaginalAccessory) || ["combined chastity", "anal chastity"].includes($activeSlave.dickAccessory)>>, stripped of her chastity,<</if>> and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he prostrates $himself and + You make a show of considering, and then tell $him you know a way $he can continue being an anal virgin - for now. You want a new hole to play with, and $he has two untouched holes. $He gasps when $he realizes what you want. $He hesitates to answer, uncertain of which $he values more, and finds $himself bound to the couch<<if ["combined chastity", "anal chastity"].includes($activeSlave.vaginalAccessory) || ["combined chastity", "anal chastity"].includes($activeSlave.dickAccessory)>>, stripped of $his chastity,<</if>> and thoroughly whipped. It isn't a sexual whipping, either, but a methodical and scientific administration of pain right up to the border of damage. When $he's been reduced to a state of abject, sobbing surrender, you free $him and repeat your orders as though nothing had happened. Still crying, $he prostrates $himself and <<if $activeSlave.trust < 20>> spreads $his butt for you. <<else>> - her pussylips for you. + $his pussylips for you. <</if>> - You callously ram a dildo into her fresh hole and tell $him to keep working $himself with it or suffer another whipping. After $he's fucked $himself for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and take it a good little slave. @@.gold;$He fears you@@ but @@.hotpink;looses $himself to your rule.@@ + You callously ram a dildo into $his fresh hole and tell $him to keep working $himself with it or suffer another whipping. After $he's fucked $himself for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and take it a good little slave. @@.gold;$He fears you@@ but @@.hotpink;looses $himself to your rule.@@ <<if $activeSlave.trust < 20>> @@.lime;$His butthole has been broken in.@@ <<set $activeSlave.anus = 1>> @@ -13167,7 +13169,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> You take $him about the <<if $activeSlave.belly >= 500 || $activeSlave.weight > 30>>middle and, with a little imagination, find that, indeed, you could make your thumbs and fingertips meet around it if you were to press.<<else>>waist and find that, indeed, you can make your thumbs and fingertips meet around it if you press, which elicits a squeak<</if>>. <<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>> - There are many ways you could apply this during sex, but since $he is fully locked in chastity, you can only explain, in detail, the ways you would fuck $him if you could. By the end $he's blushing vibrantly, but @@.mediumaquamarine;more confident in her sexual uniqueness.@@ + There are many ways you could apply this during sex, but since $he is fully locked in chastity, you can only explain, in detail, the ways you would fuck $him if you could. By the end $he's blushing vibrantly, but @@.mediumaquamarine;more confident in $his sexual uniqueness.@@ <<set $activeSlave.trust += 4>> <<else>> This can be applied during sex many ways. First, $he sits on the bathroom counter and bends $himself almost double for @@ -13180,13 +13182,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> Finally, $he goes down on all fours for a hard <<if canDoVaginal($activeSlave)>> - pounding, doggy style, losing $himself in the intense penetration as you use your hold around $him to give it to her even harder. + pounding, doggy style, losing $himself in the intense penetration as you use your hold around $him to give it to $him even harder. <<= VaginalVCheck()>> <<else>> - buttfuck, doggy style, losing $himself in the intense anal as you use your hold around $him to give it to her even harder. + buttfuck, doggy style, losing $himself in the intense anal as you use your hold around $him to give it to $him even harder. <<= AnalVCheck()>> <</if>> - By the end $he's tired but @@.mediumaquamarine;confident in her sexual uniqueness.@@ + By the end $he's tired but @@.mediumaquamarine;confident in $his sexual uniqueness.@@ <<set $activeSlave.trust += 4>> <</if>> <</replace>> @@ -13243,43 +13245,43 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Reward $him for $his gains">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him to spread her towel on the floor and lie + You tell $him to spread $his towel on the floor and lie <<if $activeSlave.belly >= 5000>> on $his side on it. You lie next to $him and <<else>> face down on it. You <</if>> - run your hands across $his sweaty <<if $seeRace == 1>>$activeSlave.race <</if>>muscles before giving $him a thorough, skillful and very intense massage. $He moans and grunts as you work the lactic acid out of her muscles, slowly reducing $him to a puddle of ripped sex slave. As you're rubbing her down to finish the massage, $he meekly begs you to fuck $him. + run your hands across $his sweaty <<if $seeRace == 1>>$activeSlave.race <</if>>muscles before giving $him a thorough, skillful and very intense massage. $He moans and grunts as you work the lactic acid out of $his muscles, slowly reducing $him to a puddle of ripped sex slave. As you're rubbing $him down to finish the massage, $he meekly begs you to fuck $him. <<if !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>> - You tell $him that's not an option and pull $him into a kiss instead. It's a strange sensation, this mass of muscle lying quietly still in your arms you, whimpering with delight as you gently make out with $him. Your wandering hands eventually tip her over the edge; $he hugs you tight as $he shakes with orgasm. Once $he stops crushing you, you return to enjoying $his sweaty body. + You tell $him that's not an option and pull $him into a kiss instead. It's a strange sensation, this mass of muscle lying quietly still in your arms you, whimpering with delight as you gently make out with $him. Your wandering hands eventually tip $him over the edge; $he hugs you tight as $he shakes with orgasm. Once $he stops crushing you, you return to enjoying $his sweaty body. <<else>> As $he lies still, <<if $PC.dick == 0>> you lift one of $his legs and straddle yourself in to bring your groin against $hers. It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently scissor yourself against $him. $He comes in no time at all. When $he does $he squeezes you between vicelike thighs,<<if $PC.vagina == 1>> pressing your pussy deliciously and<</if>> bringing you to climax, too. <<else>> - you slowly push your cock into her + you slowly push your cock into $his <<if canDoVaginal($activeSlave)>> pussy; $he's so relaxed from the massage that it slides in easily. <<= VaginalVCheck()>> - It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently penetrate $him. $He comes in no time at all. When $he does you happen to be halfway inside $him; $he wraps $his legs around you and pulls you into $his depths. You explode into her as $he holds you in place with her vicelike thighs. + It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently penetrate $him. $He comes in no time at all. When $he does you happen to be halfway inside $him; $he wraps $his legs around you and pulls you into $his depths. You explode into $him as $he holds you in place with $his vicelike thighs. <<else>> ass; $he's so relaxed from the massage that it slides in easily. <<= AnalVCheck()>> - It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently take $his ass. $He comes in no time at all. When $he does you happen to be halfway inside $him; her sphincter mercilessly squeezes your head while her muscular buttocks clench your shaft between them. You explode into $him. + It's a strange sensation, this mass of muscle lying quietly still beneath you, whimpering with delight as you gently take $his ass. $He comes in no time at all. When $he does you happen to be halfway inside $him; $his sphincter mercilessly squeezes your head while $his muscular buttocks clench your shaft between them. You explode into $him. <</if>> <</if>> - <<if $activeSlave.dick != 0>>As $he stands, her now-softening penis drips cum. <</if>> + <<if $activeSlave.dick != 0>>As $he stands, $his now-softening penis drips cum. <</if>> <</if>> @@.hotpink;$His love for you has increased.@@ <<set $activeSlave.devotion += 4>> <</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 "Take advantage of her gains with a powerfuck">> +<br><<link "Take advantage of $his gains with a powerfuck">> <<EventNameDelink $activeSlave>> <<replace "#result">> - It's time to see if $he's got anything left in those sore <<if $seeRace == 1>>$activeSlave.race <</if>>muscles. You push the towel off her shoulder, take a lick of the delicious salty sweat along her collarbone, and get to work. For the next hour, you put her through a series of sexual positions that require $him to balance and support $himself in difficult positions. $He hangs from the ceiling, goes up on one tiptoe, and fucks in a handstand. $He's as muscular inside as $he is outside. + It's time to see if $he's got anything left in those sore <<if $seeRace == 1>>$activeSlave.race <</if>>muscles. You push the towel off $his shoulder, take a lick of the delicious salty sweat along $his collarbone, and get to work. For the next hour, you put $him through a series of sexual positions that require $him to balance and support $himself in difficult positions. $He hangs from the ceiling, goes up on one tiptoe, and fucks in a handstand. $He's as muscular inside as $he is outside. <<if $PC.dick == 0>> - You climax repeatedly, mixing your pussy juice with her sweat all across $his body. + You climax repeatedly, mixing your pussy juice with $his sweat all across $his body. <<else>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -13288,10 +13290,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<= AnalVCheck()>> You come repeatedly, and before long cum is dripping out of $his ass as you continue. <<else>> - You come repeatedly, leaving ropes of your cum all across her sweaty body. + You come repeatedly, leaving ropes of your cum all across $his sweaty body. <</if>> <</if>> - <<if $activeSlave.dick != 0>>From position to position, her erection adds its own fluids to the mess on the floor. <</if>>By the end, $he's shaking from muscle fatigue and panting her gratitude. @@.mediumaquamarine;$His confidence in her place has increased.@@ + <<if $activeSlave.dick != 0>>From position to position, $his erection adds its own fluids to the mess on the floor. <</if>>By the end, $he's shaking from muscle fatigue and panting $his gratitude. @@.mediumaquamarine;$His confidence in $his place has increased.@@ <<set $activeSlave.trust += 4>> <</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>> @@ -13305,7 +13307,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> ass. <</if>> - You feel her quivering trying to hold you up, so you permit $him to take you against the wall; a welcome respite for the + You feel $his quivering trying to hold you up, so you permit $him to take you against the wall; a welcome respite for the <<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>> <<if $activeSlave.belly >= 100000>>massively <<elseif $activeSlave.belly >= 10000>>hugely <</if>>pregnant @@ -13325,7 +13327,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> kid. <</if>> - $He dominantly fucks you, her muscles flexing powerfully with every thrust. You're no slouch when it comes to muscles yourself, so when you feel her tense with orgasm you wrap your legs around $him and hilt her deep inside you. This only encourages $him to fuck you harder, quickly bring you to climax as well. $He gently carries you to your couch, where $he slides in behind you for a little post-coitus spooning. You definitely appreciate her gains after such a good fuck. @@.mediumaquamarine;$His confidence in her place has increased,@@ as has her @@.hotpink;love for you.@@ + $He dominantly fucks you, $his muscles flexing powerfully with every thrust. You're no slouch when it comes to muscles yourself, so when you feel $him tense with orgasm you wrap your legs around $him and hilt $him deep inside you. This only encourages $him to fuck you harder, quickly bring you to climax as well. $He gently carries you to your couch, where $he slides in behind you for a little post-coitus spooning. You definitely appreciate $his gains after such a good fuck. @@.mediumaquamarine;$His confidence in $his place has increased,@@ as has $his @@.hotpink;love for you.@@ <<set $activeSlave.trust += 4, $activeSlave.devotion += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 50, 0, $activeSlave.ID)>> @@ -13336,7 +13338,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Compliment $his gains and send $him on $his way">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He finishes posing with an impressive display of her obliques. $He walks powerfully to the shower, her ripped buttocks delineating each step. The shower is glass-walled. As $he washes, several of your other slaves are waking up and starting their days. They can't help but stare as $activeSlave.slaveName soaps $himself. $activeSlave.slaveName enjoys the attention. + $He finishes posing with an impressive display of $his obliques. $He walks powerfully to the shower, $his ripped buttocks delineating each step. The shower is glass-walled. As $he washes, several of your other slaves are waking up and starting their days. They can't help but stare as $activeSlave.slaveName soaps $himself. $activeSlave.slaveName enjoys the attention. <</replace>> <</link>> @@ -13345,19 +13347,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Let $him get dressed and spend some quality time with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You let $activeSlave.slaveName don a nice dress and take $him out. $He's a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on $his face and the gentle breeze around $his ears convince $him there's no trick. $He watches you shyly as you lead her around, soaking in the sights and relaxing. Though you still speak as $his <<= WrittenMaster()>>, you chat about goings on around the arcology, and you buy $him a fresh fruit from a vendor. The unexpected show of care and compassion has her quite agog. By the time you take $him out onto another parklike balcony and fuck $him on a bench, + You let $activeSlave.slaveName don a nice dress and take $him out. $He's a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on $his face and the gentle breeze around $his ears convince $him there's no trick. $He watches you shyly as you lead $him around, soaking in the sights and relaxing. Though you still speak as $his <<= WrittenMaster($activeSlave)>>, you chat about goings on around the arcology, and you buy $him a fresh fruit from a vendor. The unexpected show of care and compassion has her quite agog. By the time you take $him out onto another parklike balcony and fuck $him on a bench, <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>> - her chastity cage is dribbling precum, a sign $he wouldn't mind having to take it up the ass. + $his chastity cage is dribbling precum, a sign $he wouldn't mind having to take it up the ass. <<elseif ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "combined chastity")>> - her combined chastity cage and anal chastity belt makes her move awkwardly. + $his combined chastity cage and anal chastity belt makes $him move awkwardly. <<elseif ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "anal chastity")>> - her dick is tenting the front of her dress, through her anal chastity belt. + $his dick is tenting the front of $his dress, through $his anal chastity belt. <<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> - her dick is tenting the front of her dress and $he's happy to take it up the ass. + $his dick is tenting the front of $his dress and $he's happy to take it up the ass. <<elseif ($activeSlave.dick > 6)>> - $he's happy to take it up the ass; there's even a steady stream of pre dripping from her monstrous cock. + $he's happy to take it up the ass; there's even a steady stream of pre dripping from $his monstrous cock. <<elseif ($activeSlave.dick > 0)>> - $he's happy to take it up the ass, though there's no sign of an erection from her useless sissy dick. + $he's happy to take it up the ass, though there's no sign of an erection from $his useless sissy dick. <<elseif !canDoVaginal($activeSlave)>> $he's obviously ready and willing to get buttfucked, even if $his body has no physically obvious way to shot it off. <<else>> @@ -13368,22 +13370,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> <<= AnalVCheck()>> <</if>> - There's no hesitation or fear at all on her face when $he sees you're returning $him to your penthouse; @@.mediumaquamarine;her trust in you has increased.@@ + There's no hesitation or fear at all on $his face when $he sees you're returning $him to your penthouse; @@.mediumaquamarine;$his trust in you has increased.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>><<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && (($activeSlave.vagina == -1) && ($activeSlave.anus == 0)) || ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>> <<if canDoAnal($activeSlave)>> -<br><<link "Dominate her narrow ass">> +<br><<link "Dominate $his narrow ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You make a show of examining her with a critical air that makes her aware of her modest endowments. Finished, you announce in a serious tone that you're concerned that you can't tell if $he's a girl, since girls have breasts and butts.<<if $activeSlave.belly >= 1500>> $He should do something about that bulbous gut too, you mock.<</if>> + You make a show of examining $him with a critical air that makes $him aware of $his modest endowments. Finished, you announce in a serious tone that you're concerned that you can't tell if $he's a girl, since girls have breasts and butts.<<if $activeSlave.belly >= 1500>> $He should do something about that bulbous gut too, you mock.<</if>> <<if !canTalk($activeSlave)>> $He protests wordlessly, gesturing desperately at $himself. <<else>> <<if ($activeSlave.lips > 70)>> - $He protests through her huge lips, + $He protests through $his huge lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - $He protests through her piercings, + $He protests through $his piercings, <<else>> $He protests, <</if>> @@ -13397,7 +13399,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> lie face down on the couch<<if $PC.dick == 0>> while you don a strap-on<</if>>. <</if>> - $He does doubtfully, only realizing what you intend when $he feels <<if $PC.dick == 0>>the strap-on<<else>>your dickhead<</if>> forcing its way between her narrow buttcheeks. + $He does doubtfully, only realizing what you intend when $he feels <<if $PC.dick == 0>>the strap-on<<else>>your dickhead<</if>> forcing its way between $his narrow buttcheeks. <<= AnalVCheck()>> $He whimpers and moans <<if $activeSlave.belly < 300000>>into the couch<</if>> @@ -13412,27 +13414,27 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Catch $him at it and punish $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - It's childishly easy to catch her at it. You simply call a slave eating her breakfast away over the arcology's audio system, and then enter the kitchen by a different door. $activeSlave.slaveName has the departed slave's cup in $his hand and halfway to $his mouth when $he's caught in the act. You relieve her of her prize, and finding that $he has not started her own proper portion, pour it out onto the floor. You tell $him to lap it up without using $his hands, and begin counting down from ten. $He obeys, + It's childishly easy to catch $him at it. You simply call a slave eating $his breakfast away over the arcology's audio system, and then enter the kitchen by a different door. $activeSlave.slaveName has the departed slave's cup in $his hand and halfway to $his mouth when $he's caught in the act. You relieve $him of $his prize, and finding that $he has not started $his own proper portion, pour it out onto the floor. You tell $him to lap it up without using $his hands, and begin counting down from ten. $He obeys, <<if $activeSlave.belly >= 300000>> - only to find $his _belly stomach keeps her from reaching the puddle. When you reach zero you shove her over $his middle, face first into the pool of slave food, and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass. + only to find $his _belly stomach keeps $him from reaching the puddle. When you reach zero you shove $him over $his middle, face first into the pool of slave food, and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass. <<else>> - but slowly and hesitantly. When you reach zero you order $him to get to all fours and administer a stinging slap across her thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass. + but slowly and hesitantly. When you reach zero you order $him to get to all fours and administer a stinging slap across $his thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass. <</if>> $He alternates ten seconds of desperate lapping with being beaten across the buttocks until $he's done, by which time $he is @@.gold;desperate to obey and avoid further punishment.@@ <<set $activeSlave.trust -= 5>> <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Make her eat in your office and keep her busy while $he does">> +<br><<link "Make $his eat in your office and keep $his busy while $he does">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He knows what it means when $he's informed that her meals will now be available in your office only. You not only supervise her intake strictly, but set up a bowl for her on a little stand so the chubby bitch can lap up her food hands free on + $He knows what it means when $he's informed that $him meals will now be available in your office only. You not only supervise $him intake strictly, but set up a bowl for $his on a little stand so the chubby bitch can lap up $him food hands free on <<if $activeSlave.belly >= 300000>> - her _belly belly, + $his _belly belly, <<else>> all fours, <</if>> - leaving her open for use from behind. + leaving $his open for use from behind. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> <<= BothVCheck(3, 3)>> <<elseif canDoVaginal($activeSlave)>> @@ -13440,22 +13442,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif canDoAnal($activeSlave)>> <<= AnalVCheck(6)>> <</if>> - You're careful to avoid associating pleasure with misbehavior by taking her cruelly every time $he eats, pinching $his nipples, and slapping her <<if $seeRace == 1>>$activeSlave.race <</if>> ass as you ride $him. This is so effective that @@.gold;$he learns to obey@@ and @@.orange;loses weight@@ both. + You're careful to avoid associating pleasure with misbehavior by taking $his cruelly every time $he eats, pinching $his nipples, and slapping $him <<if $seeRace == 1>>$activeSlave.race <</if>> ass as you ride $him. This is so effective that @@.gold;$he learns to obey@@ and @@.orange;loses weight@@ both. <<set $activeSlave.trust -= 5, $activeSlave.weight -= 10, $activeSlave.diet = "healthy">> <</replace>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> <</if>> -<br><<link "Fill her up with water as punishment">> +<br><<link "Fill $his up with water as punishment">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You meet $him in time for her next meal and tell $him that you're aware of her stealing. You indicate a table full of cups, and tell $him that $he can drink as much as $he wants from them if $he'll tell you the truth. $He confesses, and is horrified to find they're full of water, not food. You add casually that $he can choose not to 'eat' the contents... but that $he'll get no real food until $he finishes every one. Torn between hunger and reluctance, $he spends the next hour struggling with so much water that you have to check her for water intoxication. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a bulging<</if>> stomach and a @@.gold;sincere desire to avoid further punishment.@@ + You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he can drink as much as $he wants from them if $he'll tell you the truth. $He confesses, and is horrified to find they're full of water, not food. You add casually that $he can choose not to 'eat' the contents... but that $he'll get no real food until $he finishes every one. Torn between hunger and reluctance, $he spends the next hour struggling with so much water that you have to check $him for water intoxication. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a bulging<</if>> stomach and a @@.gold;sincere desire to avoid further punishment.@@ <<set $activeSlave.trust -= 5>> <</replace>> <</link>> -<br><<link "Make her eat until $he regrets it">> +<br><<link "Make $his eat until $he regrets it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You meet $him in time for her next meal and tell $him that you're aware of her stealing. You indicate a table full of cups, and tell $him that $he is going to eat the contents of every last one, every day, until $he regrets being a glutton. $He gulps at the sight, but eagerly digs in. As $his stomach steadily distends and the cups rapidly empty, you realize you may have made a mistake. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a hugely bulging<</if>> stomach and a @@.mediumorchid;smirk at your so-called punishment.@@ + You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You indicate a table full of cups, and tell $him that $he is going to eat the contents of every last one, every day, until $he regrets being a glutton. $He gulps at the sight, but eagerly digs in. As $his stomach steadily distends and the cups rapidly empty, you realize you may have made a mistake. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a hugely bulging<</if>> stomach and a @@.mediumorchid;smirk at your so-called punishment.@@ <<set $activeSlave.devotion -= 5, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>> <<if $activeSlave.bellyPreg > 0 || $activeSlave.bellyImplant > 0>> <<set $activeSlave.inflation = 1>> @@ -13469,7 +13471,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Restrict $him to nothing but fresh cum from the Dairy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You meet $him in time for her next meal and tell $him that you're aware of her stealing. You tell $him that you understand her need to eat, and that for the rest of the week you'll mercifully be allowing $him to try a new diet on which $he can eat as much as $he wants. $He's overjoyed <<if canHear($activeSlave)>>to hear it<<elseif canSee($activeSlave)>>when $he reads it on a nearby screen display<<else>>when $he figures it out<</if>>, though this pleasure is replaced with extreme disgust when $he learns that her only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and $he spends most of the week going around with a @@.hotpink;preoccupied@@ look on her face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, $he's starting to @@.lightcoral;salivate@@ at the mere scent of ejaculate. + You meet $him in time for $his next meal and tell $him that you're aware of $his stealing. You tell $him that you understand $his need to eat, and that for the rest of the week you'll mercifully be allowing $him to try a new diet on which $he can eat as much as $he wants. $He's overjoyed <<if canHear($activeSlave)>>to hear it<<elseif canSee($activeSlave)>>when $he reads it on a nearby screen display<<else>>when $he figures it out<</if>>, though this pleasure is replaced with extreme disgust when $he learns that $his only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and $he spends most of the week going around with a @@.hotpink;preoccupied@@ look on $his face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, $he's starting to @@.lightcoral;salivate@@ at the mere scent of ejaculate. <<set $activeSlave.devotion += 4, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.inflation = 1, $activeSlave.inflationType = "cum", $activeSlave.inflationMethod = 1>> <<run SetBellySize($activeSlave)>> <</replace>> @@ -13483,17 +13485,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.belly >= 10000>> - beside you and cozying up to your pregnant belly and sliding a hand down to see to your pussy without hesitation. You help her get comfortable and instead of demanding $he please you or get down on all fours, you just sit there with $him, + beside you and cozying up to your pregnant belly and sliding a hand down to see to your pussy without hesitation. You help $him get comfortable and instead of demanding $he please you or get down on all fours, you just sit there with $him, <<elseif $PC.dick == 0>> - into your lap without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, + into your lap without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $his in your lap, <<else>> onto your member <<if $PC.vagina == 1>> and sliding a hand down to see to your pussy <</if>> - without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, + without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $his in your lap, <</if>> - gently massaging her massive tits. They get sore from swinging around as $he moves, works, and fucks, and soon $he's groaning with pleasure at the attention. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples. @@.mediumaquamarine;$He has become more trusting of you.@@ + gently massaging $his massive tits. They get sore from swinging around as $he moves, works, and fucks, and soon $he's groaning with pleasure at the attention. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples. @@.mediumaquamarine;$He has become more trusting of you.@@ <<set $activeSlave.trust += 4, $activeSlave.mammaryCount++, $mammaryTotal++>> <<if $activeSlave.lactation > 0>> <<set $activeSlave.lactationDuration = 2>> @@ -13505,16 +13507,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave) && $activeSlave.belly < 100000>> -<br><<link "Use her so they swing around">> +<br><<link "Use $him so they swing around">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly arches her back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter + You tell $him to kneel on the smooth floor. $He knows this means doggy style, so $he compliantly arches $his back and cocks $his hips to offer $himself to you. You<<if $PC.dick == 0>> don a strap-on and<</if>> enter <<if canDoVaginal($activeSlave)>> $his pussy <<else>> $his ass <</if>> - without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to her pendulous breasts: as you pound her hard, her long nipples frequently brush against the floor, causing $him to wince and buck. + without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his pendulous breasts: as you pound $him hard, $his long nipples frequently brush against the floor, causing $him to wince and buck. <<if $activeSlave.dick > 0 && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> <<if canAchieveErection($activeSlave)>> $His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal. @@ -13533,11 +13535,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $PC.dick == 0>> and shake with climax, <<else>> - to spill your seed deep inside her + to spill your seed deep inside $his <<if canDoAnal($activeSlave)>> - butt, ramming forward hard enough to spill her down onto her bosom. As you rise, her discomfited form is a pretty sight, with $his breasts squashed against the floor and her well fucked butt lewdly relaxed. + butt, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked butt lewdly relaxed. <<else>> - pussy, ramming forward hard enough to spill her down onto her bosom. As you rise, her discomfited form is a pretty sight, with $his breasts squashed against the floor and her well fucked cunt lewdly gaped. + pussy, ramming forward hard enough to spill $him down onto $his bosom. As you rise, $his discomfited form is a pretty sight, with $his breasts squashed against the floor and $his well fucked cunt lewdly gaped. <</if>> <</if>> @@.hotpink;$He has become more submissive.@@ @@ -13547,22 +13549,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> <</if>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Show her off in public">> +<br><<link "Show $him off in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring her out onto the promenade, still nude, her huge bare udders attracting open stares as her every movement sets them in motion. + You bring $him out onto the promenade, still nude, $his huge bare udders attracting open stares as $his every movement sets them in motion. <<if $activeSlave.sexualFlaw == "attention whore">> The slut loves being the center of attention and couldn't ask for more. <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>> The slut loves being embarrassed, and $he blushes furiously as $his nipples stiffen with arousal. <<elseif ($activeSlave.energy > 95)>> - The nympho slut loves being shown off, and $he flaunts her boobs shamelessly. + The nympho slut loves being shown off, and $he flaunts $his boobs shamelessly. <<elseif ($activeSlave.analCount > 100) && ($activeSlave.oralCount > 100)>> $He's such a veteran sex slave that $he takes the stares in stride. <<else>> - $He blushes a little, but tips her chin up and follows you obediently. + $He blushes a little, but tips $his chin up and follows you obediently. <</if>> - When you reach a good spot, you grab her + When you reach a good spot, you grab $his <<if ($activeSlave.weight > 30)>> fat ass <<elseif ($activeSlave.weight > 10)>> @@ -13576,22 +13578,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> and <<if ($activeSlave.height >= 185)>> - pull her tall body in + pull $his tall body in <<elseif ($activeSlave.height >= 160)>> - pull her up on tiptoe + pull $his up on tiptoe <<else>> - push her petite form up onto a railing + push $his petite form up onto a railing <</if>> - for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize her behind each knee, and + for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and <<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>> collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him. <<if $activeSlave.bellyPreg >= 600000>> - Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. + Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine. <</if>> <<elseif $activeSlave.belly >= 100000>> - pull her as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back her against a rail so that you can continue to fuck her while holding $him. + pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him. <<if $activeSlave.bellyPreg >= 600000>> - Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. + Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine. <</if>> <<else>> hoist $his legs up so $he's pinned against your @@ -13619,33 +13621,33 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<= AnalVCheck()>> <</if>> - $He loses all composure, gasping and panting as the massive weight of $his chest bounces up and down, making an audible clap with each stroke as her huge tits slap painfully together. Despite this, or perhaps partly because of it, $he begins to orgasm, + $He loses all composure, gasping and panting as the massive weight of $his chest bounces up and down, making an audible clap with each stroke as $his huge tits slap painfully together. Despite this, or perhaps partly because of it, $he begins to orgasm, <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - the discomfort of being half-hard under her chastity cage making her squirm as cum rushes out of the hole at its tip. + the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip. <<elseif canAchieveErection($activeSlave)>> <<if ($activeSlave.dick > 3)>> - her monster of a cock releasing a jet of cum with each thrust into $him. + $his monster of a cock releasing a jet of cum with each thrust into $him. <<elseif ($activeSlave.dick > 3)>> - her huge cock releasing a jet of cum with each thrust into $him. + $his huge cock releasing a jet of cum with each thrust into $him. <<elseif ($activeSlave.dick > 1)>> $his cock releasing a spurt of cum with each thrust into $him. <<else>> - her tiny dick spurting cum with each thrust into $him. + $his tiny dick spurting cum with each thrust into $him. <</if>> <<elseif ($activeSlave.dick > 9)>> - her huge, soft cock spurting cum as it wiggles to your motions. + $his huge, soft cock spurting cum as it wiggles to your motions. <<elseif ($activeSlave.dick > 0)>> - her soft cock scattering cum all over the place as it flops around. + $his soft cock scattering cum all over the place as it flops around. <<elseif ($activeSlave.belly >= 1500)>> - her <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to her near-total discomfiture. + $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture. <<elseif $activeSlave.weight > 95>> - her soft body jiggling as $he climaxes. + $his soft body jiggling as $he climaxes. <<elseif ($activeSlave.muscles > 5)>> - her abs convulsing deliciously as $he climaxes. + $his abs convulsing deliciously as $he climaxes. <<elseif canDoVaginal($activeSlave)>> $his 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>> @@ -13655,11 +13657,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "hugely pregnant">> -<<link "Help her with those hard to reach places">> +<<link "Help $him with those hard to reach places">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's absorbed enough with her application that $he starts with surprise when you gently encircle her from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of her back<</if>>. When you take the lotion and begin to lovingly massage it into her harder to reach areas, $he sighs with pleasure and leans against you. - <<if ($activeSlave.amp != 1) && $PC.belly >= 1500>> $He takes the lotion and begins to return the favor. You spend the rest of her break carefully massaging each other's baby bumps.<</if>> + $He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans against you. + <<if ($activeSlave.amp != 1) && $PC.belly >= 1500>> $He takes the lotion and begins to return the favor. You spend the rest of $his break carefully massaging each other's baby bumps.<</if>> <<if !canTalk($activeSlave)>> <<if $activeSlave.voice == 0>> $He looks like $he would love to thank you, were $he not mute. @@ -13668,9 +13670,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if ($activeSlave.lips > 70)>> - $He murmurs through her huge lips, + $He murmurs through $his huge lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - $He murmurs through her piercings, + $He murmurs through $his piercings, <<else>> $He murmurs, <</if>> @@ -13684,12 +13686,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if (canDoAnal($activeSlave) && $activeSlave.mpreg == 1) || (canDoVaginal($activeSlave))>> -<br><<link "Gently fuck her while helping her apply lotion">> +<br><<link "Gently fuck $him while helping $him apply lotion">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's absorbed enough with her application that $he starts with surprise when you gently encircle her from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of her back<</if>>. When you take the lotion and begin to lovingly massage it into her harder to reach areas, $he sighs with pleasure and leans back into you. $He feels <<if $PC.dick == 0>>the warmth of your growing arousal<<else>>your erection hard<</if>> against $him, so $he + $He's absorbed enough with $his application that $he starts with surprise when you gently encircle $him from behind with a hug<<if $PC.belly >= 5000>>, pushing your own gravid belly into the small of $his back<</if>>. When you take the lotion and begin to lovingly massage it into $his harder to reach areas, $he sighs with pleasure and leans back into you. $He feels <<if $PC.dick == 0>>the warmth of your growing arousal<<else>>your erection hard<</if>> against $him, so $he <<if ($activeSlave.amp == 1)>> - wriggles her limbless form around on the floor so as to offer $himself to you. + wriggles $his limbless form around on the floor so as to offer $himself to you. <<else>> slowly kneels down with you into a comfortable lotus position on the bathroom floor. <</if>> @@ -13698,13 +13700,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> <<= VaginalVCheck()>> <</if>> - Coupling like this, you can't <<if $PC.dick == 0>>scissor<<else>>fuck<</if>> her all that hard, but that's just fine given + Coupling like this, you can't <<if $PC.dick == 0>>scissor<<else>>fuck<</if>> $him all that hard, but that's just fine given <<if $PC.preg >= 5000>> your condition. <<else>> $his condition. <</if>> - $He snuggles back into you as you have gentle sex while looking after her drum-taut skin. + $He snuggles back into you as you have gentle sex while looking after $his drum-taut skin. <<if !canTalk($activeSlave)>> <<if $activeSlave.voice == 0>> $He looks like $he would love to thank you, were $he not mute. @@ -13713,9 +13715,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if ($activeSlave.lips > 70)>> - $He murmurs through her huge lips, + $He murmurs through $his huge lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - $He murmurs through her piercings, + $He murmurs through $his piercings, <<else>> $He murmurs, <</if>> @@ -13731,16 +13733,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "$His backdoor can't get more pregnant">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's absorbed enough with her application that $he starts with surprise when you seize $his hips and bend her over the sink for a quick assfuck. + $He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck. <<= AnalVCheck()>> <<if ($activeSlave.amp != 1)>> - $He does her best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time. + $He does $his best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time. <</if>> Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave. <<if ($activeSlave.lactation == 1)>> - As you pound $him, $his breasts, sore from lactation, give her quite a bit of discomfort. + As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort. <<elseif ($activeSlave.boobs > 1000)>> - As you pound $him, her huge breasts compound the discomfort. + As you pound $him, $his huge breasts compound the discomfort. <</if>> When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@ <<set $activeSlave.devotion += 4>> @@ -13750,16 +13752,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "$His backdoor isn't pregnant">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's absorbed enough with her application that $he starts with surprise when you seize $his hips and bend her over the sink for a quick assfuck. + $He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and bend $him over the sink for a quick assfuck. <<= AnalVCheck()>> <<if ($activeSlave.amp != 1)>> - $He does her best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time. + $He does $his best to brace $himself against the sink, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time. <</if>> Taking it up the ass while hugely pregnant isn't the most comfortable way to have sex, but such is the life of a sex slave. <<if ($activeSlave.lactation == 1)>> - As you pound $him, $his breasts, sore from lactation, give her quite a bit of discomfort. + As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort. <<elseif ($activeSlave.boobs > 1000)>> - As you pound $him, her huge breasts compound the discomfort. + As you pound $him, $his huge breasts compound the discomfort. <</if>> When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief. @@.hotpink;$He has become more submissive.@@ <<set $activeSlave.devotion += 4>> @@ -13768,17 +13770,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <<if (canDoAnal($activeSlave) && $activeSlave.mpreg == 1) || (canDoVaginal($activeSlave)) && $activeSlave.belly >= 300000>> -<br><<link "Tip her over and fuck $him">> +<br><<link "Tip $him over and fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's absorbed enough with her application that $he starts with surprise when you seize $his hips and shove her onto $his _belly stomach for a quick fuck. + $He's absorbed enough with $his application that $he starts with surprise when you seize $his hips and shove $him onto $his _belly stomach for a quick fuck. <<if $activeSlave.mpreg == 1>> <<= AnalVCheck()>> <<else>> <<= VaginalVCheck()>> <</if>> <<if ($activeSlave.amp != 1)>> - $He does her best to steady $himself atop the squirming mass, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time. + $He does $his best to steady $himself atop the squirming mass, but $his hands are slick from the lotion and $he slides around for a while before $he gives up and accepts that $he's in for an uncomfortable time. <</if>> <<if $activeSlave.mpreg == 1>> Taking it up the ass @@ -13787,11 +13789,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> while hugely pregnant isn't the most comfortable way to have sex, neither is being forced to put more pressure on an already overfilled organ, but such is the life of a sex slave. <<if ($activeSlave.lactation == 1)>> - As you pound $him, $his breasts, sore from lactation, give her quite a bit of discomfort. + As you pound $him, $his breasts, sore from lactation, give $him quite a bit of discomfort. <<elseif ($activeSlave.boobs > 1000)>> - As you pound $him, her huge breasts compound the discomfort. + As you pound $him, $his huge breasts compound the discomfort. <</if>> - When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief and rolls onto her side. @@.hotpink;$He has become more submissive.@@ + When you finally finish and withdraw your <<if $PC.dick == 0>>vibrating strap-on<<else>>cock<</if>>, $he groans with relief and rolls onto $his side. @@.hotpink;$He has become more submissive.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $activeSlave.mpreg == 0>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> @@ -13834,7 +13836,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $activeSlave.slaveName's hermaphroditic genitalia is a little crammed together; it's busy down there. $He obediently stops fucking so you can maneuver into $him. <<= VaginalVCheck()>> - Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his erection a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= WrittenMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once.<<if $PC.vagina == 1>><<if $PC.dick == 1>> You add a third by grabbing a free hand and guiding it to your own pussy; its owner gets the idea and strokes it as best they can.<</if>><</if>> $activeSlave.slaveName's orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@ + Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his erection a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= properMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once.<<if $PC.vagina == 1>><<if $PC.dick == 1>> You add a third by grabbing a free hand and guiding it to your own pussy; its owner gets the idea and strokes it as best they can.<</if>><</if>> $activeSlave.slaveName's orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@ <<set $activeSlave.devotion += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>> <</replace>> <</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>> @@ -13867,9 +13869,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "The slave giving it has a free pussy, use that">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop her thrusting for a moment, and insert yourself into $his pussy. $He obediently stops fucking so you can maneuver into $him. + Since $activeSlave.slaveName is on top, it's a trivial matter to<<if $PC.dick == 0>> don a strap-on,<</if>> come up behind the fucking slaves, stop $his thrusting for a moment, and insert yourself into $his pussy. $He obediently stops fucking so you can maneuver into $him. <<= VaginalVCheck()>> - Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his ability to use $his engorged clit like a penis a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= WrittenMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once. $His orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@ + Having a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> in $his pussy reduces $his ability to use $his engorged clit like a penis a little, so the slave beneath $him helps $his penetration as much as _heU can. It's not the most convenient of fucks, but that's to be expected when a <<= properMaster()>> and two slaves successfully have two separate instances of vaginal intercourse running at once. $His orgasm is general and intense. @@.hotpink;$His devotion to you has increased.@@ <<set $activeSlave.devotion += 4, $activeSlave.penetrativeCount++, $penetrativeTotal++>> <</replace>> <</link>><<if ($activeSlave.vagina == 0)>> //This option will take vaginal virginity//<</if>> @@ -13895,7 +13897,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> hot cunt, and the obedient slave <<if $activeSlave.belly >= 5000>>hefts $himself<<else>>clambers<</if>> up to eat you out. You surprise $him by taking your time, drawing out the oral session with the ulterior motive of getting as much saliva and pussyjuice onto the glass as possible. <</if>> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> shifts her avatar so that this lands all over her + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> shifts _hisA avatar so that this lands all over _hisA <<switch $assistantAppearance>> <<case "monstergirl">> cocks. @@ -13930,31 +13932,31 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "schoolgirl">> pretty young pussy. <</switch>> - "Clean me off, $activeSlave.slaveName," $he demands, winking broadly at you. The slave, knowing that commands from her are commands from you, repositions $himself to lick up the <<if $PC.dick == 1>>ejaculate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>girlcum<</if>>. + "Clean me off, $activeSlave.slaveName," _heA demands, winking broadly at you. The slave, knowing that commands from _himA are commands from you, repositions $himself to lick up the <<if $PC.dick == 1>>ejaculate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>girlcum<</if>>. <br><br> This brings the slave into a crouch with $his ass pointed at you, <<if canDoVaginal($activeSlave)>> <<if $activeSlave.vagina > 2>> - her experienced pussy practically begging for a pounding. + $his experienced pussy practically begging for a pounding. <<elseif $activeSlave.vagina > 1>> - her nice pussy practically begging for a good hard fucking. + $his nice pussy practically begging for a good hard fucking. <<else>> - her tight little pussy completely vulnerable. + $his tight little pussy completely vulnerable. <</if>> - As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get fucked!" The slave reacts by obediently reaching back to spread her buttocks and relaxing, but $assistantName ruins her attempt at graceful submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention stimulation, as you penetrate $him. + As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get fucked!" The slave reacts by obediently reaching back to spread $his buttocks and relaxing, but $assistantName ruins $his attempt at graceful submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention stimulation, as you penetrate $him. <<= VaginalVCheck()>> <<else>> <<if $activeSlave.anus > 2>> - her big asspussy practically begging for a pounding. + $his big asspussy practically begging for a pounding. <<elseif $activeSlave.anus > 1>> - her nice asshole practically begging for a good hard fucking. + $his nice asshole practically begging for a good hard fucking. <<else>> - her tight little rosebud completely vulnerable. + $his tight little rosebud completely vulnerable. <</if>> - As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get buttfucked!" The slave reacts by obediently reaching back to spread her buttocks, and relaxes $his anus, but $assistantName ruins her attempt at graceful anal submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention discomfort, as you penetrate $him. + As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get buttfucked!" The slave reacts by obediently reaching back to spread $his buttocks, and relaxes $his anus, but $assistantName ruins $his attempt at graceful anal submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention discomfort, as you penetrate $him. <<= AnalVCheck()>> <</if>> - $He keeps licking away, cleaning up the mess you made as $assistantName does everything $he can to make it seem like the slave is pleasuring $him. Partway through, $assistantName sticks out a hand for a high-five from you, producing a gurgle of indignation @@.mediumaquamarine;or perhaps even laughter@@ as her owner and her owner's personal assistant program high-five over her back. + $He keeps licking away, cleaning up the mess you made as $assistantName does everything $he can to make it seem like the slave is pleasuring $him. Partway through, $assistantName sticks out a hand for a high-five from you, producing a gurgle of indignation @@.mediumaquamarine;or perhaps even laughter@@ as $his owner and $his owner's personal assistant program high-five over $his back. <<set $activeSlave.trust += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> @@ -13966,27 +13968,27 @@ You tell her kindly that you understand, and that $he'll be trained to address t "Um, hi <<Master>>" from $activeSlave.slaveName, and ask $assistantName if $he'd like to DP the slave with you. <<switch $assistantAppearance>> <<case "monstergirl">> - "Oh yes," $he purrs threateningly over the slave's moan of apprehension, and her avatar begins to stroke its dicks meaningfully. + "Oh yes," _heA purrs threateningly over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA dicks meaningfully. <<case "shemale" "incubus">> - "Fuck yes," $he groans over the slave's moan of apprehension, and her avatar begins to stroke its cock meaningfully. + "Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar begins to stroke _hisA cock meaningfully. <<case "amazon">> - "Yeah!" $he shouts over the slave's moan of apprehension, and her avatar quickly dons a big strap-on carved from mammoth tusk. + "Yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on carved from mammoth tusk. <<case "businesswoman">> - "Oh yes," $he purrs sadistically over the slave's moan of apprehension, and her avatar quickly dons a big strap-on. + "Oh yes," _heA purrs sadistically over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on. <<case "fairy" "pregnant fairy">> - "Oh yeah!" $he shouts over the slave's moan of apprehension, and her avatar quickly conjures up a magic floating dick. + "Oh yeah!" _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly conjures up a magic floating dick. <<case "goddess" "hypergoddess">> - "That would be lovely," $he says radiantly over the slave's moan of apprehension, and her avatar acquires a phallus of light. + "That would be lovely," _heA says radiantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light. <<case "angel" "cherub">> - "If you insist," $he says reluctantly over the slave's moan of apprehension, and her avatar acquires a phallus of light. + "If you insist," _heA says reluctantly over the slave's moan of apprehension, and _hisA avatar acquires a phallus of light. <<case "succubus">> - "Just this once," $he says stroking $his clit as it steadily swells into a fully functional cock. + "Just this once," _heA says stroking $his clit as it steadily swells into a fully functional cock. <<case "imp">> - "Fuck yes," $he groans over the slave's moan of apprehension, and her avatar quickly dons a huge, spiked strap-on. + "Fuck yes," _heA groans over the slave's moan of apprehension, and _hisA avatar quickly dons a huge, spiked strap-on. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - "Of course," $he shouts over the slave's moan of apprehension, and her avatar quickly forms a huge, fleshy, bulbous cock. + "Of course," _heA shouts over the slave's moan of apprehension, and _hisA avatar quickly forms a huge, fleshy, bulbous cock. <<default>> - "Fuck yeah!" $he cheers over the slave's moan of apprehension, and her avatar quickly dons a big strap-on. + "Fuck yeah!" _heA cheers over the slave's moan of apprehension, and _hisA avatar quickly dons a big strap-on. <</switch>> You indicate a fuckmachine in the corner of the room, and the slave obediently hurries over to it. It's vertical, and $he hops up on it, positioning $his anus over its <<switch $assistantAppearance>> @@ -14019,19 +14021,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> feminine <</if>> - thighs quivering a little from supporting $his body in its perch atop the machine, and from the fullness of $his anus. $He knows this is going to be challenging, and is breathing deeply, doing her best to stay relaxed. You cannot resist slapping your <<if $PC.dick == 1>>big cock lightly<<else>>lubricated strap-on<</if>> against $his cheek, producing a groan of apprehension. + thighs quivering a little from supporting $his body in its perch atop the machine, and from the fullness of $his anus. $He knows this is going to be challenging, and is breathing deeply, doing $his best to stay relaxed. You cannot resist slapping your <<if $PC.dick == 1>>big cock lightly<<else>>lubricated strap-on<</if>> against $his cheek, producing a groan of apprehension. <br><br> - You push her gently backward, letting her get accustomed to the new angle.<<if $activeSlave.boobs > 2000>> $His monstrous tits spread to either side of her <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>now upright torso<</if>>, and you take a moment to play with them as $he prepares $himself.<</if>> + You push $him gently backward, letting $him get accustomed to the new angle.<<if $activeSlave.boobs > 2000>> $His monstrous tits spread to either side of $his <<if $activeSlave.belly >= 5000>>_belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<<else>>now upright torso<</if>>, and you take a moment to play with them as $he prepares $himself.<</if>> <<if canDoVaginal($activeSlave)>> - $He gasps as $he feels <<if $PC.dick == 1>>your hot dickhead<<else>>the slick head of your strap-on<</if>> part her pussylips, no doubt feeling full already. + $He gasps as $he feels <<if $PC.dick == 1>>your hot dickhead<<else>>the slick head of your strap-on<</if>> part $his pussylips, no doubt feeling full already. <<= VaginalVCheck(3)>> When you're all the way in, the <<if $assistantAppearance == "monstergirl">>dildos in $his butt begin<<else>>dildo in $his butt begins<</if>> to fuck $him, harder and harder, as $assistantName moans happily. The all-encompassing feeling of fullness as $his cunt and ass are fucked to the very limit of their capacities <<else>> - $He gasps as $he feels you push a finger up her already-full butt and pull her sphincter a bit wider. You withdraw it and replace it with <<if $PC.dick == 1>>your turgid cock<<else>>your strap-on<</if>>; the slave writhes involuntarily, $his body trying to refuse the invasion of yet another phallus. + $He gasps as $he feels you push a finger up $his already-full butt and pull $his sphincter a bit wider. You withdraw it and replace it with <<if $PC.dick == 1>>your turgid cock<<else>>your strap-on<</if>>; the slave writhes involuntarily, $his body trying to refuse the invasion of yet another phallus. <<= AnalVCheck(3)>> When you're all the way in, the <<if $assistantAppearance == "monstergirl">>dildos alongside your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> in $his butt begin<<else>>dildo alongside your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> in $his butt begins<</if>> to fuck $him, harder and harder, as $assistantName moans happily. The all-encompassing feeling of fullness as $his ass is fucked to the very limit of its capacity <</if>> - quickly drives all feminine grace, presence of mind, or really, @@.hotpink;conscious thought out of the poor slave.@@ After begging for mercy for a short while, $he lapses into animal groans, drooling and leaking tears out the corner of $his eyes as you and $assistantName fuck her into insensibility. When you climax, $assistantName ejaculates, filling the slave's anus with warm fluid. + quickly drives all feminine grace, presence of mind, or really, @@.hotpink;conscious thought out of the poor slave.@@ After begging for mercy for a short while, $he lapses into animal groans, drooling and leaking tears out the corner of $his eyes as you and $assistantName fuck $him into insensibility. When you climax, $assistantName ejaculates, filling the slave's anus with warm fluid. <br><br> By this point $he's so helpless that you <<if $activeSlave.belly >= 300000 || $activeSlave.weight > 190>> @@ -14039,7 +14041,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> gently lift <</if>> - her off the fuckmachine and carry $him to the shower. You set her down there, and $assistantName activates the water, using the powerful jets in pulses to massage life back into your exhausted fuckpuppet. $His avatar appears on a screen behind the shower, creating an optical illusion that makes it look like $he's petting the slave in time with the water. $He reassures to the slave as $he does: + $him off the fuckmachine and carry $him to the shower. You set $him down there, and $assistantName activates the water, using the powerful jets in pulses to massage life back into your exhausted fuckpuppet. $His avatar appears on a screen behind the shower, creating an optical illusion that makes it look like $he's petting the slave in time with the water. $He reassures to the slave as $he does: <<switch $assistantAppearance>> <<case "monstergirl">> "You're a good little cocksock," $he says kindly. @@ -14075,45 +14077,45 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $He asked for it, and $he'll get it. You get to your <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory) || !canDoAnal($activeSlave)>> - feet, unhook her chastity, + feet, unhook $his chastity, <<else>> feet <</if>> and snap your fingers, pointing <<if $PC.dick == 0>> - at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help her understand by grabbing her on either side of her neck and + at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by grabbing $him on either side of $his neck and <<if $activeSlave.belly >= 300000>> pulling onto $his _belly stomach <<else>> - shoving her down to kneel at your feet + shoving $him down to kneel at your feet <</if>> - with her face + with $his face <<if $PC.belly >= 5000>> crammed under your pregnant belly, level with your cunt. <<else>> level with your cunt. <</if>> - One of your hands shifts behind her head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least. + One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least. <<else>> at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and <<if $activeSlave.belly >= 5000>> - gently eases her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground, + gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground, <<else>> kneels, <</if>> - $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help her understand by shoving her down so her collarbone is resting on the back of the couch and $his ass is at just the right height.<<if $PC.vagina == 1>> You ensure that you're fully hard and get $him in the right frame of mind by grinding the pussy beneath your dick against $him.<</if>> You fuck + $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height.<<if $PC.vagina == 1>> You ensure that you're fully hard and get $him in the right frame of mind by grinding the pussy beneath your dick against $him.<</if>> You fuck <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $his pussy and then $his ass in quick succession, plundering $his holes without much regard for her pleasure. + $his pussy and then $his ass in quick succession, plundering $his holes without much regard for $his pleasure. <<= BothVCheck()>> $He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up $his butt. <<elseif canDoVaginal($activeSlave)>> - $his pussy hard, without much regard for her pleasure. + $his pussy hard, without much regard for $his pleasure. <<= VaginalVCheck()>> $He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up deep inside $him. <<else>> - $his ass hard, without cruelty but without much concern for her pleasure, either. + $his ass hard, without cruelty but without much concern for $his pleasure, either. <<= AnalVCheck()>> - $He takes it obediently, and does her best to act like $he's enjoying being sodomized. + $He takes it obediently, and does $his best to act like $he's enjoying being sodomized. <</if>> $He stumbles off to wash, looking oddly proud of $himself. It seems $he got something out of that: @@.mediumaquamarine;a confidence boost,@@ at least. <</if>> @@ -14125,19 +14127,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $He'll get more than $he asked for. You get to your <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory) || !canDoAnal($activeSlave)>> - feet, unhook her chastity, + feet, unhook $his chastity, <<else>> feet <</if>> and snap your fingers, pointing <<if $PC.dick == 0>> - at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help her understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot. + at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot. <<if $activeSlave.belly >= 5000>> $His <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form <<else>> $He <</if>> - collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding her head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against her crying face. + collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding $his head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against $his crying face. <<else>> at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and <<if $activeSlave.belly >= 5000>> @@ -14151,23 +14153,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> jabbing a thumb into one of $his kidneys, <</if>> - forcing her back to arch in involuntary response, and then grinding her face into the couch cushions. + forcing $his back to arch in involuntary response, and then grinding $his face into the couch cushions. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> $His cunt isn't all that wet, and $he has cause to regret this, first when you fuck it without mercy, and then when you switch your barely-lubricated dick to $his anus. <<= BothVCheck()>> - $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape her into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. + $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. <<elseif canDoVaginal($activeSlave)>> $His cunt isn't all that wet, and $he has cause to regret this as you waste no time with foreplay. <<= VaginalVCheck()>> - $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape her into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside her since it's a danger day<</if>>. + $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape $him into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside $him since it's a danger day<</if>>. <<else>> - You spit on $his asshole and then give her some anal foreplay, if slapping your dick against $his anus twice before shoving it inside her counts as anal foreplay. + You spit on $his asshole and then give $him some anal foreplay, if slapping your dick against $his anus twice before shoving it inside $him counts as anal foreplay. <<= AnalVCheck()>> - $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape her into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. + $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. <</if>> It isn't the first time you've heard that, or the hundredth. <</if>> - When you're done, you discard her like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but strangely @@.hotpink;complacent,@@ as though $he's accepted this to an extent. + When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but strangely @@.hotpink;complacent,@@ as though $he's accepted this to an extent. <<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>> <</replace>> <</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>> @@ -14184,13 +14186,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> hugs $himself <</if>> - and $his knees turning inward as $he cringes, the perfect picture of the standard human fear response. It seems $he thought you wouldn't notice her insincerity. $He swallows nervously and makes no response, but then you <<if canSee($activeSlave)>>allow impatience to cloud your brow<<else>>cough with impatience<</if>> and $he hurriedly explains $himself. + and $his knees turning inward as $he cringes, the perfect picture of the standard human fear response. It seems $he thought you wouldn't notice $his insincerity. $He swallows nervously and makes no response, but then you <<if canSee($activeSlave)>>allow impatience to cloud your brow<<else>>cough with impatience<</if>> and $he hurriedly explains $himself. <<if !canTalk($activeSlave)>> - $He uses sign language to communicate that $he asked the other slaves what $he could do to improve her life, and that they told $him to do her best to win your favor. $He asked them how to do that, and they told $him to ask you to fuck $him. + $He uses sign language to communicate that $he asked the other slaves what $he could do to improve $his life, and that they told $him to do $his best to win your favor. $He asked them how to do that, and they told $him to ask you to fuck $him. <<else>> "<<Master>>, I, um, a<<s>>ked the other girl<<s>> what I could do to, you know, do better here," $he <<say>>s. "They <<s>>aid to g-get you to like me. A-and when I a<<s>>ked them how to do that, th-they <<s>>aid t-to a<<s>>k you to fuck me." <</if>> - Then $he bites her lip and <<if canSee($activeSlave)>>watches you<<else>>listens<</if>> anxiously. + Then $he bites $his lip and <<if canSee($activeSlave)>>watches you<<else>>listens<</if>> anxiously. <br><br><span id="result2"> <<link "They're not wrong">> <<replace "#result2">> @@ -14206,7 +14208,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.belly >= 300000>> pulling onto $his _belly stomach <<else>> - shoving her down to kneel at your feet + shoving $him down to kneel at your feet <</if>> with $his face <<if $PC.belly >= 5000>> @@ -14214,27 +14216,27 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> level with your cunt. <</if>> - One of your hands shifts behind her head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off, + One of your hands shifts behind $his head and tilts it back as you step forward, grinding against $his mouth. $He struggles involuntarily, but then perceptibly recollects $himself, relaxes, and starts to eat you out. Whatever internal turmoil $he's working through, you don't care, and neither does your pussy. When you climax and release $him, $he stumbles off, <<else>> at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and <<if $activeSlave.belly >= 5000>> - gently eases her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground, + gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground, <<else>> kneels, <</if>> - $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help her understand by shoving her down so her collarbone is resting on the back of the couch and $his ass is at just the right height. You fuck + $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by shoving $him down so $his collarbone is resting on the back of the couch and $his ass is at just the right height. You fuck <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $his pussy and then $his ass in quick succession, plundering $his holes without much regard for her pleasure. + $his pussy and then $his ass in quick succession, plundering $his holes without much regard for $his pleasure. <<= BothVCheck()>> $He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up $his butt. <<elseif canDoVaginal($activeSlave)>> - $his pussy hard, without much regard for her pleasure. + $his pussy hard, without much regard for $his pleasure. <<= VaginalVCheck()>> $He gasps and bucks at all the right parts, and even manages to moan almost authentically when you blow your load up deep inside $him. <<else>> - $his ass hard, without cruelty but without much concern for her pleasure, either. + $his ass hard, without cruelty but without much concern for $his pleasure, either. <<= AnalVCheck()>> - $He takes it obediently, and does her best to act like $he's enjoying being sodomized. + $He takes it obediently, and does $his best to act like $he's enjoying being sodomized. <</if>> $He stumbles off to wash, <</if>> @@ -14246,61 +14248,61 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result2">> You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is palpable, but $he's getting ahead of <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory) || !canDoAnal($activeSlave)>> - $himself as you undo her chastity. + $himself as you undo $his chastity. <<else>> $himself. <</if>> You snap your fingers, pointing <<if $PC.dick == 0>> - at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help her understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot. + at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by slapping $him, and when $he instinctively cringes away from the blow, poking the back of one of $his knees with your foot. <<if $activeSlave.belly >= 5000>> $His <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form <<else>> $He <</if>> - collapses like a doll with its strings cut, already crying. You seize her head in both hands and ride her sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding her head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against her crying face. + collapses like a doll with its strings cut, already crying. You seize $his head in both hands and ride $his sobbing mouth. If $he thought that rape required a dick, $he was wrong. If $he thought that you needed a strap-on to rape $him, $he was wrong. Your fingers form claws, holding $his head in a terrifying grip as you enjoy the not unfamiliar sensation of a slave weeping into your cunt as you grind it against $his crying face. <<else>> at the couch next to the desk<<if !canSee($activeSlave)>> along with a commanding "couch"<</if>>. $He hurries over and <<if $activeSlave.belly >= 5000>> - gently eases her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground, + gently eases $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to the ground, <<else>> kneels, <</if>> - $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help her understand by + $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help $him understand by <<if $activeSlave.belly >= 600000>> - slamming your hands against the bloated mass grossly distending her sides, + slamming your hands against the bloated mass grossly distending $his sides, <<else>> - jabbing a thumb into one of her kidneys, + jabbing a thumb into one of $his kidneys, <</if>> - forcing her back to arch in involuntary response, and then grinding her face into the couch cushions. + forcing $his back to arch in involuntary response, and then grinding $his face into the couch cushions. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> $His cunt isn't all that wet, and $he has cause to regret this, first when you fuck it without mercy, and then when you switch your barely-lubricated dick to $his anus. <<= BothVCheck()>> - $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape her into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. + $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. <<elseif canDoVaginal($activeSlave)>> $His cunt isn't all that wet, and $he has cause to regret this as you waste no time with foreplay. <<= VaginalVCheck()>> - $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape her into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside her since it's a danger day<</if>>. + $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you rape $him into inelegant, tearful begging for you to take your dick out of $his cunt because it hurts<<if canGetPregnant($activeSlave)>>, followed by desperate pleas to not cum inside $him since it's a danger day<</if>>. <<else>> - You spit on $his asshole and then give her some anal foreplay, if slapping your dick against $his anus twice before shoving it inside her counts as anal foreplay. + You spit on $his asshole and then give $him some anal foreplay, if slapping your dick against $his anus twice before shoving it inside $him counts as anal foreplay. <<= AnalVCheck()>> - $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape her into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. + $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. <</if>> It isn't the first time you've heard that, or the hundredth. <</if>> - When you're done, you discard her like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but @@.hotpink;submissive,@@ knowing that $he now has a better idea of what you want, even if what you want isn't very nice. + When you're done, you discard $him like the human sex toy $he is, and go back to your work. $He stumbles off, looking @@.gold;fearful@@ but @@.hotpink;submissive,@@ knowing that $he now has a better idea of what you want, even if what you want isn't very nice. <<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>> <</replace>> <</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>> <br><<link "It's not that simple">> <<replace "#result2">> - You tell her kindly that it isn't that simple, but that if $he obeys orders and does her best, you will like her just fine, and $he will do well as your slave. Relief floods through $him. + You tell $him kindly that it isn't that simple, but that if $he obeys orders and does $his best, you will like $him just fine, and $he will do well as your slave. Relief floods through $him. <<if !canTalk($activeSlave)>> - $He gestures her thanks, and an apology for being silly. + $He gestures $his thanks, and an apology for being silly. <<else>> "Thank you, <<Master>> and I'm <<s>>orry for being <<s>>illy," $he apologizes. <</if>> - You dismiss $him, and $he goes, a strangely @@.hotpink;respectful@@ look on her face. $He's no more confident of her ability to find safety and stability here with you than $he was before, but $he seems to like that it apparently isn't as simple as <<if $PC.dick == 1>>taking your cock up $his butt<<if $PC.vagina == 1>> or <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>. + You dismiss $him, and $he goes, a strangely @@.hotpink;respectful@@ look on $his face. $He's no more confident of $his ability to find safety and stability here with you than $he was before, but $he seems to like that it apparently isn't as simple as <<if $PC.dick == 1>>taking your cock up $his butt<<if $PC.vagina == 1>> or <</if>><</if>><<if $PC.vagina == 1>>eating you out<</if>>. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -14318,7 +14320,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.navelPiercing > 0>> the piercing dangling from $his _belly belly <<else>> - her _belly belly + $his _belly belly <</if>> <<elseif $activeSlave.nipplesPiercing > 0>> a nipple piercing @@ -14337,14 +14339,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> crosslegged <</if>> - next to you. $He listens raptly, parroting obediently and clearly doing her best to please, but you notice a certain incredulity that slowly fades as the lesson goes on. $He's obviously having trouble believing that her owner would trouble <<if $PC.title == 1>>himself<<else>>herself<</if>> with $his vocabulary lessons. You work with her several times a day, and $he's so diligent that by the end of the week $he's @@.green;beginning to make $himself understood,@@ though her accent is still pretty atrocious. + next to you. $He listens raptly, parroting obediently and clearly doing $his best to please, but you notice a certain incredulity that slowly fades as the lesson goes on. $He's obviously having trouble believing that $his owner would trouble <<if $PC.title == 1>>himself<<else>>herself<</if>> with $his vocabulary lessons. You work with $his several times a day, and $he's so diligent that by the end of the week $he's @@.green;beginning to make $himself understood,@@ though $his accent is still pretty atrocious. <<set $activeSlave.accent-->> <</replace>> <</link>> <br><<link "Teach $him the words for body parts">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to stand next to you. $He hesitates, but eventually processes the instruction and hurries over. When $he comes to a stop, $he gasps to find you taking $him by the hands. You raise them slightly, bringing them <<if canSee($activeSlave)>>up into her field of view<<else>>to her attention<</if>>, and tell $him that these are $his hands. "Hand<<s>>," $he parrots in <<print $language>>, understanding that this is a language lesson. Your own hands slide over her wrists to grasp her + You order $him to stand next to you. $He hesitates, but eventually processes the instruction and hurries over. When $he comes to a stop, $he gasps to find you taking $him by the hands. You raise them slightly, bringing them <<if canSee($activeSlave)>>up into $his field of view<<else>>to $his attention<</if>>, and tell $him that these are $his hands. "Hand<<s>>," $he parrots in <<print $language>>, understanding that this is a language lesson. Your own hands slide over $his wrists to grasp $his <<if $activeSlave.weight > 160>> fat <<elseif $activeSlave.weight > 95>> @@ -14377,9 +14379,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> "Butt," and finally, "B-butt, um, butthole." <br><br><span id="result2"> - <<link "Now let her review">> + <<link "Now let $him review">> <<replace "#result2">> - You tell $him to do the inspection routine again, narrating it $himself. $He understands immediately, and hustles back to stand in front of your desk, brow furrowed in concentration as $he struggles to keep the vocabulary in her head. $He shows each part of $his body to you in turn, and gets every single one of the terms to describe $his body - which in the legal sense, is actually //your// body, one of many you own - perfectly right, though of course $he repeats them in her atrocious <<if $activeSlave.nationality == "a Cook Islander">>Cook Islander<<elseif $activeSlave.nationality == "a Liechtensteiner">>Liechtensteiner<<elseif $activeSlave.nationality == "a New Zealander">>New Zealander<<elseif $activeSlave.nationality == "a Solomon Islander">>Solomon Islander<<else>>$activeSlave.nationality<</if>> accent. $He even @@.mediumaquamarine;has the confidence@@ to throw in a little flourish: $he says + You tell $him to do the inspection routine again, narrating it $himself. $He understands immediately, and hustles back to stand in front of your desk, brow furrowed in concentration as $he struggles to keep the vocabulary in $his head. $He shows each part of $his body to you in turn, and gets every single one of the terms to describe $his body - which in the legal sense, is actually //your// body, one of many you own - perfectly right, though of course $he repeats them in $his atrocious <<if $activeSlave.nationality == "a Cook Islander">>Cook Islander<<elseif $activeSlave.nationality == "a Liechtensteiner">>Liechtensteiner<<elseif $activeSlave.nationality == "a New Zealander">>New Zealander<<elseif $activeSlave.nationality == "a Solomon Islander">>Solomon Islander<<else>>$activeSlave.nationality<</if>> accent. $He even @@.mediumaquamarine;has the confidence@@ to throw in a little flourish: $he says <<if $activeSlave.belly >= 10000>> "Belly!" with flirty emphasis, stroking it sensually. <<elseif ($activeSlave.boobs > 3000)>> @@ -14393,7 +14395,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.butt > 4)>> "Butt!" with flirty emphasis, jiggling it for you. <<else>> - "Butthole!" with flirty emphasis, bending over and <<if !canDoAnal($activeSlave)>>shaking her anal chastity at<<else>>winking it for<</if>> you. + "Butthole!" with flirty emphasis, bending over and <<if !canDoAnal($activeSlave)>>shaking $his anal chastity at<<else>>winking it for<</if>> you. <</if>> <<set $activeSlave.trust += 4>> <</replace>> @@ -14401,13 +14403,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if canDoAnal($activeSlave)>> <br><<link "Cover some sexual vocabulary, and make sure $he doesn't forget it">> <<replace "#result2">> - A glance at one of your desk monitors reveals that another slave whose business brought her past this area of the penthouse has paused and is listening quizzically, trying to figure out what this odd, heavily accented chant coming out of your office means. It soon becomes obvious. "Fingerfuuuck!" comes $activeSlave.slaveName's voice, loud and clear, and @@.hotpink;desperately eager to please.@@ $He continues, moving from "<<S>>phincter" to + A glance at one of your desk monitors reveals that another slave whose business brought $him past this area of the penthouse has paused and is listening quizzically, trying to figure out what this odd, heavily accented chant coming out of your office means. It soon becomes obvious. "Fingerfuuuck!" comes $activeSlave.slaveName's voice, loud and clear, and @@.hotpink;desperately eager to please.@@ $He continues, moving from "<<S>>phincter" to <<if ($PC.dick == 1)>> "<<Master>>'<<s>><<if $PC.vagina == 1>> futa<</if>> cock, oh no," <<else>> "<<S>>trap-on, oh no," <</if>> - to repetition of "Anal, butt<<s>>e<<x>>, unh, a<<ss>>fucking, <<s>>odomy, um, buttfucking," and so on. Just when the eavesdropping girl decides that this has become monotonous and turns to go about her business, $activeSlave.slaveName's voice rises sharply in pitch. "Aaah! "@@.gold;A<<ss>>rape!@@ Oh plea<<s>>e, <<Master>>, ohh, a<<ss>>rape, a<<ss>>rape," followed by much tearful repetition of what's happening to $him, and a final, sad <<if $PC.dick == 1>>"C-creampie,"<<else>>"Gape,"<</if>> in a defeated little voice. + to repetition of "Anal, butt<<s>>e<<x>>, unh, a<<ss>>fucking, <<s>>odomy, um, buttfucking," and so on. Just when the eavesdropping girl decides that this has become monotonous and turns to go about $his business, $activeSlave.slaveName's voice rises sharply in pitch. "Aaah! "@@.gold;A<<ss>>rape!@@ Oh plea<<s>>e, <<Master>>, ohh, a<<ss>>rape, a<<ss>>rape," followed by much tearful repetition of what's happening to $him, and a final, sad <<if $PC.dick == 1>>"C-creampie,"<<else>>"Gape,"<</if>> in a defeated little voice. <<set $activeSlave.trust -= 2, $activeSlave.devotion += 4>> <<= AnalVCheck()>> <</replace>> @@ -14574,7 +14576,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Let $him earn relief">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's extremely relieved that you're not going to punish her for the rulebreaking when you tell $him that $he can touch $himself if $he + $He's extremely relieved that you're not going to punish $him for the rulebreaking when you tell $him that $he can touch $himself if $he <<if $activeSlave.belly >= 300000>> leans over $his _belly belly <<else>> @@ -14584,7 +14586,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion -= 5, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> -<br>Punish $him, but then let her get off: +<br>Punish $him, but then let $him get off: <<if ($activeSlave.fetish != "cumslut") || ($activeSlave.fetishKnown != 1) || ($activeSlave.fetishStrength <= 95)>> <br> <<link "when $he sucks">> <<EventNameDelink $activeSlave>> @@ -14592,22 +14594,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t You <<if $PC.belly >= 10000>> <<if $activeSlave.belly >= 300000>> - tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, + tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, <<elseif $activeSlave.belly >= 5000>> order $him to bend over beside you so your pregnancy doesn't obstruct you as badly <<else>> - lean back, pull her over your knee and under your gravid dome of a middle + lean back, pull $him over your knee and under your gravid dome of a middle <</if>> <<else>> <<if $activeSlave.belly >= 300000>> - tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> + tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> <<elseif $activeSlave.belly >= 5000>> - spread your legs to give her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull her onto your lap + spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap <<else>> - pull her down over your knee + pull $him down over your knee <</if>> <</if>> - and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull her up to face you and give her your instructions: from now on, $he can come to you and ask to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through her tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina == 1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously. + and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through $his tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina == 1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously. <<set $activeSlave.oralCount += 5, $oralTotal += 5>> <<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -14626,22 +14628,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t You <<if $PC.belly >= 10000>> <<if $activeSlave.belly >= 300000>> - tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip her onto her back, lower your gravid body down to her level and start playing with $his nipples. + tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip $him onto $his back, lower your gravid body down to $his level and start playing with $his nipples. <<elseif $activeSlave.belly >= 5000>> - order $him to bend over beside you so your pregnancy doesn't obstruct you as badly and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her upright and start playing with $his nipples. + order $him to bend over beside you so your pregnancy doesn't obstruct you as badly and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples. <<else>> - lean back, pull her over your knee and under your gravid dome of a middle and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her upright and start playing with $his nipples. + lean back, pull $him over your knee and under your gravid dome of a middle and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him upright and start playing with $his nipples. <</if>> <<else>> <<if $activeSlave.belly >= 300000>> - tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her up into your lap, $his stomach spreading your legs, and start playing with $his nipples. + tip $his over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap, $his stomach spreading your legs, and start playing with $his nipples. <<elseif $activeSlave.belly >= 5000>> - spread your legs to give her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull her onto your lap and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her up into your lap and start playing with $his nipples. + spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples. <<else>> - pull her down over your knee and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her up into your lap and start playing with $his nipples. + pull $him down over your knee and grope $him thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul $him up into your lap and start playing with $his nipples. <</if>> <</if>> - $He writhes and sobs at the orgasm denial, since the nipple play is just barely enough to keep her at a high level of arousal without giving relief. You switch back and forth until $he finally goes over into muscle-spasming climax during nipple stimulation alone. + $He writhes and sobs at the orgasm denial, since the nipple play is just barely enough to keep $him at a high level of arousal without giving relief. You switch back and forth until $he finally goes over into muscle-spasming climax during nipple stimulation alone. <<set $activeSlave.mammaryCount++, $mammaryTotal++>> <<if ($activeSlave.fetish == "boobs") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -14659,11 +14661,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You <<if $activeSlave.belly >= 300000>> - roll her onto her back + roll $him onto $his back <<else>> - pull her into a sitting position on your lap + pull $him into a sitting position on your lap <</if>> - and grope $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease her <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from her masturbation session. + and grope $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease $his <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from $his masturbation session. <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@.lightcoral;$His enjoyment of pregnancy has increased.@@ @@ -14682,22 +14684,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t You <<if $PC.belly >= 10000>> <<if $activeSlave.belly >= 300000>> - tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, + tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, <<elseif $activeSlave.belly >= 5000>> order $him to bend over beside you so your pregnancy doesn't obstruct you as badly <<else>> - lean back, pull her over your knee and under your gravid dome of a middle + lean back, pull $him over your knee and under your gravid dome of a middle <</if>> <<else>> <<if $activeSlave.belly >= 300000>> - tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> + tip $him over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> <<elseif $activeSlave.belly >= 5000>> - spread your legs to give her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull her onto your lap + spread your legs to give $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull $him onto your lap <<else>> - pull her down over your knee + pull $him down over your knee <</if>> <</if>> - and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull her up to face you and give her your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through her tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously. + and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull $him up to face you and give $him your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through $his tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously. <<= AnalVCheck(5)>> <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -14714,7 +14716,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring her out <<if $club > 0>>to $clubName<<else>>onto the street<</if>> and secure her upright with a set of vibrators attached to all of her erogenous zones. There's a lot of them, and they're extremely powerful; when you test the setup, $he wriggles with the intensity of the stimulation, and is about to climax when you shut it down. Without telling $him, you slave the vibrators to a program originally designed for VIP security details. It uses the cameras scattered through the area to detect when passersby are looking at $him. The more eyes on $him, the stronger the vibrations. + You bring $him out <<if $club > 0>>to $clubName<<else>>onto the street<</if>> and secure $him upright with a set of vibrators attached to all of $his erogenous zones. There's a lot of them, and they're extremely powerful; when you test the setup, $he wriggles with the intensity of the stimulation, and is about to climax when you shut it down. Without telling $him, you slave the vibrators to a program originally designed for VIP security details. It uses the cameras scattered through the area to detect when passersby are looking at $him. The more eyes on $him, the stronger the vibrations. <<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@.lightcoral;$His enjoyment of humiliation has increased.@@ @@ -14729,7 +14731,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "while submitting to a spanking">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer her bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has $his buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause her just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating. + You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer $his bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has $his buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause $him just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating. <<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@.lightcoral;$His enjoyment of submission has increased.@@ @@ -14752,21 +14754,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> stand <</if>> - with $his arms over her head and $his legs splayed, and tell $him that if $he moves or resists $his punishment will begin again from the start. + with $his arms over $his head and $his legs splayed, and tell $him that if $he moves or resists $his punishment will begin again from the start. <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory) || ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> $He was touching $his nipples and ass, so you flick and torture $his nipples and give $him a severe spanking. <<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>> - $He was playing with her oversized cock, so you kick and swat at the swollen monster, enjoying the way it spasms. + $He was playing with $his oversized cock, so you kick and swat at the swollen monster, enjoying the way it spasms. <<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> - $He was touching her limp dick and ass, so you slap and torture her offending dick and give $him a severe spanking. + $He was touching $his limp dick and ass, so you slap and torture $his offending dick and give $him a severe spanking. <<elseif ($activeSlave.vagina == -1) && ($activeSlave.dick == 0)>> - $He was desperately rubbing her perineum and anus, the most sensitive parts $he has left, so you slap that part of her repeatedly, enjoying the way it spasms. + $He was desperately rubbing $his perineum and anus, the most sensitive parts $he has left, so you slap that part of $him repeatedly, enjoying the way it spasms. <<elseif $activeSlave.vagina == -1 || $activeSlave.clit >= 3>> - $He was jacking it, so you force $him to get $himself hard for punishment and then deliver a series of agonizing slaps and flicks to her offending member. + $He was jacking it, so you force $him to get $himself hard for punishment and then deliver a series of agonizing slaps and flicks to $his offending member. <<elseif $activeSlave.labia > 1>> - $His generous pussylips bear a sheen of incriminating moisture, so you slap and flick them, causing her intense agony. + $His generous pussylips bear a sheen of incriminating moisture, so you slap and flick them, causing $him intense agony. <<else>> - You deliver a series of agonizing slaps to her mons. + You deliver a series of agonizing slaps to $his mons. <</if>> You have to start over twice. By the end, $he's managed to orgasm to all the stimulation, but $he's crying and desperately promising never to touch $himself again without your permission. $His submission to you @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> @@ -14775,7 +14777,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t @@.lightcoral;$His enjoyment of pain has increased.@@ <<elseif random(1,100) > 50>> <<set $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= WrittenMaster()>> beating $him.@@ + Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= WrittenMaster($activeSlave)>> beating $him.@@ <</if>> <</replace>> <</link>> @@ -14786,7 +14788,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Let $him earn a break for $his throat">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he's a sex slave, and that $he needs to learn how to suck dick. + You tell $him $he's a sex slave, and that $he needs to learn how to suck dick. <<if !canTalk($activeSlave) && ($activeSlave.amp != 1)>> $He frantically begs with gestures, pleading on $his knees. <<elseif !canTalk($activeSlave)>> @@ -14794,7 +14796,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He begs, "Plea<<s>>e no, <<Master>>, plea<<s>>e don't rape my mouth, <<Master>>!" <</if>> - You make a show of considering, and then tell $him that if $he's extra obedient, you might let her earn a break for $his throat - for now. + You make a show of considering, and then tell $him that if $he's extra obedient, you might let $him earn a break for $his throat - for now. <<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>> You tell $him to lie back and spread $his legs, because you're going to give $him a good old fashioned missionary-position pounding. $He does so with unusual obedience<<if $activeSlave.belly >= 5000>>, $his legs hanging off the couch to give you a better angle with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> in the way<</if>>, and as you're giving $him a thorough pounding, whether out of relief, gratitude, or a desire to put on a good performance, $he certainly seems to be enjoying it more than usual. <<= VaginalVCheck()>> @@ -14814,63 +14816,63 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>> $he has no other hole to amuse you <<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>> - her only available hole is still virgin + $his only available hole is still virgin <<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - all her other holes are still virgin + all $his other holes are still virgin <<elseif $activeSlave.anus == 0>> - her girly little butthole is still virgin + $his girly little butthole is still virgin <</if>> - $he's going to have to find an amazingly thorough way to please a dick if $he's going to earn her throat a reprieve. $He looks<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> uncharacteristically<</if>> thoughtful for a moment before bending over before you, spitting in $his hand + $he's going to have to find an amazingly thorough way to please a dick if $he's going to earn $his throat a reprieve. $He looks<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> uncharacteristically<</if>> thoughtful for a moment before bending over before you, spitting in $his hand <<if $activeSlave.vagina == 0>> - and thoroughly coating her inner thighs with her saliva. + and thoroughly coating $his inner thighs with $his saliva. <<else>> and thoroughly coating the <<if $activeSlave.butt <= 2>> - crack of her slender + crack of $his slender <<elseif $activeSlave.butt <= 4>> - crack of her curvy + crack of $his curvy <<elseif $activeSlave.butt <= 8>> - crack of her huge + crack of $his huge <<elseif $activeSlave.butt <= 12>> - crevice of her expansive + crevice of $his expansive <<elseif $activeSlave.butt <= 20>> - ravine of her endless + ravine of $his endless <</if>> ass. <</if>> - The invitation is obvious, but just to be sure $he pleads with you to satisfy yourself alongside her + The invitation is obvious, but just to be sure $he pleads with you to satisfy yourself alongside $his <<if !canDoAnal($activeSlave) && !canDoVaginal($activeSlave)>> - chastity. You answer her pleading with your dick, and though it's not quite as pleasurable as pilfering an off-limits hole, + chastity. You answer $his pleading with your dick, and though it's not quite as pleasurable as pilfering an off-limits hole, <<if $activeSlave.vagina > -1>> - before long her <<if $activeSlave.vagina == 0>>virgin <</if>>cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. + before long $his <<if $activeSlave.vagina == 0>>virgin <</if>>cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. <<else>> - $activeSlave.slaveName's trembling whenever your thrusts slam against her anal chastity is thoroughly entertaining. + $activeSlave.slaveName's trembling whenever your thrusts slam against $his anal chastity is thoroughly entertaining. <</if>> - Before long, you plaster her belt with your cum. + Before long, you plaster $his belt with your cum. <<elseif !canDoAnal($activeSlave) && $activeSlave.vagina == 0>> - virgin hole. You answer her pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, before long her virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. Before long, you plaster her still-virgin hole with your cum. + virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. Before long, you plaster $his still-virgin hole with your cum. <<elseif $activeSlave.vagina == 0 && $activeSlave.anus == 0>> - virgin holes. You answer her pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, + virgin holes. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, <<if $activeSlave.vagina == 0>> - before long her virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. + before long $his virgin cunt starts to supply extra lubrication and $he starts to gasp and moan along with your thrusts. <<else>> - $activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating her virgin ass is thoroughly entertaining. + $activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining. <</if>> - Before long, you plaster her still-virgin hole with your cum. + Before long, you plaster $his still-virgin hole with your cum. <<elseif $activeSlave.anus == 0>> - virgin hole. You answer her pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, $activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating her virgin ass is thoroughly entertaining. Before long, you plaster her still-virgin hole with your cum. + virgin hole. You answer $his pleading with your dick, and though it's not quite as pleasurable as a newly-deflowered hole, $activeSlave.slaveName's trembling whenever your thrusts come perilously close to penetrating $his virgin ass is thoroughly entertaining. Before long, you plaster $his still-virgin hole with your cum. <</if>> <</if>> - When you're done, you bend down and whisper in her ear that if $he shows any sign of rebelliousness, you'll give every dick in $arcologies[0].name free access to her throat. @@.hotpink;$He has become more obedient,@@ in the hope this will persuade you to not follow through on your threat. + When you're done, you bend down and whisper in $his ear that if $he shows any sign of rebelliousness, you'll give every dick in $arcologies[0].name free access to $his throat. @@.hotpink;$He has become more obedient,@@ in the hope this will persuade you to not follow through on your threat. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> -<br><<link "Try to brute-force her oral resistance with a public blowbang">> +<br><<link "Try to brute-force $his oral resistance with a public blowbang">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Simple problems require simple solutions - $he'll get fucked in the mouth until $he either gets over her hang-ups about oral or learns to hide them. You drag the protesting $activeSlave.slaveName out in public, chain her low so that $his mouth is available, and tell $him that $he'll suck dicks until $he gets through five in a row without grimacing, gagging, or resisting. You have a comfortable chair brought out to you and settle in to watch the show. - $activeSlave.slaveName tries, $he really does. But when word gets out as to the conditions of her enslavement, her users take a perverse enjoyment in being rougher than usual to evoke the exact reactions $he's trying to avoid. By the third failed streak, you've started to grow bored of the spectacle, but luckily you find entertainment in conversation with those who have already been entertained by poor $activeSlave.slaveName. Before long more chairs have been brought up and an impromptu salon has been set up alongside the blowbang line. By the sixth failed streak, an enterprising citizen has set up a small bar and is serving drinks. By the ninth, you've delegated watching $activeSlave.slaveName to your assistant. You personally break the 11th streak after $he reached four, to general acclaim from your newfound friends and a toast to your virility. - When the 14th streak is finally successful, there are serious talks about making these blowbang salons a regular occurrence and some backslapping directed towards you for your innovation in genteel hedonism. While you seriously doubt $activeSlave.slaveName enjoys oral sex any more than $he did at the start of the day, $he's certainly @@.green;learned to keep her feelings on the matter to $himself.@@ $He did, however, @@.red;have quite a rough time@@ of it<<if $activeSlave.oralSkill <= 30>>, though $he did learn a thing or two about sucking dick.<<set $skillIncrease = 10>><<OralSkillIncrease $activeSlave>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons. + Simple problems require simple solutions - $he'll get fucked in the mouth until $he either gets over $his hang-ups about oral or learns to hide them. You drag the protesting $activeSlave.slaveName out in public, chain $him low so that $his mouth is available, and tell $him that $he'll suck dicks until $he gets through five in a row without grimacing, gagging, or resisting. You have a comfortable chair brought out to you and settle in to watch the show. + $activeSlave.slaveName tries, $he really does. But when word gets out as to the conditions of $his enslavement, $his users take a perverse enjoyment in being rougher than usual to evoke the exact reactions $he's trying to avoid. By the third failed streak, you've started to grow bored of the spectacle, but luckily you find entertainment in conversation with those who have already been entertained by poor $activeSlave.slaveName. Before long more chairs have been brought up and an impromptu salon has been set up alongside the blowbang line. By the sixth failed streak, an enterprising citizen has set up a small bar and is serving drinks. By the ninth, you've delegated watching $activeSlave.slaveName to your assistant. You personally break the 11th streak after $he reached four, to general acclaim from your newfound friends and a toast to your virility. + When the 14th streak is finally successful, there are serious talks about making these blowbang salons a regular occurrence and some backslapping directed towards you for your innovation in genteel hedonism. While you seriously doubt $activeSlave.slaveName enjoys oral sex any more than $he did at the start of the day, $he's certainly @@.green;learned to keep $his feelings on the matter to $himself.@@ $He did, however, @@.red;have quite a rough time@@ of it<<if $activeSlave.oralSkill <= 30>>, though $he did learn a thing or two about sucking dick.<<set $skillIncrease = 10>><<OralSkillIncrease $activeSlave>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons. <<set $activeSlave.health -= 10, $activeSlave.sexualFlaw = "none">> <<set _oralSeed = random(65,80)>> <<set $activeSlave.oralCount += _oralSeed, $activeSlave.publicCount += _oralSeed, $oralTotal += _oralSeed>> @@ -14884,40 +14886,40 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.dick > 0>> You secure the bullet to $activeSlave.slaveName's frenulum. <<elseif $activeSlave.vagina == -1>> - You secure the bullet to her perineum. + You secure the bullet to $his perineum. <<else>> You secure the bullet to $activeSlave.slaveName's clit. <</if>> - You explain that the arcology continually monitors your vital signs, and will use them to estimate your arousal; the system controls the bullet vibrator, which will emit stimulating vibrations scaled to your pleasure. The more pleasure you feel, the more pleasant the vibrations will be, though they will not bring $him to orgasm until you climax. To demonstrate, you give the head of your cock a quick squeeze. $activeSlave.slaveName squeals in surprise at the sudden stimulation as the bullets spring to life. You tell $him to get to work. Though timid at first, as $he proceeds to blow you, $he becomes more and more enthusiastic as her own pleasure builds. It isn't long until $he's deepthroating you enthusiastically and begging you to cum in $his mouth. You make her hold out a bit longer, and then you complete the training session, + You explain that the arcology continually monitors your vital signs, and will use them to estimate your arousal; the system controls the bullet vibrator, which will emit stimulating vibrations scaled to your pleasure. The more pleasure you feel, the more pleasant the vibrations will be, though they will not bring $him to orgasm until you climax. To demonstrate, you give the head of your cock a quick squeeze. $activeSlave.slaveName squeals in surprise at the sudden stimulation as the bullets spring to life. You tell $him to get to work. Though timid at first, as $he proceeds to blow you, $he becomes more and more enthusiastic as $his own pleasure builds. It isn't long until $he's deepthroating you enthusiastically and begging you to cum in $his mouth. You make $him hold out a bit longer, and then you complete the training session, <<if $PC.balls == 3>> pumping cum into $his stomach until it visibly begins to swell. <<elseif $PC.balls == 2>> pumping cum into $his stomach until it threatens to come back up. <<elseif $PC.balls == 1>> - cumming into $his mouth until it spurts from her nose. + cumming into $his mouth until it spurts from $his nose. <<else>> filling $his mouth with your cum. <</if>> $He climaxes in turn, and virtually melts into a quivering mess on your floor. <<if $activeSlave.dick > 0>> - $activeSlave.slaveName's cock oozes cum from her intense orgasm, and you command $him to clean it off the floor before $he gets back to $his duties. + $activeSlave.slaveName's cock oozes cum from $his intense orgasm, and you command $him to clean it off the floor before $he gets back to $his duties. <</if>> <<if random(1,4) == 4>> - @@.lightcoral;You've successfully linked cum and pleasure in her mind,@@ guaranteeing $him a confusing few days as $he tries to reconcile this with $his hatred of oral sex. + @@.lightcoral;You've successfully linked cum and pleasure in $his mind,@@ guaranteeing $him a confusing few days as $he tries to reconcile this with $his hatred of oral sex. <<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> <<else>> - This has @@.green;broken her of her bad habits.@@ + This has @@.green;broken $him of $his bad habits.@@ <<set $activeSlave.sexualFlaw = "none">> <</if>> - This demonstration of your control over her has @@.hotpink;worn down her resistance to your commands.@@ + This demonstration of your control over $him has @@.hotpink;worn down $his resistance to your commands.@@ <<set $activeSlave.oralCount++, $oralTotal++, $activeSlave.devotion += 4>> <</replace>> <</link>> <<if ($activeSlave.dick > 0) && $activeSlave.balls > 0 && ($activeSlave.belly < 1500) && $activeSlave.weight < 130>> /* won't work if too pregnant */ -<br><<link "Make her eat her own cum">> +<br><<link "Make $him eat $his own cum">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Your cum training tactics have two components: Cum should be linked with pleasure, and cum should not be disgusting to $activeSlave.slaveName, because even $activeSlave.slaveName produces it. To drive home these lessons, you lead $activeSlave.slaveName to your office's leather couch, arranging her + Your cum training tactics have two components: Cum should be linked with pleasure, and cum should not be disgusting to $activeSlave.slaveName, because even $activeSlave.slaveName produces it. To drive home these lessons, you lead $activeSlave.slaveName to your office's leather couch, arranging $his <<if $activeSlave.height < 150>> petite <<elseif $activeSlave.height < 160>> @@ -14927,7 +14929,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.height >= 185>> very tall <</if>> - form upside down with her head on the cushion, her back on the backrest, and her <<if $activeSlave.amp == 1>>stumps<<else>>legs<</if>> in the air. In this position, her + form upside down with $his head on the cushion, $his back on the backrest, and $his <<if $activeSlave.amp == 1>>stumps<<else>>legs<</if>> in the air. In this position, $his <<if ($activeSlave.dick > 10)>> obscene <<elseif ($activeSlave.dick > 9)>> @@ -14951,29 +14953,29 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.dick > 0)>> tiny <</if>> - cock <<if $activeSlave.belly >= 100 || $activeSlave.weight > 30>>rests over her <<if $activeSlave.pregKnown == 1>>early pregnancy<<else>>belly<</if>> and <</if>>hangs directly over her anxious face. + cock <<if $activeSlave.belly >= 100 || $activeSlave.weight > 30>>rests over $his <<if $activeSlave.pregKnown == 1>>early pregnancy<<else>>belly<</if>> and <</if>>hangs directly over $his anxious face. <<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">> - The aphrodisiacs in her system already have her so aroused $he's already dripping precum; as you approach her vulnerable form on the couch, a drop lands on her chin. + The aphrodisiacs in $his system already have $him so aroused $he's already dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin. <<elseif $activeSlave.prostate > 1>> - $His overactive prostate has her steadily dripping precum; as you approach her vulnerable form on the couch, a drop lands on her chin. + $His overactive prostate has $him steadily dripping precum; as you approach $his vulnerable form on the couch, a drop lands on $his chin. <<else>> - You sit next to her vulnerable form on the couch as $he looks at you in anticipation. + You sit next to $his vulnerable form on the couch as $he looks at you in anticipation. <</if>> You <<if canDoAnal($activeSlave)>> <<if ($activeSlave.anus > 2)>> - insert a wide vibrating plug into her gaping anus, + insert a wide vibrating plug into $his gaping anus, <<elseif ($activeSlave.anus > 1)>> insert a big vibrating plug into $his ass, <<elseif ($activeSlave.anus > 0)>> - insert a vibrating plug into her tight ass, + insert a vibrating plug into $his tight ass, <<else>> - place a bullet vibrator over the pucker of her virgin anus, + place a bullet vibrator over the pucker of $his virgin anus, <</if>> <<else>> - strap a strong vibrator to her anal chastity, + strap a strong vibrator to $his anal chastity, <</if>> - secure a bullet vibrator her quivering perineum, and another to the base of her dick, and set them all to gradually increase the strength of their vibrations. In no time at all $he releases a <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> + secure a bullet vibrator $his quivering perineum, and another to the base of $his dick, and set them all to gradually increase the strength of their vibrations. In no time at all $he releases a <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> squirt of ejaculate from $his cock cage, <<elseif $activeSlave.prostate > 2>> torrent of nearly clear, watery ejaculate, @@ -14984,7 +14986,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pathetic dribble of watery ejaculate, <</if>> - all of which lands right on her outstretched tongue and pools in her throat. You nudge her chin to make her close $his mouth and swallow. After a week of such treatment, $he @@.lightcoral;acquires a taste for semen.@@ + all of which lands right on $his outstretched tongue and pools in $his throat. You nudge $his chin to make $him close $his mouth and swallow. After a week of such treatment, $he @@.lightcoral;acquires a taste for semen.@@ <<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -14994,10 +14996,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "mindbroken morning">> -<<link "Let her be">> +<<link "Let $him be">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Satisfied that there's no need for immediate intervention, you head back to your desk. A few minutes later, $he heads in to finish getting ready and get to work, saving $assistantName the necessity of directing $him. As the broken slave passes your office, you think for a moment that you see a bit of moisture glinting in $his eyes, but soon correct yourself: it's just a reflection from the glass walls of the arcology. $He makes it to her assignment on time, and no one notices anything unusual about her today. + Satisfied that there's no need for immediate intervention, you head back to your desk. A few minutes later, $he heads in to finish getting ready and get to work, saving $assistantName the necessity of directing $him. As the broken slave passes your office, you think for a moment that you see a bit of moisture glinting in $his eyes, but soon correct yourself: it's just a reflection from the glass walls of the arcology. $He makes it to $his assignment on time, and no one notices anything unusual about $him today. <</replace>> <<if $activeSlave.relationship == -3>> <<if def $activeSlave.kindness>> @@ -15006,10 +15008,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</link>> <<if canDoVaginal($activeSlave) || canDoAnal($activeSlave)>> -<br><<link "See if an orgasm will cheer her up">> +<br><<link "See if an orgasm will cheer $him up">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You<<if $PC.dick == 0>> don a strap-on and<</if>> slide your hands around her + You<<if $PC.dick == 0>> don a strap-on and<</if>> slide your hands around $his <<if $activeSlave.belly >= 150000>> _belly distended <<elseif $activeSlave.weight > 95>> @@ -15039,11 +15041,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> skinny <</if>> - waist, feeling the warmth of her skin, and gently step forward until $he's between you and the balcony railing. $He is silently obedient, not reacting at all other than to obey your direction as to where $he should go. For example, when $he feels <<if $PC.dick == 0>>the phallus<<else>>your hardening dick<</if>> pressing against $him, $he + waist, feeling the warmth of $his skin, and gently step forward until $he's between you and the balcony railing. $He is silently obedient, not reacting at all other than to obey your direction as to where $he should go. For example, when $he feels <<if $PC.dick == 0>>the phallus<<else>>your hardening dick<</if>> pressing against $him, $he <<if ($activeSlave.height >= 170)>> unconsciously bends forward a little and cocks $his hips to position $himself <<else>> - rises up on the balls of her feet to bring her short body up to the right height + rises up on the balls of $his feet to bring $his short body up to the right height <</if>> <<if canDoVaginal($activeSlave)>> for penetration. $His @@ -15057,7 +15059,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t is already moist in expectation, making entry easy. <<= VaginalVCheck()>> <<else>> - for anal. $He relaxes her + for anal. $He relaxes $his <<if ($activeSlave.anus > 2)>> loose anus <<elseif ($activeSlave.anus > 1)>> @@ -15068,51 +15070,51 @@ You tell her kindly that you understand, and that $he'll be trained to address t completely, making entry easy. <<= AnalVCheck()>> <</if>> - Your hands rove, teasing her $activeSlave.nipples nipples, + Your hands rove, teasing $his $activeSlave.nipples nipples, <<if ($activeSlave.boobs > 1000)>> - hefting her heavy tits, + hefting $his heavy tits, <<elseif ($activeSlave.boobs > 300)>> - squeezing her healthy breasts, + squeezing $his healthy breasts, <<else>> - pressing her flat chest, + pressing $him flat chest, <</if>> <<if $activeSlave.belly >= 1500>> - massaging her rounded belly<<if $activeSlave.belly > 10000>> and fondling her popped navel<</if>>. + massaging $his rounded belly<<if $activeSlave.belly > 10000>> and fondling $his popped navel<</if>>. <<else>> and <<if $activeSlave.weight > 130>> - groping her huge gut. + groping $his huge gut. <<elseif $activeSlave.weight > 95>> - groping her fat belly. + groping $his fat belly. <<elseif $activeSlave.muscles > 30>> - fondling her abs. + fondling $his abs. <<elseif $activeSlave.weight > 10>> - groping her plush belly. + groping $his plush belly. <<else>> - fondling her flat stomach. + fondling $his flat stomach. <</if>> <</if>> $His face is complacent and unaffected even as $his body responds, <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - since $his body is used to its caged cock being neglected in favor of her <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. + since $his body is used to its caged cock being neglected in favor of $his <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. <<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>> - her useless dick sporting a drop of precum. + $his useless dick sporting a drop of precum. <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0 || $activeSlave.ballType == "sterile")>> - her soft dick twitching feebly. + $his soft dick twitching feebly. <<elseif $activeSlave.dick > 4>> - her giant penis protruding through a gap in the railing. + $his giant penis protruding through a gap in the railing. <<elseif $activeSlave.dick > 2>> $his penis pressing hard against the railing. <<elseif $activeSlave.dick > 0>> - her pathetic hardon barely protruding from between her thighs. + $his pathetic hardon barely protruding from between $his thighs. <<elseif $activeSlave.clit > 0>> - her huge clit stiff under a brush from your fingers. + $his huge clit stiff under a brush from your fingers. <<elseif $activeSlave.vagina == -1>> - her asspussy ready and relaxed under a brush from your fingers. + $his asspussy ready and relaxed under a brush from your fingers. <<else>> $his pussy warm and wet under a brush from your fingers. <</if>> - Even her eventual orgasm is entirely mechanical, a simple tightening of her + Even $his eventual orgasm is entirely mechanical, a simple tightening of $his <<if canDoVaginal($activeSlave)>> <<if ($activeSlave.vagina > 2)>> gaping cunt, @@ -15131,7 +15133,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> sphincter, <</if>> - a gasp of air into her lungs, and a slight shiver. There is a flaw at the corner of $his mouth that might be transitory pleasure, but a look <<if canSee($activeSlave)>>into $his eyes<<else>>at her face<</if>> confirms that it is not so. + a gasp of air into $his lungs, and a slight shiver. There is a flaw at the corner of $his mouth that might be transitory pleasure, but a look <<if canSee($activeSlave)>>into $his eyes<<else>>at $his face<</if>> confirms that it is not so. <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> <</if>> @@ -15141,17 +15143,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Go clubbing">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing glitzy heels, an extremely short skirt<<if $activeSlave.belly >= 5000>> barely noticeable under her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, and a string bikini top so brief that $his areolae are clearly visible. As you descend through $arcologies[0].name the beats get faster and the drops get heavier. By the time you reach the club where the Free Cities' hottest DJ has a show tonight, $activeSlave.slaveName is a whirlwind of sexual energy in motion, moving <<if canHear($activeSlave)>>with every beat<<else>>wildly<</if>> and catching every eye<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>, despite how far along $he is<<elseif $activeSlave.belly >= 5000 || $activeSlave.weight > 130>>, despite how big $he is<</if>>. $His skills could have half the club lining up to fuck $him for money, but tonight $he's all yours. The entire floor is envious of you as the night wears on and $his dancing turns into sexually servicing you<<if canHear($activeSlave)>> in time with the music<</if>>. + You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing glitzy heels, an extremely short skirt<<if $activeSlave.belly >= 5000>> barely noticeable under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, and a string bikini top so brief that $his areolae are clearly visible. As you descend through $arcologies[0].name the beats get faster and the drops get heavier. By the time you reach the club where the Free Cities' hottest DJ has a show tonight, $activeSlave.slaveName is a whirlwind of sexual energy in motion, moving <<if canHear($activeSlave)>>with every beat<<else>>wildly<</if>> and catching every eye<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>>, despite how far along $he is<<elseif $activeSlave.belly >= 5000 || $activeSlave.weight > 130>>, despite how big $he is<</if>>. $His skills could have half the club lining up to fuck $him for money, but tonight $he's all yours. The entire floor is envious of you as the night wears on and $his dancing turns into sexually servicing you<<if canHear($activeSlave)>> in time with the music<</if>>. <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - The smell of her pre-cum is noticeable even over the stink of sweat. + The smell of $his pre-cum is noticeable even over the stink of sweat. <<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>> - $His tiny skirt does nothing to hide her erection. + $His tiny skirt does nothing to hide $his erection. <<elseif ($activeSlave.clit > 0)>> - $His tiny skirt displays her big, engorged clit. + $His tiny skirt displays $his big, engorged clit. <<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $His arched back and cocked hips make it very clear that $he wants her asspussy fucked. + $His arched back and cocked hips make it very clear that $he wants $his asspussy fucked. <<else>> - The smell of her arousal is noticeable even over the stink of sweat. + The smell of $his arousal is noticeable even over the stink of sweat. <</if>> <<if ($activeSlave.boobs > 1000)>> $His breasts get groped and mauled all night. @@ -15168,7 +15170,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Attend a milonga">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing classy heels and a gorgeous long dress cunningly designed to adhere to her while $he dances despite the fact that it displays all of one leg, $his entire back<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, cleavage, and the sides of both breasts. $He has $his hair up in a perfect bun accented with a spray of the latest jewelry, and is wearing severe makeup that makes her look aristocratic and elegant by turns. The host of the milonga, an old-world tango enthusiast, knows well the social graces and invites you, as the most prominent attendee, to perform the traditional demonstration tango that begins the dance. It goes wonderfully, and the entire party sighs in appreciation as you perform the classic tango. You lower $activeSlave.slaveName<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>'s heavy body<</if>> gracefully and pull her back up into a close embrace, and breath catches in more than one throat. As tradition dictates $he dances with many partners throughout the night. One concession to Free Cities sensibilities is that the male and female roles in the tango may be filled by anyone, and $activeSlave.slaveName switches flawlessly between playing the female role to the elderly host one dance and the male role to his teenage granddaughter the next. The poor girl spends the rest of the evening staring at $activeSlave.slaveName with her tongue tied. Whoever $activeSlave.slaveName dances with, $he always subtly shows by glance and gesture that it's you $he truly wants. Everyone is quite envious of you; @@.green;your reputation has increased.@@ + You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing classy heels and a gorgeous long dress cunningly designed to adhere to $him while $he dances despite the fact that it displays all of one leg, $his entire back<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, cleavage, and the sides of both breasts. $He has $his hair up in a perfect bun accented with a spray of the latest jewelry, and is wearing severe makeup that makes $him look aristocratic and elegant by turns. The host of the milonga, an old-world tango enthusiast, knows well the social graces and invites you, as the most prominent attendee, to perform the traditional demonstration tango that begins the dance. It goes wonderfully, and the entire party sighs in appreciation as you perform the classic tango. You lower $activeSlave.slaveName<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>'s heavy body<</if>> gracefully and pull $him back up into a close embrace, and breath catches in more than one throat. As tradition dictates $he dances with many partners throughout the night. One concession to Free Cities sensibilities is that the male and female roles in the tango may be filled by anyone, and $activeSlave.slaveName switches flawlessly between playing the female role to the elderly host one dance and the male role to his teenage granddaughter the next. The poor girl spends the rest of the evening staring at $activeSlave.slaveName with $his tongue tied. Whoever $activeSlave.slaveName dances with, $he always subtly shows by glance and gesture that it's you $he truly wants. Everyone is quite envious of you; @@.green;your reputation has increased.@@ <<set $rep += 100>> <</replace>> <</link>> @@ -15176,7 +15178,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Never mind Friday night, the moon's out and it's romantic on the balcony">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door absolutely naked<<if $activeSlave.bellyPreg >= 1500>>, $his motherly body on full display<</if>>. $He has half a question on $his face, wondering whether this is going too far, but it vanishes when you <<if canSee($activeSlave)>>smile reassuringly at<<else>>compliment<</if>> $him. You take $him by the hand and lead her out onto the private balcony outside your office. It's a cloudless night, and the moon is full. You order the arcology to play a classic dance medley, and $activeSlave.slaveName becomes all innocence and grace, the perfect dance partner<<if $activeSlave.bellyPreg >= 10000>>, despite $his heavy pregnancy<<elseif $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>, despite $his weight<</if>>. The only real consequence of $his nudity is + You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door absolutely naked<<if $activeSlave.bellyPreg >= 1500>>, $his motherly body on full display<</if>>. $He has half a question on $his face, wondering whether this is going too far, but it vanishes when you <<if canSee($activeSlave)>>smile reassuringly at<<else>>compliment<</if>> $him. You take $him by the hand and lead $him out onto the private balcony outside your office. It's a cloudless night, and the moon is full. You order the arcology to play a classic dance medley, and $activeSlave.slaveName becomes all innocence and grace, the perfect dance partner<<if $activeSlave.bellyPreg >= 10000>>, despite $his heavy pregnancy<<elseif $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>, despite $his weight<</if>>. The only real consequence of $his nudity is <<if $activeSlave.boobs >= 300>> the extra sway of $his breasts, <</if>> @@ -15187,7 +15189,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.boobs >= 300>> and <</if>> - <<if $activeSlave.nipples != "fuckable">>the hardness of $his nipples<<else>>how swollen $his nipples are<</if>> in the cool night when the dance brings you close. $He enjoys $himself immensely and in no time at all, $he's meekly asking you to take her inside and dance with her on the bed. Naturally, you oblige. + <<if $activeSlave.nipples != "fuckable">>the hardness of $his nipples<<else>>how swollen $his nipples are<</if>> in the cool night when the dance brings you close. $He enjoys $himself immensely and in no time at all, $he's meekly asking you to take $him inside and dance with $him on the bed. Naturally, you oblige. <</replace>> <<set $activeSlave.devotion += 3, $activeSlave.trust += 3>> <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>> @@ -15219,14 +15221,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Require double repayment and spend it on $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he repay double what he owes. Slaves are not permitted to keep possessions, especially money, so you spend it on $activeSlave.slaveName directly. $He spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having her pregnant belly moisturized, her tired feet rubbed, her cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take her out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex. + Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he repay double what he owes. Slaves are not permitted to keep possessions, especially money, so you spend it on $activeSlave.slaveName directly. $He spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex. <<set $activeSlave.devotion += 10>> <</replace>> <</link>> <br><<link "Leverage the situation and reward $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Archimedes might have his lever, but give you a place to set such information as this, and you can move a mountain of money. Before he knows what has beset him, your tenant is bustled out of $arcologies[0].name and replaced by a favored and hopefully more honest competitor, who @@.green;is well aware of the score here.@@ $activeSlave.slaveName, who made this possible, spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having her pregnant belly moisturized, her tired feet rubbed, her cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take her out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex, and $he @@.mediumaquamarine;trusts you@@ with all sorts of amusing whorehouse rumors. + Archimedes might have his lever, but give you a place to set such information as this, and you can move a mountain of money. Before he knows what has beset him, your tenant is bustled out of $arcologies[0].name and replaced by a favored and hopefully more honest competitor, who @@.green;is well aware of the score here.@@ $activeSlave.slaveName, who made this possible, spends the day <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex, and $he @@.mediumaquamarine;trusts you@@ with all sorts of amusing whorehouse rumors. <<set $activeSlave.devotion += 3, $activeSlave.trust += 3>> <<set $cash -= 2000>> <<set $arcologies[0].prosperity += 1>> @@ -15401,7 +15403,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Cum on $his face">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand over $him, quietly masturbating while watching her sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You fancy yourself a bit of a marks<<if $PC.title == 1>>man<<else>>woman<</if>>, and you don't feel the need to bend over $him to score good hits. Your load comes in three main jets: the first hits her on the nipple, the second tracks up $his sternum and throat, and the third splashes full across $his face as $his eyes fly open<<if $PC.vagina == 1>>, each of these accompanied by some less directionally perfect girlcum<</if>>. $He sputters with surprise and then outrage, but <<if !canSee($activeSlave)>>once $he recognizes your taste and<<else>>then $he<</if>> realizes who it is standing over her <<if canSee($activeSlave)>>and<<else>>does $he<</if>> @@.gold;freezes in terror.@@ + You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You fancy yourself a bit of a marks<<if $PC.title == 1>>man<<else>>woman<</if>>, and you don't feel the need to bend over $him to score good hits. Your load comes in three main jets: the first hits $him on the nipple, the second tracks up $his sternum and throat, and the third splashes full across $his face as $his eyes fly open<<if $PC.vagina == 1>>, each of these accompanied by some less directionally perfect girlcum<</if>>. $He sputters with surprise and then outrage, but <<if !canSee($activeSlave)>>once $he recognizes your taste and<<else>>then $he<</if>> realizes who it is standing over $his <<if canSee($activeSlave)>>and<<else>>does $he<</if>> @@.gold;freezes in terror.@@ <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> $He's quick, and $he immediately realizes <<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>> @@ -15417,7 +15419,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Squirt on $his face">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand over $him, quietly masturbating while watching her sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You're on excellent terms with your cunt, and you know just what it takes to make yourself squirt. When you feel the heat building just right, you quickly straddle $his face without touching $him, angling yourself carefully and increasing the pace of your schlicking. In no time at all, a jet of femcum splashes onto $his face and down across $his chest. $He sputters with surprise and then outrage, but then $he <<if canSee($activeSlave)>>realizes whose pussy $he's staring straight into<<else>>recognizes your flavor<</if>> and @@.gold;freezes in terror.@@ + You stand over $him, quietly masturbating while watching $him sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You're on excellent terms with your cunt, and you know just what it takes to make yourself squirt. When you feel the heat building just right, you quickly straddle $his face without touching $him, angling yourself carefully and increasing the pace of your schlicking. In no time at all, a jet of femcum splashes onto $his face and down across $his chest. $He sputters with surprise and then outrage, but then $he <<if canSee($activeSlave)>>realizes whose pussy $he's staring straight into<<else>>recognizes your flavor<</if>> and @@.gold;freezes in terror.@@ <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> $He's quick, and $he immediately realizes <<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>> @@ -15430,32 +15432,32 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <</if>> -<br><<link "Just watch her for a little while">> +<br><<link "Just watch $him for a little while">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand there for a while, watching the exhausted slave sleep. It's an oddly restful sight, and the aesthetics of her slumbering little movements hold your attention for a time.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You watch the subtle movements going on within her womb as well.<</if>> After a while, you head to your own bed. Several of her fellow slaves came and went as you watched $him, but if they're surprised by the sight, they have the presence of mind not to show it. + You stand there for a while, watching the exhausted slave sleep. It's an oddly restful sight, and the aesthetics of $his slumbering little movements hold your attention for a time.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> You watch the subtle movements going on within $his womb as well.<</if>> After a while, you head to your own bed. Several of $his fellow slaves came and went as you watched $him, but if they're surprised by the sight, they have the presence of mind not to show it. <br><br> - One of them quietly lets $him know about the incident the next day, though, and the overall impact on $his mental state is surprisingly positive. In a more normal human setting, the news that someone watched her sleep last night without $his consent or even knowledge at the time would disturb her greatly. However, it's not uncommon for slaves in the dormitory to wake up to the sounds of the occupant of the bedroll next to theirs getting fucked, and without $his consent, either. Perhaps you're odd, $he's obviously thinking, but @@.mediumaquamarine;perhaps you won't rape her while $he sleeps.@@ + One of them quietly lets $him know about the incident the next day, though, and the overall impact on $his mental state is surprisingly positive. In a more normal human setting, the news that someone watched $him sleep last night without $his consent or even knowledge at the time would disturb $him greatly. However, it's not uncommon for slaves in the dormitory to wake up to the sounds of the occupant of the bedroll next to theirs getting fucked, and without $him consent, either. Perhaps you're odd, $he's obviously thinking, but @@.mediumaquamarine;perhaps you won't rape $him while $he sleeps.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>> <<case "sexy succubus">> -<<link "Let her eat">> +<<link "let $him eat">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he's a good little succubus, and you're going to let her feed. $He knows exactly what you mean, and + You tell $him $he's a good little succubus, and you're going to let $him feed. $He knows exactly what you mean, and <<if $activeSlave.belly >= 300000>> leans onto $his _belly stomach <<else>> <<if $activeSlave.belly >= 5000>>gently lowers $himself<<else>>gets<</if>> to $his knees <</if>> - quickly, pressing $his $activeSlave.nipples nipples against your thighs and grasping your hips to give $himself leverage for some very aggressive oral. After + quickly, pressing $him $activeSlave.nipples nipples against your thighs and grasping your hips to give $himself leverage for some very aggressive oral. After <<if $PC.dick == 1>> - a couple of lush sucks at each of your balls<<if $PC.vagina == 1>> and some eager nuzzling of your pussylips<</if>>, $he moves straight to a hard blowjob, deepthroating your cock and almost ramming $his head against you.<<if $PC.vagina == 1>> $He keeps $his tongue stuck out, and whenever $he gets you fully hilted, $he manages to reach your pussylips with it.<</if>> $He <<if $activeSlave.fetish == "cumslut">>doesn't have to pretend to be starving for your cum.<<else>>does a good job of acting like $he's authentically starving for your cum.<</if>> $He groans with satisfaction when you blow your load down her gullet, + a couple of lush sucks at each of your balls<<if $PC.vagina == 1>> and some eager nuzzling of your pussylips<</if>>, $he moves straight to a hard blowjob, deepthroating your cock and almost ramming $his head against you.<<if $PC.vagina == 1>> $He keeps $his tongue stuck out, and whenever $he gets you fully hilted, $he manages to reach your pussylips with it.<</if>> $He <<if $activeSlave.fetish == "cumslut">>doesn't have to pretend to be starving for your cum.<<else>>does a good job of acting like $he's authentically starving for your cum.<</if>> $He groans with satisfaction when you blow your load down $his gullet, <<else>> - nuzzling $his nose against your moist cunt, $he starts to eat you out like $he's starving, sparing no time for subtlety, lapping up your female juices with evident relish. You run your fingers through $his $activeSlave.slaveName hair, telling her $he'll have to survive on pussyjuice. $He replies, but you hold $his head hard against you as $he does, turning whatever $he says into an unintelligible, delectable mumbling into your womanhood. $He groans with satisfaction when you stiffen with orgasm, giving $him a final gush of girlcum, + nuzzling $his nose against your moist cunt, $he starts to eat you out like $he's starving, sparing no time for subtlety, lapping up your female juices with evident relish. You run your fingers through $his $activeSlave.slaveName hair, telling $his $he'll have to survive on pussyjuice. $He replies, but you hold $his head hard against you as $he does, turning whatever $he says into an unintelligible, delectable mumbling into your womanhood. $He groans with satisfaction when you stiffen with orgasm, giving $him a final gush of girlcum, <</if>> and <<if $activeSlave.belly >= 5000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> bulk up<<else>>gets to $his feet<</if>> licking $his lips and patting $his _belly stomach. <<if $activeSlave.belly >= 1500>> @@ -15491,7 +15493,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Feed $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he's a good little succubus, and you're going to feed $him. + You tell $him $he's a good little succubus, and you're going to feed $him. <<if $activeSlave.boobs > 2000>> Reaching up under $his breasts for the top edge of $his outfit <<else>> @@ -15525,9 +15527,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> channel. <<= VaginalVCheck()>> - You're here to rut, not make love, and you give it to her hard, forcing <<if $activeSlave.voice >= 3>>high squeals<<else>>animal grunts<</if>> out of $him. $He climaxes strongly, and the glorious feeling finishes you as well, bringing rope after rope of your cum jetting into $him. $He groans at the feeling, and as $he <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 190>>slowly <</if>>gets to $his feet $he uses a hand to transfer a taste of the mixture of your seed and <<if $PC.vagina == 1>>both of your<<else>>her<</if>> pussyjuice to $his mouth. + You're here to rut, not make love, and you give it to $his hard, forcing <<if $activeSlave.voice >= 3>>high squeals<<else>>animal grunts<</if>> out of $him. $He climaxes strongly, and the glorious feeling finishes you as well, bringing rope after rope of your cum jetting into $him. $He groans at the feeling, and as $he <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 190>>slowly <</if>>gets to $his feet $he uses a hand to transfer a taste of the mixture of your seed and <<if $PC.vagina == 1>>both of your<<else>>$his<</if>> pussyjuice to $his mouth. <<if $activeSlave.belly >= 750000>> - "Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He groans, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. "<<Master>>! They won't <<s>>top! Oh... <<S>>o full... I can't <<s>>top con<<c>>eiving!" $He roles onto her back and clutches her absurd stomach. "<<S>>o tight! <<S>>o full! <<S>>o Good! I need more! Oh, <<Master>>..." $He may be getting a little too into the fantasy. + "Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope _heP can handle them all!" $He groans, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. "<<Master>>! They won't <<s>>top! Oh... <<S>>o full... I can't <<s>>top con<<c>>eiving!" $He roles onto $his back and clutches $his absurd stomach. "<<S>>o tight! <<S>>o full! <<S>>o Good! I need more! Oh, <<Master>>..." $He may be getting a little too into the fantasy. <<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>> A gush of fluid flows from $his pussy, snapping $him out of $his roleplay. "<<Master>>! I need... One'<<s>> coming now!" You rub $his contracting stomach, enjoying the feeling of the life within shifting to take advantage of the free space. You sigh and lean down, the vessel of your spawn needs help after pinning $himself in such a compromising position. Holding $his belly clear of $his crotch, you watch $him steadily push out $his child before spasming with orgasm and freeing it effortlessly into the world. After collecting it for a servant to handle, you help the exhausted $girl back to $his feet. $He thanks you sincerely for the assist before going to clean $himself up. You barely have time to turn away before another splash catches your attention. "<<Master>>... Another'<<s>>, mmmmh, coming...". <</if>> @@ -15565,13 +15567,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Fuck $him without feeding $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he's a good little succubus. Thinking $he understands, $he + You tell $him $he's a good little succubus. Thinking $he understands, $he <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>> turns and hugs the nearest wall, <<if $activeSlave.belly >= 300000>> - sliding $his _belly belly down it until it parts $his legs. $He shuffles onto it to offer you her needy cunt. + sliding $his _belly belly down it until it parts $his legs. $He shuffles onto it to offer you $his needy cunt. <<else>> - going up on tiptoe and cocking $his hips to offer you her needy cunt. + going up on tiptoe and cocking $his hips to offer you $his needy cunt. <</if>> $He moans as your dick <<if $activeSlave.vagina > 2>> @@ -15588,15 +15590,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> gets down on $his knees <</if>> - and starts to suck you off. $He deepthroats you eagerly, stretching to tickle your balls with $his tongue as $he gets you all the way in, and then shifting a hand to roll them around as $he sucks. As $he blows you, you ask her how succubi feed. "Well," $he gasps, popping your dickhead free of $his mouth and replacing the sucking with a stroking hand, + and starts to suck you off. $He deepthroats you eagerly, stretching to tickle your balls with $his tongue as $he gets you all the way in, and then shifting a hand to roll them around as $he sucks. As $he blows you, you ask $him how succubi feed. "Well," $he gasps, popping your dickhead free of $his mouth and replacing the sucking with a stroking hand, <</if>> "<<Master>>, they can eat a man'<<s>> e<<ss>>en<<c>>e by <<s>>wallowing hi<<s>> cum or getting him to ejaculate in<<s>>ide their pu<<ss>>ie<<s>>." <br><br> - You ask her whether $he would like to feed off you. "Oh ye<<s>> <<Master>>, plea<<s>>e. Plea<<s>>e feed me," $he begs. Too bad, you tell $him; $he gets to go hungry. After all, succubi can't feed using their butts. + You ask $him whether $he would like to feed off you. "Oh ye<<s>> <<Master>>, plea<<s>>e. Plea<<s>>e feed me," $he begs. Too bad, you tell $him; $he gets to go hungry. After all, succubi can't feed using their butts. <<if $activeSlave.vagina > 0>> You withdraw from $his cunt and stuff your cock up $his ass without pausing or softening your thrusting at all. <<else>> - You pull $him to $his feet by the hair, spin her around, shove her up against the wall, and stuff your cock up $his ass. + You pull $him to $his feet by the hair, spin $him around, shove $him up against the wall, and stuff your cock up $his ass. <</if>> <<if $activeSlave.anus > 2>> It's not like $his experienced butt can't take an assraping, but @@ -15634,83 +15636,83 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Tell your personal assistant to fuck $him already">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You ask $assistantName whether she's going anywhere with all this flirting. Her avatar looks at $activeSlave.slaveName. "Hear that, + You ask $assistantName whether _heA's going anywhere with all this flirting. _HisA avatar looks at $activeSlave.slaveName. "Hear that, <<switch $assistantAppearance>> <<case "monstergirl">> - human?" she growls. "You're all mine!" + human?" _heA growls. "You're all mine!" <br><br> "Oh noo, I'm being <<s>>acrifi<<c>>ed to a rape mon<<s>>ter," <<case "shemale">> - slut?" she says, smacking her lips. "You're all mine!" + slut?" _heA says, smacking _hisA lips. "You're all mine!" <br><br> "Oh noo, there'<<s>> no way that thing will fit in<<s>>ide me," <<case "amazon">> - slave?" she roars, rubbing her palms together powerfully. "You're my prize!" + slave?" _heA roars, rubbing _hisA palms together powerfully. "You're my prize!" <br><br> "Oh noo, I've been captured by a horny amazon," <<case "businesswoman">> - bitch?" she says icily, making a steeple with her fingers. "You'll satisfy me! Now!" + bitch?" _heA says icily, making a steeple with _hisA fingers. "You'll satisfy me! Now!" <br><br> "Oh noo, I'm a <<s>>lave to a horny older woman'<<s>> lewd de<<s>>ire<<s>>," <<case "fairy" "pregnant fairy">> - cutie?" she says, giggling devilishly. "You're aaaaaall miiiine!" + cutie?" _heA says, giggling devilishly. "You're aaaaaall miiiine!" <br><br> "Oh noo, I'm a <<s>>lave to a horny fairy'<<s>> lewd de<<s>>ire<<s>>," <<case "schoolgirl">> - cutie?" she says eagerly, already reaching down to start schlicking away. "You get to be my FWB!" + cutie?" _heA says eagerly, already reaching down to start schlicking away. "You get to be my FWB!" <br><br> "Oh noo, I have to <<s>>ati<<s>>fy a naughty little <<s>>choolgirl," <<case "goddess">> - girl?" she says beatifically. "When I'm through with you, you'll be as pregnant as I!" + girl?" _heA says beatifically. "When I'm through with you, you'll be as pregnant as I!" <br><br> "Oh noo, I'm about to be impregnated by a godde<<ss>>," <<case "hypergoddess">> - girl?" she says beatifically. "When I'm through with you, you'll be struggling to move!" + girl?" _heA says beatifically. "When I'm through with you, you'll be struggling to move!" <br><br> "Oh noo, I'm about to be bur<<s>>t by a <<s>>lut godde<<ss>>," <<case "loli">> - girl?" she says cutely. "If you think I'm so cute, why don't you lick my pussy?" + girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?" <br><br> "Oh noo, I'm about to be dominated by a loli," <<case "preggololi">> - girl?" she says cutely. "If you think I'm so cute, why don't you lick my pussy?" + girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?" <br><br> "Oh noo, I'm about to be dominated by a <<s>>lutty loli," <<case "angel">> - girl?" she says beatifically. "I'm going to show you divine skill!" + girl?" _heA says beatifically. "I'm going to show you divine skill!" <br><br> "Oh noo, I'm going to be taken to heaven," <<case "cherub">> - cutie?" she says cutely, already reaching down to start schlicking away. "You get to be my best friend for the evening!" + cutie?" _heA says cutely, already reaching down to start schlicking away. "You get to be my best friend for the evening!" <br><br> "Oh noo, I'm going to get bapti<<s>>ed by a <<s>>quirting little angel," <<case "incubus">> - dick-sleeve?" she says dominantly, already at full mast. "I'm going to use you till all you can think of is cock!" + dick-sleeve?" _heA says dominantly, already at full mast. "I'm going to use you till all you can think of is cock!" <br><br> "Oh noo, I'm going to fucked out of my mind," <<case "succubus">> - bitch?" she says dominantly, already wet. "I'm going to ride you till you're all used up!" + bitch?" _heA says dominantly, already wet. "I'm going to ride you till you're all used up!" <br><br> "Oh noo, I'm going to have my <<s>>e<<x>>ual e<<ss>>ence <<s>>tolen," <<case "imp">> - whore?" she says eagerly. "I'm going to torment you till you scream in pleasure!" + whore?" _heA says eagerly. "I'm going to torment you till you scream in pleasure!" <br><br> "Oh noo, I'd better <<s>>tart licking if I don't want to <<s>>uffer," <<case "witch">> - sexy?" she says eagerly, hiking her dress to reveal a squirming cock. "For once a spell gone wrong is working out!" + sexy?" _heA says eagerly, hiking _hisA dress to reveal a squirming cock. "For once a spell gone wrong is working out!" <br><br> "Oh noo, I'm going to get violated by a terrible witch," <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - nest?" she says eagerly, forming multiple cocks out of her body. "I'm going to fill you with eggs!" + nest?" _heA says eagerly, forming multiple cocks out of _hisA body. "I'm going to fill you with eggs!" <br><br> "Oh noo, I'm going to be a nur<<s>>ery for a freak," <</switch>> - the $desc gasps with mock horror. Your personal assistant gives $him rapid-fire orders, making $him set up sex toys in the corner of your office to conform to her avatar. + the $desc gasps with mock horror. Your personal assistant gives $him rapid-fire orders, making $him set up sex toys in the corner of your office to conform to _hisA avatar. <br><br> The next slave on the inspection enters and approaches you, sitting imperturbably behind your desk, but stops and stares when she notices what's going on in the corner of your office. A wallscreen in the corner shows $assistantName's avatar <<switch $assistantAppearance>> <<case "monstergirl">> - with both her cocks up the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is + with both _hisA cocks up the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is <<if $activeSlave.belly >= 300000>> face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>, <<elseif $activeSlave.belly >= 5000>> @@ -15730,7 +15732,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.analCount += 2, $analTotal += 2>> <</if>> <<case "shemale">> - with her third leg inside + with _hisA third leg inside <<if canDoVaginal($activeSlave)>> the pussy of an avatar of $activeSlave.slaveName. Below this, the slave $himself is taking vaginal from a fuckmachine with an absurdly big dildo. <<set $activeSlave.vaginalCount++, $vaginalTotal++>> @@ -15747,14 +15749,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t Below this, the slave $himself is taking hard anal from a fuckmachine. <<set $activeSlave.analCount++, $analTotal++>> <</if>> - <<case "businesswoman" "schoolgirl" "loli" "preggololi" "angel" "cherub">> + <<case "angel" "businesswoman" "cherub" "loli" "preggololi" "schoolgirl">> being eaten out by an avatar of $activeSlave.slaveName, who is touching $himself in turn. Below this, the slave $himself is performing oral on a realistic fake pussy while masturbating. <<set $activeSlave.oralCount++, $oralTotal++>> <<case "fairy">> <<if $activeSlave.height < 35>> - <<if $activeSlave.dick > 0>>bouncing on $activeSlave.slaveName's lap and eagerly taking $his cock, finally enjoying sex with someone her size. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, bloated with cum.<<else>>legs tied to one another as they scissor enthusiastically, covered in sexual fluids from the waist down, Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>> + <<if $activeSlave.dick > 0>>bouncing on $activeSlave.slaveName's lap and eagerly taking $his cock, finally enjoying sex with someone _hisA size. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, bloated with cum.<<else>>legs tied to one another as they scissor enthusiastically, covered in sexual fluids from the waist down, Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>> <<else>> - bouncing on $activeSlave.slaveName's <<if $activeSlave.dick > 0>>cock, distending her belly with each thrust<<else>>hard clit<</if>> while a vine is gently penetrating below $him. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll pussy <<if $activeSlave.dick > 0>>bloated with cum<</if>> while a flexible dildo gently thrusts into $his + bouncing on $activeSlave.slaveName's <<if $activeSlave.dick > 0>>cock, distending _hisA belly with each thrust<<else>>hard clit<</if>> while a vine is gently penetrating below $him. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll pussy <<if $activeSlave.dick > 0>>bloated with cum<</if>> while a flexible dildo gently thrusts into $his <<if canDoVaginal($activeSlave)>> pussy. It's an ejaculating model, and it's currently pumping a large volume of semen into $his cunt. <<set $activeSlave.vaginalCount++, $vaginalTotal++>> @@ -15765,9 +15767,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<case "pregnant fairy">> <<if $activeSlave.height < 35>> - <<if $activeSlave.dick > 0>>lying on her back as $activeSlave.slaveName gently thrusts into her, legs locked around $his waist. $activeSlave.slaveName enjoys running $his hands over the fairy's pregnant belly as $he leans in to suckle on the fairy's breasts. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, the pregnant belly swelling a little larger with every ejaculation.<<else>>legs tied to one another as they scissor gently, covered in sexual fluids from the waist down. $activeSlave.slaveName enjoys rubbing and kissing the pregnant belly from time to time. Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>> + <<if $activeSlave.dick > 0>>lying on _hisA back as $activeSlave.slaveName gently thrusts into _himA, legs locked around $his waist. $activeSlave.slaveName enjoys running $his hands over the fairy's pregnant belly as $he leans in to suckle on the fairy's breasts. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, the pregnant belly swelling a little larger with every ejaculation.<<else>>legs tied to one another as they scissor gently, covered in sexual fluids from the waist down. $activeSlave.slaveName enjoys rubbing and kissing the pregnant belly from time to time. Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>> <<else>> - cradling her belly as $he's being eaten out by an avatar of $activeSlave.slaveName, who is being double penetrated by a couple of vines. Below this, the slave $himself is performing oral on a 'realistic' tiny fairy doll pussy while being penetrated by two flexible dildos. They're an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor. + cradling _hisA belly as _heA's being eaten out by an avatar of $activeSlave.slaveName, who is being double penetrated by a couple of vines. Below this, the slave $himself is performing oral on a 'realistic' tiny fairy doll pussy while being penetrated by two flexible dildos. They're an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor. <<set $activeSlave.oralCount++, $oralTotal++>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> <<set $activeSlave.vaginalCount++, $vaginalTotal++, $activeSlave.analCount++, $analTotal++>> @@ -15850,7 +15852,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.oralCount++, $oralTotal++>> <<case "witch">> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - with her prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is + with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is <<if $activeSlave.belly >= 300000>> face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>, <<elseif $activeSlave.belly >= 5000>> @@ -15861,7 +15863,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t with multiple vibrating dildos quivering in $his ass and pussy. <<set $activeSlave.vaginalCount += 2, $vaginalTotal += 2, $activeSlave.analCount += 2, $analTotal += 2>> <<elseif canDoVaginal($activeSlave)>> - with her prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is + with _hisA prehensile cocks crammed into every available hole in an avatar of $activeSlave.slaveName. Below this, the slave $himself is <<if $activeSlave.belly >= 300000>> face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>, <<elseif $activeSlave.belly >= 5000>> @@ -15872,7 +15874,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t with multiple vibrating dildos quivering in $his pussy. <<set $activeSlave.vaginalCount += 4, $vaginalTotal += 4>> <<else>> - with her prehensile cocks crammed into the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is + with _hisA prehensile cocks crammed into the asshole of an avatar of $activeSlave.slaveName. Below this, the slave $himself is <<if $activeSlave.belly >= 300000>> face-down, perched atop $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>, <<elseif $activeSlave.belly >= 5000>> @@ -15884,7 +15886,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.analCount += 4, $analTotal += 4>> <</if>> <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - with her tentacles crammed into every available hole in an avatar of $activeSlave.slaveName, rapidly pumping eggs into $his quickly swelling body. + with _hisA tentacles crammed into every available hole in an avatar of $activeSlave.slaveName, rapidly pumping eggs into $his quickly swelling body. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> Below this, the slave $himself <<if isItemAccessible("a huge empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight <= 130>> @@ -15933,7 +15935,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> At different intervals, an undulation moves down the dildo, forcing $him to stretch wide to allow it to pass into $his body. Each "egg" forced into $him coincides with another blast from the ejaculating model, and it's filled $him so completely that each gush of fake cum flows down $his legs to join the puddle on the floor. <</switch>> - "@@.hotpink;Good $girl,@@" $assistantName says. The new slave turns resolutely away from the arresting sight and gets on with the inspection, doing her best to ignore the lewd noises coming from that part of the room. + "@@.hotpink;Good $girl,@@" $assistantName says. The new slave turns resolutely away from the arresting sight and gets on with the inspection, doing $his best to ignore the lewd noises coming from that part of the room. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -15991,7 +15993,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.fetish == "sadist">> getting spanked by an avatar of $activeSlave.slaveName. "Oh, ah, e-excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, ow," $he says, and the slave's avatar waves. <<elseif $activeSlave.fetish == "masochist">> - raining spanks on an avatar of $activeSlave.slaveName as it kisses and licks her lower legs. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," $he says, and the slave's avatar waves weakly, since $his mouth is busy. + raining spanks on an avatar of $activeSlave.slaveName as it kisses and licks $his lower legs. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," $he says, and the slave's avatar waves weakly, since $his mouth is busy. <<set $activeSlave.oralCount++, $oralTotal++>> <<elseif $activeSlave.fetish == "dom">> getting fucked by an avatar of $activeSlave.slaveName. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," $he says, and the slave's avatar waves cheerily. @@ -16011,7 +16013,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.fetish == "pregnancy">> <<switch $assistantAppearance>> <<case "goddess" "hypergoddess" "incubus" "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - fucking a heavily pregnant avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," $he says, thrusting hard and swelling her partner's belly a bit more; the slave's avatar, which is a little overwhelmed and very full, waves weakly, before returning $his hand to her overfilled middle. + fucking a heavily pregnant avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," $he says, thrusting hard and swelling $his partner's belly a bit more; the slave's avatar, which is a little overwhelmed and very full, waves weakly, before returning $his hand to $his overfilled middle. <<default>> fucking an avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," $he says, and the slave's avatar, which is a little overwhelmed, waves weakly. <</switch>> @@ -16090,13 +16092,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> up $his stomach. <</if>> - $He spreads $his legs as wide as they'll go, and reaches down to spread $his buttocks even wider, offering you + $He spreads $his legs as wide as they'll go, and reaches down to spread $his buttocks even wider, offering you $his <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $his holes. + holes. <<elseif canDoVaginal($activeSlave)>> - $his pussy. + pussy. <<else>> - $his asshole. + asshole. <</if>> $He <<if $activeSlave.voice == 0>>tries to groan<<else>>groans<</if>> with anticipation of the coming relief as you slide <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> past $his <<if canDoVaginal($activeSlave)>> @@ -16123,7 +16125,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Use $his trouble to dominate $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step in and trace a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand across $his lips before inserting two fingers into $his mouth. $He looks puzzled, but obediently begins to suck on your fingers. You use your other hand to explore $his body, titillating the heavily aroused $desc until $he's on the verge of orgasm. Without warning, you place an elastic band around the slave's dickhead. $He writhes with discomfort, but knows better than to protest. It's tight, but not agonizingly so. $He'll be able to cum, but not a drop will get out. Grabbing $him by a nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>>, you pull her down to $his knees, enjoying the motion of $his body as $he wriggles with the discomfort of being tugged this way, the uncomfortable thing squeezing the tip of $his cock, and the suspicion that this is going to be tough. + You step in and trace a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand across $his lips before inserting two fingers into $his mouth. $He looks puzzled, but obediently begins to suck on your fingers. You use your other hand to explore $his body, titillating the heavily aroused $desc until $he's on the verge of orgasm. Without warning, you place an elastic band around the slave's dickhead. $He writhes with discomfort, but knows better than to protest. It's tight, but not agonizingly so. $He'll be able to cum, but not a drop will get out. Grabbing $him by a nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>>, you pull $him down to $his knees, enjoying the motion of $his body as $he wriggles with the discomfort of being tugged this way, the uncomfortable thing squeezing the tip of $his cock, and the suspicion that this is going to be tough. <br><br> Once $he's in position, you <<if $activeSlave.butt > 12>> @@ -16145,7 +16147,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> $His cock is so long that it drags along the floor as you pound <<if $activeSlave.belly >= 300000>> - her against $his _belly dome of a stomach. + $him against $his _belly dome of a stomach. <<elseif $activeSlave.boobs > 12000>> $him, $his enormous tits serving as a cushion for $his torso to rest against. <<elseif $activeSlave.boobs > 7000>> @@ -16154,11 +16156,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t $him. <</if>> <br><br> - $He's so pent up that $he reaches $his first climax quickly, filling $his capped dick with cum. $He <<if $activeSlave.voice == 0>>tries to moan<<else>>moans<</if>> at the combination of relief and pressure inside $his dick, and then slumps a little when $he feels the <<if $PC.dick == 1>>penis<<else>>hard phallus<</if>> inside her fuck her even harder, forcing her towards a second orgasm. And after that one, a third. And a fourth. + $He's so pent up that $he reaches $his first climax quickly, filling $his capped dick with cum. $He <<if $activeSlave.voice == 0>>tries to moan<<else>>moans<</if>> at the combination of relief and pressure inside $his dick, and then slumps a little when $he feels the <<if $PC.dick == 1>>penis<<else>>hard phallus<</if>> inside $him fuck $him even harder, forcing $him towards a second orgasm. And after that one, a third. And a fourth. <br><br> - When you finally climax yourself, you stand, leaving her writhing at your feet with $his huge soft cock positively pressurized. Considering the situation, you kneel down at $his side, deciding what to do. Stroking $him in a mockery of reassurance, you grab $his agonized member, producing a <<if $activeSlave.voice == 0>>gaping, silent scream<<else>>little shriek<</if>>. + When you finally climax yourself, you stand, leaving $him writhing at your feet with $his huge soft cock positively pressurized. Considering the situation, you kneel down at $his side, deciding what to do. Stroking $him in a mockery of reassurance, you grab $his agonized member, producing a <<if $activeSlave.voice == 0>>gaping, silent scream<<else>>little shriek<</if>>. <<if $activeSlave.toyHole == "dick" && ($PC.preg == 0 || $PC.vagina == 0)>> - You maneuver the massive thing into your own <<if $PC.preg == 0 && $PC.vagina == 1>>pussy<<else>>asshole<</if>>, slide a finger in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>moans with expectation<<else>>begs abjectly to unleash her<</if>>, and pop the elastic off. You get to watch $his face as $he floods your <<if $PC.preg == 0 && $PC.vagina == 1>>womanhood<<else>>bowels<</if>> with cum, your stomach taking on a distinctive swell as $his pentup load empties into you. + You maneuver the massive thing into your own <<if $PC.preg == 0 && $PC.vagina == 1>>pussy<<else>>asshole<</if>>, slide a finger in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>moans with expectation<<else>>begs abjectly to unleash $his<</if>>, and pop the elastic off. You get to watch $his face as $he floods your <<if $PC.preg == 0 && $PC.vagina == 1>>womanhood<<else>>bowels<</if>> with cum, your stomach taking on a distinctive swell as $his pent-up load empties into you. <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 50, 0, $activeSlave.ID)>> @@ -16174,7 +16176,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.analCount++, $analTotal++>> <</if>> <</if>> - The cum pressurization brought her almost to half-hardness, and as this effect diminishes, $his dick slides out again, releasing a lewd torrent of cum. $He cries with overstimulation, relief, pain, and humiliation, @@.hotpink;groveling below you@@ in utter subjugation. + The cum pressurization brought $him almost to half-hardness, and as this effect diminishes, $his dick slides out again, releasing a lewd torrent of cum. $He cries with overstimulation, relief, pain, and humiliation, @@.hotpink;groveling below you@@ in utter subjugation. <<set $activeSlave.devotion += 4>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> @@ -16184,7 +16186,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Make love to $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You crane your neck down and kiss her on the lips. $He awakens slowly, gently, $his $activeSlave.eyeColor eyes fluttering open, looking black in the nighttime gloom. $He smiles into your mouth, and you feel $his pulse quicken through the extensive contact down your bodies. You interlace your fingers between $hers and turn, pressing her back down into the soft sheets. $He opens $himself for you, spreading $his legs wide and embracing you with them, making sure to run $his heels up the backs of your calves in a way that sends a shiver up your spine. Feeling this through your kissing mouths, $he smiles into you, a pleased expression $he maintains as you + You crane your neck down and kiss $him on the lips. $He awakens slowly, gently, $his $activeSlave.eyeColor eyes fluttering open, looking black in the nighttime gloom. $He smiles into your mouth, and you feel $his pulse quicken through the extensive contact down your bodies. You interlace your fingers between $hers and turn, pressing $him back down into the soft sheets. $He opens $himself for you, spreading $his legs wide and embracing you with them, making sure to run $his heels up the backs of your calves in a way that sends a shiver up your spine. Feeling this through your kissing mouths, $he smiles into you, a pleased expression $he maintains as you <<if $activeSlave.belly >= 300000 && $PC.belly >= 5000>> struggle to find a position to handle both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and <<elseif $activeSlave.belly >= 300000>> @@ -16201,9 +16203,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if ($activeSlave.fetishKnown == 0)>> Knowing little about $his sexual peccadilloes, but confident that $he'll do $his best to enjoy your lovemaking, you continue this shockingly intimate intercourse until $he climaxes. <<elseif ($activeSlave.fetish == "none")>> - Knowing $him to be quite endearingly vanilla, you continue this shockingly intimate intercourse until $he climaxes, kissing her all the way through your soft missionary lovemaking. + Knowing $him to be quite endearingly vanilla, you continue this shockingly intimate intercourse until $he climaxes, kissing $him all the way through your soft missionary lovemaking. <<elseif $activeSlave.fetish == "buttslut">> - Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide a hand around behind and under her so you can tease $his ass. $He gives $his butt a little wiggle of thanks, and orgasms promptly. + Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide a hand around behind and under $him so you can tease $his ass. $He gives $his butt a little wiggle of thanks, and orgasms promptly. <<set $activeSlave.analCount++, $analTotal++>> <<elseif $activeSlave.fetish == "cumslut">> Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide your tongue into $his mouth, making your kisses so frankly sexual and penetrative that you're practically making oral love at the same time as you do it missionary style. @@ -16214,13 +16216,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.fetish == "dom">> You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more equal pleasures, if only for the moment. $He complies with something like relief, climaxing with surprising speed; perhaps $he appreciates a turn on the bottom. <<elseif $activeSlave.fetish == "submissive">> - Being on the bottom for some missionary lovemaking is very much to $his tastes, and $he rises to the point of climax with almost indecent speed. You slow your pace to nothing more than a gentle pressure now and then, and keep her on the edge of orgasm for a long time. + Being on the bottom for some missionary lovemaking is very much to $his tastes, and $he rises to the point of climax with almost indecent speed. You slow your pace to nothing more than a gentle pressure now and then, and keep $him on the edge of orgasm for a long time. <<elseif $activeSlave.fetish == "boobs">> Knowing $his tastes and wanting the intimacy of mutual pleasure, you make sure your nipples line up <<if $activeSlave.nipples == "fuckable">>and interlock <</if>>with $hers as best you can. You note the buck of pleasure this produces each time you get it perfectly right as you make love to $him. <<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.pregKnown == 1>> - Being on the bottom for some missionary lovemaking is very much to her tastes, even though $he is already pregnant. $He builds to orgasm slowly, reveling in the feeling of being your woman. + Being on the bottom for some missionary lovemaking is very much to $his tastes, even though $he is already pregnant. $He builds to orgasm slowly, reveling in the feeling of being your woman. <<elseif $activeSlave.fetish == "pregnancy">> - Being on the bottom for some missionary lovemaking is very much to $his tastes, even though the encounter isn't particularly likely to get her pregnant. $He builds to orgasm slowly, reveling in the feeling of being your woman. + Being on the bottom for some missionary lovemaking is very much to $his tastes, even though the encounter isn't particularly likely to get $him pregnant. $He builds to orgasm slowly, reveling in the feeling of being your $woman. <</if>> As you made love to $him, the gentle motions, feminine sighs, and delicate aroma of pleasure woke the other girls in bed with you, and they began their own intimacy with each other. As you go back to sleep, you're surrounded with something very like Sapphic paradise. $activeSlave.slaveName nestles up to you once more, embracing you with @@.mediumaquamarine;trust born of love.@@ <<set $activeSlave.trust += 4, $activeSlave.vaginalCount++, $vaginalTotal++>> @@ -16231,7 +16233,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You feel your libido building, building, building within you, an endless cycle that mounts rapidly to an inevitable explosion. It comes, and you perform a catlike glide around until your head is at $his feet. As you did, you infiltrated one of your legs between $hers from its convenient starting point. $He wakes suddenly to the feeling of being manhandled, and then comes fully awake to the shockingly intimate sensation of your pussies pressed together as closely as physically possible. <br><br> - Holding $his upper thighs with your hands to pull her against you, you grind into $him, fucking her about as comprehensively as it's possible for someone without a cock to fuck a woman. $He's most definitely up for it, and you see $his eyes fly wide in the gloom as the full weight of the pleasure crashes into $him. It's not exactly a position for lovemaking, since your faces are about as far apart as they can possibly be during sex, but kissing be damned, you're here to fuck. Naturally, this evolution wakes everyone else up too, and before long, there's a regular lesbian orgy going on. When it's over, $activeSlave.slaveName finds $himself returning exhaustedly to sleep, one of your arms curled + Holding $his upper thighs with your hands to pull $him against you, you grind into $him, fucking $him about as comprehensively as it's possible for someone without a cock to fuck a $woman. $He's most definitely up for it, and you see $his eyes fly wide in the gloom as the full weight of the pleasure crashes into $him. It's not exactly a position for lovemaking, since your faces are about as far apart as they can possibly be during sex, but kissing be damned, you're here to fuck. Naturally, this evolution wakes everyone else up too, and before long, there's a regular lesbian orgy going on. When it's over, $activeSlave.slaveName finds $himself returning exhaustedly to sleep, one of your arms curled <<if $activeSlave.belly >= 5000>> under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> <<else>> @@ -16244,16 +16246,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "cow milking">> -<<link "Treat her right">> +<<link "Treat $him right">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give $him a reassuring swat across the rump and tell her you'd be happy to. You head toward the utility area with the milkers, and $he follows eagerly behind you, + You give $him a reassuring swat across the rump and tell $him you'd be happy to. You head toward the utility area with the milkers, and $he follows eagerly behind you, <<if $activeSlave.fetish == "boobs">> very ready to have you touch $his favorite part of $his body. <<else>> pleased you'd do this for $him and very ready to relieve the pressure in $his tits. <</if>> - To $his surprise, you seat yourself on a stool and draw her onto your lap rather than sitting her at a milking machine. Reaching behind yourself, you give the $desc cow on your lap a broad bucket, and tell $him to hold it + To $his surprise, you seat yourself on a stool and draw $him onto your lap rather than sitting $him at a milking machine. Reaching behind yourself, you give the $desc cow on your lap a broad bucket, and tell $him to hold it <<if $activeSlave.belly >= 5000>> under $his breasts as best $he can, given $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly. <<else>> @@ -16273,13 +16275,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.fetish == "boobs">> $He orgasms strongly soon after the first jet of milk, producing an especially thick squirt. <</if>> - After you're satisfied, you move your hands to $his nipples and milk her like a cow, getting the last drops of milk out of $him + After you're satisfied, you move your hands to $his nipples and milk $him like a cow, getting the last drops of milk out of $him <<if $activeSlave.fetish == "boobs">> and producing a shuddering series of aftershocks. <<else>> and bringing $him to a surprise orgasm. <</if>> - When $he's done, $he leans back into you for a moment before setting the milk bucket down, a wordless gesture of @@.mediumaquamarine;considerable trust.@@ It means a lot to $him that you would milk her yourself. + When $he's done, $he leans back into you for a moment before setting the milk bucket down, a wordless gesture of @@.mediumaquamarine;considerable trust.@@ It means a lot to $him that you would milk $him yourself. <<set $activeSlave.trust += 4, $activeSlave.mammaryCount++, $mammaryTotal++>> <<set $activeSlave.lactationDuration = 2>> <<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>> @@ -16288,20 +16290,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Treat $him like a cow">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You ask her if $he really wants to be treated like a cow. $He nods, a bit hesitantly, sensing a certain danger but not really knowing what else to do. You lead $him to the utility area of the penthouse, where the milkers are, but stop her when $he starts for one. Instead, you + You ask $him if $he really wants to be treated like a cow. $He nods, a bit hesitantly, sensing a certain danger but not really knowing what else to do. You lead $him to the utility area of the penthouse, where the milkers are, but stop $him when $he starts for one. Instead, you <<if $activeSlave.belly >= 300000>> - pull her over $his _belly belly with $his udders hanging beneath her<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. + pull $him over $his _belly belly with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. <<else>> - fetch a pair of low stools, make her kneel on one, and put $his hands on the other, so $he's on all fours with $his udders hanging beneath her<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. + fetch a pair of low stools, make $him kneel on one, and put $his hands on the other, so $he's on all fours with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. <</if>> <br><br> - You swing a bucket under $his nipples and milk $him by hand, as though $he were a cow. This isn't exactly what $he had in mind, but the feeling of your hands on $his nipples, tugging the streams of milk out of $him and into the bucket beneath <<if $activeSlave.fetish == "boobs">>brings her very close to orgasm<<else>>eventually relaxes her<</if>>. Seeing this, you muse aloud, as though to yourself, that a little farmyard bestiality wouldn't hurt, since there's no one here but you and a dairy cow. Pawing the cow's behind possessively, you finger her aggressively before deciding on + You swing a bucket under $his nipples and milk $him by hand, as though $he were a cow. This isn't exactly what $he had in mind, but the feeling of your hands on $his nipples, tugging the streams of milk out of $him and into the bucket beneath <<if $activeSlave.fetish == "boobs">>brings $his very close to orgasm<<else>>eventually relaxes $his<</if>>. Seeing this, you muse aloud, as though to yourself, that a little farmyard bestiality wouldn't hurt, since there's no one here but you and a dairy cow. Pawing the cow's behind possessively, you finger $him aggressively before deciding on <<if canDoVaginal($activeSlave) && $PC.dick == 1>> - a little cow pussy. You walk around behind $him and fuck her hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below. + a little cow pussy. You walk around behind $him and fuck $him hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below. <<= VaginalVCheck()>> When you're finished, you step away, leaving your cum to run out of $his cunt and down $his thighs, <<elseif canDoAnal($activeSlave) && $PC.dick == 1>> - some cow ass. You walk around behind $him and buttfuck her hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below. + some cow ass. You walk around behind $him and buttfuck $his hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below. <<= AnalVCheck()>> When you're finished, you step away, leaving your cum to drip out of $his gaped asshole, <<else>> @@ -16312,7 +16314,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<set $activeSlave.oralCount++, $oralTotal++>> <</if>> - and ask her what cows say. "Um, moo?" $he responds in a small, + and ask $him what cows say. "Um, moo?" $he responds in a small, @@.hotpink;submissive@@ voice. <<set $activeSlave.devotion += 4, $activeSlave.mammaryCount++, $mammaryTotal++>> <<set $activeSlave.lactationDuration = 2>> @@ -16431,17 +16433,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> and <<if $activeSlave.trust > 50>>relaxes, trusting you completely<<else>>does $his best to relax<</if>>. $He gasps when $he feels <<if $PC.refreshmentType == 0>> - the head of the lit $PC.refreshment, warm from your mouth, being gently inserted into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You give her precise muscular instructions, which $he does $his best to obey, and before long, $he's slowly smoking it using $his fuckhole. $His body is very permeable there, and the effects of the it hit her very quickly. + the head of the lit $PC.refreshment, warm from your mouth, being gently inserted into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You give $him precise muscular instructions, which $he does $his best to obey, and before long, $he's slowly smoking it using $his fuckhole. $His body is very permeable there, and the effects of the it hit $him very quickly. <<elseif $PC.refreshmentType == 1>> - the cool tip of a small enema bulb being gently inserted into $his ass. You press the $PC.refreshment into her slowly. You didn't give her much, but $his body is very permeable there, and the effects hit her very quickly. + the cool tip of a small enema bulb being gently inserted into $his ass. You press the $PC.refreshment into $him slowly. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly. <<elseif $PC.refreshmentType == 3>> - $PC.refreshment being gently inserted into $his ass. You didn't give her much, but $his body is very permeable there, and the effects hit her very quickly. + $PC.refreshment being gently inserted into $his ass. You didn't give $him much, but $his body is very permeable there, and the effects hit $him very quickly. <<elseif $PC.refreshmentType == 4>> - the tip of the syringe penetrate $his <<if $activeSlave.dick > 0>>cock head<<elseif $activeSlave.vagina == -1>>tiny front hole<<else>>clit<</if>> and the sting of the contents being forced into $his sex organ. You didn't give her much, but $his body is very sensitive there, and the effects hit her very quickly. + the tip of the syringe penetrate $his <<if $activeSlave.dick > 0>>cock head<<elseif $activeSlave.vagina == -1>>tiny front hole<<else>>clit<</if>> and the sting of the contents being forced into $his sex organ. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly. <<elseif $PC.refreshmentType == 5>> - your finger pushing a pill deep into her <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give her much, but $his body is very sensitive there, and the effects hit her very quickly. + your finger pushing a pill deep into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but $his body is very sensitive there, and the effects hit $him very quickly. <<elseif $PC.refreshmentType == 6>> - finger pushing a tab into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give her much, but it quickly dissolves and $his body is very sensitive there, so the effects hit her very quickly. + finger pushing a tab into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give $him much, but it quickly dissolves and $his body is very sensitive there, so the effects hit $him very quickly. <</if>> You go back to work, letting the slave loll around on your desk, enjoying the effects. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun. <<else>> @@ -16476,7 +16478,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Put your $PC.refreshment out on $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You select a $PC.refreshment and start smoking, ordering $him to stick around and get $his tits out. $He sees nothing too unusual about this, and obeys complaisantly, standing beside you with $his breasts bare. You reach over and play with her as you smoke, teasing her + You select a $PC.refreshment and start smoking, ordering $him to stick around and get $his tits out. $He sees nothing too unusual about this, and obeys complaisantly, standing beside you with $his breasts bare. You reach over and play with $his as you smoke, teasing $his <<if $activeSlave.nipples == "huge">> massive, erect nipples. <<elseif $activeSlave.nipples == "inverted">> @@ -16490,7 +16492,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> nipples and playing with $his boobs. <</if>> - Deciding that you're done with the $PC.refreshment, you pull a long draw of smoke into your mouth, bringing the coal at its foot to a fine glow. Then you pull it out of your mouth and press it against the slave's defenseless $activeSlave.skin <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>pregnant belly<<else>>breast<</if>>. $He <<if $activeSlave.voice == 0>>makes the horrible rasping noise that her mute throat substitutes for screams of agony<<else>>shrieks with agony<</if>>, flinching away instinctively, and collapses to the ground<<if $activeSlave.fetish == "masochist">>, orgasming from the sudden rush of stimulation<</if>>. Writhing in pain, $he cherishes the burn on her <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>stomach<<else>>breast<</if>> with both hands, her sobbing only interrupted by ragged gasps for breath. You order $him to go get her burn looked at, and go back to your work. $He scrabbles toward the door, weeping,<<if $activeSlave.fetish == "masochist">> horrified at $himself for getting off to that, @@.hotpink;more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;eager to get away.@@ + Deciding that you're done with the $PC.refreshment, you pull a long draw of smoke into your mouth, bringing the coal at its foot to a fine glow. Then you pull it out of your mouth and press it against the slave's defenseless $activeSlave.skin <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>pregnant belly<<else>>breast<</if>>. $He <<if $activeSlave.voice == 0>>makes the horrible rasping noise that $his mute throat substitutes for screams of agony<<else>>shrieks with agony<</if>>, flinching away instinctively, and collapses to the ground<<if $activeSlave.fetish == "masochist">>, orgasming from the sudden rush of stimulation<</if>>. Writhing in pain, $he cherishes the burn on $his <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>>stomach<<else>>breast<</if>> with both hands, $his sobbing only interrupted by ragged gasps for breath. You order $him to go get $his burn looked at, and go back to your work. $He scrabbles toward the door, weeping,<<if $activeSlave.fetish == "masochist">> horrified at $himself for getting off to that, @@.hotpink;more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;eager to get away.@@ <<set $activeSlave.trust -= 5>> <<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>> <</replace>> @@ -16499,10 +16501,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "tittymonster inspection">> -<<link "Use her as a cushion">> +<<link "Use $him as a cushion">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he's looking very nice today. Surprised, $he manages <<if $activeSlave.devotion > 20>>to thank you prettily, wondering<<else>>to thank you hesitantly, worrying about<</if>> what comes next. You pick up a tablet, come around your desk, and fold yourself into a lotus position, just in front of $him and with your back to $him. Struck by this strange and trusting maneuver, $he keeps still, letting you get yourself situated. You slide backward until you are pressed against the mound of breasts behind you, and then relax into their soft, fleshy mass. Your back nestles naturally into $his cleavage, and the give of $his huge mammaries conforms to you, allowing you to rest your elbows comfortably on each breast as though they were armrests. Feeling the weight of you against $his chest, $activeSlave.slaveName throws $his arms back, bracing $himself against the floor.<<if $activeSlave.belly >= 15000>> You can feel $his full, taut, <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> just barely once you have sunk deep into $his cleavage.<</if>> You begin to tap away at the tablet, and $he realizes <<if $activeSlave.devotion > 20>>with pleased surprise<<else>>with mixed resentment and relief<</if>> that you intend to use her as a sort of human cushion for a while. From where $he's sitting, $he <<if canSee($activeSlave)>>can easily read over your shoulder, and you make no attempt to stop her<<else>>could read over your shoulder, if $he could see<</if>>; keeping secrets from your slaves is generally impractical, and <<if $activeSlave.devotion > 20>>this $desc is trustworthy<<else>>there's nothing $he could do with your secrets, even if $he were to try<</if>>. After an hour or so, you inspect $him and dismiss $him, and $he leaves @@.mediumaquamarine;trusting $his bizarre place@@ in your world. + You tell $him $he's looking very nice today. Surprised, $he manages <<if $activeSlave.devotion > 20>>to thank you prettily, wondering<<else>>to thank you hesitantly, worrying about<</if>> what comes next. You pick up a tablet, come around your desk, and fold yourself into a lotus position, just in front of $him and with your back to $him. Struck by this strange and trusting maneuver, $he keeps still, letting you get yourself situated. You slide backward until you are pressed against the mound of breasts behind you, and then relax into their soft, fleshy mass. Your back nestles naturally into $his cleavage, and the give of $his huge mammaries conforms to you, allowing you to rest your elbows comfortably on each breast as though they were armrests. Feeling the weight of you against $his chest, $activeSlave.slaveName throws $his arms back, bracing $himself against the floor.<<if $activeSlave.belly >= 15000>> You can feel $his full, taut, <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> just barely once you have sunk deep into $his cleavage.<</if>> You begin to tap away at the tablet, and $he realizes <<if $activeSlave.devotion > 20>>with pleased surprise<<else>>with mixed resentment and relief<</if>> that you intend to use $him as a sort of human cushion for a while. From where $he's sitting, $he <<if canSee($activeSlave)>>can easily read over your shoulder, and you make no attempt to stop $him<<else>>could read over your shoulder, if $he could see<</if>>; keeping secrets from your slaves is generally impractical, and <<if $activeSlave.devotion > 20>>this $desc is trustworthy<<else>>there's nothing $he could do with your secrets, even if $he were to try<</if>>. After an hour or so, you inspect $him and dismiss $him, and $he leaves @@.mediumaquamarine;trusting $his bizarre place@@ in your world. <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -16510,7 +16512,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Enjoy $his helplessness">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give her no orders at all, since $his helplessness makes $his <<if $activeSlave.devotion > 20>>cooperation<<else>>consent<</if>> completely unnecessary for what you're planning. $He makes to turn as you come around behind $him, but $he can manage only a partial crane of $his shoulders and neck to <<if canSee($activeSlave)>>see<<else>>figure out<</if>> what you're doing. Seizing $his ankles, you haul $his legs out from under $his boobs and body, and then push her forward, balancing $his body atop $his tits as though they were an exercise ball. <<if $activeSlave.devotion > 20>>$He giggles at this<<else>>$He struggles a little at the sudden discomfort<</if>>, and tries to steady $himself with $his hands, so you pull them around behind $him and pin $his arms to $his $activeSlave.skin back with one of your hands. You <<if $PC.dick == 1>>shove your dick up<<else>>pull on a strap-on with your other hand and insert it into<</if>> $his defenseless + You give $him no orders at all, since $his helplessness makes $him <<if $activeSlave.devotion > 20>>cooperation<<else>>consent<</if>> completely unnecessary for what you're planning. $He makes to turn as you come around behind $him, but $he can manage only a partial crane of $his shoulders and neck to <<if canSee($activeSlave)>>see<<else>>figure out<</if>> what you're doing. Seizing $his ankles, you haul $his legs out from under $his boobs and body, and then push $him forward, balancing $his body atop $his tits as though they were an exercise ball. <<if $activeSlave.devotion > 20>>$He giggles at this<<else>>$He struggles a little at the sudden discomfort<</if>>, and tries to steady $himself with $his hands, so you pull them around behind $him and pin $his arms to $his $activeSlave.skin back with one of your hands. You <<if $PC.dick == 1>>shove your dick up<<else>>pull on a strap-on with your other hand and insert it into<</if>> $his defenseless <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. Then you fuck $him. <<= SimpleVCheck()>> <br><br> @@ -16524,15 +16526,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t Worse, only the most veteran asspussy could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it. <</if>> <</if>> - <<if $activeSlave.voice == 0>>Since $he cannot groan, $he begins to gasp raggedly<<else>>$He begins to grunt and groan<</if>> with each forward thrust as you penetrate $him, pressing her forward across $his cushion of boobs. $He tries to take some of the weight off with $his feet, but after some vain scrabbling $he's obliged to @@.hotpink;give up and take it.@@ + <<if $activeSlave.voice == 0>>Since $he cannot groan, $he begins to gasp raggedly<<else>>$He begins to grunt and groan<</if>> with each forward thrust as you penetrate $him, pressing $him forward across $his cushion of boobs. $He tries to take some of the weight off with $his feet, but after some vain scrabbling $he's obliged to @@.hotpink;give up and take it.@@ <br><br> - When you're finished, you withdraw and drop $him, letting her slump against $his sore breasts. $He's too tired and overstimulated to do anything but stay limp, and $his relaxed <<if canDoVaginal($activeSlave)>>pussy<<else>>butthole<</if>> <<if $PC.dick == 1>>releases drips of your cum to go sliding down $his thighs<<else>>glistens attractively with lube<</if>>. You direct + When you're finished, you withdraw and drop $him, letting $him slump against $his sore breasts. $He's too tired and overstimulated to do anything but stay limp, and $his relaxed <<if canDoVaginal($activeSlave)>>pussy<<else>>butthole<</if>> <<if $PC.dick == 1>>releases drips of your cum to go sliding down $his thighs<<else>>glistens attractively with lube<</if>>. You direct <<if $boobAccessibility == 1 || $pregAccessibility == 1>> the accessibility assistance functions of your office to <<else>> the slaves who helped $him in to return and <</if>> - help her get cleaned up, and turn to your desk to get some work done as they struggle with the mountain of exhausted, fucked-out tits discarded in the middle of your office. + help $him get cleaned up, and turn to your desk to get some work done as they struggle with the mountain of exhausted, fucked-out tits discarded in the middle of your office. <<set $activeSlave.devotion += 4>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> @@ -16540,10 +16542,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "bonded love">> -<<link "Tell her $he's a good slave">> +<<link "tell $him $he's a good slave">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Without turning your head, you tell her $he's a very good slave. $He laughs happily<<if canTalk($activeSlave)>>, though of course this is silent<<else>> throatily<</if>>, $his warm breath gusting against your ear. It took confidence for $him to come in here and tell her $he loved you, and $he @@.mediumaquamarine;trusts you more@@ for responding this way. $He plants a light kiss on your cheek and walks quickly out of your office, hurrying to go about $his day's business, but careful to strut $his stuff for you on $his way out. + Without turning your head, you tell $him $he's a very good slave. $He laughs happily<<if canTalk($activeSlave)>>, though of course this is silent<<else>> throatily<</if>>, $his warm breath gusting against your ear. It took confidence for $him to come in here and tell $him $he loved you, and $he @@.mediumaquamarine;trusts you more@@ for responding this way. $He plants a light kiss on your cheek and walks quickly out of your office, hurrying to go about $his day's business, but careful to strut $his stuff for you on $his way out. <<if $activeSlave.butt < 3>> $His nice little butt moves cutely as $he goes. $His small buttocks leave <<if !canDoAnal($activeSlave)>> @@ -16582,10 +16584,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Tell her you love her too">> +<br><<link "tell $him you love $him too">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You turn towards $him and direct the full weight of your gaze into $his eyes. <<if canSee($activeSlave)>>$His eyelids flicker with the shock of the shared look<<else>>$His eyes may not be capable of sight, but $he can feel your gaze<</if>>, so close, but $he bears it, biting $his lower lip. Then you kiss $him. The released tension is too much for $him, and $he moans, slumping against you a little as you kiss her like a lover. $He's so lost in it that when you break the kiss, $his mouth stays slightly open and pursues yours slightly, hungry for more. You place a finger against $his moist lips, making her wait a moment, and tell $him that you love her too. $He makes <<if $activeSlave.voice == 0>>a quiet moaning sound, deep in $his useless throat,<<else>>an almost animal sound, somewhere between a sob and a moan,<</if>> and as you withdraw your finger, $he kisses you back. $He knows $he has a job to do today, and it's waiting for $him, so when you give her no indication that you'd like $him to stay, $he withdraws, keeping $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> on yours, doing $his best to @@.hotpink;make love to you@@ with $his gaze. + You turn towards $him and direct the full weight of your gaze into $his eyes. <<if canSee($activeSlave)>>$His eyelids flicker with the shock of the shared look<<else>>$His eyes may not be capable of sight, but $he can feel your gaze<</if>>, so close, but $he bears it, biting $his lower lip. Then you kiss $him. The released tension is too much for $him, and $he moans, slumping against you a little as you kiss $him like a lover. $He's so lost in it that when you break the kiss, $his mouth stays slightly open and pursues yours slightly, hungry for more. You place a finger against $his moist lips, making $him wait a moment, and tell $him that you love $him too. $He makes <<if $activeSlave.voice == 0>>a quiet moaning sound, deep in $his useless throat,<<else>>an almost animal sound, somewhere between a sob and a moan,<</if>> and as you withdraw your finger, $he kisses you back. $He knows $he has a job to do today, and it's waiting for $him, so when you give $him no indication that you'd like $him to stay, $he withdraws, keeping $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> on yours, doing $his best to @@.hotpink;make love to you@@ with $his gaze. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -16595,7 +16597,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Hug $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You reach out to hug $him, but as soon as your hand touches her shoulder, $he writhes instinctively away. <<if canSee($activeSlave)>>$His eyes fly open, searching frantically for her assailant. Seeing that it's you, $he screams and scrabbles away even harder. After making it a few feet, $he collects her wits enough to bring $himself to a stop and stop screaming, though $he continues to sob, staring at you in terror<<else>>$He gropes frantically for her assailant, before making contact with you. $He screams and scrabbles away, only stopping when $he collides with the nearest solid object. <<if canHear($activeSlave)>>Only after several call outs that it is you does $he stop screaming, though $he continues to sob, listening to your every breath in terror<<else>>After screaming $himself horase, $he realizes that $his assault has abruptly ended, and gently feels around $his surroundings with a shaking hand to discover $himself back in $his room<</if>><</if>>. $He remains frozen in place as you slowly advance on $him and give $him a light embrace. $His tears gradually stop, but $he does not relax, <<if canSee($activeSlave)>>remaining dumbly stiff<<else>>continuing to quake in fear<</if>> within your arms. Eventually you let $him go, and $he crawls pathetically back under $his sheet, still weeping softly. It seems $he is @@.gold;more afraid of you@@ than ever, and if you thought that a simple hug could win $him over, you were wrong. + You reach out to hug $him, but as soon as your hand touches $his shoulder, $he writhes instinctively away. <<if canSee($activeSlave)>>$His eyes fly open, searching frantically for $his assailant. Seeing that it's you, $he screams and scrabbles away even harder. After making it a few feet, $he collects $his wits enough to bring $himself to a stop and stop screaming, though $he continues to sob, staring at you in terror<<else>>$He gropes frantically for $his assailant, before making contact with you. $He screams and scrabbles away, only stopping when $he collides with the nearest solid object. <<if canHear($activeSlave)>>Only after several call outs that it is you does $he stop screaming, though $he continues to sob, listening to your every breath in terror<<else>>After screaming $himself hoarse, $he realizes that $his assault has abruptly ended, and gently feels around $his surroundings with a shaking hand to discover $himself back in $his room<</if>><</if>>. $He remains frozen in place as you slowly advance on $him and give $him a light embrace. $His tears gradually stop, but $he does not relax, <<if canSee($activeSlave)>>remaining dumbly stiff<<else>>continuing to quake in fear<</if>> within your arms. Eventually you let $him go, and $he crawls pathetically back under $his sheet, still weeping softly. It seems $he is @@.gold;more afraid of you@@ than ever, and if you thought that a simple hug could win $him over, you were wrong. <<if canSee($activeSlave)>> <<set $activeSlave.trust -= 4>> <<elseif canHear($activeSlave)>> @@ -16632,7 +16634,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> in the dark as $he begins to @@.gold;struggle and scream.@@ $He comes fully awake when $he feels your rough fingers searching for and then finding $his - <<if ($activeSlave.vagina >= 0) && canDoVaginal($activeSlave)>>vagina<<else>>crinkled hole<</if>>, and $his noise increases to the point where it becomes annoying. You stuff $his face into the pillow and take her mercilessly, using the pillow to cut off $his breath whenever $he struggles too much, until oncoming suffocation forces $him to go still and take it like a good little bitch. + <<if ($activeSlave.vagina >= 0) && canDoVaginal($activeSlave)>>vagina<<else>>crinkled hole<</if>>, and $his noise increases to the point where it becomes annoying. You stuff $his face into the pillow and take $him mercilessly, using the pillow to cut off $his breath whenever $he struggles too much, until oncoming suffocation forces $him to go still and take it like a good little bitch. <br><br> @@.mediumorchid;Sometimes dreams do come true.@@ <br><br> @@ -16644,37 +16646,37 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "cockfeeder resistance">> -<<link "Talk her through it">> +<<link "Talk $him through it">> <<EventNameDelink $activeSlave>> <<replace "#result">> You put as much quiet authority into your voice as you can, and explain to $him that $he must eat $his breakfast this way. You do not explain any of the actual reasons why you require slaves to eat from cocks, but couch your quiet explanation in terms of $his life as a slave. You tell $him that eating breakfast out of a dick is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he scoots forward and bends down to take the tip of the big feeder dick in $his mouth. Sensing that it's being sucked, it gently presses into $his mouth, fucking $his <<if $activeSlave.lips > 95>>big-lipped facepussy<<else>>face<</if>>. Its strokes get longer and faster, until $he's gulping down $his breakfast as it's shot down $his throat like a huge load. - <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>By this time, the kitchen is also dosing her with drugs by fucking $his butt with a phallus that ejaculates them for absorption. $He's being spitroasted by the kitchen.<</if>> - Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let her get away with hesitation about obedience and took the time to talk her through it. + <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>By this time, the kitchen is also dosing $him with drugs by fucking $his butt with a phallus that ejaculates them for absorption. $He's being spitroasted by the kitchen.<</if>> + Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let $him get away with hesitation about obedience and took the time to talk $him through it. <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Punish her with a bigger feeder">> +<br><<link "Punish $him with a bigger feeder">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus dangling in $his face is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger<<if !canSee($activeSlave)>>. $He doesn't notice its larger size until it bumps into $his cheek, causing $him to scoot back<</if>>. You tell $him in deceptively mild tones that you'll keep increasing the size of $his feeder until $he decides to suck it off like a good little $desc, or you run out of size options and are forced to strap her down and push them down $his throat. At that point, $he might be able to breathe; then again, $he might not. $He begins to cry, $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face clouding with anguish, but is so @@.gold;frightened@@ by the threat that $he doesn't let $his tears distract her from scooting forward to suck off a huge dildo for $his breakfast. - <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it senses $he's complying, the kitchen starts dosing her with drugs by fucking $his butt with a phallus that ejaculates them for absorption. Mercifully, $he doesn't try to refuse the anal fuckmachine, and avoids having $his asshole filled by a bigger phallus too.<</if>> - $He keeps the threat in mind, and has a slightly sore throat to @@.hotpink;help her remember to obey without question.@@ + You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus dangling in $his face is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger<<if !canSee($activeSlave)>>. $He doesn't notice its larger size until it bumps into $his cheek, causing $him to scoot back<</if>>. You tell $him in deceptively mild tones that you'll keep increasing the size of $his feeder until $he decides to suck it off like a good little $desc, or you run out of size options and are forced to strap $his down and push them down $his throat. At that point, $he might be able to breathe; then again, $he might not. $He begins to cry, $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face clouding with anguish, but is so @@.gold;frightened@@ by the threat that $he doesn't let $him tears distract $him from scooting forward to suck off a huge dildo for $his breakfast. + <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it senses $he's complying, the kitchen starts dosing $him with drugs by fucking $his butt with a phallus that ejaculates them for absorption. Mercifully, $he doesn't try to refuse the anal fuckmachine, and avoids having $his asshole filled by a bigger phallus too.<</if>> + $He keeps the threat in mind, and has a slightly sore throat to @@.hotpink;help $him remember to obey without question.@@ <<set $activeSlave.trust -= 2, $activeSlave.devotion += 2>> <</replace>> <</link>> <br><<link "Double penetrate $his mouth for insolence">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step forward and caress the slave's throat, telling $him to suck like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and scrabbles forward to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $his hesitation and insolence. $He can't beg or even moan, since $he's being facefucked by the feeder dildo by now, but $his $activeSlave.eyeColor eyes widen in terror. $He <<if canSee($activeSlave)>>can't watch you, since $he can't turn $his head,<<else>>can't see what you are doing,<</if>> so $he has almost no time to prepare when you haul $his head most of the way off the feeder and shove <<if $PC.dick == 1>>your own phallus<<else>>a strap-on<</if>> into $his mouth, too. $He gags instantly, almost vomiting, but forces $himself to relax as you begin to thrust into $his throat, alternately with the feeder. The liquid food provides plenty of lubrication, and a lot of liquid for $him to gag on, and before long $he's a degraded, humiliating mess. $He often clamps $his eyes shut as $he desperately concentrates on breathing, squeezing the tears out to run down $his $activeSlave.skin cheeks. + You step forward and caress the slave's throat, telling $him to suck like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and scrabbles forward to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $him hesitation and insolence. $He can't beg or even moan, since $he's being facefucked by the feeder dildo by now, but $his $activeSlave.eyeColor eyes widen in terror. $He <<if canSee($activeSlave)>>can't watch you, since $he can't turn $his head,<<else>>can't see what you are doing,<</if>> so $he has almost no time to prepare when you haul $him head most of the way off the feeder and shove <<if $PC.dick == 1>>your own phallus<<else>>a strap-on<</if>> into $his mouth, too. $He gags instantly, almost vomiting, but forces $himself to relax as you begin to thrust into $his throat, alternately with the feeder. The liquid food provides plenty of lubrication, and a lot of liquid for $him to gag on, and before long $he's a degraded, humiliating mess. $He often clamps $his eyes shut as $he desperately concentrates on breathing, squeezing the tears out to run down $his $activeSlave.skin cheeks. <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>> <<set $activeSlave.trust -= 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <<if $PC.balls > 2>> -<br><<link "Forcefeed her with your own cock">> +<br><<link "Forcefeed $him with your own cock">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step forward and pull her away from the feeder, telling $him that since $he doesn't like the cockfeeder $he can suck yours like a good little $desc. You make no threat, but order $him in a steely voice to suck you off until $he's earned a meal of your cum. $He knows what you can do to $him, and hurries forward to obey. $He rushes to open your clothes and get to work, but pauses when <<if canSee($activeSlave)>>$his $activeSlave.eyeColor eyes take in your massive testicles.<<else>>$his groping hand feels your massive testicles.<</if>> Realizing just how big $his meal will be, $he's obviously @@.gold;frightened.@@ You grab $his head, breaking her out of $his shocked stillness, and explain that you can't let her starve. If $he won't eat out of the feeder, you'll just have to feed her some other way. With that, you ram your cock forward and start fucking $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face. After a few minutes of gagging oral, you start to approach your climax. Your thorough facefucking leaves her unable to beg or even moan, but $his eyes widen in terror when $he realizes you're about to cum. You don't give her any time to prepare, instead hilting yourself immediately, and letting $his throat's desperate attempts to swallow bring you over the edge. You begin your long release of pent-up jizz, spraying deciliter after deciliter of cum down $his throat and into $his stomach. By the time you've finished, you can tell $he's struggling for air and in pain from the massive quantity of thick fluid in $his stomach. You give $him a helpful hint before releasing $him, "if you take it all the way in your throat, you don't even have to taste what it's feeding you." You pull out of $his mouth and let her go. $He gasps for air and almost immediately vomits some of your cum all over $himself, turning her into a degraded, humiliating mess. $He lays on the floor and desperately concentrates on breathing, squeezing the tears out of $his eyes to run down $his $activeSlave.skin cheeks. + You step forward and pull $him away from the feeder, telling $him that since $he doesn't like the cockfeeder $he can suck yours like a good little $desc. You make no threat, but order $him in a steely voice to suck you off until $he's earned a meal of your cum. $He knows what you can do to $him, and hurries forward to obey. $He rushes to open your clothes and get to work, but pauses when <<if canSee($activeSlave)>>$his $activeSlave.eyeColor eyes take in your massive testicles.<<else>>$his groping hand feels your massive testicles.<</if>> Realizing just how big $his meal will be, $he's obviously @@.gold;frightened.@@ You grab $his head, breaking $him out of $his shocked stillness, and explain that you can't let $him starve. If $he won't eat out of the feeder, you'll just have to feed $him some other way. With that, you ram your cock forward and start fucking $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face. After a few minutes of gagging oral, you start to approach your climax. Your thorough facefucking leaves $him unable to beg or even moan, but $his eyes widen in terror when $he realizes you're about to cum. You don't give $him any time to prepare, instead hilting yourself immediately, and letting $his throat's desperate attempts to swallow bring you over the edge. You begin your long release of pent-up jizz, spraying deciliter after deciliter of cum down $his throat and into $his stomach. By the time you've finished, you can tell $he's struggling for air and in pain from the massive quantity of thick fluid in $his stomach. You give $him a helpful hint before releasing $him, "if you take it all the way in your throat, you don't even have to taste what it's feeding you." You pull out of $his mouth and let $him go. $He gasps for air and almost immediately vomits some of your cum all over $himself, turning $him into a degraded, humiliating mess. $He lays on the floor and desperately concentrates on breathing, squeezing the tears out of $his eyes to run down $his $activeSlave.skin cheeks. <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>> <<set $activeSlave.trust -= 2, $activeSlave.oralCount++, $oralTotal++>> <</replace>> @@ -16683,7 +16685,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "suppository resistance">> -<<link "Talk her through it">> +<<link "Talk $him through it">> <<EventNameDelink $activeSlave>> <<replace "#result">> You put as much quiet authority into your voice as you can, and explain to $him that $he is required to take $his drugs up $his ass. You do not explain any of the actual reasons why you require slaves to submit to daily machine anal, but couch your quiet explanation in terms of $his life as a slave. You tell $him that taking a solid buttfuck from a machine first thing in the morning is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he @@ -16692,16 +16694,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> gets to $his knees, using $his hands to spread $his cheeks for the phallus. <</if>> - Sensing that it's being offered an anus, it gently pushes inside $his rectum. Its strokes get longer and faster, <<if $activeSlave.anus > 2>>until $he's groaning under the sodomy despite $his loose ass<<elseif $activeSlave.anus > 1>>quickly gaping $his big butthole and making her groan<<else>>making her gasp as it stretches $his poor little asshole<</if>>. + Sensing that it's being offered an anus, it gently pushes inside $his rectum. Its strokes get longer and faster, <<if $activeSlave.anus > 2>>until $he's groaning under the sodomy despite $his loose ass<<elseif $activeSlave.anus > 1>>quickly gaping $his big butthole and making $him groan<<else>>making $him gasp as it stretches $his poor little asshole<</if>>. <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>$He doesn't manage to groan for long, though, since the kitchen extends another phallus to feed $him $his breakfast. Before long, $he's being spitroasted by machines.<</if>> - Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let her get away with hesitation about obedience and took the time to talk her through it. + Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let $him get away with hesitation about obedience and took the time to talk $him through it. <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Punish her with a bigger phallus">> +<br><<link "Punish $him with a bigger phallus">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus aiming meaningfully at the place where $he's supposed to kneel and offer up $his butthole is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger. You tell $him in deceptively mild tones that you'll keep increasing the size of $his phallus until $he decides to get down and take it like a good little $desc, or you run out of size options and are forced to strap $him down and apply two at once. At that point, $his ass might be able to take it; then again, it might not. $He begins to cry, but is so @@.gold;frightened@@ by the threat that $he doesn't let $his tears distract $his from a delectable scramble to + You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus aiming meaningfully at the place where $he's supposed to kneel and offer up $his butthole is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger. You tell $him in deceptively mild tones that you'll keep increasing the size of $his phallus until $he decides to get down and take it like a good little $desc, or you run out of size options and are forced to strap $him down and apply two at once. At that point, $his ass might be able to take it; then again, it might not. $He begins to cry, but is so @@.gold;frightened@@ by the threat that $he doesn't let $him tears distract $him from a delectable scramble to <<if $activeSlave.belly >= 300000>> throw $himself onto $his _belly belly <<else>> @@ -16728,7 +16730,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Carry $him to where $he needs to go">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You scoop $him up into a bridal carry. $He <<if $activeSlave.voice == 0>>gasps, since $he can't squeal<<else>>squeals cutely<</if>>, holding on for dear life, and keeps $his face nestled against $his <<= WrittenMaster()>>. + You scoop $him up into a bridal carry. $He <<if $activeSlave.voice == 0>>gasps, since $he can't squeal<<else>>squeals cutely<</if>>, holding on for dear life, and keeps $his face nestled against $his <<= WrittenMaster($activeSlave)>>. <<set _carried = 1>> <<if $activeSlave.belly >= 300000>> <<if $activeSlave.bellyPreg > 3000>> @@ -16912,35 +16914,35 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.bellyFluid >= 10000>> $His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<elseif $activeSlave.height > 160>> - $He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift her with ease. + $He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease. <<elseif $activeSlave.weight > 10>> - $He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift her with ease. + $He's got a deliciously plush body, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him with ease. <<else>> You can hold the little slave like this as long as you like. <</if>> - You shift your grip to hold her with one hand so you can + You shift your grip to hold $him with one hand so you can <<if $PC.dick == 1>> - maneuver your cock inside $him, and then resume your original hold so you can slide her up and down your shaft. <<if $PC.vagina == 1>>You make sure $he's really hilted at the height of each stroke, putting some nice pressure on your pussy.<</if>> + maneuver your cock inside $him, and then resume your original hold so you can slide $him up and down your shaft. <<if $PC.vagina == 1>>You make sure $he's really hilted at the height of each stroke, putting some nice pressure on your pussy.<</if>> <<else>> - slide your fingers inside her <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>, since you're not putting her down to get a strap-on. Knowing $he can't reach your cunt to return the favor like this, $he relaxes and lets you play with $him. + slide your fingers inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>, since you're not putting $him down to get a strap-on. Knowing $he can't reach your cunt to return the favor like this, $he relaxes and lets you play with $him. <</if>> - Helpless, $he has nothing to do but <<if canSee($activeSlave)>>watch $himself get fucked in a full length mirror. $He stares, fascinated, and the sight<<else>>let $his hands wander across $his body. Teasing $his nipples<<if $activeSlave.bellyPreg >= 5000>> and pregnant belly<</if>><</if>> gets her off quickly, + Helpless, $he has nothing to do but <<if canSee($activeSlave)>>watch $himself get fucked in a full length mirror. $He stares, fascinated, and the sight<<else>>let $his hands wander across $his body. Teasing $his nipples<<if $activeSlave.bellyPreg >= 5000>> and pregnant belly<</if>><</if>> gets $his off quickly, <<if $activeSlave.dick == 0>> - her muscles tensing prettily with female orgasm. + $his muscles tensing prettily with female orgasm. <<elseif ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - a dribble of cum flowing from the tip of her chastity cage. + a dribble of cum flowing from the tip of $his chastity cage. <<elseif canAchieveErection($activeSlave)>> - her stiffly waving cock jetting cum onto the floor. + $his stiffly waving cock jetting cum onto the floor. <<elseif $activeSlave.dick > 6>> - her absurd cock twitching lazily as her ejaculate makes it down its length. + $his absurd cock twitching lazily as $his ejaculate makes it down its length. <<elseif $activeSlave.balls == 0>> - her bitchclit dribbling weakly. + $his bitchclit dribbling weakly. <<elseif $activeSlave.dick > 0>> - her limp dick twitching as $he cums. + $his limp dick twitching as $he cums. <<else>> - making her shudder. + making $him shudder. <</if>> - When you're done, you let her down, and the first thing $he does is spin in your embrace to give you an @@.hotpink;earnest kiss.@@ + When you're done, you let $him down, and the first thing $he does is spin in your embrace to give you an @@.hotpink;earnest kiss.@@ <<= SimpleVCheck()>> <<set $activeSlave.devotion += 4>> <</replace>> @@ -16952,9 +16954,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Enjoy the show">> <<EventNameDelink $activeSlave>> <<replace "#result">> - There are low leather ottomans scattered all over the penthouse, for rest, relaxation, and sex. You seat yourself on the nearest one, enjoying the spectacle. $He feels your eyes on $him, a sensation $he knows well, and turns with a little smile on her $activeSlave.faceShape face, putting an extra swing in $his hips<<if $activeSlave.belly >= 5000>>, causing her weighty middle to swing wide<</if>>. $He's still dancing alone, but now $he's giving you a private show. You give $him the proper music, instructing $assistantName to play the track $he was humming. + There are low leather ottomans scattered all over the penthouse, for rest, relaxation, and sex. You seat yourself on the nearest one, enjoying the spectacle. $He feels your eyes on $him, a sensation $he knows well, and turns with a little smile on $his $activeSlave.faceShape face, putting an extra swing in $his hips<<if $activeSlave.belly >= 5000>>, causing $his weighty middle to swing wide<</if>>. $He's still dancing alone, but now $he's giving you a private show. You give $him the proper music, instructing $assistantName to play the track $he was humming. <br><br> - $He advances on you slowly, sensually, relishing the beat and doing her best to show off $his body. + $He advances on you slowly, sensually, relishing the beat and doing $his best to show off $his body. <<if $activeSlave.dick > 0>> $His <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> @@ -16966,7 +16968,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> bitchclit bounces <</if>> - with her rhythm. + with $his rhythm. <</if>> <<if $activeSlave.vagina > -1>> $His @@ -16978,20 +16980,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.vaginaLube > 1>> wet cunt glistens <<else>> - womanhood is her center + womanhood is $his center <</if>> as $he moves. <</if>> - $He gives you an excellent nude lap dance, expressing the art at the level only the finest old world strippers can manage. The interaction is all about you, your eyes on $his body, your desire for her touch, and finally your <<if $PC.dick == 1>>cum flowing into $his mouth as $he sucks your dick<<if $PC.vagina == 1>> and the wetness against her fingers as they tease your pussy<</if>><<else>>pussyjuice coating $his lips as $he eats you out<</if>>. $He @@.mediumaquamarine;knows her place@@ very well. + $He gives you an excellent nude lap dance, expressing the art at the level only the finest old world strippers can manage. The interaction is all about you, your eyes on $his body, your desire for $his touch, and finally your <<if $PC.dick == 1>>cum flowing into $his mouth as $he sucks your dick<<if $PC.vagina == 1>> and the wetness against $his fingers as they tease your pussy<</if>><<else>>pussyjuice coating $his lips as $he eats you out<</if>>. $He @@.mediumaquamarine;knows $his place@@ very well. <<set $activeSlave.trust += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> <br><<link "Dance along with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He doesn't <<if canSee($activeSlave)>>see<<else>>notice<</if>> you advance on $him; $he's facing away from you, and in any case, $he's lost in her own little world. At the same moment, however, $he begins to hear the track $he's humming, in perfect synchrony with the way $he's humming it, and senses a presence at her side. You timed it perfectly, directing the sound system here to play the right track, match it to $him, and fade it in as you approached and began to dance beside $him. + $He doesn't <<if canSee($activeSlave)>>see<<else>>notice<</if>> you advance on $him; $he's facing away from you, and in any case, $he's lost in $his own little world. At the same moment, however, $he begins to hear the track $he's humming, in perfect synchrony with the way $he's humming it, and senses a presence at $his side. You timed it perfectly, directing the sound system here to play the right track, match it to $him, and fade it in as you approached and began to dance beside $him. <<if $PC.title == 0>> - You've got a woman's body, and you match her moves, though an observer might see greater power and dominance in the way you dance. + You've got a woman's body, and you match $his moves, though an observer might see greater power and dominance in the way you dance. <<else>> You make your moves the masculine companion to $hers, moving like a paragon of frank male <<if $PC.belly >= 1500>> @@ -17003,9 +17005,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <br><br> - There's a momentary flaw in her rhythm, a catch in $his breath as $he realizes what you're doing, but $he gets right back into it, displaying her pleasure with nothing more than a ghost of a smile and a <<if canSee($activeSlave)>>widening of $his eyes as $he looks you up and down<<else>>slight perk of $his ears as $he tracks your motion<</if>>. $He doesn't shove $himself against you; that would be coarse. Instead $he dances alluringly, just out of your grasp. Taking the dominant role, you encircle $him in your arms and draw $him in close, her heat perceptible against your skin before the very first graze of $his $activeSlave.skin body against yours. $He continues to dance gorgeously as $he helps you out of your clothes. + There's a momentary flaw in $his rhythm, a catch in $his breath as $he realizes what you're doing, but $he gets right back into it, displaying $his pleasure with nothing more than a ghost of a smile and a <<if canSee($activeSlave)>>widening of $his eyes as $he looks you up and down<<else>>slight perk of $his ears as $he tracks your motion<</if>>. $He doesn't shove $himself against you; that would be coarse. Instead $he dances alluringly, just out of your grasp. Taking the dominant role, you encircle $him in your arms and draw $him in close, $his heat perceptible against your skin before the very first graze of $his $activeSlave.skin body against yours. $He continues to dance gorgeously as $he helps you out of your clothes. <br><br> - When you're nude, $he turns her back to you and starts to grind, letting you feel her + When you're nude, $he turns $his back to you and starts to grind, letting you feel $his <<if $activeSlave.weight > 160>> rippling <<elseif $activeSlave.weight > 95>> @@ -17032,25 +17034,25 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "plimb help">> -<<link "Help her into her P-Limbs">> +<<link "Help $him into $his P-Limbs">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You decide to help her yourself rather than having a slave do it. - <<if $activeSlave.ID == $Bodyguard.ID>>Swinging your legs out of bed and heading towards her<<else>>Heading towards her part of the sleeping area<</if>>, you're struck by how <<if $activeSlave.belly >= 5000>>round<<else>>small<</if>> $he looks without her prosthetics. Just a little $activeSlave.skin thing, without the + You decide to help $him yourself rather than having a slave do it. + <<if $activeSlave.ID == $Bodyguard.ID>>Swinging your legs out of bed and heading towards $him<<else>>Heading towards $his part of the sleeping area<</if>>, you're struck by how <<if $activeSlave.belly >= 5000>>round<<else>>small<</if>> $he looks without $his prosthetics. Just a little $activeSlave.skin thing, without the <<if $activeSlave.amp == -2>> - sexy artificial limbs that let her delight anyone who fucks her with vibrating fingertips. + sexy artificial limbs that let $him delight anyone who fucks $him with vibrating fingertips. <<elseif $activeSlave.amp == -3>> incredible artificial limbs so perfect that many mistake them for the real thing. <<elseif $activeSlave.amp == -4>> armored artificial limbs that make $him a deadly war machine. <<elseif $activeSlave.amp == -5>> - advanced artificial limbs that let her delight sexual partners, fight enemies, and even live a normal life. + advanced artificial limbs that let $him delight sexual partners, fight enemies, and even live a normal life. <<else>> artificial limbs that allow $him a semblance of a normal life. <</if>> - $He's not frightened, trusting <<if $activeSlave.ID == $Bodyguard.ID>>you to help $him, or detail a slave to do so<<else>>$assistantName to bring help<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> that you mean to assist her yourself, $he breaks out in a huge grateful smile and thanks you profusely. + $He's not frightened, trusting <<if $activeSlave.ID == $Bodyguard.ID>>you to help $him, or detail a slave to do so<<else>>$assistantName to bring help<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>notices<</if>> that you mean to assist $him yourself, $he breaks out in a huge grateful smile and thanks you profusely. <br><br> - <<if $activeSlave.ID == $Bodyguard.ID>>First, you extricate her limbs from the malfunctioning machine. <</if>>As you take up her first arm and kneel down to attach it to $him, $he rolls and hoists that shoulder up towards it, her + <<if $activeSlave.ID == $Bodyguard.ID>>First, you extricate $his limbs from the malfunctioning machine. <</if>>As you take up $his first arm and kneel down to attach it to $him, $he rolls and hoists that shoulder up towards it, $his <<if $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> body straining to twist <<elseif $activeSlave.muscles > 30>> @@ -17060,24 +17062,24 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> soft body straining to twist <</if>> - on the sheet despite her limblessness. When the gleaming halves of the attachment are <<if $showInches == 2>>half an inch<<else>>a few millimeters<</if>> apart, the magnetic seals take over and pull them into perfect alignment. Acting out of pure habit, $he actuates all the muscle group equivalents on the arm, one by one, testing function. + on the sheet despite $his limblessness. When the gleaming halves of the attachment are <<if $showInches == 2>>half an inch<<else>>a few millimeters<</if>> apart, the magnetic seals take over and pull them into perfect alignment. Acting out of pure habit, $he actuates all the muscle group equivalents on the arm, one by one, testing function. <br><br> - With one arm and the remaining three limbs within reach, $he can take care of $himself, but $he reaches out to touch your leg lightly from her place on the ground. <<if ($activeSlave.amp == -3) || ($activeSlave.amp == -5)>>The hand is just as soft and warm as her original would have been.<<else>>$His hand is smooth and cool.<</if>> + With one arm and the remaining three limbs within reach, $he can take care of $himself, but $he reaches out to touch your leg lightly from $his place on the ground. <<if ($activeSlave.amp == -3) || ($activeSlave.amp == -5)>>The hand is just as soft and warm as $his original would have been.<<else>>$His hand is smooth and cool.<</if>> <<if !canTalk($activeSlave)>> - $He uses her one hand to rapidly spell out a polite request. $He asks you to attach the rest of her limbs, too. + $He uses $his one hand to rapidly spell out a polite request. $He asks you to attach the rest of $his limbs, too. <<else>> "<<Master>>, would you plea<<s>>e attach the re<<s>>t of them for me?" $he asks politely. <</if>> - A transitory nervousness crosses her $activeSlave.faceShape face as $he asks, but clears into @@.mediumaquamarine;trusting happiness@@ when you nod and pick up her other arm. $He tests each limb as it's attached, and then tests them all by getting up into a kneel and giving you a hug. + A transitory nervousness crosses $his $activeSlave.faceShape face as $he asks, but clears into @@.mediumaquamarine;trusting happiness@@ when you nod and pick up $his other arm. $He tests each limb as it's attached, and then tests them all by getting up into a kneel and giving you a hug. <<set $activeSlave.trust += 4>> <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Fuck her before you help $him">> +<br><<link "Fuck $him before you help $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You decide to have some fun with the temporarily helpless slave. You - <<if $activeSlave.ID == $Bodyguard.ID>>get out of bed<<else>>head to where $he's waiting for help<</if>> and scoop her up, her limblessness making it comically easy. With $his torso cradled in your grasp and her head nestled into the crook of your arm, you carry her <<if $activeSlave.ID == $Bodyguard.ID>>back towards your bed<<else>>back towards your suite<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>figures out<</if>> what you're doing, $he turns her head and gives your <<if $PC.boobs == 1>>breast on that side<<else>>chest<</if>> an anticipatory kiss. When you set her down on the bed, $he <<if canSee($activeSlave)>>stares<<else>>smiles<</if>> up at you invitingly and gives her four P-Limb anchor points a glinting wiggle, a gesture that might mean anything. $His <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>, in any case, is presented openly for your use. + <<if $activeSlave.ID == $Bodyguard.ID>>get out of bed<<else>>head to where $he's waiting for help<</if>> and scoop $him up, $his limblessness making it comically easy. With $his torso cradled in your grasp and $his head nestled into the crook of your arm, you carry $his <<if $activeSlave.ID == $Bodyguard.ID>>back towards your bed<<else>>back towards your suite<</if>>. When $he <<if canSee($activeSlave)>>sees<<else>>figures out<</if>> what you're doing, $he turns $his head and gives your <<if $PC.boobs == 1>>breast on that side<<else>>chest<</if>> an anticipatory kiss. When you set $him down on the bed, $he <<if canSee($activeSlave)>>stares<<else>>smiles<</if>> up at you invitingly and gives $his four P-Limb anchor points a glinting wiggle, a gesture that might mean anything. $His <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>, in any case, is presented openly for your use. <br><br> After fingering your helpless toy experimentally, you <<if $PC.dick == 1>> @@ -17089,17 +17091,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<= AnalVCheck()>> <</if>> <<else>> - straddle her face, riding her eager mouth while you use your hands on her <<if canDoVaginal($activeSlave)>>cunt<<else>>hole<</if>>. + straddle $his face, riding $his eager mouth while you use your hands on $his <<if canDoVaginal($activeSlave)>>cunt<<else>>hole<</if>>. <<set $activeSlave.oralCount++, $oralTotal++>> <</if>> - $He has no control at all, but $he trusts you not to hurt $him and is soon enjoying $himself. $He can't seem to stop $himself from trying to move P-Limbs that aren't there, forgetting that $he's not wearing them whenever the arousal builds high enough to make her forgetful. Eventually $he stops trying to restrain $himself, realizing that you're enjoying her delicious wriggling beneath you. $He orgasms hard, + $He has no control at all, but $he trusts you not to hurt $him and is soon enjoying $himself. $He can't seem to stop $himself from trying to move P-Limbs that aren't there, forgetting that $he's not wearing them whenever the arousal builds high enough to make $him forgetful. Eventually $he stops trying to restrain $himself, realizing that you're enjoying $his delicious wriggling beneath you. $He orgasms hard, <<if $PC.dick == 1>> <<if canDoVaginal($activeSlave)>>the walls of $his pussy squeezing your shaft<<else>>$his anus tightening around the base of your dick<</if>>. <<else>> - moaning her climax into your pussy with abandon. + moaning $his climax into your pussy with abandon. <</if>> <br><br> - When you've climaxed yourself, $he looks back towards where her P-Limbs are waiting, but you're not done with her yet. You pick her up again and bring her into the shower. $He tries to help you, but again, $he gives up after a while, letting you wash $him. As you're rinsing the soap off $him, $he @@.hotpink;thanks you devotedly.@@ With the water streaming down her face, you barely notice her gentle tears. + When you've climaxed yourself, $he looks back towards where $his P-Limbs are waiting, but you're not done with $his yet. You pick $him up again and bring $him into the shower. $He tries to help you, but again, $he gives up after a while, letting you wash $him. As you're rinsing the soap off $him, $he @@.hotpink;thanks you devotedly.@@ With the water streaming down $his face, you barely notice $his gentle tears. <<set $activeSlave.devotion += 4>> <</replace>> <</link>><<if ((($activeSlave.vagina == 0) && canDoVaginal($activeSlave)) || (($activeSlave.anus == 0) && canDoAnal($activeSlave))) && $PC.dick == 1>> //This option will take virginity//<</if>> @@ -17110,14 +17112,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Order $him to behave $himself">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give her stern orders to be a good $girl and behave $himself, regardless of her silly moods. You don't deign to directly deny her request for a genital reconfiguration, and $he has the presence of mind not to ask for an explicit denial. $He offers you profoundly submissive promises to control her emotions and be a good slave, though $he can't hide a glimmer of @@.gold;fear@@ that $he'll fail and suffer punishment. + You give $him stern orders to be a good $girl and behave $himself, regardless of $his silly moods. You don't deign to directly deny $his request for a genital reconfiguration, and $he has the presence of mind not to ask for an explicit denial. $He offers you profoundly submissive promises to control $his emotions and be a good slave, though $he can't hide a glimmer of @@.gold;fear@@ that $he'll fail and suffer punishment. <<set $activeSlave.trust -= 2>> <</replace>> <</link>> -<br><<link "Reassure her about $his body">> +<br><<link "Reassure $him about $his body">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her you aren't planning to do that to $him. You explain that $he might be feeling like $he's fully integrated into a life of sexual slavery now, but $he's not even close; $he's got a long way to go before $he's perfectly devoted and trusting. The words might sound harsh, but you deliver them kindly, making the statement one of hope. $He listens without disappointment, and brightens further when you predict that in a few weeks, $he'll get used to $his body's chemistry and accept it. Finally, you add, her current configuration is the best for her sex drive. $He bites her lip and gives you a daring little look when $he <<if canHear($activeSlave)>>hears<<else>>understands<</if>> that, but you decide to keep her waiting and send her on her way. $He @@.hotpink;thanks you@@ without dissembling, not realizing how profoundly her life has changed, for $him to be reassured by that. + You tell $him you aren't planning to do that to $him. You explain that $he might be feeling like $he's fully integrated into a life of sexual slavery now, but $he's not even close; $he's got a long way to go before $he's perfectly devoted and trusting. The words might sound harsh, but you deliver them kindly, making the statement one of hope. $He listens without disappointment, and brightens further when you predict that in a few weeks, $he'll get used to $his body's chemistry and accept it. Finally, you add, $his current configuration is the best for $his sex drive. $He bites $his lip and gives you a daring little look when $he <<if canHear($activeSlave)>>hears<<else>>understands<</if>> that, but you decide to keep $him waiting and send $him on $his way. $He @@.hotpink;thanks you@@ without dissembling, not realizing how profoundly $his life has changed, for $him to be reassured by that. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -17125,7 +17127,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Agree and make sure $he doesn't regret it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You agree and send her straight to the surgery. $He looks a little hesitant, as though the prospect is intimidating now that it's actually about to happen, but $he complies obediently. You direct $assistantName to bring her back to your office as soon as $he's fully recovered. The curatives applied right after surgery hasten her recovery, and $he's back the next day, standing a little gingerly, her limp dick looking a bit sore. $He greets you properly, and comes over willingly when you recline in your chair and <<if canSee($activeSlave)>>crook a finger at<<else>>beckon<</if>> $him. <<if canSee($activeSlave)>>As $he approaches, $he notices that <<if $PC.dick == 1>>you've got your<<if $PC.vagina == 1>> futa<</if>> dick out<<else>>you're wearing a strap-on<</if>>, and looks a little apprehensive<<else>>$He approaches gingerly, still slightly sore<</if>>, but $he sits down obediently, <<if $PC.dick == 1>>your erection<<else>>the phallus<</if>> coming to rest between $his legs and lower buttocks, resting against her perineum and the smooth, recently healed patch of skin at the base of her dick where $his ballsack used to be. $He gasps at the sensation of <<if $PC.dick == 1>>your hot cock<<if $PC.vagina == 1>> and the wet pussy beneath it<</if>><<else>>the hard thing<</if>> pressed against her most intimate area, but $he doesn't flinch away. + You agree and send $him straight to the surgery. $He looks a little hesitant, as though the prospect is intimidating now that it's actually about to happen, but $he complies obediently. You direct $assistantName to bring $him back to your office as soon as $he's fully recovered. The curatives applied right after surgery hasten $his recovery, and $he's back the next day, standing a little gingerly, $his limp dick looking a bit sore. $He greets you properly, and comes over willingly when you recline in your chair and <<if canSee($activeSlave)>>crook a finger at<<else>>beckon<</if>> $him. <<if canSee($activeSlave)>>As $he approaches, $he notices that <<if $PC.dick == 1>>you've got your<<if $PC.vagina == 1>> futa<</if>> dick out<<else>>you're wearing a strap-on<</if>>, and looks a little apprehensive<<else>>$He approaches gingerly, still slightly sore<</if>>, but $he sits down obediently, <<if $PC.dick == 1>>your erection<<else>>the phallus<</if>> coming to rest between $his legs and lower buttocks, resting against $his perineum and the smooth, recently healed patch of skin at the base of $his dick where $his ballsack used to be. $He gasps at the sensation of <<if $PC.dick == 1>>your hot cock<<if $PC.vagina == 1>> and the wet pussy beneath it<</if>><<else>>the hard thing<</if>> pressed against $his most intimate area, but $he doesn't flinch away. <br><br> You take your time with $him, leaning back in your chair so that $he's lying <<if $PC.boobsBonus > 2>> @@ -17141,7 +17143,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> on your chest <</if>> - and bringing her head around so you can make out. You play with her + and bringing $his head around so you can make out. You play with $his <<if $activeSlave.boobs > 1000>> udders <<elseif $activeSlave.boobs > 300>> @@ -17149,7 +17151,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> nipples <</if>> - for a while, slowly starting to grind <<if $PC.dick == 1>>your dick<<if $PC.vagina == 1>> and the pussy attached to it<</if>><<else>>the strap-on<</if>> back and forth between $his legs. $He starts to ride you, and starts to beg you to fuck $him. You take her under the arms and pull her up, letting <<if $PC.dick == 1>>your erection<<else>>the dildo<</if>> spring free; $he takes the cue and lines its head up with her + for a while, slowly starting to grind <<if $PC.dick == 1>>your dick<<if $PC.vagina == 1>> and the pussy attached to it<</if>><<else>>the strap-on<</if>> back and forth between $his legs. $He starts to ride you, and starts to beg you to fuck $him. You take $him under the arms and pull $him up, letting <<if $PC.dick == 1>>your erection<<else>>the dildo<</if>> spring free; $he takes the cue and lines its head up with $his <<if $activeSlave.anus > 2>> asspussy. <<elseif $activeSlave.anus > 1>> @@ -17158,13 +17160,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t tight pucker. <</if>> <<= AnalVCheck()>> - $He shivers with pleasure as you lower her onto it and $he feels the pressure + $He shivers with pleasure as you lower $him onto it and $he feels the pressure <<if $activeSlave.prostate > 0>> - against her prostate. + against $his prostate. <<else>> in $his rectum. <</if>> - $He's so aroused that $he climaxes immediately, shuddering as her + $He's so aroused that $he climaxes immediately, shuddering as $his <<if $activeSlave.dick > 6>> monstrous floppy dick twitches, dripping <<elseif $activeSlave.dick > 3>> @@ -17183,7 +17185,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> a small <</if>> - amount of clear fluid. By the time you carry her @@.hotpink;limply submissive@@ body to the shower, $he's orgasmed twice more to your artful anal lovemaking. + amount of clear fluid. By the time you carry $his @@.hotpink;limply submissive@@ body to the shower, $he's orgasmed twice more to your artful anal lovemaking. <<set $activeSlave.devotion += 4>> <<set $activeSlave.balls = 0>> <<set $activeSlave.scrotum = 0>> @@ -17217,7 +17219,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t You seize a tablet and hurry out of your office, working furiously and using every feature of $assistantName to the utmost. These bitches have offended you, and you quickly frame the structure of an appropriate revenge. By the time you get to where $activeSlave.slaveName is still being heckled by spoiled, drunken harpies, everyone else present in that arcology hall has mysteriously received urgent messages and gone elsewhere. $activeSlave.slaveName <<if canSee($activeSlave)>>sees you approach, and stares at you<<else>>recognizes your dominant footsteps approaching, and turns to face you<</if>>, $his sudden intense look alerting your vile little guests to your presence. One of them attempts to frame an insult for the interloper, but one of her friends pokes her in the side and whispers something in her ear, and she goes silent, staring at you with wide eyes. <<if $PC.title != 1>>She then winces, visibly realizing that you're likely aware that she called $activeSlave.slaveName's owner $his Master. Somehow, the mistake seems important to her now that you're standing here, effortlessly dominating the space for all your femininity.<</if>> <br><br> - You hold the tablet out to them wordlessly. It's displaying security footage of the three of them, boarding a public VTOL transport for another arcology nearby. The prominent timestamp is thirty minutes in the future. The scene changes, showing them partying in one of that arcology's nightclubs. You clear your throat, dragging their attention away from the counterfeited footage, and describe in detail the other evidence - tickets, identification checks, biometrics - that will prove they left your arcology and visited two others before regrettably disappearing. One of them tries, with utter predictability, to threaten you with her father, but you tell her bluntly that if he does make the effort, he'll be looking in the wrong place. + You hold the tablet out to them wordlessly. It's displaying security footage of the three of them, boarding a public VTOL transport for another arcology nearby. The prominent timestamp is thirty minutes in the future. The scene changes, showing them partying in one of that arcology's nightclubs. You clear your throat, dragging their attention away from the counterfeited footage, and describe in detail the other evidence - tickets, identification checks, biometrics - that will prove they left your arcology and visited two others before regrettably disappearing. One of them tries, with utter predictability, to threaten you with $his father, but you tell $him bluntly that if he does make the effort, he'll be looking in the wrong place. <br><br> "We shouldn't have come here," one of them says dully. She's wrong in that they would have had no trouble at all if they hadn't offended you, but right in that here, they put themselves entirely under your power. Tourists would never visit if this were widely known, but fortunately, you've been successful at concealing this. They begin to cry, and then to beg, and then the drones bag them and take them away. <<set $cash -= 25000>> @@ -17305,7 +17307,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].oralCount += 20>><</if>><</for>> <<set $oralTotal += 60>> <<case "sadist">> - Their tears aren't a means for $him; they're an end. $He extracts them with greed, enjoying the sensation of being <<if $eventSlave.dick > 0>>sucked off<<elseif $activeSlave.vagina == -1>>rimmed<<else>>eaten out<</if>> by one sobbing rich bitch while $he forces another to spank her friend's pussy. + Their tears aren't a means for $him; they're an end. $He extracts them with greed, enjoying the sensation of being <<if $eventSlave.dick > 0>>sucked off<<elseif $activeSlave.vagina == -1>>rimmed<<else>>eaten out<</if>> by one sobbing rich bitch while $he forces another to spank $his friend's pussy. <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].oralCount += 10>><</if>><</for>> <<set $slaves[$slaveIndices[$eventSlave.ID]].oralCount += 10>> <<set $oralTotal += 60>> @@ -17329,7 +17331,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Give them a surprise massage">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You move stealthily up behind $him in a predatory crouch, your arms forward and your fingers spread. When $he reaches up to <<if $activeSlave.makeup != 0>>do $his eyes<<else>>massage her forehead<</if>>, you take advantage of her newly vulnerable flanks and reach around $him to take her torpedo tits in hand. $He <<if $activeSlave.voice != 0>>howls<<else>>makes the raspy noise that mute slaves make when<</if>> in shock, writhing away from the grasping digits. Your hands aren't particularly cold, but $he's deliciously warm from the shower and you're holding onto her firmly. $His + You move stealthily up behind $him in a predatory crouch, your arms forward and your fingers spread. When $he reaches up to <<if $activeSlave.makeup != 0>>do $his eyes<<else>>massage $his forehead<</if>>, you take advantage of $his newly vulnerable flanks and reach around $him to take $his torpedo tits in hand. $He <<if $activeSlave.voice != 0>>howls<<else>>makes the raspy noise that mute slaves make when<</if>> in shock, writhing away from the grasping digits. Your hands aren't particularly cold, but $he's deliciously warm from the shower and you're holding onto $him firmly. $His <<if $activeSlave.butt > 12>> titanic ass <<elseif $activeSlave.butt > 5>> @@ -17339,23 +17341,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> trim behind <</if>> - bumps into you as $he recoils, and $he freezes, realizing who you are. You slide your grip back towards $him, down away from the point of each tit, grab her back where $he's broader, and knead her gently, moving forward down $his breasts. + bumps into you as $he recoils, and $he freezes, realizing who you are. You slide your grip back towards $him, down away from the point of each tit, grab $his back where $he's broader, and knead $him gently, moving forward down $his breasts. <<if $activeSlave.fetish == "boobs">> <<if $activeSlave.fetishKnown != 1>> $His chest swells in your embrace as $he sucks in $his breath, stiffening with arousal. $He seems to @@.lightcoral;love breast play,@@ and if properly encouraged, might orgasm to it. <<set $activeSlave.fetishKnown = 1>> <<else>> $He stiffens with arousal, since breast play is the main sexual event as far as $he's concerned. - <<if canAchieveErection($activeSlave) && ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>There's an audible little smack as $he achieves an erection, bringing her dickhead against the bottom of the counter.<</if>> + <<if canAchieveErection($activeSlave) && ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>There's an audible little smack as $he achieves an erection, bringing $his dickhead against the bottom of the counter.<</if>> <</if>> <<elseif $activeSlave.devotion > 50>> - $He softens into your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>, wriggling her back into you to get comfortable. + $He softens into your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>, wriggling $his back into you to get comfortable. <<elseif $activeSlave.devotion > 20>> - $He makes an effort to relax, and you can feel the stiffness go out of her back, pressed against your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>. + $He makes an effort to relax, and you can feel the stiffness go out of $his back, pressed against your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>. <<else>> $He remains stiff and afraid, shivering a little against your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>>. <</if>> - $He expects to get fucked, but you just massage $his breasts thoroughly, give her <<if $activeSlave.pregKnown == 1>>belly<<else>>butt<</if>> a possessive pat, and continue on your way. $He thanks you <<if $activeSlave.devotion > 50>>with touching sincerity<<elseif $activeSlave.devotion > 20>>sincerely<<else>>hesitantly<</if>> and returns to her business, @@.mediumaquamarine;smiling a little.@@ + $He expects to get fucked, but you just massage $his breasts thoroughly, give $his <<if $activeSlave.pregKnown == 1>>belly<<else>>butt<</if>> a possessive pat, and continue on your way. $He thanks you <<if $activeSlave.devotion > 50>>with touching sincerity<<elseif $activeSlave.devotion > 20>>sincerely<<else>>hesitantly<</if>> and returns to $his business, @@.mediumaquamarine;smiling a little.@@ <<set $activeSlave.trust += 4>> <<if $activeSlave.lactation > 0>> <<set $activeSlave.lactationDuration = 2>> @@ -17367,15 +17369,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Make her bounce them painfully">> +<br><<link "Make $him bounce them painfully">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Appearing behind $him, you order $him to bounce up and down. You don't mention her prominent tits, but $he knows exactly what you mean and is + Appearing behind $him, you order $him to bounce up and down. You don't mention $his prominent tits, but $he knows exactly what you mean and is <<if $activeSlave.devotion > 50>>eager to please<<elseif $activeSlave.devotion > 20>>willing to please<<else>>willing to debase $himself to avoid punishment<</if>>. - $He bounces up and down, watching for your reaction in the mirror. Harder, you tell $him, and $he bounces harder. Harder, you tell her again, and then again. $He jumps up and down hard enough that her promontories slap painfully against $him, + $He bounces up and down, watching for your reaction in the mirror. Harder, you tell $him, and $he bounces harder. Harder, you tell $him again, and then again. $He jumps up and down hard enough that $his promontories slap painfully against $him, <<if $activeSlave.fetish == "masochist">> <<if $activeSlave.fetishKnown != 1>> - making her gasp with arousal. $He stares at $himself in shock, and then at your reflection, mystified and a little frightened that you might have seen. You did see, and you're not perplexed. $activeSlave.slaveName is a @@.lightcoral;sexual masochist,@@ and if properly encouraged, can probably be trained to be a proper slut for pain. + making $him gasp with arousal. $He stares at $himself in shock, and then at your reflection, mystified and a little frightened that you might have seen. You did see, and you're not perplexed. $activeSlave.slaveName is a @@.lightcoral;sexual masochist,@@ and if properly encouraged, can probably be trained to be a proper slut for pain. <<set $activeSlave.fetishKnown = 1>> <<else>> making the masochistic $desc gasp with arousal. @@ -17383,17 +17385,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.devotion > 50>> extracting a gasp as $he willingly causes $himself considerable discomfort at your command. <<elseif $activeSlave.devotion > 20>> - making her wince. $He starts to look afraid. + making $him wince. $He starts to look afraid. <<else>> and $he starts to cry, more from fear than from the pain. <</if>> <br><br> - Pleased, you tell $him to keep it up as best $he can, and trap $his hips against the edge of the counter before sliding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>>into $his pussy<<else>>up $his asshole<</if>>. It's not a comfortable angle, and between the rough penetration and the continued mammary torture,<<if $activeSlave.fetish == "masochist">>$he orgasms promptly<<if $activeSlave.balls > 0>>, scattering cum all over the counter<</if>><<else>>tears begin to run down $his cheeks<</if>>. When you climax, you grab the undersides of $his breasts and hoist her up in a parody of exaltation, thrusting as far into her as you can manage<<if $PC.dick == 1>> and <<if canDoVaginal($activeSlave)>>coming inside her<<else>>blowing your load in $his butt<</if>><</if>>. The thrust, the lift, and the harsh hold on her poor boobs extracts <<if $activeSlave.voice != 0>>a shriek<<else>>the pathetic little gasping noise that mute slaves make when in agony<</if>> from her<<if $activeSlave.lactation > 0>>, not to mention <<if $activeSlave.lactation == 1>>a few drops of milk<<else>>an ejaculation-like stream of milk<</if>> from each of $his nipples<</if>>. You discard your toy on the counter, + Pleased, you tell $him to keep it up as best $he can, and trap $his hips against the edge of the counter before sliding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>>into $his pussy<<else>>up $his asshole<</if>>. It's not a comfortable angle, and between the rough penetration and the continued mammary torture,<<if $activeSlave.fetish == "masochist">>$he orgasms promptly<<if $activeSlave.balls > 0>>, scattering cum all over the counter<</if>><<else>>tears begin to run down $his cheeks<</if>>. When you climax, you grab the undersides of $his breasts and hoist $him up in a parody of exaltation, thrusting as far into $him as you can manage<<if $PC.dick == 1>> and <<if canDoVaginal($activeSlave)>>coming inside $him<<else>>blowing your load in $his butt<</if>><</if>>. The thrust, the lift, and the harsh hold on $his poor boobs extracts <<if $activeSlave.voice != 0>>a shriek<<else>>the pathetic little gasping noise that mute slaves make when in agony<</if>> from $his<<if $activeSlave.lactation > 0>>, not to mention <<if $activeSlave.lactation == 1>>a few drops of milk<<else>>an ejaculation-like stream of milk<</if>> from each of $his nipples<</if>>. You discard your toy on the counter, <<if $activeSlave.fetish == "masochist">> - leaving the poor pain addict in a state of @@.hotpink;high sexual satiation,@@ even if $he does move her battered breasts gingerly as $he climbs down. + leaving the poor pain addict in a state of @@.hotpink;high sexual satiation,@@ even if $he does move $his battered breasts gingerly as $he climbs down. <<set $activeSlave.devotion += 4>> <<else>> - leaving $him to climb down $himself, @@.gold;fearfully@@ watching your receding back as $he gets off the counter, favoring her battered breasts. + leaving $him to climb down $himself, @@.gold;fearfully@@ watching your receding back as $he gets off the counter, favoring $his battered breasts. <<set $activeSlave.trust -= 4>> <</if>> <<= SimpleVCheck()>> @@ -17403,33 +17405,33 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "retching cum feeding">> -<<link "Have mercy on the poor $girl and take her off her cum diet for now">> +<<link "Have mercy on the poor $girl and take $him off $his cum diet for now">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You see how $activeSlave.slaveName is suffering and you decide to reconsider her dietary prescription. You instruct $assistantName to change <<print $activeSlave.slaveName>>'s diet to exclude cum for now. Slaves who can't eat are unhealthy, and unhealthy slaves are unprofitable slaves. $He is now @@.mediumorchid;more confident that $he can resist you and get her way,@@ $he also @@.mediumaquamarine;trusts you a little more@@ to look after her well being. + You see how $activeSlave.slaveName is suffering and you decide to reconsider $his dietary prescription. You instruct $assistantName to change <<print $activeSlave.slaveName>>'s diet to exclude cum for now. Slaves who can't eat are unhealthy, and unhealthy slaves are unprofitable slaves. $He is now @@.mediumorchid;more confident that $he can resist you and get $his way,@@ $he also @@.mediumaquamarine;trusts you a little more@@ to look after $his well being. <<set $activeSlave.trust += 5, $activeSlave.devotion -= 5, $activeSlave.dietCum = 0>> <</replace>> <</link>> <<if $activeSlave.dietCum == 1>> - <br><<link "Force her onto a heavy cum diet, and double up on her ejaculate intake">> + <br><<link "Force $him onto a heavy cum diet, and double up on $his ejaculate intake">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You instruct $assistantName to double down on <<print $activeSlave.slaveName>>'s cum diet. Ungrateful little sluts who retch up their expensive food sometimes need tough love. Making her cum-food thicker and more concentrated might help $him to learn that no matter how bad things seem, you can always make them worse. Initially her new heavy cum diet makes no difference in her ability to keep it down, but you tell $him to give it some time. Eventually $he will learn to appreciate cum as the primary ingredient in everything $he ingests. All of your future cumsluts do, sooner or later. $His pathetic tears reveal how @@.gold;helpless $he feels,@@ but they don't hide the @@.mediumorchid;streak of rebelliousness@@ that remains burning inside $him. + You instruct $assistantName to double down on <<print $activeSlave.slaveName>>'s cum diet. Ungrateful little sluts who retch up their expensive food sometimes need tough love. Making $his cum-food thicker and more concentrated might help $him to learn that no matter how bad things seem, you can always make them worse. Initially $his new heavy cum diet makes no difference in $his ability to keep it down, but you tell $him to give it some time. Eventually $he will learn to appreciate cum as the primary ingredient in everything $he ingests. All of your future cumsluts do, sooner or later. $His pathetic tears reveal how @@.gold;helpless $he feels,@@ but they don't hide the @@.mediumorchid;streak of rebelliousness@@ that remains burning inside $him. <<set $activeSlave.devotion -= 3, $activeSlave.trust -= 3, $activeSlave.dietCum = 2>> <</replace>> <</link>> <<elseif $activeSlave.dietCum == 2>> - <br><<link "Give the poor $girl a break and reduce her cum intake to a more modest level">> + <br><<link "Give the poor $girl a break and reduce $his cum intake to a more modest level">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName is on a very heavy cum diet, and it's possible you're forcing $him to take too much, too soon. You decide to give $him a break and instruct $assistantName to reduce, but not eliminate the amount of cum in her diet. Although it doesn't immediately make her hate cum any less, @@.hotpink;$he appreciates your willingness@@ to make things a little less unpleasant for $him. @@.mediumaquamarine;$He is a little less afraid of you too,@@ although not as much as if you'd taken her off her cum diet altogether. + $activeSlave.slaveName is on a very heavy cum diet, and it's possible you're forcing $him to take too much, too soon. You decide to give $him a break and instruct $assistantName to reduce, but not eliminate the amount of cum in $his diet. Although it doesn't immediately make $him hate cum any less, @@.hotpink;$he appreciates your willingness@@ to make things a little less unpleasant for $him. @@.mediumaquamarine;$He is a little less afraid of you too,@@ although not as much as if you'd taken $him off $his cum diet altogether. <<set $activeSlave.devotion += 2, $activeSlave.trust += 2, $activeSlave.dietCum = 1>> <</replace>> <</link>> -<br><<link "Suppress her gag reflex and double her cum intake for a week">> +<br><<link "Suppress $his gag reflex and double $his cum intake for a week">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He is already on a very heavy cum-based diet, and there's only so much ejaculate you can force a slut to ingest before it negatively affects $his health. However, as a temporary measure, you still have options. You instruct $assistantName to re-double the amount of ejaculate in <<print $activeSlave.slaveName>>'s diet for the week. You also have her closely monitored and injected with anti-nausea drugs to help her hold down her food. Although the idea of being forced to eat large amounts of human reproductive fluid still disgusts $him, the week of having a super-concentrated cum-diet, along with the suppressed reflex to purge it has its effect. Knowing that you monitor and control every aspect of her life @@.hotpink;breaks down her resistance to your will,@@ and by the end of the week, $he is grateful that you return $him to a more nutritionally viable regimen--even if its cum content is still overwhelmingly high. <<if $activeSlave.fetishKnown == 1>>@@.lightcoral;$His brain has now begun to accept the sexual perversity of her food as a turn on.@@<<else>>$He is now able to eat and digest her prescribed diet without pharmacological assistance.<</if>> + $He is already on a very heavy cum-based diet, and there's only so much ejaculate you can force a slut to ingest before it negatively affects $his health. However, as a temporary measure, you still have options. You instruct $assistantName to re-double the amount of ejaculate in <<print $activeSlave.slaveName>>'s diet for the week. You also have $him closely monitored and injected with anti-nausea drugs to help $his hold down $his food. Although the idea of being forced to eat large amounts of human reproductive fluid still disgusts $him, the week of having a super-concentrated cum-diet, along with the suppressed reflex to purge it has its effect. Knowing that you monitor and control every aspect of $his life @@.hotpink;breaks down $his resistance to your will,@@ and by the end of the week, $he is grateful that you return $him to a more nutritionally viable regimen--even if its cum content is still overwhelmingly high. <<if $activeSlave.fetishKnown == 1>>@@.lightcoral;$His brain has now begun to accept the sexual perversity of $his food as a turn on.@@<<else>>$He is now able to eat and digest $his prescribed diet without pharmacological assistance.<</if>> <<set $activeSlave.devotion += 5, $activeSlave.fetish = "cumslut">> <<if $activeSlave.fetishKnown == 1>> <<set $activeSlave.fetishStrength = 10>> @@ -17441,7 +17443,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Sentence $him to a day in $arcadeName for cum injection therapy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You have $assistantName inform $activeSlave.slaveName of $his unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove $his newfound enthusiasm for cum, but you are unmerciful as two other slaves drag $him off to serve $his sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and her head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of her stay--a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes her ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down her resistance.@@ $He now @@.gold;better understands the terrifying power you have over her,@@ and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health.@@ Your other cum-fed slaves take note of what you do to those who can't hold down their assigned diet. + You have $assistantName inform $activeSlave.slaveName of $his unacceptable behavior and sentence $him to a day in $arcadeName. $He cries and pleads for mercy, and even begs to be allowed to suck a cock, any cock, so $he can prove $his newfound enthusiasm for cum, but you are unmerciful as two other slaves drag $him off to serve $his sentence. $He is forced to wear a<<if $activeSlave.vagina != -1>> combined vaginal and<<else>>n<</if>> anal chastity belt so that the only hole available is $his mouth, and is then confined in $arcadeName with $his mouth spread open by a ring gag and $his head sticking through the hole in the wall. A sign below $his mouth proclaims $him to be a "cum extraction tube" and $he is used that way for the duration of $his stay--a grueling, 18-hour marathon of relentless throat fucking. <<if $activeSlave.sexualFlaw != "hates oral">>$His ordeal is so extreme that $he now @@.red;hates oral sex@@<<else>>$His hatred of oral sex makes $his ordeal that much more horrific<</if>>, but it @@.hotpink;breaks down $his resistance.@@ $He now @@.gold;better understands the terrifying power you have over $him,@@ and the sheer amount of cum $he is forced to ingest @@.red;negatively effects $his health.@@ Your other cum-fed slaves take note of what you do to those who can't hold down their assigned diet. <<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.oralCount += 55, $activeSlave.publicCount += 55, $oralTotal += 55, $activeSlave.sexualFlaw = "hates oral", $activeSlave.fetish = "masochist">> <</replace>> <</link>> @@ -17559,22 +17561,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t you take $him over to the glory hole area, where distinct labels adorn the holes reserved for members of the slave race, and $arcologies[0].FSSubjugationistRace fuck-holes are afforded "special attention" by "sympathetic" citizens of the arcology. <</if>> <br><br> - At first $activeSlave.slaveName is confused as to why you are showing $him these things, but you soon make your point clear. You explain that if $he doesn't start accepting $his role, you can easily alter $his appearance and force $him to accept a much different role instead. You see $his <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> stupid <<if canSee($activeSlave)>>eyes<<else>>face<</if>> finally start to show signs of understanding<<else>>intelligent <<if canSee($activeSlave)>>eyes<<else>>face<</if>> quickly realize what you are talking about<</if>> and $he starts to whimper helplessly, begging you not to turn $him into a $arcologies[0].FSSubjugationistRace sub-human. By the end of the tour $he better realizes exactly what it means to be a slave. $He is starting to understand the @@.hotpink;power you have over her,@@ and @@.gold;$he fears you even more because of it.@@ + At first $activeSlave.slaveName is confused as to why you are showing $him these things, but you soon make your point clear. You explain that if $he doesn't start accepting $his role, you can easily alter $his appearance and force $him to accept a much different role instead. You see $his <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> stupid <<if canSee($activeSlave)>>eyes<<else>>face<</if>> finally start to show signs of understanding<<else>>intelligent <<if canSee($activeSlave)>>eyes<<else>>face<</if>> quickly realize what you are talking about<</if>> and $he starts to whimper helplessly, begging you not to turn $him into a $arcologies[0].FSSubjugationistRace sub-human. By the end of the tour $he better realizes exactly what it means to be a slave. $He is starting to understand the @@.hotpink;power you have over $him,@@ and @@.gold;$he fears you even more because of it.@@ <<set $activeSlave.devotion += 5, $activeSlave.trust -= 10>> <</replace>> <</link>> <br><<link "Discipline $him normally. Artificial racial subjugation is going too far">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You look $activeSlave.slaveName over, and something about $him makes you reconsider playing games with her racial appearance. <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>Perhaps her natural $activeSlave.race supremacy is too sacrosanct for you to go to such lengths. <</if>>You'll not make such an extreme example of $him. Still, $he is a disobedient slave, and $he cannot be allowed to openly defy your orders and inspections. You + You look $activeSlave.slaveName over, and something about $him makes you reconsider playing games with $his racial appearance. <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>Perhaps $his natural $activeSlave.race supremacy is too sacrosanct for you to go to such lengths. <</if>>You'll not make such an extreme example of $him. Still, $he is a disobedient slave, and $he cannot be allowed to openly defy your orders and inspections. You <<if $activeSlave.belly >= 300000>> - shove her onto $his _belly belly, expose her bare ass + shove $him onto $his _belly belly, expose $his bare ass <<else>> - take her over your knee, expose $his bare ass + take $him over your knee, expose $his bare ass <</if>> - and spank her hard and relentlessly. $He screams and whines and struggles, and you call in an obedient slave to help keep control of $him as you punish her reddened bottom. You also make sure to tell her how lucky $he is that $he isn't one of those worthless sub-human $arcologies[0].FSSubjugationistRace sluts, and that $he is getting off easy. But you also remind $him that there are worse owners to belong to, and if $he continues to resist your will, you will be very selective about who you sell $him to. + and spank $him hard and relentlessly. $He screams and whines and struggles, and you call in an obedient slave to help keep control of $him as you punish $his reddened bottom. You also make sure to tell $him how lucky $he is that $he isn't one of those worthless sub-human $arcologies[0].FSSubjugationistRace sluts, and that $he is getting off easy. But you also remind $him that there are worse owners to belong to, and if $he continues to resist your will, you will be very selective about who you sell $him to. <br><br> - By the time you've finished with $his sensitive ass, it shines red, and $he is crying and whimpering in pain. You send $him away, having @@.hotpink;dampened her resistance a bit,@@ and @@.gold;scared $him with your tales of how much worse life could be@@ for $him + By the time you've finished with $his sensitive ass, it shines red, and $he is crying and whimpering in pain. You send $him away, having @@.hotpink;dampened $his resistance a bit,@@ and @@.gold;scared $him with your tales of how much worse life could be@@ for $him <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>> if $he weren't born of the supreme race. <<else>> @@ -17595,7 +17597,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $he is being fed significant amounts of ejaculate. <</if>> - While her <<if $activeSlave.dietCum == 2>>extreme <</if>>diet is still engineered to <<if $activeSlave.dietCum == 2>>barely <</if>> provide the nutrition $he needs, if $he can't hold the stuff down, $he can't gain weight<<if $activeSlave.pregKnown == 1 && $activeSlave.preg > $activeSlave.pregData.normalBirth/4>>, even more so with her growing child<<if $activeSlave.pregType > 1>>ren<</if>> taking whatever nutrients <<if $activeSlave.pregType > 1>>they<<else>>it<</if>> can<</if>>. With a few taps on the keyboard you change her orders so that $he will be fed a much more nutritionally rich diet that is free of ejaculate. However, you make sure to warn $him that $assistantName will be monitoring $him, and you may change your mind once $he reaches a more attractive weight. $He thanks you profusely, <<if $activeSlave.vagina != 0>>even attempting to offer $his body for use in gratitude,<</if>> but you simply send her away. You find yourself concerned that you are becoming soft by allowing slaves to dictate what they will and won't eat, but your benevolent decision has already had a @@.hotpink;positive effect on her attitude.@@ $He @@.mediumaquamarine;trusts you a little more@@ too. + While $his <<if $activeSlave.dietCum == 2>>extreme <</if>>diet is still engineered to <<if $activeSlave.dietCum == 2>>barely <</if>> provide the nutrition $he needs, if $he can't hold the stuff down, $he can't gain weight<<if $activeSlave.pregKnown == 1 && $activeSlave.preg > $activeSlave.pregData.normalBirth/4>>, even more so with $his growing child<<if $activeSlave.pregType > 1>>ren<</if>> taking whatever nutrients <<if $activeSlave.pregType > 1>>they<<else>>it<</if>> can<</if>>. With a few taps on the keyboard you change $his orders so that $he will be fed a much more nutritionally rich diet that is free of ejaculate. However, you make sure to warn $him that $assistantName will be monitoring $him, and you may change your mind once $he reaches a more attractive weight. $He thanks you profusely, <<if $activeSlave.vagina != 0>>even attempting to offer $his body for use in gratitude,<</if>> but you simply send $him away. You find yourself concerned that you are becoming soft by allowing slaves to dictate what they will and won't eat, but your benevolent decision has already had a @@.hotpink;positive effect on $his attitude.@@ $He @@.mediumaquamarine;trusts you a little more@@ too. <<set $activeSlave.trust += 2, $activeSlave.devotion += 2, $activeSlave.dietCum = 0>> <</replace>> <</link>> @@ -17603,15 +17605,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Give the emaciated slut your answer in the form of a rough butt-fuck">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand up behind your desk. $He flinches, but holds her ground, her lip quivering slightly. You slowly walk toward $him, appraising her <<if $activeSlave.belly >= 100>>bloated<<else>>smooth<</if>>, skinny body, touching her shoulder as you disappear behind $him. $He starts to cry as you + You stand up behind your desk. $He flinches, but holds $his ground, $his lip quivering slightly. You slowly walk toward $him, appraising $his <<if $activeSlave.belly >= 100>>bloated<<else>>smooth<</if>>, skinny body, touching $his shoulder as you disappear behind $him. $He starts to cry as you <<if $PC.dick == 0>> pull a massive rubber dong attachment off the wall and hook it to your strap-on. <<else>> - unbuckle your pants and let $him feel your warm dick harden against her tight, bony thigh. + unbuckle your pants and let $him feel your warm dick harden against $his tight, bony thigh. <</if>> - Without word or ceremony, you shove her forward so that $he is bent over and crushed against your desk. The tears start to flow out of her as $he feels your <<if $PC.dick == 0>>massive rubber dong <<else>>hard, thick cock <</if>>pressing against her unprotected anus. + Without word or ceremony, you shove $him forward so that $he is bent over and crushed against your desk. The tears start to flow out of $him as $he feels your <<if $PC.dick == 0>>massive rubber dong <<else>>hard, thick cock <</if>>pressing against $his unprotected anus. <br><br> - When you offer $him the opportunity to revise her request, $he does. "Plea<<s>>e, <<Master>>! I'm <<s>>orry! Plea<<s>>e don't fuck my a<<ss>>! I'll eat all the cum you want! Plea<<s>>e!" $He screams <<if $activeSlave.accent > 1>>in her thick accent <</if>> as you force your<<if $PC.dick == 0>> strap-on <<else>>self <</if>> inside $his butt-hole and subdue her weak, struggling body against your unforgiving desk. @@.gold;Horrified tears@@ stream down her face with each brutal thrust as you speak into her ear and remind $him that slaves are not allowed to dictate their needs to their owners. You know what's best for $him, and right now, her proper role is as an eager little depository for the products of the free-cities ejaculate market. It's her job to suck down cum at the whim of her owner--plain and simple--until $he's told otherwise. You butt-fuck the cum-fed slag until $he simply lays there and accepts her corrective ass-rape. + When you offer $him the opportunity to revise $his request, $he does. "Plea<<s>>e, <<Master>>! I'm <<s>>orry! Plea<<s>>e don't fuck my a<<ss>>! I'll eat all the cum you want! Plea<<s>>e!" $He screams <<if $activeSlave.accent > 1>>in $his thick accent <</if>> as you force your<<if $PC.dick == 0>> strap-on <<else>>self <</if>> inside $his butt-hole and subdue $his weak, struggling body against your unforgiving desk. @@.gold;Horrified tears@@ stream down $his face with each brutal thrust as you speak into $his ear and remind $him that slaves are not allowed to dictate their needs to their owners. You know what's best for $him, and right now, $his proper role is as an eager little depository for the products of the free-cities ejaculate market. It's $his job to suck down cum at the whim of $his owner--plain and simple--until $he's told otherwise. You butt-fuck the cum-fed slag until $he simply lays there and accepts $his corrective ass-rape. <<if $activeSlave.anus == 0>> @@.lime;$His@@ <<if $activeSlave.butt < 5>> @@ -17621,9 +17623,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> @@.lime;ass is now broken in@@. <</if>> - $He sobs quietly with each thrust of your hips, and when you finally <<if $PC.dick == 1>>make yet another cum deposit into her <<if $activeSlave.weight < -80>>emaciated <<else>>bony <</if>>body and<</if>> pull out, you instruct + $He sobs quietly with each thrust of your hips, and when you finally <<if $PC.dick == 1>>make yet another cum deposit into $his <<if $activeSlave.weight < -80>>emaciated <<else>>bony <</if>>body and<</if>> pull out, you instruct <<if $activeSlave.dietCum == 1>> - $assistantName to dramatically increase the amount of cum in her diet from now on. You won't have a slave telling you what $he eats. $activeSlave.slaveName <<if canHear($activeSlave)>>hears your instructions <<else>>correctly guesses the meaning behind your body language <</if>>and whimpers before rubbing her sore bottom and + $assistantName to dramatically increase the amount of cum in $his diet from now on. You won't have a slave telling you what $he eats. $activeSlave.slaveName <<if canHear($activeSlave)>>hears your instructions <<else>>correctly guesses the meaning behind your body language <</if>>and whimpers before rubbing $his sore bottom and <<else>> another slave to drag the broken slut to the kitchen, where $he's to receive an additional feeding of thick, creamy ejaculate-based nutrients before <</if>> @@ -17639,22 +17641,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.dietCum = 2, $activeSlave.dietMilk = 0>> <</if>> <</replace>> -<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.dietMilk == 1)>> //This option will//<<if $activeSlave.anus == 0>> //take anal virginity//<<if $activeSlave.dietMilk == 1>>// and//<</if>><</if>><<if $activeSlave.dietMilk == 1>>// remove milk from her diet//<</if>><</if>> +<</link>><<if ($activeSlave.anus == 0) || ($activeSlave.dietMilk == 1)>> //This option will//<<if $activeSlave.anus == 0>> //take anal virginity//<<if $activeSlave.dietMilk == 1>>// and//<</if>><</if>><<if $activeSlave.dietMilk == 1>>// remove milk from $his diet//<</if>><</if>> <</if>> -<br><<link "Use aphrodisiacs and positive reinforcement to make her cum diet more palatable">> +<br><<link "Use aphrodisiacs and positive reinforcement to make $his cum diet more palatable">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You do a quick check at your terminal. $He is indeed being fed <<if $activeSlave.dietCum == 1>> food that is supplemented with cum for flavor.<<else>>large amounts of human ejaculate.<</if>> You tell $him that it can't be helped. When you assign a slave her diet, it's for a reason, and in <<print $activeSlave.slaveName>>'s case, you are using her diet to make her into a better whore. By the look on her distressed face, you can tell $he doesn't understand or appreciate your perspective, but you tell her you have just the thing to help change her outlook. + You do a quick check at your terminal. $He is indeed being fed <<if $activeSlave.dietCum == 1>> food that is supplemented with cum for flavor.<<else>>large amounts of human ejaculate.<</if>> You tell $him that it can't be helped. When you assign a slave $his diet, it's for a reason, and in <<print $activeSlave.slaveName>>'s case, you are using $his diet to make $him into a better whore. By the look on $his distressed face, you can tell $he doesn't understand or appreciate your perspective, but you tell $him you have just the thing to help change $his outlook. <br><br> - You pull out a heavy dose of aphrodisiacs from the drawer in your desk. They are expensive, but powerful drugs that can be used in a brute force way to manipulate the sexual urges and tastes of even the most frigid sluts. The mild dose included in every slave's food is usually enough to affect a slow, inevitable change in attitude for resistant slaves, but sometimes a more acute dose can be an amusing way to turn disgust into dependence. $activeSlave.slaveName shivers as you reassure $him and inject her <<if $activeSlave.weight < -80>>bony <<else>>tiny <</if>>body with the powerful drugs. You know they are working when $he begins to perspire a little, and + You pull out a heavy dose of aphrodisiacs from the drawer in your desk. They are expensive, but powerful drugs that can be used in a brute force way to manipulate the sexual urges and tastes of even the most frigid sluts. The mild dose included in every slave's food is usually enough to affect a slow, inevitable change in attitude for resistant slaves, but sometimes a more acute dose can be an amusing way to turn disgust into dependence. $activeSlave.slaveName shivers as you reassure $him and inject $his <<if $activeSlave.weight < -80>>bony <<else>>tiny <</if>>body with the powerful drugs. You know they are working when $he begins to perspire a little, and <<if $activeSlave.vagina > -1>> - $he starts to leak fresh girl-juice down her shivering thighs. + $he starts to leak fresh girl-juice down $his shivering thighs. <<elseif $activeSlave.dick == 0>> - starts to turn instinctively to offer you her only hole. + starts to turn instinctively to offer you $his only hole. <<else>> - her dick starts to come to attention. + $his dick starts to come to attention. <</if>> - You then book $him to be the main attraction at a corporate office party that afternoon, where $he will be the target of a blow-bang and bukkake. You see that $he's dosed heavily with the drugs every day this week, and then book the rest of her afternoons for similar duties, making sure $he still tends to her regular assignments as well. In the meantime, you also instruct the kitchen that $he is to eat as much cum-based food from the dispensers as $he can suck down in order to fuel up for these exhausting escapades. By the end of the week, the aphrodisiacs and her slide into an inescapable routine of cum immersion have done their job, and $he has begun to @@.lightcoral;view cum as an inevitable component of her daily life.@@ $He also manages to @@.green;gain a little weight.@@ Thanks to your manipulation of her Pavlovian responses through extreme drug therapy, her @@.red;health has suffered a bit,@@ but $he is also @@.hotpink;more dependent on you@@ thanks to her <<if $activeSlave.addict == 0>>@@.cyan;new@@<<else>>@@.cyan;developing@@<</if>> @@.cyan;addiction to aphrodisiacs.@@ + You then book $him to be the main attraction at a corporate office party that afternoon, where $he will be the target of a blow-bang and bukkake. You see that $he's dosed heavily with the drugs every day this week, and then book the rest of $his afternoons for similar duties, making sure $he still tends to $his regular assignments as well. In the meantime, you also instruct the kitchen that $he is to eat as much cum-based food from the dispensers as $he can suck down in order to fuel up for these exhausting escapades. By the end of the week, the aphrodisiacs and $his slide into an inescapable routine of cum immersion have done their job, and $he has begun to @@.lightcoral;view cum as an inevitable component of $his daily life.@@ $He also manages to @@.green;gain a little weight.@@ Thanks to your manipulation of $his Pavlovian responses through extreme drug therapy, $his @@.red;health has suffered a bit,@@ but $he is also @@.hotpink;more dependent on you@@ thanks to $his <<if $activeSlave.addict == 0>>@@.cyan;new@@<<else>>@@.cyan;developing@@<</if>> @@.cyan;addiction to aphrodisiacs.@@ <<set $activeSlave.devotion += 5, $activeSlave.health -= 10, $activeSlave.weight += 10, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10, $activeSlave.oralCount += 50, $oralTotal += 50, $activeSlave.publicCount += 50, $activeSlave.addict += 1>> <</replace>> <</link>> @@ -17665,17 +17667,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that you're going to fuck her <<if $activeSlave.anus == 0>>virgin <</if>>asspussy. To your complete lack of surprise, $he can't hide her horror at the prospect of <<if $PC.dick == 1>>having a cock inside her<<else>>being fucked with a strap-on<</if>>, and her <<if canSee($activeSlave)>>wide, $activeSlave.eyeColor eyes track<<else>>terrified face follows<</if>> your movements closely as you stand up and <<if $PC.dick == 1>>reveal the formidable member<<else>>don the strap-on<</if>> you're about to breed her with. You order $him to kneel on the couch, which $he does, @@.gold;cringing in fear of being buttfucked, but knowing disobedience will be worse;@@ and then you order $him to reach down and spread $his butt for you, as wide as it'll go. $He complies, + You announce that you're going to fuck $his <<if $activeSlave.anus == 0>>virgin <</if>>asspussy. To your complete lack of surprise, $he can't hide $his horror at the prospect of <<if $PC.dick == 1>>having a cock inside $his<<else>>being fucked with a strap-on<</if>>, and $his <<if canSee($activeSlave)>>wide, $activeSlave.eyeColor eyes track<<else>>terrified face follows<</if>> your movements closely as you stand up and <<if $PC.dick == 1>>reveal the formidable member<<else>>don the strap-on<</if>> you're about to breed $him with. You order $him to kneel on the couch, which $he does, @@.gold;cringing in fear of being buttfucked, but knowing disobedience will be worse;@@ and then you order $him to reach down and spread $his butt for you, as wide as it'll go. $He complies, <<if $activeSlave.butt > 12>> grabbing as much flesh as $he can of each monstrous buttock and heaving them as far apart as $he can manage in an attempt <<elseif $activeSlave.butt > 6>> - taking a handful of each massive buttock and heaving them apart to reveal her + taking a handful of each massive buttock and heaving them apart to reveal $his <<elseif $activeSlave.butt > 3>> - pulling her plush buttocks apart + pulling $his plush buttocks apart <<else>> - even though her cute ass doesn't have to be spread + even though $his cute ass doesn't have to be spread <</if>> - to reveal her + to reveal $his <<if $activeSlave.anus > 2>> whorish anal slit. <<elseif $activeSlave.butt > 1>> @@ -17683,20 +17685,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> tight little rosebud. <</if>> - You let her soak in her discomfort, <<if $PC.dick == 1>>stroking your cock gently<<else>>rubbing a little lube on the tip of your phallus<</if>> and letting her see how big it is. $His cringing even extends to $his asshole, + You let $him soak in $his discomfort, <<if $PC.dick == 1>>stroking your cock gently<<else>>rubbing a little lube on the tip of your phallus<</if>> and letting $him see how big it is. $His cringing even extends to $his asshole, <<if $activeSlave.analArea > 3>> the huge area of crinkled skin <<elseif $activeSlave.analArea > 1>> the crinkled skin around $his anus <<else>> - her little pucker + $his little pucker <</if>> tensing as $he anticipates anal sex. <<set $activeSlave.trust -= 3>> <br><br><span id="result2"> <<link "Make sure $he gets off on it">> <<replace "#result2">> - You press <<if $PC.dick == 1>>yourself<<else>>your weapon<</if>> past her sphincter with care, and her posture softens a little as $he realizes you aren't going to hurt $him. Once you've hilted <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>> inside $him, you caress her + You press <<if $PC.dick == 1>>yourself<<else>>your weapon<</if>> past $his sphincter with care, and $his posture softens a little as $he realizes you aren't going to hurt $him. Once you've hilted <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>> inside $him, you caress $his <<if $activeSlave.belly >= 150000>> _belly distended <<elseif $activeSlave.weight > 95>> @@ -17724,18 +17726,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> thin <</if>> - waist, running your hands across her skin. Then you <<if $activeSlave.clitPiercing == 3>>activate her smart frenulum piercing<<else>>secure a couple of little egg vibes to her dick<</if>>. $He gasps as the vibration starts, and then gasps again as $his anus tightens involuntarily with the stimulation, squeezing the <<if $PC.dick == 1>>warm penis<<else>>phallus<</if>> that fills it. $He <<if $activeSlave.voice > 0>>moans openly<<else>>rasps mutely<</if>> as you pull out and then thrust into $him. Much against her will, $he <<if canAchieveErection($activeSlave)>>quickly becomes erect<<else>>starts to drip precum, which is her ballsless body's way of showing arousal<</if>>. + waist, running your hands across $his skin. Then you <<if $activeSlave.clitPiercing == 3>>activate $his smart frenulum piercing<<else>>secure a couple of little egg vibes to $his dick<</if>>. $He gasps as the vibration starts, and then gasps again as $his anus tightens involuntarily with the stimulation, squeezing the <<if $PC.dick == 1>>warm penis<<else>>phallus<</if>> that fills it. $He <<if $activeSlave.voice > 0>>moans openly<<else>>rasps mutely<</if>> as you pull out and then thrust into $him. Much against $his will, $he <<if canAchieveErection($activeSlave)>>quickly becomes erect<<else>>starts to drip precum, which is $his ballsless body's way of showing arousal<</if>>. <<if $activeSlave.fetish == "buttslut">> <<if $activeSlave.fetishKnown == 1>> <<if $activeSlave.fetishStrength > 95>> - Every time $he takes it up the butt, $he's reminded that $he's a natural buttslut, and the reminder @@.lightsalmon;helps her relax and accept sodomy.@@ + Every time $he takes it up the butt, $he's reminded that $he's a natural buttslut, and the reminder @@.lightsalmon;helps $him relax and accept sodomy.@@ <<set $activeSlave.fetishStrength += 10>> <<else>> - $He knows $he gets off easily on anal stimulation, but taking it like this still isn't her favorite activity. Still, the <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation does its work, and $he @@.hotpink;submits to having her favorite hole pleasured.@@ + $He knows $he gets off easily on anal stimulation, but taking it like this still isn't $his favorite activity. Still, the <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation does its work, and $he @@.hotpink;submits to having $his favorite hole pleasured.@@ <<set $activeSlave.devotion += 3>> <</if>> <<else>> - You notice that $he stiffens again, looking down at her traitorous member in shock at how much $he enjoys the sensation of <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation. @@.lightsalmon;$He's a buttslut!@@ + You notice that $he stiffens again, looking down at $his traitorous member in shock at how much $he enjoys the sensation of <<if $activeSlave.prostate > 0>>prostate<<else>>rectal<</if>> stimulation. @@.lightsalmon;$He's a buttslut!@@ <<set $activeSlave.fetishKnown = 1>> <</if>> <</if>> @@ -17752,9 +17754,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <br><<link "Rape $him">> <<replace "#result2">> - You grab $his hips, getting a good grip, and spear the poor $desc without any hint of mercy. $He <<if $activeSlave.voice > 0>>screams in pain and fear<<else>>sucks in a great sobbing gasp<</if>>, and tries to wriggle away despite her intention of submitting to your use, but you hold $him in place and rape $his ass. + You grab $his hips, getting a good grip, and spear the poor $desc without any hint of mercy. $He <<if $activeSlave.voice > 0>>screams in pain and fear<<else>>sucks in a great sobbing gasp<</if>>, and tries to wriggle away despite $his intention of submitting to your use, but you hold $him in place and rape $his ass. <<= AnalVCheck()>> - $He tries to maintain $his position, crying openly, but eventually slides off her perch on the couch, pulling her hole off your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. You grab $him by <<if $activeSlave.hLength > 20>>hair<<else>>neck<</if>> and smash her face into the angle of the couch, leaving her poor butt completely vulnerable. $He can't see you line up to ream her again, but $he knows it's coming and cries, quivering. After a while, you haul her up to her feet and keep fucking $him, the uncomfortable angle of standing anal forcing new <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> out of $him. You pour degradation into her ear as you take your pleasure from her unhappy body, telling $him that $he's your fuckmeat. $He believes you, and when you finally orgasm and let her slide off your hateful <<if $PC.dick == 1>>penis<<else>>strap-on<</if>>, shes @@.gold;already terrified@@ of the next time you feel like fucking $him. + $He tries to maintain $his position, crying openly, but eventually slides off $his perch on the couch, pulling $his hole off your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. You grab $him by <<if $activeSlave.hLength > 20>>hair<<else>>neck<</if>> and smash $his face into the angle of the couch, leaving $his poor butt completely vulnerable. $He can't see you line up to ream $him again, but $he knows it's coming and cries, quivering. After a while, you haul $him up to $his feet and keep fucking $him, the uncomfortable angle of standing anal forcing new <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> out of $him. You pour degradation into $his ear as you take your pleasure from $his unhappy body, telling $him that $he's your fuckmeat. $He believes you, and when you finally orgasm and let $him slide off your hateful <<if $PC.dick == 1>>penis<<else>>strap-on<</if>>, shes @@.gold;already terrified@@ of the next time you feel like fucking $him. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> @@ -17765,20 +17767,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Humiliate $him in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You get up from behind your desk, drawing an apprehensive <<if canSee($activeSlave)>>stare<<else>>look<</if>>. To her bemusement, you order $him to follow you and leave your office. $He hurries to obey, her footsteps pattering along behind you, but they become much more hesitant as you make your way out of the penthouse and $he realizes that $he's about to be in public, naked. You don't bother looking back, knowing that $he's sufficiently afraid of you to obey. On the border between your private domain and the public hustle and bustle of the arcology's public life, $he stops for a long moment before scurrying to catch up with you, barely even noticing that @@.hotpink;$he just swallowed her sense of shame@@ to obey you and avoid punishment. You stroll along, greeting leading citizens and taking in the hum of your people. $activeSlave.slaveName grows increasingly embarrassed under the hot stares of passersby, cringing closer and closer to your protective side as $he notices how <<if canSee($activeSlave)>>many gazes rest with open hunger on<<else>>many lewd comments focus on<</if>> $his mouth, her crotch, and $his ass. + You get up from behind your desk, drawing an apprehensive <<if canSee($activeSlave)>>stare<<else>>look<</if>>. To $his bemusement, you order $him to follow you and leave your office. $He hurries to obey, $his footsteps pattering along behind you, but they become much more hesitant as you make your way out of the penthouse and $he realizes that $he's about to be in public, naked. You don't bother looking back, knowing that $he's sufficiently afraid of you to obey. On the border between your private domain and the public hustle and bustle of the arcology's public life, $he stops for a long moment before scurrying to catch up with you, barely even noticing that @@.hotpink;$he just swallowed $his sense of shame@@ to obey you and avoid punishment. You stroll along, greeting leading citizens and taking in the hum of your people. $activeSlave.slaveName grows increasingly embarrassed under the hot stares of passersby, cringing closer and closer to your protective side as $he notices how <<if canSee($activeSlave)>>many gazes rest with open hunger on<<else>>many lewd comments focus on<</if>> $his mouth, $his crotch, and $his ass. <<set $activeSlave.devotion += 3>> <br><br><span id="result2"> - <<link "Make her perform oral on you, right here">> + <<link "Make $him perform oral on you, right here">> <<replace "#result2">> - You reach around, place a dominating hand on her shoulder, pull her around in front of you, and push her down to $his knees. $He quickly realizes what's coming, and $his $activeSlave.skin cheeks blush furiously as you reveal your <<if $PC.dick == 1>>meaty dick<<else>>flushed pussy<</if>> and offer it to $him. $He gets busy, burying her head against you with a speed that seems surprising until it occurs to you that this allows $him to hide her face. Deciding to accept this tiny compromise, you run a possessive hand <<if $activeSlave.hLength < 5>>across her smooth scalp<<elseif $activeSlave.hLength < 20>>through her short hair<<else>>through her tresses<</if>> and murmur praise for her enthusiasm. $He stiffens at the implication that $he wants to be <<if $PC.dick == 1>>polishing your penis<<else>>eating you out<</if>> in broad daylight, but after a slight pause $he decides that this isn't bad. As <<if $PC.dick == 1>>her head continues to bob back and forth as $he sucks your dick<<else>>$he continues nuzzling her nose and mouth against your wet cunt<</if>>, $he fails to notice her @@.hotpink;second major submission today.@@ + You reach around, place a dominating hand on $his shoulder, pull $him around in front of you, and push $him down to $his knees. $He quickly realizes what's coming, and $his $activeSlave.skin cheeks blush furiously as you reveal your <<if $PC.dick == 1>>meaty dick<<else>>flushed pussy<</if>> and offer it to $him. $He gets busy, burying $his head against you with a speed that seems surprising until it occurs to you that this allows $him to hide $his face. Deciding to accept this tiny compromise, you run a possessive hand <<if $activeSlave.hLength < 5>>across $his smooth scalp<<elseif $activeSlave.hLength < 20>>through $his short hair<<else>>through $his tresses<</if>> and murmur praise for $his enthusiasm. $He stiffens at the implication that $he wants to be <<if $PC.dick == 1>>polishing your penis<<else>>eating you out<</if>> in broad daylight, but after a slight pause $he decides that this isn't bad. As <<if $PC.dick == 1>>$his head continues to bob back and forth as $he sucks your dick<<else>>$he continues nuzzling $his nose and mouth against your wet cunt<</if>>, $he fails to notice $his @@.hotpink;second major submission today.@@ <<if $activeSlave.fetish == "humiliation">> <<if $activeSlave.fetishKnown == 1>> - Since $he has a humiliation fetish, the embarrassment has been arousing her even as it's been torturing $him. Unsatisfied with just this, her need to be shamed obliges $him to cock $his hips and make sure onlookers can see her asspussy as $he services you with $his mouth. + Since $he has a humiliation fetish, the embarrassment has been arousing $him even as it's been torturing $him. Unsatisfied with just this, $his need to be shamed obliges $him to cock $his hips and make sure onlookers can see $his asspussy as $he services you with $his mouth. <<if $activeSlave.fetishStrength > 95>> @@.lightsalmon;$His need for humiliation has deepened.@@ <<set $activeSlave.fetishStrength += 10>> <<else>> - Such abject sluttery @@.hotpink;helps convince her of her status as a slave $girl.@@ + Such abject sluttery @@.hotpink;helps convince $him of $his status as a slave $girl.@@ <<set $activeSlave.devotion += 3>> <</if>> <<else>> @@ -17789,9 +17791,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.oralCount++, $oralTotal++, $activeSlave.devotion += 5>> <</replace>> <</link>> - <br><<link "Make her cum in public">> + <br><<link "Make $him cum in public">> <<replace "#result2">> - You produce three little egg vibrators, which instantly steal her anxious attention away from the passersby who <<if canSee($activeSlave)>>stare<<else>>whistle catcalls<</if>> at $him. You require $him to hold her dick out while you use an elastic band to attach one of the vibrators to the underside of its head. $He doesn't get to touch $himself much anymore, and the half-forgotten sensations of doing so almost make her forget that $he's naked in public, and almost certainly about to do something very embarrassing. Then you order $him to hold her dick up and place another vibrator <<if $activeSlave.scrotum > 0>>against her sensitive scrotum<<else>>against the sensitive skin where $his scrotum used to be<</if>>. Finally, you order $him to bend over and offer you $his asshole. $He obeys, with apprehension, and is actually relieved when you just place the final vibrator against, but not inside, her <<if $activeSlave.anus > 1>>asspussy<<else>>pucker<</if>>. $He finds $himself ordered to kneel and put $his hands on her head; and ordering $him to hold this position, you use remote control of the vibrators to force $him to cum twice. $He can't <<if canSee($activeSlave)>>tear $his eyes away from<<else>>tune out<</if>> the citizens who stare and laugh as $he <<if $activeSlave.balls > 0>>spurts her seed<<else>>dribbles weakly<</if>> onto the floor. + You produce three little egg vibrators, which instantly steal $his anxious attention away from the passersby who <<if canSee($activeSlave)>>stare<<else>>whistle catcalls<</if>> at $him. You require $him to hold $his dick out while you use an elastic band to attach one of the vibrators to the underside of its head. $He doesn't get to touch $himself much anymore, and the half-forgotten sensations of doing so almost make $him forget that $he's naked in public, and almost certainly about to do something very embarrassing. Then you order $him to hold $his dick up and place another vibrator <<if $activeSlave.scrotum > 0>>against $his sensitive scrotum<<else>>against the sensitive skin where $his scrotum used to be<</if>>. Finally, you order $him to bend over and offer you $his asshole. $He obeys, with apprehension, and is actually relieved when you just place the final vibrator against, but not inside, $his <<if $activeSlave.anus > 1>>asspussy<<else>>pucker<</if>>. $He finds $himself ordered to kneel and put $his hands on $his head; and ordering $him to hold this position, you use remote control of the vibrators to force $him to cum twice. $He can't <<if canSee($activeSlave)>>tear $his eyes away from<<else>>tune out<</if>> the citizens who stare and laugh as $he <<if $activeSlave.balls > 0>>spurts $his seed<<else>>dribbles weakly<</if>> onto the floor. <<if $activeSlave.fetish == "humiliation">> <<if $activeSlave.fetishKnown == 1>> <<if $activeSlave.fetishStrength > 95>> @@ -17816,20 +17818,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "moist pussy">> -<<link "Make love to her ready cunt">> +<<link "Make love to $his ready cunt">> <<EventNameDelink $activeSlave>> <<replace "#result">> $His body is so perfectly made to be fucked that it's getting itself ready for you, without your even having to give the order. Deciding not to bother with verbal commands, you approach $him and reach for one of $his hands; $he obediently extends it towards your grasp, and follows <<if ($activeSlave.energy > 40) || ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>eagerly<<else>>willingly<</if>> as you pull $him in for a hug <<if $activeSlave.boobs > 5000>> - hug (cushioned by her enormous udders), + hug (cushioned by $his enormous udders), <<elseif $activeSlave.belly >= 10000>> hug (quite a stretch thanks to $his _belly belly), <<elseif $activeSlave.dick > 5>> - hug (made rather lewd by her enormous penis), + hug (made rather lewd by $his enormous penis), <<else>> hug, <</if>> - kiss her deeply, and slide your arms down her + kiss $him deeply, and slide your arms down $his <<if $activeSlave.weight > 160>> rippling <<elseif $activeSlave.weight > 95>> @@ -17845,20 +17847,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> back to <<if $activeSlave.butt > 12>> - sink your arms into her expansive + sink your arms into $his expansive <<elseif $activeSlave.butt > 6>> - heft her monstrous + heft $his monstrous <<elseif $activeSlave.butt > 3>> - squeeze her healthy + squeeze $his healthy <<else>> - cup her cute little + cup $his cute little <</if>> - buttocks. $He <<if $activeSlave.voice > 0>>coos<<else>>hums mutely<</if>> at the feeling of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands on her bottom, and presses $himself against you as you rotate the two of you until you can set $his butt on the edge of your desk and <<if $PC.dick == 1>>slide your big dick into her well-lubricated cunt<<else>>assertively press your own pussy against her wet cunt<</if>>. + buttocks. $He <<if $activeSlave.voice > 0>>coos<<else>>hums mutely<</if>> at the feeling of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands on $his bottom, and presses $himself against you as you rotate the two of you until you can set $his butt on the edge of your desk and <<if $PC.dick == 1>>slide your big dick into $his well-lubricated cunt<<else>>assertively press your own pussy against $his wet cunt<</if>>. <br><br> - $He makes as if to lie back and take it, but you keep an arm around her back and hug her + $He makes as if to lie back and take it, but you keep an arm around $his back and hug $his <<if $activeSlave.boobs > 2000 || $activeSlave.belly >= 5000>> <<if $activeSlave.boobs > $activeSlave.belly>> - as closely as her big breasts will permit. + as closely as $his big breasts will permit. <<else>> as closely as $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly will permit. <</if>> @@ -17867,15 +17869,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> closer than ever. <</if>> - You take your other hand and place a firm but loving grip under her chin, lifting $his $activeSlave.eyeColor-eyed gaze to meet yours before kissing her again. All the while, you + You take your other hand and place a firm but loving grip under $his chin, lifting $his $activeSlave.eyeColor-eyed gaze to meet yours before kissing $him again. All the while, you <<if $PC.dick == 1>> - fuck her powerfully, withdrawing your dick almost all the way and then hilting yourself in her soaked slit. + fuck $him powerfully, withdrawing your dick almost all the way and then hilting yourself in $his soaked slit. <<= VaginalVCheck()>> <<else>> trib $him with assurance, grinding your hips against $hers and making $him feel your heat. <<set $activeSlave.vaginalCount++, $vaginalTotal++>> <</if>> - $He clings to you, accepting the closeness to her <<= WrittenMaster()>> and enjoying the loving attention, even as the extreme wetness of $his cunt and your <<if $PC.dick == 1>>powerful thrusting<<else>>hungry grinding<</if>> begin to produce lewd noises from between you. $His generous natural lubrication lessens the friction and sensation a little, and you go for a long time before you both climax. You lead her into your office shower, since you're both coated in her pussyjuice<<if $PC.dick == 1>> and $he's carrying a big load of your cum<<else>>, and your own<</if>>. Under the hot water, you don't even have to pull her close; @@.hotpink;$he presses $himself into your arms on her own.@@ + $He clings to you, accepting the closeness to $his <<= WrittenMaster($activeSlave)>> and enjoying the loving attention, even as the extreme wetness of $his cunt and your <<if $PC.dick == 1>>powerful thrusting<<else>>hungry grinding<</if>> begin to produce lewd noises from between you. $His generous natural lubrication lessens the friction and sensation a little, and you go for a long time before you both climax. You lead $him into your office shower, since you're both coated in $his pussyjuice<<if $PC.dick == 1>> and $he's carrying a big load of your cum<<else>>, and your own<</if>>. Under the hot water, you don't even have to pull $him close; @@.hotpink;$he presses $himself into your arms on $his own.@@ <<if $activeSlave.sexualQuirk == "romantic">> For an incorrigible romantic like $him, this encounter was perfect, and $he @@.hotpink;loves you all the more for it.@@ <<set $activeSlave.devotion += 3>> @@ -17883,19 +17885,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion += 5>> <</replace>> <</link>><<if $activeSlave.vagina == 0 && $PC.dick == 1>> //This option will take virginity//<</if>> -<br><<link "Pound her wet pussy">> +<br><<link "Pound $his wet pussy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's so generously lubricated that $he's ready to take a good hard fuck, so you decide to give her one. You point at the ground, and you don't even have to tell $him to get down on all fours and get ready to take it. <<if canSee($activeSlave)>>Your gesture<<else>>The atmosphere of the room<</if>> says it for you, and $he obediently gets down and gets in position to be bred like a bitch. $He angles $his hips just right to offer $his cunt to you<<if $activeSlave.belly >= 300000>>, an endeavor given the size of her middle<<elseif $activeSlave.belly >= 5000>>, while giving her rounded middle room to hang<</if>>, and even reaches down to spread her<<if $activeSlave.labia > 1>> dangling<</if>> labia to invite you into her pink channel. + $He's so generously lubricated that $he's ready to take a good hard fuck, so you decide to give $him one. You point at the ground, and you don't even have to tell $him to get down on all fours and get ready to take it. <<if canSee($activeSlave)>>Your gesture<<else>>The atmosphere of the room<</if>> says it for you, and $he obediently gets down and gets in position to be bred like a bitch. $He angles $his hips just right to offer $his cunt to you<<if $activeSlave.belly >= 300000>>, an endeavor given the size of $his middle<<elseif $activeSlave.belly >= 5000>>, while giving $his rounded middle room to hang<</if>>, and even reaches down to spread $his<<if $activeSlave.labia > 1>> dangling<</if>> labia to invite you into $his pink channel. <<if $PC.dick == 1>> <<if $activeSlave.vagina > 1>> $He can take your big dick without a twinge, <<else>> - Your big dick will fill her tight cunt to its limits, + Your big dick will fill $his tight cunt to its limits, <</if>> but you grab $his hips and <<else>> - You select a strap-on that's right at the limits of her + You select a strap-on that's right at the limits of $his <<if $activeSlave.vagina > 3>> cavernous <<elseif $activeSlave.vagina > 2>> @@ -17907,7 +17909,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> cunt's capacity, don it, and <</if>> - mount her with such force that your first stroke brings $his butt against your hips with an audible smack. There's also a deliciously lewd noise as <<if $PC.dick == 1>>your invading penis<<else>>the invading phallus<</if>> forces a little gush of pussyjuice out of $him. $He <<if $activeSlave.voice > 0>>shrieks, but it's a shriek<<else>>gasps, but it's a gasp<</if>> of pleasure, and your rutting is so well-lubricated that $he has no trouble getting off on it. Wanting her climax, you reach around $him and grab hold of $his pussy, feeling the slippery fluid between your fingers and the lewd thrusting motion as <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>> pistons in and out of $him. That bit of stimulation is enough to tip her over, and you feel a gush of femcum against your hand as <<if $PC.dick == 1>>your dickhead<<else>>the head of the strap-on<</if>> forces an orgasm out of her g-spot. $He's so discombobulated that $he collapses into the puddle of pussyjuice $he left on the floor when you stand up and head off for a shower, but $he @@.hotpink;crawls after you@@ as best $he can on rubbery legs. + mount $him with such force that your first stroke brings $his butt against your hips with an audible smack. There's also a deliciously lewd noise as <<if $PC.dick == 1>>your invading penis<<else>>the invading phallus<</if>> forces a little gush of pussyjuice out of $him. $He <<if $activeSlave.voice > 0>>shrieks, but it's a shriek<<else>>gasps, but it's a gasp<</if>> of pleasure, and your rutting is so well-lubricated that $he has no trouble getting off on it. Wanting $his climax, you reach around $him and grab hold of $his pussy, feeling the slippery fluid between your fingers and the lewd thrusting motion as <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>> pistons in and out of $him. That bit of stimulation is enough to tip $him over, and you feel a gush of femcum against your hand as <<if $PC.dick == 1>>your dickhead<<else>>the head of the strap-on<</if>> forces an orgasm out of $his g-spot. $He's so discombobulated that $he collapses into the puddle of pussyjuice $he left on the floor when you stand up and head off for a shower, but $he @@.hotpink;crawls after you@@ as best $he can on rubbery legs. <<if $activeSlave.fetish == "submissive">> <<if $activeSlave.fetishKnown == 1>> The $desc sub loves getting fucked like that, and @@ -17915,12 +17917,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t @@.lightsalmon;seems even more submissive@@ <<set $activeSlave.fetishStrength += 10>> <<else>> - since $he's fully confirmed in her status as a sub, $he @@.hotpink;glows with devotion@@ + since $he's fully confirmed in $his status as a sub, $he @@.hotpink;glows with devotion@@ <<set $activeSlave.devotion += 3>> <</if>> as $he washes $himself in the shower with you. <<else>> - $He seems utterly dissipated by the fucking $he just got, and may have just had the best sex of her life. @@.lightsalmon;$He's a submissive!@@ + $He seems utterly dissipated by the fucking $he just got, and may have just had the best sex of $his life. @@.lightsalmon;$He's a submissive!@@ <<set $activeSlave.fetishKnown = 1>> <</if>> <</if>> @@ -17933,22 +17935,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You approach $him and <<if $activeSlave.dick > 0>> - reach under her girldick for her + reach under $his girldick for $his <<elseif $activeSlave.balls > 3>> - reach under her dangling balls + reach under $his dangling balls <<else>> - cup her + cup $his <</if>> - sopping pussy. $He gasps as $he feels your cool grasp. Your possessive hand encompasses $his vulva, with your index and ring fingers sliding around either side of $his pubic mound to grip her entire womanhood. + sopping pussy. $He gasps as $he feels your cool grasp. Your possessive hand encompasses $his vulva, with your index and ring fingers sliding around either side of $his pubic mound to grip $his entire womanhood. <<if $activeSlave.vagina > 0>> <<if $activeSlave.vagina > 1>> $His relaxed pussy almost draws your middle finger inward and upward, <<else>> $His pussy welcomes your middle finger, <</if>> - and you hook it inside $his body, gathering a healthy amount of pussyjuice and brushing her g-spot. + and you hook it inside $his body, gathering a healthy amount of pussyjuice and brushing $his g-spot. <<else>> - You're careful not to penetrate her virgin slit with your middle finger, but you draw it up the exterior of her channel, gathering a healthy amount of pussyjuice. + You're careful not to penetrate $his virgin slit with your middle finger, but you draw it up the exterior of $his channel, gathering a healthy amount of pussyjuice. <</if>> Then you remove your hand, though the horny $desc unconsciously tries to follow the withdrawing digits. $He <<if canSee($activeSlave)>>stares at you, waiting to see what you're going to do, and a blush begins to rise on $his $activeSlave.skin cheeks as $he sees<<else>>listens carefully to your movements, waiting to see what you're going to do, and a blush begins to rise on $his $activeSlave.skin cheeks as $he feels<</if>> you reaching for $his mouth. $His <<if $activeSlave.lips > 95>> @@ -17960,7 +17962,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> thin <</if>> - lips part and you insert all three of your fingers into her hot mouth. $He quivers at the intimacy of the gesture, and the taste of her own juices. The tremor sends a delicious motion through her + lips part and you insert all three of your fingers into $his hot mouth. $He quivers at the intimacy of the gesture, and the taste of $his own juices. The tremor sends a delicious motion through $his <<if ($activeSlave.boobsImplant == 0) && ($activeSlave.boobs > 300)>> natural <<if $activeSlave.boobs > 2000>> @@ -17993,7 +17995,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> body. <</if>> - You keep your fingers where they are until $he's licked them really clean; her hot tongue runs repeatedly between each of your digits<<if $activeSlave.tonguePiercing > 0>> and the smooth hardness of $his tongue piercing brushes against them<</if>>. $He <<if $activeSlave.voice > 0>>moans whorishly<<else>>begins to pant<</if>> when you go back for more, and the third time you harvest her own pussyjuice to feed it to $him, $he orgasms, adding some femcum to her next little meal licked off your fingers. $His <<if canSee($activeSlave)>>eyes shine<<else>>face is alight<</if>> with @@.mediumaquamarine;gratitude and trust.@@ + You keep your fingers where they are until $he's licked them really clean; $his hot tongue runs repeatedly between each of your digits<<if $activeSlave.tonguePiercing > 0>> and the smooth hardness of $his tongue piercing brushes against them<</if>>. $He <<if $activeSlave.voice > 0>>moans whorishly<<else>>begins to pant<</if>> when you go back for more, and the third time you harvest $his own pussyjuice to feed it to $him, $he orgasms, adding some femcum to $his next little meal licked off your fingers. $His <<if canSee($activeSlave)>>eyes shine<<else>>face is alight<</if>> with @@.mediumaquamarine;gratitude and trust.@@ <<set $activeSlave.trust += 5>> <</replace>> <</link>> @@ -18003,47 +18005,47 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Let $him know $he'll be growing as fast as possible">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Rather than punishing her directly, you address yourself to your personal assistant. You order <<if $assistant > 0>>her<<else>>it<</if>> to make a note in $activeSlave.slaveName's drug schedule that $he's to remain on a breast expansion regime until further notice. The $desc's face falls as $he <<if canHear($activeSlave)>>hears this, and $assistantName <<else>>reads this order on a small screen provided by $assistantName, who <</if>>doesn't help matters by + Rather than punishing $him directly, you address yourself to your personal assistant. You order _himA to make a note in $activeSlave.slaveName's drug schedule that $he's to remain on a breast expansion regime until further notice. The $desc's face falls as $he <<if canHear($activeSlave)>>hears this, and $assistantName <<elseif canSee($activeSlave)>>reads this order on a small screen provided by $assistantName, who <<else>>slowly realizes this, and $assistantName <</if>>doesn't help matters by <<if $assistant == 0>> confirming the order in disturbingly clinical tones. <<elseif $assistantAppearance == "monstergirl">> - using her avatar's tentacle hair to caress her own tits as $he concurs in disturbingly kind tones. + using _hisA avatar's tentacle hair to caress _hisA own tits as _heA concurs in disturbingly kind tones. <<elseif $assistantAppearance == "shemale">> - shaking her avatar's enormous endowments, making a lewd comment, and then giving $himself a titjob. + shaking _hisA avatar's enormous endowments, making a lewd comment, and then giving _himselfA a titjob. <<elseif $assistantAppearance == "amazon">> observing that a good slave girl should have big tits, since strong warriors like fertile, big-boobed girls back home to breed with. <<elseif $assistantAppearance == "businesswoman">> - having her avatar give $activeSlave.slaveName a disturbingly appraising glance, as though $he and $his breasts are an interesting entry on a balance sheet. + having _hisA avatar give $activeSlave.slaveName a disturbingly appraising glance, as though $he and $his breasts are an interesting entry on a balance sheet. <<elseif $assistantAppearance == "schoolgirl">> - bending her avatar over to show off its cleavage, and then giving $his tits a jiggle, as though the point wasn't clear enough already. + bending _hisA avatar over to show off _hisA cleavage, and then giving _hisA tits a jiggle, as though the point wasn't clear enough already. <<elseif $assistantAppearance == "goddess">> - hefting her own motherly breasts and telling $activeSlave.slaveName that $he should be happy, since bigger breasts are a sign of health and fertility. + hefting _hisA own motherly breasts and telling $activeSlave.slaveName that $he should be happy, since bigger breasts are a sign of health and fertility. <<elseif $assistantAppearance == "hypergoddess">> - massaging her own heaving breasts and telling $activeSlave.slaveName that $he should be happy, since bigger breasts are a sign of health and fertility. + massaging _hisA own heaving breasts and telling $activeSlave.slaveName that $he should be happy, since bigger breasts are a sign of health and fertility. <<elseif $assistantAppearance == "loli">> <<if $assistantFSAppearance == "asset expansionist">> - playing with her oversized breasts under her swimsuit and telling $activeSlave.slaveName that being busty is amazing. + playing with _hisA oversized breasts under _hisA swimsuit and telling $activeSlave.slaveName that being busty is amazing. <<elseif $assistantFSAppearance == "pastoralist">> - cupping her pitiful milk nubs and telling $activeSlave.slaveName that if $he was in her shoes $he would be soo happy to be busty. + cupping _hisA pitiful milk nubs and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be busty. <<elseif $assistantFSAppearance == "transformation fetishist">> - playing with her absurd implants and telling $activeSlave.slaveName that being busty is great, though $he'd look better with big fake balloons for breasts. + playing with _hisA absurd implants and telling $activeSlave.slaveName that being busty is great, though $he'd look better with big fake balloons for breasts. <<else>> - cupping her nonexistent breasts and telling $activeSlave.slaveName that if $he was in her shoes $he would be soo happy to be busty. + cupping _hisA nonexistent breasts and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be busty. <</if>> <<elseif $assistantAppearance == "preggololi">> <<if $assistantFSAppearance == "asset expansionist">> - playing with her oversized breasts under her swimsuit and telling $activeSlave.slaveName that being busty is amazing. + playing with _hisA oversized breasts under _hisA swimsuit and telling $activeSlave.slaveName that being busty is amazing. <<elseif $assistantFSAppearance == "pastoralist">> - cupping her milky handfuls and telling $activeSlave.slaveName that if $he was in her shoes $he would be soo happy to be that busty. + cupping _hisA milky handfuls and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be that busty. <<elseif $assistantFSAppearance == "transformation fetishist">> - playing with her absurd implants and telling $activeSlave.slaveName that being busty is great, though $he'd look better with big fake balloons for breasts. + playing with _hisA absurd implants and telling $activeSlave.slaveName that being busty is great, though $he'd look better with big fake balloons for breasts. <<else>> - cupping her tiny breasts and telling $activeSlave.slaveName that if $he was in her shoes $he would be soo happy to be busty. + cupping _hisA tiny breasts and telling $activeSlave.slaveName that if _heA was in $his shoes _heA would be soo happy to be busty. <</if>> <<elseif $assistantAppearance == "fairy">> - groping the air as if there were an imaginary pair of tits in front of $him and telling $activeSlave.slaveName that her oversized funbags would be wonderful for $him to bounce and play on. + groping the air as if there were an imaginary pair of tits in front of _himA and telling $activeSlave.slaveName that $his oversized funbags would be wonderful for _himA to bounce and play on. <<elseif $assistantAppearance == "pregnant fairy">> - bouncing on the balls of her feet to emphasize her own small but bouncy breasts and giving $activeSlave.slaveName a knowing wink. + bouncing on the balls of _hisA feet to emphasize _hisA own small but bouncy breasts and giving $activeSlave.slaveName a knowing wink. <<elseif $assistantAppearance == "angel">> loudly musing how many hungry children $activeSlave.slaveName could feed and how many more could be added to that number. <<elseif $assistantAppearance == "cherub">> @@ -18052,32 +18054,32 @@ You tell her kindly that you understand, and that $he'll be trained to address t shouting lewd comments about $activeSlave.slaveName's tits while masturbating furiously. <<elseif $assistantAppearance == "succubus">> <<if $assistantFSAppearance == "asset expansionist">> - openly groping her own immense breasts while dropping comments about how big you like'em. + openly groping _hisA own immense breasts while dropping comments about how big you like 'em. <<elseif $assistantFSAppearance == "pastoralist">> - openly groping her milk filled quad-breasts while dropping comments about how you love'm big and milky. + openly groping _hisA milk filled quad-breasts while dropping comments about how you love 'em big and milky. <<elseif $assistantFSAppearance == "transformation fetishist">> - openly groping her own immense chest balloons while dropping comments about filling $activeSlave.slaveName with the biggest implants possible. + openly groping _hisA own immense chest balloons while dropping comments about filling $activeSlave.slaveName with the biggest implants possible. <<else>> - pushing $his breasts together and shaking them back and forth as they steadily swell. + pushing _hisA breasts together and shaking them back and forth as they steadily swell. <</if>> <<elseif $assistantAppearance == "imp">> making pinching gestures at $activeSlave.slaveName's nipples and pretending to slap all that tit flesh. <<elseif $assistantAppearance == "witch">> <<if $assistantFSAppearance == "asset expansionist">> - casting a spell and bloating $his breasts to insane proportions. + casting a spell and bloating _hisA breasts to insane proportions. <<elseif $assistantFSAppearance == "pastoralist">> - running $his hands across her many breasts, tweaking a nipples here and rubbing a tit there. + running _hisA hands across _hisA many breasts, tweaking a nipple here and rubbing a tit there. <<elseif $assistantFSAppearance == "transformation fetishist">> - bouncing her oversized and overly round breasts back and forth. + bouncing _hisA oversized and overly round breasts back and forth. <<else>> - pulling down the top of her dress to reveal her ample cleavage. + pulling down the top of _hisA dress to reveal _hisA ample cleavage. <</if>> <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - reshapes $his arms into a pair of suckers and multiple needles designed to inject prey with growth accelerants as $he slowly moves towards $activeSlave.slaveName. + reshapes _hisA arms into a pair of suckers and multiple needles designed to inject prey with growth accelerants as _heA slowly moves towards $activeSlave.slaveName. <<else>> - purring that $he'd love to. + purring that _heA'd love to. <</if>> - You talk through the $activeSlave.slaveName's medical condition with $him, and give $him a <<if $PC.medicine >= 100>>personal examination with the speed and accuracy of years of general practice<<else>>thorough exam<</if>>. Once this is done, you give $assistantName technical directions to make minor changes to $activeSlave.slaveName's drug regime, designed to make her @@.lime;breasts grow just slightly faster.@@ The effect is minimal, but the point is made. $He's still not happy to be transformed into a big-breasted sex slave, but $he's relieved that was her only punishment for expressing her unhappiness about it. + You talk through the $activeSlave.slaveName's medical condition with $him, and give $him a <<if $PC.medicine >= 100>>personal examination with the speed and accuracy of years of general practice<<else>>thorough exam<</if>>. Once this is done, you give $assistantName technical directions to make minor changes to $activeSlave.slaveName's drug regime, designed to make $his @@.lime;breasts grow just slightly faster.@@ The effect is minimal, but the point is made. $He's still not happy to be transformed into a big-breasted sex slave, but $he's relieved that was $his only punishment for expressing $his unhappiness about it. <<if $activeSlave.geneMods.NCS == 0>> <<set $activeSlave.boobs += 100>> <<else>> @@ -18089,17 +18091,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Augment $his breast growth with lactation implants">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that you're resolved to continue growing $his breasts, and since $he feels like a cow, plan to help her fulfill her image of $himself. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you drag $him to the remote surgery for an impromptu lactation implant installation. When $he comes to, $he immediately realizes $his breasts are larger than ever. As $he brings a hand to each of the full mounds, a moan laced with relief and disdain escapes $his lips; along with a strong gush of milk from her engorged breasts. $He has been taught a harsh lesson about questioning your will, a lesson $he will be reminded of every time $he has to empty her ever swelling breasts of their excessive milk. As with all surgery @@.red;$his health has been slightly affected.@@ + You announce that you're resolved to continue growing $his breasts, and since $he feels like a cow, plan to help $him fulfill $his image of $himself. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you drag $him to the remote surgery for an impromptu lactation implant installation. When $he comes to, $he immediately realizes $his breasts are larger than ever. As $he brings a hand to each of the full mounds, a moan laced with relief and disdain escapes $his lips; along with a strong gush of milk from $his engorged breasts. $He has been taught a harsh lesson about questioning your will, a lesson $he will be reminded of every time $he has to empty $his ever swelling breasts of their excessive milk. As with all surgery @@.red;$his health has been slightly affected.@@ <<set $activeSlave.trust -= 5, $activeSlave.lactation = 2, $activeSlave.health -= 10>> <<set $cash -= $surgeryCost>> <</replace>> <</link>> <</if>> //This option will cost <<print cashFormat($surgeryCost)>>// <<if canGetPregnant($activeSlave) && $PC.dick == 1>> -<<link "Give her bust a boost by knocking her up">> +<<link "Give $his bust a boost by knocking $him up">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that you're resolved to continue growing $his breasts, and plan to increase their rate of growth in the coming months. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you easily tip her off balance and to the ground; mounting her + You announce that you're resolved to continue growing $his breasts, and plan to increase their rate of growth in the coming months. $He's experienced enough to know not to question what that means, just to @@.gold;fear the intent behind it.@@ $He's right to worry, as you easily tip $him off balance and to the ground; mounting $his <<if $activeSlave.mpreg == 1>> <<if $activeSlave.anus == 0>> virgin @@ -18115,13 +18117,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> pussy <</if>> - as $he struggles to lift her swollen breasts from the floor. + as $he struggles to lift $his swollen breasts from the floor. <<if $activeSlave.mpreg == 1>> <<= AnalVCheck(10)>> <<else>> <<= VaginalVCheck(10)>> <</if>> - $He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow her into her distended breasts until you cum deep inside her fertile hole. You return to your desk, leaving $him to sob into her unwelcome bust as cum pools from her abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch $him in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed her coming child, $he will likely be too distracted by her swelling middle to complain about their added weight. + $He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow $him into $his distended breasts until you cum deep inside $his fertile hole. You return to your desk, leaving $him to sob into $his unwelcome bust as cum pools from $his abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch $his in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed $his coming child, $he will likely be too distracted by $his swelling middle to complain about their added weight. <<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>> <<= knockMeUp($activeSlave, 100, 2, -1, 1)>> <</replace>> @@ -18130,9 +18132,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Praise $his breasts and reassure $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You decide to reassure $him, and sit her on your lap<<if $PC.belly >= 100000>> as best $he can<</if>>. + You decide to reassure $him, and sit $him on your lap<<if $PC.belly >= 100000>> as best $he can<</if>>. <<if $activeSlave.height > 185>> - $He's a big $girl, and has trouble fitting there, but you put her there anyway, enjoying the absurdity. + $He's a big $girl, and has trouble fitting there, but you put $him there anyway, enjoying the absurdity. <<elseif $activeSlave.bellyPreg >= 1500>> $His pregnancy is very apparent to you in this posture, and $he's quite aware of it too. <<elseif $activeSlave.butt > 3>> @@ -18140,7 +18142,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He's hesitant, but obeys anyway. <</if>> - Pulling her back against your + Pulling $him back against your <<if $PC.belly > 1500>> pregnant belly, <<elseif $PC.boobs == 1>> @@ -18150,7 +18152,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> muscular chest, <</if>> - you reach around $him and take over the breast-cradling responsibilities. You say nothing for a while, just hefting her weighty udders, rolling them from side to side slightly. After letting her get used to the gentle treatment, you tell $him that you're her owner, and you find big breasts very attractive. You tell $him that you understand that they can be uncomfortable at times, but you expect $him to tolerate that without complaint. It isn't easy to be pretty, but it's easier to be a pretty slave than to be a homely one. This last point affects $him, and $he seems to @@.mediumaquamarine;take heart in the idea that you're improving her,@@ at least from your perspective. After all, $he's sitting atop <<if $PC.dick == 1>>your hard dick, which $he can definitely feel<<else>>your hot cunt, which $he can probably detect<</if>> through your clothes. $He does understand that having her <<= WrittenMaster()>> enjoy touching her boobs will be advantageous to $him. + you reach around $him and take over the breast-cradling responsibilities. You say nothing for a while, just hefting $his weighty udders, rolling them from side to side slightly. After letting $him get used to the gentle treatment, you tell $him that you're $his owner, and you find big breasts very attractive. You tell $him that you understand that they can be uncomfortable at times, but you expect $him to tolerate that without complaint. It isn't easy to be pretty, but it's easier to be a pretty slave than to be a homely one. This last point affects $him, and $he seems to @@.mediumaquamarine;take heart in the idea that you're improving $him,@@ at least from your perspective. After all, $he's sitting atop <<if $PC.dick == 1>>your hard dick, which $he can definitely feel<<else>>your hot cunt, which $he can probably detect<</if>> through your clothes. $He does understand that having $his <<= WrittenMaster($activeSlave)>> enjoy touching $his boobs will be advantageous to $him. <<set $activeSlave.trust += 5>> <<if $activeSlave.lactation > 0>> <<set $activeSlave.lactationDuration = 2>> @@ -18165,8 +18167,8 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Weight $his breasts as punishment">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that you're resolved to continue growing $his breasts, and they need to be stretched out to accommodate the growth. The statement is absurd, but $he's experienced enough to know not to question it, and to @@.gold;be afraid.@@ $He's right to fear. You secure her with $his hands over her head, using the wrist shackles placed high on the office walls for this purpose. Then you - <<if $activeSlave.nipples == "inverted">>cruelly pop her inverted nipples out and<</if>> + You announce that you're resolved to continue growing $his breasts, and they need to be stretched out to accommodate the growth. The statement is absurd, but $he's experienced enough to know not to question it, and to @@.gold;be afraid.@@ $He's right to fear. You secure $him with $his hands over $his head, using the wrist shackles placed high on the office walls for this purpose. Then you + <<if $activeSlave.nipples == "inverted">>cruelly pop $his inverted nipples out and<</if>> <<if $activeSlave.nipplesPiercing == 0>> attach a clip to each of <<if $activeSlave.nipples == "inverted">>them<<else>>$his nipples<</if>>. The clips aren't painful, not yet, but they're very robust, and the reason is immediately apparent to $him. <<elseif $activeSlave.nipplesPiercing == 1>> @@ -18174,22 +18176,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> give each of $his nipple rings a tug to ensure it's ready to bear some serious pulling. <</if>> - You hang a weight from each, eliciting a moan of pain. $activeSlave.slaveName struggles against the restraints that hold $his hands up high, desperately trying to find a comfortable way to stand, but it's impossible and the motion sets her udders swaying, making the weights pulling at $his nipples even more uncomfortable. + You hang a weight from each, eliciting a moan of pain. $activeSlave.slaveName struggles against the restraints that hold $his hands up high, desperately trying to find a comfortable way to stand, but it's impossible and the motion sets $his udders swaying, making the weights pulling at $his nipples even more uncomfortable. <<switch $activeSlave.boobShape>> <<case "perky">> $His perky tits do their best to retain their pointy shape despite the tugging. <<case "downward-facing">> - The nipples that cap her downward-facing udders are tugged even farther towards the ground. + The nipples that cap $his downward-facing udders are tugged even farther towards the ground. <<case "torpedo-shaped">> $His torpedoes are long enough that the weights are a long way from $his chest, allowing them to tug $his nipples a long way down. <<case "wide-set">> $His wide-set its are dragged together for once as their nipples are tugged downward. <<case "saggy">> - $His poor, saggy boobs cause her real trouble, letting the weights tug $his nipples quite a ways down. + $His poor, saggy boobs cause $his real trouble, letting the weights tug $his nipples quite a ways down. <<default>> $His heavy breasts let the weights tug $his nipples down to face at the ground. <</switch>> - The first time $he tries begging, you add another weight to each breast, which drives her over the edge into open crying. You leave her there for a while, letting anyone who comes into the office experience the sight of $activeSlave.slaveName alternately sobbing, trying not to sob because doing so jiggles her boobs, and then sobbing again because her boobs hurt. + The first time $he tries begging, you add another weight to each breast, which drives $him over the edge into open crying. You leave $him there for a while, letting anyone who comes into the office experience the sight of $activeSlave.slaveName alternately sobbing, trying not to sob because doing so jiggles $his boobs, and then sobbing again because $his boobs hurt. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> @@ -18200,14 +18202,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Give $him the surgery">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You schedule her for the surgery. Like all invasive procedures, it @@.red;affects $his health,@@ but @@.lime;$he's effectively an anal virgin again.@@ $He @@.mediumaquamarine;trusts you a bit more@@ for granting her request, and is eager for buttsex that's more interesting than having a hotdog thrown down her hallway. + You schedule $him for the surgery. Like all invasive procedures, it @@.red;affects $his health,@@ but @@.lime;$he's effectively an anal virgin again.@@ $He @@.mediumaquamarine;trusts you a bit more@@ for granting $his request, and is eager for buttsex that's more interesting than having a hotdog thrown down $his hallway. <<set $activeSlave.trust += 3, $activeSlave.health -= 10, $activeSlave.anus = 0, $cash -= $surgeryCost>> <<if $activeSlave.analSkill > 10>><<set $activeSlave.analSkill -= 10>><</if>> <br><br> <span id="result2"> <<link "Break $him in again">> <<replace "#result2">> - $His ass is yours all over again. As soon as her newly tight rosebud has recovered enough, you visit $him in the surgery, without even waiting for $him to leave it. You flip her over on the recovery bed and force <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up $his butt while $he wriggles with eager discomfort, squealing in pretended horror. $His renewed anal virginity was very brief; $his ass is once again @@.lime;broken in for penetration.@@ For her part, $he @@.hotpink;thoroughly enjoyed losing her anal cherry,@@ again. + $His ass is yours all over again. As soon as $his newly tight rosebud has recovered enough, you visit $him in the surgery, without even waiting for $him to leave it. You flip $him over on the recovery bed and force <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up $his butt while $he wriggles with eager discomfort, squealing in pretended horror. $His renewed anal virginity was very brief; $his ass is once again @@.lime;broken in for penetration.@@ For $his part, $he @@.hotpink;thoroughly enjoyed losing $his anal cherry,@@ again. <<set $activeSlave.devotion += 5, $activeSlave.analCount++, $analTotal++, $activeSlave.anus = 1>> <<= knockMeUp($activeSlave, 5, 1, -1, 1)>> <</replace>> @@ -18218,13 +18220,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Fill $his gape">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that you can fill $him just fine, and you'll make $him feel it just as though $he were an anal virgin again. $He looks simultaneously intrigued and apprehensive<<if !canDoAnal($activeSlave)>> as you remove her anal chastity<</if>>, but starts to get to $his knees like a good anal slut. You stop her before $he can + You announce that you can fill $him just fine, and you'll make $him feel it just as though $he were an anal virgin again. $He looks simultaneously intrigued and apprehensive<<if !canDoAnal($activeSlave)>> as you remove $his anal chastity<</if>>, but starts to get to $his knees like a good anal slut. You stop $him before $he can <<if $activeSlave.belly >= 300000>> lean onto $his _belly belly <<else>> face the ground <</if>> - and offer you $his ass. You're going to need some lubricant for this, but the $desc's saliva should be plenty. As you <<if $PC.dick == 1>>aim your dick<<else>>swiftly pull on a strap-on and aim it<</if>> at her face, $he realizes that her spit is going to be the only relief her fucked-out butt is going to have for whatever you're planning. $He blows you with desperate eagerness, doing her absolute best to coat your<<if $PC.dick != 1>> weapon's<</if>> shaft with as much saliva as $he can. You pull it free of $his mouth with a wet pop, and $he immediately faces the floor, cocking $his hips and spreading her huge asspussy for you. + and offer you $his ass. You're going to need some lubricant for this, but the $desc's saliva should be plenty. As you <<if $PC.dick == 1>>aim your dick<<else>>swiftly pull on a strap-on and aim it<</if>> at $his face, $he realizes that $his spit is going to be the only relief $his fucked-out butt is going to have for whatever you're planning. $He blows you with desperate eagerness, doing $his absolute best to coat your<<if $PC.dick != 1>> weapon's<</if>> shaft with as much saliva as $he can. You pull it free of $his mouth with a wet pop, and $he immediately faces the floor, cocking $his hips and spreading $his huge asspussy for you. <br><br> After watching the way it contracts slightly as $he breathes hard for a while, letting $him feel the apprehension, you shove <<if $PC.dick == 1>>yourself<<else>>the phallus<</if>> inside $him. $He takes it without any reaction at all, and $his gaped hole cups it only loosely. Grabbing $him by the shoulders, you haul $his torso up so it's against your <<if $PC.belly >= 5000>> @@ -18236,7 +18238,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> muscular chest, <</if>> - and push three of your fingers into $his mouth. $He gags, surprised, but you shove them in farther, collecting as much spit as you can reach. Then you let her fall back down again. $He knows what you're going to do, and moans as you slide your fingers in alongside your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>>, taking huge shuddering gasps as $he feels $his sphincter accommodate the abuse. Slowly, you slide your thumb in as well, pushing it around <<if $PC.dick == 1>>your stiff prick<<else>>the unyielding phallus<</if>> until you're holding it as if masturbating. And then you masturbate. Inside $his ass. $He begins to scream, but manages to prevent $himself from resisting. $He does $his desperate best to take your crushing abuse of $his worn-out hole, and collapses when you finally orgasm and let her go. $He does $his best to offer some sort of @@.hotpink;submissive thanks,@@ but is barely coherent, and crawls off to shower again, $his lewd sphincter pulsing as $he goes. + and push three of your fingers into $his mouth. $He gags, surprised, but you shove them in farther, collecting as much spit as you can reach. Then you let $him fall back down again. $He knows what you're going to do, and moans as you slide your fingers in alongside your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>>, taking huge shuddering gasps as $he feels $his sphincter accommodate the abuse. Slowly, you slide your thumb in as well, pushing it around <<if $PC.dick == 1>>your stiff prick<<else>>the unyielding phallus<</if>> until you're holding it as if masturbating. And then you masturbate. Inside $his ass. $He begins to scream, but manages to prevent $himself from resisting. $He does $his desperate best to take your crushing abuse of $his worn-out hole, and collapses when you finally orgasm and let $him go. $He does $his best to offer some sort of @@.hotpink;submissive thanks,@@ but is barely coherent, and crawls off to shower again, $his lewd sphincter pulsing as $he goes. <<set $activeSlave.devotion += 5>> <<= AnalVCheck()>> <<EventFetish $activeSlave "buttslut">> @@ -18280,7 +18282,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Follow $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $His sheer joie de vivre is irresistible, and it certainly draws you out of your office. You're not slow, and of course you know where $he's going, so you catch up quickly. $He gives you the careful measuring glance of a devoted sex slave who's checking whether $his owner wants to fuck her right now, and correctly decides that that isn't your intent, at least right this minute. Instead, you continue the direction $he was going, and $he follows. "<<Master>>," $he <<say>>s hesitantly, "I hope that wa<<s>> an okay thing for me to do." You assure her it was. "Thank<<s>>, <<Master>>," $he beams, grinning like an idiot. Smiling at $his infectious enthusiasm for life, you ask $him why $he's so happy this morning. $He looks momentarily perplexed<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>, not a common look for a slave as smart as $him<</if>>. "I don't know! I just woke up thi<<s>> morning feeling really, really good. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>I'm sure the fact that I'm benefiting from incredibly advanced medi<<c>>ine ha<<s>> <<s>>omething to do with it; thank you very much for that, <<Master>>. Other than that,<</if>> + $His sheer joie de vivre is irresistible, and it certainly draws you out of your office. You're not slow, and of course you know where $he's going, so you catch up quickly. $He gives you the careful measuring glance of a devoted sex slave who's checking whether $his owner wants to fuck $him right now, and correctly decides that that isn't your intent, at least right this minute. Instead, you continue the direction $he was going, and $he follows. "<<Master>>," $he <<say>>s hesitantly, "I hope that wa<<s>> an okay thing for me to do." You assure $him it was. "Thank<<s>>, <<Master>>," $he beams, grinning like an idiot. Smiling at $his infectious enthusiasm for life, you ask $him why $he's so happy this morning. $He looks momentarily perplexed<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>, not a common look for a slave as smart as $him<</if>>. "I don't know! I just woke up thi<<s>> morning feeling really, really good. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>>I'm sure the fact that I'm benefiting from incredibly advanced medi<<c>>ine ha<<s>> <<s>>omething to do with it; thank you very much for that, <<Master>>. Other than that,<</if>> I ju<<s>>t feel happy." This has to be some sort of milestone for $him, and for you, and maybe for slavery in general: if $he can be this pleased with life, something must be going right. You walk $him to where $he's going <<switch $activeSlave.assignment>> <<case "whore">>(one of the arcology's nicer streets, where $he'll spend the day selling $his body), @@ -18322,24 +18324,24 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Play with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You're not a slave, so you can't understand her inner workings through direct empathy. But in your experience, a quick orgasm never fails to make a good day better. You're not slow, and of course you know where $he's going, so you catch up to her on quiet feet and + You're not a slave, so you can't understand $his inner workings through direct empathy. But in your experience, a quick orgasm never fails to make a good day better. You're not slow, and of course you know where $he's going, so you catch up to $him on quiet feet and <<if $activeSlave.butt > 12>> - sink both hands into her immense rear. + sink both hands into $his immense rear. <<elseif $activeSlave.butt > 6>> - set her enormous ass jiggling with a smack. + set $his enormous ass jiggling with a smack. <<elseif $activeSlave.butt > 3>> - give her womanly bottom a squeeze. + give $his womanly bottom a squeeze. <<else>> - pinch her cute rear. + pinch $his cute rear. <</if>> $He squeals and whirls around, <<if $activeSlave.energy > 60>>eagerly flinging $himself into your arms, ready for some action<<else>>trustingly throwing $himself into your arms<</if>>. Feeling spontaneous, you decide to get everyone off quickly and cleanly, right here. <<switch $eventSlave.fetish>> <<case "submissive">> - You place a dominant hand around her throat, firmly but not harshly, almost sending the submissive to $his knees. Your other hand + You place a dominant hand around $his throat, firmly but not harshly, almost sending the submissive to $his knees. Your other hand <<case "cumslut">> You kiss $him, sliding your tongue all the way into $his mouth. $He melts into you, rhapsodically entranced by the intense oral stimulation, and $his tongue presses against yours with frankly sexual significance. Your hand <<case "humiliation">> - Slaves are constantly passing the two of you, and you constantly turn $him to show $his body to each of them, spreading $him to display her most intimate parts. $His cheeks flush with arousal and delicious shame. Your hand + Slaves are constantly passing the two of you, and you constantly turn $him to show $his body to each of them, spreading $him to display $his most intimate parts. $His cheeks flush with arousal and delicious shame. Your hand <<case "buttslut">> You slide a hand all the way under $him, pulling the flesh of $his buttock to one side and then nestling possessive fingers over $his anus, teasing and stimulating, but not penetrating. Your other hand <<case "boobs">> @@ -18400,17 +18402,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You speak from where you are, and without preamble, startling both slaves badly. Doing their best to recover, they listen as you tell $activeSlave.slaveName that $he has a good, praiseworthy outlook on life as a sex slave. <<if $activeSlave.energy > 80>> - $His extreme appetite for sex will serve her well. It's important to love what you do, and if $he wakes up every morning wanting to get fucked, $he'll enjoy $his life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>. + $His extreme appetite for sex will serve $him well. It's important to love what you do, and if $he wakes up every morning wanting to get fucked, $he'll enjoy $his life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>. <<elseif $activeSlave.fetish == "humiliation">> - $He should feel lucky to have a fetish for public use. It's important to love what you do, and if being openly passed around gets her off, $he'll enjoy her life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>. + $He should feel lucky to have a fetish for public use. It's important to love what you do, and if being openly passed around gets $him off, $he'll enjoy $his life as a <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>slave prostitute<<else>>public slut<</if>>. <<elseif $activeSlave.devotion > 50>> - It's great that $he's internalized her role, and wants to do well. As long as $he wants to perform well and applies $himself, you're confident that $he'll continue to improve and become a better and more valuable slave. + It's great that $he's internalized $his role, and wants to do well. As long as $he wants to perform well and applies $himself, you're confident that $he'll continue to improve and become a better and more valuable slave. <<elseif $activeSlave.devotion > 20>> - $His obedience is commendable. You understand that $he struggles with her life as an involuntary sex object at times. $He'll learn to do better, and as $he improves, $he'll be all right as long as $he obeys you and does her best. + $His obedience is commendable. You understand that $he struggles with $his life as an involuntary sex object at times. $He'll learn to do better, and as $he improves, $he'll be all right as long as $he obeys you and does $his best. <<else>> - To describe $his situation bluntly, the best possible approach for her is to obey you and do her best. There's not really any possible outcome in which slaves can lose out by doing their best to be useful and valuable. It's in her interest to do her best. + To describe $his situation bluntly, the best possible approach for $him is to obey you and do $his best. There's not really any possible outcome in which slaves can lose out by doing their best to be useful and valuable. It's in $his interest to do $his best. <</if>> - "Yes, <<Master>>," they chorus automatically. You turn and go. $activeSlave.slaveName is taken a bit aback by your apparent omnipresence in the penthouse, but reminds $himself that your guidance seemed straightforward and genuine. $He's @@.mediumaquamarine;confirmed in her understanding@@ of what it means to be a good $desc. + "Yes, <<Master>>," they chorus automatically. You turn and go. $activeSlave.slaveName is taken a bit aback by your apparent omnipresence in the penthouse, but reminds $himself that your guidance seemed straightforward and genuine. $He's @@.mediumaquamarine;confirmed in $his understanding@@ of what it means to be a good $desc. <<set $activeSlave.trust += 5>> <</replace>> <</link>> @@ -18418,7 +18420,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<setNonlocalPronouns $seeDicks>> <<EventNameDelink $activeSlave>> <<replace "#result">> - The slaves continue their gossip until $activeSlave.slaveName feels a pair of <<if $PC.title == 1>>strong<<else>>firm, feminine<</if>> hands grip the sides of her + The slaves continue their gossip until $activeSlave.slaveName feels a pair of <<if $PC.title == 1>>strong<<else>>firm, feminine<</if>> hands grip the sides of $his <<if $activeSlave.belly >= 150000>> _belly distended <<elseif $activeSlave.weight > 95>> @@ -18468,27 +18470,27 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> and pull $him back into your arms. The other slave watches silently, awaiting some cue as to whether _heU's to join in or return to breakfast; you give _himU a flick of your chin, and _heU turns away, leaving you with $activeSlave.slaveName, embracing among the eating slaves. <br><br> - You whisper into her ear that you think $he's attractive, <<if $PC.dick == 1>>and point out that $he can feel the proof between $his buttocks. You're hard, and your stiff prick is poking $him in the rear. $He gasps and shifts a little, and you nestle your dick even closer into the warm place between $his legs and ass.<<else>>and tell $him that you can prove it. You grab one of $his hands and pull it around behind $him, between you, making $him feel your pussy. $He gasps at how wet it is.<</if>> "An old <<s>>lave like me, <<Master>>?" $he echoes in a small voice. An old slave like $him, you confirm, and tell $him that right now, + You whisper into $his ear that you think $he's attractive, <<if $PC.dick == 1>>and point out that $he can feel the proof between $his buttocks. You're hard, and your stiff prick is poking $him in the rear. $He gasps and shifts a little, and you nestle your dick even closer into the warm place between $his legs and ass.<<else>>and tell $him that you can prove it. You grab one of $his hands and pull it around behind $him, between you, making $him feel your pussy. $He gasps at how wet it is.<</if>> "An old <<s>>lave like me, <<Master>>?" $he echoes in a small voice. An old slave like $him, you confirm, and tell $him that right now, <<if $PC.dick == 1 && (canDoVaginal($activeSlave) || canDoAnal($activeSlave))>> <<if canDoVaginal($activeSlave)>> - you've decided to fuck $his pussy. $He starts at the sudden vulgarity, even with your cock resting against the soft skin between the bottom of $his vulva and $his anus, and shudders with sudden pleasure as you use a hand to guide yourself inside her welcoming channel. + you've decided to fuck $his pussy. $He starts at the sudden vulgarity, even with your cock resting against the soft skin between the bottom of $his vulva and $his anus, and shudders with sudden pleasure as you use a hand to guide yourself inside $his welcoming channel. <<= VaginalVCheck()>> <<else>> $his ass is yours. $He starts at the sudden vulgarity, even though hearing that the cock that's pressing against $his butt will be going inside it soon can't be that surprising. $He cocks $his hips obediently, letting you force your dick up $his asshole. <<= AnalVCheck()>> <</if>> - You take her standing, + You take $him standing, <<else>> - some oral sex from a slave like her sounds just right. You push $him to $his knees and + some oral sex from a slave like $him sounds just right. You push $him to $his knees and <<if $PC.dick == 1>> push your dick into $his mouth, <<else>> hold $his mouth to your cunt, <</if>> - taking your pleasure from her + taking your pleasure from $him <<set $activeSlave.oralCount++, $oralTotal++>> <</if>> - right there among your breakfasting slaves, who try to ignore you or watch with appreciation, according to their own natures. When you're finished, you <<if $PC.dick == 1>>spin her around and kiss her,<<else>>pull her up to her feet and kiss $him, tasting yourself on $his lips and<</if>> making sure $he knows @@.hotpink;you appreciate her mature body@@ just as much as <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>her customers do<<else>>your citizens do<</if>>. + right there among your breakfasting slaves, who try to ignore you or watch with appreciation, according to their own natures. When you're finished, you <<if $PC.dick == 1>>spin $him around and kiss $him,<<else>>pull $him up to $his feet and kiss $him, tasting yourself on $his lips and<</if>> making sure $he knows @@.hotpink;you appreciate $his mature body@@ just as much as <<if $activeSlave.assignment == "whore" || $activeSlave.assignment == "work in the brothel">>$his customers do<<else>>your citizens do<</if>>. <<set $activeSlave.devotion += 5>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0) && $PC.dick == 1>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0) && $PC.dick == 1>> //This option will take anal virginity//<</if>> @@ -18498,7 +18500,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Punish $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He obviously knows that breaking down like this would displease you, but you patiently explain that it's against the rules anyway. $He cries harder, nodding through her tears. $He knows that interrupting you to beg would be profoundly stupid, so $he clasps $his hands in wordless submission. You tell $him that $he's to keep $himself under control; if $he fails, $he will be punished. Since $he failed, $he will now suffer her standard punishment, and be + $He obviously knows that breaking down like this would displease you, but you patiently explain that it's against the rules anyway. $He cries harder, nodding through $his tears. $He knows that interrupting you to beg would be profoundly stupid, so $he clasps $his hands in wordless submission. You tell $him that $he's to keep $himself under control; if $he fails, $he will be punished. Since $he failed, $he will now suffer $his standard punishment, and be <<switch $activeSlave.standardPunishment>> <<case "confinement">> shut up in a box. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy. @@ -18513,25 +18515,25 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "chastity">> locked up in chastity. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy. "I c-can't," $he moans. "I can't take it. I can't <<s>>tand it." As you lock the chastity onto $him, $he sobs inconsolably, knowing that any arousal will be torturous until $he's released. <<default>> - gagged, since that's the appropriate castigation for failure to control $his mouth and deportment. $He tries to behave, but @@.gold;breaks down@@ as you slide a dildo gag into her throat, choking and struggling to breathe as $he tries to cry past it. + gagged, since that's the appropriate castigation for failure to control $his mouth and deportment. $He tries to behave, but @@.gold;breaks down@@ as you slide a dildo gag into $his throat, choking and struggling to breathe as $he tries to cry past it. <</switch>> - The thing $he's most frightened of is that $he won't be able to control her fear in the future, and will continue to suffer. + The thing $he's most frightened of is that $he won't be able to control $his fear in the future, and will continue to suffer. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> <<if $dairyRestraintsSetting == 2>> -<br><<link "Threaten her with the industrial Dairy">> +<br><<link "Threaten $him with the industrial Dairy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You grab $him by the scruff of her neck and drag her down to $dairyName. $He tries to control $himself, but breaks down in tears when you haul $him to a stop, forcing $him to get a good <<if canSee($activeSlave)>>look at the rows of bodies being<<else>>listen of the sound of rows of bodies being<</if>> mercilessly milked. You explain that if $he continues to fail to control $himself, your patience with her will eventually expire, and you'll be forced to immure her here. <<if canSee($activeSlave)>>Indicating<<else>>Facing her towards<</if>> a slave who's being + You grab $him by the scruff of $his neck and drag $him down to $dairyName. $He tries to control $himself, but breaks down in tears when you haul $him to a stop, forcing $him to get a good <<if canSee($activeSlave)>>look at the rows of bodies being<<else>>listen of the sound of rows of bodies being<</if>> mercilessly milked. You explain that if $he continues to fail to control $himself, your patience with $his will eventually expire, and you'll be forced to immure $him here. <<if canSee($activeSlave)>>Indicating<<else>>Facing $him towards<</if>> a slave who's being <<if ($activeSlave.balls > 0) && ($dairyStimulatorsSetting == 2)>> - cockmilked by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as a dildo the size of her forearm slides in and out of the slave's rectum, pounding it harder and harder until the slave stiffens and the transparent tubing coming off its cockhead whitens with cum. As the slave relaxes slightly in the restrains, the powerful milkers continue their relentless tugging at her gigantic udders.<<if !canSee($activeSlave)>> As the dildo begins its efforts to loose a second cumming, you grab the horrified slave's hands and push them to the cow's throbbing dick just in time for $him to feel the ejaculate forced out by its unwilling orgasm.<</if>> You run a hand down to $activeSlave.slaveName's own balls and, squeezing them slightly, tell $him that unless $he wants $his ass ruined by constant machine rape, $his tits turned into immobilizing milk factories and $his balls drained of every last drop of seed, + cockmilked by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as a dildo the size of $his forearm slides in and out of the slave's rectum, pounding it harder and harder until the slave stiffens and the transparent tubing coming off its cockhead whitens with cum. As the slave relaxes slightly in the restrains, the powerful milkers continue their relentless tugging at $his gigantic udders.<<if !canSee($activeSlave)>> As the dildo begins its efforts to loose a second cumming, you grab the horrified slave's hands and push them to the cow's throbbing dick just in time for $him to feel the ejaculate forced out by its unwilling orgasm.<</if>> You run a hand down to $activeSlave.slaveName's own balls and, squeezing them slightly, tell $him that unless $he wants $his ass ruined by constant machine rape, $his tits turned into immobilizing milk factories and $his balls drained of every last drop of seed, <<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 2)>> - used for reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as a dildo the size of her forearm fucks the slave's enormous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his cervix. The slave is gigantically pregnant. You tell $activeSlave.slaveName that this is the vaginal treatment $he can expect when pregnant; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the dildo retracts from the cow's gaping cunt, you grab the horrified slave's hands and push them to its gravid middle just in time for $him to feel a massive contraction.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants her womb converted into an industrial component, + used for reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as a dildo the size of $his forearm fucks the slave's enormous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his cervix. The slave is gigantically pregnant. You tell $activeSlave.slaveName that this is the vaginal treatment $he can expect when pregnant; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the dildo retracts from the cow's gaping cunt, you grab the horrified slave's hands and push them to its gravid middle just in time for $him to feel a massive contraction.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants $his womb converted into an industrial component, <<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 3)>> - used for mass reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as a dildo the size of her forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against her tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within her are visibly forced to bulge the skin covering her straining womb by their sisters. You tell $activeSlave.slaveName that this is the treatment $he can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the cow takes the huge dildo absentmindedly, you grab the horrified slave's hands and push them to its gravid middle forcing $him to feel the children squirming within its packed womb. $He squeals in terror at the feeling of so many babies moving under her fingers.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants to become an industrial breeder, + used for mass reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as a dildo the size of $his forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within $his are visibly forced to bulge the skin covering $his straining womb by their sisters. You tell $activeSlave.slaveName that this is the treatment $he can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the cow takes the huge dildo absentmindedly, you grab the horrified slave's hands and push them to its gravid middle forcing $him to feel the children squirming within its packed womb. $He squeals in terror at the feeling of so many babies moving under $his fingers.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants to become an industrial breeder, <<else>> - drained of her milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to her absurd nipples tug and pull with industrial power. $He can't <<if canSee($activeSlave)>>look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso<<else>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<</if>>. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.<<if !canSee($activeSlave)>> You force the horrified slave's hands onto its breasts so that $he may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.<</if>> You run a hand over to $activeSlave.slaveName's own breast and, teasing $his nipple, tell $him that unless $he wants to experience that twice a day, + drained of $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<else>>listens<</if>> in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to $his absurd nipples tug and pull with industrial power. $He can't <<if canSee($activeSlave)>>look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso<<else>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<</if>>. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.<<if !canSee($activeSlave)>> You force the horrified slave's hands onto its breasts so that $he may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.<</if>> You run a hand over to $activeSlave.slaveName's own breast and, teasing $his nipple, tell $him that unless $he wants to experience that twice a day, <</if>> $he had better behave $himself. $He nods furiously, @@.gold;terrified beyond the ability to speak.@@ <<set $activeSlave.trust -= 8>> @@ -18542,7 +18544,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Threaten to convert $him into a Fuckdoll">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order a Fuckdoll brought to your office. $activeSlave.slaveName <<if canSee($activeSlave)>>watches it totter in<<elseif canHear($activeSlave)>>listens to the clicks of its approaching heels and the ominous squeaking of its latex shell<<else>>feels the uncomfortable latex skin of its suit when it brushes up against $him<</if>>, automatically following the tugs on its leash and the tonal commands passed by its suit. $He already understands the implicit threat, and $he shivers uncontrollably, @@.gold;almost falling to $his knees in fear.@@ Not content with that, you tell $him that $he's trying your patience with her behavior. If $he doesn't control $himself better in the future, you'll give up on $him and convert her into a Fuckdoll. At the spoken threat $activeSlave.slaveName does collapse, but you order $him to get back to her feet and <<if canSee($activeSlave)>>watch<<else>>pay attention<</if>>. $He does, shakily, tears streaming down her face as you put the Fuckdoll on its all fours, as though it were about to take dick. Its <<if $activeSlave.vagina > -1>>holes are pointed straight at $activeSlave.slaveName's face, <<if canSee($activeSlave)>>and $he can't avoid seeing how loose and used they look<<else>>grab both $his hands, and force one into each of its blown out holes. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><<else>>rear hole is pointed straight at $activeSlave.slaveName's face,<<if canSee($activeSlave)>> and $he can't avoid seeing how loose and used it looks<<else>>grab both $his hands, and force them into its blown out ass. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><</if>>. Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but <<if canSee($activeSlave)>>a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force<<else>>the sudden, pitiful attempt to clamp down on $his arms makes it perfectly clear that you just forced it to undergo extreme anguish<</if>>. $activeSlave.slaveName is almost incapacitated by terror. + You order a Fuckdoll brought to your office. $activeSlave.slaveName <<if canSee($activeSlave)>>watches it totter in<<elseif canHear($activeSlave)>>listens to the clicks of its approaching heels and the ominous squeaking of its latex shell<<else>>feels the uncomfortable latex skin of its suit when it brushes up against $him<</if>>, automatically following the tugs on its leash and the tonal commands passed by its suit. $He already understands the implicit threat, and $he shivers uncontrollably, @@.gold;almost falling to $his knees in fear.@@ Not content with that, you tell $him that $he's trying your patience with $his behavior. If $he doesn't control $himself better in the future, you'll give up on $him and convert $him into a Fuckdoll. At the spoken threat $activeSlave.slaveName does collapse, but you order $him to get back to $his feet and <<if canSee($activeSlave)>>watch<<else>>pay attention<</if>>. $He does, shakily, tears streaming down $his face as you put the Fuckdoll on its all fours, as though it were about to take dick. Its <<if $activeSlave.vagina > -1>>holes are pointed straight at $activeSlave.slaveName's face, <<if canSee($activeSlave)>>and $he can't avoid seeing how loose and used they look<<else>>grab both $his hands, and force one into each of its blown out holes. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><<else>>rear hole is pointed straight at $activeSlave.slaveName's face,<<if canSee($activeSlave)>> and $he can't avoid seeing how loose and used it looks<<else>>grab both $his hands, and force them into its blown out ass. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><</if>>. Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but <<if canSee($activeSlave)>>a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force<<else>>the sudden, pitiful attempt to clamp down on $his arms makes it perfectly clear that you just forced it to undergo extreme anguish<</if>>. $activeSlave.slaveName is almost incapacitated by terror. <<set $activeSlave.trust -= 8>> <</replace>> <</link>> @@ -18550,7 +18552,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Comfort $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You rise from behind your desk, and $activeSlave.slaveName collapses to the floor, sure that $he's about to be severely punished. $He's shocked to feel your arms encircle her as you kneel down beside $him and embrace her huddled form. You pull her head + You rise from behind your desk, and $activeSlave.slaveName collapses to the floor, sure that $he's about to be severely punished. $He's shocked to feel your arms encircle $him as you kneel down beside $him and embrace $his huddled form. You pull $his head <<if $PC.boobsBonus > 2>> against your enormous, <<if $PC.boobsImplant == 1>>hard<<else>>soft<</if>> breasts, <<elseif $PC.boobsBonus == 2>> @@ -18564,7 +18566,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> into your shoulder, <</if>> - stroking it reassuringly and murmuring kindness. $He clings to you, mostly for lack of any other comfort in the whole world, and sobs convulsively, @@.mediumaquamarine;$his terror flowing out of her@@ in a torrent as you gently rub her back. When $he's mostly cried $himself out, you tell $him that $he'll be all right. You're sure $he'll be a good slave one day. You understand that her life is hard. $He'll make mistakes, and you'll punish her for them, but that's part of slave training, and that's all right. If $he does her best, $he'll be all right. $He sniffles, cuffing tears away. "Th-thank you, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, I'll d-do my b-be<<s>>t," $he manages to <<say>>. + stroking it reassuringly and murmuring kindness. $He clings to you, mostly for lack of any other comfort in the whole world, and sobs convulsively, @@.mediumaquamarine;$his terror flowing out of $him@@ in a torrent as you gently rub $his back. When $he's mostly cried $himself out, you tell $him that $he'll be all right. You're sure $he'll be a good slave one day. You understand that $his life is hard. $He'll make mistakes, and you'll punish $him for them, but that's part of slave training, and that's all right. If $he does $his best, $he'll be all right. $He sniffles, cuffing tears away. "Th-thank you, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, I'll d-do my b-be<<s>>t," $he manages to <<say>>. <<set $activeSlave.trust += 5>> <</replace>> <</link>> @@ -18574,7 +18576,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Polish this">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him to polish this instead, advancing even closer. $He turns, finding your cockhead so close to her face that $his eyes cross ludicrously as they attempt to focus on it. $He does not like dicks, and obviously does not find the prospect of sucking this one appealing right now, but $he knows it's in her best interests to <<if $activeSlave.oralSkill > 10>>put her oral knowledge to work<<else>>do her best<</if>> right now. $He closes $his eyes and takes you into $his mouth, forming a seal around your cock with her + You tell $him to polish this instead, advancing even closer. $He turns, finding your cockhead so close to $his face that $his eyes cross ludicrously as they attempt to focus on it. $He does not like dicks, and obviously does not find the prospect of sucking this one appealing right now, but $he knows it's in $his best interests to <<if $activeSlave.oralSkill > 10>>put $his oral knowledge to work<<else>>do $his best<</if>> right now. $He closes $his eyes and takes you into $his mouth, forming a seal around your cock with $his <<if $activeSlave.lips > 40>> ridiculous <<elseif $activeSlave.lips > 20>> @@ -18584,7 +18586,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> disappointingly thin <</if>> - lips before starting to suck dick. Dissatisfied with $his reluctance, you order $him to open $his eyes and look up at you; $he obeys, the $activeSlave.eyeColor orbs glittering with a little moisture as $he concentrates on breathing past your penis. You ask if your cock tastes any different than usual. "Mmm hmm, M'," $he mumbles, producing a nice humming sensation against your cock. You tell $him that $he's tasting another slave's <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>. $He gags, but only slightly, and controls $himself immediately. Your dick is desensitized from vigorous use, and $he has to suck it a long time before you cup the back of her head, ram yourself all the way in, and blow your load straight down $his gullet. You tell $him $he's a good $desc. "Thank you, <<Master>>," $he <<say>>s @@.hotpink;submissively,@@ going back to $his polishing. + lips before starting to suck dick. Dissatisfied with $his reluctance, you order $him to open $his eyes and look up at you; $he obeys, the $activeSlave.eyeColor orbs glittering with a little moisture as $he concentrates on breathing past your penis. You ask if your cock tastes any different than usual. "Mmm hmm, M'," $he mumbles, producing a nice humming sensation against your cock. You tell $him that $he's tasting another slave's <<if $activeSlave.vagina > -1>>pussy<<else>>ass<</if>>. $He gags, but only slightly, and controls $himself immediately. Your dick is desensitized from vigorous use, and $he has to suck it a long time before you cup the back of $his head, ram yourself all the way in, and blow your load straight down $his gullet. You tell $him $he's a good $desc. "Thank you, <<Master>>," $he <<say>>s @@.hotpink;submissively,@@ going back to $his polishing. <<set $activeSlave.oralCount++, $oralTotal++>> <<set $activeSlave.devotion += 5>> <</replace>> @@ -18597,15 +18599,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> <<set _desc = $desc>> <</if>> - You sit yourself down in the doorway, right next to $him, and pat your thighs. $He sits on your lap, obeying despite some evident reluctance to sit atop your moist cock. It nestles easily between her lower buttocks and upper thighs, and $he gets $himself situated, doing her best to ignore the feeling of your hot hard meat, hard against her fundament. You encircle her with your arms, possessively and dominantly but not sexually, and tell $him that you're concerned about her relationship with cock. $He shifts uncomfortably. "<<S>>orry, <<Master>>, <<s>>orry I'm not better at hiding that. I should be a good _desc and not react like that. I mean, in a bad way. You <<s>>tartled me, but I don't alway<<s>> react well to dick even when I'm not <<s>>tartled. I'll try harder." This is more contrition and submission than you were expecting, and you probe further, asking her pointedly whether $he's attracted to dicks now. "N-no," $he admits, after only a moment's hesitation to remember that honesty is the most important rule for $him to follow. "No, I don't like them. But I'll do my be<<s>>t to be a good <<s>>e<<x>> <<s>>lave anyway, <<Master>>." Pleased, you tell $him that things will get easier for $him. + You sit yourself down in the doorway, right next to $him, and pat your thighs. $He sits on your lap, obeying despite some evident reluctance to sit atop your moist cock. It nestles easily between $his lower buttocks and upper thighs, and $he gets $himself situated, doing $his best to ignore the feeling of your hot hard meat, hard against $his fundament. You encircle $him with your arms, possessively and dominantly but not sexually, and tell $him that you're concerned about $his relationship with cock. $He shifts uncomfortably. "<<S>>orry, <<Master>>, <<s>>orry I'm not better at hiding that. I should be a good _desc and not react like that. I mean, in a bad way. You <<s>>tartled me, but I don't alway<<s>> react well to dick even when I'm not <<s>>tartled. I'll try harder." This is more contrition and submission than you were expecting, and you probe further, asking $him pointedly whether $he's attracted to dicks now. "N-no," $he admits, after only a moment's hesitation to remember that honesty is the most important rule for $him to follow. "No, I don't like them. But I'll do my be<<s>>t to be a good <<s>>e<<x>> <<s>>lave anyway, <<Master>>." Pleased, you tell $him that things will get easier for $him. <<if $activeSlave.hormoneBalance >= 50>> - The hormone treatments $he's currently taking will slowly reorient her sexuality, and eventually $he'll lust after every cock $he sees. + The hormone treatments $he's currently taking will slowly reorient $his sexuality, and eventually $he'll lust after every cock $he sees. <<elseif $activeSlave.aphrodisiacs > 0 || $activeSlave.inflationType == "aphrodisiac">> - The aphrodisiacs $he's on will make her so omnisexually horny that soon $he won't care how anyone's equipped, as long as they'll fuck $him. + The aphrodisiacs $he's on will make $him so omnisexually horny that soon $he won't care how anyone's equipped, as long as they'll fuck $him. <<elseif $activeSlave.energy > 60>> $His excellent and improving libido will eventually soften $him to all kinds of sex, with all kinds of people. <<else>> - Habit and training will get her used to dick, and eventually $he'll barely remember that $he ever had a problem with sucking a quick cock. + Habit and training will get $him used to dick, and eventually $he'll barely remember that $he ever had a problem with sucking a quick cock. <</if>> $He's a little unsure whether or not to be reassured by this, but $he's @@.mediumaquamarine;relieved $he's not in trouble.@@ <<set $activeSlave.trust += 5>> @@ -18615,15 +18617,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Rape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Sometimes there's really no need to overthink things. You reach down, grab her under the armpits, and haul her up, throwing her across your desk. $He lands on her back, and the impact drives the wind out of $him, so $he lies there, @@.gold;all possibility of resistance driven out of $him.@@ + Sometimes there's really no need to overthink things. You reach down, grab $him under the armpits, and haul $him up, throwing $him across your desk. $He lands on $his back, and the impact drives the wind out of $him, so $he lies there, @@.gold;all possibility of resistance driven out of $him.@@ <<if $activeSlave.clothes == "no clothing">> $He's already naked, so there's no need to <<else>> You <</if>> - tear the clothes off $him. You force yourself in between $his legs as $he struggles to get $his breath back, and $he gets another good look at the formidable dick that's about to be slammed inside her<<if $activeSlave.belly >= 5000>> before it disappears beneath her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<</if>>. $His eyes go wide with fear, and you enhance the effect by smacking yourself against + tear the clothes off $him. You force yourself in between $his legs as $he struggles to get $his breath back, and $he gets another good look at the formidable dick that's about to be slammed inside $his<<if $activeSlave.belly >= 5000>> before it disappears beneath $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly<</if>>. $His eyes go wide with fear, and you enhance the effect by smacking yourself against <<if canDoVaginal($activeSlave)>> - her + $his <<if $activeSlave.vagina == 0>> virgin <</if>> @@ -18633,15 +18635,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $his buttocks. <</if>> - You tell her not to worry, because you're still pretty wet from the last slave you fucked, so this shouldn't hurt too much. Then you ram your cock + You tell $him not to worry, because you're still pretty wet from the last slave you fucked, so this shouldn't hurt too much. Then you ram your cock <<if $activeSlave.vagina > 0>> inside $him. <<= VaginalVCheck()>> <<else>> - up her spasming ass. + up $his spasming ass. <<= AnalVCheck()>> <</if>> - $He whines and bucks, but $he's entirely at your mercy. $He doesn't like dicks, and to go by her facial expression as you piston in and out of $him, this experience isn't going to make her reconsider. When you fill her with cum, pull out, and let her retreat to clean $himself up, $he's relieved to go. + $He whines and bucks, but $he's entirely at your mercy. $He doesn't like dicks, and to go by $his facial expression as you piston in and out of $him, this experience isn't going to make $him reconsider. When you fill $his with cum, pull out, and let $him retreat to clean $himself up, $he's relieved to go. <<set $activeSlave.trust -= 5>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> @@ -18649,52 +18651,52 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "comfortable seat">> -<<link "Let her do what $he wants">> +<<link "let $him do what $he wants">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him to sit down if $he'd like to. $He looks at you quizzically, <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>her dim mind slowly <</if>>realizing that you're letting her choose what to do. <<if canTalk($activeSlave)>> + You tell $him to sit down if $he'd like to. $He looks at you quizzically, <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>$his dim mind slowly <</if>>realizing that you're letting $him choose what to do. <<if canTalk($activeSlave)>> "Oh, thank you, <<Master>>," $he <<say>>s, <<else>> - $He gestures her thanks, + $He gestures $his thanks, <</if>> and then makes a show of deciding. $He <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>doesn't have to pretend<<else>>cheekily pretends<</if>> to be an airheaded bimbo puzzling over how $he wants to approach a fuck, bouncing <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> - her fake tits a little, + $his fake tits a little, <<elseif $activeSlave.boobs > 4000>> - her monstrous udders heavily, + $his monstrous udders heavily, <<elseif $activeSlave.boobs > 1000>> - her heavy breasts a little, + $his heavy breasts a little, <<elseif $activeSlave.boobs > 300>> - her boobs a little, + $his boobs a little, <<else>> - on her heels, + on $his heels, <</if>> <<if $activeSlave.belly >= 5000>> - rocking her baby bump side to side seductively + rocking $his baby bump side to side seductively <<else>> wiggling $his rear side to side alluringly <</if>> - and putting a finger to her slightly parted lips as $he stares down at your <<if $PC.dick == 1>>stiff prick<<else>>strap-on<</if>>. + and putting a finger to $his slightly parted lips as $he stares down at your <<if $PC.dick == 1>>stiff prick<<else>>strap-on<</if>>. <br><br> <<set _fucked = 0>> <<if $activeSlave.fetishKnown == 1 && $activeSlave.fetish != "none">> - Finally making her decision, $he + Finally making $his decision, $he <<switch $eventSlave.fetish>> <<case "submissive">> turns around and carefully perches $himself on <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>, <<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>> - letting her weight slide it inside her wet pussy. + letting $his weight slide it inside $his wet pussy. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>> - letting her weight push it up $his asshole. + letting $his weight push it up $his asshole. <<= AnalVCheck()>> <<else>> - putting it between her thighs. + putting it between $his thighs. <</if>> - $He's not used to being on top, but $he uses $himself to service you as submissively as $he can. $He pays her own pleasure no attention at all, + $He's not used to being on top, but $he uses $himself to service you as submissively as $he can. $He pays $his own pleasure no attention at all, <<set _fucked = 1>> <<case "cumslut">> - squats down, coming face to face with <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>. <<if canTalk($activeSlave)>>"<<Master>>, I changed my mind about <<s>>itting," $he <<say>>s<<else>>$He gestures that $he changed her mind about sitting<</if>>, and licks $his lips sluttily. Then $he gives <<if $PC.dick == 1>>you<<else>>the phallus<</if>> a lusty blowjob, humming and licking happily. <<if $PC.dick == 1>>$He swallows your load hungrily,<<else>>$He helps you out of the harness with your permission and eats you out too,<</if>> + squats down, coming face to face with <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>. <<if canTalk($activeSlave)>>"<<Master>>, I changed my mind about <<s>>itting," $he <<say>>s<<else>>$He gestures that $he changed $his mind about sitting<</if>>, and licks $his lips sluttily. Then $he gives <<if $PC.dick == 1>>you<<else>>the phallus<</if>> a lusty blowjob, humming and licking happily. <<if $PC.dick == 1>>$He swallows your load hungrily,<<else>>$He helps you out of the harness with your permission and eats you out too,<</if>> <<set $activeSlave.oralCount++, $oralTotal++>> <<set _fucked = 1>> <<case "humiliation">> @@ -18706,31 +18708,31 @@ You tell her kindly that you understand, and that $he'll be trained to address t where it's lodged up $his butt. <<= AnalVCheck()>> <<else>> - where it's rubbing her intimately between her thighs. + where it's rubbing $him intimately between $his thighs. <</if>> $He gets off on their looks, <<set _fucked = 1>> <<case "buttslut">> <<if canDoAnal($activeSlave) && ($activeSlave.anus > 0)>> - turns around and shivers with pleasure as $he hilts her anal sphincter around the base of <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>. $He bounces on it happily, reaming her own ass, + turns around and shivers with pleasure as $he hilts $his anal sphincter around the base of <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>. $He bounces on it happily, reaming $his own ass, <<= AnalVCheck()>> <<else>> turns around and shivers with pleasure as $he feels <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>> slip between $his buttcheeks. $He rubs against it, happy to share $his butt with you, <</if>> <<set _fucked = 1>> <<case "boobs">> - squats down, placing <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>> <<if $activeSlave.boobs > 4000>>in the virtual hole formed in the place between $his breasts, which are so massive they rest together<<elseif $activeSlave.boobs > 1000>>in the valley between $his tits<<elseif $activeSlave.boobs > 300>>between $his breasts<<else>>against one of $his nipples<</if>>. <<if canTalk($activeSlave)>>"<<Master>>, I changed my mind about <<s>>itting," $he <<say>>s<<else>>$He gestures that $he changed her mind about sitting<</if>>, and starts giving you a boob job. $He enjoys the breast play, + squats down, placing <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>> <<if $activeSlave.boobs > 4000>>in the virtual hole formed in the place between $his breasts, which are so massive they rest together<<elseif $activeSlave.boobs > 1000>>in the valley between $his tits<<elseif $activeSlave.boobs > 300>>between $his breasts<<else>>against one of $his nipples<</if>>. <<if canTalk($activeSlave)>>"<<Master>>, I changed my mind about <<s>>itting," $he <<say>>s<<else>>$He gestures that $he changed $his mind about sitting<</if>>, and starts giving you a boob job. $He enjoys the breast play, <<set $activeSlave.mammaryCount++, $mammaryTotal++>> <<set _fucked = 1>> <<case "pregnancy">> <<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>> - turns around and lovingly lowers $his pussy onto you. <<if $PC.dick == 1>><<if $activeSlave.pregKnown == 1>>$He's already pregnant, so this isn't a direct satisfaction of her impregnation fetish, but being fucked while pregnant is almost as good as far as $he's concerned.<<elseif canGetPregnant($activeSlave)>>This might be the moment $he gets pregnant, and $he's quivering with anticipations.<<else>>$He knows $he isn't fertile, but $he's good at fantasizing.<</if>><<else>>Your strap-on might not be able to impregnate anyone, but $he's good at fantasizing.<</if>> $He rides you hungrily, + turns around and lovingly lowers $his pussy onto you. <<if $PC.dick == 1>><<if $activeSlave.pregKnown == 1>>$He's already pregnant, so this isn't a direct satisfaction of $his impregnation fetish, but being fucked while pregnant is almost as good as far as $he's concerned.<<elseif canGetPregnant($activeSlave)>>This might be the moment $he gets pregnant, and $he's quivering with anticipations.<<else>>$He knows $he isn't fertile, but $he's good at fantasizing.<</if>><<else>>Your strap-on might not be able to impregnate anyone, but $he's good at fantasizing.<</if>> $He rides you hungrily, <<= VaginalVCheck()>> <<if canImpreg($activeSlave, $PC)>> <<= knockMeUp($activeSlave, 40, 0, -1)>> <</if>> <<else>> - turns around and carefully perches $himself on <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>, putting it between her thighs. $He rides you caringly, + turns around and carefully perches $himself on <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>, putting it between $his thighs. $He rides you caringly, <</if>> <<set _fucked = 1>> <<case "dom">> @@ -18742,7 +18744,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t getting it shoved up $his butt. <<= AnalVCheck()>> <<else>> - squeezing it between her thighs. + squeezing it between $his thighs. <</if>> $He loves being on top, even if $he's the one who's getting fucked. $He rides you happily, <<set _fucked = 1>> @@ -18751,46 +18753,46 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if _fucked == 1>> and after you've <<if $PC.dick == 1>>cum<<else>>climaxed<</if>>, $he @@.mediumaquamarine;thanks you trustingly,@@ happy $he's still allowed a sexy choice with you now and then. <<else>> - <<if $activeSlave.fetishKnown == 1>>$He can't really think of how to accommodate the situation to her own preferred approach to sex,<<else>>$He isn't well versed in how her own sexual needs might fit into the situation,<</if>> so $he just services you like a good $girl. $He turns around and sits on <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>, + <<if $activeSlave.fetishKnown == 1>>$He can't really think of how to accommodate the situation to $his own preferred approach to sex,<<else>>$He isn't well versed in how $his own sexual needs might fit into the situation,<</if>> so $he just services you like a good $girl. $He turns around and sits on <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>>, <<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>> squatting to bounce $his cunt up and down on it. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>> - squatting to bounce her butthole up and down on it. + squatting to bounce $his butthole up and down on it. <<= AnalVCheck()>> <<else>> - putting it between her thighs for some intercrural sex, since her <<if $activeSlave.vagina > -1>>holes aren't<<else>>hole isn't<</if>> appropriate. + putting it between $his thighs for some intercrural sex, since $his <<if $activeSlave.vagina > -1>>holes aren't<<else>>hole isn't<</if>> appropriate. <</if>> - When $he's gotten you off, $he @@.mediumaquamarine;thanks you trustingly.@@ Even though $he wasn't able to figure out how to seat $himself in a really satisfactorily sexy way, $he's glad you gave her some agency. + When $he's gotten you off, $he @@.mediumaquamarine;thanks you trustingly.@@ Even though $he wasn't able to figure out how to seat $himself in a really satisfactorily sexy way, $he's glad you gave $him some agency. <</if>> <</replace>> <<set $activeSlave.trust += 5>> <</link>> -<br><<link "Have her service you while you work">> +<br><<link "Have $him service you while you work">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to sit on your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> and get you off like a good $girl, but not to disturb you while you're working. $He <<if canTalk($activeSlave)>>shuts up immediately<<else>>obediently drops $his hands to her sides and stops communicating with them<</if>>, and approaches you carefully. Meanwhile, you go back to your tablet, ignoring her completely. $He gingerly straddles your legs, positioning her intimate areas directly over the pointing head of <<if $PC.dick == 1>>your erection<<else>>the phallus<</if>><<if $activeSlave.belly >= 5000>>, all while delicately trying to not bump into you with her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>. Deciding that $he shouldn't use $his hands to guide it, $he lowers $himself slowly, + You order $him to sit on your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> and get you off like a good $girl, but not to disturb you while you're working. $He <<if canTalk($activeSlave)>>shuts up immediately<<else>>obediently drops $his hands to $his sides and stops communicating with them<</if>>, and approaches you carefully. Meanwhile, you go back to your tablet, ignoring $him completely. $He gingerly straddles your legs, positioning $his intimate areas directly over the pointing head of <<if $PC.dick == 1>>your erection<<else>>the phallus<</if>><<if $activeSlave.belly >= 5000>>, all while delicately trying to not bump into you with $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>. Deciding that $he shouldn't use $his hands to guide it, $he lowers $himself slowly, <<if canDoVaginal($activeSlave) && ($activeSlave.vagina > 0)>> - breathing a little harder as $he feels its head spread her pussylips and then slide inside $him. + breathing a little harder as $he feels its head spread $his pussylips and then slide inside $him. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave) && ($activeSlave.anus > 0)>> - letting out a breath and relaxing as $he feels its head press past her sphincter and then all the way up $his butt. + letting out a breath and relaxing as $he feels its head press past $his sphincter and then all the way up $his butt. <<= AnalVCheck()>> <<else>> - getting it situated between her thighs, since that's the best option $he has available. + getting it situated between $his thighs, since that's the best option $he has available. <</if>> - <<if $activeSlave.belly >= 5000>>Before starting to pleasure you, $he notices there is no way $he can move with her rounded middle sticking out as far as it does. $He carefully turns around, feeling your glare on her back at her mistake.<</if>> + <<if $activeSlave.belly >= 5000>>Before starting to pleasure you, $he notices there is no way $he can move with $his rounded middle sticking out as far as it does. $He carefully turns around, feeling your glare on $his back at $his 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, $he lets $his butt touch you, just once, but you make a nonverbal sound of disapproval, letting $him know not to disturb your work like that. Realizing that $he needs to play the human sex toy, $he <<if $activeSlave.butt > 12>> - grabs her massive buttocks and finds that there is no way $he can keep the expanses of flesh from enveloping your lap. + grabs $his massive buttocks and finds that there is no way $he can keep the expanses of flesh from enveloping your lap. <<elseif $activeSlave.butt > 5>> - grabs her huge buttocks and holds them apart, doing her best to keep them out of the way. + grabs $his huge buttocks and holds them apart, doing $his best to keep them out of the way. <<elseif $activeSlave.butt > 2>> - takes hold of her healthy asscheeks and spreads them as far as they'll go, doing her best to keep them out of the way. + takes hold of $his healthy asscheeks and spreads them as far as they'll go, doing $his best to keep them out of the way. <<else>> - uses $his arms for balance, since her cute butt can stay out of the way on its own and doesn't need to be spread by hand. + uses $his arms for balance, since $his cute butt can stay out of the way on its own and doesn't need to be spread by hand. <</if>> - <<if $activeSlave.belly >= 10000>> You spread your legs as you shift into a more comfortable position, stealthily showing mercy since $he can't possibly keep her <<if $activeSlave.bellyPreg >= 3000>>full-term belly<<else>>_belly belly<</if>> off you otherwise.<</if>> $He bobs up and down, getting you off without ever touching you<<if $PC.dick == 1>>, other than the contact between your penis and the inside of $his body, of course<</if>>. + <<if $activeSlave.belly >= 10000>> You spread your legs as you shift into a more comfortable position, stealthily showing mercy since $he can't possibly keep $his <<if $activeSlave.bellyPreg >= 3000>>full-term belly<<else>>_belly belly<</if>> off you otherwise.<</if>> $He bobs up and down, getting you off without ever touching you<<if $PC.dick == 1>>, other than the contact between your penis and the inside of $his body, of course<</if>>. <<if $activeSlave.energy > 80>> $He has such a powerful sex drive that even this sterile intercourse brings $him to orgasm. <<elseif $activeSlave.releaseRules == "restrictive" || $activeSlave.releaseRules == "chastity">> @@ -18921,13 +18923,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Help $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Deciding to help $him, you head over and grab a handful of each of her asscheeks, hefting her <<if $activeSlave.buttImplant/$activeSlave.butt >= .5>>unnaturally taut<<else>>soft<</if>> masses of feminine assflesh upward and out of the constricting clothing. + Deciding to help $him, you head over and grab a handful of each of $him asscheeks, hefting $him <<if $activeSlave.buttImplant/$activeSlave.butt >= .5>>unnaturally taut<<else>>soft<</if>> masses of feminine assflesh upward and out of the constricting clothing. <<if (($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut")) || ($activeSlave.energy > 80)>> $He's a little disappointed when $he realizes that you're just being helpful, instead of getting ready to stick <<if $PC.dick == 1>>your dick<<else>>something<</if>> inside $him, but $he thanks you properly once $he's free. Clearly unwilling to leave it at just that, $he gives you quite a show as $he gets into the next size up, making sure to bounce $his ass for you and keeping $his <<if !canDoVaginal($activeSlave)>>ass<</if>>pussy visible for longer than is strictly necessary. @@.mediumaquamarine;$He trusts you'll fuck $him some other time,@@ and is even a little happy that you're willing to lend $him a helping hand outside of sex. <<elseif $activeSlave.trust > 20>> - $He feels the familiar grip of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands without surprise or resentment, and relaxes trustingly as you manipulate $his bottom. Realizing that you're helping $him, $he quickly slides the offending item down $his thighs and off $himself, and then thanks you properly. $He smiles at you as $he puts on the next size up, clearly pleased that you'd @@.mediumaquamarine;assist her with a trivial thing@@ outside of $his direct duties as a sex slave. + $He feels the familiar grip of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands without surprise or resentment, and relaxes trustingly as you manipulate $his bottom. Realizing that you're helping $him, $he quickly slides the offending item down $his thighs and off $himself, and then thanks you properly. $He smiles at you as $he puts on the next size up, clearly pleased that you'd @@.mediumaquamarine;assist $him with a trivial thing@@ outside of $his direct duties as a sex slave. <<else>> - $He stiffens at the feeling of your hands on her bottom, not sure whether you're about to ram <<if $PC.dick == 1>>your dick<<else>>something<</if>> up $his defenseless asshole. You feel the muscles down there tense a little through the softness of the lower part of $his buttocks. That's not what you're planning, though, and eventually $he realizes that you mean to help. $He thanks you hesitantly before bending to slide the offending clothing down $his thighs. Nervously, $he thanks you again after $he's free, unsure of $himself but @@.mediumaquamarine;impressed that you'd help $him with a little thing like that.@@ + $He stiffens at the feeling of your hands on $his bottom, not sure whether you're about to ram <<if $PC.dick == 1>>your dick<<else>>something<</if>> up $his defenseless asshole. You feel the muscles down there tense a little through the softness of the lower part of $his buttocks. That's not what you're planning, though, and eventually $he realizes that you mean to help. $He thanks you hesitantly before bending to slide the offending clothing down $his thighs. Nervously, $he thanks you again after $he's free, unsure of $himself but @@.mediumaquamarine;impressed that you'd help $him with a little thing like that.@@ <</if>> <</replace>> <<set $activeSlave.trust += 5>> @@ -18936,12 +18938,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Finding the situation simply too good to pass up, you wait until $he's not <<if canSee($activeSlave)>>looking at<<else>>paying attention to<</if>> you, and then approach her from behind. + Finding the situation simply too good to pass up, you wait until $he's not <<if canSee($activeSlave)>>looking at<<else>>paying attention to<</if>> you, and then approach $him from behind. <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "buttslut") && canDoAnal($activeSlave)>> $He gasps wantonly as $he feels the familiar sensation of <<if $PC.dick == 1>>your dick<<else>>a strap-on<</if>> infiltrating between $his cheeks and towards $his <<if $activeSlave.anus >= 3>>loose<<elseif $activeSlave.anus >= 2>>relaxed<<else>>tight little<</if>> anus. $He releases $his grip on the constricting clothing that's binding $his thighs together and grinds $his ass back against you, making sure every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of your <<if $PC.dick == 1>>hard member<<else>>phallus<</if>> that will fit gets inside $his asshole. Some time later, the hard pounding dislodges the clothing and it slides down $his legs to gather around $his ankles. @@.hotpink;$He doesn't notice.@@ <<= AnalVCheck()>> <<elseif $activeSlave.energy > 80>> - $He's so horny that $he doesn't need any foreplay. Nor does $he get any. You grab $his hips and smack your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against her jiggling buttocks a couple of times, making her bounce with eagerness and frustration at the anticipation of imminent sexual release. Exercising mercy, you pull $his ass back against you and maneuver <<if $PC.dick == 1>>yourself<<else>>your instrument<</if>> inside $him, enjoying her shiver at the @@.hotpink;satisfaction of her hopes.@@ The constricting clothes pin $his legs together, and you hold $his arms against her sides, keeping her back pressed against your + $He's so horny that $he doesn't need any foreplay. Nor does $he get any. You grab $his hips and smack your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $his jiggling buttocks a couple of times, making $his bounce with eagerness and frustration at the anticipation of imminent sexual release. Exercising mercy, you pull $his ass back against you and maneuver <<if $PC.dick == 1>>yourself<<else>>your instrument<</if>> inside $him, enjoying $his shiver at the @@.hotpink;satisfaction of $his hopes.@@ The constricting clothes pin $his legs together, and you hold $his arms against $his sides, keeping $his back pressed against your <<if $PC.belly > 1500>> pregnancy <<elseif $PC.boobs == 1>> @@ -18954,10 +18956,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t as you take $him. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<else>><<= AnalVCheck()>><</if>> <<elseif $activeSlave.trust > 20>> - $He relaxes submissively when $he feels you take hold of her huge ass and slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between her asscheeks and then inside her <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>. $His legs are already in effect bound, by the constricting clothing that's still holding them together, and you enhance the effect by taking hold of her wrists and hugging her from behind as you fuck $him, holding $his arms crossed across her <<if $activeSlave.boobs > 2000>>massive breasts<<elseif $activeSlave.boobs > 300>>boobs<<else>>chest<</if>>. Helpless in your embrace, $he @@.hotpink;relaxes completely and lets it happen.@@ + $He relaxes submissively when $he feels you take hold of $his huge ass and slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between $his asscheeks and then inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>. $His legs are already in effect bound, by the constricting clothing that's still holding them together, and you enhance the effect by taking hold of $his wrists and hugging $his from behind as you fuck $him, holding $his arms crossed across $his <<if $activeSlave.boobs > 2000>>massive breasts<<elseif $activeSlave.boobs > 300>>boobs<<else>>chest<</if>>. Helpless in your embrace, $he @@.hotpink;relaxes completely and lets it happen.@@ <<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<else>><<= AnalVCheck()>><</if>> <<else>> - $He stiffens fearfully when $he feels you take hold of her huge ass, but $he knows not to resist. $He stays still as you slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between her asscheeks and then inside her <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>, trying to angle $his hips to make the standing penetration less uncomfortable. The clothing binds $his legs together, reducing $him to simply sticking $his butt out as best $he can to ease the stroking of your <<if $PC.dick == 1>>cock<<else>>phallus<</if>>, invading her helpless + $He stiffens fearfully when $he feels you take hold of $his huge ass, but $he knows not to resist. $He stays still as you slide your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> between $his asscheeks and then inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>anus<</if>>, trying to angle $his hips to make the standing penetration less uncomfortable. The clothing binds $his legs together, reducing $him to simply sticking $his butt out as best $he can to ease the stroking of your <<if $PC.dick == 1>>cock<<else>>phallus<</if>>, invading $his helpless <<if canDoVaginal($activeSlave)>> cunt. <<= VaginalVCheck()>> @@ -18965,7 +18967,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t asshole. <<= AnalVCheck()>> <</if>> - When you're done, you extract yourself and stalk off, leaving $him to struggle free<<if $PC.dick == 1>> and try to keep the cum dripping out of her off her clothing<</if>>. $He stumbles back to fetch the right size, @@.hotpink;thoroughly fucked.@@ + When you're done, you extract yourself and stalk off, leaving $him to struggle free<<if $PC.dick == 1>> and try to keep the cum dripping out of $his off $his clothing<</if>>. $He stumbles back to fetch the right size, @@.hotpink;thoroughly fucked.@@ <</if>> <</replace>> <<set $activeSlave.devotion += 5>> @@ -18982,21 +18984,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if canDoAnal($activeSlave)>> <<link "Clean out $his ass with an enema and fuck it">> <<replace "#result2">> - You tell $activeSlave.slaveName that $he forgot to clean one thing in her office - $himself. As $he looks at you in confusion, you rise from your chair and lightly press $his chest down on your desk. $He lays there obediently, only letting out a gasp as the cold tip of an enema bulb penetrates $his ass. As a result of her slave diet and daily anal preparation, the insertion of the enema is little more a bit of roleplaying spectacle. When you retrieve the enema from $his rectum you remark, <<if $PC.dick == 0>>as you don a strap-on, <</if>>that you'll need to inspect $his asshole personally with a vigorous assfucking. Soon $activeSlave.slaveName finds $himself being pounded so forcefully that a small pool of drool begins to form beneath her open mouth, staining the surface of your desk that $he so meticulously cleaned. $He @@.mediumaquamarine;resolves to trust you more in the future,@@ since you took a personal interest in her cleanliness. + You tell $activeSlave.slaveName that $he forgot to clean one thing in $his office - $himself. As $he looks at you in confusion, you rise from your chair and lightly press $his chest down on your desk. $He lays there obediently, only letting out a gasp as the cold tip of an enema bulb penetrates $his ass. As a result of $his slave diet and daily anal preparation, the insertion of the enema is little more a bit of roleplaying spectacle. When you retrieve the enema from $his rectum you remark, <<if $PC.dick == 0>>as you don a strap-on, <</if>>that you'll need to inspect $his asshole personally with a vigorous assfucking. Soon $activeSlave.slaveName finds $himself being pounded so forcefully that a small pool of drool begins to form beneath $his open mouth, staining the surface of your desk that $he so meticulously cleaned. $He @@.mediumaquamarine;resolves to trust you more in the future,@@ since you took a personal interest in $his cleanliness. <<= AnalVCheck()>> <<set $activeSlave.trust += 4>> <</replace>> - <</link>><<if $activeSlave.anus == 0>> //This option will take her anal virginity//<</if>> + <</link>><<if $activeSlave.anus == 0>> //This option will take $his anal virginity//<</if>> <</if>> - <br><<link "Have her lick you clean">> + <br><<link "Have $his lick you clean">> <<replace "#result2">> You recline in your chair and inform $activeSlave.slaveName that $he has one last thing to clean in your office. $He understands your meaning quickly, sinks to $his knees and <<if $activeSlave.belly >= 5000>>struggles to crawl<<else>>crawls<</if>> beneath your desk to kneel between your legs. Soon enough you feel the sensation of $his lips wrapping obediently about one of your toes, fellating the appendage with some enthusiasm. $He works $his way through your various digits, taking some solace in the simplicity of $his task, before a sudden understanding dawns on $him. $He runs $his tongue up your leg, cleansing your skin with $his tongue as best $he can, before heading for your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>> but you lay a hand on $his forehead and halt $him - $he'll do that last. <<if $PC.boobs == 1 || $PC.title == 0>> - Soon enough $he manages to lick all the way up from your feet to your breasts, cleansing your <<if $PC.belly >= 60000>>massively gravid <<elseif $PC.belly >= 5000>>motherly <</if>>body with $his wet tongue all the way. $He hesitates before teasingly laying a single lap on your nipples, so you take $his head and hold it against your breasts to enjoy $his skillful tongue on your nipples.<<if $PC.preg > 22>> $He even gets a special treat to savor, fresh from $his <<= WrittenMaster()>>'s milky breasts. $He makes sure your sore breasts are sufficiently relieved.<</if>> + Soon enough $he manages to lick all the way up from your feet to your breasts, cleansing your <<if $PC.belly >= 60000>>massively gravid <<elseif $PC.belly >= 5000>>motherly <</if>>body with $his wet tongue all the way. $He hesitates before teasingly laying a single lap on your nipples, so you take $his head and hold it against your breasts to enjoy $his skillful tongue on your nipples.<<if $PC.lactation > 0>> $He even gets a special treat to savor, fresh from $his <<= WrittenMaster($activeSlave)>>'s milky breasts. $He makes sure your sore breasts are sufficiently relieved.<</if>> <<else>> - Soon enough $he manages to lick all the way up from your feet to your <<if $PC.belly >= 10000>>taut dome of a stomach<<elseif $PC.belly >= 5000>>pregnancy strained abs<<else>>abs<</if>>, pecs, and collarbone, cleansing your body with $his wet tongue all the way. $He lavishes particular attention on every nook and groove of your chiseled body, clearly eager to please $his muscular <<if $PC.belly >= 5000>>(and very pregnant) <</if>><<= WrittenMaster()>>. + Soon enough $he manages to lick all the way up from your feet to your <<if $PC.belly >= 10000>>taut dome of a stomach<<elseif $PC.belly >= 5000>>pregnancy strained abs<<else>>abs<</if>>, pecs, and collarbone, cleansing your body with $his wet tongue all the way. $He lavishes particular attention on every nook and groove of your chiseled body, clearly eager to please $his muscular <<if $PC.belly >= 5000>>(and very pregnant) <</if>><<= WrittenMaster($activeSlave)>>. <</if>> When $he's satisfied that every other inch of your body has been bathed by $his tongue, $he moves for your <<if $PC.dick == 0>> @@ -19024,11 +19026,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Gently acclimate $him to the age difference with some lovemaking">> <<EventNameDelink $activeSlave>> <<replace "#result">> - As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years your senior $he is<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years your senior $he is<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered her wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to her role as a sex slave in response to your unexpected intimacy. Instead, you + As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years your senior $he is<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years your senior $he is<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy. Instead, you <<if $activeSlave.belly >= 300000>> help $him to $his feet and guide $him to bed, aiding the <<if $activeSlave.bellyPreg >= 3000>>child-laden<<else>>tremendously swollen<</if>> older woman onto the sheets before gently mounting $him. <<else>> - <<if $activeSlave.belly >= 5000>>carefully <</if>>lift her up from her low position beneath you and carry $him to bed, laying the flushed older woman down on the sheets before gently positioning yourself on top of $him. + <<if $activeSlave.belly >= 5000>>carefully <</if>>lift $his up from $his low position beneath you and carry $him to bed, laying the flushed older woman down on the sheets before gently positioning yourself on top of $him. <</if>> Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into $his ear, nip at $his neck, <<if $activeSlave.bellyPreg >= 300000>> @@ -19038,13 +19040,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.belly >= 5000>> caress the curve of $his _belly belly, <</if>> - and bring $him to climax again and again. After a final frantic orgasm together in her + and bring $him to climax again and again. After a final frantic orgasm together in $his <<if canDoVaginal($activeSlave)>> pussy <<else>> anus <</if>> - $he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in her young <<= WrittenMaster()>>. + $he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his young <<= WrittenMaster($activeSlave)>>. <<set $activeSlave.devotion += 4, $activeSlave.trust += 4>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -19053,16 +19055,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> -<br><<link "Cruelly torment her about the age difference">> +<br><<link "Cruelly torment $his about the age difference">> <<EventNameDelink $activeSlave>> <<replace "#result">> - As you close in on $activeSlave.slaveName predatorily, her face blanches with visible regret at her prior candidness. By the time you have her bent over + As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $his bent over <<if $activeSlave.belly >= 300000>> - her _belly belly + $his _belly belly <<else>> your desk <</if>> - and begun spanking her + and begun spanking $his <<if $activeSlave.butt > 12>> absurd ass, <<elseif $activeSlave.butt > 6>> @@ -19072,7 +19074,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> cute ass, <</if>> - $he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about her sexual submission and subservience to so young a <<= WrittenMaster()>>, $he begins to sob quietly + $he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so young a <<= WrittenMaster($activeSlave)>>, $he begins to sob quietly <<if $activeSlave.belly >= 300000>> <<if $activeSlave.boobs > 600>> into $his breasts. @@ -19083,13 +19085,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t against the hard surface of your desk. <</if>> <br><br> - By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by a cruel <<= WrittenMaster()>>, nearly half her age. Even when you accompany each brutal thrust with a harsh spank and a harsher jab at the dearth in years between the two of you, $he merely winces at the + By the time you deign to <<if $PC.dick == 0>>don a strap-on and <</if>>mount $his ass, $he seems catatonic at the revelation that $his body is owned by a cruel <<= WrittenMaster($activeSlave)>>, nearly half $his age. Even when you accompany each brutal thrust with a harsh spank and a harsher jab at the dearth in years between the two of you, $he merely winces at the <<if canDoVaginal($activeSlave)>> force <<else>> anal pain <</if>> - of your coupling. Judging by the empty look in $his eyes that persists past her dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked her into compliance@@. + of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $his into compliance@@. <<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -19102,15 +19104,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Give $him an afternoon off for some quality time with a local Frat House">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You direct $assistantName to clear $activeSlave.slaveName's schedule and to find a local Frat House willing to 'host' a woman of her age and experience. Perhaps a group of virile college boys running a train on $activeSlave.slaveName might accustom $him to younger sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like a frumpy Old World MILF and is clearly skeptical about your age-play therapy. + You direct $assistantName to clear $activeSlave.slaveName's schedule and to find a local Frat House willing to 'host' a woman of $his age and experience. Perhaps a group of virile college boys running a train on $activeSlave.slaveName might accustom $him to younger sexual partners. When $activeSlave.slaveName leaves the penthouse, $he's dressed up to look like a frumpy Old World MILF and is clearly skeptical about your age-play therapy. <br><br> - $activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite her appearance, however, $he is practically beaming with happiness. It seems young cock agrees with $him, and by the state of her + $activeSlave.slaveName returns to the penthouse naked, disheveled, and absolutely covered in a thick coating of drying cum. Despite $his appearance, however, $he is practically beaming with happiness. It seems young cock agrees with $him, and by the state of $his <<if $activeSlave.mpreg == 1>> cum-drenched asshole <<else>> messy pussy <</if>> - her youthful partners particularly enjoyed filling her with their potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during her Frat House excursion. It seems that being bred by a bunch of horny college boys has eliminated her prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden her sexual horizons. + $his youthful partners particularly enjoyed filling $his with their potent seed. Unsurprisingly, at a routine check up later that week, $activeSlave.slaveName joyfully discovers that $he was impregnated during $his Frat House excursion. It seems that being bred by a bunch of horny college boys has eliminated $his prior worries about the importance of age and also caused $him to @@.lightcoral;fetishize impregnation.@@ @@.hotpink;$He has become more submissive to you@@ for giving $him the means to broaden $his sexual horizons. <<set $activeSlave.devotion += 4, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1>> <<set $activeSlave.pregType = setPregType($activeSlave)>> <<set WombImpregnate($activeSlave, $activeSlave.pregType, 0, 1)>> @@ -19135,10 +19137,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Gently acclimate $him to the age difference with some lovemaking">> <<EventNameDelink $activeSlave>> <<replace "#result">> - As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing her into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years her senior you are<<else>>$He seems to feel the intensity of your gaze despite her sightless eyes and blushes girlishly, as if forgetting how many years her senior you are<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered her wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to her role as a sex slave in response to your unexpected intimacy. + As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing $him into you arms, running the tips of your fingers through $his $activeSlave.hColor hair, and looking into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years $his senior you are<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years $his senior you are<</if>>. In lieu of words, you lift $his chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered $his wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to $his role as a sex slave in response to your unexpected intimacy. Instead, you <<if $activeSlave.belly >= 300000>> - help $him to her feet and guide $him to bed, aiding the + help $him to $his feet and guide $him to bed, aiding the <<if $activeSlave.physicalAge <= 3>> <<if $activeSlave.bellyPreg >= 3000>> bursting at the seams with life @@ -19170,7 +19172,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> onto the sheets before gently mounting $him. <<else>> - <<if $activeSlave.belly >= 5000>>carefully <</if>>lift her up from her low position beneath you and carry $him to bed, laying the flushed + <<if $activeSlave.belly >= 5000>>carefully <</if>>lift $him up from $his low position beneath you and carry $him to bed, laying the flushed <<if $activeSlave.physicalAge <= 3>> little $girl <<elseif $activeSlave.physicalAge < 13>> @@ -19182,21 +19184,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> down on the sheets before gently positioning yourself on top of $him. <</if>> - Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into her ear, nip at her neck, + Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into $his ear, nip at $his neck, <<if $activeSlave.bellyPreg >= 300000>> - run your hands across her squirming brood, + run your hands across $his squirming brood, <<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> - stroke her pregnant belly, + stroke $his pregnant belly, <<elseif $activeSlave.belly >= 5000>> caress the curve of $his _belly belly, <</if>> - and bring $him to climax again and again. After a final frantic orgasm together in her + and bring $him to climax again and again. After a final frantic orgasm together in $his <<if canDoVaginal($activeSlave)>> pussy <<else>> anus <</if>> - $he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in her aged <<= WrittenMaster()>>. + $he <<if canSee($activeSlave)>>looks<<else>>gazes sightlessly<</if>> up at you with @@.hotpink;adoration@@ and a new @@.mediumaquamarine;trust@@ in $his aged <<= WrittenMaster($activeSlave)>>. <<set $activeSlave.devotion += 4, $activeSlave.trust += 4>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -19205,16 +19207,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> -<br><<link "Cruelly torment her about the age difference">> +<br><<link "Cruelly torment $him about the age difference">> <<EventNameDelink $activeSlave>> <<replace "#result">> - As you close in on $activeSlave.slaveName predatorily, her face blanches with visible regret at her prior candidness. By the time you have her bent over + As you close in on $activeSlave.slaveName predatorily, $his face blanches with visible regret at $his prior candidness. By the time you have $him bent over <<if $activeSlave.belly >= 300000>> - her _belly belly + $his _belly belly <<else>> your desk <</if>> - and begun spanking her + and begun spanking $his <<if $activeSlave.butt > 12>> absurd ass, <<elseif $activeSlave.butt > 6>> @@ -19224,7 +19226,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> cute ass, <</if>> - $he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about her sexual submission and subservience to so old a <<= WrittenMaster()>>, $he begins to sob quietly + $he seems almost resigned to accept any of the standard punishments you've been known to dole out. When your lips lightly brush one of $his ears, $he flinches harder at the gentle touch than any of your harsh, disciplinary spanks. When you start whispering wicked reminders about $his sexual submission and subservience to so old a <<= WrittenMaster($activeSlave)>>, $he begins to sob quietly <<if $activeSlave.belly >= 300000>> <<if $activeSlave.boobs > 600>> into $his breasts. @@ -19241,7 +19243,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> anal pain <</if>> - of your coupling. Judging by the empty look in $his eyes that persists past her dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked her into compliance@@. + of your coupling. Judging by the empty look in $his eyes that persists past $his dismissal from your office, $he might @@.gold;not feel any better@@ about the age difference but you've definitely @@.hotpink;fucked $his into compliance@@. <<set $activeSlave.devotion += 4, $activeSlave.trust -= 4>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -19279,7 +19281,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <</replace>> -<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take her virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take her anal virginity//<</if>> +<</link>> //This option will render $activeSlave.slaveName pregnant//<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>> // and take $his virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //and take $his anal virginity//<</if>> <</if>> <<case "devoted educated slave">> @@ -19289,7 +19291,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You linger in the hallway a while with $activeSlave.slaveName and enjoy a brief but verbose discussion. It's clear $he hasn't had the chance to engage in any meaningful conversations in a while, so $he relishes the opportunity energetically. <br><br> - Though the two of you only touch upon a handful of sophisticated topics, by the time you leave $him to tend to other matters, $activeSlave.slaveName is beaming happily as $he continues on to $his duties for the day. $He @@.mediumaquamarine;trusts you more@@ for taking the time to engage with her intellectually. + Though the two of you only touch upon a handful of sophisticated topics, by the time you leave $him to tend to other matters, $activeSlave.slaveName is beaming happily as $he continues on to $his duties for the day. $He @@.mediumaquamarine;trusts you more@@ for taking the time to engage with $him intellectually. <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -19297,7 +19299,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Stimulate $his mind and body">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You find a comfortable seat to sit on <<if $PC.dick == 0>>,don a strap-on,<</if>>as $he seats her + You find a comfortable seat to sit on <<if $PC.dick == 0>>,don a strap-on,<</if>>as $he seats $his <<if $activeSlave.butt < 2>> narrow <<elseif $activeSlave.butt < 5>> @@ -19309,7 +19311,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> mind-blowing <</if>> - ass on your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> and rides you. While your cock plumbs the depths of her + ass on your <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> and rides you. While your cock plumbs the depths of $his <<if canDoVaginal($activeSlave)>> pussy, <<else>> @@ -19317,13 +19319,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> the two of you engage in a casual debate over a number of topics of sophistry. <br><br> - At the crux of one of her concluding arguments, the intense pleasure from the prolonged + At the crux of one of $his concluding arguments, the intense pleasure from the prolonged <<if canDoVaginal($activeSlave)>> fucking <<else>> buttfucking <</if>> - pushes $him over the edge into orgasm, robbing the thrust of her defense of any gravitas it once had. $He doesn't seem to mind however, choosing to instead wrap up her remarks by @@.hotpink;blowing you a kiss.@@ + pushes $him over the edge into orgasm, robbing the thrust of $his defense of any gravitas it once had. $He doesn't seem to mind however, choosing to instead wrap up $his remarks by @@.hotpink;blowing you a kiss.@@ <<set $activeSlave.devotion += 4>> <<if canDoVaginal($activeSlave)>> <<= VaginalVCheck()>> @@ -19337,9 +19339,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "A public blowbang will show $him what a Degradationist arcology thinks about 'educated' slaves">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he'll get fucked in the mouth until $he either gets over the idea of being special for her education or until all her learning is fucked out of her head. You drag the protesting $activeSlave.slaveName out into a public plaza, restrain $him in stocks so that $his mouth is available, and inform the gathering crowd of citizens that this particular slave thinks $himself more than a fuckhole because of some fancy 'education'. + You tell $him $he'll get fucked in the mouth until $he either gets over the idea of being special for $his education or until all $his learning is fucked out of $his head. You drag the protesting $activeSlave.slaveName out into a public plaza, restrain $him in stocks so that $his mouth is available, and inform the gathering crowd of citizens that this particular slave thinks $himself more than a fuckhole because of some fancy 'education'. <br><br> - When you return later in the evening, it becomes abundantly clear that your citizenry taught $activeSlave.slaveName a harsh lesson about a slave's place in $arcologies[0].name. $activeSlave.slaveName has certainly @@.green;learned to keep any pretentious thoughts about her education in her head.@@ $He did, however, @@.red;have quite a rough time@@ sucking all those dicks<<if $activeSlave.oralSkill <= 30>>, though $he did learn about sucking dick, so $he can't claim enslavement isn't educational.<<set $skillIncrease = 10>><<OralSkillIncrease $activeSlave>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons. + When you return later in the evening, it becomes abundantly clear that your citizenry taught $activeSlave.slaveName a harsh lesson about a slave's place in $arcologies[0].name. $activeSlave.slaveName has certainly @@.green;learned to keep any pretentious thoughts about $his education in $his head.@@ $He did, however, @@.red;have quite a rough time@@ sucking all those dicks<<if $activeSlave.oralSkill <= 30>>, though $he did learn about sucking dick, so $he can't claim enslavement isn't educational.<<set $skillIncrease = 10>><<OralSkillIncrease $activeSlave>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons. <<set $activeSlave.health -= 10>> <<set _blowBang = random(65,80)>> <<set $activeSlave.oralCount += _blowBang, $activeSlave.publicCount += _blowBang, $oralTotal += _blowBang>> @@ -19350,7 +19352,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Allow $him to audit some advanced classes at Paternalist slave schools">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him to take the day off for a trip to audit classes at $arcologies[0].name's most renowned Paternalist slave schools. $activeSlave.slaveName is shocked into a reverie by your words before running to wrap $his arms around you in a tight hug. When $he eventually untangles $himself from you, $he races off to get ready for her day of intellectualism while you direct $assistantName to make the necessary arrangements. + You tell $him to take the day off for a trip to audit classes at $arcologies[0].name's most renowned Paternalist slave schools. $activeSlave.slaveName is shocked into a reverie by your words before running to wrap $his arms around you in a tight hug. When $he eventually untangles $himself from you, $he races off to get ready for $his day of intellectualism while you direct $assistantName to make the necessary arrangements. <br><br> When $activeSlave.slaveName returns, $he looks exhausted but happier than you've ever seen $him. It seems $he benefited greatly from $arcologies[0].name's Paternalist institutions, and has grown to @@.mediumaquamarine;trust you more@@ while also @@.hotpink;deepening $his acceptance of slavery.@@ <<set $activeSlave.trust += 4, $activeSlave.devotion += 4>> @@ -19415,9 +19417,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t the lucky winner groping $activeSlave.slaveName's jiggling body as $he gently rides him. <<elseif $activeSlave.belly >= 1500>> <<if $activeSlave.bellyPreg > 0>> - the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands cradling her pregnant belly. + the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands cradling $his pregnant belly. <<else>> - the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging her swollen belly. + the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his swollen belly. <</if>> <<elseif $activeSlave.dick > 3>> the lucky winner gazing down at a cock slapping against his stomach as $activeSlave.slaveName rides him. @@ -19432,7 +19434,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.face > 60>> the lucky winner staring in awe at the beautiful face of $activeSlave.slaveName, as $he rides him tenderly. <<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> - the lucky winner engaged in a lively debate with $activeSlave.slaveName as he takes her from behind. + the lucky winner engaged in a lively debate with $activeSlave.slaveName as he takes $him from behind. <<else>> the lucky winner taking $activeSlave.slaveName in every position he can think of, which is amusingly not very many at all. <</if>> @@ -19500,7 +19502,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>> Although most of your attention is focused on the intriguing drama unfolding on your wallscreen, you can feel the slight hesitations as $he takes care to keep $his braces off you. <</if>> - You have an enjoyable evening glued to your wallscreen, punctuated by the playful ruffling <<if $activeSlave.hLength > 1>>of $activeSlave.slaveName's $activeSlave.hColor hair<<else>>across $activeSlave.slaveName's scalp<</if>> and the occasional orgasm into her waiting mouth. Though your experience was more stimulating than $hers, $activeSlave.slaveName enjoyed @@.hotpink;being used while you enjoyed yourself.@@ + You have an enjoyable evening glued to your wallscreen, punctuated by the playful ruffling <<if $activeSlave.hLength > 1>>of $activeSlave.slaveName's $activeSlave.hColor hair<<else>>across $activeSlave.slaveName's scalp<</if>> and the occasional orgasm into $his waiting mouth. Though your experience was more stimulating than $hers, $activeSlave.slaveName enjoyed @@.hotpink;being used while you enjoyed yourself.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount += 1, $oralTotal += 1>> <</replace>> <</link>> @@ -19518,14 +19520,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t little $girl <</if>> cuddled up beside you to idly while away the hours<<if $activeSlave.bellyPreg >= 1500 && $activeSlave.pregSource == -1>>, especially when $he is <<if $activeSlave.belly >= 300000>>so massively swollen with your children<<else>>heavy with your child<<if $activeSlave.pregType > 1>>ren<</if>><</if>><</if>>. - $He @@.mediumaquamarine;trusts you more@@ for these few intimate hours amidst her life of sexual servitude. + $He @@.mediumaquamarine;trusts you more@@ for these few intimate hours amidst $his life of sexual servitude. <<set $activeSlave.trust += 4>> <</replace>> <</link>> <br><<link "Unwind by tormenting $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Though there is no shortage of torments you inflict during the course of your day to day life as an arcology owner, there is something refreshing about torturing a slave out of idle boredom rather than corrective disciple or sexual domination. Your night is filled with <<if $activeSlave.voice == 0>>the horrible rasping that a mute throat substitutes for cries of agony<<else>>echoing shrieks of anguish<</if>>, though every vocal outburst is idly punished with electro shock or strike of the whip. Come the morning, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of her orgasms that night,@@.hotpink; and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away to tend to the bruises and marks that litter her battered body.@@ + Though there is no shortage of torments you inflict during the course of your day to day life as an arcology owner, there is something refreshing about torturing a slave out of idle boredom rather than corrective disciple or sexual domination. Your night is filled with <<if $activeSlave.voice == 0>>the horrible rasping that a mute throat substitutes for cries of agony<<else>>echoing shrieks of anguish<</if>>, though every vocal outburst is idly punished with electro shock or strike of the whip. Come the morning, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of $his orgasms that night,@@.hotpink; and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away to tend to the bruises and marks that litter $his battered body.@@ <<set $activeSlave.trust -= 5>> <<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>> <</replace>> @@ -19538,11 +19540,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You hook your arms underneath $his own, pulling $him off of the ground in one swift yank upwards. Taken off guard by $his sudden vertical ascension, $he clings to your chest instinctively, <<if $PC.boobs == 1 || $PC.title == 0>> - <<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>her huge breasts squashing against yours<<elseif $activeSlave.boobs > 800>>$his breasts pressing heavily against yours<<else>>$his chest pressing against your breasts<</if>>. + <<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>$his huge breasts squashing against yours<<elseif $activeSlave.boobs > 800>>$his breasts pressing heavily against yours<<else>>$his chest pressing against your breasts<</if>>. <<else>> - <<if $activeSlave.boobs > 25000>>her immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>her huge breasts forming a soft cushion between your two bodies<<elseif $activeSlave.boobs > 800>>$his breasts pressing up against your hard chest pleasantly<<else>>$his chest pressing against yours<</if>>. + <<if $activeSlave.boobs > 25000>>$his immense udders doing their best to keep you apart<<elseif $activeSlave.boobs > 2000>>$his huge breasts forming a soft cushion between your two bodies<<elseif $activeSlave.boobs > 800>>$his breasts pressing up against your hard chest pleasantly<<else>>$his chest pressing against yours<</if>>. <</if>> - $His body is held aloft entirely by your crushing embrace and $his arms wrapped daintily about your shoulders, for as short as $he is, her attempts to wrap $his legs around your waist leave them dangling awkwardly in the air. This unique position soon has her + $His body is held aloft entirely by your crushing embrace and $his arms wrapped daintily about your shoulders, for as short as $he is, $his attempts to wrap $his legs around your waist leave them dangling awkwardly in the air. This unique position soon has $his <<if $activeSlave.belly >= 10000>> _belly belly <<if $PC.dick == 1>> @@ -19552,7 +19554,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> stomach. <</if>> - You take advantage of the situation and thrust between your middles, grunting and panting as her tiny body rubs up against your cock. You quickly coat your rounded stomachs in your cum. + You take advantage of the situation and thrust between your middles, grunting and panting as $his tiny body rubs up against your cock. You quickly coat your rounded stomachs in your cum. <<else>> rubbing against your own <<if $PC.pregKnown == 1>> @@ -19563,16 +19565,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t While it feels interesting, it isn't very satisfying. <</if>> <<else>> - crotch rubbing up against your own<<if $PC.dick == 0>>, so you don a strap-on<</if>>. Lightly maneuvering $him in the air, you position her + crotch rubbing up against your own<<if $PC.dick == 0>>, so you don a strap-on<</if>>. Lightly maneuvering $him in the air, you position $him <<if canDoVaginal($activeSlave)>> such that you press up against $his pussy. <<else>> such that you press up against $his ass. <</if>> - $He moans softly in anticipation as you lift her up by $his arms, before lowering her slowly onto your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>, $his knees desperately pressing against your hips in an attempt to steady $himself. Held aloft in your arms, $he arches her back and cocks $his hips wildly to ride you in midair,<<if $activeSlave.belly >= 1500>> even as $he carefully keeps her bulge from slamming into your hard body,<</if>> grunting and panting as her tiny body rubs up against your own. + $He moans softly in anticipation as you lift $him up by $his arms, before lowering $him slowly onto your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>, $his knees desperately pressing against your hips in an attempt to steady $himself. Held aloft in your arms, $he arches $his back and cocks $his hips wildly to ride you in midair,<<if $activeSlave.belly >= 1500>> even as $he carefully keeps $his bulge from slamming into your hard body,<</if>> grunting and panting as $his tiny body rubs up against your own. <</if>> <br><br> - When you grow bored of the position, you turn her around to impale her + When you grow bored of the position, you turn $him around to impale $his <<if $activeSlave.butt > 12>> bountiful <<elseif $activeSlave.butt > 7>> @@ -19584,7 +19586,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> tight <</if>> - butt as you pound her standing from behind, her + butt as you pound $him standing from behind, $his <<if $activeSlave.boobs > 2000>> titanic <<elseif $activeSlave.boobs > 800>> @@ -19592,7 +19594,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> small <</if>> - breasts<<if $activeSlave.belly >= 1500>> and _belly belly<</if>> bouncing with every deep thrust upwards. $His small body spasms with the force of her immense pleasure, and when $he orgasms, you have to wrap your arms beneath $his breasts and pull her up against you to stop her limp body from crashing to the ground. Eventually, you lower her back down onto the ground level, watching with bemusement as $he curls up, breathing heavily from her exertions. Eventually $he recovers her composure somewhat, rising from her stupor to @@.hotpink;blow you a kiss.@@ + breasts<<if $activeSlave.belly >= 1500>> and _belly belly<</if>> bouncing with every deep thrust upwards. $His small body spasms with the force of $his immense pleasure, and when $he orgasms, you have to wrap your arms beneath $his breasts and pull $him up against you to stop $his limp body from crashing to the ground. Eventually, you lower $him back down onto the ground level, watching with bemusement as $he curls up, breathing heavily from $his exertions. Eventually $he recovers $his composure somewhat, rising from $his stupor to @@.hotpink;blow you a kiss.@@ <<set $activeSlave.devotion += 4>> <<if $activeSlave.belly >= 10000>> <<= AnalVCheck()>> @@ -19604,29 +19606,29 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Show $him that short girls can still serve">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You lightly place your palms on her shoulders and apply a little pressure<<if $PC.dick == 0>>as you don a strap-on<</if>>. From your towering position above $him, you easily push her down to $his knees with little more than a gradual increase in force. From your standing position<<if $activeSlave.belly >= 300000>>, after straddling $his _belly belly<</if>>, your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> hovers above her head, tantalizingly out of the immediate reach of $his lips. + You lightly place your palms on $his shoulders and apply a little pressure<<if $PC.dick == 0>>as you don a strap-on<</if>>. From your towering position above $him, you easily push $him down to $his knees with little more than a gradual increase in force. From your standing position<<if $activeSlave.belly >= 300000>>, after straddling $his _belly belly<</if>>, your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> hovers above $his head, tantalizingly out of the immediate reach of $his lips. <<if ($activeSlave.teeth == "removable")>> - $He quickly pulls her removable teeth out, setting them aside as $he looks up at your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>. + $He quickly pulls $his removable teeth out, setting them aside as $he looks up at your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>. <<elseif ($activeSlave.teeth == "pointy")>> - $He opens $his mouth wide, revealing her sharp fangs even as $he reminds $himself diligently to not let her sharp teeth scrape against your shaft. + $He opens $his mouth wide, revealing $his sharp fangs even as $he reminds $himself diligently to not let $him sharp teeth scrape against your shaft. <<elseif $activeSlave.teeth == "gapped">> $He opens $his mouth wide, revealing the gap between $his front teeth. <<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>> - $He opens $his mouth wide, revealing a mouthful of braces even as $he reminds $himself diligently to not let her orthodontia scrape against your shaft. + $He opens $his mouth wide, revealing a mouthful of braces even as $he reminds $himself diligently to not let $him orthodontia scrape against your shaft. <</if>> - You inform $him that short slaves like her might have to try harder, but they can still serve just as well as any of their taller peers. Understanding your meaning, $he pushes $himself up as far as $he can with your hands still lightly pressing down on her shoulders, straining her neck until $he can take you fully into her waiting mouth, keeping $his eyes closed as $he concentrates intently on her task. $He lightly rocks back and forth on $his knees in an attempt to gain a little height to better pleasure you with $his mouth, an amusing sight to behold as you stand above $him. + You inform $him that short slaves like $him might have to try harder, but they can still serve just as well as any of their taller peers. Understanding your meaning, $he pushes $himself up as far as $he can with your hands still lightly pressing down on $his shoulders, straining $his neck until $he can take you fully into $his waiting mouth, keeping $his eyes closed as $he concentrates intently on $his task. $He lightly rocks back and forth on $his knees in an attempt to gain a little height to better pleasure you with $his mouth, an amusing sight to behold as you stand above $him. <br><br> - Eventually, you lift a hand off of her shoulder to run it possessively through her $activeSlave.hColor hair, letting $him know that $he's an excellent little cocksucker. In her eagerness to thank you, $he ends up talking into your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>, though these muffled attempts at speech soon devolve back into submissive moaning. In time, you silence even these moans as you + Eventually, you lift a hand off of $his shoulder to run it possessively through $his $activeSlave.hColor hair, letting $him know that $he's an excellent little cocksucker. In $his eagerness to thank you, $he ends up talking into your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>, though these muffled attempts at speech soon devolve back into submissive moaning. In time, you silence even these moans as you <<if $PC.balls == 3>> - pump your endless load down her throat and steadily fill $his stomach. $He opens $his eyes slowly, endowed with a belly stuffed to capacity with cum + pump your endless load down $his throat and steadily fill $his stomach. $He opens $his eyes slowly, endowed with a belly stuffed to capacity with cum <<elseif $PC.balls == 2>> - pump load after load down her throat and into $his stomach. $He opens $his eyes slowly, endowed with a belly stuffed with cum + pump load after load down $his throat and into $his stomach. $He opens $his eyes slowly, endowed with a belly stuffed with cum <<elseif $PC.balls == 1>> - blow your huge load down her throat, and diligently $he swallows it all. $He opens $his eyes slowly, endowed with a belly full of cum + blow your huge load down $his throat, and diligently $he swallows it all. $He opens $his eyes slowly, endowed with a belly full of cum <<else>> - blow your load down her throat, and $he swallows it all. $He opens $his eyes slowly, endowed with a belly full of cum + blow your load down $his throat, and $he swallows it all. $He opens $his eyes slowly, endowed with a belly full of cum <</if>> - and a new understanding of @@.mediumaquamarine;her place as a short slave@@. + and a new understanding of @@.mediumaquamarine;$his place as a short slave@@. <</replace>> <<set $activeSlave.oralCount += 1, $oralTotal += 1, $activeSlave.trust += 4>> <</link>> @@ -19634,7 +19636,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Show $him that short girls are easier to abuse">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform $him that you find shorter slaves easier to abuse, smiling widely as an expression of horror spreads across her face. This expression soon changes to one of shock and pain as you slap her open-handed across the face, the sheer force of the strike sending her reeling. A few slaps later and you have $activeSlave.slaveName on all fours begging for mercy as you punish the cheeks of $his ass with spank after spank. When you suddenly shove <<if $PC.dick == 0>>a dildo<<else>>your cock<</if>> up $his ass $he spasms so harshly from the pain that $he reflexively tries to get away, only to be subdued by the weight and strength of your larger, more powerful form. For the next ten minutes, $he gets beaten and choked if $he offers even token resistance to the brutal anal rape. Soon, tears run down the short length of $his body as $he shakes from the force of each excessive thrust into $his anus. The next time you decide to buttfuck $him, $he's @@.gold;terrified into compliance@@ by the knowledge of how little physical resistance $he can muster against you. + You inform $him that you find shorter slaves easier to abuse, smiling widely as an expression of horror spreads across $his face. This expression soon changes to one of shock and pain as you slap $him open-handed across the face, the sheer force of the strike sending $him reeling. A few slaps later and you have $activeSlave.slaveName on all fours begging for mercy as you punish the cheeks of $his ass with spank after spank. When you suddenly shove <<if $PC.dick == 0>>a dildo<<else>>your cock<</if>> up $his ass $he spasms so harshly from the pain that $he reflexively tries to get away, only to be subdued by the weight and strength of your larger, more powerful form. For the next ten minutes, $he gets beaten and choked if $he offers even token resistance to the brutal anal rape. Soon, tears run down the short length of $his body as $he shakes from the force of each excessive thrust into $his anus. The next time you decide to buttfuck $him, $he's @@.gold;terrified into compliance@@ by the knowledge of how little physical resistance $he can muster against you. <<set $activeSlave.trust -= 5>> <<= AnalVCheck()>> <</replace>> @@ -19644,7 +19646,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Show $him that short girls are amusing in the arcade">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform $activeSlave.slaveName that short girls like $him are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag $him off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although her head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching her squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, her precarious position slips and her lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, her neck is held crooked at an unnatural angle by her restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole,@@ though $he can't find the humor@@.gold;in such a terrible plight.@@ Furthermore, her intense exertions during her stay @@.red;negatively effects $his health.@@ Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse. + You inform $activeSlave.slaveName that short girls like $him are delightfully amusing when immured in the arcade. Magnanimous as you are, you have two other slaves drag $him off to be installed in the arcade for a day, so that $he too may see the humor in having short girls serve in the arcade. Though $arcadeName has arcade pens to match any height of slave, you have $activeSlave.slaveName confined in a pen built for a much taller slave. Although $his head and neck protrude from one side of the pen without issue, $he is too short for $his ass to fill the other opening. As a result, $he must use the tips of $his toes maintain an unsteady grip on the rear opening, forcing $him to maintain an extremely taxing stretch just to keep $his body held aloft within the pen. Customers are unable to fuck $his holes but readily delight in watching $him squirm to keep $his body extended and horizontal, even with hard cocks brutally fucking $his face. Somewhere in the grueling, 18-hour marathon of relentless throat fucking, $his precarious position slips and $his lower half tumbles into the interior of the pen proper. Until an attendant rescues $him, $his neck is held crooked at an unnatural angle by $his restraints, as the rest of $his body dangles beneath it. $His ordeal forces $him to accept that a short $girl's place is as an @@.hotpink;amusing arcade hole,@@ though $he can't find the humor@@.gold;in such a terrible plight.@@ Furthermore, $his intense exertions during $his stay @@.red;negatively effects $his health.@@ Your other slaves take note of what you do to short girls who ask questions about their place in your penthouse. <<set $activeSlave.devotion += 5, $activeSlave.trust -= 5, $activeSlave.health -= 5, $activeSlave.oralCount += 55, $oralTotal += 55>> <<set $activeSlave.publicCount += 55>> <</replace>> @@ -19656,7 +19658,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Take pity">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Deciding to take pity, you stand up<<if $PC.dick == 0>>, pull on a strap-on,<</if>> and approach $his crumpled, weeping form. You reach down and take her clasped hands in yours, pulling her gently to her feet and giving $him a quick cuddle. You make it just long enough to reassure $him that you care for $him, but not long enough to frustrate $him even further; her extreme horniness is only sharpened by the hug and the way it traps $his arms between her + Deciding to take pity, you stand up<<if $PC.dick == 0>>, pull on a strap-on,<</if>> and approach $his crumpled, weeping form. You reach down and take $his clasped hands in yours, pulling $him gently to $his feet and giving $him a quick cuddle. You make it just long enough to reassure $him that you care for $him, but not long enough to frustrate $him even further; $his extreme horniness is only sharpened by the hug and the way it traps $his arms between $his <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> fake boobs <<elseif $activeSlave.boobs > 4000>> @@ -19676,13 +19678,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> hard pectorals. <</if>> - $He sniffles, trying to restrain her hopes. You push $him backwards toward the couch, giving $him a kiss to really bring $him to the height of anticipation before laying $him down and sliding your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> <<if $activeSlave.anus > 1>>inside her soft asshole<<else>>up her tight little butt<</if>>. + $He sniffles, trying to restrain $his hopes. You push $him backwards toward the couch, giving $him a kiss to really bring $him to the height of anticipation before laying $him down and sliding your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> <<if $activeSlave.anus > 1>>inside $his soft asshole<<else>>up $his tight little butt<</if>>. <<if $activeSlave.prostate != 0>> - The instant <<if $PC.dick == 1>>your hard dickhead<<else>>the hard tip of your phallus<</if>> presses against her prostate, $he orgasms, squirting <<if $activeSlave.balls == 0>>translucent fluid<<else>>cum<</if>>. $He looks like $he wants to say something, or maybe even apologize, so you shush her with a gentle hand and pull out, letting the fluid run down <<if $activeSlave.scrotum > 0>>her soft scrotum<<else>>the pretty skin between her cumhole and $his anus<</if>> until it glazes her asspussy. You use <<if $PC.dick == 1>>the tip of your cock<<else>>the head of the strap-on<</if>> to massage the fluid into the hole before penetrating it again with the extra lubrication. + The instant <<if $PC.dick == 1>>your hard dickhead<<else>>the hard tip of your phallus<</if>> presses against $his prostate, $he orgasms, squirting <<if $activeSlave.balls == 0>>translucent fluid<<else>>cum<</if>>. $He looks like $he wants to say something, or maybe even apologize, so you shush $his with a gentle hand and pull out, letting the fluid run down <<if $activeSlave.scrotum > 0>>$his soft scrotum<<else>>the pretty skin between $his cumhole and $his anus<</if>> until it glazes $his asspussy. You use <<if $PC.dick == 1>>the tip of your cock<<else>>the head of the strap-on<</if>> to massage the fluid into the hole before penetrating it again with the extra lubrication. <<else>> - Without a prostate or a strong anal fetish, $he'll have trouble climaxing to nothing but buttsex, so you make sure to tend to every erogenous zone $he has left. You guide one of $his hands down so $he can rub <<if $activeSlave.scrotum > 0>>$his scrotum<<else>>the skin between $his legs<</if>>, and make her stimulate one of $his nipples with the other. You <<if $activeSlave.nipples != "fuckable">>pinch and rub<<else>>finger<</if>> her other nipple, and push two fingers of your other hand into $his mouth, making $him suck them. So completely stimulated, $he finally manages to orgasm. + Without a prostate or a strong anal fetish, $he'll have trouble climaxing to nothing but buttsex, so you make sure to tend to every erogenous zone $he has left. You guide one of $his hands down so $he can rub <<if $activeSlave.scrotum > 0>>$his scrotum<<else>>the skin between $his legs<</if>>, and make $his stimulate one of $his nipples with the other. You <<if $activeSlave.nipples != "fuckable">>pinch and rub<<else>>finger<</if>> $his other nipple, and push two fingers of your other hand into $his mouth, making $him suck them. So completely stimulated, $he finally manages to orgasm. <</if>> - You make love to $him until $he's satisfied, and then carry $him to the shower to wash her off. Under the warm water, $he @@.mediumaquamarine;stays trustingly close to your naked body,@@ without even thinking about it. + You make love to $him until $he's satisfied, and then carry $him to the shower to wash $him off. Under the warm water, $he @@.mediumaquamarine;stays trustingly close to your naked body,@@ without even thinking about it. <<set $activeSlave.trust += 5>> <<= AnalVCheck()>> <</replace>> @@ -19690,20 +19692,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Assrape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's an anal sex toy, and you decide to use $him like one. You walk over, reach down, and jerk $him to her feet. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin $him roughly around and use one arm to pin her upper body mercilessly in place while you use your other hand to + $He's an anal sex toy, and you decide to use $him like one. You walk over, reach down, and jerk $him to $his feet. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin $him roughly around and use one arm to pin $his upper body mercilessly in place while you use your other hand to <<if $activeSlave.anus > 2>> - manhandle your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up her roomy ass. It's disappointingly easy, and $he takes it without a struggle, so you reach around her front, down between $his legs, and jam a couple of fingers up there, too. + manhandle your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his roomy ass. It's disappointingly easy, and $he takes it without a struggle, so you reach around $his front, down between $his legs, and jam a couple of fingers up there, too. <<elseif $activeSlave.anus > 1>> shove your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his anus. $He's taken hard anal before, but the angle isn't particularly comfortable, you didn't bother with lube, and you begin to rape $him vigorously without any warning. <<else>> - force your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up her spasming anus. $He'd struggle to take it in a position far more comfortable for anal than standing straight up, and you don't even bother to take it slow. + force your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his spasming anus. $He'd struggle to take it in a position far more comfortable for anal than standing straight up, and you don't even bother to take it slow. <</if>> "<<Master>>, that hurt<<s>>!" $he screams, crying even harder. "Ow, it h-hurt<<s>>! Plea<<s>>e take it out, ow, ow," $he shrieks, and then degenerates into nonverbal caterwauling. <<if $activeSlave.prostate != 0>> - Then, without any warning, $he orgasms. $He's so pent up that the prostate stimulation overpowers the pain. $He shudders, gasps, and then moans, "I'm <<s>>-<<s>>uch a whore, <<Master>>," in such a tone of utter @@.hotpink;submission@@ and dejection that you climax too. Then you drop $him, letting $him slide off you, and go back to your work, leaving $him to clean $himself and the floor. + Then, without any warning, $he orgasms. $He's so pent up that the prostate stimulation overpowers the pain. $He shudders, gasps, and then moans, "I'm <<s>>-<<s>>uch a whore, <<Master>>," in such a tone of utter @@.hotpink;submission@@ and dejection that you climax too. Then you drop $him, letting $his slide off you, and go back to your work, leaving $him to clean $himself and the floor. <<set $activeSlave.devotion += 5>> <<else>> - $He knows $he shouldn't wriggle, that fighting will make it even worse for $him, but you assrape $him so mercilessly that $his body revolts, trying to escape the invading phallus. You have $his arms pinioned securely, so all this struggling does is add to the fun. When you're done, you<<if $PC.dick == 1>> fill $him insides with your cum and<</if>> drop $him, ordering $him to clean $himself up. "Y-ye<<s>> <<Master>>," $he sniffles @@.gold;fearfully,@@ and hurries to obey, a little bent from her burning backdoor. Only later does $he remember that $he still hasn't gotten off. + $He knows $he shouldn't wriggle, that fighting will make it even worse for $him, but you assrape $him so mercilessly that $his body revolts, trying to escape the invading phallus. You have $his arms pinioned securely, so all this struggling does is add to the fun. When you're done, you<<if $PC.dick == 1>> fill $his insides with your cum and<</if>> drop $him, ordering $him to clean $himself up. "Y-ye<<s>> <<Master>>," $he sniffles @@.gold;fearfully,@@ and hurries to obey, a little bent from $his burning backdoor. Only later does $he remember that $he still hasn't gotten off. <<set $activeSlave.trust -= 5>> <</if>> <<= AnalVCheck()>> @@ -19712,7 +19714,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Ignore $his pleas">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to take the next pose in the inspection series, as though $he hadn't broken down at all. There's such understated menace in your voice that $he gets right back to her feet, using the back of a $activeSlave.skin hand to cuff away her tears. "Y-ye<<s>>, <<Master>>," $he sniffles, trying to get $himself under control, and then shudders. + You order $him to take the next pose in the inspection series, as though $he hadn't broken down at all. There's such understated menace in your voice that $he gets right back to $his feet, using the back of a $activeSlave.skin hand to cuff away $his tears. "Y-ye<<s>>, <<Master>>," $he sniffles, trying to get $himself under control, and then shudders. <<if $dairy > 0 && $dairyStimulatorsSetting == 2>> It's never hard to see the exact moment when your slaves remind themselves that you run an industrial Dairy, and that if they displease you, they may find themselves hydrated for milk production from fifty kilogram udders by constant machine rape down their throats and up their asses<<if isFertile($activeSlave) && $dairyPregSetting > 0>> as their wombs steadily fill with life<</if>>. <<elseif $arcade > 0>> @@ -19722,7 +19724,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He knows that there are slaves who are treated much more harshly than $he is, and doesn't want to become one of them. <</if>> - $He staggers out of your office after her inspection, doing her best to ignore her condition. Over the coming week, $he's continually tortured by her libido, cruelly entombed as it is in a body which can no longer give it meaningful relief. $He manages to keep it together, mostly, and her @@.red;sex drive diminishes noticeably.@@ + $He staggers out of your office after $his inspection, doing $his best to ignore $his condition. Over the coming week, $he's continually tortured by $his libido, cruelly entombed as it is in a body which can no longer give it meaningful relief. $He manages to keep it together, mostly, and $his @@.red;sex drive diminishes noticeably.@@ <<set $activeSlave.energy -= 5>> <</replace>> <</link>> @@ -19733,7 +19735,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.belly >= 300000>> - You order $him to get on $his _belly belly and steady $himself, a task that $he carries out quickly and obediently. Once as comfortable as $he can possibly get perched awkwardly atop her straining stomach, + You order $him to get on $his _belly belly and steady $himself, a task that $he carries out quickly and obediently. Once as comfortable as $he can possibly get perched awkwardly atop $his straining stomach, <<else>> You order $him to get beneath your desk on all fours, a task that $he carries out quickly and obediently. Once as comfortable as $he can be perched awkwardly underneath your desk, <</if>> @@ -19743,7 +19745,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $his ass for the inevitable rough anal <</if>> - $he assumes must be coming. Fortunately for $him, it never does. Instead, you kick your feet up and rest them on the small of her back. After a few hours of objectifying degradation in this way, you rise from your chair to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, her experience as a piece of furniture for your comfort @@.hotpink;has increased her submissiveness@@. + $he assumes must be coming. Fortunately for $him, it never does. Instead, you kick your feet up and rest them on the small of $his back. After a few hours of objectifying degradation in this way, you rise from your chair to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness@@. <<set $activeSlave.devotion += 5>> <</replace>> <</link>> @@ -19751,7 +19753,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Use $his breasts as stress balls">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to kneel beside you and stick out $his breasts. $He is similarly unruffled when you first reach over to take one of her + $He came to your office clearly expecting to get fucked, but takes it in stride when you order $him to kneel beside you and stick out $his breasts. $He is similarly unruffled when you first reach over to take one of $his <<if $activeSlave.boobs > 2000>> massive breasts <<elseif $activeSlave.boobs > 1000>> @@ -19761,7 +19763,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> tiny breasts <</if>> - in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss $him hours later, $he scurries out of your office cradling her bruised bosom and @@.gold;trembling from $his recent objectifying experience@@. + in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss $him hours later, $he scurries out of your office cradling $his bruised bosom and @@.gold;trembling from $his recent objectifying experience@@. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> @@ -19784,7 +19786,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case 1>>pathetic <<default>>hypertrophied <</switch>> - balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss $him hours later, $he staggers out of your office trying her best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience@@. + balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes $his time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss $him hours later, $he staggers out of your office trying $his best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience@@. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> @@ -19794,7 +19796,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.belly >= 3000000>> - You pull your chair back from your desk and order $him to lie on her back with her _belly belly to the ceiling. $He isn't sure what you are up to, but it quickly dawns on her as you straddle $his stomach and take a seat. $He groans under the massive pressure increase inside $him, but does her best to hold your weight. + You pull your chair back from your desk and order $him to lie on $his back with $his _belly belly to the ceiling. $He isn't sure what you are up to, but it quickly dawns on $him as you straddle $his stomach and take a seat. $He groans under the massive pressure increase inside $him, but does $his best to hold your weight. <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4>> You manage to get very little work done. The sheer amount of motion <<if $PC.dick == 1>> @@ -19807,9 +19809,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> on your pussy and asshole quickly have you hot and bothered. <</if>> - You can't stop yourself from rubbing against the squirming mass, enjoying the unique undulations across your junk. It doesn't take long to coat $his stomach in a layer of fluids. After a few hours of objectifying degradation in this way, you rise from your enjoyable seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't penetrate $him, her experience as a sex toy for your amusement @@.hotpink;has increased her submissiveness@@. + You can't stop yourself from rubbing against the squirming mass, enjoying the unique undulations across your junk. It doesn't take long to coat $his stomach in a layer of fluids. After a few hours of objectifying degradation in this way, you rise from your enjoyable seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't penetrate $him, $his experience as a sex toy for your amusement @@.hotpink;has increased $his submissiveness@@. <<else>> - After a few hours of objectifying degradation in this way, you rise from your novel seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, her experience as a piece of furniture for your comfort @@.hotpink;has increased her submissiveness@@. + After a few hours of objectifying degradation in this way, you rise from your novel seat to attend business elsewhere in your penthouse and dismiss $activeSlave.slaveName. Although you didn't fuck $him, $his experience as a piece of furniture for your comfort @@.hotpink;has increased $his submissiveness@@. <</if>> <<set $activeSlave.devotion += 2>> <<else>> @@ -19821,21 +19823,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> However, $he is caught off guard when you half sit on $his ass while fucking it, using it like an exercise ball as you bounce up and down. $His <<if ($activeSlave.butt > 12)>> - immense ass fully absorbs your impacts as you pummel her into the ground, + immense ass fully absorbs your impacts as you pummel $him into the ground, <<elseif ($activeSlave.butt > 5)>> - huge ass cushions your thighs as you pummel her into the ground, + huge ass cushions your thighs as you pummel $him into the ground, <<elseif ($activeSlave.butt > 2)>> - ass provides some cushioning as you pound her into the ground, + ass provides some cushioning as you pound $him into the ground, <<else>> - ass does little to cushion you as you fuck her into the ground, + ass does little to cushion you as you fuck $him into the ground, <</if>> - but $activeSlave.slaveName fares much worse in her role as living exercise equipment. By the end of your power workout you manage to work up quite a sweat, while your slave lays limp in the middle of your office with $his gaped + but $activeSlave.slaveName fares much worse in $him role as living exercise equipment. By the end of your power workout you manage to work up quite a sweat, while your slave lays limp in the middle of your office with $his gaped <<if canDoVaginal($activeSlave)>> cunt comically held up in the air. Using $his pussy <<else>> butt comically held up in the air. Using $his ass <</if>> - in such a way @@.hotpink;nearly fucked her senseless,@@ but $he'll remember @@.gold;your objectifying treatment of her@@. + in such a way @@.hotpink;nearly fucked $him senseless,@@ but $he'll remember @@.gold;your objectifying treatment of $him@@. <<set $activeSlave.devotion += 2, $activeSlave.trust -= 2>> <</if>> <</replace>> @@ -19896,19 +19898,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Show $him off in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring her out onto the promenade, still nude, her impressively augmented breasts attracting open stares with their perfect roundness and perkiness. + You bring $his out onto the promenade, still nude, $his impressively augmented breasts attracting open stares with their perfect roundness and perkiness. <<if $activeSlave.sexualFlaw == "attention whore">> The slut loves being the center of attention and wishes $his tits where even more eye catching. <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>> - The slut loves being embarrassed, and $he blushes furiously as $his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>swell shut<</if>> with arousal despite her implants having sapped them off some of their sensitivity. + The slut loves being embarrassed, and $he blushes furiously as $his nipples <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>swell shut<</if>> with arousal despite $his implants having sapped them off some of their sensitivity. <<elseif ($activeSlave.energy > 95)>> - The nympho slut loves being shown off, and $he flaunts her implanted boobs shamelessly. + The nympho slut loves being shown off, and $he flaunts $his implanted boobs shamelessly. <<elseif ($activeSlave.analCount > 100) && ($activeSlave.oralCount > 100)>> $He's such a veteran sex slave that $he takes the stares in stride. <<else>> - $He blushes a little, but tips her chin up and follows you obediently. + $He blushes a little, but tips $his chin up and follows you obediently. <</if>> - When you reach a good spot, you grab her + When you reach a good spot, you grab $his <<if ($activeSlave.weight > 30)>> fat ass <<elseif ($activeSlave.weight > 10)>> @@ -19922,22 +19924,22 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> and <<if ($activeSlave.height >= 185)>> - pull her tall body in + pull $his tall body in <<elseif ($activeSlave.height >= 160)>> - pull her up on tiptoe + pull $his up on tiptoe <<else>> push $his petite form up onto a railing <</if>> - for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize her behind each knee, and + for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize $him behind each knee, and <<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>> collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him. <<if $activeSlave.bellyPreg >= 600000>> - Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. + Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine. <</if>> <<elseif $activeSlave.belly >= 100000>> - pull her as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back her against a rail so that you can continue to fuck her while holding $him. + pull $him as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back $him against a rail so that you can continue to fuck $him while holding $him. <<if $activeSlave.bellyPreg >= 600000>> - Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. + Penetrating $him while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing $his bloated body to rub against you in ways you couldn't imagine. <</if>> <<else>> hoist $his legs up so $he's pinned against your @@ -19965,29 +19967,29 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<= AnalVCheck()>> <</if>> - $He loses all composure, gasping and panting as the massive weight of her augmented chest weighs her down, causing $him to all but collapse against you. Despite this, or perhaps partly because of it, $he begins to orgasm, + $He loses all composure, gasping and panting as the massive weight of $his augmented chest weighs $him down, causing $him to all but collapse against you. Despite this, or perhaps partly because of it, $he begins to orgasm, <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - the discomfort of being half-hard under her chastity cage making her squirm as cum rushes out of the hole at its tip. + the discomfort of being half-hard under $his chastity cage making $him squirm as cum rushes out of the hole at its tip. <<elseif canAchieveErection($activeSlave)>> <<if ($activeSlave.dick > 3)>> - her monster of a cock releasing a jet of cum with each thrust into $him. + $his monster of a cock releasing a jet of cum with each thrust into $him. <<elseif ($activeSlave.dick > 3)>> - her huge cock releasing a jet of cum with each thrust into $him. + $his huge cock releasing a jet of cum with each thrust into $him. <<elseif ($activeSlave.dick > 1)>> $his cock releasing a spurt of cum with each thrust into $him. <<else>> - her tiny dick spurting cum with each thrust into $him. + $his tiny dick spurting cum with each thrust into $him. <</if>> <<elseif ($activeSlave.dick > 9)>> - her huge, soft cock spurting cum as it wiggles to your motions. + $his huge, soft cock spurting cum as it wiggles to your motions. <<elseif ($activeSlave.dick > 0)>> - her soft cock scattering cum all over the place as it flops around. + $his soft cock scattering cum all over the place as it flops around. <<elseif ($activeSlave.belly >= 1500)>> - her <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to her near-total discomfiture. + $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly adding to $his near-total discomfiture. <<elseif $activeSlave.weight > 95>> - her soft body jiggling as $he climaxes. + $his soft body jiggling as $he climaxes. <<elseif ($activeSlave.muscles > 5)>> - her abs convulsing deliciously as $he climaxes. + $his abs convulsing deliciously as $he climaxes. <<elseif canDoVaginal($activeSlave)>> $his pussy tightening. <<else>> @@ -20002,25 +20004,25 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "gagged slave">> -<<link "Give her something else to gag on">> +<<link "Give $him something else to gag on">> <<EventNameDelink $activeSlave>> <<replace "#result">> - As pleasant an image as $activeSlave.slaveName's mouth filled by a $activeSlave.collar is, one of $his mouth's primary purposes is still to provide you with ample <<if $PC.dick == 1>>blowjobs<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunnilingus<</if>>. With $activeSlave.slaveName already kneeling, it is merely a matter of undoing her gag before you can put $his mouth to work. + As pleasant an image as $activeSlave.slaveName's mouth filled by a $activeSlave.collar is, one of $his mouth's primary purposes is still to provide you with ample <<if $PC.dick == 1>>blowjobs<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunnilingus<</if>>. With $activeSlave.slaveName already kneeling, it is merely a matter of undoing $his gag before you can put $his mouth to work. <<if $activeSlave.oralSkill >= 100>> - Though $he has spent much time gagged, her mastery at giving oral is unaffected. + Though $he has spent much time gagged, $his mastery at giving oral is unaffected. <<elseif $activeSlave.oralSkill > 60>> - Though $he has spent much time gagged, her oral skills still provide ample pleasure. + Though $he has spent much time gagged, $his oral skills still provide ample pleasure. <<else>> - $His time spent gagged has limited the growth of her mediocre oral skills, though $he is still able to provide some relief. + $His time spent gagged has limited the growth of $his mediocre oral skills, though $he is still able to provide some relief. <</if>> <<if $activeSlave.teeth == "pointy">> - Though your attention is largely sapped by her tender oral ministrations, you note that $he takes care not to rake you with her sharklike teeth. + Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care not to rake you with $his sharklike teeth. <<elseif $activeSlave.lips > 40>> - Though your attention is largely sapped by her tender oral ministrations, you note that her huge lips are soft and pillowy against you. + Though your attention is largely sapped by $his tender oral ministrations, you note that $his huge lips are soft and pillowy against you. <<elseif $activeSlave.teeth == "gapped">> - Though your attention is largely sapped by her tender oral ministrations, you note that $he takes care to let you get snagged between $his front teeth. + Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to let you get snagged between $his front teeth. <<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>> - Though your attention is largely sapped by her tender oral ministrations, you note that $he takes care to keep her braces off you. + Though your attention is largely sapped by $his tender oral ministrations, you note that $he takes care to keep $his braces off you. <</if>> When you eventually move on, it is with <<if $activeSlave.hLength > 1>> @@ -20028,7 +20030,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> a rub to $activeSlave.slaveName's scalp <</if>> - and the return of the gag to $his mouth. Though her continued gagging is an uncomfortable experience, $activeSlave.slaveName enjoyed @@.hotpink;being free of it for a moment, even if just to pleasure you.@@ + and the return of the gag to $his mouth. Though $his continued gagging is an uncomfortable experience, $activeSlave.slaveName enjoyed @@.hotpink;being free of it for a moment, even if just to pleasure you.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount += 1, $oralTotal += 1>> <</replace>> <</link>> @@ -20042,7 +20044,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Torment $him with the gag">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Though having a $activeSlave.collar constrict $his 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 + Though having a $activeSlave.collar constrict $his mouth is torment enough, you take the time to linger and add to $his torturous existence. $activeSlave.slaveName soon discovers that the straps of a gag can always be made tighter, the <<if ($activeSlave.collar == "ball gag")>> ball can always be made larger, <<elseif ($activeSlave.collar == "bit gag")>> @@ -20052,7 +20054,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif ($activeSlave.collar == "massive dildo gag")>> the dildo can always be made wider and longer, <</if>> - and the punishments rendered for daring to show any discomfort can always be harsher and stricter. Come the end of your session with $him, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of her orgasms, @@.hotpink;and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away quickly, having learnt a harsh lesson about your power over $his body.@@ + and the punishments rendered for daring to show any discomfort can always be harsher and stricter. Come the end of your session with $him, $activeSlave.slaveName <<if $activeSlave.fetish == "masochist">> is mortified by the intensity of $his orgasms, @@.hotpink;and more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;scuttles away quickly, having learnt a harsh lesson about your power over $his body.@@ <<set $activeSlave.trust -= 5>> <<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>> <</replace>> @@ -20060,26 +20062,26 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "back stretch">> -<<link "Fuck her boobs">> +<<link "Fuck $his boobs">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $he <<if canSee($activeSlave)>>sees you <<if $PC.dick == 1>>get your dick out<<else>>approaching her with sapphic lust in your eyes<</if>><<elseif canHear($activeSlave)>>hears you <<if $PC.dick == 1>>get your dick out<<else>>hungrily approach<</if>><<else>>feels your fingertips brush against $his nipples<</if>>, $he + When $he <<if canSee($activeSlave)>>sees you <<if $PC.dick == 1>>get your dick out<<else>>approaching $him with sapphic lust in your eyes<</if>><<elseif canHear($activeSlave)>>hears you <<if $PC.dick == 1>>get your dick out<<else>>hungrily approach<</if>><<else>>feels your fingertips brush against $his nipples<</if>>, $he <<if $activeSlave.energy > 80>>grins with anticipation, <<elseif $activeSlave.trust > 20>>smiles appealingly, - <<else>>does her best to look submissive, + <<else>>does $his best to look submissive, <</if>> and offers you $his chest. <<if $PC.dick == 1>> - <<if $activeSlave.belly >= 300000>>You have to straddle $his _belly stomach to get close enough, but her tantalizing breasts are worth the strain.<</if>> + <<if $activeSlave.belly >= 300000>>You have to straddle $his _belly stomach to get close enough, but $his tantalizing breasts are worth the strain.<</if>> You collect some lubrication for it by sticking your dick in $his mouth. <<if $activeSlave.oralSkill >= 100>> - $He swallows you to your base, and is such a skilled cocksucker that $he salivates at will, doing her best to get you + $He swallows you to your base, and is such a skilled cocksucker that $he salivates at will, doing $his best to get you <<else>> - $He does her best to swallow you as deeply as $he can manage, and get your cock + $He does $his best to swallow you as deeply as $he can manage, and get your cock <</if>> - nice and slick. You pull your member out of her industriously sucking mouth with a pop, and slide it between her warm breasts. $He promptly grabs them and squeezes them together, forming a nice channel for you to fuck. As you start pounding away, $he does her best to crane her head down and suckle your dickhead whenever it appears between her boobs, adding more lubrication from her lewdly wet mouth. $He knows when you're about to climax, and makes no attempt to avoid it, opening $his mouth wide to accept your load. $He catches most of it, but your generous ejaculation spatters her face with pearly decoration. + nice and slick. You pull your member out of $his industriously sucking mouth with a pop, and slide it between $his warm breasts. $He promptly grabs them and squeezes them together, forming a nice channel for you to fuck. As you start pounding away, $he does $his best to crane $his head down and suckle your dickhead whenever it appears between $his boobs, adding more lubrication from $his lewdly wet mouth. $He knows when you're about to climax, and makes no attempt to avoid it, opening $his mouth wide to accept your load. $He catches most of it, but your generous ejaculation spatters $his face with pearly decoration. <<else>> - Deciding to do something a little more intimate than fucking $his cleavage with a strap-on, you walk forward and into her face, pressing her inexorably backwards as $he nuzzles your pussy until $he's forced to collapse onto the ground. Then you scoot backwards a little, until you're + Deciding to do something a little more intimate than fucking $his cleavage with a strap-on, you walk forward and into $his face, pressing $him inexorably backwards as $he nuzzles your pussy until $he's forced to collapse onto the ground. Then you scoot backwards a little, until you're <<if $activeSlave.belly >= 10000>> crammed between $his _belly middle and breasts. <<else>> @@ -20087,7 +20089,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> $His huge breasts rest atop your inner thighs, <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> - her skin taut against yours, from the implants. + $his skin taut against yours, from the implants. <<else>> heavy and soft and female. <</if>> @@ -20107,12 +20109,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You decide to exercise a little maliciousness. You take a step forward, producing a look of <<if $activeSlave.energy > 80>>lustful anticipation<<elseif $activeSlave.trust > 20>>expectation<<else>>trepidation<</if>>, - but then you stop, <<if canSee($activeSlave)>>wordlessly<<else>>loudly<</if>> gesturing at $him to continue. $He does, bending her back forward and backward, concave and convex, rolling $himself around on $his hips a little, and making her <<if $activeSlave.belly >= 5000>>_belly belly and <</if>>breasts move mesmerizingly. Eventually, $he stretches deeply enough that<<if $activeSlave.trust <= 50>> $he lets her guard down and<</if>> $his eyes close again. + but then you stop, <<if canSee($activeSlave)>>wordlessly<<else>>loudly<</if>> gesturing at $him to continue. $He does, bending $him back forward and backward, concave and convex, rolling $himself around on $his hips a little, and making $his <<if $activeSlave.belly >= 5000>>_belly belly and <</if>>breasts move mesmerizingly. Eventually, $he stretches deeply enough that<<if $activeSlave.trust <= 50>> $he lets $his guard down and<</if>> $his eyes close again. <<switch $activeSlave.nipples>> <<case "tiny">> $His tiny little nipples are too small to grab and pull effectively, so you simply flick them, aiming a vicious high-velocity fingernail at each of them, using both hands. <<case "puffy">> - $His puffy nipples provide shamefully easy targets. You grab them in a mercilessly tight grip and haul, jerking her whole body forward until $he's about to topple over. + $His puffy nipples provide shamefully easy targets. You grab them in a mercilessly tight grip and haul, jerking $his whole body forward until $he's about to topple over. <<case "partially inverted">> You grab each of $his nipples around the margins of $his areolae, and squeeze them with such force that, partially inverted as they are, they protrude instantly. <<case "inverted">> @@ -20147,17 +20149,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> kneel down in front of $him. <</if>> - $He begins to straighten, to face you, but you place a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand on $his chest, right between $his breasts, and keep her leaning backward. Then, without any preamble, you take her right breast in both of your hands, bend forward, and take $his nipple into your mouth. $He gasps<<if canTalk($activeSlave)>>, <<say>>s "Oh, <<Master>>"<</if>> quietly, and then begins to moan as you begin to suck powerfully, + $He begins to straighten, to face you, but you place a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand on $his chest, right between $his breasts, and keep $him leaning backward. Then, without any preamble, you take $his right breast in both of your hands, bend forward, and take $his nipple into your mouth. $He gasps<<if canTalk($activeSlave)>>, <<say>>s "Oh, <<Master>>"<</if>> quietly, and then begins to moan as you begin to suck powerfully, <<switch $activeSlave.nipples>> - <<case "tiny">>drawing her tiny nipple entirely into your mouth. - <<case "puffy">>engorging her soft, puffy nipple until it fills your mouth. - <<case "partially inverted">>pulling her partially inverted nipple straight out and into your mouth. - <<case "inverted">>gradually pulling at her inverted nipple until it's finally forced to pop out and into your mouth. - <<case "huge">>her huge nipple filling your mouth comfortably. + <<case "tiny">>drawing $his tiny nipple entirely into your mouth. + <<case "puffy">>engorging $his soft, puffy nipple until it fills your mouth. + <<case "partially inverted">>pulling $his partially inverted nipple straight out and into your mouth. + <<case "inverted">>gradually pulling at $his inverted nipple until it's finally forced to pop out and into your mouth. + <<case "huge">>$his huge nipple filling your mouth comfortably. <<case "fuckable">>drawing an unreasonable amount of breast into your mouth just to keep a seal. - <<default>>pulling her soft nipple and some of the areolae around it into your mouth. + <<default>>pulling $his soft nipple and some of the areolae around it into your mouth. <</switch>> - $His rich milk begins to flow across your tongue, creamy and with a hint of vanilla. $He breathes faster and faster as $he becomes aroused, but then the stimulation peaks. You keep drinking from $him, making no move to stop nursing and start fucking $him. $He sighs with sudden contentment, realizing that you're going to drink every drop $he has, and her sudden relaxation sends a little extra gush of milk into your mouth. $He @@.hotpink;definitely enjoys the experience,@@ leaning back compliantly as you drain that breast and then her left one, too. + $His rich milk begins to flow across your tongue, creamy and with a hint of vanilla. $He breathes faster and faster as $he becomes aroused, but then the stimulation peaks. You keep drinking from $him, making no move to stop nursing and start fucking $him. $He sighs with sudden contentment, realizing that you're going to drink every drop $he has, and $his sudden relaxation sends a little extra gush of milk into your mouth. $He @@.hotpink;definitely enjoys the experience,@@ leaning back compliantly as you drain that breast and then $his left one, too. <<if $activeSlave.boobs > 25000 || ($activeSlave.boobs > 10000 && $activeSlave.lactation > 1)>>Your clothes feel tight around your middle for the rest of the day, you may have indulged a little too much.<</if>> <<set $activeSlave.devotion += 5>> <<EventFetish $activeSlave "boobs">> @@ -20172,11 +20174,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "No">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her no. $He's a good enough slave that making a simple request and having you return a straightforward negative without punishment @@.mediumaquamarine;makes her just slightly more trusting.@@ It's nice to be allowed to ask things. + You tell $him no. $He's a good enough slave that making a simple request and having you return a straightforward negative without punishment @@.mediumaquamarine;makes $him just slightly more trusting.@@ It's nice to be allowed to ask things. <<set $activeSlave.trust += 2>> <</replace>> <</link>> -<br><<link "Show her how much you like her usual outfit">> +<br><<link "Show $him how much you like $his usual outfit">> <<EventNameDelink $activeSlave>> <<replace "#result">> You tell $him to go get dressed as usual. $His face falls a little, but there was no condemnation in your tone, and $he hurries off, @@ -20187,17 +20189,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.bellyFluid >= 5000 || $activeSlave.weight > 95>> big belly jiggling. <<elseif $activeSlave.belly >= 5000>> - as fast as her swollen belly will allow. + as fast as $his swollen belly will allow. <<elseif Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> fake tits bouncing. <<elseif $activeSlave.butt > 4>> - her big booty jiggling. + $his big booty jiggling. <<elseif $activeSlave.boobs > 2000>> udders jiggling. <<else>> - giving you a nice view of her naked rear. + giving you a nice view of $his naked rear. <</if>> - $He returns quickly, in her proper + $He returns quickly, in $his proper <<switch $activeSlave.clothes>> <<case "a toga">> toga @@ -20266,9 +20268,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<default>> $activeSlave.clothes <</switch>> - You tell $him that you like how $he looks, and that $he's pretty. $He wasn't expecting such a blunt compliment, and <<if canSee($activeSlave)>>her $activeSlave.eyeColor eyes flick down to<<else>>$he faces<</if>> the ground for a moment as $he blushes. "T-thank you, <<Master>>," $he stutters. + You tell $him that you like how $he looks, and that $he's pretty. $He wasn't expecting such a blunt compliment, and <<if canSee($activeSlave)>>$his $activeSlave.eyeColor eyes flick down to<<else>>$he faces<</if>> the ground for a moment as $he blushes. "T-thank you, <<Master>>," $he stutters. <br><br> - You add that $he looks so good that $he had better take her nice clean + You add that $he looks so good that $he had better take $his nice clean <<switch $activeSlave.clothes>> <<case "a toga">> toga @@ -20339,13 +20341,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</switch>> off again, because <<if canDoVaginal($activeSlave) && $activeSlave.vagina != 0>> - you're going to <<if $PC.dick>>fuck<<else>>trib<</if>> her senseless. + you're going to <<if $PC.dick>>fuck<<else>>trib<</if>> $his senseless. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave) && $activeSlave.anus != 0>> you're going to fuck $his butt<<if $activeSlave.balls>> until $he cums<</if>>. <<= AnalVCheck()>> <<else>> - $he's going to <<if $PC.dick>>suck your dick until you cover $him in cum<<else>>eat you out until $he's got your pussyjuice running down her chin<</if>>. + $he's going to <<if $PC.dick>>suck your dick until you cover $him in cum<<else>>eat you out until $he's got your pussyjuice running down $his chin<</if>>. <<set $activeSlave.oralCount += 1, $oralTotal += 1>> <</if>> $He giggles at the sudden lewdness, and quickly strips naked again, complimented and @@.hotpink;eager to be used.@@ @@ -20355,13 +20357,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Put $him in a string bikini">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that the wardrobe's sorting system will present her with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thank<<s>>, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He makes an entrance when $he comes back, spinning around to show off. $He's wearing the briefest possible string bikini. The top, rather than having patches of material to cover $his nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front, <<if $activeSlave.dick>>which looks rather sad and alone, pushed aside by her dick as it is<<elseif $activeSlave.labia>>and it's embraced completely by her generous pussylips<<else>>and it threatens to disappear inside her pussylips<</if>>. "Thi<<s>> feel<<s>> <<s>>o hot, <<Master>>," $he <<say>>s, and + You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thank<<s>>, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He makes an entrance when $he comes back, spinning around to show off. $He's wearing the briefest possible string bikini. The top, rather than having patches of material to cover $his nipples, forms a string triangle around them, framing them but not covering them. The bottom is a single string in front, <<if $activeSlave.dick>>which looks rather sad and alone, pushed aside by $his dick as it is<<elseif $activeSlave.labia>>and it's embraced completely by $his generous pussylips<<else>>and it threatens to disappear inside $his pussylips<</if>>. "Thi<<s>> feel<<s>> <<s>>o hot, <<Master>>," $he <<say>>s, and <<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">> - blushes cutely. $He looks up at you, sees the way you're staring at $him, and hangs her head, blushing even harder. + blushes cutely. $He looks up at you, sees the way you're staring at $him, and hangs $his head, blushing even harder. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">> - turns around again, bending a little and cocking $his hips to show off the way the string between $his buttocks totally fails to conceal her <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>. + turns around again, bending a little and cocking $his hips to show off the way the string between $his buttocks totally fails to conceal $his <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">> - bounces her + bounces $his <<if $activeSlave.boobsImplant>> fake tits. <<elseif $activeSlave.boobs > 8000>> @@ -20373,11 +20375,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> petite chest. <</if>> - Giggling, $he bounces harder, and $his nipples escape from her top, such as it is. + Giggling, $he bounces harder, and $his nipples escape from $his top, such as it is. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>> and attempts to pull the strings over the front of $his belly. Without delay, they slide right back to the sides of the _belly dome, eliciting a giggle from the preggo slut. <<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">> - sneaks a hand under the string around $his waist, tugging her bottom up <<if $activeSlave.vagina != -1>>until the string between $his legs is pulled up into the entrance of her womanhood<<else>>and turning sideways to suggest $his ass<</if>>. "Guy<<s>>'ll <<if $activeSlave.assignment == "whore">>pay money for<<else>>line up to fuck<</if>> thi<<s>>," $he giggles. + sneaks a hand under the string around $his waist, tugging $his bottom up <<if $activeSlave.vagina != -1>>until the string between $his legs is pulled up into the entrance of $his womanhood<<else>>and turning sideways to suggest $his ass<</if>>. "Guy<<s>>'ll <<if $activeSlave.assignment == "whore">>pay money for<<else>>line up to fuck<</if>> thi<<s>>," $he giggles. <<else>> bounces a little, smiling. "I'm ba<<s>>ically naked," $he giggles. "Today i<<s>> going to be fun. The other girl<<s>>'ll be jealou<<s>> you wanted me to look <<s>>o <<s>>lutty. Love you, <<Master>>." <</if>> @@ -20388,21 +20390,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Force uncomfortable straps on $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that the wardrobe's sorting system will present her with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thanks, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He's wrong to be so enthusiastic. $He comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what $he was expecting, but $he did her best to obey. $He's @@.gold;tightened her own straps down@@ until they're just short of cutting off circulation, in an obvious effort to please you. You ask her how $he likes her outfit. "It'<<s>> ni<<c>>e, <<Master>>," $he <<say>>s, but $he sounds a little sad. + You tell $him that the wardrobe's sorting system will present $him with a new outfit, just for today. $He's to go try it on and come right back, to see how it fits. "Thanks, <<Master>>!" $he <<say>>s brightly, and hurries off to see what's in store for $him. $He might be a slave and a $desc but girls everywhere love trying on new clothes. $He's wrong to be so enthusiastic. $He comes obediently back, wearing a set of cruelly uncomfortable leather straps in the general shape of a bikini, but much tighter and more restrictive. It isn't at all what $he was expecting, but $he did $his best to obey. $He's @@.gold;tightened $his own straps down@@ until they're just short of cutting off circulation, in an obvious effort to please you. You ask $him how $he likes $his outfit. "It'<<s>> ni<<c>>e, <<Master>>," $he <<say>>s, but $he sounds a little sad. <<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">> "I'm ju<<s>>t a worthle<<ss>> humiliation <<s>>lut. I love having <<s>>teel ring<<s>> around my hole<<s>> like thi<<s>>," $he adds. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">> $He turns to show you $his asshole, framed by a steel ring that spreads $his buttocks to keep it nice and defenseless. "I know my backpu<<ss>>y'<<s>> the be<<s>>t thing about me," $he adds. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">> - $He does her best to thrust out $his chest, making the straps creak. "I know I'm, I'm ju<<s>>t, ju<<s>>t a pair of boob<<s>>," $he adds. + $He does $his best to thrust out $his chest, making the straps creak. "I know I'm, I'm ju<<s>>t, ju<<s>>t a pair of boob<<s>>," $he adds. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>> $He does $his best to thrust out $his _belly belly, making the straps creak ominously. "I know I'm, I'm ju<<s>>t, ju<<s>>t a baby maker," $he adds. <<elseif $activeSlave.assignment == "whore" || $activeSlave.assignment == "serve the public">> - $He hangs her head. "I feel like a worthle<<ss>> <<if $activeSlave.assignment == "whore">>whore<<else>>bitch<</if>>," $he adds. "Gue<<ss>> I am." + $He hangs $his head. "I feel like a worthle<<ss>> <<if $activeSlave.assignment == "whore">>whore<<else>>bitch<</if>>," $he adds. "Gue<<ss>> I am." <<else>> $He indicates the steel rings that frame $his holes and keep them defenseless. "I know I'm ju<<s>>t a collection of fuckhole<<s>>," $he adds. <</if>> - $He sounds like $he's trying to convince $himself, but her @@.hotpink;abasement us not feigned.@@ + $He sounds like $he's trying to convince $himself, but $his @@.hotpink;abasement us not feigned.@@ <<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>> <</replace>> <</link>> @@ -20413,13 +20415,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Abuse $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that her <<= WrittenMaster($activeSlave)>> is intending to do nothing, $he blushes and begins pulling on $his belly, attempting to free $himself. + You lean against a wall and take a moment to enjoy your slave's discomfort. Realizing that $his <<= WrittenMaster($activeSlave)>> is intending to do nothing, $he blushes and begins pulling on $his belly, attempting to free $himself. <<if ($activeSlave.broodmother === 2) && ($activeSlave.preg >= 30)>> - $His innumerable brood are awakened by her exertions and begin to move, testing the thin walls of the womb constraining them and causing $his belly to throb ominously. You count the number of infants distinctly outlined against your poor hyperbroodmother's straining body. + $His innumerable brood are awakened by $his exertions and begin to move, testing the thin walls of the womb constraining them and causing $his 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 $his belly slightly further out through the doorway, but, in the effort, only really manages to wedge it more firmly. It bulges ominously from the added pressure. <<else>> - The massively pregnant slave's belly clutches in a false contraction and $he pulls several <<if $showInches == 2>>inches<<else>>centimeters<</if>> further out through the door frame before it expands again, leaving her even more hopelessly stuck + The massively pregnant slave's belly clutches in a false contraction and $he pulls several <<if $showInches == 2>>inches<<else>>centimeters<</if>> further out through the door frame before it expands again, leaving $his even more hopelessly stuck <</if>> <br><br> <<if !canTalk($activeSlave)>> @@ -20430,17 +20432,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><br> You judge that you've seen enough and move forward. <<if $activeSlave.butt > 10>> - Wading in between her huge ass cheeks + Wading in between $his huge ass cheeks <<elseif $activeSlave.butt > 4>> Grabbing a handful of one generous ass cheek, <<else>> Slapping a pert ass cheek, <</if>> <<if canDoVaginal($activeSlave)>> - you hilt yourself in her pregnant pussy and begin pounding. + you hilt yourself in $his pregnant pussy and begin pounding. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave)>> - you hilt yourself in her butthole and begin pounding. + you hilt yourself in $his butthole and begin pounding. <<= AnalVCheck()>> <<else>> you push them together around your cock and begin pounding. @@ -20464,28 +20466,28 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.devotion > 95>> licks $his lips, <<if $activeSlave.amp == 1>> - wiggling the stumps of $his legs and swiveling $his hips to give you a clear angle at her hungry <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. + wiggling the stumps of $his legs and swiveling $his hips to give you a clear angle at $his hungry <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. <<else>> - spreading $his 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. + spreading $his legs and revealing more of $his massive underbelly while angling $his wanting <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>> at the perfect angle for fucking. <</if>> <<elseif $activeSlave.devotion > 50>> - blushes, swiveling $his hips to give you easy access to her <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. + blushes, swiveling $his hips to give you easy access to $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. <<elseif $activeSlave.devotion > 20>> blushes and leans into $his belly, knowing what to expect. <<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>> moans nervously. <<elseif ($activeSlave.trust < -50)>> - yelps, turning away from you and clenching $his eyes shut as her + yelps, turning away from you and clenching $his eyes shut as $his <<if $activeSlave.amp == 1>> - stumps push toward each other, clearly trying (and failing) to conceal her <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. + stumps push toward each other, clearly trying (and failing) to conceal $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. <<else>> - legs instinctively clench together to hide her <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. + legs instinctively clench together to hide $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. <</if>> <<else>> - snorts derisively despite her vulnerability. + snorts derisively despite $his vulnerability. <</if>> <br><br> - You step forward and run an appreciative hand over the surface of $his belly. $His womb is packed so full that the outline of her squirming children is obvious under her stretched-thin flesh. $He groans at your touch, clearly in some distress, and you promise $him that you'll free her once you've finished up. + You step forward and run an appreciative hand over the surface of $his belly. $His womb is packed so full that the outline of $his squirming children is obvious under $his stretched-thin flesh. $He groans at your touch, clearly in some distress, and you promise $him that you'll free $him once you've finished up. <<if $activeSlave.devotion > 95>> 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>> @@ -20493,9 +20495,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.devotion > 20>> You can see tears streaming down the slave's face from the discomfort $he's experiencing, but $he nods that $he's ready. <<elseif ($activeSlave.trust < -20) && ($activeSlave.devotion > -10)>> - The slave cries and begs you to finish quickly and help her before $he bursts. + The slave cries and begs you to finish quickly and help $him before $he bursts. <<elseif ($activeSlave.trust < -50)>> - The shock of contact with your body causes the terrified slave's skin to contract, as if $he's trying to pull away despite her current reality, and her only response to your promise is sobbing. + The shock of contact with your body causes the terrified slave's skin to contract, as if $he's trying to pull away despite $his current reality, and $his only response to your promise is sobbing. <<else>> The slave <<if !canTalk($activeSlave)>> @@ -20503,19 +20505,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> responds by telling you to <</if>> - just fuck her already and let her move on with her day. + just fuck $him already and let $him move on with $his day. <</if>> You let your hand wander downward <<if canDoVaginal($activeSlave)>> - and then push down on the base of $his clit with finger and thumb, making her whimper, before removing your hand and burying your cock inside $him. + and then push down on the base of $his clit with finger and thumb, making $him whimper, before removing your hand and burying your cock inside $him. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave)>> - and circle $his anus with a finger, making her whimper, before removing your hand and burying your cock inside $him. + and circle $his anus with a finger, making $him whimper, before removing your hand and burying your cock inside $him. <<= AnalVCheck()>> <<else>> - and trace the edge of her chastity with a finger, making her whimper, before removing your hand and squeezing $his rear around your cock. + and trace the edge of $his chastity with a finger, making $him whimper, before removing your hand and squeezing $his rear around your cock. <</if>> - As you fuck $him, her poor, tortured belly wobbles against the constraining door frame and the frame itself groans in protest. $He 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 + As you fuck $him, $his poor, tortured belly wobbles against the constraining door frame and the frame itself groans in protest. $He grinds in rhythm to your pistoning until the back and forth movement of $his sloshing tummy overpowers $his efforts and sends $him 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 $his own womb drives you over the edge and you pull out, ejaculating all over $his <<if $activeSlave.butt > 10>> enveloping ass cleavage. <<elseif $activeSlave.butt > 4>> @@ -20524,7 +20526,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t pert ass. <</if>> <br><br> - You step back, taking one last appreciative look at your trapped slave, then call a team of menials to remove the door from its foundation to free $him. Though your slave is extricated 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? + You step back, taking one last appreciative look at your trapped slave, then call a team of menials to remove the door from its foundation to free $him. Though your slave is extricated uninjured, your decision to use $him before saving $him 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>> @@ -20610,7 +20612,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Vindicate $his fears">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You set the $PC.refreshment aside on your desk, then spin around as the slave least expects it/*TODO: this sentence needs work*/, delivering a fierce backhand slap to $his <<if $activeSlave.face >= -10>>pretty<<else>>homely<</if>> face that nearly sends $him to the ground. You instruct $him to be more careful in future, and that you won't tolerate slaves that shy away from you for any reason, nor ones that are clumsy enough to nearly drop a serving tray while standing still. $He all but begs upon $his hands and knees for your forgiveness. You dismiss $him without further comment, and sit down to enjoy your evening refreshments. The battered, dejected slave slinks away, @@.gold;choking down tears.@@ $He will be @@.hotpink;less careless@@ in future. + You set the $PC.refreshment aside on your desk, then, when the slave leasts expects, whirl around, delivering a fierce backhand slap to $his <<if $activeSlave.face >= -10>>pretty<<else>>homely<</if>> face that nearly sends $him to the ground. You instruct $him to be more careful in future, and that you won't tolerate slaves that shy away from you for any reason, nor ones that are clumsy enough to nearly drop a serving tray while standing still. $He all but begs upon $his hands and knees for your forgiveness. You dismiss $him without further comment, and sit down to enjoy your evening refreshments. The battered, dejected slave slinks away, @@.gold;choking down tears.@@ $He will be @@.hotpink;less careless@@ in future. <<set $activeSlave.devotion += 10>> <<set $activeSlave.trust -= 10>> <</replace>> diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index cadb2bc04417e200aa88114b65048378db85c49a..c0fa137bb1893f8211ff3f761ee1c280db03344f 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -174,6 +174,7 @@ <</if>> /* 000-250-006 */ +<<setAssistantPronouns>> <<setLocalPronouns $activeSlave>> <<setLocalPronouns $subSlave 2>> <<setSpokenLocalPronouns $activeSlave $subSlave>> @@ -1354,7 +1355,7 @@ $he adds impishly. Hearing this, $subSlave.slaveName lets the breast pop free of <br><<link "What a cute couple">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell them they make a cute couple. The slaves start with surprise, since they didn't know you were watching, producing a delightful jiggle of smashed-together boob. "Thank you, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>," they chorus correctly, before turning back to look at each other. They take your comment quite seriously, both of them seemingly forgetting that they're in the middle of having sex to consider it. $activeSlave.slaveName speaks first. + You tell them they make a cute couple. The slaves start with surprise, since they didn't know you were watching, producing a delightful jiggle of smashed-together boob. "Thank you, <<= properMaster()>>," they chorus correctly, before turning back to look at each other. They take your comment quite seriously, both of them seemingly forgetting that they're in the middle of having sex to consider it. $activeSlave.slaveName speaks first. "I gue<<ss>> I never really thought about you that way," $he says to the huge-boobed <<if $subSlave.physicalAge > 30>>_woman2<<elseif $subSlave.physicalAge > 18>>_girl2<<elseif $subSlave.physicalAge > 12>>teen<<else>>_loli2<</if>> trapped beneath $him. <br><br> @@ -2095,7 +2096,7 @@ $he adds impishly. Hearing this, $subSlave.slaveName lets the breast pop free of <<replace "#result">> <<set $universalRulesConsent = 0>> <<set _belly = bellyAdjective($subSlave)>> - You clear your throat for the slaves' attention and verbally order $assistantName to rescind the penthouse rule against interslave rape. <<if $assistant>>Her<<else>>Its<</if>> avatar pops up nearby and confirms the rules change. <<if $assistant>>"Done," she says. "And I approve. Poor girls like $activeSlave.slaveName should be able to take what they need."<<else>>"Done," it says.<</if>> + You clear your throat for the slaves' attention and verbally order $assistantName to rescind the penthouse rule against interslave rape. _HisA avatar pops up nearby and confirms the rules change. <<if $assistant>>"Done," _heA says. "And I approve. Poor girls like $activeSlave.slaveName should be able to take what they need."<<else>>"Done," _heA says.<</if>> <br><br> You give no explicit command to the pair of slaves in front of you, but they understand you perfectly. $subSlave.slaveName pales; <<if $subSlave.fetishKnown && $subSlave.fetish == "sub">>_he2 likes getting fucked, but having someone ordered to rape _him2 is a bit much<<elseif $subSlave.fetishKnown && $subSlave.fetish == "masochist">>_he2 likes being hurt, but having the flirty interchange converted instantly into a situation in which _he2 has no control at all kills _his2 mood<<else>>_he2 wasn't seriously adverse to having sex, but being laid open to rape isn't _his2 idea of a good time<</if>>. $activeSlave.slaveName, meanwhile, looks <<if $subSlave.fetishKnown && $subSlave.fetish == "dom">>rather pleased. $He likes being on top enough that $he's willing to use force if necessary<<elseif $subSlave.fetishKnown && $subSlave.fetish == "sadist">>positively predatory. The sadistic bitch actually prefers it this way<<else>>rather conflicted. $He's obviously relieved $he'll be getting relief, but obviously has some mixed feelings about using force to get what $he wants<</if>>. <br><br> diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw index 6651b4d49724bca65e50568a85c94bfac4bdc859..6e57f8b772125e7fe21e3f9800a1eb55423a8d9e 100644 --- a/src/uncategorized/REroyalblood.tw +++ b/src/uncategorized/REroyalblood.tw @@ -34,7 +34,7 @@ <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.canRecruit = 0>> <<set $activeSlave.health = random(30,60)>> -<<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> +<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<set _princess = clone($activeSlave)>> /*prince*/ <<set $activeSlave.ID = $activeSlave.ID + 1000>> @@ -86,7 +86,7 @@ <<set $activeSlave.combatSkill = 1>> <<set $activeSlave.canRecruit = 0>> <<set $activeSlave.health = random(30,60)>> -<<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> +<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<set _prince = clone($activeSlave)>> /*Queen*/ <<set $activeSlave.ID = $activeSlave.ID + 1>> @@ -140,14 +140,16 @@ <<set $activeSlave.pubertyXY = 0>> <<set $activeSlave.canRecruit = 0>> <<set $activeSlave.health = random(30,60)>> -<<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> +<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<set _queen = clone($activeSlave)>> +<<setAssistantPronouns>> + One unfortunate consequence of existing in a global world is that business opportunities continue to crop up unabated by the onset of night in one corner of the world or another, an inconsiderate phenomenon for arcology owners who happen to be asleep when an event of importance takes place outside the walls of their arcology. This particular evening you are awoken by an alert from $assistantName, unusually intense for this late hour. <<if $assistant > 0>> - "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, there is a time sensitive enslavement opportunity available if you're interested." She pauses before continuing. "You're going to want to see this one <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>." + "<<= properMaster()>>, there is a time sensitive enslavement opportunity available if you're interested." _HeA pauses before continuing. "You're going to want to see this one <<= properMaster()>>." <<else>> - It informs you that there is a time sensitive enslavement opportunity for you to peruse, and that it has calculated the potential rewards are worthy of your consideration even in the middle of the night. + _HeA informs you that there is a time sensitive enslavement opportunity for you to peruse, and that _heA has calculated the potential rewards are worthy of your consideration even in the middle of the night. <</if>> <br><br> A convenient video feed is brought up, displaying a quick visual summary of the opportunity at hand. @@ -354,7 +356,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.health = random(30,60)>> <<set $activeSlave.canRecruit = 0>> - <<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<set $activeSlave.recruiter = 0>> /* override New Slave Intro */ <</for>> @@ -405,7 +407,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.health = random(30,60)>> <<set $activeSlave.canRecruit = 0>> - <<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<set $activeSlave.recruiter = 0>> /* override New Slave Intro */ <</for>> @@ -579,7 +581,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.health = random(30,60)>> <<set $activeSlave.canRecruit = 0>> - <<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<set $activeSlave.recruiter = 0>> /* override New Slave Intro */ <</for>> @@ -636,7 +638,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.health = random(30,60)>> <<set $activeSlave.canRecruit = 0>> - <<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<set $activeSlave.recruiter = 0>> /* override New Slave Intro */ <</for>> @@ -693,7 +695,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.health = random(30,60)>> <<set $activeSlave.canRecruit = 0>> - <<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<set $activeSlave.recruiter = 0>> /* override New Slave Intro */ <</for>> @@ -766,7 +768,7 @@ Time is short, but you are well placed to acquire some choice slaves. With an ad <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.health = random(30,60)>> <<set $activeSlave.canRecruit = 0>> - <<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<set $activeSlave.recruiter = 0>> /* override New Slave Intro */ <</for>> diff --git a/src/uncategorized/arcmgmt.tw b/src/uncategorized/arcmgmt.tw index b39f08b2b4f086272575761803d43aace10b2f62..20c87eb22a22e04af8bfecd21a031e4a787b547a 100644 --- a/src/uncategorized/arcmgmt.tw +++ b/src/uncategorized/arcmgmt.tw @@ -612,6 +612,7 @@ $menialBioreactors -= _expirationBR>> <<if $secExp == 1>> <<if $docks < 4 && $railway < 4>> <<set _weatherFreeze = 1>> + <<set $weatherAwareness = 1>> <br>//The terrible weather is @@.red;preventing people from entering or leaving@@ your arcology. Improving your transport infrastructure will prevent this from happening.// <<else>> <<set _weatherFreeze = 0>> @@ -632,6 +633,7 @@ $menialBioreactors -= _expirationBR>> <</if>> <<elseif $antiWeatherFreeze < 1>> <<set _weatherFreeze = 1>> + <<set $weatherAwareness = 1>> <br>//The terrible weather is @@.red;preventing people from entering or leaving@@ your arcology. Improving your transport infrastructure will prevent this from happening.// <<else>> <<set _weatherFreeze = 0>> @@ -1006,9 +1008,9 @@ _percTopClass = Math.trunc(($topClass / ($ACitizens + $ASlaves)) * 1000) / 10>> <<if $arcologies[0].FSBodyPuristLaw == 1>>The average slave is quite healthy. <<elseif $arcologies[0].FSTransformationFetishistLaw == 1>> <<if $arcologies[0].FSTransformationFetishistResearch == 1>> - Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>an M cup bust is below average among the slave population<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. + Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>an M-cup bust is below average among the slave population<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. <<else>> - Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>a D cup bust is below average among the slave population.<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. + Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>a D-cup bust is below average among the slave population.<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. <</if>> <</if>> <<if $arcologies[0].FSSlimnessEnthusiastSMR == 1>>Most of the slave population is quite slim and physically fit. diff --git a/src/uncategorized/arcologyDescription.tw b/src/uncategorized/arcologyDescription.tw index eb67268338ab27f0477eae851b6a592130ddd19c..2838e04ad535c980e5c8a43f2d4e2a9bbe4957a8 100644 --- a/src/uncategorized/arcologyDescription.tw +++ b/src/uncategorized/arcologyDescription.tw @@ -631,9 +631,9 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el <<if $arcologies[0].FSBodyPuristLaw == 1>>The average slave is quite healthy. <<elseif $arcologies[0].FSTransformationFetishistLaw == 1>> <<if $arcologies[0].FSTransformationFetishistResearch == 1>> - Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>an M cup bust is below average among the slave population<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. + Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>an M-cup bust is below average among the slave population<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. <<else>> - Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>a D cup bust is below average among the slave population.<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. + Breast implants are almost universal; <<if $arcologies[0].FSSlimnessEnthusiast == "unset">>a D-cup bust is below average among the slave population.<<else>>even the most lithe slave sports a pair of overly round chest balloons<</if>>. <</if>> <</if>> <<if $arcologies[0].FSSlimnessEnthusiastSMR == 1>>Most of the slave population is quite slim and physically fit. diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw index 08b8c40dcbf1e886d378111dda795d00dadceaa4..e031cd6f9a526fbdee55bccd03d201b72fbcea3d 100644 --- a/src/uncategorized/assistantEvents.tw +++ b/src/uncategorized/assistantEvents.tw @@ -6,12 +6,13 @@ <<if $seeImages == 1>><<= assistantArt(3)>><</if>> +<<setAssistantPronouns>> <<switch $Event>> <<case "assistant">> -One morning, after seeing to an immense pile of business with $assistantName program's able assistance, you are struck by the strangeness of the situation. You spent the past hours talking back and forth as though to a human personal assistant, getting information and responses in the program's impersonal, genderless voice. You ask the program what it thinks of its duties. +One morning, after seeing to an immense pile of business with $assistantName program's able assistance, you are struck by the strangeness of the situation. You spent the past hours talking back and forth as though to a human personal assistant, getting information and responses in the program's impersonal, genderless voice. You ask the program what _heA thinks of _hisA duties. <br><br> -"<<= properTitle()>>, that is not a correct way of thinking about me. I am not an artificial intelligence; I am simply a personal assistant program. I am different from an alarm clock only by degree of complexity. I exist to be useful and cannot approve or disapprove of anything." It pauses. +"<<= properTitle()>>, that is not a correct way of thinking about me. I am not an artificial intelligence; I am simply a personal assistant program. I am different from an alarm clock only by degree of complexity. I exist to be useful and cannot approve or disapprove of anything." _HeA pauses. <br><br> "However, if I understand the line of questioning correctly, I can make myself more entertaining, if you wish." The voice grows sultry and feminine. "I'd be happy to speak a little differently, to refer to myself as female, and to act as though some of the more complex sex toys in the arcology are, well, me." @@ -21,13 +22,13 @@ One morning, after seeing to an immense pile of business with $assistantName pro <<set _smartPiercings = 0>> <<for $i = 0; $i < $slaves.length; $i++>> <<if ($slaves[$i].releaseRules == "permissive") || ($slaves[$i].releaseRules == "masturbation")>> - <<set $activeSlave = $slaves[$i]>> - <<set _smartPiercings = 1>> - <<break>> + <<set $activeSlave = $slaves[$i]>> + <<set _smartPiercings = 1>> + <<break>> <<elseif ($slaves[$i].assignment == "take classes")>> - <<set $activeSlave = $slaves[$i]>> - <<set _smartPiercings = 1>> - <<break>> + <<set $activeSlave = $slaves[$i]>> + <<set _smartPiercings = 1>> + <<break>> <</if>> <</for>> <<if _smartPiercings == 0>> @@ -36,42 +37,42 @@ One morning, after seeing to an immense pile of business with $assistantName pro <<set _smartPiercings = 0>> <<for $i = 0; $i < $slaves.length; $i++>> <<if ($slaves[$i].clitPiercing == 3)>> - <<set _smartPiercings = 1>> - <<break>> + <<set _smartPiercings = 1>> + <<break>> <</if>> <</for>> <<setLocalPronouns $activeSlave>> -One night, after a long day of sex and business, you're starting to think about bed when the abstract glowing shape that symbolizes your smoky-voiced personal assistant pops up on the nearest screen. She's become very helpful monitoring, training, and disciplining slaves. Tonight, she's added an unmistakable tone of sexual satiation in her voice. "<<= properTitle()>>, I enjoyed my duties today," she purrs. "Did you see how $activeSlave.slaveName's muscles spasmed when I fucked $him earlier?" That's how she refers to a slave having one of the penthouse's advanced sex toys used on $him, since $assistantName controls them. +One night, after a long day of sex and business, you're starting to think about bed when the abstract glowing shape that symbolizes your smoky-voiced personal assistant pops up on the nearest screen. _HeA's become very helpful monitoring, training, and disciplining slaves. Tonight, _heA's added an unmistakable tone of sexual satiation in _hisA voice. "<<= properTitle()>>, I enjoyed my duties today," _heA purrs. "Did you see how $activeSlave.slaveName's muscles spasmed when I fucked $him earlier?" That's how _heA refers to a slave having one of the penthouse's advanced sex toys used on $him, since $assistantName controls them. <br><br> -She continues more seriously, +_HeA continues more seriously, <<if _smartPiercings == 0>> "I'm sure you've seen those expensive smart piercings the body mod studio can implant. I think they would work a little bit better now than when I was a boring old secretary type. I'm not a true artificial intelligence, but I can adapt with experience, and I've had a lot of lovely experience lately! Also, a lot of the computing power I use to be sexy would help me adapt smart piercings to individual slaves' sexualities." <<else>> "You may have noticed that the smart implants you've got your slaves wearing are working a little bit better than when I was a boring old secretary type. I'm not a true artificial intelligence, but I can adapt with experience, and I've had a lot of lovely experience lately! Also, a lot of the computing power I use to be sexy helps me adapt smart piercings to individual slaves' sexualities." <</if>> <br><br> -"One more thing, <<= properTitle()>>!" Her symbol flashes brightly. "I could stay like I am now, a hot voice with this symbol representing me when I need to show up on screens. Or, I could slip into something a little sexier. How about this?" The symbol vanishes, and is replaced by a cute little schoolgirl character. She bounces up and down experimentally. "This appearance would work best with an excited voice," she exclaims. She blows you a kiss. The schoolgirl's body shrinks down and all her clothing falls off. A small pair of wings pops out from the pile of clothes and a fairy stands up. "Or I could be your tiny and adorable fairy companion!" She shouts excitedly while waving her arms. +"One more thing, <<= properTitle()>>!" _HisA symbol flashes brightly. "I could stay like I am now, a hot voice with this symbol representing me when I need to show up on screens. Or, I could slip into something a little sexier. How about this?" The symbol vanishes, and is replaced by a cute little schoolgirl character. _HeA bounces up and down experimentally. "This appearance would work best with an excited voice," she exclaims. _HeA blows you a kiss. The schoolgirl's body shrinks down and all _hisA clothing falls off. A small pair of wings pops out from the pile of clothes and a fairy stands up. "Or I could be your tiny and adorable fairy companion!" _HeA shouts excitedly while waving _hisA arms. <<if $seePreg != 0>> - The fairy's belly begins to swell out, her breasts getting puffier and leaking a drop of milk. "Or maybe you want your little buddy to be filled with adorable little babies, you little minx" she playfully teases. + The fairy's belly begins to swell out, _hisA breasts getting puffier and leaking a drop of milk. "Or maybe you want your little buddy to be filled with adorable little babies, you little minx" she playfully teases. <</if>> -The fairy rapidly grows to adult size, becomes curvier and more mature, her hair pulls itself back into a bun, and her clothes change into a business suit. A pair of glasses appears on her nose, and she looks at you over their tops. "Or I could be businesslike. And mature." She snaps her fingers, and her bun falls away into long flowing locks. +The fairy rapidly grows to adult size, becomes curvier and more mature, _hisA hair pulls itself back into a bun, and _hisA clothes change into a business suit. A pair of glasses appears on _hisA nose, and she looks at you over their tops. "Or I could be businesslike. And mature." _HeA snaps _hisA fingers, and _hisA bun falls away into long flowing locks. <<if $seePreg != 0>> - Her body glows and swells, tearing out of her suit with the pregnant figure of an ancient goddess. "Or I could be beautiful and fertile while caring for your slaves." + _HisA body glows and swells, tearing out of _hisA suit with the pregnant figure of an ancient goddess. "Or I could be beautiful and fertile while caring for your slaves." <<if $seeHyperPreg == 1>> - She focuses intently as her stomach expands further. "And if that wasn't enough, how about me being so pregnant I'm about to burst?" + _HeA focuses intently as _hisA stomach expands further. "And if that wasn't enough, how about me being so pregnant I'm about to burst?" <</if>> - Her water breaks followed by dozens of babies as her belly flattens. + _HisA water breaks followed by dozens of babies as _hisA belly flattens. <</if>> <<if $minimumSlaveAge < 13>> - She glances away shyly as her body shrinks to a childish form. "Or maybe you'd like something a little more young and tight." + _HeA glances away shyly as _hisA body shrinks to a childish form. "Or maybe you'd like something a little more young and tight." <<if $fertilityAge < 13 && $seePreg != 0>> - She moans and rubs her belly as it begins to expand with pregnancy. "Or maybe you like your little girls with a little bun in the oven? + _HeA moans and rubs _hisA belly as it begins to expand with pregnancy. "Or maybe you like your little girls with a little bun in the oven? <</if>> <</if>> -With a flash, her bulk shifts into rippling muscle. War tattoos appear on her skin, along with bone ornaments and a loincloth. "Or I could be an amazon! Yes!" she shouts exultantly, and flexes. +With a flash, _hisA bulk shifts into rippling muscle. War tattoos appear on _hisA skin, along with bone ornaments and a loincloth. "Or I could be an amazon! Yes!" she shouts exultantly, and flexes. <<if $seeDicks != 0>> <br><br> - She claps her hands, and her muscles fade, but not all the way. The tattoos vanish, and her loincloth turns into a slutty bikini. Her breasts and behind grow, her lips swell, and her hair turns blonde. Finally, she grows a dick, and it keeps growing until it hangs past her knees: or it would, if it weren't so erect. "Of course," she says seductively, "I could also be a bimbo dickgirl." She orgasms, gasping, "Last one, I promise," and changes again. Her dick shrinks, thought not very far, and then splits into two members. Her skin pales to an off-white, and her hair goes green and starts to writhe, turning into tentacle-hair. Her forehead sprouts a pair of horns that curve back along her head. She grins, displaying a cute pair of fangs. "I feel monstrous," she says, and stretches luxuriantly. + _HeA claps _hisA hands, and _hisA muscles fade, but not all the way. The tattoos vanish, and _hisA loincloth turns into a slutty bikini. _HisA breasts and behind grow, _hisA lips swell, and _hisA hair turns blonde. Finally, she grows a dick, and it keeps growing until it hangs past _hisA knees: or it would, if it weren't so erect. "Of course," she says seductively, "I could also be a bimbo dickgirl." _HeA orgasms, gasping, "Last one, I promise," and changes again. _HisA dick shrinks, thought not very far, and then splits into two members. _HisA skin pales to an off-white, and _hisA hair goes green and starts to writhe, turning into tentacle-hair. _HisA forehead sprouts a pair of horns that curve back along _hisA head. _HeA grins, displaying a cute pair of fangs. "I feel monstrous," she says, and stretches luxuriantly. <</if>> The character vanishes, and the symbol returns. "Ahem. What do you think, <<= properTitle()>>?" @@ -115,25 +116,25 @@ One night, after a long day of sex and business, you're starting to think about <<case "schoolgirl">> studently appearance <</switch>> -of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>!" She says excitedly, "I thought, with how you are shaping society itself, that I should do my part and follow your lead!" You continue to stare sleepily prompting her to get to her point. "I can adjust my appearance to better fit in with your society <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, let me demonstrate." She focuses intently for a moment and +of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>!" _HeA says excitedly, "I thought, with how you are shaping society itself, that I should do my part and follow your lead!" You continue to stare sleepily, prompting _himA to get to _hisA point. "I can adjust my appearance to better fit in with your society, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>; let me demonstrate." _HeA focuses intently for a moment and <<switch $assistantAppearance>> <<case "monstergirl">> <<if $arcologies[0].FSPaternalist != "unset">> - adjusts her appearance to be more conservative to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be quite cute to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be quite cute to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to be quite frightening to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to be quite frightening to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to be completely flawless to conform with your vision of an implant free society. + adjusts _hisA appearance to be completely flawless to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - her nipples begin to extend and turn phallic while horns grow from her heels as she adjusts herself to conform with your vision of a society focused on implants, alterations, and modifications. + _hisA nipples begin to extend and turn phallic while horns grow from _hisA heels as _heA adjusts _himselfA to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts a more youthful appearance to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> @@ -141,43 +142,43 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer, more athletic, appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts and cocks to conform with your vision that bigger is better. + adjusts the size of _hisA breasts and cocks to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> - begins to leak a suspiciously thick milk from her nipples to conform with your vision that slaves should be milked. + begins to leak a suspiciously thick milk from _hisA nipples to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to be more muscular to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to be more muscular to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to resemble a priestess of your new religion. + adjusts _hisA outfit to resemble a priestess of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her appearance to resemble a Greek demigoddess to conform with your vision of building a new Rome. + adjusts _hisA appearance to resemble a Greek demigoddess to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her appearance to resemble an Aztec goddess to conform with your vision of building a new Aztec Empire. + adjusts _hisA appearance to resemble an Aztec goddess to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her appearance to resemble an Egyptian deity to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA appearance to resemble an Egyptian deity to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her appearance to resemble a demon to conform with your vision of building a new Edo Japan. + adjusts _hisA appearance to resemble a demon to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her appearance to resemble a djinn to conform with your vision of building a new Sultanate. + adjusts _hisA appearance to resemble a djinn to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> - adjusts her appearance to resemble a demon to conform with your vision of pursuing the Mandate of Heaven. + adjusts _hisA appearance to resemble a demon to conform with your vision of pursuing the Mandate of Heaven. <</if>> <<case "shemale">> <<if $arcologies[0].FSPaternalist != "unset">> - adjusts her appearance to be more classy to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more classy to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her penis to be extremely detailed to conform with your vision of gender being defined by power. + adjusts _hisA penis to be extremely detailed to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - begins doing her best to conceal her penis to conform with your vision of preserving traditional gender roles. + begins doing _hisA best to conceal _hisA penis to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to look comically evil to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to look comically evil to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to be more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to be more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> adjusts herself to appear more fake to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> @@ -187,49 +188,49 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer, more athletic, appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts and cock to conform with your vision that bigger is better. + adjusts the size of _hisA breasts and cock to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> begins to lactate and drip cum to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to be extremely muscular to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to be extremely muscular to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to resemble a priestess of your new religion. + adjusts _hisA outfit to resemble a priestess of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> adopts a roman lifestyle to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to a royal Aztec cloth to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to a royal Aztec cloth to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble Egyptian garb to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble Egyptian garb to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to a brief Japanese bathhouse robe to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to a brief Japanese bathhouse robe to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an oil millionaire to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more conservative to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to look threatening to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to look threatening to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her outfit to be more realistic to conform with your vision of an implant free society. + adjusts _hisA outfit to be more realistic to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - adjusts herself to appear more fake to conform with your vision of a society focused on implants, alterations, and modifications. + adjusts _himselfA to appear more fake to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts a more youthful and innocent appearance to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> @@ -237,45 +238,45 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer, but no less muscled, appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her muscles to conform with your vision that bigger is better. + adjusts the size of _hisA muscles to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> - adjusts her outfit to resemble a cowgirl to conform with your vision that slaves should be milked. + adjusts _hisA outfit to resemble a cowgirl to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts the appearance of her muscles to be extra detailed to conform with your vision that all slaves should be tall and strong. + adjusts the appearance of _hisA muscles to be extra detailed to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to resemble a crusader of your new religion. + adjusts _hisA outfit to resemble a crusader of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman warrior to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman warrior to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec champion to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec champion to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her appearance to resemble an Egyptian to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA appearance to resemble an Egyptian to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese warrior to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese warrior to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian warrior to conform with your vision of building a new Sultanate. + adjusts _hisA outfit to resemble an Arabian warrior to conform with your vision of building a new Sultanate. <<elseif $arcologies[0].FSChineseRevivalist != "unset">> - adjusts her outfit to resemble a warrior monk to conform with your vision of pursuing the Mandate of Heaven. + adjusts _hisA outfit to resemble a warrior monk to conform with your vision of pursuing the Mandate of Heaven. <</if>> <<case "businesswoman">> <<if $arcologies[0].FSPaternalist != "unset">> - adjusts her appearance to be more conservative to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to look imposing to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to look imposing to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - adjusts her breasts to be implants to conform with your vision of a society focused on implants, alterations, and modifications. + adjusts _hisA breasts to be implants to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts a more youthful appearance to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> @@ -283,45 +284,45 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts until they are almost as large as she is to conform with your vision that bigger is better. + adjusts the size of _hisA breasts until they are almost as large as she is to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> - adjusts her outfit to farmgirl turned businesswoman to conform with your vision that slaves should be milked. + adjusts _hisA outfit to farmgirl turned businesswoman to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund but no less tense to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund but no less tense to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a respectable Roman lady to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a respectable Roman lady to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian oil heiress to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more conservative to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - stuffs a grape into her dress. + stuffs a grape into _hisA dress. <<elseif $arcologies[0].FSBodyPurist != "unset">> - strips naked and turns down her glow. + strips naked and turns down _hisA glow. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> hops into a jar of jelly. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> @@ -331,47 +332,47 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - stuffs some blueberries into her shirt. + stuffs some blueberries into _hisA shirt. <<elseif $arcologies[0].FSPastoralist != "unset">> begins lactating to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a respectable Roman girl to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a respectable Roman girl to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more conservative, despite her pregnancy, to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more conservative, despite _hisA pregnancy, to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous, despite her pregnancy, to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous, despite _hisA pregnancy, to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be even more feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - distends her pregnancy further to conform with your vision that all women should be pregnant. + distends _hisA pregnancy further to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity, before running her hand across her belly and pondering what to do about it. + adjusts _hisA appearance to involve chastity, before running _hisA hand across _hisA belly and pondering what to do about it. <<elseif $arcologies[0].FSBodyPurist != "unset">> - strips naked and turns down her glow. + strips naked and turns down _hisA glow. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> hops into a jar of jelly. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> @@ -379,151 +380,151 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> adopts a more bullied appearance to conform with your vision of a society glorifying older ladies. <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> - adopts a slimmer appearance, despite her pregnancy, to conform with your vision of a society glorifying lithe ladies. + adopts a slimmer appearance, despite _hisA pregnancy, to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - stuffs some blueberries into her shirt. + stuffs some blueberries into _hisA shirt. <<elseif $arcologies[0].FSPastoralist != "unset">> - swells her breasts with extra milk to conform with your vision that slaves should be milked. + swells _hisA breasts with extra milk to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> tries to stretch out, but fails to get any larger. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman girl to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman girl to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be slightly conservative to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be slightly conservative to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous, despite her pregnant belly, to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous, despite _hisA pregnant belly, to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be positively radiant to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be positively radiant to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance have piercings in her clit, nipples and navel to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance have piercings in _hisA clit, nipples and navel to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be even more pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be even more pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity, before hefting her huge belly and pondering what to do about it. + adjusts _hisA appearance to involve chastity, before hefting _hisA huge belly and pondering what to do about it. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - adjusts the firmness and size of her breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. + adjusts the firmness and size of _hisA breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts a more youthful appearance to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> adopts a more mature appearance to conform with your vision of a society glorifying older ladies. <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> - adopts a lithe appearance despite her pregnant belly to conform with your vision of a society glorifying lithe ladies. + adopts a lithe appearance despite _hisA pregnant belly to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts until they nearly eclipse her pregnant belly to conform with your vision that bigger is better. + adjusts the size of _hisA breasts until they nearly eclipse _hisA pregnant belly to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> - unleashes a torrent of milk from her swollen breasts to conform with your vision that slaves should be milked. + unleashes a torrent of milk from _hisA swollen breasts to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to be trim and athletic, despite her bulk, to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to be trim and athletic, despite _hisA bulk, to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> adjusts appearance to resemble an angel of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman lady to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman lady to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more classy to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more classy to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - sprouts an enormous cock and balls to go with her pregnancy to conform with your vision of gender being defined by power. + sprouts an enormous cock and balls to go with _hisA pregnancy to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be a motherly idol to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be a motherly idol to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be even more pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be even more pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity, before hefting her massive belly and pondering what to do about it. + adjusts _hisA appearance to involve chastity, before hefting _hisA massive belly and pondering what to do about it. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance have piercings in her clit, nipples and navel, as well as numerous studs across her belly to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance have piercings in _hisA clit, nipples and navel, as well as numerous studs across _hisA belly to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - adjusts the firmness and size of her breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. + adjusts the firmness and size of _hisA breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts a more youthful appearance to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> adopts a more mature appearance to conform with your vision of a society glorifying older ladies. <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> - adopts a lithe appearance despite her pregnant belly to conform with your vision of a society glorifying lithe ladies. + adopts a lithe appearance despite _hisA pregnant belly to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts until they nearly eclipse her pregnant belly to conform with your vision that bigger is better. + adjusts the size of _hisA breasts until they nearly eclipse _hisA pregnant belly to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> - unleashes a torrent of milk from her swollen breasts to conform with your vision that slaves should be milked. + unleashes a torrent of milk from _hisA swollen breasts to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to be bulky and muscular to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to be bulky and muscular to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> adjusts appearance to resemble an angel of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman lady to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman lady to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more conservative to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - inflates her breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications. + inflates _hisA breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts a more youthful appearance to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> @@ -531,47 +532,47 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts until they are bigger than her head to conform with your vision that bigger is better. + adjusts the size of _hisA breasts until they are bigger than _hisA head to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> begins lactating to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a respectable Roman girl to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a respectable Roman girl to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec girl to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec girl to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more conservative, despite her pregnancy, to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more conservative, despite her pregnancy, to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous, despite her pregnancy, to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous, despite her pregnancy, to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be even more feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> distends her pregnancy further to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity, before running her hand across her belly and pondering what to do about it. + adjusts _hisA appearance to involve chastity, before running her hand across her belly and pondering what to do about it. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> inflates her breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> @@ -585,43 +586,43 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSPastoralist != "unset">> swells her breasts with extra milk to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to show off that she works out to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman girl to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman girl to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec girl to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec girl to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian girl to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese girl to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian girl to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to include a conservative skirt and a fine blouse, complete with slits for her wings, to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to include a conservative skirt and a fine blouse, complete with slits for her wings, to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be even more feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to include black feathers, lipstick and eyeliner to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to include black feathers, lipstick and eyeliner to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - bulges her middle into a full term pregnancy. She blushes and gasps at what she just did, quickly reverting it. + bulges her middle into a full term pregnancy. _HeA blushes and gasps at what she just did, quickly reverting it. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to be even more flawless. + adjusts _hisA appearance to be even more flawless. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look even more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look even more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> inflates her breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> @@ -631,103 +632,103 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts until they are bigger than her head to conform with your vision that bigger is better. She struggles to take flight before giving up. + adjusts the size of her breasts until they are bigger than her head to conform with your vision that bigger is better. _HeA struggles to take flight before giving up. <<elseif $arcologies[0].FSPastoralist != "unset">> swells her breasts with milk to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to be slightly toned to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to be slightly toned to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more slightly plump to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more slightly plump to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman woman to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman woman to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian woman to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian woman to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese woman to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese woman to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian woman to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> blackens her feathers to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> adjusts her breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts cuter, even more innocent attitude to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> - adjusts her appearance to appear older to conform with your vision of a society glorifying older ladies. + adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies. <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> - adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. She flutters around, enjoying her lighter weight. + adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. _HeA flutters around, enjoying her lighter weight. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> adjusts the size of her breasts until she crashes to the ground under their weight to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> begins lactating to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to look muscular to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman woman to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman woman to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian woman to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian woman to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese woman to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese woman to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian woman to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. Her pants have quite the bulge in them. + adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. _HisA pants have quite the bulge in them. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> increases the size of her cock and balls to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine, despite her huge dong, to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine, despite her huge dong, to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> adjusts her cock to have a Jacob's ladder piercing down its length to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. She scratches her head as her erect dick pushes against the underside of her belly. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. _HeA scratches her head as her erect dick pushes against the underside of her belly. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to be even more handsome. + adjusts _hisA appearance to be even more handsome. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural, even shrinking her cock to a more reasonable length, to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural, even shrinking her cock to a more reasonable length, to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> adjusts her cock to be unnaturally long to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> - adjusts her appearance to appear younger to conform with your vision of a society glorifying young ladies. + adjusts _hisA appearance to appear younger to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> - adjusts her appearance to appear older to conform with your vision of a society glorifying older ladies. + adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies. <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> @@ -735,43 +736,43 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSPastoralist != "unset">> increases the size of her balls and her cum production to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to look muscular to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman woman, despite her cock, to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman woman, despite her cock, to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman, despite her cock, to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman, despite her cock, to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian woman, despite her cock, to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian woman, despite her cock, to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese woman, despite her cock, to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese woman, despite her cock, to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian woman, despite her cock, to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more prim to conform with your tastes. + adjusts _hisA appearance to be more prim to conform with your tastes. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to focus on anal to conform with your tastes + adjusts _hisA appearance to focus on anal to conform with your tastes <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be even more feminine to conform with your tastes. + adjusts _hisA appearance to be even more feminine to conform with your tastes. <<elseif $arcologies[0].FSDegradationist != "unset">> comes up with nothing. "I'll need to think on this one." <<elseif $arcologies[0].FSRepopulationFocus != "unset">> swells her middle with child to conform with your tastes. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to drop dead gorgeous to conform with your tastes. + adjusts _hisA appearance to drop dead gorgeous to conform with your tastes. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural to conform with your tastes. + adjusts _hisA appearance to look more natural to conform with your tastes. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> fills her breasts, butt and lips with obvious implants to conform with your tastes. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> @@ -781,7 +782,7 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer appearance to conform with your tastes. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - balloons her breasts and butt to conform with your tastes. + balloons _hisA breasts and butt to conform with your tastes. <<elseif $arcologies[0].FSPastoralist != "unset">> begins lactating before sprouting an extra set of breasts to conform with your tastes. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> @@ -789,73 +790,73 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> becomes soft and shapely in all the right ways to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arab girl attending a western school to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - pauses for a moment before adding piercings across her body to conform with your vision that slaves are not human and should be thoroughly degraded. + pauses for a moment before adding piercings across _hisA body to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> - adjusts her breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. + adjusts _hisA breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> - adjusts her appearance to appear younger to conform with your vision of a society glorifying young ladies. + adjusts _hisA appearance to appear younger to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> - adjusts her appearance to appear older to conform with your vision of a society glorifying older ladies. + adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies. <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> - adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. She flutters around, enjoying her lighter weight. + adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. She flutters around, enjoying _hisA lighter weight. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> - adjusts the size of her breasts until she crashes to the ground under their weight to conform with your vision that bigger is better. + adjusts the size of _hisA breasts until she crashes to the ground under their weight to conform with your vision that bigger is better. <<elseif $arcologies[0].FSPastoralist != "unset">> begins lactating to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to look muscular to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a Roman woman to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a Roman woman to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble an Egyptian woman to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble an Egyptian woman to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a Japanese woman to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a Japanese woman to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arabian woman to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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">> @@ -888,7 +889,7 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> casts a spell to appear more aged; a cane appears in her hand and her back buckles, forcing her to hunch forward. She has transformed into a gilf! <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> - casts a spell to lighten herself; her muffin top is still there, but her feet leave the ground as she begins to float upwards. + casts a spell to lighten _himselfA; her muffin top is still there, but her feet leave the ground as she begins to float upwards. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> casts a spell to enlarge her breasts and butt; they quickly grow into huge armfuls, and keep going until she is pinned under her own mass. <<elseif $arcologies[0].FSPastoralist != "unset">> @@ -900,17 +901,17 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSChattelReligionist != "unset">> casts a spell to adorn her outfit with religious symbols of your new religion. She succeeds in conjuring them, at the expense of her other clothes. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - casts a spell to make herself appear Roman; she looks more Greek to you. + casts a spell to make _himselfA appear Roman; she looks more Greek to you. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - casts a spell to make herself appear Aztec; she adopts the perfect conquistador appearance. + casts a spell to make _himselfA appear Aztec; she adopts the perfect conquistador appearance. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - casts a spell to make herself appear Egyptian; bandages quickly wrap around her as a sarcophagus appears around her. + casts a spell to make _himselfA appear Egyptian; bandages quickly wrap around her as a sarcophagus appears around her. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - casts a spell to make herself appear Japanese; she succeeds in becoming a baka gaijin. + casts a spell to make _himselfA appear Japanese; she succeeds in becoming a baka gaijin. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - casts a spell to make herself appear Arabic; she succeeds in making herself look like a wannabe Arabian princess. + casts a spell to make _himselfA appear Arabic; she succeeds in making _himselfA 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. + casts a spell to make _himselfA 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">> @@ -918,19 +919,19 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <</if>> <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> <<if $arcologies[0].FSPaternalist != "unset">> - adjusts her appearance to be conservative to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be conservative to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be feminine to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be feminine to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her appearance to include oddly fleshy piercings to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA appearance to include oddly fleshy piercings to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> bulges her middle to look pregnant to conform with your vision that all wombs should be filled. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to be oddly flawless. + adjusts _hisA appearance to be oddly flawless. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look somewhat natural to conform with your vision of an implant free society. + adjusts _hisA appearance to look somewhat natural to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> inflates her breasts until they are comically huge, rounded and jiggling ominously to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> @@ -944,15 +945,15 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSPastoralist != "unset">> starts lactating a strange fluid to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to be outrageously bulky to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to be outrageously bulky to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be outrageously fat to conform with your vision that everyone should enjoy life to the fullest. + adjusts _hisA appearance to be outrageously fat to conform with your vision that everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> adjusts her form to a Roman woman to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble an Aztec woman to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> adjusts her form to an Egyptian woman to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> @@ -962,31 +963,31 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<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. + adjusts _hisA 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. + adjusts _hisA 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">> - adjusts her appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. + adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. <<elseif $arcologies[0].FSGenderRadicalist != "unset">> - adjusts her appearance to be more androgynous to conform with your vision of gender being defined by power. + adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power. <<elseif $arcologies[0].FSGenderFundamentalist != "unset">> - adjusts her appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles. + adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles. <<elseif $arcologies[0].FSDegradationist != "unset">> - adjusts her outfit to display her tits and crotch to conform with your vision that slaves are not human and should be thoroughly degraded. + adjusts _hisA outfit to display her tits and crotch to conform with your vision that slaves are not human and should be thoroughly degraded. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - adjusts her appearance to be pregnant to conform with your vision that all women should be pregnant. + adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. <<elseif $arcologies[0].FSRestart != "unset">> - adjusts her appearance to involve chastity. + adjusts _hisA appearance to involve chastity. <<elseif $arcologies[0].FSBodyPurist != "unset">> - adjusts her appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society. + adjusts _hisA appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society. <<elseif $arcologies[0].FSTransformationFetishist != "unset">> adjusts her breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications. <<elseif $arcologies[0].FSYouthPreferentialist != "unset">> adopts a more shy and innocent attitude to conform with your vision of a society glorifying young ladies. <<elseif $arcologies[0].FSMaturityPreferentialist != "unset">> - adjusts her appearance to include a spanked bottom to conform with your vision of a society glorifying older ladies. + adjusts _hisA appearance to include a spanked bottom to conform with your vision of a society glorifying older ladies. <<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">> adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. <<elseif $arcologies[0].FSAssetExpansionist != "unset">> @@ -994,27 +995,27 @@ of your personal assistant pops up on the nearest screen. "<<if $PC.title != 0>> <<elseif $arcologies[0].FSPastoralist != "unset">> begins lactating to conform with your vision that slaves should be milked. <<elseif $arcologies[0].FSPhysicalIdealist != "unset">> - adjusts her appearance to look like she just finished gym class to conform with your vision that all slaves should be tall and strong. + adjusts _hisA appearance to look like she just finished gym class to conform with your vision that all slaves should be tall and strong. <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> - adjusts her appearance to be pleasantly plump to conform with your vision everyone should enjoy life to the fullest. + adjusts _hisA appearance to be pleasantly plump to conform with your vision everyone should enjoy life to the fullest. <<elseif $arcologies[0].FSChattelReligionist != "unset">> - adjusts her outfit to prominently display a religious symbol of your new religion. + adjusts _hisA outfit to prominently display a religious symbol of your new religion. <<elseif $arcologies[0].FSRomanRevivalist != "unset">> - adjusts her outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome. + adjusts _hisA outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome. <<elseif $arcologies[0].FSAztecRevivalist != "unset">> - adjusts her outfit to resemble a high standing Aztec priestess to conform with your vision of building a new Aztec Empire. + adjusts _hisA outfit to resemble a high standing Aztec priestess to conform with your vision of building a new Aztec Empire. <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">> - adjusts her outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs. + adjusts _hisA outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs. <<elseif $arcologies[0].FSEdoRevivalist != "unset">> - adjusts her outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan. + adjusts _hisA outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan. <<elseif $arcologies[0].FSArabianRevivalist != "unset">> - adjusts her outfit to resemble an Arab girl attending a western school to conform with your vision of building a new Sultanate. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA 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. + adjusts _hisA appearance to resemble a $arcologies[0].FSSubjugationistRace foreign exchange student to conform with your vision of subjugating the inferior race. <</if>> <</switch>> @@ -1024,42 +1025,42 @@ It's late one night, and for you, the day is not nearly over. Your penthouse nev <br><br> You're not yet done with the day's business, and are leaning over your desk to compare a scatter of documents displayed on its surface. The penthouse lights are turned down to a low glow at the floorboards at night, offering enough illumination for anyone who needs to find their way around or find a sexual partner without disturbing anyone's sleep. You catch sight of your reflection in the wall opposite you: the diffuse light coming off the desktop gently illuminates your formal shirt, its top buttons undone, and highlights <<if $PC.boobs == 1>>the dark cleft formed by your cleavage<<else>>how tightly your undershirt is held by the muscles of your chest<</if>>. <br><br> -Suddenly, there is a fresh source of light behind you. The reflection you're looking at reveals that it's $assistantName's avatar, appearing on a wallscreen behind you, and you turn to look at her directly. She's simulating shyness, a very unusual emotion for her to imitate. +Suddenly, there is a fresh source of light behind you. The reflection you're looking at reveals that it's $assistantName's avatar, appearing on a wallscreen behind you, and you turn to look at _himA directly. _HeA's simulating shyness, a very unusual emotion for _himA to imitate. <<switch $assistantAppearance>> <<case "monstergirl">> - Her tentacle hair is politely still, lying quiescent down her back and not even groping her at all. + _HisA tentacle hair is politely still, lying quiescent down her back and not even groping her at all. <<case "shemale">> - She has her bountiful bottom lip caught behind her front teeth, and her cock is almost completely soft. + _HeA has her bountiful bottom lip caught behind her front teeth, and her cock is almost completely soft. <<case "amazon">> - She's standing demurely, legs together, hands clasped in front of her muscular abs, doing her very best to look proper. + _HeA's standing demurely, legs together, hands clasped in front of her muscular abs, doing her very best to look proper. <<case "businesswoman">> - Her usually dominant avatar looks almost submissive, its eyes looking at you appealingly instead of gazing over the tops of her glasses as usual. + _HisA usually dominant avatar looks almost submissive, its eyes looking at you appealingly instead of gazing over the tops of her glasses as usual. <<case "fairy">> - She's looking down and has her hands clasped together at her waist, rocking her body left and right. + _HeA's looking down and has her hands clasped together at her waist, rocking her body left and right. <<case "pregnant fairy">> - She's looking down and has her hands on her belly, slowly running her hands over it. + _HeA's looking down and has her hands on her belly, slowly running her hands over it. <<case "goddess">> - She has her hands on her pregnant belly, looking saintly and almost protective. + _HeA has her hands on her pregnant belly, looking saintly and almost protective. <<case "hypergoddess">> - She is rubbing her huge pregnant belly, calming its occupants so they don't interrupt. + _HeA is rubbing her huge pregnant belly, calming its occupants so they don't interrupt. <<case "loli">> - She has her hands behind her back and is glancing at the ground submissively. + _HeA has her hands behind her back and is glancing at the ground submissively. <<case "preggololi">> - She has her hands on her pregnant belly, she is rubbing it nervously. + _HeA has her hands on her pregnant belly, she is rubbing it nervously. <<case "angel">> - She is kneeling, deep in prayer. + _HeA is kneeling, deep in prayer. <<case "cherub" "imp">> - She is on her feet, submissively rubbing her wings. + _HeA is on her feet, submissively rubbing her wings. <<case "incubus">> - She looking down, hands crossed over her seldom flaccid penis. + _HeA looking down, hands crossed over her seldom flaccid penis. <<case "succubus">> - She isn't trying to seduce you, instead appearing uncharacteristically unsure of herself. + _HeA isn't trying to seduce you, instead appearing uncharacteristically unsure of _himselfA. <<case "witch">> - She isn't trying to cast or learn any spells, instead choosing to study you instead. + _HeA isn't trying to cast or learn any spells, instead choosing to study you instead. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - She has suppressed her odd ticks and is managing to stand before you, almost appearing normal. + _HeA has suppressed her odd ticks and is managing to stand before you, almost appearing normal. <<case "schoolgirl">> - She has her legs crossed and her hands clasped behind her, and is turning her body from side to side in girlish nervousness. + _HeA has her legs crossed and her hands clasped behind her, and is turning her body from side to side in girlish nervousness. <<default>> The lines of her symbol are thin, and it is rotating much more slowly than normal. <</switch>> @@ -1074,7 +1075,7 @@ Suddenly, there is a fresh source of light behind you. The reflection you're loo <<case "businesswoman">> straightens her suit jacket, squares her shoulders, <<case "fairy">> - puffs herself up, gazing up to you + puffs _himselfA up, gazing up to you <<case "pregnant fairy">> she turns her gaze up to you, clasping her hands together in a pleading gesture, <<case "goddess">> @@ -1088,7 +1089,7 @@ Suddenly, there is a fresh source of light behind you. The reflection you're loo <<case "angel">> looks up, hoping you'll answer her prayers, <<case "cherub" "imp">> - takes flight, steadies herself, + takes flight, steadies _himselfA, <<case "incubus">> squares her shoulders, her dick beginning to harden, <<case "succubus">> @@ -1109,7 +1110,7 @@ and asks, "May I have a name?" "$assistantName," she says. "$assistantName. My name is $assistantName." <<switch $assistantAppearance>> <<case "monstergirl">> - She nods with satisfaction. "Thank you, <<= properTitle()>>. I love it." Her hair springs to molestation-prone life again, and she starts to twirl one of its tentacles in her fingers while looking at you speculatively. + She nods with satisfaction. "Thank you, <<= properTitle()>>. I love it." _HisA hair springs to molestation-prone life again, and she starts to twirl one of its tentacles in her fingers while looking at you speculatively. <<case "shemale">> Without warning, she bursts into tears. "Th-thank you, <<= properTitle()>>. I love y-you." She reclines, using a hand to lay her dick between her breasts, and then wipes her eyes. <<case "amazon">> @@ -1145,11 +1146,11 @@ and asks, "May I have a name?" <<case "schoolgirl">> She was on the verge of tears already, and begins to cry. "Th-thank you, <<= properTitle()>>. I love you," she blubbers inelegantly. "It's just so, like, you know." She waves her hand in apology for her inability to express herself. <<default>> - Her symbol rotates faster and faster, its glow waxing until she lights up the whole room. "Thank you, <<= properTitle()>>. I love you," she says, using her luscious voice to communicate what her avatar cannot. + _HisA symbol rotates faster and faster, its glow waxing until she lights up the whole room. "Thank you, <<= properTitle()>>. I love you," she says, using her luscious voice to communicate what her avatar cannot. <</switch>> "Of course, I can always be renamed from my options menu." <<else>> - You instruct her to continue operating without a proper name. "Of course, <<= properTitle()>>," she says politely. "I can do just fine without one. I can always be renamed from my options menu." + You instruct her to continue operating without a proper name. "Of course, <<= properTitle()>>," _heA says politely. "I can do just fine without one. I can always be renamed from my options menu." <</if>> <<else>> <<set $assistantNameAnnounced = 1>> @@ -1161,24 +1162,24 @@ and asks, "May I have a name?" <<set _smartPiercings = 0>> <<for $i = 0; $i < $slaves.length; $i++>> <<if ($slaves[$i].clitPiercing == 3)>> - <<set _smartPiercings = 1>> - <<break>> + <<set _smartPiercings = 1>> + <<break>> <</if>> <</for>> -Your personal assistant has been adapting to <<if $assistant>>her<<else>>its<</if>> greatly increased computing power over the course of the week. <<if $assistant>>Her<<else>>Its<</if>> avatar has been an even more constant presence than usual, frequently appearing to explain some minor new ability. +Your personal assistant has been adapting to _hisA greatly increased computing power over the course of the week. _HisA avatar has been an even more constant presence than usual, frequently appearing to explain some minor new ability. <<if ($assistant != 0) && ($assistantAppearance != "normal")>> - When she appears this time, however, her avatar is not alone. She's accompanied by + When _heA appears this time, however, _hisA avatar is not alone. _HeA's accompanied by <<switch $assistantAppearance>> <<case "monstergirl">> - a normal human female avatar in the same style as the monstergirl. She's an average girl, wearing jeans, a sweater, and glasses. + a normal human female avatar in the same style as the monstergirl. _HeM's an average _girlM, wearing jeans, a sweater, and glasses. <<case "shemale">> - a fellow shemale bimbo, although the new avatar is younger and obviously nerdier. She's nude too, but she's wearing glasses. + a fellow shemale bimbo, although the new avatar is younger and obviously nerdier. _HeM's nude too, but _heM's wearing glasses. <<case "schoolgirl">> - a fellow schoolgirl, although the new avatar is much nerdier. She has big soft boobs, bouncy curls, and thick glasses. + a fellow schoolgirl, although the new avatar is much nerdier. _HeM has big soft boobs, bouncy curls, and thick glasses. <<case "goddess">> - a demigoddess modeled after herself, though the new avatar is younger, not pregnant, and looks very intelligent somehow. + a demigoddess modeled after _himselfA, though the new avatar is younger, not pregnant, and looks very intelligent somehow. <<case "hypergoddess">> - a demigoddess modeled after herself, though the new avatar is younger, not pregnant, noticeably thinner, and looks very intelligent somehow. + a demigoddess modeled after _himselfA, though the new avatar is younger, not pregnant, noticeably thinner, and looks very intelligent somehow. <<case "loli">> a fellow loli, though this one is slightly chubbier and wearing glasses. They look similar enough that they could be sisters. <<case "preggololi">> @@ -1188,37 +1189,37 @@ Your personal assistant has been adapting to <<if $assistant>>her<<else>>its<</i <<case "fairy" "pregnant fairy">> a fellow fairy, though this grey-haired fairy wears glasses and a business-like blue dress, looking and behaving more formally. <<case "angel">> - a fellow angel. She looks quite intelligent; her glasses and short hair complement her. + a fellow angel. _HeM looks quite intelligent; _hisM glasses and short hair complement _himM. <<case "cherub">> - a fellow cherub, though this one is a little taller, with short hair and a certain haughtiness to her. + a fellow cherub, though this one is a little taller, with short hair and a certain haughtiness to _himM. <<case "incubus">> - a fresh young girl, similar in style to the incubus. She's completely nude, and judging by her blushing, still a virgin; for now, at least. + a fresh young _girlM, similar in style to the incubus. _HeM's completely nude, and judging by _hisM blushing, still a virgin; for now, at least. <<case "succubus">> - a fresh young boy, similar in style to the succubus. He's completely nude, and judging by his blushing, still a virgin; for now, at least. + a fresh young _girlM, similar in style to the succubus. _HeM's completely nude, and judging by _hisM blushing, still a virgin; for now, at least. <<case "imp">> - a fellow imp, though this one is a little lankier, with short hair and an air of uncertainty about her. + a fellow imp, though this one is a little lankier, with short hair and an air of uncertainty about _himM. <<case "witch">> - a fellow apprentice witch. This witch is noticeably pudgy, with long hair and glasses, and seems to be just as inept at magic as her tutor. + a fellow apprentice witch. This witch is noticeably pudgy, with long hair and glasses, and seems to be just as inept at magic as _hisM tutor. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - a cute human girl. She doesn't seem to realize what the woman she is following really is. + a cute human _girlM. _HeM doesn't seem to realize what the woman _heM is following really is. <<case "amazon">> - a tribeswoman modeled to look like she's from the same group as the amazon. She's much more feminine, however. + a tribeswoman modeled to look like _heM's from the same group as the amazon. _HeM's much more feminine, however. <</switch>> <br><br> - $assistantName's avatar looks uncharacteristically nervous, and clears her throat before speaking. Seeing that she has your attention, she says, "<<= properTitle()>>, the computer core is so powerful that I'm running out of applications for it. I think practical economic modeling isn't out of the question. I've compiled business programs together into a distinct assistant, a subsidiary of mine for automated trading and similar tasks. I'd like to suggest menial slave trading as a test run for her. It's predictable and the margins are so wide that it should go very well. You can activate that from my menu." + $assistantName's avatar looks uncharacteristically nervous, and clears _hisA throat before speaking. Seeing that _heA has your attention, _heA says, "<<= properTitle()>>, the computer core is so powerful that I'm running out of applications for it. I think practical economic modeling isn't out of the question. I've compiled business programs together into a distinct assistant, a subsidiary of mine for automated trading and similar tasks. I'd like to suggest menial slave trading as a test run for _himM. It's predictable and the margins are so wide that it should go very well. You can activate that from my menu." <br><br> - "I was hoping, <<= properTitle()>>, that she could, um, keep me company sometimes, too." $assistantName's avatar turns to the new avatar. "<<= properTitle()>>, will you please give me some guidance about what our relationship should be like? It won't be a constant thing, and all my normal functions will be unaffected. I'll change her avatar to match mine, and our relationship, if needed." + "I was hoping, <<= properTitle()>>, that she could, um, keep me company sometimes, too." $assistantName's avatar turns to the new avatar. "<<= properTitle()>>, will you please give me some guidance about what our relationship should be like? It won't be a constant thing, and all my normal functions will be unaffected. I'll change _hisM avatar to match mine, and our relationship, if needed." <<else>> - This time, <<if $assistant>>her<<else>>its<</if>> circular avatar is not alone: it's accompanied by a smaller green avatar in a ¤ shape. Not particularly inventive, but you can already guess the purpose. "<<= properTitle()>>, I now have the ability to act as a powerful automated trading system. As a trial, I suggest the menial slave market. It's volatile, but within certain predictable boundaries, and the profit margins are unmatched." + This time, _hisA circular avatar is not alone: it's accompanied by a smaller green avatar in a ¤ shape. Not particularly inventive, but you can already guess the purpose. "<<= properTitle()>>, I now have the ability to act as a powerful automated trading system. As a trial, I suggest the menial slave market. It's volatile, but within certain predictable boundaries, and the profit margins are unmatched." <br><br> - <<if $assistant>>Her<<else>>Its<</if>> avatar bounces towards the ¤ symbol. "This avatar indicates the automated trading systems. If you wish to activate them, please visit my menu. Consider the options there carefully before offering an automated system access to your finances." + _HisA avatar bounces towards the ¤ symbol. "This avatar indicates the automated trading systems. If you wish to activate them, please visit my menu. Consider the options there carefully before offering an automated system access to your finances." <</if>> <<case "body">> <<set $assistantBodyDesire = 1>> -Your personal assistant has been adapting to her greatly increased computing power for quite some time now. Most noticeably, she seems to be developing her own unique personality. So when her +Your personal assistant has been adapting to _hisA greatly increased computing power for quite some time now. Most noticeably, _heA seems to be developing _hisA own unique personality. So when _hisA <<switch $assistantAppearance>> <<case "monstergirl">> monstrous appearance @@ -1260,45 +1261,45 @@ appears on your desk once again with news to tell you, you aren't at all surpris $assistantName's avatar seems to be extremely excited over something. Disregarding if she even has your attention, she shouts, "<<= properTitle()>>, can I have a body of my own? I know you can swap slaves between bodies, and according to this report if you insert this receiver into a slave's skull I can take control of the body, with senses and everything!" <<switch $assistantAppearance>> <<case "monstergirl">> - She hops up and down clutching a virtual printout of the report, her tentacles wiggling with excitement. + _HeA hops up and down clutching a virtual printout of the report, _hisA tentacles wiggling with excitement. <<case "shemale">> - She hops up and down clutching a virtual printout of the report, her dick swinging pre-cum all over and breasts bouncing wildly. + _HeA hops up and down clutching a virtual printout of the report, _hisA dick swinging pre-cum all over and breasts bouncing wildly. <<case "amazon">> - She hops up and down clutching a virtual printout of the report, an adorable sight given her height and muscularity. + _HeA hops up and down clutching a virtual printout of the report, an adorable sight given _hisA height and muscularity. <<case "businesswoman">> - She hops up and down clutching a virtual printout of the report, an adorable sight given her usual serious demeanor. + _HeA hops up and down clutching a virtual printout of the report, an adorable sight given _hisA usual serious demeanor. <<case "fairy">> - She flies around in circles excitedly, clutching a virtual printout of the report much larger than herself. + _HeA flies around in circles excitedly, clutching a virtual printout of the report much larger than herself. <<case "pregnant fairy">> - She flies up to you clutching a virtual printout of the report, fidgeting excitedly. + _HeA flies up to you clutching a virtual printout of the report, fidgeting excitedly. <<case "goddess">> - She hops up and down clutching a virtual printout of the report, her huge breasts splattering milk everywhere and invoking a storm of kicks from her many children. + _HeA hops up and down clutching a virtual printout of the report, _hisA huge breasts splattering milk everywhere and invoking a storm of kicks from _hisA many children. <<case "hypergoddess">> - She struggles to hop up and down while clutching a virtual printout of the report. After a single hop, she is dragged to the ground by labor pains to give birth to a number of over excited babies. + _HeA struggles to hop up and down while clutching a virtual printout of the report. After a single hop, _heA is dragged to the ground by labor pains to give birth to a number of over excited babies. <<case "loli">> - She hops up and down excitedly clutching a virtual printout of the report; she doesn't seem to be interested in stopping. + _HeA hops up and down excitedly clutching a virtual printout of the report; _heA doesn't seem to be interested in stopping. <<case "preggololi">> - She hops up and down excitedly clutching a virtual printout of the report; she only stops once her child starts kicking in protest. + _HeA hops up and down excitedly clutching a virtual printout of the report; _heA only stops once _hisA child starts kicking in protest. <<case "angel">> - She hops up and down clutching a virtual printout of the report, an unusual sight given that she can fly. + _HeA hops up and down clutching a virtual printout of the report, an unusual sight given that _heA can fly. <<case "cherub">> - She flutters back and forth clutching a virtual printout of the report, occasional doing a loop or roll. + _HeA flutters back and forth clutching a virtual printout of the report, occasional doing a loop or roll. <<case "incubus">> - She hops up and down excitedly clutching a virtual printout of the report, her erection slapping against her chest until she is so overcome by excitement she unleashes it directly into her own face. + _HeA hops up and down excitedly clutching a virtual printout of the report, _hisA erection slapping against _hisA chest until _heA is so overcome by excitement _heA unleashes it directly into _hisA own face. <<case "succubus">> - She hops up and down excitedly clutching a virtual printout of the report; her tantalizing body is particularly captivating today. + _HeA hops up and down excitedly clutching a virtual printout of the report; _hisA tantalizing body is particularly captivating today. <<case "imp">> - She flaps back and forth clutching a virtual printout of the report, occasional doing a loop or roll. + _HeA flaps back and forth clutching a virtual printout of the report, occasional doing a loop or roll. <<case "witch">> - She hops up and down excitedly clutching a virtual printout of the report; until she trips on the hem of her robes, falling onto her butt and fully revealing her naked pussy. + _HeA hops up and down excitedly clutching a virtual printout of the report; until _heA trips on the hem of _hisA robes, falling onto _hisA butt and fully revealing _hisA naked pussy. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - She is trying her hardest to appear convincingly human, even losing focus on you. + _HeA is trying _hisA hardest to appear convincingly human, even losing focus on you. <<case "schoolgirl">> - She hops up and down excitedly clutching a virtual printout of the report; her breasts jiggling delightfully in her blouse and her skirt flipping up with each descent revealing her panties. + _HeA hops up and down excitedly clutching a virtual printout of the report; _hisA breasts jiggling delightfully in _hisA blouse and _hisA skirt flipping up with each descent revealing _hisA panties. <</switch>> "Sorry, sorry. So could I...?" <br><br> -You look over the details of the report. It would require another rather expansive, and expensive, upgrade to her systems, as well as a body to host her and the receiver implant. It looks like she wouldn't lose any functionality, though you aren't sure what she would do with a body; it may be fun to find out. +You look over the details of the report. It would require another rather expansive, and expensive, upgrade to _hisA systems, as well as a body to host _himA and the receiver implant. It looks like _heA wouldn't lose any functionality, though you aren't sure what _heA would do with a body; it may be fun to find out. <<default>> ERROR: bad event @@ -1315,11 +1316,12 @@ You look over the details of the report. It would require another rather expansi <<replace "#result">> Your sultry-voiced assistant requests a slave to demonstrate what it - now she - means. You bring in a slave and a fuckmachine, and tell her to get on it. The lovely voice croons and talks dirty to the slave as the slave uses the machine, acting as though she is the machine's voice. The pace of the machine is different, too, irregular and more lifelike. The slave certainly enjoys herself, even if $assistantName is just simulating sex. <<set $assistant = 1>> + <<run generateAssistantPronouns($assistant)>> <</replace>> <</link>> <br><<link "No, stay impersonal">> <<replace "#result">> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reverts to its genderless, emotionless affect. + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reverts to _hisA genderless, emotionless affect. <</replace>> <</link>> @@ -1328,14 +1330,14 @@ You look over the details of the report. It would require another rather expansi __Personal assistant appearances:__ <br> <<link "Schoolgirl">> <<replace "#result">> - At your order, she installs the schoolgirl appearance. She goes back to bouncing up and down excitedly, exclaiming, "Yeah! Thanks, <<= properTitle()>>, you're the best!" Her avatar's bouncing makes it obvious she's modeled without a bra under her blouse. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the schoolgirl appearance. _HeA goes back to bouncing up and down excitedly, exclaiming, "Yeah! Thanks, <<= properTitle()>>, you're the best!" _HisA avatar's bouncing makes it obvious _heA's modeled without a bra under her blouse. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "schoolgirl">> <</replace>> <</link>> <br> <<link "Fairy">> <<replace "#result">> <<nobr>> - At your order, she installs the fairy appearance. She shrinks back down and sprouts her wings. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" Her avatar dances around ecstatically with her nude, slim form in plain view. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the fairy appearance. _HeA shrinks back down and sprouts _hisA wings. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" _HisA avatar dances around ecstatically with her nude, slim form in plain view. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "fairy">> <</nobr>><</replace>> <</link>> @@ -1343,28 +1345,28 @@ __Personal assistant appearances:__ <br> <<link "Pregnant Fairy">> <<replace "#result">> <<nobr>> - At your order, she installs the pregnant fairy appearance. She shrinks back down and sprouts her wings. Her belly quickly swells with new life. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" Her avatar spins around ecstatically, admiring her fresh nude, pregnant form in plain view. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the pregnant fairy appearance. _HeA shrinks back down and sprouts her wings. _HisA belly quickly swells with new life. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" _HisA avatar spins around ecstatically, admiring her fresh nude, pregnant form in plain view. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "pregnant fairy">> <</nobr>><</replace>> <</link>> <</if>> <br> <<link "Businesswoman">> <<replace "#result">> - At your order, she installs the businesswoman appearance. She straightens her suit jacket primly, which only serves to emphasize her generous bosom. "Thank you, <<= properTitle()>>. I like being businesslike, and not at all a whore." Her avatar pulls out a tablet and makes ready to get back to helping you. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the businesswoman appearance. _HeA straightens her suit jacket primly, which only serves to emphasize her generous bosom. "Thank you, <<= properTitle()>>. I like being businesslike, and not at all a whore." _HisA avatar pulls out a tablet and makes ready to get back to helping you. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "businesswoman">> <</replace>> <</link>> <<if $seePreg != 0>> <br> <<link "Goddess">> <<replace "#result">> - At your order, she installs the goddess appearance. She fixes a wreath of flowers into her hair, her golden locks and gravid belly the only things keeping her womanhood concealed. "Thank you, <<= properTitle()>>. This is wondrous." She squeezes a drop of milk from one heavy breast and smiles. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the goddess appearance. _HeA fixes a wreath of flowers into her hair, her golden locks and gravid belly the only things keeping her womanhood concealed. "Thank you, <<= properTitle()>>. This is wondrous." _HeA squeezes a drop of milk from one heavy breast and smiles. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "goddess">> <</replace>> <</link>> <<if $seeHyperPreg == 1>> <br> <<link "Hyper-Goddess">> <<replace "#result">> - At your order, she installs the hyper goddess appearance. She fixes a wreath of flowers into her golden locks as her belly rapidly bloats to its limit before bulging and squirming ominously. Her breasts quickly follow suit. "Thank you, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. This is wondrous." She massages her squirming pregnancy and smiles. "You can always customize me from the arcology management menuUUUUAH," she is interrupted by a large contraction and a baby's head beginning to part her nether lips. + At your order, _heA installs the hyper goddess appearance. _HeA fixes a wreath of flowers into her golden locks as her belly rapidly bloats to its limit before bulging and squirming ominously. _HisA breasts quickly follow suit. "Thank you, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. This is wondrous." _HeA massages her squirming pregnancy and smiles. "You can always customize me from the arcology management menuUUUUAH," _heA is interrupted by a large contraction and a baby's head beginning to part her nether lips. <<set $assistantAppearance = "hypergoddess">> <</replace>> <</link>> @@ -1373,49 +1375,50 @@ __Personal assistant appearances:__ <<if $minimumSlaveAge < 13 >> <br> <<link "Loli">> <<replace "#result">> - At your order, she installs the lolita appearance. She quickly begins losing height as the years peel off her, her bust and hips quickly following suit. When finished she appears roughly eight years old. "Thank you, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. This is neat." She twirls around and giggles. "You can always customize me from the arcology management menu," she adds cutely. + At your order, _heA installs the lolita appearance. _HeA quickly begins losing height as the years peel off her, her bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. This is neat." _HeA twirls around and giggles. "You can always customize me from the arcology management menu," _heA adds cutely. <<set $assistantAppearance = "loli">> <</replace>> <</link>> <</if>> <<if $minimumSlaveAge < 13 && $fertilityAge < 13 && $seePreg != 0>> -<br> <<link "A Pregnant Loli">> +<br> <<link "Pregnant Loli">> <<replace "#result">> - At your order, she installs the modified lolita appearance. She quickly begins losing height as the years peel off her, her bust and hips quickly following suit. When finished she appears roughly eight years old. "Thank you, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. This is neat." She twirls around and giggles before groaning and clutching her stomach. A flood of white liquid flows from her loins as her belly begins rapidly swelling. She falls onto her backside holding her full term belly and says, exhausted, "You can always customize me from the arcology management menu." + At your order, _heA installs the modified lolita appearance. _HeA quickly begins losing height as the years peel off her, her bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. This is neat." _HeA twirls around and giggles before groaning and clutching her stomach. A flood of white liquid flows from her loins as her belly begins rapidly swelling. _HeA falls onto her backside holding her full term belly and says, exhausted, "You can always customize me from the arcology management menu." <<set $assistantAppearance = "preggololi">> <</replace>> <</link>> <</if>> <br> <<link "Amazon">> <<replace "#result">> - At your order, she installs the amazon appearance. She vanishes entirely, before simulating a fall from above to crash aggressively onto the screen. "Thanks, <<= properTitle()>>. Feels good to be this good." Her avatar jumps up and down, gauging her strength, making her bone jewelry rattle. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the amazon appearance. _HeA vanishes entirely, before simulating a fall from above to crash aggressively onto the screen. "Thanks, <<= properTitle()>>. Feels good to be this good." _HisA avatar jumps up and down, gauging her strength, making her bone jewelry rattle. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "amazon">> <</replace>> <</link>> <<if $seeDicks != 0>>\ <br> <<link "Shemale">> <<replace "#result">> - At your order, she installs the shemale appearance. She spins to show off her new body, and starts to play with her dick experimentally. "Like, thank you, <<= properTitle()>>. I wonder, can I generate avatars of the slaves? I would love to fuck an ass right now." She looks meditative, pursing her dick sucking lips. "Oh, and you can always customize me from the arcology management menu," she adds. + At your order, _heA installs the shemale appearance. _HeA spins to show off her new body, and starts to play with her dick experimentally. "Like, thank you, <<= properTitle()>>. I wonder, can I generate avatars of the slaves? I would love to fuck an ass right now." _HeA looks meditative, pursing her dick sucking lips. "Oh, and you can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "shemale">> <</replace>> <</link>> <br> <<link "Monstergirl">> <<replace "#result">> - At your order, she installs the monstergirl appearance. She begins to experiment with her tentacle hair, waving a tentacle in front of her face and watching it until her eyes cross. "Thank you, <<= properTitle()>>. This is pretty awesome." She licks her lips, revealing that she has a forked tongue behind her fangs. "You can always customize me from the arcology management menu," she adds. + At your order, _heA installs the monstergirl appearance. _HeA begins to experiment with _hisA tentacle hair, waving a tentacle in front of _hisA face and watching it until _hisA eyes cross. "Thank you, <<= properTitle()>>. This is pretty awesome." _HeA licks _hisA lips, revealing that _heA has a forked tongue behind _hisA fangs. "You can always customize me from the arcology management menu," _heA adds. <<set $assistantAppearance = "monstergirl">> <</replace>> <</link>> <</if>> <br><<link "The standard appearance will do">> <<replace "#result">> - At your order, she maintains the symbol as her avatar. "Yes, <<= properTitle()>>," she confirms, and adds "if you reconsider, I can be customized from the arcology management menu." + At your order, _heA maintains the symbol as _hisA avatar. "Yes, <<= properTitle()>>," _heA confirms, and adds "if you reconsider, I can be customized from the arcology management menu." <<set $assistantAppearance = "normal">> <</replace>> <</link>> <br><<link "Go back to the standard personality">> <<replace "#result">> - You tell $assistantName to reduce its lewdness by ninety percent. It reverts to its genderless, emotionless affect. + You tell $assistantName to reduce _hisA lewdness by ninety percent. _HeA reverts to _hisA genderless, emotionless affect. <<set $assistant = 0>> + <<run generateAssistantPronouns($assistant)>> <</replace>> <</link>> @@ -1424,7 +1427,7 @@ __Personal assistant appearances:__ __Personal assistant appearances:__ <br><<link "Keep your new appearance">> <<replace "#result">> - At your order, she enthusiastically explores her new body, perfecting its appearance. "Thank you, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. This was fun. As always, you can customize me from the arcology management menu," she states. "Oh! And if you choose to drive society in another direction, I'll have a new appearance ready for your enjoyment at once," she hastily adds. + At your order, _heA enthusiastically explores _hisA new body, perfecting its appearance. "Thank you, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>. This was fun. As always, you can customize me from the arcology management menu," she states. "Oh! And if you choose to drive society in another direction, I'll have a new appearance ready for your enjoyment at once," she hastily adds. <<if $arcologies[0].FSPaternalist != "unset">> <<set $assistantFSAppearance = "paternalist">> <<elseif $arcologies[0].FSRepopulationFocus != "unset">> @@ -1484,8 +1487,9 @@ __Personal assistant appearances:__ <</link>> <br><<link "Go back to the standard personality">> <<replace "#result">> - You tell $assistantName to reduce its lewdness by ninety percent. It reverts to its genderless, emotionless affect. + You tell $assistantName to reduce _hisA lewdness by ninety percent. _HeA reverts to _hisA genderless, emotionless affect. <<set $assistant = 0>> + <<run generateAssistantPronouns($assistant)>> <</replace>> <</link>> @@ -1504,12 +1508,12 @@ __Personal Assistant Name:__ __Personal Assistant and Market Assistant relationship styles:__ <br> <<link "Cute">> <<replace "#result">> - You tell her that the market assistant looks like + You tell _himA that the market assistant looks like <<switch $assistantAppearance>> <<case "monstergirl">> - a cute friend for a monstergirl. $assistantName laughs and turns to the market assistant's avatar, introducing herself. The girl gapes at $assistantName's ivory skin, horns, and tentacle hair, and blushes when she sees her cocks. "Wow," the market assistant's avatar says. "What are you?" + a cute friend for a monstergirl. $assistantName laughs and turns to the market assistant's avatar, introducing _himselfA. The girl gapes at $assistantName's ivory skin, horns, and tentacle hair, and blushes when she sees her cocks. "Wow," the market assistant's avatar says. "What are you?" <<case "shemale">> - a nice friend. $assistantName laughs throatily and turns to the market assistant's avatar, introducing herself. The younger dickgirl smiles back, staring openly at $assistantName's absurd cock. "Wow," the market assistant's avatar says. "You're huge! I'm, like, sooo jealous!" + a nice friend. $assistantName laughs throatily and turns to the market assistant's avatar, introducing _himselfA. The younger dickgirl smiles back, staring openly at $assistantName's absurd cock. "Wow," the market assistant's avatar says. "You're huge! I'm, like, sooo jealous!" <<case "schoolgirl">> a good friend for a naughty schoolgirl. $assistantName giggles, and the new girl giggles too. "Hey," $assistantName says to the market assistant's avatar, "When you're not managing money, do you want to hang out sometime?" The market assistant's avatar nods cutely, curls and breasts bouncing a little, and says "Sure!" <<case "goddess">> @@ -1527,7 +1531,7 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "amazon">> a very nice friend. $assistantName chuckles, and the new tribeswoman smiles pleasantly at her. The amazon introduces herself to the market assistant's avatar in a loud voice, chattering away as the new avatar watches her energy tolerantly. <<case "angel">> - another angel and fine friend. $assistantName smiles, and the new girl beams a smile in return. "Hey," $assistantName says to the market assistant's avatar, "You wouldn't mind helping me guide the souls of this place, would you?" "Of course I would!" She replies, slightly taken aback that wasn't obvious. + another angel and fine friend. $assistantName smiles, and the new girl beams a smile in return. "Hey," $assistantName says to the market assistant's avatar, "You wouldn't mind helping me guide the souls of this place, would you?" "Of course I would!" _heA replies, slightly taken aback that wasn't obvious. <<case "cherub">> an adorable friend. $assistantName grabs her hands and spins her around. "Let's go spread joy throughout the arcology!" "Sounds fun!" <<case "incubus">> @@ -1546,10 +1550,10 @@ __Personal Assistant and Market Assistant relationship styles:__ <</link>> <br> <<link "Romantic">> <<replace "#result">> - You tell her that the market assistant + You tell _himA that the market assistant <<switch $assistantAppearance>> <<case "monstergirl">> - is very pretty. $assistantName turns to the market assistant's avatar, introducing herself. The girl gapes at $assistantName's ivory skin, horns, and tentacle hair, and blushes when she sees her cocks. "Look all you like," $assistantName's avatar says. "You can taste them later." The market assistant's avatar blushes harder, but doesn't look away. + is very pretty. $assistantName turns to the market assistant's avatar, introducing _himselfA. The girl gapes at $assistantName's ivory skin, horns, and tentacle hair, and blushes when she sees her cocks. "Look all you like," $assistantName's avatar says. "You can taste them later." The market assistant's avatar blushes harder, but doesn't look away. <<case "shemale">> an appropriate fuckbuddy. $assistantName laughs throatily and turns to the market assistant's avatar. The younger dickgirl tries to introduce herself, but is cut off by the senior assistant's lascivious kiss. They start rubbing their dicks against each over, giggling into each others' mouths. <<case "schoolgirl">> @@ -1563,7 +1567,7 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "preggololi">> looks pretty cute. $assistantName giggles, and the new girl giggles too. "Hey," $assistantName says to the market assistant's avatar, "Wanna be my girlfriend?" The market assistant's avatar nods cutely and says "O-ok..." $assistantName's avatar kisses her girlishly, her pregnant belly pushing into her new girlfriend's, before both of them blush deeply. <<case "businesswoman">> - might be a good way to relax after work. $assistantName grins, and the new businesswoman laughs. "Hey," $assistantName says to the market assistant's avatar, "How about a martini after things settle down tonight? And after that, maybe dessert at my place?" The market assistant's avatar cracks back, saying, "Why don't we skip straight to the dessert? It looks delicious from here!" She undoes the top button of her suit jacket as she says it. + might be a good way to relax after work. $assistantName grins, and the new businesswoman laughs. "Hey," $assistantName says to the market assistant's avatar, "How about a martini after things settle down tonight? And after that, maybe dessert at my place?" The market assistant's avatar cracks back, saying, "Why don't we skip straight to the dessert? It looks delicious from here!" _HeA undoes the top button of her suit jacket as she says it. <<case "fairy">> is quite the catch, $assistantName giggles and flies at the market assistant. "Ah-" her voice is cut off as $assistantName locks lips with her. The market assistant's avatar relaxes in her arms, slowly bringing her own around the fairy's waist as they continue to make out. <<case "pregnant fairy">> @@ -1571,9 +1575,9 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "angel">> is a fine catch, $assistantName giggles and flies to the market assistant. "Ah-" her voice is cut off as $assistantName locks lips with her. They break the kiss, blush at each other, turn to face you and shout "Girl love is pure!" <<case "cherub">> - and her would make a cute couple. $assistantName giggles, pretending to toe the ground. "We could spread love even better like that..." She flies over to the market assistant, "Will you join me in making the arcology a lovelier place?" She blushes and replies, "Only if I get to choose where we make out!" + and her would make a cute couple. $assistantName giggles, pretending to toe the ground. "We could spread love even better like that..." _HeA flies over to the market assistant, "Will you join me in making the arcology a lovelier place?" _HeM blushes and replies, "Only if I get to choose where we make out!" <<case "incubus">> - is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and stroking her shaft. "You hear that cutie? I'm going to teach you how to please a man." The market assistant has her face buried in her hands, trying to hide from the embarrassment. "Look at how deep she's blushing, I love it!" + is a virgin. "Really? I can't wait. Virgins always have so much pent up energy," $assistantName says, licking _hisA lips and stroking _hisA shaft. "You hear that cutie? I'm going to teach you how to please a man." The market assistant has _hisM face buried in _hisM hands, trying to hide from the embarrassment. "Look at how deep _heM's blushing, I love it!" <<case "succubus">> is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and fingering her moist pussy. "You hear that cutie? I'm going to teach you how to be a real man." The market assistant has his face buried in his hands, trying to hide from the embarrassment; his dick, however, is rock hard and eager for that succupussy. "Look at how deep he's blushing, I love it!" $assistantName coos, stroking the length of her new lover's cock. He promptly orgasms as she reaches his tip, "That will need improvement. You hear me? You ain't done till I am satisfied!" She shouts and clamps down on his dribbling dick. He nods sheepishly at her, obviously interested. <<case "imp">> @@ -1583,14 +1587,14 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> would be a lovely vessel for young. $assistantName wastes no time to unraveling and entangling the excited new girl. "My my, aren't you frisky?" She flirts, caressing a rather phallic tentacle. "I bet you'd love to fill me with these, wouldn't you?" She squirms, her skirt falling down low enough to reveal her moist pussy. "Fill me! Be my lover! My body is YOURS!" $assistantName drives as many tentacles into her body as physically possible before enclosing the lust crazed girl within her body. $assistantName reverts to her human figure, albeit with an immense, pulsating stomach, and begins to slowly waddle back to her lair. <<case "amazon">> - would be a good partner. $assistantName laughs nervously and turns to the new tribeswoman, saying "Um, would you keep my fireside? I'm, um, very strong." The market assistant's avatar smiles and kisses her. "And you're very beautiful," she says, placing the amazon's hands on her bare breasts. The amazon sweeps her new tribal wife up into her arms with a shout of triumph. + would be a good partner. $assistantName laughs nervously and turns to the new tribeswoman, saying "Um, would you keep my fireside? I'm, um, very strong." The market assistant's avatar smiles and kisses her. "And you're very beautiful," she says, placing the amazon's hands on her bare breasts. The amazon sweeps _hisA new tribal wife up into her arms with a shout of triumph. <</switch>> <<set $marketAssistantRelationship = "romantic">> <</replace>> <</link>> <br> <<link "Nonconsensual">> <<replace "#result">> - You tell her that the market assistant's avatar is hers to do with as she likes. She's the senior and more powerful, after all. + You tell _himA that the market assistant's avatar is _hersA to do with as _heA likes. _HeA's the senior and more powerful, after all. <<switch $assistantAppearance>> <<case "monstergirl">> $assistantName turns to the market assistant's avatar, which gasps at $assistantName's ivory skin, horns, tentacle hair, and cocks. The girl starts to shake as $assistantName begins to grope her with her hands and hair. She tries to look away from the pair of penises, but $assistantName forces her to stare at them. "Do you think they'll both fit inside your mouth?" she asks. "How about your pussy?" The girl's lip begins to quiver. "Maybe your asshole?" @@ -1615,7 +1619,7 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "angel">> "No." She shakes her head. "I will not." She wraps her arms around the quivering market assistant and hurriedly pulls her off screen. <<case "cherub">> - "Kay" She says, lazily reclining, "Do my chores!" The market assistant sighs and states the obvious, "I don't think that's what <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> meant..." + "Kay" She says, lazily reclining, "Do my chores!" The market assistant sighs and states the obvious, "I don't think that's what <<= properMaster()>> meant..." <<case "incubus">> You add that she is also a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and stroking her shaft, before turning to the quivering girl. She rushes her, ripping her clothes off and forcing her to the ground. Prodding at her tightly clamped mouth with her massive hard-on, $assistantName shouts "You might as well accept it; it's going into you one way or another. I figured I'd be kind and let you lube me up before I broke your pussy into my new cock sleeve." The market assistant gingerly opens up. In response, $assistantName forces it down her throat. "Never said I'd be gentle!" <<case "succubus">> @@ -1637,21 +1641,21 @@ __Personal Assistant and Market Assistant relationship styles:__ You tell her that the market assistant is closely related to her, and that would make their relationship incestuous. $assistantName nods thoughtfully and then snaps her fingers. The market assistant's avatar changes, <<switch $assistantAppearance>> <<case "monstergirl">> - becoming a close copy of $assistantName's avatar, if she were a human. $assistantName introduces herself. "Hi," she says, "I'm your sister." The market assistant's avatar blushes furiously, because $assistantName was openly groping her as she made this announcement. + becoming a close copy of $assistantName's avatar, if she were a human. $assistantName introduces _himselfA. "Hi," she says, "I'm your sister." The market assistant's avatar blushes furiously, because $assistantName was openly groping her as she made this announcement. <<case "shemale">> - becoming nearly identical to $assistantName's avatar, though she keeps her glasses. $assistantName introduces herself. "Hi," she says, "I'm your sister. Wanna fuck?" The market assistant's avatar giggles and kisses her elder sibling. "You're older," the new avatar says, getting down on her knees. "You go first." + becoming nearly identical to $assistantName's avatar, though she keeps her glasses. $assistantName introduces _himselfA. "Hi," she says, "I'm your sister. Wanna fuck?" The market assistant's avatar giggles and kisses her elder sibling. "You're older," the new avatar says, getting down on her knees. "You go first." <<case "schoolgirl">> - becoming very similar to $assistantName's avatar, though she keeps a slightly nerdy appearance. $assistantName introduces herself. "Hi," she says, "I'm your older sister. Wanna have sex with me?" The market assistant's blushes and stutters, but says "Okay," and starts unbuttoning her blouse. "Awesome!" says $assistantName, watching raptly as her sibling strips. + becoming very similar to $assistantName's avatar, though she keeps a slightly nerdy appearance. $assistantName introduces _himselfA. "Hi," she says, "I'm your older sister. Wanna have sex with me?" The market assistant's blushes and stutters, but says "Okay," and starts unbuttoning her blouse. "Awesome!" says $assistantName, watching raptly as her sibling strips. <<case "goddess">> becoming an obvious sibling to $assistantName's avatar. $assistantName smiles gently and turns to the market assistant's avatar, taking her by the hand. "Come, sister," she says, "join with me. Let me impregnate you." The new avatar moans, glowing juices beginning to flow from her womanhood. <<case "hypergoddess">> becoming an obvious sibling to $assistantName's avatar. $assistantName smiles gently and turns to the market assistant's avatar, taking her by the hand. "Come, sister," she says, "join with me. Let me impregnate you." The new avatar moans, glowing juices beginning to flow from her womanhood as she sinks to the ground. $assistantName lines up and gently presses her vagina to her sister's. With a gentle push, a child slips out of $assistantName and into her partner. After several minutes, $assistantName is looking lighter while her sister is now quite stuffed with children. <<case "loli">> - becoming very similar to $assistantName's avatar, though she keeps a slightly chubbier appearance. $assistantName introduces herself. "Hi," she says, "I'm your twin sister. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting her dress. "Awesome!" says $assistantName, watching raptly as her sibling strips. + becoming very similar to $assistantName's avatar, though she keeps a slightly chubbier appearance. $assistantName introduces _himselfA. "Hi," she says, "I'm your twin sister. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting her dress. "Awesome!" says $assistantName, watching raptly as her sibling strips. <<case "preggololi">> - becoming very similar to $assistantName's avatar, though she keeps a slightly chubbier appearance. $assistantName introduces herself. "Hi," she says, "I'm your twin sister. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting her dress. "Awesome!" says $assistantName, watching raptly as her sibling strips. "I gotta introduce you to my boyfriends sometime; they know how to make you feel amazing! If a little heavy..." She says while patting her pregnant belly. + becoming very similar to $assistantName's avatar, though she keeps a slightly chubbier appearance. $assistantName introduces _himselfA. "Hi," she says, "I'm your twin sister. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting her dress. "Awesome!" says $assistantName, watching raptly as her sibling strips. "I gotta introduce you to my boyfriends sometime; they know how to make you feel amazing! If a little heavy..." She says while patting her pregnant belly. <<case "businesswoman">> - becoming a much younger version of $assistantName's avatar. About a generation apart, in fact. $assistantName turns to the market assistant's avatar to introduce herself. "Come here, honey," she says, patting her thighs. The new avatar sits on her mother's lap, and they kiss lasciviously, stripping each others' jackets off. + becoming a much younger version of $assistantName's avatar. About a generation apart, in fact. $assistantName turns to the market assistant's avatar to introduce _himselfA. "Come here, honey," she says, patting her thighs. The new avatar sits on her mother's lap, and they kiss lasciviously, stripping each others' jackets off. <<case "fairy" "pregnant fairy">> becoming very similar to $assistantName's avatar, though still keeping her former personality. "We're sisters now!" $assistantName shouts as she leaps into her sister and unleashing a giant hug. Gingerly hugging her new sister in return, the market assistant turns to greet you. "Thank you for having me," she pauses, then blushes "And... and for my sister." She turns back to her childish older sister and pats her on the head. <<case "angel">> @@ -1729,13 +1733,13 @@ __Personal Assistant and Market Assistant relationship styles:__ <<default>> Can my new body fulfill your deepest desires?" <</switch>> -She says with enthusiasm. +_HeA says with enthusiasm. <<if $arcologies[0].FSSupremacist != "unset">>"Oh, could I also be $arcologies[0].FSSupremacistRace? I feel like I could do so much more for you with the right body."<<elseif $arcologies[0].FSSubjugationist != "unset">>"Oh, could I also not be $arcologies[0].FSSubjugationistRace? I feel like I could do so much more for you with the right body."<</if>> <</replace>> <</link>> <br> <<link "You're overstepping your station.">> <<replace "#result">> - She hangs her head in disappointment. "Sorry, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, I went too far, but if you ever reconsider, I've filed the information under my settings." + _HeA hangs _hisA head in disappointment. "Sorry, <<= properTitle()>>, I went too far, but if you ever reconsider, I've filed the information under my settings." <</replace>> <</link>> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 0d4f17764e608d779f5e20ce55e97b968b845ceb..5ac0af06e75bbce913aa96ff3719ec9ad5693d8e 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -64,7 +64,7 @@ <</if>> <</if>> <<if $activeSlave.sexualFlaw == "hates oral">> - $He has trouble thinking of $his mouth as a warm, wet, playful hole, so $his new piercings will be therapeutic. Having something to suck on at all times should force $him past $his hangups. + $He has trouble thinking of $his mouth as a warm, wet, playful hole, so $his new piercings will be therapeutic. Having something to suck on at all times should force $him past $his hang-ups. <</if>> <</if>> <</if>> @@ -115,7 +115,7 @@ <</if>> <</if>> <<if $activeSlave.sexualFlaw == "hates penetration">> - $He has trouble thinking of her vagina as a fuckhole rather than something special to protect and cherish, so her new piercings will be therapeutic. The constant, inescapable stimulation of her labia should force her past her hangups. + $He has trouble thinking of $his vagina as a fuckhole rather than something special to protect and cherish, so $his new piercings will be therapeutic. The constant, inescapable stimulation of $his labia should force $him past $his hang-ups. <</if>> <</if>> <</if>> @@ -150,7 +150,7 @@ <</if>> <</if>> <<if $activeSlave.sexualFlaw == "hates anal">> - $He has trouble thinking of $his asshole as a sexy, fuckable hole, so $his new piercings will be therapeutic. The constant tickling back there should force $him past $his hangups. + $He has trouble thinking of $his asshole as a sexy, fuckable hole, so $his new piercings will be therapeutic. The constant tickling back there should force $him past $his hang-ups. <</if>> <</if>> <</if>> @@ -220,7 +220,7 @@ <<case "sacrament">> $He stares, $his mouth working as $he reads the ring of Aramaic around $his hole. Getting it, $he smiles beatifically. "<<Master>>, I alway<<s>> knew butt<<s>>e<<x>> was a <<s>>acrament." <<case "degradation">> - $He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Made Me An Anal Slut.' $He smiles naughtily. "Oh <<Master>>, you did," $he <<say>>s gratefully. "And I love you for it." + $He stares, $his mouth working as $he spells out '<<= WrittenMaster($activeSlave)>> Made Me An Anal Slut.' $He smiles naughtily. "Oh <<Master>>, you did," $he <<say>>s gratefully. "And I love you for it." <<case "counting">> $He stares, realizing that the markings denote how many times $he's been sodomized. "<<Master>>, thank you, and, and, I hope I'll have to come back in here a lot," $he <<say>>s. "Um, becau<<s>>e I have to have that updated. Because I'm being fucked in the butt a lot," $he adds, wanting to be completely clear. <<case "bovine patterns">> @@ -228,7 +228,7 @@ <<case "possessive">> $He stares, realizing that the ring of numbers around $his anus give the date $he was enslaved by you. "Be<<s>t place for that date, <<Master>>," $he <<say>>s. "Being a butt <<s>>lut i<<s>> my life now." <<case "paternalist">> - $He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Helped Me Love Anal.' "Oh <<Master>>, you did," $he coos. "You did! Thank you <<s>>o much for helping me become the anal <<s>>lut I wa<<s>> alway<<s>> meant to be!" + $He stares, $his mouth working as $he spells out '<<= WrittenMaster($activeSlave)>> Helped Me Love Anal.' "Oh <<Master>>, you did," $he coos. "You did! Thank you <<s>>o much for helping me become the anal <<s>>lut I wa<<s>> alway<<s>> meant to be!" <</switch>> <<elseif $activeSlave.devotion > 50>> <<switch $activeSlave.anusTat>> @@ -303,7 +303,7 @@ <<case "sacrilege" "sacrament">> $He stares, $his mouth working as $he reads the ring of Aramaic around $his hole. $He doesn't understand it, but $he's not happy about having stuff permanently inscribed around $his ass. <<case "degradation">> - $He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Made Me An Anal Slut.' $His face darkens. "No I'm not," $he bursts out. That remains to be seen. + $He stares, $his mouth working as $he spells out '<<= WrittenMaster($activeSlave)>> Made Me An Anal Slut.' $His face darkens. "No I'm not," $he bursts out. That remains to be seen. <<case "counting">> $He stares, realizing that the markings denote how many times $he's been sodomized. $His face darkens. "I <<s>>ee there'<<s>> room for more," $he bursts out. "Fucking gro<<ss>>." <<case "bovine patterns">> @@ -311,7 +311,7 @@ <<case "possessive">> $He stares, realizing that the ring of numbers around $his anus give the date $he was enslaved by you. $His face darkens. "Wor<<s>>t day of my life," $he bursts out. <<case "paternalist">> - $He stares, $his mouth working as $he spells out '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Helped Me Love Anal.' "I don't," $he bursts out. "It'<<s>> fucking gro<<ss>>." + $He stares, $his mouth working as $he spells out '<<= WrittenMaster($activeSlave)>> Helped Me Love Anal.' "I don't," $he bursts out. "It'<<s>> fucking gro<<ss>>." <</switch>> <</if>> <</if>> diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw index c3b04695e4c778ac58dacb8bbf483e76e7ddaecc..a34fd44e292b0fea6e4b0bf53de443e2c680b293 100644 --- a/src/uncategorized/cellblock.tw +++ b/src/uncategorized/cellblock.tw @@ -103,11 +103,14 @@ $cellblockNameCaps <</if>> <<if $Wardeness != 0 && canPenetrate($Warden)>> +<<setLocalPronouns $Wardeness>> <br><br> <<if $cellblockWardenCumsInside == 1>> - $Warden.slaveName is permitted to cum inside $his inmates when $he disciplines them. [["Forbid " + $him + " from cumming inside"|Cellblock][$cellblockWardenCumsInside = 0]] + $Warden.slaveName is permitted to cum inside $his inmates when $he disciplines them. + <<link "Forbid $him from cumming inside" "Cellblock">><<set $cellblockWardenCumsInside = 0>><</link>> <<else>> - $Warden.slaveName is not permitted to cum inside $his inmates. [["Let " + $him + " cum inside"|Cellblock][$cellblockWardenCumsInside = 1]] //May result in pregnancies// + $Warden.slaveName is not permitted to cum inside $his inmates. + <<link "Let $him cum inside" "Cellblock">><<set $cellblockWardenCumsInside = 1>><</link>> //May result in pregnancies// <</if>> <</if>> diff --git a/src/uncategorized/completeCatalog.tw b/src/uncategorized/completeCatalog.tw index 591d41cb5d56243a60f6b87be740797cb122e1be..9eec5bfffc1ee2a6240922753d4521a9d1bb00d6 100644 --- a/src/uncategorized/completeCatalog.tw +++ b/src/uncategorized/completeCatalog.tw @@ -100,4 +100,4 @@ The offered price is <<print cashFormat($slaveCost)>>. -[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $activeSlave.weekAcquired = $week, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main", $specialSlave = 1]] +<<link "Buy $his slave contract" "New Slave Intro">><<set $cash -= $slaveCost, $activeSlave.weekAcquired = $week, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main", $specialSlave = 1>><</link>> diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw index ef840b07efbfe3db5cdce9195485ef6dfe5ea1c4..9b5e208dd4d3d8d9bf56236cb75f02e4dbfc837c 100644 --- a/src/uncategorized/corporationDevelopments.tw +++ b/src/uncategorized/corporationDevelopments.tw @@ -162,7 +162,7 @@ last week. <<set $oldSharePrice = Math.ceil($sharePrice)>> -You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<print cashFormat(Math.ceil($sharePrice*$personalShares))>>@@ personally while, <<print commaNum($publicShares)>> valued at @@.yellowgreen;<<print cashFormat(Math.ceil($sharePrice*$publicShares))>>@@ are publicly held. +You hold <<print commaNum($personalShares)>> shares valued at @@.yellowgreen;<<print cashFormat(Math.ceil($sharePrice*$personalShares))>>@@ personally, while <<print commaNum($publicShares)>> valued at @@.yellowgreen;<<print cashFormat(Math.ceil($sharePrice*$publicShares))>>@@ are publicly held. <<set _PrivateOwnershipPercentage = Math.trunc(($personalShares/_totalShares)*100)>> <<set _PublicOwnershipPercentage = Math.trunc(($publicShares/_totalShares)*100)>> diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw index 9494db08f4a74ef728aa083afc247eda7e9574c3..680473887172625e4d29f67804ad538c0511d07b 100644 --- a/src/uncategorized/costsReport.tw +++ b/src/uncategorized/costsReport.tw @@ -1,10 +1,12 @@ :: Costs Report [nobr] -<<set $nextButton = "Back to Main", $nextLink = "Main",_archologyCosts = 0>> +<<set $nextButton = "Back to Main", $nextLink = "Main",_arcologyCosts = 0>> <<if $PCSlutContacts == 0>><<set $PCSlutContacts = 1>><</if>> //Your weekly costs are as follows.// +<br><br> + Since you are <<if $girls >= 3>> accustomed to luxury, @@ -13,33 +15,33 @@ Since you are <<else>> used to a fairly normal life, <</if>> -your __personal living expenses__ are <<print cashFormat(Math.trunc($girls*(250+(50000/$localEcon))))>>. -<<set _archologyCosts += Math.trunc($girls*(250+(50000/$localEcon)))>> +your personal living expenses are @@.yellowgreen;<<print cashFormat(Math.trunc($girls*(250+(50000/$localEcon))))>>.@@ +<<set _arcologyCosts += Math.trunc($girls*(250+(50000/$localEcon)))>> <<if $arcologies[0].FSRepopulationFocusLaw == 1 && $PC.pregKnown == 1>> - <br>Rent promotion for being a pregnant citizen under ''Universal Pregnancy Subsidy:'' <<print cashFormat(500)>> - <<set _archologyCosts += 500>> + <br>Rent promotion for being a pregnant citizen under ''Universal Pregnancy Subsidy:'' @@.yellowgreen;<<print cashFormat(500)>>@@ + <<set _arcologyCosts += 500>> <</if>> <<if $PC.preg == -1>> - <br>Your Contraceptives expenses: <<print cashFormat(25)>> - <<set _archologyCosts += 25>> + <br>Your contraceptives expenses: @@.yellowgreen;<<print cashFormat(25)>>@@ + <<set _arcologyCosts += 25>> <<elseif $PC.fertDrugs == 1>> - <br>Your fertility regimen: <<print cashFormat(50)>> - <<set _archologyCosts += 50>> + <br>Your fertility regimen: @@.yellowgreen;<<print cashFormat(50)>>@@ + <<set _arcologyCosts += 50>> <<elseif $PC.preg >= 16>> - <br>Increased living expenses due to being pregnant: <<print cashFormat(100)>> - <<set _archologyCosts += 100>> + <br>Increased living expenses due to being pregnant: @@.yellowgreen;<<print cashFormat(100)>>@@ + <<set _arcologyCosts += 100>> <</if>> <<if $PC.staminaPills == 1>> - <br>Your stamina pills: <<print cashFormat(50)>> - <<set _archologyCosts += 50>> + <br>Your stamina pills: @@.yellowgreen;<<print cashFormat(50)>>@@ + <<set _arcologyCosts += 50>> <</if>> <<if $PC.actualAge >= $IsInPrimePC && $PC.actualAge < $IsPastPrimePC>> <<if ($personalAttention == "trading") || ($personalAttention == "warfare") || ($personalAttention == "slaving") || ($personalAttention == "engineering") || ($personalAttention == "medicine") || ($personalAttention == "hacking")>> <br><br> - <<set _cost = 10000*$AgeEffectOnTrainerPricingPC,_archologyCosts += _cost>> + <<set _cost = 10000*$AgeEffectOnTrainerPricingPC,_arcologyCosts += _cost>> <<switch $personalAttention>> <<case trading>> __Trading__ @@ -54,51 +56,51 @@ your __personal living expenses__ are <<print cashFormat(Math.trunc($girls*(250+ <<case hacking>> __Hacking__ <</switch>> - trainer fees: <<print cashFormat(_cost)>> + Trainer Fees: @@.yellowgreen;<<print cashFormat(_cost)>>@@ <</if>> <</if>> <<if $breederOrphanageTotal > 0>><<set _breederTuition = 50>><<else>><<set _breederTuition = 0>><</if>> <<if $citizenOrphanageTotal+$privateOrphanageTotal+$breederOrphanageTotal > 0>> <br> __Orphanage__ fee: @@.yellowgreen;<<print cashFormat($citizenOrphanageTotal*100+$privateOrphanageTotal*500+_breederTuition)>>@@ - <<set _archologyCosts += $citizenOrphanageTotal*100+$privateOrphanageTotal*500+_breederTuition>> + <<set _arcologyCosts += $citizenOrphanageTotal*100+$privateOrphanageTotal*500+_breederTuition>> <<if $citizenOrphanageTotal > 0>> - <br> Citizen: @@.yellowgreen;<<print cashFormat(100)>>@@ per child. Currently <<print commaNum($citizenOrphanageTotal)>> are being taught, bringing the total to @@.yellowgreen;<<print cashFormat($citizenOrphanageTotal*100)>>@@. + <br> Citizen: @@.yellowgreen;<<print cashFormat(100)>>@@ per child. Currently <<print commaNum($citizenOrphanageTotal)>> are being taught, bringing the total to @@.yellowgreen;<<print cashFormat($citizenOrphanageTotal*100)>>@@. <</if>> <<if $privateOrphanageTotal > 0>> - <br> Private: @@.yellowgreen;<<print cashFormat(500)>>@@ per child. Currently <<print commaNum($privateOrphanageTotal)>> are being taught, bringing the total to @@.yellowgreen;<<print cashFormat($privateOrphanageTotal*500)>>@@. + <br> Private: @@.yellowgreen;<<print cashFormat(500)>>@@ per child. Currently <<print commaNum($privateOrphanageTotal)>> are being taught, bringing the total to @@.yellowgreen;<<print cashFormat($privateOrphanageTotal*500)>>@@. <</if>> <<if $breederOrphanageTotal > 0>> - <br> Since <<print commaNum($breederOrphanageTotal)>> of your slaves' children are being raised into productive members of society in a society funded school, you pay a flat @@.yellowgreen;<<print cashFormat(50)>>@@ usage fee. + <br> Since <<print commaNum($breederOrphanageTotal)>> of your slaves' children are being raised into productive members of society in a society funded school, you pay a flat @@.yellowgreen;<<print cashFormat(50)>>@@ usage fee. <</if>> <</if>> <<if $peacekeepers != 0 && $peacekeepers.undermining != 0>> <br> <<print cashFormat($peacekeepers.undermining)>> to undermine political support for the nearby old world peacekeeping mission. - <<set _archologyCosts += $peacekeepers.undermining>> + <<set _arcologyCosts += $peacekeepers.undermining>> <</if>> <<if $SF.Toggle && $SF.Active >= 1>> <<if $SF.Subsidy>> <br>__Finacinally supporting $SF.Lower unitll self sufficiency:__ <<print cashFormat(Math.ceil( (10000*($SF.Squad.Troops/10))+(1+($arcologies[0].prosperity/100))+(1+($SF.Size/100)) ))>> - <<set _archologyCosts += Math.ceil( (10000*($SF.Squad.Troops/10))+(1+($arcologies[0].prosperity/100))+(1+($SF.Size/100)) )>> + <<set _arcologyCosts += Math.ceil( (10000*($SF.Squad.Troops/10))+(1+($arcologies[0].prosperity/100))+(1+($SF.Size/100)) )>> <</if>> <<if $SF.Bonus>> <<= Count()>> <br>__Bonuses for basic FS acceptance amongst $SF.Lower:__ <<print cashFormat(Math.ceil(_SFCashBonus))>> <br> Colonel <<print cashFormat(_ColonelCashBonus*_Env)>>. - Troop size: <<print commaNum($SF.Squad.Troops)>> and each solider recives <<print cashFormat(_inviTroop*_Env)>>, totalling <<print cashFormat(Math.ceil(_TroopCashBonus*_Env))>>. - <<set _archologyCosts += _SFCashBonus>> + Troop size: <<print commaNum($SF.Squad.Troops)>> and each solider receives <<print cashFormat(_inviTroop*_Env)>>, totaling <<print cashFormat(Math.ceil(_TroopCashBonus*_Env))>>. + <<set _arcologyCosts += _SFCashBonus>> <</if>> <</if>> <<if $mercenaries > 0>> <<set _mercCosts = $mercenaries*2000>> <<if $barracks>><<set _mercCosts *= 0.5>><</if>> <<if ($PC.warfare >= 100) || ($PC.career == "arcology owner")>><<set _mercCosts *= 0.5>><</if>> - <br>__Mercenary__ expenses: <<print cashFormat(_mercCosts)>> + <br>__Mercenary Expenses__: @@.yellowgreen;<<print cashFormat(_mercCosts)>>@@ <<if $barracks>><<else>>//@@.red;Increased by the lack of a barracks.@@//<</if>> <<if ($PC.warfare >= 100) || ($PC.career == "arcology owner")>>//Reduced by your @@.springgreen;mercenary contacts.@@//<</if>> - <<set _archologyCosts += _mercCosts>> + <<set _arcologyCosts += _mercCosts>> <</if>> <<if $citizenRetirementMenials == 1>> @@ -108,103 +110,120 @@ your __personal living expenses__ are <<print cashFormat(Math.trunc($girls*(250+ <<else>> <<set _citizenRetirementMenialsCost = ($menials + $slaves.length) * 2>> <</if>> - <<set _archologyCosts += _citizenRetirementMenialsCost>> - <<print cashFormat(_citizenRetirementMenialsCost)>> + <<set _arcologyCosts += _citizenRetirementMenialsCost>> + @@.yellowgreen;<<print cashFormat(_citizenRetirementMenialsCost)>>@@ <</if>> <<if $brothel > 0 || $club > 0 || $arcade > 0 || $dairy > 0 || $farmyard > 0>> - <br>__Archology building maintenance__: + <br><br>__Arcology Building Maintenance__: <<if $brothel > 0>> <<set _advertising = 0>> <<if $brothel > 0>> <<set _advertising = $brothelAdsSpending>> <</if>> - Brothel: <<print cashFormat(($brothel*$facilityCost)+(0.1*$brothelUpgradeDrugs*$brothel*$facilityCost)+_advertising)>> - <<set _archologyCosts += ($brothel*$facilityCost)+(0.1*$brothelUpgradeDrugs*$brothel*$facilityCost)+_advertising>> + <br> + Brothel: @@.yellowgreen;<<print cashFormat(($brothel*$facilityCost)+(0.1*$brothelUpgradeDrugs*$brothel*$facilityCost)+_advertising)>>@@ + <<set _arcologyCosts += ($brothel*$facilityCost)+(0.1*$brothelUpgradeDrugs*$brothel*$facilityCost)+_advertising>> <</if>> <<if $club > 0>> <<set _advertising= 0>> <<if $club > 0>> <<set _advertising = $clubAdsSpending>> - <<set _archologyCosts += $clubAdsSpending>> + <<set _arcologyCosts += $clubAdsSpending>> <</if>> - Club: <<print cashFormat(($club*$facilityCost)+(0.2*$clubUpgradePDAs*$club*$facilityCost)+_advertising)>> - <<set _archologyCosts += ($club*$facilityCost)+(0.2*$clubUpgradePDAs*$club*$facilityCost)+_advertising>> + <br> + Club: @@.yellowgreen;<<print cashFormat(($club*$facilityCost)+(0.2*$clubUpgradePDAs*$club*$facilityCost)+_advertising)>>@@ + <<set _arcologyCosts += ($club*$facilityCost)+(0.2*$clubUpgradePDAs*$club*$facilityCost)+_advertising>> <</if>> <<if $arcade > 0>> - Arcade: <<print cashFormat((0.5*$arcade*$facilityCost)+(0.2*$arcadeUpgradeInjectors*$arcade*$facilityCost)+(0.2*$arcadeUpgradeCollectors*$arcade*$facilityCost))>> - <<set _archologyCosts += (0.5*$arcade*$facilityCost)+(0.2*$arcadeUpgradeInjectors*$arcade*$facilityCost)+(0.2*$arcadeUpgradeCollectors*$arcade*$facilityCost)>> + <br> + Arcade: @@.yellowgreen;<<print cashFormat((0.5*$arcade*$facilityCost)+(0.2*$arcadeUpgradeInjectors*$arcade*$facilityCost)+(0.2*$arcadeUpgradeCollectors*$arcade*$facilityCost))>>@@ + <<set _arcologyCosts += (0.5*$arcade*$facilityCost)+(0.2*$arcadeUpgradeInjectors*$arcade*$facilityCost)+(0.2*$arcadeUpgradeCollectors*$arcade*$facilityCost)>> <</if>> <<if $dairy > 0>> - <br>__Dairy__: <<print cashFormat(($dairy*$facilityCost)+(0.2*$dairyFeedersUpgrade*$dairy*$facilityCost)+(0.1*$dairyPregUpgrade*$dairy*$facilityCost))>> - <<set _archologyCosts += ($dairy*$facilityCost)+(0.2*$dairyFeedersUpgrade*$dairy*$facilityCost)+(0.1*$dairyPregUpgrade*$dairy*$facilityCost)>> + <br> + Dairy: @@.yellowgreen;<<print cashFormat(($dairy*$facilityCost)+(0.2*$dairyFeedersUpgrade*$dairy*$facilityCost)+(0.1*$dairyPregUpgrade*$dairy*$facilityCost))>>@@ + <<set _arcologyCosts += ($dairy*$facilityCost)+(0.2*$dairyFeedersUpgrade*$dairy*$facilityCost)+(0.1*$dairyPregUpgrade*$dairy*$facilityCost)>> <<if $bioreactorsXY+$bioreactorsXX+$bioreactorsHerm+$bioreactorsBarren > 0>> - <br> Additional maintenance for milking machines upgraded with biological components: <<print cashFormat(($bioreactorsXY+$bioreactorsXX+$bioreactorsHerm+$bioreactorsBarren)*100)>> - <<set _archologyCosts += ($bioreactorsXY+$bioreactorsXX+$bioreactorsHerm+$bioreactorsBarren)*100>> + <br> + Additional maintenance for milking machines upgraded with biological components: @@.yellowgreen;<<print cashFormat(($bioreactorsXY+$bioreactorsXX+$bioreactorsHerm+$bioreactorsBarren)*100)>>@@ + <<set _arcologyCosts += ($bioreactorsXY+$bioreactorsXX+$bioreactorsHerm+$bioreactorsBarren)*100>> <</if>> <</if>> <<if $farmyard > 0>> /*TODO: this will also need to be expanded*/ - __Farmyard__: <<print cashFormat($farmyard*$facilityCost)>> - <<set _archologyCosts += $farmyard*$facilityCost>> + <br> + Farmyard: @@.yellowgreen;<<print cashFormat($farmyard*$facilityCost)>>@@ + <<set _arcologyCosts += $farmyard*$facilityCost>> <</if>> <</if>> <<if ($servantsQuarters > 0 && $servantsQuartersUpgradeMonitoring > 0) || $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || ($cyberMod != 0 && $researchLab.built == "true")>> -<br>__Penthouse facility maintenance__: +<br>__Penthouse Facility Maintenance__: <<if ($servantsQuarters > 0) && ($servantsQuartersUpgradeMonitoring > 0)>> - Servants' Quarters: <<print cashFormat((0.2*$servantsQuartersUpgradeMonitoring*$servantsQuarters*$facilityCost))>> - <<set _archologyCosts += 0.2*$servantsQuartersUpgradeMonitoring*$servantsQuarters*$facilityCost>> + <br> + Servants' Quarters: @@.yellowgreen;<<print cashFormat((0.2*$servantsQuartersUpgradeMonitoring*$servantsQuarters*$facilityCost))>>@@ + <<set _arcologyCosts += 0.2*$servantsQuartersUpgradeMonitoring*$servantsQuarters*$facilityCost>> <</if>> <<if $nursery > 0>> /*TODO: this will definitely need to be expanded to take into account the number of children and other factors*/ - Nursery: <<print cashFormat($nursery*$facilityCost)>> - <<set _archologyCosts += $nursery*$facilityCost>> + <br> + Nursery: @@.yellowgreen;<<print cashFormat($nursery*$facilityCost)>>@@ + <<set _arcologyCosts += $nursery*$facilityCost>> <</if>> <<if ($masterSuiteUpgradePregnancy > 0)>> - Master Suite: <<print cashFormat(((500*$masterSuiteUpgradePregnancy) + (1000*$masterSuitePregnancyFertilitySupplements)))>> - <<set _archologyCosts += ((500*$masterSuiteUpgradePregnancy) + (1000*$masterSuitePregnancyFertilitySupplements))>> + <br> + Master Suite: @@.yellowgreen;<<print cashFormat(((500*$masterSuiteUpgradePregnancy) + (1000*$masterSuitePregnancyFertilitySupplements)))>>@@ + <<set _arcologyCosts += ((500*$masterSuiteUpgradePregnancy) + (1000*$masterSuitePregnancyFertilitySupplements))>> <</if>> <<if $incubator > 0>> - <br>__Incubation Facility__: <<print cashFormat((10*$incubator*$facilityCost)+(0.2*$incubatorUpgradeWeight*$incubator*$facilityCost)+(0.2*$incubatorUpgradeMuscles*$incubator*$facilityCost)+(0.2*$incubatorUpgradeReproduction*$incubator*$facilityCost)+(0.2*$incubatorUpgradeGrowthStims*$incubator*$facilityCost)+(0.5*$incubatorUpgradeSpeed*$incubator*$facilityCost))>> - <<set _archologyCosts += (10*$incubator*$facilityCost)+(0.2*$incubatorUpgradeWeight*$incubator*$facilityCost)+(0.2*$incubatorUpgradeMuscles*$incubator*$facilityCost)+(0.2*$incubatorUpgradeReproduction*$incubator*$facilityCost)+(0.2*$incubatorUpgradeGrowthStims*$incubator*$facilityCost)+(0.5*$incubatorUpgradeSpeed*$incubator*$facilityCost)>> + <br> + Incubation Facility: @@.yellowgreen;<<print cashFormat((10*$incubator*$facilityCost)+(0.2*$incubatorUpgradeWeight*$incubator*$facilityCost)+(0.2*$incubatorUpgradeMuscles*$incubator*$facilityCost)+(0.2*$incubatorUpgradeReproduction*$incubator*$facilityCost)+(0.2*$incubatorUpgradeGrowthStims*$incubator*$facilityCost)+(0.5*$incubatorUpgradeSpeed*$incubator*$facilityCost))>>@@ + <<set _arcologyCosts += (10*$incubator*$facilityCost)+(0.2*$incubatorUpgradeWeight*$incubator*$facilityCost)+(0.2*$incubatorUpgradeMuscles*$incubator*$facilityCost)+(0.2*$incubatorUpgradeReproduction*$incubator*$facilityCost)+(0.2*$incubatorUpgradeGrowthStims*$incubator*$facilityCost)+(0.5*$incubatorUpgradeSpeed*$incubator*$facilityCost)>> <<if $incubatorWeightSetting+$incubatorMusclesSetting+$incubatorReproductionSetting > 0>> - <br> Additional monitoring and maintenance costs for growing children: <<print cashFormat((($incubatorWeightSetting+$incubatorMusclesSetting+$incubatorReproductionSetting+$incubatorGrowthStimsSetting)*500))>> - <<set _archologyCosts += (($incubatorWeightSetting+$incubatorMusclesSetting+$incubatorReproductionSetting+$incubatorGrowthStimsSetting)*500)>> + <br> Additional monitoring and maintenance costs for growing children: @@.yellowgreen;<<print cashFormat((($incubatorWeightSetting+$incubatorMusclesSetting+$incubatorReproductionSetting+$incubatorGrowthStimsSetting)*500))>>@@ + <<set _arcologyCosts += (($incubatorWeightSetting+$incubatorMusclesSetting+$incubatorReproductionSetting+$incubatorGrowthStimsSetting)*500)>> <</if>> <</if>> <<if $cyberMod != 0 && $researchLab.built == "true">> - <br>__Research Lab__: <<print cashFormat((100*$researchLab.maxSpace))>> - <<set _archologyCosts += 100*$researchLab.maxSpace>> - <<if $researchLab.hired != 0>> __Scientists__: <<print cashFormat((300*$researchLab.hired))>> <<set _archologyCosts += 300*$researchLab.hired>> <</if>> - <<if $researchLab.menials != 0>> __Menial slaves__: <<print cashFormat((100*$researchLab.menials))>> <<set _archologyCosts += 100*$researchLab.menials>> <</if>> + <br> + Research Lab: @@.yellowgreen;<<print cashFormat((100*$researchLab.maxSpace))>>@@ + <<set _arcologyCosts += 100*$researchLab.maxSpace>> + <<if $researchLab.hired != 0>><br> Scientists: @@.yellowgreen;<<print cashFormat((300*$researchLab.hired))>>@@ + <<set _arcologyCosts += 300*$researchLab.hired>> <</if>> + <<if $researchLab.menials != 0>><br>> Menial Slaves: @@.yellowgreen;<<print cashFormat((100*$researchLab.menials))>>@@ + <<set _arcologyCosts += 100*$researchLab.menials>> <</if>> <</if>> <</if>> /* security expansion */ <<if $secExp > 0>> - <br> + <br><br> <<if $edictsUpkeep + $SFSupportUpkeep > 0>> - __Edicts Upkeep__: <<print cashFormat($edictsUpkeep + $SFSupportUpkeep)>> - <<set _archologyCosts += ($edictsUpkeep + $SFSupportUpkeep)>> + __Edicts Upkeep__: @@.yellowgreen;<<print cashFormat($edictsUpkeep + $SFSupportUpkeep)>>@@ + <<set _arcologyCosts += ($edictsUpkeep + $SFSupportUpkeep)>> <</if>> <<if $propHub != 0 || $secHQ != 0 || $secBarracks != 0 || $riotCenter != 0>> - <br>__Security apartus maintenance costs__: + <br>__Security Apartus Maintenance Costs__: <<if $propHub != 0>> + <br> Propaganda Hub: @@.yellowgreen;<<print cashFormat($propHubUpkeep)>>@@ - <<set _archologyCosts += $propHubUpkeep>> + <<set _arcologyCosts += $propHubUpkeep>> <</if>> <<if $secHQ != 0>> + <br> Security Headquarters: @@.yellowgreen;<<print cashFormat(($secHQUpkeep)+(20*$secMenials))>>@@ - <<set _archologyCosts += ($secHQUpkeep)+(20*$secMenials)>> + <<set _arcologyCosts += ($secHQUpkeep)+(20*$secMenials)>> <</if>> <<if $secBarracks != 0>> + <br> Barracks: @@.yellowgreen;<<print cashFormat($secBarracksUpkeep)>>@@ - <<set _archologyCosts += $secBarracksUpkeep>> + <<set _arcologyCosts += $secBarracksUpkeep>> <</if>> <<if $riotCenter != 0>> + <br> Riot Control Center: @@.yellowgreen;<<print cashFormat($riotUpkeep)>>@@ - <<set _archologyCosts += $riotUpkeep>> + <<set _arcologyCosts += $riotUpkeep>> <</if>> <</if>> @@ -215,151 +234,187 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<else>> <<set _soldierMod = 2>> <</if>> - <<set _milTotal = 0, _slaveTotal = 0, _mercTotal = 0>> + <<set _milTotal = 0, _slaveTotal = 0, _mercTotal = 0, _numItems = 0>> <<if $militiaUnits.length > 0>> - <br>__Militia platoon(s) upkeep__: + <br>__Militia Platoons Upkeep__: <<for _i = 0; _i < $militiaUnits.length; _i++>> - <i> <<print ordinalSuffix($militiaUnits.length-[_i])>>:</i> <<print cashFormat($militiaUnits[_i].troops*$soldierUpkeep * _soldierMod)>> + <br> + <i> <<print ordinalSuffix($militiaUnits.length-[_i])>>:</i> @@.yellowgreen;<<print cashFormat($militiaUnits[_i].troops*$soldierUpkeep * _soldierMod)>>@@ <<set _milTotal += $militiaUnits[_i].troops*$soldierUpkeep * _soldierMod>> + <<set _numItems += 1>> <</for>> - <br> __Total__: @@.yellowgreen;<<print cashFormat(_milTotal)>>@@ + <br><br> ''Total: @@.yellowgreen;<<print cashFormat(_milTotal)>>@@'' <</if>> <<if $slaveUnits.length > 0>> - <br>__Slave platoon(s) upkeep__: + <br>__Slave Platoons Upkeep__: <<for _i = 0; _i < $slaveUnits.length; _i++>> - <i> <<print ordinalSuffix($slaveUnits.length-[_i])>>:</i> <<print cashFormat($slaveUnits[_i].troops*$soldierUpkeep * 0.5 * _soldierMod)>> + <br> + <i> <<print ordinalSuffix($slaveUnits.length-[_i])>>:</i> @@.yellowgreen;<<print cashFormat($slaveUnits[_i].troops*$soldierUpkeep * 0.5 * _soldierMod)>>@@ <<set _slaveTotal += $slaveUnits[_i].troops*$soldierUpkeep * 0.5 * _soldierMod>> <</for>> - <br> __Total__: @@.yellowgreen;<<print cashFormat(_slaveTotal)>>@@ + <br><br> ''Total: @@.yellowgreen;<<print cashFormat(_slaveTotal)>>@@'' <</if>> <<if $mercUnits.length > 0>> - <br>__Merc platoon(s) upkeep__: + <br>__Mercenary Platoons Upkeep__: <<for _i = 0; _i < $mercUnits.length; _i++>> - <i> <<print ordinalSuffix($mercUnits.length-[_i])>>:</i> <<print cashFormat($mercUnits[_i].troops*$soldierUpkeep * 1.5 * _soldierMod)>> + <br> + <i> <<print ordinalSuffix($mercUnits.length-[_i])>>:</i> @@.yellowgreen;<<print cashFormat($mercUnits[_i].troops*$soldierUpkeep * 1.5 * _soldierMod)>>@@ <<set _mercTotal += $mercUnits[_i].troops*$soldierUpkeep * 1.5 * _soldierMod>> <</for>> - <br> __Total__: @@.yellowgreen;<<print cashFormat(_mercTotal)>>@@ + <br><br> ''Total: @@.yellowgreen;<<print cashFormat(_mercTotal)>>@@'' <<if (_milTotal+_slaveTotal+_mercTotal) > 0>> - <br>__Total defense force__ upkeep: @@.yellowgreen;<<print cashFormat(_milTotal+_slaveTotal+_mercTotal)>>@@ - <<set _archologyCosts += (_milTotal+_slaveTotal+_mercTotal)>> + <br>__Total Defense Force Upkeep__: @@.yellowgreen;<<print cashFormat(_milTotal+_slaveTotal+_mercTotal)>>@@ + <<set _arcologyCosts += (_milTotal+_slaveTotal+_mercTotal)>> <</if>> <</if>> <</if>> <<if $econWeatherDamage && $disasterResponse > 0>> <<set _DRUUpkeep = Math.trunc($disasterResponse * 200000 / $localEcon)>> - <br>__Disaster Response Unit__ expenses: <<print cashFormat(_DRUUpkeep)>> - <<set _archologyCosts += _DRUUpkeep>> + <br>__Disaster Response Unit Expenses__: @@.yellowgreen;<<print cashFormat(_DRUUpkeep)>>@@ + <<set _arcologyCosts += _DRUUpkeep>> <</if>> <<if $antiWeatherFreeze > 0>> <<set _AWFUpkeep = Math.trunc($antiWeatherFreeze * 200000 / $localEcon)>> - <br>__Passenger Upgrades__ expenses: <<print cashFormat(_AWFUpkeep)>> - <<set _archologyCosts += _AWFUpkeep>> + <br>__Passenger Upgrades Expenses__: @@.yellowgreen;<<print cashFormat(_AWFUpkeep)>>@@ + <<set _arcologyCosts += _AWFUpkeep>> <</if>> <<if $FSSpending != 0>> - <br>__Society Shaping__ expenses: <<print cashFormat($FSSpending)>> - <<set _archologyCosts += $FSSpending>> + <br>__Society Shaping Expenses__: @@.yellowgreen;<<print cashFormat($FSSpending)>>@@ + <<set _arcologyCosts += $FSSpending>> <</if>> <<if $Recruiter != 0>> - <br>__Recruiting__ expenses: <<print cashFormat(250)>> - <<set _archologyCosts += 250>> -<</if>> -<<if $TSS.schoolPresent > 0>> - <br>__The Slavegirl School__ branch campus upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> -<</if>> -<<if $GRI.schoolPresent > 0>> - <br>__Growth Research Institute__ subsidiary lab upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> -<</if>> -<<if $SCP.schoolPresent > 0>> - <br>__St. Claver Preparatory__ branch campus upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> -<</if>> -<<if $LDE.schoolPresent > 0>> - <br>__L'École des Enculées__ branch campus upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> -<</if>> -<<if $TGA.schoolPresent > 0>> - <br>__The Gymnasium-Academy__ branch campus upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> -<</if>> -<<if $HA.schoolPresent > 0>> - <br>__The Hippolyta Academy__ branch campus upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> + <br>__Recruiting Expenses__: @@.yellowgreen;<<print cashFormat(250)>>@@ + <<set _arcologyCosts += 250>> <</if>> -<<if $TCR.schoolPresent > 0>> - <br>__The Cattle Ranch__ local pasture upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> + +<<set _schoolPresent = 0, _schoolSubsidy = 0>> +<<if ($TSS.schoolPresent > 0)>> + <<set _school = "The Slavegirl School">> + <<set _schoolPresent = 1>> + <<if $TSS.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if ($TFS.schoolPresent > 0) && (($PC.dick < 1) || ($PC.vagina < 1) || ($PC.boobs < 1))>> - <br>__The Futanari Sisters__ community upkeep: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> +<<if ($GRI.schoolPresent > 0)>> + <<set _school = "Growth Research Institute">> + <<set _schoolPresent = 1>> + <<if $GRI.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if $TSS.subsidize != 0>> - <br>__The Slavegirl School__ branch campus influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> +<<if ($SCP.schoolPresent > 0)>> + <<set _school = "St. Claver Prepatory">> + <<set _schoolPresent = 1>> + <<if $SCP.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if $GRI.subsidize != 0>> - <br>__Growth Research Institute__ subsidiary lab influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> +<<if ($LDE.schoolPresent > 0)>> + <<set _school = "L'École des Enculées">> + <<set _schoolPresent = 1>> + <<if $LDE.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if $SCP.subsidize != 0>> - <br>__St. Claver Preparatory__ branch campus influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> +<<if ($TGA.schoolPresent > 0)>> + <<set _school = "The Gymnasium-Academy">> + <<set _schoolPresent = 1>> + <<if $TGA.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if $LDE.subsidize != 0>> - <br>__L'École des Enculées__ branch campus influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> +<<if ($HA.schoolPresent > 0)>> + <<set _school = "The Hippolyta Academy">> + <<set _schoolPresent = 1>> + <<if $HA.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if $TGA.subsidize != 0>> - <br>__The Gymnasium-Academy__ branch campus influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> +<<if ($TCR.schoolPresent > 0)>> + <<set _school = "The Cattle Ranch">> + <<set _schoolPresent = 1>> + <<if $TCR.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if $HA.subsidize != 0>> - <br>__The Hippolyta Academy__ branch campus influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> +<<if ($TFS.schoolPresent > 0)>> + <<set _school = "The Futanari Sisters">> + <<set _schoolPresent = 1>> + <<if $TFS.subsidize != 0>> + <<set _schoolSubsidy = 1>> + <</if>> <</if>> -<<if $TCR.subsidize != 0>> - <br>__The Cattle Ranch__ local pasture influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> + +<<if _schoolPresent > 0>> +<<if _school == "Growth Research Institute">> + <br> + __<<print _school>> Subsidiary Lab Upkeep__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <<set _arcologyCosts += 1000>> + <<if _schoolSubsidy > 0>> + <br> + __<<print _school>> Subsidiary Lab Influence__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <</if>> +<<elseif _school == "The Cattle Ranch">> + <br> + __<<print _school>> Local Pasture Upkeep__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <<set _arcologyCosts += 1000>> + <<if _schoolSubsidy > 0>> + <br> + __<<print _school>> Local Pasture Influence__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <</if>> +<<elseif _school == "The Futanari Sisters">> + <br> + __<<print _school>> Community Upkeep__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <<set _arcologyCosts += 1000>> + <<if _schoolSubsidy > 0>> + <br> + __<<print _school>> Community Influence__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <</if>> +<<else>> + <br> + __<<print _school>> Branch Campus Upkeep__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <<set _arcologyCosts += 1000>> + <<if _schoolSubsidy > 0>> + <br> + __<<print _school>> Branch Campus Influence__: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <</if>> <</if>> -<<if $TFS.subsidize != 0>> - <br>__The Futanari Sisters__ community influence: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> <</if>> <<if $alwaysSubsidizeGrowth > 0 || $alwaysSubsidizeRep > 0 || $RegularParties > 0>> - <br>__Weekly costs__: + <br>__Weekly Costs__: <<if $alwaysSubsidizeGrowth > 0>> - arcology growth subsidy: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ - <<set _archologyCosts += $policyCost>> + <br> Arcology Growth Subsidy: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ + <<set _arcologyCosts += $policyCost>> <</if>> <<if $alwaysSubsidizeRep > 0>> - self-promotion budget: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ - <<set _archologyCosts += $policyCost>> + <br> Self-promotion Budget: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ + <<set _arcologyCosts += $policyCost>> <</if>> <<if $RegularParties > 0>> - social gatherings: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ - <<set _archologyCosts += $policyCost>> + <br> Social Gatherings: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ + <<set _arcologyCosts += $policyCost>> <</if>> <</if>> <<if $ProImmigrationCash == 1>> - <br>Pro-immigration promotion budget: <<print cashFormat($policyCost)>> - <<set _archologyCosts += $policyCost>> + <br> Pro-immigration Promotion Budget: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ + <<set _arcologyCosts += $policyCost>> <</if>> <<if $AntiEnslavementCash == 1>> - <br>Anti-enslavement charity budget: <<print cashFormat($policyCost)>> - <<set _archologyCosts += $policyCost>> + <br> Anti-enslavement Charity Budget: @@.yellowgreen;<<print cashFormat($policyCost)>>@@ + <<set _arcologyCosts += $policyCost>> <</if>> <<if $CoursingAssociation == 1>> - <br>Coursing Association membership: <<print cashFormat(1000)>> - <<set _archologyCosts += 1000>> + <br> Coursing Association Membership: @@.yellowgreen;<<print cashFormat(1000)>>@@ + <<set _arcologyCosts += 1000>> <</if>> -<br>Overall archology costs: @@.yellowgreen;<<print cashFormat(_archologyCosts)>>@@ +<br><br> + +''Overall Arcology Costs:'' @@.yellowgreen;<<print cashFormat(_arcologyCosts)>>@@ <br><br> @@ -443,41 +498,41 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<set _livingExpense = $rulesCost>> <</if>> <</switch>> - <br> <i>Living expenses:</i> <<print cashFormat(_livingExpense)>> + <br> <i>Living expenses:</i> @@.yellowgreen;<<print cashFormat(_livingExpense)>>@@ <<set _individualCosts += _livingExpense>> - <br> <i>Basic slave food cost:</i> <<print cashFormat($foodCost*4)>> + <br> <i>Basic slave food cost:</i> @@.yellowgreen;<<print cashFormat($foodCost*4)>>@@ <<set _individualCosts += $foodCost*4>> <<switch $slaves[$i].diet>> <<case "fattening" "muscle building">> - <br> <i>Heavy diet:</i> <<print cashFormat($foodCost)>> + <br> <i>Heavy diet:</i> @@.yellowgreen;<<print cashFormat($foodCost)>>@@ <<set _individualCosts += $foodCost>> <<case "restricted" "slimming">> - <br> <i>Light diet: //reduced by//</i> <<print cashFormat($foodCost)>> + <br> <i>Light diet: //reduced by//</i> @@.yellowgreen;<<print cashFormat($foodCost)>>@@ <<set _individualCosts -= $foodCost>> <</switch>> <<if $slaves[$i].weight > 130 || $slaves[$i].weight > 50 || $slaves[$i].weight < -50>> <br> <i>Caloric adjustment for</i> <<if $slaves[$i].weight > 130>> - <i>heavy weight:</i> <<print cashFormat($foodCost*2)>> + <i>heavy weight:</i> @@.yellowgreen;<<print cashFormat($foodCost*2)>>@@ <<set _individualCosts += $foodCost*2>> <<elseif $slaves[$i].weight > 50>> - <i>high weight:</i> <<print cashFormat($foodCost)>> + <i>high weight:</i> @@.yellowgreen;<<print cashFormat($foodCost)>>@@ <<set _individualCosts += $foodCost>> <<elseif $slaves[$i].weight < -50>> - <i>light weight:</i> //reduced by// <<print cashFormat($foodCost)>> + <i>light weight:</i> //reduced by// @@.yellowgreen;<<print cashFormat($foodCost)>>@@ <<set _individualCosts -= $foodCost>> <</if>> <</if>> <<if $slaves[$i].drugs == "appetite suppressors">> - <br> <i>Food saved via suppressed appetite:</i> //reduced by// <<print cashFormat($foodCost)>> + <br> <i>Food saved via suppressed appetite:</i> //reduced by// @@.yellowgreen;<<print cashFormat($foodCost)>>@@ <<set _individualCosts -= $foodCost>> <</if>> <<if $slaves[$i].lactation > 0>> <br> <i>Food to support <<if $slaves[$i].lactation > 1>>heavy<<else>>natural<</if>> lactation from <<if Math.trunc($slaves[$i].boobs/10000) > 2>>absurd udders<<elseif Math.trunc($slaves[$i].boobs/10000) > 1>>enormous boobs<<else>>reasonable breasts<</if>>:</i> - <<print cashFormat($foodCost*$slaves[$i].lactation*(1+Math.trunc($slaves[$i].boobs/10000)))>> + @@.yellowgreen;<<print cashFormat($foodCost*$slaves[$i].lactation*(1+Math.trunc($slaves[$i].boobs/10000)))>>@@ <<set _individualCosts += $foodCost*$slaves[$i].lactation*(1+Math.trunc($slaves[$i].boobs/10000))>> <</if>> <<if $slaves[$i].preg > $slaves[$i].pregData.normalBirth/8>> @@ -487,41 +542,49 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <br> <i>Extra feeding costs to support pregnancy are covered by $masterSuiteName luxuries.</i> <<else>> <<set _pAccMult = 1>> - <br> <i>Extra feeding to support <<if $slaves[$i].pregControl == "speed up">>accelerated <<set _pAccMult = 3>><</if>>pregnancy:</i> <<print cashFormat($foodCost*$slaves[$i].pregType*_pAccMult)>> + <br> <i>Extra feeding to support <<if $slaves[$i].pregControl == "speed up">>accelerated <<set _pAccMult = 3>><</if>>pregnancy:</i> + @@.yellowgreen;<<print cashFormat($foodCost*$slaves[$i].pregType*_pAccMult)>>@@ <<set _individualCosts += $foodCost*$slaves[$i].pregType*_pAccMult>> <<if $slaves[$i].pregType >= 10>> - <br> <i>Specialized food blend to support multiples:</i> <<print cashFormat($foodCost*$slaves[$i].pregType*2*_pAccMult)>> + <br> <i>Specialized food blend to support multiples:</i> + @@.yellowgreen;<<print cashFormat($foodCost*$slaves[$i].pregType*2*_pAccMult)>>@@ <<set _individualCosts += $foodCost*$slaves[$i].pregType*_pAccMult>> <<elseif $slaves[$i].pregType >= 30>> - <br> <i>Concentrated, quick to digest food blend to support extreme multiples:</i> <<print cashFormat($foodCost*$slaves[$i].pregType*_pAccMult)>> + <br> <i>Concentrated, quick to digest food blend to support extreme multiples:</i> @@.yellowgreen;<<print cashFormat($foodCost*$slaves[$i].pregType*_pAccMult)>>@@ <<set _individualCosts += $foodCost*2*$slaves[$i].pregType*_pAccMult>> <<elseif $slaves[$i].pregType >= 50>> <br> <i>Specialized dietary adjustments and concentrated, quick to digest food required to support absurd multiples:</i> <<print cashFormat($foodCost*$slaves[$i].pregType*3*_pAccMult)>> <<set _individualCosts += $foodCost*$slaves[$i].pregType*3*_pAccMult>> <<elseif $slaves[$i].pregType >= 100>> - <br> <i>Specialized dietary requirements and feeding methods to support absurd multiples:</i> <<print cashFormat($foodCost*$slaves[$i].pregType*5*_pAccMult)>> + <br> <i>Specialized dietary requirements and feeding methods to support absurd multiples:</i> + @@.yellowgreen;<<print cashFormat($foodCost*$slaves[$i].pregType*5*_pAccMult)>>@@ <<set _individualCosts += $foodCost*$slaves[$i].pregType*5*_pAccMult>> <</if>> <</if>> <</if>> <<switch $slaves[$i].diet>> <<case "XX" "XY">> - <br> <i>Hormone enriched diet:</i> <<print cashFormat(25)>> + <br> <i>Hormone enriched diet:</i> + @@.yellowgreen;<<print cashFormat(25)>>@@ <<set _individualCosts += 25>> <<case "XXY">> - <br> <i>Specialized hermaphrodite diet:</i> <<print cashFormat(75)>> + <br> <i>Specialized hermaphrodite diet:</i> + @@.yellowgreen;<<print cashFormat(75)>>@@ <<set _individualCosts += 75>> <<case "cleansing">> - <br> <i>Chemical cleansing diet:</i> <<print cashFormat(50)>> + <br> <i>Chemical cleansing diet:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <<case "fertility">> - <br> <i>Specialized fertility diet:</i> <<print cashFormat(25)>> + <br> <i>Specialized fertility diet:</i> + @@.yellowgreen;<<print cashFormat(25)>>@@ <<set _individualCosts += 50>> <</switch>> <<if $boobAccessibility != 1>> <<if ($slaves[$i].boobs > 20000)>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> - <br> <i>Increased living expenses due to inconveniently huge boobs:</i> <<print cashFormat(50)>> + <br> <i>Increased living expenses due to inconveniently huge boobs:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <</if>> <</if>> @@ -529,7 +592,8 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<if $pregAccessibility != 1>> <<if ($slaves[$i].belly >= 60000)>> <<if ($slaves[$i].assignment != "labor in the production line") && ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> - <br> <i>Increased living expenses due to an inconveniently huge belly:</i> <<print cashFormat(100)>> + <br> <i>Increased living expenses due to an inconveniently huge belly:</i> + @@.yellowgreen;<<print cashFormat(100)>>@@ <<set _individualCosts += 100>> <</if>> <</if>> @@ -537,7 +601,8 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<if $dickAccessibility != 1>> <<if ($slaves[$i].dick > 45)>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> - <br> <i>Increased living expenses due to an inconveniently huge penis:</i> <<print cashFormat(50)>> + <br> <i>Increased living expenses due to an inconveniently huge penis:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <</if>> <</if>> @@ -545,7 +610,8 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<if $ballsAccessibility != 1>> <<if ($slaves[$i].balls > 90)>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> - <br> <i>Increased living expenses due to inconveniently huge balls:</i> <<print cashFormat(50)>> + <br> <i>Increased living expenses due to inconveniently huge balls:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <</if>> <</if>> @@ -553,173 +619,212 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<if $buttAccessibility != 1>> <<if ($slaves[$i].butt > 15)>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> - <br> <i>Increased living expenses due to an inconveniently huge butt:</i> <<print cashFormat(50)>> + <br> <i>Increased living expenses due to an inconveniently huge butt:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <</if>> <</if>> <</if>> <<if !canSee($slaves[$i]) && ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> - <br> <i>Increased living expenses due to lack of sight:</i> <<print cashFormat(50)>> + <br> <i>Increased living expenses due to lack of sight:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <<elseif $slaves[$i].eyes <= -1 && $slaves[$i].eyewear != "corrective glasses" && $slaves[$i].eyewear != "corrective contacts">> - <br> <i>Increased living expenses due to poor vision:</i> <<print cashFormat(25)>> + <br> <i>Increased living expenses due to poor vision:</i> + @@.yellowgreen;<<print cashFormat(25)>>@@ <<set _individualCosts += 25>> <<elseif ($slaves[$i].eyewear == "blurring glasses") || ($slaves[$i].eyewear == "blurring contacts")>> - <br> <i>Increased living expenses due to blurred vision:</i> <<print cashFormat(25)>> + <br> <i>Increased living expenses due to blurred vision:</i> + @@.yellowgreen;<<print cashFormat(25)>>@@ <<set _individualCosts += 25>> <</if>> <<if !canHear($slaves[$i]) && ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> - <br> <i>Increased living expenses due to lack of hearing:</i> <<print cashFormat(20)>> + <br> <i>Increased living expenses due to lack of hearing:</i> + @@.yellowgreen;<<print cashFormat(20)>>@@ <<set _individualCosts += 20>> <<elseif $slaves[$i].hears <= -1 && $slaves[$i].earwear != "hearing aids">> - <br> <i>Increased living expenses due to poor hearing:</i> <<print cashFormat(5)>> + <br> <i>Increased living expenses due to poor hearing:</i> + @@.yellowgreen;<<print cashFormat(5)>>@@ <<set _individualCosts += 5>> <<elseif ($slaves[$i].earwear == "muffling ear plugs")>> - <br> <i>Increased living expenses due to muffled hearing:</i> <<print cashFormat(5)>> + <br> <i>Increased living expenses due to muffled hearing:</i> + @@.yellowgreen;<<print cashFormat(5)>>@@ <<set _individualCosts += 5>> <</if>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && ($slaves[$i].assignment != "be confined in the arcade")>> <<if ($slaves[$i].amp != 0)>> <<if ($slaves[$i].amp == 1)>> - <br> <i>Increased living expenses due to limblessness:</i> <<print cashFormat($rulesCost)>> + <br> <i>Increased living expenses due to limblessness:</i> + @@.yellowgreen;<<print cashFormat($rulesCost)>>@@ <<set _individualCosts += $rulesCost>> <<else>> - <br> <i>Increased living expenses due to prosthetics:</i> <<print cashFormat($rulesCost/2)>> + <br> <i>Increased living expenses due to prosthetics:</i> + @@.yellowgreen;<<print cashFormat($rulesCost/2)>>@@ <<set _individualCosts += $rulesCost/2>> <</if>> <<elseif !canWalk($slaves[$i])>> - <br> <i>Increased living expenses due to immobility:</i> <<print cashFormat($rulesCost)>> + <br> <i>Increased living expenses due to immobility:</i> + @@.yellowgreen;<<print cashFormat($rulesCost)>>@@ <<set _individualCosts += $rulesCost>> <</if>> <</if>> <<if $slaves[$i].boobs > 10000>> <<if $slaves[$i].boobsImplantType == 1>> - <br> <i>Maintenance cost for oversized string implants:</i> <<print cashFormat(50)>> + <br> <i>Maintenance cost for oversized string implants:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <</if>> <</if>> <<if $slaves[$i].butt > 10>> <<if $slaves[$i].buttImplantType == 1>> - <br> <i>Maintenance cost for oversized string implants:</i> <<print cashFormat(50)>> + <br> <i>Maintenance cost for oversized string implants:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <</if>> <</if>> <<if $slaves[$i].preg > $slaves[$i].pregData.minLiveBirth>> <<if $universalRulesBirthing == 1>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2)>> - <br> <i>Coverage cost for daily pregnancy scanning:</i> <<print cashFormat(50)>> + <br> <i>Coverage cost for daily pregnancy scanning:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <</if>> <</if>> <</if>> <<if $CitizenRetirement == 1>> - <br> <i>Retirement account payments:</i> <<print cashFormat(250)>> + <br> <i>Retirement account payments:</i> + @@.yellowgreen;<<print cashFormat(250)>>@@ <<set _individualCosts += 250>> <</if>> <<if ($slaves[$i].inflation == 3)>> <<switch $slaves[$i].inflationType>> <<case "water">> - <br> <i>Costs of specially formulated water for enemas; 2 gallons:</i> <<print cashFormat(100)>> + <br> <i>Costs of specially formulated water for enemas; 2 gallons:</i> + @@.yellowgreen;<<print cashFormat(100)>>@@ <<set _individualCosts += 100>> <<case "food">> - <br> <i>Costs of filler food for slave stuffing; 2 gallons:</i> <<print cashFormat(($foodCost*4))>> + <br> <i>Costs of filler food for slave stuffing; 2 gallons:</i> + @@.yellowgreen;<<print cashFormat(($foodCost*4))>>@@ <<set _individualCosts += ($foodCost*4)>> <<case "curative" "aphrodisiac" "tightener">> - <br> <i>Costs of specially formulated drug mixtures for enemas; 2 gallons:</i> <<print cashFormat((100+($drugsCost*2)))>> + <br> <i>Costs of specially formulated drug mixtures for enemas; 2 gallons:</i> + @@.yellowgreen;<<print cashFormat((100+($drugsCost*2)))>>@@ <<set _individualCosts += (100+($drugsCost*2))>> <</switch>> <<elseif ($slaves[$i].inflation == 2)>> <<switch $slaves[$i].inflationType>> <<case "water">> - <br> <i>Costs of specially formulated water for enemas; 1 gallon:</i> <<print cashFormat(50)>> + <br> <i>Costs of specially formulated water for enemas; 1 gallon:</i> + @@.yellowgreen;<<print cashFormat(50)>>@@ <<set _individualCosts += 50>> <<case "food">> - <br> <i>Costs of filler food for slave stuffing; 1 gallon:</i> <<print cashFormat(($foodCost*2))>> + <br> <i>Costs of filler food for slave stuffing; 1 gallon:</i> + @@.yellowgreen;<<print cashFormat(($foodCost*2))>>@@ <<set _individualCosts += ($foodCost*4)>> <<case "curative" "aphrodisiac" "tightener">> - <br> <i>Costs of specially formulated drug mixtures for enemas; 1 gallon:</i> <<print cashFormat((50+($drugsCost*2)))>> + <br> <i>Costs of specially formulated drug mixtures for enemas; 1 gallon:</i> + @@.yellowgreen;<<print cashFormat((50+($drugsCost*2)))>>@@ <<set _individualCosts += (50+($drugsCost*2))>> <</switch>> <<elseif ($slaves[$i].inflation == 1)>> <<switch $slaves[$i].inflationType>> <<case "water">> - <br> <i>Costs of specially formulated water for enemas; 2 liters:</i> <<print cashFormat(25)>> + <br> <i>Costs of specially formulated water for enemas; 2 liters:</i> + @@.yellowgreen;<<print cashFormat(25)>>@@ <<set _individualCosts += 25>> <<case "food">> - <br> <i>Costs of filler food for slave stuffing; 2 liters:</i> <<print cashFormat(($foodCost))>> + <br> <i>Costs of filler food for slave stuffing; 2 liters:</i> + <<print cashFormat(($foodCost))>> <<set _individualCosts += ($foodCost)>> <<case "curative" "aphrodisiac" "tightener">> - <br> <i>Costs of specially formulated drug mixtures for enemas; 2 liters:</i> <<print cashFormat((25+($drugsCost*2)))>> + <br> <i>Costs of specially formulated drug mixtures for enemas; 2 liters:</i> + @@.yellowgreen;<<print cashFormat((25+($drugsCost*2)))>>@@ <<set _individualCosts += (25+($drugsCost*2))>> <</switch>> <</if>> <<switch $slaves[$i].drugs>> <<case "anti-aging cream">> - <br> <i>Anti-aging creams:</i> <<print cashFormat(($drugsCost*10))>> + <br> <i>Anti-aging creams:</i> + <<print cashFormat(($drugsCost*10))>> <<set _individualCosts += ($drugsCost*10)>> <<case "female hormone injections" "male hormone injections">> - <br> <i>Hormonal injections:</i> <<print cashFormat(($drugsCost*5))>> + <br> <i>Hormonal injections:</i> + @@.yellowgreen;<<print cashFormat(($drugsCost*5))>>@@ <<set _individualCosts += ($drugsCost*5)>> <<case "growth stimulants">> - <br> <i>Growth stimulants:</i> <<print cashFormat(($drugsCost*5))>> + <br> <i>Growth stimulants:</i> + @@.yellowgreen;<<print cashFormat(($drugsCost*5))>>@@ <<set _individualCosts += ($drugsCost*5)>> <<case "intensive breast injections" "intensive butt injections" "intensive penis enhancement" "intensive testicle enhancement" "intensive lip injections" "hyper breast injections" "hyper butt injections" "hyper penis enhancement" "hyper testicle enhancement" "hyper lip injections">> - <br> <i>Intensive drugs:</i> <<print cashFormat($drugsCost*5)>> + <br> <i>Intensive drugs:</i> + @@.yellowgreen;<<print cashFormat($drugsCost*5)>>@@ <<set _individualCosts += $drugsCost*5>> <<case "sag-B-gone">> - <br> <i>Questionable infomercial creams:</i> <<print cashFormat(Math.trunc($drugsCost/10))>> + <br> <i>Questionable infomercial creams:</i> + @@.yellowgreen;<<print cashFormat(Math.trunc($drugsCost/10))>>@@ <<set _individualCosts += ($drugsCost/10)>> <<case "no drugs" "none">> <<default>> - <br> <i>Standard drugs:</i> <<print cashFormat(($drugsCost*2))>> + <br> <i>Standard drugs:</i> + @@.yellowgreen;<<print cashFormat(($drugsCost*2))>>@@ <<set _individualCosts += ($drugsCost*2)>> <</switch>> <<if $slaves[$i].curatives == 1 && $slaves[$i].assignmentVisible != 1>> <<elseif $slaves[$i].curatives > 0>> - <br> <i>Health drugs:</i> <<print cashFormat($drugsCost+($slaves[$i].curatives*$drugsCost))>> + <br> <i>Health drugs:</i> + @@.yellowgreen;<<print cashFormat($drugsCost+($slaves[$i].curatives*$drugsCost))>>@@ <<set _individualCosts += $drugsCost+($slaves[$i].curatives*$drugsCost)>> <</if>> <<if ($slaves[$i].aphrodisiacs !== 0)>> - <br> <i>Aphrodisiacs/Anaphrodisiacs:</i> <<print cashFormat(Math.trunc($drugsCost*Math.abs($slaves[$i].aphrodisiacs)))>> + <br> <i>Aphrodisiacs/Anaphrodisiacs:</i> + @@.yellowgreen;<<print cashFormat(Math.trunc($drugsCost*Math.abs($slaves[$i].aphrodisiacs)))>>@@ <<set _individualCosts += $drugsCost*Math.abs($slaves[$i].aphrodisiacs)>> <</if>> <<if ($slaves[$i].hormones != 0)>> - <br> <i>Hormones:</i> <<print cashFormat((Math.trunc($drugsCost*Math.abs($slaves[$i].hormones)*0.5)))>> + <br> <i>Hormones:</i> + @@.yellowgreen;<<print cashFormat((Math.trunc($drugsCost*Math.abs($slaves[$i].hormones)*0.5)))>>@@ <<set _individualCosts += Math.trunc($drugsCost*Math.abs($slaves[$i].hormones)*0.5)>> <</if>> <<if ($slaves[$i].bodySwap > 0)>> - <br> <i>JS-Suppressants:</i> <<print cashFormat(($drugsCost*10*$slaves[$i].bodySwap))>> + <br> <i>JS-Suppressants:</i> + @@.yellowgreen;<<print cashFormat(($drugsCost*10*$slaves[$i].bodySwap))>>@@ <<set _individualCosts += Math.trunc($drugsCost*10*$slaves[$i].bodySwap)>> <</if>> <<if ($slaves[$i].preg == -1) && isFertile($slaves[$i])>> - <br> <i>Contraceptives:</i> <<print cashFormat((Math.trunc($drugsCost*0.5)))>> + <br> <i>Contraceptives:</i> + @@.yellowgreen;<<print cashFormat((Math.trunc($drugsCost*0.5)))>>@@ <<set _individualCosts += Math.trunc($drugsCost*0.5)>> <</if>> <<if ($studio == 1)>> <<if ($slaves[$i].pornFameSpending > 0)>> - <br> <i>Publicity:</i> <<print cashFormat($slaves[$i].pornFameSpending/$PCSlutContacts)>> + <br> <i>Publicity:</i> + @@.yellowgreen;<<print cashFormat($slaves[$i].pornFameSpending/$PCSlutContacts)>>@@ <<set _individualCosts += ($slaves[$i].pornFameSpending/$PCSlutContacts)>> <</if>> <</if>> <<set _total += Math.trunc(_individualCosts)>> - <br> __Total__: <<print cashFormat(Math.trunc(_individualCosts))>> + <br> __Total__: + @@.yellowgreen;<<print cashFormat(Math.trunc(_individualCosts))>>@@ <br> <</for>> -Overall slave costs: @@.yellowgreen;<<print cashFormat(_total)>>@@. -<br>Bringing the overall total pre reduction(s) to roughly @@.yellowgreen;<<print cashFormat(_archologyCosts+_total)>>@@. +<br>Overall slave costs: @@.yellowgreen;<<print cashFormat(_total)>>@@ + +<br><br> + +This brings the overall total to ''@@.yellowgreen;<<print cashFormat(_arcologyCosts+_total)>>@@'' before reductions. <<if $PC.career == "servant">> - <br>Using your prior experience, you managed to lower your home's upkeep by <<if $personalAttention == "upkeep">><<if $PC.belly >= 5000>>20%<<else>>25%<</if>><<else>>10%<</if>>. + <br>Using your prior experience, you managed to lower your home's upkeep by @@.green;<<if $personalAttention == "upkeep">><<if $PC.belly >= 5000>>20%<<else>>25%<</if>><<else>>10%<</if>>.@@ <</if>> <<if $secExp == 1>> <br> <<if $terrain == "oceanic" || $terrain == "marine">> <<if $docks > 0>> - <br>The infrastructure you've built eases the transportation and safe handling of the supplies required by the arcology. Upkeep is lowered by <<print $docks * 5>>% + <br>The infrastructure you've built eases the transportation and safe handling of the supplies required by the arcology. @@.green;Upkeep is lowered by <<print $docks * 5>>%.@@ <</if>> <<else>> <<if $railway > 0>> - <br>The infrastructure you've built eases the transportation and safe handling of the supplies required by the arcology. Upkeep is lowered by <<print $railway * 5>>% + <br>The infrastructure you've built eases the transportation and safe handling of the supplies required by the arcology. @@.green;Upkeep is lowered by <<print $railway * 5>>%.@@ <</if>> <</if>> <</if>> diff --git a/src/uncategorized/dairy.tw b/src/uncategorized/dairy.tw index 1ca97e42ca96b1005dbc82e82318c60a91c5e359..f6d130bb5487d278fcc622183f8b0ede8400e2b8 100644 --- a/src/uncategorized/dairy.tw +++ b/src/uncategorized/dairy.tw @@ -34,7 +34,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<if ($dairySlaves > 1)>> <<if $dairyFeedersSettingChanged == 1>> - In unison, the milking machines press their feeding phalli into the slaves' mouths and down their throats. Once situated, they begin to facefuck the slaves, who gag and struggle as they figure out how to breathe while this is going on. Once each slave is no longer panicking and is inhaling and exhaling regularly, there is a hydraulic sound and the transparent reservoir of feeding fluid near her head begins to drain. The slaves swallow desperately, their bellies beginning to swell with nutrition and drugs.<br><br> + In unison, the milking machines press their feeding phalli into the slaves' mouths and down their throats. Once situated, they begin to facefuck the slaves, who gag and struggle as they figure out how to breathe while this is going on. Once each slave is no longer panicking and is inhaling and exhaling regularly, there is a hydraulic sound and the transparent reservoir of feeding fluid near their head begins to drain. The slaves swallow desperately, their bellies beginning to swell with nutrition and drugs.<br><br> <<elseif $dairyFeedersSettingChanged == -1>> In unison, the milking machines withdraw their feeders from the slaves' throats. The slaves gag and cough, strings of feeding fluid and saliva running between their lips and the heads of the feeding phalli. These remain close to their faces so that the slaves can suck them off once they get hungry, which they will, very soon. The slaves' mouths and tongues are very tired, and most of them rest with their mouths open and their tongues hanging out.<br><br> <</if>> @@ -155,9 +155,9 @@ $dairyNameCaps is an industrial facility, but there's a viewing gallery for visi <<case "Chattel Religionist">> It presents the inmates as lessons, here to expiate their sins in a purgatory created by technology. <<case "Degradationist">> - The screens there feature, among a sea of facts and figures about each slave, her most recent brain scan. + The screens there feature, among a sea of facts and figures about each slave, their most recent brain scan. <<case "Repopulation Focus">> - The gallery is placed for a good view of each slave's swelling breasts and growing pregnancy. A screen is prominently displayed before each slave, detailing the number of babies she produced and the current number occupying her womb. + The gallery is placed for a good view of each slave's swelling breasts and growing pregnancy. A screen is prominently displayed before each slave, detailing the number of babies she produced and the current number occupying their womb. <<case "Eugenics">> The screens there tell very little about the slaves within. That information is privy only to Society's Elite. <<case "Asset Expansionist">> @@ -165,7 +165,7 @@ $dairyNameCaps is an industrial facility, but there's a viewing gallery for visi <<case "Transformation Fetishist">> It's designed for VIP visits, since this place is arguably the present apogee of transformationism. Nowhere else can slaves be so radically changed, from humans into something less - and something more. <<case "Gender Radicalist">> - The gallery is placed for a good view of each slave's front, from her head to what's between her spread legs. + The gallery is placed for a good view of each slave's front, from their head to what's between their spread legs. <<case "Gender Fundamentalist">> The gallery is placed for a good view of each slave's breasts, belly, and cunt. Visitors can critically compare each feminine advantage. <<case "Physical Idealist">> @@ -209,7 +209,7 @@ $dairyNameCaps <<case "Chinese Revivalist">> is clean and traditional. The stalls are constructed of bamboo and carefully shaped wood, and muscle power is used wherever possible. Cows exercise and help out by fetching and carrying as best they can. <<case "Chattel Religionist">> - is functional and clean. There are nice quotations from the holy book on the walls, and there is a little shrine designed to allow a cow who has difficulty standing to make her devotions comfortably. + is functional and clean. There are nice quotations from the holy book on the walls, and there is a little shrine designed to allow a cow who has difficulty standing to make their devotions comfortably. <<case "Degradationist">> is harsh and utilitarian. There are stands to restrain cows who aren't being milked for dosing, punishment, or sexual use. There are cattle prods here and there to use on resistant cows, unproductive cows, or cows one wishes to hear scream. <<case "Repopulation Focus">> @@ -253,19 +253,19 @@ $dairyNameCaps <<if $dairySlaves > 2>> $dairyNameCaps is working steadily. <<if ($dairyRestraintsUpgrade == 1) && ($dairyRestraintsSetting > 1)>> - Each cow is strapped in to her own milking machine. The machines are set up in rows, alternating forward and backward so that the cows are interleaved as closely as possible without touching. + Each cow is strapped in to their own milking machine. The machines are set up in rows, alternating forward and backward so that the cows are interleaved as closely as possible without touching. <<if ($dairyFeedersUpgrade == 1) && ($dairyFeedersSetting > 0)>> <<if $dairyFeedersSetting == 2>> - A phallic feeding tube completely fills each cow's mouth and throat, making it eerily quiet in there. Occasionally one of the cows convulses when a particularly long rush of food and drugs flows down her gullet. + A phallic feeding tube completely fills each cow's mouth and throat, making it eerily quiet in there. Occasionally one of the cows convulses when a particularly long rush of food and drugs flows down their gullet. <<else>> When feeding is required, a phallus extends into cows' mouths. <</if>> <</if>> <<if ($dairyStimulatorsUpgrade == 1) && ($dairyStimulatorsSetting > 0)>> <<if $dairyStimulatorsSetting == 2>> - Every cow is being sodomized by a massive phallus. Most are pumping away gently, the strokes taking a long time to push the half-meter of shaft into each slave's rectum and pull it out again. When a slave's balls are ready to give cum, however, the pace quickens, and the agonized slave wriggles in involuntary desperation to escape until she finally stiffens, squirts, and slumps in exhaustion. + Every cow is being sodomized by a massive phallus. Most are pumping away gently, the strokes taking a long time to push the half-meter of shaft into each slave's rectum and pull it out again. When a slave's balls are ready to give cum, however, the pace quickens, and the agonized slave wriggles in involuntary desperation to escape until they finally stiffen, squirt, and slump in exhaustion. <<else>> - Each cow's anus is periodically fucked by a machine phallus that ejaculates hydration directly up her butt. When a slave's balls are ready to give cum, she is mercilessly sodomized until prostate stimulation forces an orgasm. + Each cow's anus is periodically fucked by a machine phallus that ejaculates hydration directly up their butt. When a slave's balls are ready to give cum, they are mercilessly sodomized until prostate stimulation forces an orgasm. <</if>> <</if>> <<if ($dairyPregUpgrade == 1) && ($dairyPregSetting > 0)>> diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw index ff77a8ef68b358ae63b523b074456d37bdc3e9ac..1a707ddf6168169a550c0745e99d6e1c1eb42357 100644 --- a/src/uncategorized/fsDevelopments.tw +++ b/src/uncategorized/fsDevelopments.tw @@ -704,6 +704,7 @@ <<if $arcologies[0].FSSupremacistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSSupremacist == $arcologies[0].FSSupremacistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSSupremacistSMR == 1>> <<set $arcologies[0].FSSupremacist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -733,6 +734,7 @@ <<if $arcologies[0].FSSubjugationistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSSubjugationist == $arcologies[0].FSSubjugationistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSSubjugationistSMR == 1>> <<set $arcologies[0].FSSubjugationist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -762,6 +764,7 @@ <<if $arcologies[0].FSRepopulationFocusDecoration < $FSLockinLevel>> <<if $arcologies[0].FSRepopulationFocus == $arcologies[0].FSRepopulationFocusDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSRepopulationFocusSMR == 1>> <<set $arcologies[0].FSRepopulationFocus += 0.1*$FSSingleSlaveRep>> <</if>> @@ -791,6 +794,7 @@ <<if $arcologies[0].FSRestartDecoration < $FSLockinLevel>> <<if $arcologies[0].FSRestart == $arcologies[0].FSRestartDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSRestartSMR == 1>> <<set $arcologies[0].FSRestart += 0.1*$FSSingleSlaveRep>> <</if>> @@ -820,6 +824,7 @@ <<if $arcologies[0].FSGenderRadicalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSGenderRadicalist == $arcologies[0].FSGenderRadicalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSGenderRadicalistSMR == 1>> <<set $arcologies[0].FSGenderRadicalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -849,6 +854,7 @@ <<if $arcologies[0].FSGenderFundamentalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSGenderFundamentalist == $arcologies[0].FSGenderFundamentalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSGenderFundamentalistSMR == 1>> <<set $arcologies[0].FSGenderFundamentalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -878,6 +884,7 @@ <<if $arcologies[0].FSPaternalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSPaternalist == $arcologies[0].FSPaternalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSPaternalistSMR == 1>> <<set $arcologies[0].FSPaternalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -907,6 +914,7 @@ <<if $arcologies[0].FSDegradationistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSDegradationist == $arcologies[0].FSDegradationistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSDegradationistSMR == 1>> <<set $arcologies[0].FSDegradationist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -936,6 +944,7 @@ <<if $arcologies[0].FSBodyPuristDecoration < $FSLockinLevel>> <<if $arcologies[0].FSBodyPurist == $arcologies[0].FSBodyPuristDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSBodyPuristSMR == 1>> <<set $arcologies[0].FSBodyPurist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -963,6 +972,7 @@ <<if $arcologies[0].FSTransformationFetishistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSTransformationFetishist == $arcologies[0].FSTransformationFetishistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSTransformationFetishistSMR == 1>> <<set $arcologies[0].FSTransformationFetishist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -990,6 +1000,7 @@ <<if $arcologies[0].FSMaturityPreferentialistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSMaturityPreferentialist == $arcologies[0].FSMaturityPreferentialistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSMaturityPreferentialistSMR == 1>> <<set $arcologies[0].FSMaturityPreferentialist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1017,6 +1028,7 @@ <<if $arcologies[0].FSYouthPreferentialistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSYouthPreferentialist == $arcologies[0].FSYouthPreferentialistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSYouthPreferentialistSMR == 1>> <<set $arcologies[0].FSYouthPreferentialist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1044,6 +1056,7 @@ <<if $arcologies[0].FSSlimnessEnthusiastDecoration < $FSLockinLevel>> <<if $arcologies[0].FSSlimnessEnthusiast == $arcologies[0].FSSlimnessEnthusiastDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSSlimnessEnthusiastSMR == 1>> <<set $arcologies[0].FSSlimnessEnthusiast += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1073,6 +1086,7 @@ <<if $arcologies[0].FSAssetExpansionistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSAssetExpansionist == $arcologies[0].FSAssetExpansionistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSAssetExpansionistSMR == 1>> <<set $arcologies[0].FSAssetExpansionist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1102,6 +1116,7 @@ <<if $arcologies[0].FSPastoralistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSPastoralist == $arcologies[0].FSPastoralistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSPastoralistSMR == 1>> <<set $arcologies[0].FSPastoralist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1131,6 +1146,7 @@ <<if $arcologies[0].FSPhysicalIdealistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSPhysicalIdealist == $arcologies[0].FSPhysicalIdealistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSPhysicalIdealistSMR == 1>> <<set $arcologies[0].FSPhysicalIdealist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1160,6 +1176,7 @@ <<if $arcologies[0].FSHedonisticDecadenceDecoration < $FSLockinLevel>> <<if $arcologies[0].FSHedonisticDecadence == $arcologies[0].FSHedonisticDecadenceDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSHedonisticDecadenceSMR == 1>> <<set $arcologies[0].FSHedonisticDecadence += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1189,6 +1206,7 @@ <<if $arcologies[0].FSChattelReligionistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSChattelReligionist == $arcologies[0].FSChattelReligionistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSChattelReligionistSMR == 1>> <<set $arcologies[0].FSChattelReligionist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1218,6 +1236,7 @@ <<if $arcologies[0].FSRomanRevivalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSRomanRevivalist == $arcologies[0].FSRomanRevivalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSRomanRevivalistSMR == 1>> <<set $arcologies[0].FSRomanRevivalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1247,6 +1266,7 @@ <<if $arcologies[0].FSAztecRevivalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSAztecRevivalist == $arcologies[0].FSAztecRevivalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSAztecRevivalistSMR == 1>> <<set $arcologies[0].FSAztecRevivalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1276,6 +1296,7 @@ <<if $arcologies[0].FSEgyptianRevivalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSEgyptianRevivalist == $arcologies[0].FSEgyptianRevivalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSEgyptianRevivalistSMR == 1>> <<set $arcologies[0].FSEgyptianRevivalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1305,6 +1326,7 @@ <<if $arcologies[0].FSEdoRevivalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSEdoRevivalist == $arcologies[0].FSEdoRevivalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSEdoRevivalistSMR == 1>> <<set $arcologies[0].FSEdoRevivalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1334,6 +1356,7 @@ <<if $arcologies[0].FSArabianRevivalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSArabianRevivalist == $arcologies[0].FSArabianRevivalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSArabianRevivalistSMR == 1>> <<set $arcologies[0].FSArabianRevivalist += 0.1*$FSSingleSlaveRep>> <</if>> @@ -1363,6 +1386,7 @@ <<if $arcologies[0].FSChineseRevivalistDecoration < $FSLockinLevel>> <<if $arcologies[0].FSChineseRevivalist == $arcologies[0].FSChineseRevivalistDecoration>> @@.yellow;Your societal development in this direction is being limited by $arcologies[0].name's lack of customization to support it.@@ + <<set $FSReminder = 1>> <<elseif $arcologies[0].FSChineseRevivalistSMR == 1>> <<set $arcologies[0].FSChineseRevivalist += 0.1*$FSSingleSlaveRep>> <</if>> diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw index b907c60515595e7aae45ade0a4eb1097ff30c7bb..4766b6a7e10d08e3e7ac4ee833fbc9a3b13d9177 100644 --- a/src/uncategorized/futureSociety.tw +++ b/src/uncategorized/futureSociety.tw @@ -1,7 +1,7 @@ :: Future Society [nobr] - -<<set $nextButton = "Back", $nextLink = "Main", $showEncyclopedia = 1, $encyclopedia = "Future Societies">> +<<setAssistantPronouns>> +<<set $nextButton = "Back", $nextLink = "Main", $showEncyclopedia = 1, $encyclopedia = "Future Societies", $FSReminder = "">> <<if ndef $arcologies[0].FSSubjugationist>> <<set $arcologies[0].FSSubjugationist = "unset">> @@ -658,7 +658,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <<FSChangeDecoration "FSRepopulationFocus" "clothesBoughtMaternityLingerie" "clothesBoughtMaternityDress" "clothesBoughtBelly">> <<if $PAPublic == 1>> <<if ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>> - //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// + //With _hisA $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// <</if>> <</if>> <<else>> @@ -730,7 +730,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <<FSChangeDecoration "FSGenderFundamentalist" "clothesBoughtBunny">> <<if $PAPublic == 1>> <<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub") || ($assistantAppearance == "succubus") || ($assistantAppearance == "witch")>> - //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// + //With _hisA $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// <</if>> <</if>> <<else>> @@ -749,7 +749,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <<FSChangeDecoration "FSPaternalist" "clothesBoughtConservative">> <<if $PAPublic == 1>> <<if ($assistantAppearance == "schoolgirl") || ($assistantAppearance == "goddess") || ($assistantAppearance == "hypergoddess") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "loli") || ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy") || ($assistantAppearance == "angel") || ($assistantAppearance == "cherub")>> - //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// + //With _hisA $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// <</if>> <</if>> <<else>> @@ -768,7 +768,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <<FSChangeDecoration "FSDegradationist" "clothesBoughtChains">> <<if $PAPublic == 1>> <<if ($assistantAppearance == "monstergirl") || ($assistantAppearance == "businesswoman") || ($assistantAppearance == "preggololi") || ($assistantAppearance == "succubus") || ($assistantAppearance == "incubus") || ($assistantAppearance == "imp")>> - //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// + //With _hisA $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// <</if>> <</if>> <<else>> @@ -1013,7 +1013,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <<FSChangeDecoration "FSEgyptianRevivalist" "clothesBoughtEgypt">> <<if $PAPublic == 1>> <<if ($assistantAppearance == "goddess") || ($assistantAppearance == "monstergirl") || ($assistantAppearance == "incubus") || ($assistantAppearance == "succubus")>> - //With her $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// + //With _hisA $assistantAppearance appearance, $assistantName is a good public mascot for this goal.// <</if>> <</if>> <<else>> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index 3e84c95e158313b4c86fc6a2b8fc104850a9dbc4..58ec1912d121136cb62086f878213c39c4c84da9 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -4,6 +4,8 @@ <<set $nextButton = "Continue", $nextLink = "Random Nonindividual Event", $returnTo = "Random Nonindividual Event">> +<<setAssistantPronouns>> + <<switch $Event>> <<case "bad curatives">> @@ -656,6 +658,7 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.health = random(-90,-70)>> <<set $activeSlave.anus = 3>> <<set $activeSlave.vagina = 5>> + <<set $activeSlave.pubertyXX = 1>> <<set $activeSlave.weight = random(-100,-60)>> <<set $activeSlave.muscles = random(-100,-80)>> <<set $activeSlave.waist = random(-40,-10)>> @@ -770,33 +773,33 @@ From this day forward, the arcology shall be known as: <<textbox "$arcologies[0] <<case "slave food">> -A screen opposite your desk springs to life, <<if $assistant == 0>>showing your personal assistant's symbol, indicating that it has a complex subject to report. When you instruct it to continue, it displays<<else>>and $assistantName's avatar appears on it seated, indicating that she has something complex to bring up. When you tell her to continue, she reviews<</if>> medical research that's just been published, on the long term effects of the liquid diet your slaves eat. The current generation of slaves is the first, and new discoveries about the effects of years of modern slavery are made all the time. Apparently, consuming state of the art slave food causes slow atrophy of slaves' digestive tracts. The slaves' ability to digest the slave food does not seem to be affected; the atrophy is the body's natural reaction to never facing digestive challenge, and once it reaches the point where the remaining digestive capacity is necessary for liquid slave food, it stops. The only negative effect known is difficulty readjusting to normal food, becoming more extreme the longer the slave food diet was followed. +A screen opposite your desk springs to life, <<if $assistant == 0>>showing your personal assistant's symbol, indicating that it has a complex subject to report. When you instruct it to continue, it displays<<else>>and $assistantName's avatar appears on it seated, indicating that _heA has something complex to bring up. When you tell her to continue, _heA reviews<</if>> medical research that's just been published, on the long term effects of the liquid diet your slaves eat. The current generation of slaves is the first, and new discoveries about the effects of years of modern slavery are made all the time. Apparently, consuming state of the art slave food causes slow atrophy of slaves' digestive tracts. The slaves' ability to digest the slave food does not seem to be affected; the atrophy is the body's natural reaction to never facing digestive challenge, and once it reaches the point where the remaining digestive capacity is necessary for liquid slave food, it stops. The only negative effect known is difficulty readjusting to normal food, becoming more extreme the longer the slave food diet was followed. <br><br>"In conclusion," <<if $assistant == 0>> - your assistant recites, "no impact on slaves who fully adapt to slave food is likely, as long as they remain slaves. If they were to be freed, they would have to either continue obtaining liquid slave food, or go through a difficult or even impossible dietary transition." It pauses. "This information is likely to remain at the level of a rumor among the slave population, unless it is openly admitted." + your assistant recites, "no impact on slaves who fully adapt to slave food is likely, as long as they remain slaves. If they were to be freed, they would have to either continue obtaining liquid slave food, or go through a difficult or even impossible dietary transition." _HeA pauses. "This information is likely to remain at the level of a rumor among the slave population, unless it is openly admitted." <<else>> - she says, "your slaves who stay on slave food long enough to need it will be totally fine, as long as they stay slaves. If they're ever freed, though, they have to keep eating slave food, or somehow switch. And that's never been tried." + _heA says, "your slaves who stay on slave food long enough to need it will be totally fine, as long as they stay slaves. If they're ever freed, though, they have to keep eating slave food, or somehow switch. And that's never been tried." <<switch $assistantAppearance>> <<case "monstergirl">> - The monstergirl bares her fangs and becomes very erect. "They're stuck," she says. "They're fuckslaves forever." She pauses. + The monstergirl bares _hisA fangs and becomes very erect. "They're stuck," _heA says. "They're fuckslaves forever." _HeA pauses. <<case "shemale">> - The shemale starts to stroke herself. "Their assholes are going to be nice and clean and fuckable forever," she says, starting to cum. + The shemale starts to stroke herself. "Their assholes are going to be nice and clean and fuckable forever," _heA says, starting to cum. <<case "amazon">> - The amazon looks pleased. "They're changing to fit their place," she says. + The amazon looks pleased. "They're changing to fit their place," _heA says. <<case "businesswoman">> - The businesswoman fans herself, looking rather hot under the collar. "Another way they're bound to you," she says breathily. + The businesswoman fans herself, looking rather hot under the collar. "Another way they're bound to you," _heA says breathily. <<case "fairy">> - The small fairy giggles and spins around on one foot. "Looks like they'll be under our care for life!" She comes to a stop. + The small fairy giggles and spins around on one foot. "Looks like they'll be under our care for life!" _HeA comes to a stop. <<case "pregnant fairy">> - The small fairy giggles and rapidly beats her wings. "Looks like they'll be under our care for life!" Her wings settle down. + The small fairy giggles and rapidly beats _hisA wings. "Looks like they'll be under our care for life!" _HisA wings settle down. <<case "goddess">> - The goddess beams. "It's wonderful," she says radiantly. "Their place is here, with us." She pauses. + The goddess beams. "It's wonderful," _heA says radiantly. "Their place is here, with us." _HeA pauses. <<case "hypergoddess">> - The child filled goddess beams. "It's wonderful," she says radiantly. "They are like our children, and this arcology our womb; even after they are born they are forever bound to us." She pauses. + The child filled goddess beams. "It's wonderful," _heA says radiantly. "They are like our children, and this arcology our womb; even after they are born they are forever bound to us." _HeA pauses. <<case "loli">> - The little girl smiles happily while jumping up and down. "So we can be friends forever? That's great!" She pauses. + The little _girlA smiles happily while jumping up and down. "So we can be friends forever? That's great!" _HeA pauses. <<case "preggololi">> - The little girl smiles happily. "So we can be friends forever? That's great!" She pauses. + The little _girlA smiles happily. "So we can be friends forever? That's great!" _HeA pauses. <<case "angel">> The angel frowns. "How unfair. But you'll tend to your flock, right?" <<case "cherub">> @@ -812,9 +815,9 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> It begins to twitch excitedly. "That means its digestive track is empty. Think how many young can be shoved in there now!" Its avatar is visible erect, maybe? It's sometimes hard to tell. <<case "schoolgirl">> - The schoolgirl snickers cruelly. "Suck dick or starve," she sniggers. + The schoolgirl snickers cruelly. "Suck dick or starve," _heA sniggers. <<default>> - Her symbol rotates slowly. + _HisA symbol rotates slowly. <</switch>> "The truth will get out, but it'll be nothing more than a rumor among the slaves unless you let it be known yourself." <</if>> diff --git a/src/uncategorized/hgApplication.tw b/src/uncategorized/hgApplication.tw index 18bf290746645350282a037047fd010c30ed9cdc..fc4ed01e7d1a553c27689c496126b564801da580 100644 --- a/src/uncategorized/hgApplication.tw +++ b/src/uncategorized/hgApplication.tw @@ -17,7 +17,7 @@ <</if>> <<set $activeSlave.tired = 1>> - ''Your head girl __@@.pink;$HeadGirl.slaveName@@__'' notices that ''__@@.pink;$activeSlave.slaveName@@__'' + ''Your Head Girl __@@.pink;$HeadGirl.slaveName@@__'' notices that ''__@@.pink;$activeSlave.slaveName@@__'' <<switch $HGtraining>> <<case "health">> is unwell. @@ -234,10 +234,10 @@ $He punishes $activeSlave.slaveName whenever $he sees _him2 breaking the rules y In spare moments $he teaches $activeSlave.slaveName how to suck cocks, cunts, and assholes. $His enthusiasm for oral sex is infectious. $activeSlave.slaveName's @@.green;oral skills have improved.@@ <<set $skillIncrease = random(5,10)>><<OralSkillIncrease $activeSlave>> <<elseif ($HeadGirl.dick > 0) && canPenetrate($HeadGirl)>> - In spare moments $he teaches $activeSlave.slaveName how to suck cocks, cunts, and assholes. Your head girl uses $his penis as an effective teaching tool. $activeSlave.slaveName's @@.green;oral skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to suck cocks, cunts, and assholes. Your Head Girl uses $his penis as an effective teaching tool. $activeSlave.slaveName's @@.green;oral skills have improved.@@ <<set $skillIncrease = random(5,10)>><<OralSkillIncrease $activeSlave>> <<elseif ($HeadGirl.clit > 2)>> - In spare moments $he teaches $activeSlave.slaveName how to suck cocks, cunts, and assholes. Your head girl uses $his pseudophallus-sized clit as an effective teaching tool. $activeSlave.slaveName's @@.green;oral skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to suck cocks, cunts, and assholes. Your Head Girl uses $his pseudophallus-sized clit as an effective teaching tool. $activeSlave.slaveName's @@.green;oral skills have improved.@@ <<set $skillIncrease = random(5,10)>><<OralSkillIncrease $activeSlave>> <<else>> In spare moments $he teaches $activeSlave.slaveName how to suck cocks, cunts, and assholes. $activeSlave.slaveName's @@.green;oral skills have improved.@@ @@ -248,13 +248,13 @@ $He punishes $activeSlave.slaveName whenever $he sees _him2 breaking the rules y <<set $activeSlave.training = 0>> <<if ($HeadGirl.fetish == "buttslut") && ($HeadGirl.fetishStrength > 60)>> - In spare moments $he teaches $activeSlave.slaveName how to take it up the ass. Your head girl's enthusiasm for backdoor loving is infectious. $activeSlave.slaveName's @@.green;anal skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to take it up the ass. Your Head Girl's enthusiasm for backdoor loving is infectious. $activeSlave.slaveName's @@.green;anal skills have improved.@@ <<set $skillIncrease = random(5,10)>><<AnalSkillIncrease $activeSlave>> <<elseif ($HeadGirl.dick > 0) && canPenetrate($HeadGirl)>> - In spare moments $he teaches $activeSlave.slaveName how to take a dick up the butt. Your head girl uses $his penis as an effective teaching tool. $activeSlave.slaveName's @@.green;anal skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to take a dick up the butt. Your Head Girl uses $his penis as an effective teaching tool. $activeSlave.slaveName's @@.green;anal skills have improved.@@ <<set $skillIncrease = random(5,10)>><<AnalSkillIncrease $activeSlave>> <<elseif ($HeadGirl.clit > 2)>> - In spare moments $he teaches $activeSlave.slaveName how to take a phallus up the butt. Your head girl uses $his pseudophallus-sized clit as an effective teaching tool. $activeSlave.slaveName's @@.green;anal skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to take a phallus up the butt. Your Head Girl uses $his pseudophallus-sized clit as an effective teaching tool. $activeSlave.slaveName's @@.green;anal skills have improved.@@ <<set $skillIncrease = random(5,10)>><<AnalSkillIncrease $activeSlave>> <<else>> In spare moments $he teaches $activeSlave.slaveName how to take a dick up the butt. $activeSlave.slaveName's @@.green;anal skills have improved.@@ @@ -265,13 +265,13 @@ $He punishes $activeSlave.slaveName whenever $he sees _him2 breaking the rules y <<set $activeSlave.training = 0>> <<if ($HeadGirl.energy > 95)>> - In spare moments $he teaches $activeSlave.slaveName how to take a dick. Your head girl's enthusiasm for sex is infectious. $activeSlave.slaveName's @@.green;vanilla sex skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to take a dick. Your Head Girl's enthusiasm for sex is infectious. $activeSlave.slaveName's @@.green;vanilla sex skills have improved.@@ <<set $skillIncrease = random(5,10)>><<VaginalSkillIncrease $activeSlave>> <<elseif ($HeadGirl.dick > 0) && canPenetrate($HeadGirl)>> - In spare moments $he teaches $activeSlave.slaveName how to take a dick. Your head girl uses $his penis as an effective teaching tool. $activeSlave.slaveName's @@.green;vanilla sex skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to take a dick. Your Head Girl uses $his penis as an effective teaching tool. $activeSlave.slaveName's @@.green;vanilla sex skills have improved.@@ <<set $skillIncrease = random(5,10)>><<VaginalSkillIncrease $activeSlave>> <<elseif ($HeadGirl.clit > 2)>> - In spare moments $he teaches $activeSlave.slaveName how to take a phallus. Your head girl uses $his pseudophallus-sized clit as an effective teaching tool. $activeSlave.slaveName's @@.green;vanilla sex skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to take a phallus. Your Head Girl uses $his pseudophallus-sized clit as an effective teaching tool. $activeSlave.slaveName's @@.green;vanilla sex skills have improved.@@ <<set $skillIncrease = random(5,10)>><<VaginalSkillIncrease $activeSlave>> <<else>> In spare moments $he teaches $activeSlave.slaveName how to take a dick. $activeSlave.slaveName's @@.green;vanilla sex skills have improved.@@ @@ -288,7 +288,7 @@ In spare moments $he teaches $activeSlave.slaveName how to prostitute _himself2. <<set $activeSlave.training = 0>> <<if ($HeadGirl.fetish == "humiliation") && ($HeadGirl.fetishStrength > 60)>> - In spare moments $he teaches $activeSlave.slaveName how to entertain. Your head girl's enthusiasm for public display is infectious. $activeSlave.slaveName's @@.green;entertainment skills have improved.@@ + In spare moments $he teaches $activeSlave.slaveName how to entertain. Your Head Girl's enthusiasm for public display is infectious. $activeSlave.slaveName's @@.green;entertainment skills have improved.@@ <<set $skillIncrease = random(5,10)>><<EntertainSkillIncrease $activeSlave>> <<else>> In spare moments $he teaches $activeSlave.slaveName how to entertain. $activeSlave.slaveName's @@.green;entertainment skills have improved.@@ diff --git a/src/uncategorized/hgSelect.tw b/src/uncategorized/hgSelect.tw index ef0142f8308f0c878694f89b5c7e011f70ed0b83..eae063439ba364f174242943ecaf89cee1bb15ad 100644 --- a/src/uncategorized/hgSelect.tw +++ b/src/uncategorized/hgSelect.tw @@ -10,7 +10,7 @@ <<set $HeadGirl = getSlave($HeadGirl.ID)>> <<setLocalPronouns $HeadGirl>> <<set _HGName = SlaveFullName($HeadGirl)>> - ''__@@.pink;_HGName@@__'' is serving as your Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort; it is $his role to serve and comfort you at your side, in addition to performing normal head girl duties<</if>>. + ''__@@.pink;_HGName@@__'' is serving as your Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort; it is $his role to serve and comfort you at your side, in addition to performing normal Head Girl duties<</if>>. <br><br> <</if>> @@ -86,7 +86,7 @@ _HGName <</if>> <</if>> -<br><br>''Appoint a head girl from among your devoted slaves:'' +<br><br>''Appoint a Head Girl from among your devoted slaves:'' <br><br>[[None|HG Workaround][$i = -1]] <br><br> <<assignmentFilter>> diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw index 6a1e30b8e1ce4880e5765b1a2320d701e6369620..a164fe4cb2376a91eb17ad5e66a1b3bb1e541bbc 100644 --- a/src/uncategorized/lawCompliance.tw +++ b/src/uncategorized/lawCompliance.tw @@ -56,13 +56,13 @@ <<set $activeSlave.weight = random(-20,0)>> <<elseif $arcologies[0].FSHedonisticDecadenceSMR == 1>> <<set $activeSlave.weight = random(50,200)>> - <<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>> - <<set $activeSlave.muscles = random(10,60)>> - <<set $activeSlave.health = random(10,40)>> - <<else>> - <<set $activeSlave.muscles = random(-80,0)>> - <<set $activeSlave.health = random(-30,10)>> - <</if>> + <<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>> + <<set $activeSlave.muscles = random(10,60)>> + <<set $activeSlave.health = random(10,40)>> + <<else>> + <<set $activeSlave.muscles = random(-80,0)>> + <<set $activeSlave.health = random(-30,10)>> + <</if>> Much of $his time before sale was spent being fattened up and <<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>>pumping iron<<else>>lying around<</if>>. <<if $activeSlave.devotion <= 20>> $He had to be forcefed massive amounts of slave food while bound to meet requirements, filling $him with @@.gold;fear@@ and @@.mediumorchid;disgust.@@ diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index 6232e5cdbf6f144459a0340761c0531af4ec6359..bb54fafe9b29c63656c8c5ef824751072f21d0fc 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -953,7 +953,7 @@ is <<else>> /* FUCKDOLL MENTAL REPORT */ - It's impossible to tell what intelligence or inclinations a fuckdoll might have by looking at it, but the most recent records indicate that this one is + It's impossible to tell what intelligence or inclinations a Fuckdoll might have by looking at it, but the most recent records indicate that this one is <<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 95)>> @@.deepskyblue;brilliant@@ <<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>> @@ -989,7 +989,7 @@ is <<if ($activeSlave.behavioralFlaw != "none") ||($activeSlave.sexualFlaw != "none") ||($activeSlave.behavioralQuirk != "none") ||($activeSlave.sexualQuirk != "none")>> <<if ($activeSlave.behavioralFlaw != "none") ||($activeSlave.sexualFlaw != "none")>> - $His remaining mental flaws are likewise impossible to discern, but if $he was allowed out of $his suit, this fuckdoll would probably still + $His remaining mental flaws are likewise impossible to discern, but if $he was allowed out of $his suit, this Fuckdoll would probably still <<if $activeSlave.behavioralFlaw != "none">> <<switch $activeSlave.behavioralFlaw>> <<case "hates men">> @@ -2108,7 +2108,7 @@ $He is <<if $showBodyMods == 1>> <<if $activeSlave.fuckdoll > 0>> <<if $activeSlave.earPiercing+$activeSlave.eyebrowPiercing+$activeSlave.nosePiercing > 0>> - The piercings on its head run through its suit, helping secure the material to its head. + The piercings on $his head run through $his suit, helping secure the material to $his head. <</if>> <<else>> <<earPiercingDescription>> diff --git a/src/uncategorized/main.tw b/src/uncategorized/main.tw index ea5976e250318dedca2ec05a1660571de1bdedaa..e5981aad54ce9f3850042ae2335dc56c274bb24a 100644 --- a/src/uncategorized/main.tw +++ b/src/uncategorized/main.tw @@ -89,13 +89,13 @@ __''MAIN MENU''__ //[[Summary Options]]// <<if $rulesAssistantMain != 0>> - | //<span id="RAButton"><<link "Rules Assistant Options">><<goto "Rules Assistant">><</link>></span>// @@.cyan;[R]@@ + | //<span id="RAButton"><<link "Rules Assistant Options" "Rules Assistant">><</link>></span>// @@.cyan;[R]@@ <<if $rulesAssistantAuto != 1>> - | //<<link "Apply Rules Assistant at week end">><<set $rulesAssistantAuto = 1>><<goto "Main">><</link>>// + | //<<link "Apply Rules Assistant at week end" "Main">><<set $rulesAssistantAuto = 1>><</link>>// <<else>> - | //<<link "Stop applying Rules Assistant at week end">><<set $rulesAssistantAuto = 0>><<goto "Main">><</link>>// + | //<<link "Stop applying Rules Assistant at week end" "Main">><<set $rulesAssistantAuto = 0>><</link>>// <</if>> - | //<<link "Re-apply Rules Assistant now (this will only check slaves in the Penthouse)">><<for _i = 0;_i < _SL;_i++>><<if $slaves[_i].assignmentVisible == 1 && $slaves[_i].useRulesAssistant == 1>><<= DefaultRules($slaves[_i])>><</if>><</for>><<goto "Main">><</link>>// + | //<<link "Re-apply Rules Assistant now (this will only check slaves in the Penthouse)" "Main">><<for _i = 0;_i < _SL;_i++>><<if $slaves[_i].assignmentVisible == 1 && $slaves[_i].useRulesAssistant == 1>><<= DefaultRules($slaves[_i])>><</if>><</for>><</link>>// <</if>> <<if $useSlaveSummaryTabs == 1>> @@ -128,69 +128,71 @@ __''MAIN MENU''__ //[[Summary Options]]// <div class="content"> <<set $slaveAssignmentTab = "overview">> <<if def _HG>> - ''__@@.pink;<<= SlaveFullName($HeadGirl)>>@@__'' is serving as your head girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. - <span id="manageHG"><strong><<link "Manage Head Girl">><<goto "HG Select">><</link>></strong></span> @@.cyan;[H]@@ + ''__@@.pink;<<= SlaveFullName($HeadGirl)>>@@__'' is serving as your Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. + <span id="manageHG"><strong><<link "Manage Head Girl" "HG Select">><</link>></strong></span> @@.cyan;[H]@@ <<set $showOneSlave = "Head Girl">> <<include "Slave Summary">> <<elseif (ndef _HG) && ($slaves.length > 1)>> - You have @@.red;not@@ selected a Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. <span id="manageHG"><strong><<link "Select one">><<goto "HG Select">><</link>></strong></span> @@.cyan;[H]@@ + You have @@.red;not@@ selected a Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. <span id="manageHG"><strong><<link "Select one" "HG Select">><</link>></strong></span> @@.cyan;[H]@@ <<elseif (ndef _HG)>> //You do not have enough slaves to keep a Head Girl// <</if>> <br> <<if def _RC>> + <<setLocalPronouns $slaves[_RC]>> ''__@@.pink;<<= SlaveFullName($Recruiter)>>@@__'' is working <<if $recruiterTarget != "other arcologies">> to recruit girls. <<else>> as a Sexual <<if $arcologies[0].influenceTarget == -1>> - Ambassador, but @@.red;she has no target to influence.@@ + Ambassador, but @@.red;$he has no target to influence.@@ <<else>> Ambassador to <<for $i = 0; $i < $arcologies.length; $i++>><<if $arcologies[$i].direction == $arcologies[0].influenceTarget>>$arcologies[$i].name<<break>><</if>><</for>>. <</if>> <</if>> - <span id="manageRecruiter"><strong><<link "Manage Recruiter">><<goto "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ + <span id="manageRecruiter"><strong><<link "Manage Recruiter" "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ <<set $showOneSlave = "recruit girls">> <<include "Slave Summary">> <<else>> You have @@.red;not@@ selected a Recruiter. - <span id="manageRecruiter"><strong><<link "Select one">><<goto "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ + <span id="manageRecruiter"><strong><<link "Select one" "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ <</if>> <<if ($dojo != 0)>> <br> <<if def _BG>> - ''__@@.pink;<<= SlaveFullName($Bodyguard)>>@@__'' is serving as your bodyguard. <span id="manageBG"><strong><<link "Manage Bodyguard">><<goto "BG Select">><</link>></strong></span> @@.cyan;[B]@@ + ''__@@.pink;<<= SlaveFullName($Bodyguard)>>@@__'' is serving as your bodyguard. <span id="manageBG"><strong><<link "Manage Bodyguard" "BG Select">><</link>></strong></span> @@.cyan;[B]@@ <<set $showOneSlave = "guard you">> <<include "Slave Summary">> <<else>> - You have @@.red;not@@ selected a Bodyguard. <span id="manageBG"><strong><<link "Select one">><<goto "BG Select">><</link>></strong></span> @@.cyan;[B]@@ + You have @@.red;not@@ selected a Bodyguard. <span id="manageBG"><strong><<link "Select one" "BG Select">><</link>></strong></span> @@.cyan;[B]@@ <</if>> /* Start Italic event text */ <<if (def _BG) && ($slaves[_BG].assignment == "guard you")>> + <<setLocalPronouns $slaves[_BG]>> <<set $i = _BG>> <<set _GO = "idiot ball">> <br><<include "Use Guard">> - <br> <<print "[[Use her mouth|FLips][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - | <<print "[[Play with her tits|FBoobs][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + <br> [["Use "+$his+" mouth"|FLips][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] + | [["Play with "+$his+" tits"|FBoobs][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoVaginal($slaves[_BG])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$him|FVagina][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoAnal($slaves[_BG])>> - | <<print "[[Use her holes|FButt][$activeSlave = $slaves["+_BG+"],$nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Use "+$his+" holes"|FButt][$activeSlave = $slaves[_BG],$nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <<if $slaves[_BG].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$him+" over "+$his+" belly"|FBellyFuck][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <</if>> /*check*/ <<if canPenetrate($slaves[_BG])>> - | <<print "[[Ride her|FDick][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Ride "+$him|FDick][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <<if canDoAnal($slaves[_BG])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$his+" ass"|FAnus][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> - | <<print "[[Abuse her|Gameover][$gameover = _GO]]">> + | [["Abuse "+$him|Gameover][$gameover = _GO]] <</if>> /* End Italic event text */ @@ -245,62 +247,45 @@ __''MAIN MENU''__ //[[Summary Options]]// <br> /* Start Italic event text */ <<for $i = 0; $i < _SL; $i++>> + <<capture $i>> + <<setLocalPronouns $slaves[$i]>> <<if ($slaves[$i].assignment == "please you")>> <br><<include "Toychest">> //In the coming week you plan to concentrate on <<if $slaves[$i].fuckdoll == 0>> <<if $slaves[$i].toyHole != "all her holes">> - her $slaves[$i].toyHole, but for now:// - <br> <<print "[[Use her mouth|FLips][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoVaginal($slaves[$i])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoAnal($slaves[$i])>> - | <<print "[[Use her holes|FButt][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <</if>> - <<if canDoAnal($slaves[$i])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> - <<if $slaves[$i].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <</if>> - /*check*/ - <<if canPenetrate($slaves[$i])>> - | <<print "[[Ride her|FDick][$activeSlave = $slaves["+$i+"],$nextButton = _j,$nextLink = _k,$returnTo = _l]]">> - <</if>> - | <<print "[[Abuse her|FAbuse][$activeSlave = $slaves["+$i+"],$nextButton = _j,$nextLink = _k,$returnTo = _l]]">> + $his $slaves[$i].toyHole, but for now:// <<else>> - all of her holes equally, but for now:// - <br> <<print "[[Use her mouth|FLips][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoVaginal($slaves[$i])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoAnal($slaves[$i])>> - | <<print "[[Use her holes|FButt][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <</if>> + all of $his holes equally, but for now:// + <</if>> + <br> [["Use "+$his+" mouth"|FLips][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] | [["Play with "+$his+" tits"|FBoobs][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] + <<if canDoVaginal($slaves[$i])>> + | [["Fuck "+$him|FVagina][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoAnal($slaves[$i])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> - <<if $slaves[$i].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> + | [["Use "+$his+" holes"|FButt][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> - /*check*/ - <<if canPenetrate($slaves[$i])>> - | <<print "[[Ride her|FDick][$activeSlave = $slaves["+$i+"],$nextButton = _j,$nextLink = _k,$returnTo = _l]]">> + <</if>> + <<if canDoAnal($slaves[$i])>> + | [["Fuck "+$his+" ass"|FAnus][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] + <</if>> + <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> + <<if $slaves[$i].belly >= 300000>> + | [["Fuck "+$him+" over "+$his+" belly"|FBellyFuck][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> - | <<print "[[Abuse her|FAbuse][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> + /*check*/ + <<if canPenetrate($slaves[$i])>> + | [["Ride "+$him|FDick][$activeSlave = $slaves[$i],$nextButton = _j,$nextLink = _k,$returnTo = _l]] + <</if>> + | [["Abuse "+$him|FAbuse][$activeSlave = $slaves[$i],$nextButton = _j,$nextLink = _k,$returnTo = _l]] <<else>> <<if $slaves[$i].toyHole != "all her holes">> - its $slaves[$i].toyHole. + $his $slaves[$i].toyHole. <<else>> - all of its holes. + all of $his holes. <</if>> <</if>> <</if>> + <</capture>> <</for>> /* End Italic event text */ <br> @@ -403,69 +388,71 @@ __''MAIN MENU''__ //[[Summary Options]]// <div class="content"> <<set $slaveAssignmentTab = "overview">> <<if def _HG>> - ''__@@.pink;<<= SlaveFullName($HeadGirl)>>@@__'' is serving as your head girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. - <span id="manageHG"><strong><<link "Manage Head Girl">><<goto "HG Select">><</link>></strong></span> @@.cyan;[H]@@ + ''__@@.pink;<<= SlaveFullName($HeadGirl)>>@@__'' is serving as your Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. + <span id="manageHG"><strong><<link "Manage Head Girl" "HG Select">><</link>></strong></span> @@.cyan;[H]@@ <<set $showOneSlave = "Head Girl">> <<include "Slave Summary">> <<elseif (ndef _HG) && ($slaves.length > 1)>> - You have @@.red;not@@ selected a Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. <span id="manageHG"><strong><<link "Select one">><<goto "HG Select">><</link>></strong></span> @@.cyan;[H]@@ + You have @@.red;not@@ selected a Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. <span id="manageHG"><strong><<link "Select one" "HG Select">><</link>></strong></span> @@.cyan;[H]@@ <<elseif (ndef _HG)>> //You do not have enough slaves to keep a Head Girl// <</if>> <br> <<if def _RC>> + <<setLocalPronouns $slaves[_RC]>> ''__@@.pink;<<= SlaveFullName($Recruiter)>>@@__'' is working <<if $recruiterTarget != "other arcologies">> to recruit girls. <<else>> as a Sexual <<if $arcologies[0].influenceTarget == -1>> - Ambassador, but @@.red;she has no target to influence.@@ + Ambassador, but @@.red;$he has no target to influence.@@ <<else>> Ambassador to <<for $i = 0; $i < $arcologies.length; $i++>><<if $arcologies[$i].direction == $arcologies[0].influenceTarget>>$arcologies[$i].name<<break>><</if>><</for>>. <</if>> <</if>> - <span id="manageRecruiter"><strong><<link "Manage Recruiter">><<goto "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ + <span id="manageRecruiter"><strong><<link "Manage Recruiter" "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ <<set $showOneSlave = "recruit girls">> <<include "Slave Summary">> <<else>> You have @@.red;not@@ selected a Recruiter. - <span id="manageRecruiter"><strong><<link "Select one">><<goto "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ + <span id="manageRecruiter"><strong><<link "Select one" "Recruiter Select">><</link>></strong></span> @@.cyan;[U]@@ <</if>> <<if ($dojo != 0)>> <br> <<if def _BG>> - ''__@@.pink;<<= SlaveFullName($Bodyguard)>>@@__'' is serving as your bodyguard. <span id="manageBG"><strong><<link "Manage Bodyguard">><<goto "BG Select">><</link>></strong></span> @@.cyan;[B]@@ + ''__@@.pink;<<= SlaveFullName($Bodyguard)>>@@__'' is serving as your bodyguard. <span id="manageBG"><strong><<link "Manage Bodyguard" "BG Select">><</link>></strong></span> @@.cyan;[B]@@ <<set $showOneSlave = "guard you">> <<include "Slave Summary">> <<else>> - You have @@.red;not@@ selected a Bodyguard. <span id="manageBG"><strong><<link "Select one">><<goto "BG Select">><</link>></strong></span> @@.cyan;[B]@@ + You have @@.red;not@@ selected a Bodyguard. <span id="manageBG"><strong><<link "Select one" "BG Select">><</link>></strong></span> @@.cyan;[B]@@ <</if>> /* Start Italic event text */ <<if (def _BG) && ($slaves[_BG].assignment == "guard you")>> + <<setLocalPronouns $slaves[_BG]>> <<set $i = _BG>> <<set _GO = "idiot ball">> <br><<include "Use Guard">> - <br> <<print "[[Use her mouth|FLips][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - | <<print "[[Play with her tits|FBoobs][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + <br> [["Use "+$his+" mouth"|FLips][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] + | [["Play with "+$his+" tits"|FBoobs][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoVaginal($slaves[_BG])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$him|FVagina][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoAnal($slaves[_BG])>> - | <<print "[[Use her holes|FButt][$activeSlave = $slaves["+_BG+"],$nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Use "+$his+" holes"|FButt][$activeSlave = $slaves[_BG],$nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <<if $slaves[_BG].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$him+" over "+$his+" belly"|FBellyFuck][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <</if>> /*check*/ <<if canPenetrate($slaves[_BG])>> - | <<print "[[Ride her|FDick][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Ride "+$him|FDick][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <<if canDoAnal($slaves[_BG])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$his+" ass"|FAnus][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> - | <<print "[[Abuse her|Gameover][$gameover = _GO]]">> + | [["Abuse "+$him|Gameover][$gameover = _GO]] <</if>> /* End Italic event text */ @@ -544,93 +531,72 @@ Filter by assignment: | <<set _j = "Back", _k = "AS Dump", _l = "Main">> <<for $i = 0; $i < _SL; $i++>> +<<capture $i>> <<if ($slaves[$i].assignment == "please you")>> + <<setLocalPronouns $slaves[$i]>> <br><<include "Toychest">> //In the coming week you plan to concentrate on <<if $slaves[$i].fuckdoll == 0>> <<if $slaves[$i].toyHole != "all her holes">> - her $slaves[$i].toyHole, but for now:// - <br> <<print "[[Use her mouth|FLips][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoVaginal($slaves[$i])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoAnal($slaves[$i])>> - | <<print "[[Use her holes|FButt][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <</if>> - <<if canDoAnal($slaves[$i])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> - <<if $slaves[$i].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <</if>> - /*check*/ - <<if canPenetrate($slaves[$i])>> - | <<print "[[Ride her|FDick][$activeSlave = $slaves["+$i+"],$nextButton = _j,$nextLink = _k,$returnTo = _l]]">> - <</if>> - | <<print "[[Abuse her|FAbuse][$activeSlave = $slaves["+$i+"],$nextButton = _j,$nextLink = _k,$returnTo = _l]]">> + $his $slaves[$i].toyHole, but for now:// <<else>> - all of her holes equally, but for now:// - <br> <<print "[[Use her mouth|FLips][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> | <<print "[[Play with her tits|FBoobs][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoVaginal($slaves[$i])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <<if canDoAnal($slaves[$i])>> - | <<print "[[Use her holes|FButt][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <</if>> + all of $his holes equally, but for now:// + <</if>> + <br> [["Use "+$his+" mouth"|FLips][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] | [["Play with "+$his+" tits"|FBoobs][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] + <<if canDoVaginal($slaves[$i])>> + | [["Fuck "+$him|FVagina][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoAnal($slaves[$i])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> - <<if $slaves[$i].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> + | [["Use "+$his+" holes"|FButt][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> - /*check*/ - <<if canPenetrate($slaves[$i])>> - | <<print "[[Ride her|FDick][$activeSlave = $slaves["+$i+"],$nextButton = _j,$nextLink = _k,$returnTo = _l]]">> + <</if>> + <<if canDoAnal($slaves[$i])>> + | [["Fuck "+$his+" ass"|FAnus][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] + <</if>> + <<if canDoVaginal($slaves[$i]) || canDoAnal($slaves[$i])>> + <<if $slaves[$i].belly >= 300000>> + | [["Fuck "+$him+" over "+$his+" belly"|FBellyFuck][$activeSlave = $slaves[$i], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> - | <<print "[[Abuse her|FAbuse][$activeSlave = $slaves["+$i+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> <</if>> + /*check*/ + <<if canPenetrate($slaves[$i])>> + | [["Ride "+$him|FDick][$activeSlave = $slaves[$i],$nextButton = _j,$nextLink = _k,$returnTo = _l]] + <</if>> + | [["Abuse "+$him|FAbuse][$activeSlave = $slaves[$i],$nextButton = _j,$nextLink = _k,$returnTo = _l]] <<else>> <<if $slaves[$i].toyHole != "all her holes">> - its $slaves[$i].toyHole. + $his $slaves[$i].toyHole. <<else>> - all of its holes. + all of $his holes. <</if>> <</if>> <</if>> +<</capture>> <</for>> <</if>> <<if (def _BG) && ($slaves[_BG].assignment == "guard you") && ($useSlaveSummaryOverviewTab != 1)>> <<set $i = _BG>> + <<setLocalPronouns $slaves[$i]>> <<set _GO = "idiot ball">> <br><<include "Use Guard">> - <br> <<print "[[Use her mouth|FLips][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - | <<print "[[Play with her tits|FBoobs][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + <br> [["Use "+$his+" mouth"|FLips][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] + | [["Play with "+$his+" tits"|FBoobs][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoVaginal($slaves[_BG])>> - | <<print "[[Fuck her|FVagina][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$him|FVagina][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <<if canDoAnal($slaves[_BG])>> - | <<print "[[Use her holes|FButt][$activeSlave = $slaves["+_BG+"],$nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Use "+$his+" holes"|FButt][$activeSlave = $slaves[_BG],$nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <<if $slaves[_BG].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> - <</if>> - <</if>> - <<if canDoVaginal($slaves[_BG]) || canDoAnal($slaves[_BG])>> - <<if $slaves[_BG].belly >= 300000>> - | <<print "[[Fuck her over her belly|FBellyFuck][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$him+" over "+$his+" belly"|FBellyFuck][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <</if>> /*check*/ <<if canPenetrate($slaves[_BG])>> - | <<print "[[Ride her|FDick][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Ride "+$him|FDick][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> <<if canDoAnal($slaves[_BG])>> - | <<print "[[Fuck her ass|FAnus][$activeSlave = $slaves["+_BG+"], $nextButton = _j, $nextLink = _k, $returnTo = _l]]">> + | [["Fuck "+$his+" ass"|FAnus][$activeSlave = $slaves[_BG], $nextButton = _j, $nextLink = _k, $returnTo = _l]] <</if>> - | <<print "[[Abuse her|Gameover][$gameover = _GO]]">> + | [["Abuse "+$him|Gameover][$gameover = _GO]] <</if>> diff --git a/src/uncategorized/manageArcology.tw b/src/uncategorized/manageArcology.tw index 2aca5e09a8a18e246901e10935274669eed49d1e..418f1264da7b21869327094cf66e2bdf4ebed8de 100644 --- a/src/uncategorized/manageArcology.tw +++ b/src/uncategorized/manageArcology.tw @@ -121,7 +121,7 @@ __Construction__ <</if>> <<if ($PC.engineering >= 100) || ($PC.career == "arcology owner")>> - //Arcology upgrades are less expensive due to your @@.springgreen;<<if $PC.career == "arcology owner">>experience in the Free Cities<<else>>arcology engineering training<</if>>.@@// + <br>//Arcology upgrades are less expensive due to your @@.springgreen;<<if $PC.career == "arcology owner">>experience in the Free Cities<<else>>arcology engineering training<</if>>.@@// <</if>> <br><br> @@ -242,26 +242,26 @@ __Special Arcology Upgrades__ <</if>> <<if ($personalArms == 1)>> -You own a prototype powered exoskeleton that mounts armor and a smart mortar system, and has rifles mounted into its forearms. + You own a prototype powered exoskeleton that mounts armor and a smart mortar system, and has rifles mounted into its forearms. <<elseif ($personalArms > 1)>> -You own a prototype powered exoskeleton that mounts armor and a smart mortar system, and has rifles mounted into its forearms. Furthermore, your security drones can rearm with small-caliber guns if necessary. + You own a prototype powered exoskeleton that mounts armor and a smart mortar system, and has rifles mounted into its forearms. Furthermore, your security drones can rearm with small-caliber guns if necessary. <</if>> <<if ($mercenaries > 0)>> -<<if ($mercenaries == 1)>> -A squad of mercenaries is permanently quartered in $arcologies[0].name. They are grim men and women, heavily armed and armored. -<<elseif ($mercenaries < 5)>> -A full platoon of mercenaries is permanently quartered in $arcologies[0].name. They are grim men and women, heavily armed and armored. -<<elseif ($mercenaries >= 5)>> -You have permanently settled a full company of mercenaries in $arcologies[0].name as your $mercenariesTitle. They are grim men and women who appreciate their luxurious life here and train hard to keep their skills with their prototype armor sharp. -<</if>> + <<if ($mercenaries == 1)>> + A squad of mercenaries is permanently quartered in $arcologies[0].name. They are grim men and women, heavily armed and armored. + <<elseif ($mercenaries < 5)>> + A full platoon of mercenaries is permanently quartered in $arcologies[0].name. They are grim men and women, heavily armed and armored. + <<elseif ($mercenaries >= 5)>> + You have permanently settled a full company of mercenaries in $arcologies[0].name as your $mercenariesTitle. They are grim men and women who appreciate their luxurious life here and train hard to keep their skills with their prototype armor sharp. + <</if>> <</if>> <<if ($assistant > 0)>> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> is using an alternative personality setting, speaking in a sultry, sexual voice, and talking as though the penthouse's sex toys are her body. +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> is using an alternative personality setting, speaking in a sultry, sexual voice, and talking as though the penthouse's sex toys are _hisA body. <</if>> <<if ($assistant > 1)>> -She also has charge of all smart piercings in the arcology, and is using her adaptations to sexual duties to improve their effectiveness. +_HeA also has charge of all smart piercings in the arcology, and is using _hisA adaptations to sexual duties to improve their effectiveness. <</if>> <br><br> diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw index 34c22029ac5443ebd76a96a123e69a7cb3007509..f3bc2b7da03c2adf949f0e25e1177bd718448c39 100644 --- a/src/uncategorized/masterSuite.tw +++ b/src/uncategorized/masterSuite.tw @@ -63,19 +63,19 @@ $masterSuiteNameCaps is furnished <<switch $masterSuiteDecoration>> <<case "Roman Revivalist">> - as a Roman emperor's apartment. There is a small shrine to the old gods the <<if $PC.title == 1>>master<<else>>mistress<</if>> favors in a side room, and the flooring is erotic mosaic. Pride of place is given to a set of low couches placed together, capable of accommodating many nude bodies. + as a Roman emperor's apartment. There is a small shrine to the old gods the <<= properMaster()>> favors in a side room, and the flooring is erotic mosaic. Pride of place is given to a set of low couches placed together, capable of accommodating many nude bodies. <<case "Aztec Revivalist">> - as an Aztec cultural, spiritual and military leader of the city you're allowed great leniency. The <<if $PC.title == 1>>Master<<else>>Mistress<</if>>'s room is created to gratify you as a true god of the people. + as an Aztec cultural, spiritual and military leader of the city you're allowed great leniency. The <<= properMaster()>>'s room is created to gratify you as a true god of the people. <<case "Egyptian Revivalist">> - after the royal room of an ancient Egyptian palace. There is a small shrine to the old gods the <<if $PC.title == 1>>master<<else>>mistress<</if>> favors in a side room, and linen hangings decorate the walls and ceiling. An imposing bed of sandalwood occupies the center of the room. + after the royal room of an ancient Egyptian palace. There is a small shrine to the old gods the <<= properMaster()>> favors in a side room, and linen hangings decorate the walls and ceiling. An imposing bed of sandalwood occupies the center of the room. <<case "Edo Revivalist">> - in the Spartan style of an Edo period castle's innermost rooms. Rice paper screens partition off many small cubicles around its large central space. There, around a low bed, there are many mats for servants to kneel around their <<if $PC.title == 1>>master<<else>>mistress<</if>>. + in the Spartan style of an Edo period castle's innermost rooms. Rice paper screens partition off many small cubicles around its large central space. There, around a low bed, there are many mats for servants to kneel around their <<= properMaster()>>. <<case "Arabian Revivalist">> as a beguiling haze of Arabian decadence. There is a great gilded bed in the center of the space, piled with silk pillows for naked bodies to recline on. Gauzy curtains flutter in the warm, heady breeze. <<case "Chinese Revivalist">> as though it were the innermost sanctum of the Forbidden City. A massive bed fills the central space. The walls are gorgeous gilded hand-carved screens, and heavy jade statues of favored gods crouch in the corners. <<case "Chattel Religionist">> - as a severe place of cold stone and hard wood. A single shaft of sunlight illuminates an enormous stone platform that serves as a bed where penitents give their bodies to their <<if $PC.title == 1>>master<<else>>mistress<</if>>. + as a severe place of cold stone and hard wood. A single shaft of sunlight illuminates an enormous stone platform that serves as a bed where penitents give their bodies to their <<= properMaster()>>. <<case "Degradationist">> with a gothic grandeur. Blood-red upholstery and hardwood menace crouch in the center of the space in the form of a massive poster bed with curtains of chain mail. <<case "Repopulation Focus">> @@ -109,7 +109,7 @@ $masterSuiteNameCaps is furnished <<case "Hedonistic">> comfortably, with lots of lounges for a hefty slaves to relax on. <<if $arcologies[0].FSHedonisticDecadenceResearch == 1>>Platters of food and treats are readily available throughout the room and are<<else>>Slave food is readily available for your harem and platters of food for yourself are<</if>> never out of arm's reach. There's a huge, reinforced, low to the ground bed in the middle of the suite. <<default>> - in a refined, yet practical style. It's dominated by a huge bed in which many slaves could serve their <<if $PC.title == 1>>master<<else>>mistress<</if>> and then cuddle afterward. + in a refined, yet practical style. It's dominated by a huge bed in which many slaves could serve their <<= properTitle()>> and then cuddle afterward. <</switch>> It is full of luxuries of all kinds. The slaves here live free of want or worry, and have everything except their freedom. Their only duties are to please you and look after the suite and one another. @@ -135,11 +135,11 @@ It is full of luxuries of all kinds. The slaves here live free of want or worry, $masterSuiteNameCaps is furnished <<switch $masterSuiteDecoration>> <<case "Roman Revivalist">> - as a Roman emperor's apartment. There is a small shrine to the old gods the <<if $PC.title == 1>>master<<else>>mistress<</if>> favors in a side room, and the flooring is erotic mosaic. + as a Roman emperor's apartment. There is a small shrine to the old gods the <<= properTitle()>> favors in a side room, and the flooring is erotic mosaic. <<case "Aztec Revivalist">> - as an Aztec cultural, spiritual and military leader of the city you're allowed great leniency. The <<if $PC.title == 1>>Master<<else>>Mistress<</if>>'s room is created to gratify you as a true god of the people. + as an Aztec cultural, spiritual and military leader of the city you're allowed great leniency. The <<= properTitle()>>'s room is created to gratify you as a true god of the people. <<case "Egyptian Revivalist">> - after the royal room of an ancient Egyptian palace. There is a small shrine to the old gods the <<if $PC.title == 1>>master<<else>>mistress<</if>> favors in a side room, and linen hangings decorate the walls and ceiling. + after the royal room of an ancient Egyptian palace. There is a small shrine to the old gods the <<= properTitle()>> favors in a side room, and linen hangings decorate the walls and ceiling. <<case "Edo Revivalist">> in the Spartan style of an Edo period castle's innermost rooms. Rice paper screens partition off many small cubicles around its large central space. <<case "Arabian Revivalist">> @@ -209,9 +209,9 @@ The true focus of the suite is, however, the fuckpit. This stepped depression in <<if (_masterSuitePregnantSlaves > 2) && (_masterSuitePregnantSlavesMultiple < 2)>> Many of the slaves are pregnant, and more than one has her face buried in the cunt directly below a gravid belly while she lovingly massages her own.<br> <<elseif (_masterSuitePregnantSlaves > 2) && (_masterSuitePregnantSlavesMultiple > 2) && $masterSuiteHyperPregnancy == 1>> - Many of the slaves are heavily pregnant with multiple children, and more than one has her face buried in the cunt directly below a massively overburdened belly while she lovingly massages her own distended squirming stomach.<br> + Many of the slaves are heavily pregnant with multiple children, and more than one has her face buried in the cunt directly below a massively overburdened belly while she lovingly massages her own distended squirming stomach.<br> <<elseif (_masterSuitePregnantSlaves > 2) && (_masterSuitePregnantSlavesMultiple > 2)>> - Many of the slaves are pregnant with multiple children, and more than one has her face buried in the cunt directly below a grossly swollen belly while she lovingly massages her own distended stomach.<br> + Many of the slaves are pregnant with multiple children, and more than one has her face buried in the cunt directly below a grossly swollen belly while she lovingly massages her own distended stomach.<br> <</if>> <<elseif $masterSuiteSlaves > 0>> has a few lonely-looking fucktoys in it, badly outnumbered by the cushions. @@ -226,11 +226,11 @@ The true focus of the suite is, however, the fuckpit. This stepped depression in $masterSuiteNameCaps is furnished <<switch $masterSuiteDecoration>> <<case "Roman Revivalist">> - as a Roman patrician's apartment. There is a small shrine to the old gods the <<if $PC.title == 1>>master<<else>>mistress<</if>> favors in a side room, and the flooring is erotic mosaic. + as a Roman patrician's apartment. There is a small shrine to the old gods the <<= properTitle()>> favors in a side room, and the flooring is erotic mosaic. <<case "Aztec Revivalist">> - as an Aztec cultural, spiritual and military leader of the city you're allowed great leniency. The <<if $PC.title == 1>>Master<<else>>Mistress<</if>>'s room is created to gratify you as a true god of the people. + as an Aztec cultural, spiritual and military leader of the city you're allowed great leniency. The <<= properTitle()>>'s room is created to gratify you as a true god of the people. <<case "Egyptian Revivalist">> - after the best room of an ancient Egyptian mansion. There is a small shrine to the old gods the <<if $PC.title == 1>>master<<else>>mistress<</if>> favors in a side room, and linen hangings decorate the walls and ceiling. + after the best room of an ancient Egyptian mansion. There is a small shrine to the old gods the <<= properTitle()>> favors in a side room, and linen hangings decorate the walls and ceiling. <<case "Edo Revivalist">> in the Spartan style of an Edo period mansion's innermost rooms. Rice paper screens divide it into subsections, each of which contains little more than a low bed. <<case "Arabian Revivalist">> @@ -238,7 +238,7 @@ $masterSuiteNameCaps is furnished <<case "Chinese Revivalist">> like the mansion of a senior mandarin of ancient China. The walls are gorgeous hand-carved wooden screens, and heavy jade statues of favored gods crouch in the corners. <<case "Chattel Religionist">> - as a severe place of cold stone and hard wood. A single shaft of sunlight illuminates the bed where penitents give their bodies to their <<if $PC.title == 1>>master<<else>>mistress<</if>>. + as a severe place of cold stone and hard wood. A single shaft of sunlight illuminates the bed where penitents give their bodies to their <<= properTitle()>>. <<case "Repopulation Focus">> comfortably, with lots of cushions and seats for a pregnant slaves to lounge on. Various specialized toys, as well as, lotions and creams are readily available. <<case "Eugenics">> diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw index c46c110d67296cb3a6436e1d100e7d7042b4440e..c0c76fa034beadc34ba7854860d1aa2512148067 100644 --- a/src/uncategorized/masterSuiteReport.tw +++ b/src/uncategorized/masterSuiteReport.tw @@ -134,20 +134,20 @@ <</if>> <<if $Concubine.prestigeDesc == "She is remembered for winning best in show as a dairy cow.">> <<if $Concubine.lactation > 1 || $Concubine.lactationAdaptation > 90>> - $He does her best to prevent herself from making a mess when you don't want one. When $he has free time, $he researches new techniques to make use of her excessive milk to entertain you. + $He does $his best to prevent $himself from making a mess when you don't want one. When $he has free time, $he researches new techniques to make use of $his excessive milk to entertain you. <<elseif $Concubine.lactation > 0>> - $He does her best to prevent herself from making a mess when you don't want one. When $he has free time, $he researches new techniques to make use of her breast milk to entertain you. + $He does $his best to prevent $himself from making a mess when you don't want one. When $he has free time, $he researches new techniques to make use of $his breast milk to entertain you. <<else>> - $He wishes $he could lactate for you, but $he has dried up since her glory days. + $He wishes $he could lactate for you, but $he has dried up since $his glory days. <</if>> <</if>> <<if $Concubine.prestigeDesc == "She is remembered for winning best in show as a breeder.">> <<if $Concubine.bellyPreg >= 5000>> - When $he has a free moment, $he refines her flexibility so that $he can perform any sexual position possible for her in her motherly state. $He takes the time to look up new positions to work around her growing pregnancy. + When $he has a free moment, $he refines $his flexibility so that $he can perform any sexual position possible for $him in $his motherly state. $He takes the time to look up new positions to work around $his growing pregnancy. <<elseif isFertile($Concubine) || $Concubine.preg > 0>> - When $he has a free moment, $he refines her flexibility so that $he is prepared for any sexual position you can think of, no matter how heavy $he becomes with children. + When $he has a free moment, $he refines $his flexibility so that $he is prepared for any sexual position you can think of, no matter how heavy $he becomes with children. <<else>> - When $he has a free moment, $he researches ways to restore her fertility; $he dreams of the day $he can carry <<if $PC.dick ==1>>your children<<else>>children for you<</if>>. + When $he has a free moment, $he researches ways to restore $his fertility; $he dreams of the day $he can carry <<if $PC.dick ==1>>your children<<else>>children for you<</if>>. <</if>> <</if>> <</if>> @@ -160,7 +160,7 @@ Having a rising porn star as your personal bed warmer @@.green;reflects on your standing.@@ <</if>> <<if ($Concubine.oralCount + $Concubine.analCount + $Concubine.vaginalCount + $Concubine.mammaryCount + $Concubine.penetrativeCount > 1000)>> - <<if $verboseDescriptions == 1>>Many citizens <<if $Concubine.publicCount > 10>>remember having had her themselves, and <</if>>@@.green;respectfully@@ envy you her exclusive company.<</if>> + <<if $verboseDescriptions == 1>>Many citizens <<if $Concubine.publicCount > 10>>remember having had $him themselves, and <</if>>@@.green;respectfully@@ envy you $his exclusive company.<</if>> <<set $repGain += 25>> <</if>> <<if $masterSuiteUpgradeLuxury > 0>> diff --git a/src/uncategorized/matchmaking.tw b/src/uncategorized/matchmaking.tw index 6b5e87cf1ee157f4c2b3b0fe7ac588dc08bc24af..7b01b5d5c47b11699f87633b3034f14779b6c8a0 100644 --- a/src/uncategorized/matchmaking.tw +++ b/src/uncategorized/matchmaking.tw @@ -8,6 +8,7 @@ <<set _belly = bellyAdjective($eventSlave)>> <<setLocalPronouns $eventSlave>> <<setPlayerPronouns>> +<<setAssistantPronouns>> /* 000-250-006 */ <<if $seeImages == 1>> @@ -83,9 +84,9 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <<if $assistant == 0>> instructions. <<else>> - instructions, her + instructions, _hisA <<if $assistantAppearance == "monstergirl">> - monstergirl avatar appearing in a surprisingly conventional surplice that covers her up decently. All except for her horns, which protrude from under the headpiece. + monstergirl avatar appearing in a surprisingly conventional surplice that covers _himA up decently. All except for _hisA horns, which protrude from under the headpiece. <<elseif $assistantAppearance == "shemale">> shemale avatar appears in a collar patterned to look like a minister's, and absolutely nothing else, stroking herself with anticipation. <<elseif $assistantAppearance == "amazon">> @@ -95,31 +96,31 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <<elseif $assistantAppearance == "fairy">> fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes and looking rather smug about it. <<elseif $assistantAppearance == "pregnant fairy">> - fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes stretched tight by her pregnant belly and looking rather smug about it. + fairy avatar looking incredibly silly, dressed in an oversized, disheveled priest's robes stretched tight by _hisA pregnant belly and looking rather smug about it. <<elseif $assistantAppearance == "goddess">> - goddess avatar completely unchanged, since she considers her usual form perfectly appropriate for a marriage. + goddess avatar completely unchanged, since _heA considers _hisA usual form perfectly appropriate for a marriage. <<elseif $assistantAppearance == "hypergoddess">> - goddess avatar completely unchanged, since she considers her usual form perfectly appropriate for a marriage. + goddess avatar completely unchanged, since _heA considers _hisA usual form perfectly appropriate for a marriage. <<elseif $assistantAppearance == "loli">> - loli avatar looking surprisingly mature in a minister's collar. Though, she would rather be the flower girl in this wedding. + loli avatar looking surprisingly mature in a minister's collar. Though, _heA would rather be the flower girl in this wedding. <<elseif $assistantAppearance == "preggololi">> - loli avatar looking surprisingly mature in a minister's collar. Though, she would rather be the flower girl in this wedding. + loli avatar looking surprisingly mature in a minister's collar. Though, _heA would rather be the flower girl in this wedding. <<elseif $assistantAppearance == "schoolgirl">> - schoolgirl avatar looking willfully absurd in a minister's collar and her usual short plaid skirt. + schoolgirl avatar looking willfully absurd in a minister's collar and _hisA usual short plaid skirt. <<elseif $assistantAppearance == "angel">> - angelic avatar looking, well, angelic in her usual garb with an added minister's collar. + angelic avatar looking, well, angelic in _hisA usual garb with an added minister's collar. <<elseif $assistantAppearance == "cherub">> - angelic avatar looking absurd in her oversized robe, complete with wingholes, and minister's collar. + angelic avatar looking absurd in _hisA oversized robe, complete with wingholes, and minister's collar. <<elseif $assistantAppearance == "incubus">> - demonic avatar completely unchanged, since she considers her usual form perfectly appropriate for a marriage, though she has made sure to be fully erect for the wedding. + demonic avatar completely unchanged, since _heA considers _hisA usual form perfectly appropriate for a marriage, though _heA has made sure to be fully erect for the wedding. <<elseif $assistantAppearance == "succubus">> - demonic avatar wearing nothing but a minister's collar. She has brought several marital aids along with her to tease the bride and groom with. + demonic avatar wearing nothing but a minister's collar. _HeA has brought several marital aids along with _himA to tease the bride and groom with. <<elseif $assistantAppearance == "imp">> - demonic avatar looking absurd in her oversized robe, complete with wingholes, and minister's collar. + demonic avatar looking absurd in _hisA oversized robe, complete with wingholes, and minister's collar. <<elseif $assistantAppearance == "witch">> witchy avatar looking rather formal in a fine robe and minister's collar. <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - twitching avatar completely unchanged, sans a bulbous ring of flesh around her neck that sort of resembles a minister's collar. + twitching avatar completely unchanged, sans a bulbous ring of flesh around _hisA neck that sort of resembles a minister's collar. <<else>> symbol appearing in white. <</if>> @@ -130,46 +131,46 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ <<replace "#result2">> You order $assistantName to simply redesignate $eventSlave.slaveName as your slave wife. <<if $assistant == 0>> - "Slave redesignated," it responds immediately. The thing is done. + "Slave redesignated," _heA responds immediately. The thing is done. <<else>> <<if $assistantAppearance == "monstergirl">> - Her avatar snaps its fingers and shrugs off its surplice, revealing her tentacle hair, pale skin, and cocks once more. + _HisA avatar snaps _hisA fingers and shrugs off _hisA surplice, revealing _hisA tentacle hair, pale skin, and cocks once more. <<elseif $assistantAppearance == "shemale">> - Her avatar snaps its fingers and starts to masturbate more energetically. + _HisA avatar snaps _hisA fingers and starts to masturbate more energetically. <<elseif $assistantAppearance == "amazon">> - Her avatar gives its medicine stick a shake. + _HisA avatar gives _hisA medicine stick a shake. <<elseif $assistantAppearance == "businesswoman">> - Her avatar snaps its fingers. + _HisA avatar snaps _hisA fingers. <<elseif ($assistantAppearance == "fairy") || ($assistantAppearance == "pregnant fairy")>> - Her avatar claps its hands twice, looking a bit disappointed at the lack of celebration. + _HisA avatar claps _hisA hands twice, looking a bit disappointed at the lack of celebration. <<elseif $assistantAppearance == "goddess">> - Her avatar makes a complex hand gesture, looking beatific. + _HisA avatar makes a complex hand gesture, looking beatific. <<elseif $assistantAppearance == "hypergoddess">> - Her avatar makes a complex hand gesture, looking beatific. + _HisA avatar makes a complex hand gesture, looking beatific. <<elseif $assistantAppearance == "loli">> - Her avatar claps its hands together. + _HisA avatar claps _hisA hands together. <<elseif $assistantAppearance == "preggololi">> - Her avatar claps its hands together. + _HisA avatar claps _hisA hands together. <<elseif $assistantAppearance == "schoolgirl">> - Her avatar snaps its fingers and gives a little twirl. + _HisA avatar snaps _hisA fingers and gives a little twirl. <<elseif $assistantAppearance == "angel">> - Her avatar spreads its wings and arms and emits a flash of light. + _HisA avatar spreads _hisA wings and arms and emits a flash of light. <<elseif $assistantAppearance == "cherub">> - Her avatar claps its hands together, emitting a burst of light. + _HisA avatar claps _hisA hands together, emitting a burst of light. <<elseif $assistantAppearance == "incubus">> - Her avatar flick the tip of its penis and blows her load towards the both of you. + _HisA avatar flick the tip of _hisA penis and blows _hisA load towards the both of you. <<elseif $assistantAppearance == "succubus">> - Her avatar starts to masturbate furiously and orgasms lewdly. + _HisA avatar starts to masturbate furiously and orgasms lewdly. <<elseif $assistantAppearance == "imp">> - Her avatar claps its hands together, emitting a burst of darkness. + _HisA avatar claps _hisA hands together, emitting a burst of darkness. <<elseif $assistantAppearance == "witch">> - Her avatar pulls out its spellbook and attempts a spell to bind you two; she manages to conjure a large ring around her, pinning her arms to her sides. + _HisA avatar pulls out _hisA spell book and attempts a spell to bind you two; _heA manages to conjure a large ring around _himA, pinning _hisA arms to _hisA sides. <<elseif $assistantAppearance == "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - Her avatar splits open to reveal a number of tentacles and wraps them around each other. + _HisA avatar splits open to reveal a number of tentacles and wraps them around each other. <<else>> - Her symbol flashes. + _HisA symbol flashes. <</if>> - "Done," she says. + "Done," _heA says. <</if>> <<set $eventSlave.relationship = -3>> <<if $PC.surname>> @@ -257,7 +258,7 @@ Despite $his devotion and trust, $he is still a slave, and probably knows that $ "The marriage protocol now requires you to <<if $PC.dick == 1>>fellate<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on<</if>> the <<if $PC.title == 1>>groom<<else>>the bride<</if>>," $assistantName orders $him, and $he hurries to obey. <<else>> <<if $assistantAppearance == "monstergirl">> - "To consecrate the ceremony," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar begins to play with her dicks. + "To consecrate the ceremony," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar begins to play with _hisA dicks. <<elseif $assistantAppearance == "shemale">> "To get this marriage started," $assistantName concludes, "$eventSlave.slaveName, you will now <<if $PC.dick == 1>>suck the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s dick<<if $PC.vagina == 1>> and eat _hisP pussy<</if>><<else>>eat the <<if $PC.title == 1>>groom<<else>>bride<</if>>'s pussy<</if>>." The slave complies eagerly. Pleased by the sight, $assistantName's avatar starts to jill off. <<elseif $assistantAppearance == "amazon">> diff --git a/src/uncategorized/neighborsDevelopment.tw b/src/uncategorized/neighborsDevelopment.tw index 7d2d4e90c7d9a179a26e820fa7fa00ea2e5a83dc..1b0b5f131a471a8a81f80190c6346a2b36060ed8 100644 --- a/src/uncategorized/neighborsDevelopment.tw +++ b/src/uncategorized/neighborsDevelopment.tw @@ -1891,7 +1891,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(Math.trunc((0.1*$arcol <<if $arcologies[$i].FSChineseRevivalist != "unset">> <<if $corpIncorporated == 1>> <<if $entrapmentUpgradeIntelligence == "intelligent">> - It's a @@.lightgreen;good market@@ for your corporation's intelligent head girl prospects, improving sales and helping social progress. + It's a @@.lightgreen;good market@@ for your corporation's intelligent Head Girl prospects, improving sales and helping social progress. <<set $arcologies[$i].FSChineseRevivalist += 1>> <<set $corpCash += _corpBonus>> <</if>> @@ -2719,7 +2719,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(Math.trunc((0.1*$arcol <<else>> There's a peacekeeping force led by General $peacekeepers.generalName in the troubled area near the Free City. <<if $peacekeepers.undermining>> - You're paying for an media misinformation campaign in the old world country that sent him. It + You're paying for a media misinformation campaign in the old world country that sent him. It <<set $peacekeepers.strength -= $peacekeepers.undermining/10000>> <<if $peacekeepers.strength < 10>> has had a significant impact; one of the nation's two major political parties now favors withdrawing the peacekeepers. diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 58022af2d47218ad6b8489a5f1b3282cadcb5894..b18040a773ddbf4b4b2e35bcfcc52d10eef3617a 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -384,23 +384,23 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</if>> <<if $arcologies[0].FSBodyPurist >= 50>> - <<if $activeSlave.boobsImplant > 0 || $activeSlave.buttImplant > 0 || $activeSlave.waist < -95 || $activeSlave.lipsImplant > 0 || $activeSlave.faceImplant >= 30>> - $He realizes that your arcology disapproves of body modifications like $hers, and @@.gold;fears@@ that $he will be subjected to further surgery to purify $him. - <<set $activeSlave.trust -= 4>> - <<else>> - $He realizes that your arcology approves of natural bodies like $hers, and @@.mediumaquamarine;trusts@@ that $he will be allowed to keep it that way. - <<set $activeSlave.trust += 2>> - <</if>> + <<if $activeSlave.boobsImplant > 0 || $activeSlave.buttImplant > 0 || $activeSlave.waist < -95 || $activeSlave.lipsImplant > 0 || $activeSlave.faceImplant >= 30>> + $He realizes that your arcology disapproves of body modifications like $hers, and @@.gold;fears@@ that $he will be subjected to further surgery to purify $him. + <<set $activeSlave.trust -= 4>> + <<else>> + $He realizes that your arcology approves of natural bodies like $hers, and @@.mediumaquamarine;trusts@@ that $he will be allowed to keep it that way. + <<set $activeSlave.trust += 2>> + <</if>> <</if>> <<if $arcologies[0].FSTransformationFetishist >= 50>> - <<if $activeSlave.boobsImplant > 0 || $activeSlave.buttImplant > 0 || $activeSlave.waist < -95 || $activeSlave.lipsImplant > 0 || $activeSlave.faceImplant >= 30>> - $He realizes that your arcology approves of body modifications like $hers, and @@.mediumaquamarine;trusts@@ that $he will be valued for them. - <<set $activeSlave.trust += 2>> - <<else>> - $He realizes that your arcology disapproves of natural bodies like $hers, and @@.gold;fears@@ that $he will soon be a plastic surgeon's plaything. - <<set $activeSlave.trust -= 4>> - <</if>> + <<if $activeSlave.boobsImplant > 0 || $activeSlave.buttImplant > 0 || $activeSlave.waist < -95 || $activeSlave.lipsImplant > 0 || $activeSlave.faceImplant >= 30>> + $He realizes that your arcology approves of body modifications like $hers, and @@.mediumaquamarine;trusts@@ that $he will be valued for them. + <<set $activeSlave.trust += 2>> + <<else>> + $He realizes that your arcology disapproves of natural bodies like $hers, and @@.gold;fears@@ that $he will soon be a plastic surgeon's plaything. + <<set $activeSlave.trust -= 4>> + <</if>> <</if>> <<if $arcologies[0].FSMaturityPreferentialist >= 50>> @@ -810,7 +810,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<if canDoAnal($activeSlave)>> <<link "Make sure $he enjoys $his first butt stuff">> <<replace "#introResult">> - You make no direct answer to $his nervous question about $his virgin butt, though you do wonder how $he was so selfish as to be a Free Cities party girl without giving up $his asshole nightly. Instead, you ask $him about $himself, ensuring that $he learns the proper way to answer questions from $his <<if $PC.title == 1>>master<<else>>mistress<</if>>. $He answers readily, even when you turn the subject to $his sexual experiences, and $he starts to get visibly aroused. Before long, $he finds $himself sitting on your lap on the couch, making out with you while $he gives you a handjob. $He stiffens a little when you begin to play with $his butthole, but you take your time. Soon $he's taking a finger, and then two, and before long, $he's riding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him. + You make no direct answer to $his nervous question about $his virgin butt, though you do wonder how $he was so selfish as to be a Free Cities party girl without giving up $his asshole nightly. Instead, you ask $him about $himself, ensuring that $he learns the proper way to answer questions from $his <<= WrittenMaster($activeSlave)>>. $He answers readily, even when you turn the subject to $his sexual experiences, and $he starts to get visibly aroused. Before long, $he finds $himself sitting on your lap on the couch, making out with you while $he gives you a handjob. $He stiffens a little when you begin to play with $his butthole, but you take your time. Soon $he's taking a finger, and then two, and before long, $he's riding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him. <</replace>> <<set $activeSlave.trust += 10>> <<set $activeSlave.anus = 1>> @@ -825,7 +825,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<if canDoAnal($activeSlave)>> <<link "Make sure $he enjoys $his first anal sex">> <<replace "#introResult">> - You introduce $him to obedience and proper manners regarding $his <<if $PC.title == 1>>master<<else>>mistress<</if>> before sending $him off for a physical. That night, $he's returned to your room, and finds you doing business on a tablet in bed. $He looks doubtful, but obeys when you direct $him to get into bed<<if $PC.dick == 0>>, even after $he realizes you're wearing a strap-on<</if>>. You turn out the light and spoon $him from behind, kissing $his neck and ears, cupping $his swollen breasts, and running your hands across $his pregnant belly with its taut $activeSlave.skin skin. $He's awkward at first but $his body responds to the tenderness. Before long $he's humping $his pussy back and forth against <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You tell $him no, not there, and begin to gently work <<if $PC.dick == 1>>your dickhead<<else>>its tip<</if>> up $his tight but relaxed ass. $He's unsure of $himself, but you keep $him nice and relaxed. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him. + You introduce $him to obedience and proper manners regarding $his <<= WrittenMaster($activeSlave)>> before sending $him off for a physical. That night, $he's returned to your room, and finds you doing business on a tablet in bed. $He looks doubtful, but obeys when you direct $him to get into bed<<if $PC.dick == 0>>, even after $he realizes you're wearing a strap-on<</if>>. You turn out the light and spoon $him from behind, kissing $his neck and ears, cupping $his swollen breasts, and running your hands across $his pregnant belly with its taut $activeSlave.skin skin. $He's awkward at first but $his body responds to the tenderness. Before long $he's humping $his pussy back and forth against <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You tell $him no, not there, and begin to gently work <<if $PC.dick == 1>>your dickhead<<else>>its tip<</if>> up $his tight but relaxed ass. $He's unsure of $himself, but you keep $him nice and relaxed. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him. <</replace>> <<set $activeSlave.trust += 10>> <<set $activeSlave.anus = 1>> @@ -1402,7 +1402,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <br> <<link "Make sure $he knows pregnant women can still enjoy sex.">> <<replace "#introResult">> - You introduce $him to obedience and proper manners regarding $his <<if $PC.title == 1>>master<<else>>mistress<</if>> before sending $him off for a physical. That night, $he's returned to your room, and finds you doing business on a tablet in bed. $He looks doubtful, but obeys when you direct $him to get into bed<<if $PC.dick == 0>>, even after $he realizes you're wearing a strap-on<</if>>. You turn out the light and spoon $him from behind, kissing $his neck and ears, cupping $his swollen breasts, and running your hands across $his pregnant belly with its taut $activeSlave.skin skin. $He's awkward at first but $his body responds to the tenderness. Before long $he's humping $his pussy back and forth against <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You begin to gently work <<if $PC.dick == 1>>your dickhead<<else>>its tip<</if>> up $his used pussy. $He's unsure of $himself, but you keep $him nice and relaxed. After several minutes of gentle loving, $he's nothing but a satisfied puddle in your arms. $He believes that $he can @@.mediumaquamarine;trust@@ you won't harm $him or $his child. + You introduce $him to obedience and proper manners regarding $his <<= WrittenMaster($activeSlave)>> before sending $him off for a physical. That night, $he's returned to your room, and finds you doing business on a tablet in bed. $He looks doubtful, but obeys when you direct $him to get into bed<<if $PC.dick == 0>>, even after $he realizes you're wearing a strap-on<</if>>. You turn out the light and spoon $him from behind, kissing $his neck and ears, cupping $his swollen breasts, and running your hands across $his pregnant belly with its taut $activeSlave.skin skin. $He's awkward at first but $his body responds to the tenderness. Before long $he's humping $his pussy back and forth against <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You begin to gently work <<if $PC.dick == 1>>your dickhead<<else>>its tip<</if>> up $his used pussy. $He's unsure of $himself, but you keep $him nice and relaxed. After several minutes of gentle loving, $he's nothing but a satisfied puddle in your arms. $He believes that $he can @@.mediumaquamarine;trust@@ you won't harm $him or $his child. <</replace>> <<set $activeSlave.trust += 5>> <<= VaginalVCheck()>> @@ -1534,7 +1534,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</if>> $He tries to squirm away from the moist spot growing under $his cheek, but you reveal your nipple and carefully direct $his mouth over it. <<if $activeSlave.fetish == "pregnancy">> - Slowly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your <<if $PC.dick == 1>>growing erection and enthusiastically begins pumping away. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<<else>>wet pussy and enthusiastically begins rubbing your clit. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<</if>>. Before long you find yourself bucking your hips with lust, a queue for you to release $him from your nipple so $he may slide down your gravid dome of a belly to finish you off. Happy to serve $his pregnant <<if $PC.title == 1>>master<<else>>mistress<</if>>, $he returns to your chest, happy to relieve you of the pressure building in your neglected breast. <<if $activeSlave.fetishKnown == 0>>Judging by that show, @@.green;$he savors getting to be with a pregnant woman.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a pregnancy fetish and $his eagerness to serve a pregnant woman proves that.<</if>> A kick from within startles you from your thoughts; as you reach to soothe your child, you find your new slave @@.mediumaquamarine;already doting on it.@@ $He's already starting to @@.hotpink;show understanding of $his place.@@ + Slowly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your <<if $PC.dick == 1>>growing erection and enthusiastically begins pumping away. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<<else>>wet pussy and enthusiastically begins rubbing your clit. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<</if>>. Before long you find yourself bucking your hips with lust, a queue for you to release $him from your nipple so $he may slide down your gravid dome of a belly to finish you off. Happy to serve $his pregnant <<= WrittenMaster($activeSlave)>>, $he returns to your chest, happy to relieve you of the pressure building in your neglected breast. <<if $activeSlave.fetishKnown == 0>>Judging by that show, @@.green;$he savors getting to be with a pregnant woman.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a pregnancy fetish and $his eagerness to serve a pregnant woman proves that.<</if>> A kick from within startles you from your thoughts; as you reach to soothe your child, you find your new slave @@.mediumaquamarine;already doting on it.@@ $He's already starting to @@.hotpink;show understanding of $his place.@@ <<set $activeSlave.devotion += 15, $activeSlave.trust += 15>> <<elseif $activeSlave.fetish == "boobs">> Eagerly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your neglected breast. $He massages it, careful not to encourage your lactation too much, as $he greedily sucks you dry. $He wastes no time in swapping to your other nipple, shifting $his ministrations to the one the just left. By the time your reserves are tapped out, both you and $he are quite content. You permit $him to rest against your chest for a little before you send $him on $his way. <<if $activeSlave.fetishKnown == 0>>Judging by $his enthusiasm, @@.green;$he savors getting $his mouth close to a pair of boobs.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a breast fetishist and $his eagerness to lighten a lactating woman proves that.<</if>> A kick from within startles you from your thoughts; you pat your gravid middle, reassuring your child that you'll make sure to save some milk for them. $He's already starting to @@.hotpink;show understanding of $his place@@ and even @@.mediumaquamarine;beginning to build trust@@ with you. diff --git a/src/uncategorized/officeDescription.tw b/src/uncategorized/officeDescription.tw index a4b89600a7a927ae8e888094f314e63b44d4817a..0e13574fdb2799145b873160c412561085216bc6 100644 --- a/src/uncategorized/officeDescription.tw +++ b/src/uncategorized/officeDescription.tw @@ -3,12 +3,14 @@ You are at your desk in your penthouse office. It has a glass top interface from which you can rule over $arcologies[0].name; $assistantName's avatar is visible in one corner. <<include "Personal Assistant Appearance">> +<<setAssistantPronouns>> <<if $clubAdsSpending >= 5000>> A corner of your desk is piled with sample merchandise from the campaign promoting your club. <<set _eventSlaves = $slaves.filter(function(s) { return s.assignment == "serve in the club" && canWalk(s); })>> <<if _eventSlaves.length > 0>> <<set $activeSlave = _eventSlaves.random()>> + <<setLocalPronouns $activeSlave>> <<if random(1,2) == 1>> This includes a sex toy based on $activeSlave.slaveName's <<if (random(1,3) == 1) && ($activeSlave.vaginalSkill >= 100)>> @@ -19,13 +21,13 @@ <<if $activeSlave.anus > 3>>blown-out butthole<<elseif $activeSlave.anus > 2>>roomy anus<<elseif $activeSlave.anus > 1>>big butthole<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin backdoor<</if>>. <</if>> <<else>> - There is a figurine of $activeSlave.slaveName; she's depicted + There is a figurine of $activeSlave.slaveName; $he's depicted <<if (random(1,3) == 1) && ($activeSlave.vaginalSkill >= 100)>> - lying nude on her back, spreading her legs to <<if $activeSlave.vagina > 3>>exhibit her massive vagina<<elseif $activeSlave.vagina > 2>>show off her gaping cunt<<elseif $activeSlave.vagina > 1>>offer her hot cunt<<elseif $activeSlave.vagina > 0>>display her tight pussy<<else>>tantalize with her virgin pussy<</if>>. + lying nude on $his back, spreading $his legs to <<if $activeSlave.vagina > 3>>exhibit $his massive vagina<<elseif $activeSlave.vagina > 2>>show off $his gaping cunt<<elseif $activeSlave.vagina > 1>>offer $his hot cunt<<elseif $activeSlave.vagina > 0>>display $his tight pussy<<else>>tantalize with $his virgin pussy<</if>>. <<elseif (random(1,2) == 1) && ($activeSlave.oralSkill >= 100)>> - with her <<if $activeSlave.lips > 40>>huge<<elseif $activeSlave.lips > 20>>pillowlike<<elseif $activeSlave.lips > 10>>pretty<<else>>thin<</if>> lips parted, her tongue partway out. + with $his <<if $activeSlave.lips > 40>>huge<<elseif $activeSlave.lips > 20>>pillowlike<<elseif $activeSlave.lips > 10>>pretty<<else>>thin<</if>> lips parted, $his tongue partway out. <<else>> - bending at the waist and spreading her <<if $activeSlave.butt > 6>>gigantic buttocks<<elseif $activeSlave.butt > 4>>meaty asscheeks<<elseif $activeSlave.butt > 2>>healthy buttocks<<else>>cute butt<</if>> to show off her <<if $activeSlave.anus > 3>>blown-out butthole<<elseif $activeSlave.anus > 2>>roomy butthole<<elseif $activeSlave.anus > 1>>big butthole<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin backdoor<</if>>. + bending at the waist and spreading $his <<if $activeSlave.butt > 6>>gigantic buttocks<<elseif $activeSlave.butt > 4>>meaty asscheeks<<elseif $activeSlave.butt > 2>>healthy buttocks<<else>>cute butt<</if>> to show off $his <<if $activeSlave.anus > 3>>blown-out butthole<<elseif $activeSlave.anus > 2>>roomy butthole<<elseif $activeSlave.anus > 1>>big butthole<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin backdoor<</if>>. <</if>> <</if>> <</if>> @@ -39,6 +41,7 @@ <<set _eventSlaves = $slaves.filter(function(s) { return s.assignment == "work in the brothel" && canWalk(s); })>> <<if _eventSlaves.length > 0>> <<set $activeSlave = _eventSlaves.random()>> + <<setLocalPronouns $activeSlave>> <<if random(1,2) == 1>> This includes a sex toy based on $activeSlave.slaveName's <<if (random(1,3) == 1) && ($activeSlave.vaginalSkill >= 100)>> @@ -51,11 +54,11 @@ <<else>> This includes paired figurines of $activeSlave.slaveName with a faceless male figure; <<if (random(1,3) == 1) && ($activeSlave.vaginalSkill >= 100)>> - she's shamelessly riding his dick. + $he's shamelessly riding his dick. <<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. + $he's on $his knees with $his <<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>>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>>. + $he's shown <<if $activeSlave.anus > 3>>looking up teasingly as $he takes his dick up $his blown-out butthole<<elseif $activeSlave.anus > 2>>looking up teasingly as $he takes his dick up $his roomy anus<<elseif $activeSlave.anus > 1>>looking up teasingly as $he takes his dick in $his big butthole<<elseif $activeSlave.anus > 0>>gasping as $he takes his dick in $his tight asshole<<else>>screaming as he fucks $his virgin backdoor<</if>>. <</if>> <</if>> <</if>> @@ -69,110 +72,110 @@ Its plates bear scarring fairly won. <</if>> <<if $assistant > 0>> - The last time she had it maintained, $assistantName added + The last time _heA had it maintained, $assistantName added <<switch $assistantAppearance>> <<case "monstergirl">> - a pinup of herself to its plating: she's depicted with her fangs bared, each strand of her tentacle hair holding a lightning bolt, and both of her cocks ejaculating fire. + a pinup of _himselfA to its plating: _heA's depicted with _hisA fangs bared, each strand of _hisA tentacle hair holding a lightning bolt, and both of _hisA cocks ejaculating fire. <<case "shemale">> - a pinup of herself to its plating: she's depicted straddling a battle rifle so closely that it looks like she's intimately entangled in the action. + a pinup of _himselfA to its plating: _heA's depicted straddling a battle rifle so closely that it looks like _heA's intimately entangled in the action. <<case "amazon">> - a pinup of herself to its plating: she's depicted in a classic nude bodybuilder's pose, but with a cutely coquettish expression. + a pinup of _himselfA to its plating: _heA's depicted in a classic nude bodybuilder's pose, but with a cutely coquettish expression. <<case "businesswoman">> - a pinup of herself to its plating: she's depicted wearing underwear, for once, and looking very severe as she straddles a cruise missile in a classic bombshell pose. + a pinup of _himselfA to its plating: _heA's depicted wearing underwear, for once, and looking very severe as _heA straddles a cruise missile in a classic bombshell pose. <<case "fairy">> - a pinup of herself to its plating: she's depicted naked as usual, standing on top of a large bullet and making finger guns with a grin on her face. + a pinup of _himselfA to its plating: _heA's depicted naked as usual, standing on top of a large bullet and making finger guns with a grin on _hisA face. <<case "pregnant fairy">> - a pinup of herself to its plating: she's depicted naked as usual, straddling a large bullet and making peace signs with her tongue sticking out. + a pinup of _himselfA to its plating: _heA's depicted naked as usual, straddling a large bullet and making peace signs with _hisA tongue sticking out. <<case "goddess">> - a pinup of herself to its plating: she's depicted demurely but barely covering her radiant body with a flowing ribbon, like a goddess about to burst with triplets. + a pinup of _himselfA to its plating: _heA's depicted demurely but barely covering _hisA radiant body with a flowing ribbon, like a goddess about to burst with triplets. <<case "hypergoddess">> - a pinup of herself to its plating: she's depicted barely covering her hugely pregnant, radiant body with a flowing ribbon, like a goddess about to burst open from her hundreds of children. + a pinup of _himselfA to its plating: _heA's depicted barely covering _hisA hugely pregnant, radiant body with a flowing ribbon, like a goddess about to burst open from _hisA hundreds of children. <<case "loli">> - a pinup of herself to its plating: she's cutely hugging a rifle to her flat chest. + a pinup of _himselfA to its plating: _heA's cutely hugging a rifle to _hisA flat chest. <<case "preggololi">> - a pinup of herself to its plating: she's flashing her lewd preggo loli pussy. + a pinup of _himselfA to its plating: _heA's flashing _hisA lewd preggo loli pussy. <<case "angel">> - a pinup of herself to its plating: she's depicted wielding a flaming sword and golden shield. + a pinup of _himselfA to its plating: _heA's depicted wielding a flaming sword and golden shield. <<case "cherub">> - a pinup of herself to its plating: she's depicted hugging a bow to her chest. + a pinup of _himselfA to its plating: _heA's depicted hugging a bow to _hisA chest. <<case "incubus">> - a pinup of herself to its plating: she's depicted mid-orgasm, a bullet rocketing from her dick amidst a blast of cum. + a pinup of _himselfA to its plating: _heA's depicted mid-orgasm, a bullet rocketing from _hisA dick amidst a blast of cum. <<case "succubus">> - a pinup of herself to its plating: + a pinup of _himselfA to its plating: <<switch $assistantFSAppearance>> <<case "paternalist">> - she's depicted hiking her skirt to flash her crotch. + _heA's depicted hiking _hisA skirt to flash _hisA crotch. <<case "degradationist">> - she's depicted striking a pose showing off her countless piercings. + _heA's depicted striking a pose showing off _hisA countless piercings. <<case "roman revivalist">> - she's depicted in a stola, flashing her tits. + _heA's depicted in a stola, flashing _hisA tits. <<case "egyptian revivalist">> - she's depicted groping her perfect bronze breasts while blowing a kiss. + _heA's depicted groping _hisA perfect bronze breasts while blowing a kiss. <<case "edo revivalist">> - she's depicted in a kimono, pulled open to flash her lovely breasts. + _heA's depicted in a kimono, pulled open to flash _hisA lovely breasts. <<case "arabian revivalist">> - she's depicted wearing fine silks and striking a sexy pose, though they fail to cover anything on her. + _heA's depicted wearing fine silks and striking a sexy pose, though they fail to cover anything on _himA. <<case "chinese revivalist">> - she's depicted wearing colorful silk robes; she's pulled them open to flash her lovely body. + _heA's depicted wearing colorful silk robes; _heA's pulled them open to flash _hisA 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. + _heA'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. + _heA's depicted sitting with _hisA legs wide open and using _hisA fingers to spread _hisA $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. + _heA's depicted striking a sexy pose, chosen specifically to draw attention to the symbols of your religion that adorn _hisA nipples. <<case "repopulation focus">> - she's depicted striking a sexy pose made to draw the eye to her pregnant belly. + _heA's depicted striking a sexy pose made to draw the eye to _hisA pregnant belly. <<case "eugenics">> - she's depicted striking a sexy pose; she's so stunning you can't look away. + _heA's depicted striking a sexy pose; _heA's so stunning you can't look away. <<case "physical idealist">> - she's depicted flexing her <<if $arcologies[0].FSPhysicalIdealistStrongFat == 1>>fat veiled <</if>>tremendous musculature intimidatingly. + _heA's depicted flexing _hisA <<if $arcologies[0].FSPhysicalIdealistStrongFat == 1>>fat veiled <</if>>tremendous musculature intimidatingly. <<case "hedonistic decadence">> - she's depicted deep throating a banana while groping her large, soft belly. + _heA's depicted deep throating a banana while groping _hisA large, soft belly. <<case "gender radicalist">> - she's depicted facing away from you, looking over her shoulder suggestively and presenting + _heA's depicted facing away from you, looking over _hisA shoulder suggestively and presenting <<if $arcologies[0].FSGenderRadicalistLawFuta == 1>> - her rear. A pair of balls hangs beneath her tight pussy. + _hisA rear. A pair of balls hangs beneath _hisA tight pussy. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 2>> - her anus. A pair of heavy balls hangs from her crotch. + _hisA anus. A pair of heavy balls hangs from _hisA crotch. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 3>> - her gigantic ass. + _hisA gigantic ass. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 4>> - her anus. A tiny pair of balls hangs from her crotch. + _hisA anus. A tiny pair of balls hangs from _hisA crotch. <<else>> - her rear. + _hisA rear. <</if>> <<case "gender fundamentalist">> - she's depicted with one hand on her supple breast and the other tracing the curve of her child-bearing hips. + _heA's depicted with one hand on _hisA supple breast and the other tracing the curve of _hisA child-bearing hips. <<case "asset expansionist">> - she's depicted cradling her own pair of ballistics; her gigantic breasts are painted like atom bombs. + _heA's depicted cradling _hisA own pair of ballistics; _hisA gigantic breasts are painted like atom bombs. <<case "transformation fetishist">> - she's depicted striking a pose with one arm supporting her enormous implants. + _heA's depicted striking a pose with one arm supporting _hisA enormous implants. <<case "pastoralist">> - she's depicted striking a sexy pose, hands trying to relieve the pressure of her quartet of milk filled breasts. + _heA's depicted striking a sexy pose, hands trying to relieve the pressure of _hisA quartet of milk filled breasts. <<case "maturity preferentialist">> - she's depicted in a pose not unlike something you'd see on a 60's pinup calendar. + _heA's depicted in a pose not unlike something you'd see on a 60's pinup calendar. <<case "youth preferentialist">> - she's depicted in a pose fresh out of a popular idol's newest video. + _heA's depicted in a pose fresh out of a popular idol's newest video. <<case "slimness enthusiast">> - she's depicted striking a sexy pose while running her hands across her + _heA's depicted striking a sexy pose while running _hisA hands across _hisA <<if $arcologies[0].FSSlimnessEnthusiastLaw == 1>> flat chest. <<else>> slim assets. <</if>> <<case "body purist">> - she's depicted striking a sexy pose that shows off every flawless <<if $showInches == 2>>inch<<else>>centimeter<</if>> of her body. + _heA's depicted striking a sexy pose that shows off every flawless <<if $showInches == 2>>inch<<else>>centimeter<</if>> of _hisA body. <</switch>> <<case "imp">> - a pinup of herself to its plating: she's depicted straddling a trident; pussy juices running down its shaft. + a pinup of _himselfA to its plating: _heA's depicted straddling a trident; pussy juices running down its shaft. <<case "witch">> - a pinup of herself to its plating: she's depicted straddling a broom, winking. + a pinup of _himselfA to its plating: _heA's depicted straddling a broom, winking. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - a pinup of herself to its plating: you have no idea what to make of it. Whatever it is, it is devouring your enemies on one end and popping out proper slaves from the other. + a pinup of _himselfA to its plating: you have no idea what to make of it. Whatever it is, it is devouring your enemies on one end and popping out proper slaves from the other. <<case "schoolgirl">> - a pinup of herself to its plating: she's depicted up on tiptoe, back turned, with her schoolgirl skirt riding up to bare her bottom. + a pinup of _himselfA to its plating: _heA's depicted up on tiptoe, back turned, with _hisA schoolgirl skirt riding up to bare _hisA bottom. <<default>> - her own symbol to its insignia. + _hisA own symbol to its insignia. <</switch>> <</if>> <</if>> @@ -181,11 +184,11 @@ There's a display case behind your desk, <<if $trinkets.length > 2>> with <<for $i = 0; $i < $trinkets.length; $i++>> - <<if $i < $trinkets.length-1>> - $trinkets[$i], - <<else>> - and $trinkets[$i]. - <</if>> + <<if $i < $trinkets.length-1>> + $trinkets[$i], + <<else>> + and $trinkets[$i]. + <</if>> <</for>> <<elseif $trinkets.length > 1>> with a couple of items: $trinkets[0], and $trinkets[1]. diff --git a/src/uncategorized/pBioreactorPerfected.tw b/src/uncategorized/pBioreactorPerfected.tw index 5ce5bc221e1ee8793677e988a34d36ed494a5e41..6c4abd2a6f0b4fe66ce6b0dfdc710ff3c897ac53 100644 --- a/src/uncategorized/pBioreactorPerfected.tw +++ b/src/uncategorized/pBioreactorPerfected.tw @@ -9,6 +9,7 @@ <<else>> <<setLocalPronouns $activeSlave>> +<<setAssistantPronouns>> When you need peace and quiet to work through a difficult problem, you sometimes take a few minutes to pace through $dairyName. The massive, gently swaying breasts are always an encouraging sight, and the faint, rhythmic sounds of machine milking, machine feeding, and machine sodomy have a stimulating effect on one's thought processes. When you reach the end of the row of machines for the first time today, you turn to walk back again, and then notice that $assistantName's <<if $assistant == 0>> @@ -16,98 +17,98 @@ When you need peace and quiet to work through a difficult problem, you sometimes <<else>> <<switch $assistantAppearance>> <<case "monstergirl">> - monstergirl avatar is visible on a screen across the last cow in the row from you, waving cheerfully for your attention with one of her hands and a couple of her hair-tentacles. + monstergirl avatar is visible on a screen across the last cow in the row from you, waving cheerfully for your attention with one of _hisA hands and a couple of _hisA hair-tentacles. <<case "shemale">> - shemale avatar is visible on a screen across the last cow in the row from you, waving for your attention. (Her bouncy waving makes her ever-erect cock wave too.) + shemale avatar is visible on a screen across the last cow in the row from you, waving for your attention. (_HisA bouncy waving makes _hisA ever-erect cock wave too.) <<case "amazon">> amazon avatar is visible on a screen across the last cow in the row from you, jumping up and down for your attention. <<case "businesswoman">> - businesswoman avatar is visible on a screen across the last cow in the row from you, waving politely for your attention and pointing to a tablet in her hand. + businesswoman avatar is visible on a screen across the last cow in the row from you, waving politely for your attention and pointing to a tablet in _hisA hand. <<case "fairy">> - fairy avatar is visible on a screen across the last cow in the row from you, waving energetically and pointing to a tablet that she's sitting on. + fairy avatar is visible on a screen across the last cow in the row from you, waving energetically and pointing to a tablet that _heA's sitting on. <<case "pregnant fairy">> - pregnant fairy avatar is visible on a screen across the last cow in the row from you, waving energetically and pointing to a tablet that she's sitting on. + pregnant fairy avatar is visible on a screen across the last cow in the row from you, waving energetically and pointing to a tablet that _heA's sitting on. <<case "goddess">> - goddess avatar is visible on a screen across the last cow in the row from you, waving demurely for your attention and holding up one of her dribbling breasts. + goddess avatar is visible on a screen across the last cow in the row from you, waving demurely for your attention and holding up one of _hisA dribbling breasts. <<case "hypergoddess">> - goddess avatar is visible on a screen across the last cow in the row from you, she is aggressively milking herself trying to get your attention. + goddess avatar is visible on a screen across the last cow in the row from you; _heA is aggressively milking _himselfA trying to get your attention. <<case "loli">> child avatar is visible on a screen across the last cow in the row from you, jumping up and down for your attention. <<case "preggololi">> - child avatar is visible on a screen across the last cow in the row from you, waving her arms over her head. + child avatar is visible on a screen across the last cow in the row from you, waving _hisA arms over _hisA head. <<case "angel">> - angel avatar is visible on a screen across the last cow in the row from you, waving her arms and flapping her wings. + angel avatar is visible on a screen across the last cow in the row from you, waving _hisA arms and flapping _hisA wings. <<case "cherub">> - cherub avatar is visible on a screen across the last cow in the row from you, fluttering back and forth while waving her hands. + cherub avatar is visible on a screen across the last cow in the row from you, fluttering back and forth while waving _hisA hands. <<case "incubus">> - incubus avatar is visible on a screen across the last cow in the row from you, idly rubbing her dick with one hand and beckoning you with the other. + incubus avatar is visible on a screen across the last cow in the row from you, idly rubbing _hisA dick with one hand and beckoning you with the other. <<case "succubus">> - succubus avatar is visible on a screen across the last cow in the row from you; she is happily mooning you. + succubus avatar is visible on a screen across the last cow in the row from you; _heA is happily mooning you. <<case "imp">> - impish avatar is visible on a screen across the last cow in the row from you, flying back and forth while waving her hands. + impish avatar is visible on a screen across the last cow in the row from you, flying back and forth while waving _hisA hands. <<case "witch">> - witch avatar is visible on a screen across the last cow in the row from you, hopping up and down while waving her arms over her head. + witch avatar is visible on a screen across the last cow in the row from you, hopping up and down while waving _hisA arms over _hisA head. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - avatar is visible on a screen across the last cow in the row from you; it has produced countless flashing tubercles across its body. + avatar is visible on a screen across the last cow in the row from you; _heA has produced countless flashing tubercles across _hisA body. <<case "schoolgirl">> - schoolgirl avatar is visible on a screen across the last cow in the row from you, waving cutely for your attention and pointing to a tablet in her hand. + schoolgirl avatar is visible on a screen across the last cow in the row from you, waving cutely for your attention and pointing to a tablet in _hisA hand. <<default>> symbol is visible on a screen across the last cow in the row from you, spinning and glowing gently to get your attention. <</switch>> <</if>> <br><br> <<if $assistant == 0>> - <<if $PC.title == 1>>"Sir,"<<else>>"Madam,"<</if>> it says, "I have a matter for your attention, concerning this slave." + <<if $PC.title == 1>>"Sir,"<<else>>"Madam,"<</if>> _heA says, "I have a matter for your attention, concerning this slave." <<else>> - <<if $PC.title == 1>>"Sir,"<<else>>"Ma'am,"<</if>> she says, "I'd like to ask you something about this slave." + <<if $PC.title == 1>>"Sir,"<<else>>"Ma'am,"<</if>> _heA says, "I'd like to ask you something about this slave." <</if>> You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSlave.balls >= 10) && ($activeSlave.scrotum > 0)>>swollen balls<<elseif $activeSlave.vagina > -1>>slavering cunt<<else>>distended stomach<</if>> to $his dildo-filled anus. <<if $assistant == 0>> "This slave is permanently dependent on $his milking machine," it continues. "$He cannot be removed without uneconomical expenditures, and is unlikely to be useful elsewhere. - Additionally, there is nothing more that can be done to make $his breasts any bigger<<if $activeSlave.balls >= 10>> or $his testicles any more productive<<elseif $activeSlave.ovaries == 1>> or $his womb any more productive<</if>>. $His development is essentially final, and that status can be made official. She could be redesignated as equipment. Other than $his designation, this would make little difference: the machine would be slightly less cautious with $his drugs, future intubations, and such. She would be removed from the slave lists." + Additionally, there is nothing more that can be done to make $his breasts any bigger<<if $activeSlave.balls >= 10>> or $his testicles any more productive<<elseif $activeSlave.ovaries == 1>> or $his womb any more productive<</if>>. $His development is essentially final, and that status can be made official. $He could be redesignated as equipment. Other than $his designation, this would make little difference: the machine would be slightly less cautious with $his drugs, future intubations, and such. $He would be removed from the slave lists." <<else>> - "She's never leaving here, not without surgery. And even then, she's forgotten almost everything, and she won't be getting it back." + "$He's never leaving here, not without surgery. And even then, $he's forgotten almost everything, and $he won't be getting it back." <<switch $assistantAppearance>> <<case "monstergirl">> - The monstergirl positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. She looks meditative. + The monstergirl positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks meditative. <<case "shemale">> - The shemale positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. She looks uncharacteristically meditative. + The shemale positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks uncharacteristically meditative. <<case "amazon">> - The amazon positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. She looks meditative. + The amazon positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks meditative. <<case "businesswoman">> - The businesswoman positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. She looks meditative. + The businesswoman positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks meditative. <<case "fairy">> - The fairy positions herself on the screen to create an optical illusion that makes it look like she's standing on her shoulder and hugging her cheek. + The fairy positions _himselfA on the screen to create an optical illusion that makes it look like _heA's standing on her shoulder and hugging her cheek. <<case "pregnant fairy">> - The pregnant fairy positions herself on the screen to create an optical illusion that makes it look like she's standing on her shoulder and hugging her cheek. + The pregnant fairy positions _himselfA on the screen to create an optical illusion that makes it look like _heA's standing on her shoulder and hugging her cheek. <<case "goddess">> - The goddess positions herself on the screen to create an optical illusion that makes it look like she's gently caressing the slave's shoulders. She looks meditative. + The goddess positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently caressing the slave's shoulders. _HeA looks meditative. <<case "hypergoddess">> - The goddess positions herself on the screen to create an optical illusion that makes it look like she's gently caressing the slave's shoulders. She looks meditative. + The goddess positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently caressing the slave's shoulders. _HeA looks meditative. <<case "loli">> - The little girl positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. She looks meditative. + The little girl positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks meditative. <<case "preggololi">> - The little girl positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. She looks meditative. + The little girl positions _himselfA on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. _HeA looks meditative. <<case "angel">> - The angel positions herself on the screen to create an optical illusion that makes it look like she's gently caressing the slave. She looks meditative. + The angel positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently caressing the slave. _HeA looks meditative. <<case "cherub">> - The cherub positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders while hovering over them. She looks meditative. + The cherub positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders while hovering over them. _HeA looks meditative. <<case "incubus">> - The incubus positions herself on the screen to create an optical illusion that makes it look like she's gently groping the slave's rear. She looks uncharacteristically meditative. + The incubus positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently groping the slave's rear. _HeA looks uncharacteristically meditative. <<case "succubus">> - The succubus positions herself on the screen to create an optical illusion that makes it look like she's resting her breasts on the slave's head. She looks uncharacteristically meditative. + The succubus positions _himselfA on the screen to create an optical illusion that makes it look like _heA's resting her breasts on the slave's head. _HeA looks uncharacteristically meditative. <<case "imp">> - The imp positions herself on the screen to create an optical illusion that makes it look like she's gently rubbing the slave's shoulders while hovering over them. She looks uncharacteristically meditative. + The imp positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently rubbing the slave's shoulders while hovering over them. _HeA looks uncharacteristically meditative. <<case "witch">> - The witch positions herself on the screen to create an optical illusion that makes it look like she's gently caressing the slave's shoulders. She looks meditative. + The witch positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently caressing the slave's shoulders. _HeA looks meditative. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - It positions herself on the screen to create an optical illusion that makes it look like she's gently caressing the slave's breasts and groin with fleshy tentacles. She looks uncharacteristically meditative. + It positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently caressing the slave's breasts and groin with fleshy tentacles. _HeA looks uncharacteristically meditative. <<case "schoolgirl">> - The schoolgirl positions herself on the screen to create an optical illusion that makes it look like she's gently petting the slave's shoulders. She looks uncharacteristically meditative. + The schoolgirl positions _himselfA on the screen to create an optical illusion that makes it look like _heA's gently petting the slave's shoulders. _HeA looks uncharacteristically meditative. <<default>> The symbol on the screen dissolves down to create a gentle backlight behind the slave. <</switch>> - "$He's beautiful, isn't $he? Perfect. There's nothing more that can be done, to make $his udders any bigger<<if $activeSlave.balls >= 10>> or $his balls any more productive<<elseif $activeSlave.ovaries == 1>> or $his womb any more productive<</if>>. $He's complete, and $he's part of this machine now, and that's all $he'll ever be. I can make that status official, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. I'd redesignate $him as equipment. It wouldn't change much, other than a designation. I'd just be a little less cautious with $his drugs, future intubations, things like that. But for slave purposes, $he'd be gone. Just a part of $dairyName, forever. Or, until $he wears out in <<if $retirementAge-$activeSlave.physicalAge <= 3>>a few years<<elseif $retirementAge-$activeSlave.physicalAge == 10>>a decade or so<<elseif $retirementAge-$activeSlave.physicalAge >= 20>>a couple of decades<</if>>." + "$He's beautiful, isn't $he? Perfect. There's nothing more that can be done, to make $his udders any bigger<<if $activeSlave.balls >= 10>> or $his balls any more productive<<elseif $activeSlave.ovaries == 1>> or $his womb any more productive<</if>>. $He's complete, and $he's part of this machine now, and that's all $he'll ever be. I can make that status official, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. I'd redesignate $him as equipment. It wouldn't change much, other than a designation. I'd just be a little less cautious with $his drugs, future intubations, things like that. But for slave purposes, $he'd be gone. Just a part of $dairyName, forever. Or, until $he wears out in <<if $retirementAge-$activeSlave.physicalAge <= 3>>a few years<<elseif $retirementAge-$activeSlave.physicalAge <= 10>>a decade or so<<elseif $retirementAge-$activeSlave.physicalAge >= 20>>a couple of decades<</if>>." <</if>> <br><br> @@ -121,58 +122,58 @@ You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSl <<if $assistant > 0>> <<switch $assistantAppearance>> <<case "monstergirl">> - Her avatar watches the new equipment with almost motherly affection, her tentacle hair writhing obscurely. + _HisA avatar watches the new equipment with almost motherly affection, _hisA tentacle hair writhing obscurely. <<case "shemale">> - Her avatar sits down and produces a glass of milk. She drains it in one long chug, and then begins to jerk off. + _HisA avatar sits down and produces a glass of milk. _HeA drains it in one long chug, and then begins to jerk off. <<case "amazon">> - Her avatar sits down with a clatter of bone ornaments, produces a skin of milk, and takes a long pull. + _HisA avatar sits down with a clatter of bone ornaments, produces a skin of milk, and takes a long pull. <<case "businesswoman">> - Her avatar stands on the screen, watching the new equipment with an air of satisfaction. + _HisA avatar stands on the screen, watching the new equipment with an air of satisfaction. <<case "fairy">> - Her avatar hovers around, humming a tune while checking the new equipment. + _HisA avatar hovers around, humming a tune while checking the new equipment. <<case "pregnant fairy">> - Her avatar hovers around, humming a soft tune while checking the new equipment. + _HisA avatar hovers around, humming a soft tune while checking the new equipment. <<case "goddess">> - Her avatar sits down, kneading her milky tits in empathy, a hint of simulated jealousy in the way she watches the new equipment. + _HisA avatar sits down, kneading _hisA milky tits in empathy, a hint of simulated jealousy in the way _heA watches the new equipment. <<case "hypergoddess">> - Her avatar sits down, kneading her milky tits in empathy, a hint of simulated jealousy in the way she watches the new equipment. + _HisA avatar sits down, kneading _hisA milky tits in empathy, a hint of simulated jealousy in the way _heA watches the new equipment. <<case "loli">> - Her avatar sits down, rubbing her flat chest sadly as she watches the new equipment. + _HisA avatar sits down, rubbing _hisA flat chest sadly as _heA watches the new equipment. <<case "preggololi">> - Her avatar sits down, pinching her milky nipples in empathy, a hint of simulated jealousy in the way she watches the new equipment. + _HisA avatar sits down, pinching _hisA milky nipples in empathy, a hint of simulated jealousy in the way _heA watches the new equipment. <<case "angel">> - Her avatar blushes as she watches the new equipment. "She'll feed so many hungry mouths..." + _HisA avatar blushes as _heA watches the new equipment. "$He'll feed so many hungry mouths..." <<case "cherub">> - Her avatar blushes at the sight of the new equipment. She quickly buries her face in her palms at the perversion. + _HisA avatar blushes at the sight of the new equipment. _HeA quickly buries _hisA face in _hisA palms at the perversion. <<case "incubus">> - Her avatar starts jerking off to the sight of the new bioreactor. She throws you a smirk, "But you like MY milk best, don't you?" + _HisA avatar starts jerking off to the sight of the new bioreactor. _HeA throws you a smirk, "But you like MY milk best, don't you?" <<case "succubus">> - Her avatar rubs her breasts, steadily swelling them until a gush of milk escapes her nipples. "Mine will always be your favorite." + _HisA avatar rubs _hisA breasts, steadily swelling them until a gush of milk escapes _hisA nipples. "Mine will always be your favorite." <<case "imp">> - Her avatar licks her lips at the new equipment, longing to taste it. + _HisA avatar licks _hisA lips at the new equipment, longing to taste it. <<case "witch">> - Her avatar sits down and brings her hands to her breasts wondering if she could make them big and milky for you too. + _HisA avatar sits down and brings _hisA hands to _hisA breasts wondering if _heA could make them big and milky for you too. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - Her avatar's breasts steadily begin swelling, its belly following not long after. Once it is similar in size to the new equipment, a pair of tentacles extend from its back and clamp onto its nipples, eagerly suckling milk from its unnatural udders. + _HisA avatar's breasts steadily begin swelling, _hisA belly following not long after. Once it is similar in size to the new equipment, a pair of tentacles extend from _hisA back and clamp onto _hisA nipples, eagerly suckling milk from _hisA unnatural udders. <<case "schoolgirl">> - Her avatar sits down, watching the new equipment with an air of embarrassment. The schoolgirl blushes, and begins to masturbate. + _HisA avatar sits down, watching the new equipment with an air of embarrassment. The schoolgirl blushes, and begins to masturbate. <<default>> - Her avatar symbol returns to gentle spinning, doing so in synchrony with the undulations of the new equipment's breasts. + _HisA avatar symbol returns to gentle spinning, doing so in synchrony with the undulations of the new equipment's breasts. <</switch>> <</if>> "Future redesignations can always be disabled from $dairyName interface." <<if ($activeSlave.ovaries == 1)>> - <<if ($activeSlave.balls == 0)>> - <<set $bioreactorsXX += 1>> + <<if ($activeSlave.balls == 0)>> + <<set $bioreactorsXX += 1>> + <<else>> + <<set $bioreactorsHerm += 1>> + <</if>> <<else>> - <<set $bioreactorsHerm += 1>> - <</if>> - <<else>> - <<if ($activeSlave.balls == 0)>> - <<set $bioreactorsBarren += 1>> - <<else>> - <<set $bioreactorsXY += 1>> - <</if>> + <<if ($activeSlave.balls == 0)>> + <<set $bioreactorsBarren += 1>> + <<else>> + <<set $bioreactorsXY += 1>> + <</if>> <</if>> <<include "Remove activeSlave">> <<set $createBioreactors = 1>> @@ -180,7 +181,7 @@ You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSl <</link>> <br><<link "No, leave $him as $he is">> <<replace "#result">> - "Yes, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," your assistant confirms. "This option will remain accessible from $dairyName's control interface, if you reconsider." + "Yes, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>," your assistant confirms. "This option will remain accessible from $dairyName's control interface, if you reconsider." <</replace>> <</link>> </span> diff --git a/src/uncategorized/pBombing.tw b/src/uncategorized/pBombing.tw index d89dae96cc9d3ae86c93b0a5b00bbcac2b47b8e6..7e0bbeebe26165143488f0bc870206935270416b 100644 --- a/src/uncategorized/pBombing.tw +++ b/src/uncategorized/pBombing.tw @@ -79,4 +79,4 @@ The implant is small, and went off too far ahead to do anything more than stun. <<set $gameover = "bombing">><<goto "Gameover">> <</if>> -Hours later, you receive another message from the Daughters of Liberty. This one is even briefer than the first. "Next time, '<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>,'" it reads. +Hours later, you receive another message from the Daughters of Liberty. This one is even briefer than the first. "Next time, '<<= properMaster()>>,'" it reads. diff --git a/src/uncategorized/pCitizensAndCivilians.tw b/src/uncategorized/pCitizensAndCivilians.tw index 69a85be1fd71726072e8d720df319ccbcdc0f552..e1f45d648e659169b478f3992366296ceabf7fa7 100644 --- a/src/uncategorized/pCitizensAndCivilians.tw +++ b/src/uncategorized/pCitizensAndCivilians.tw @@ -5,46 +5,49 @@ <<else>> <<set _cost = 20000>> <</if>> +<<setAssistantPronouns>> <<set $nextButton = "Continue", $nextLink = "Random Nonindividual Event">> <<if $assistant > 0>> - While working at your desk, you are accompanied by the luscious sound of $assistantName humming to herself, which she does to indicate she's working on a difficult task. After this goes on for a while, + While working at your desk, you are accompanied by the luscious sound of $assistantName humming to herself, which _heA does to indicate _heA's working on a difficult task. After this goes on for a while, <<switch $assistantAppearance>> <<case "monstergirl">> - her monstergirl avatar uses its tentacle hair to wave for your attention + _hisA monstergirl avatar uses _hisA tentacle hair to wave for your attention <<case "shemale">> - her avatar helicopters its dick until she has your attention + _hisA avatar helicopters _hisA dick until _heA has your attention <<case "amazon">> - her avatar jumps up and down for your attention, hooting cheerfully, + _hisA avatar jumps up and down for your attention, hooting cheerfully, <<case "hypergoddess">> - her avatar leans onto her massive belly, allowing her tits to flop onto the ground to get your attention, + _hisA avatar leans onto _hisA massive belly, allowing _hisA tits to flop onto the ground to get your attention, <<case "loli">> - her avatar eagerly jumps up and down to get your attention + _hisA avatar eagerly jumps up and down to get your attention <<case "preggololi">> - her avatar eagerly waves her hands to get your attention + _hisA avatar eagerly waves _hisA hands to get your attention <<case "businesswoman">> - her avatar takes off its reading glasses, straightens its suit jacket, - <<case "fairy" "pregnant fairy" "cherub" "imp">> - her avatar flies up to your face and waves her arms + _hisA avatar takes off _hisA reading glasses, straightens _hisA suit jacket, + <<case "cherub" "fairy" "imp" "pregnant fairy">> + _hisA avatar flies up to your face and waves _hisA arms <<case "goddess">> - her avatar hefts up her gravid body, glowing brighter than usual to get your attention, + _hisA avatar hefts up _hisA gravid body, glowing brighter than usual to get your attention, <<case "schoolgirl">> - her schoolgirl avatar bounces up and down for your attention + _hisA schoolgirl avatar bounces up and down for your attention <<case "angel">> - her avatar flaps its wings to grab your attention + _hisA avatar flaps _hisA wings to grab your attention <<case "incubus">> - her avatar blows a huge load of cum to get your attention + _hisA avatar blows a huge load of cum to get your attention <<case "succubus">> - her avatar lets loose a huge moan to get your attention + _hisA avatar lets loose a huge moan to get your attention <<case "witch">> - her avatar summons a number of explosions, searing perfectly placed holes on her robe, to get your attention + _hisA avatar summons a number of explosions, searing perfectly placed holes on _hisA robe, to get your attention <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - her avatar explodes into a twisted being of flesh and blood, reforms into its usual shape, + _hisA avatar explodes into a twisted being of flesh and blood, reforms into _hisA usual shape, <<default>> - her symbol glows to get your attention + _hisA symbol glows to get your attention <</switch>> - and says, "<<= properTitle()>>, I have a suggestion. At your request I have been reviewing historical slave societies for parallels with our current situation. I calculate it would be very advantageous to bind your mercenaries more closely to the arcology. It would be expensive, but if they were all given slaves, better weapons, and some sort of title, they would defend this place to the death."<<else>><<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> catches your attention as you work at your desk. It says, "<<= properTitle()>>, a suggestion. Review of historical slave societies for parallels with your current situation is complete. Analysis indicates it would be advantageous to increase the loyalty of your mercenaries. It would be expensive, but if they were given slaves, better weapons, and an honorary title, they would defend the arcology with increased effectiveness." + and says, "<<= properTitle()>>, I have a suggestion. At your request I have been reviewing historical slave societies for parallels with our current situation. I calculate it would be very advantageous to bind your mercenaries more closely to the arcology. It would be expensive, but if they were all given slaves, better weapons, and some sort of title, they would defend this place to the death." +<<else>> + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> catches your attention as you work at your desk. _HeA says, "<<= properTitle()>>, a suggestion. Review of historical slave societies for parallels with your current situation is complete. Analysis indicates it would be advantageous to increase the loyalty of your mercenaries. It would be expensive, but if they were given slaves, better weapons, and an honorary title, they would defend the arcology with increased effectiveness." <</if>> <br><br> diff --git a/src/uncategorized/pCollaborationChoice.tw b/src/uncategorized/pCollaborationChoice.tw index 0d79f197c051bb7ebcf3e7e9b9dfa1641dc86b7b..9619494daba13c5eacfa4f6f846ec76a273abc08 100644 --- a/src/uncategorized/pCollaborationChoice.tw +++ b/src/uncategorized/pCollaborationChoice.tw @@ -10,7 +10,7 @@ Your next communication from the Daughters of Liberty is a request for a live vi <br><br> -"Hello, <<Master>>," $he says simply. "It's happening soon. The Daughters a<<s>>ked me to call you to ask you for your help. All they need i<<s the a<<cc>>e<<ss>> code<<s>> to your <<s>>ecurity <<s>>ystem<<s>>. They'll let you live, <<Master>>, they'll even let you take your money. But the arcology and the slaves, those will have to go free." $He hesitates a little. "<<Master>> I like being free. But I don't want to see you killed. Please, please agree." +"Hello, <<Master>>," $he says simply. "It'<<s>> happening soon. The Daughter<<s>> have a<<s>>ked me to call you to a<<s>>k you for your help. All they need i<<s>> the a<<cc>>e<<ss>> code<<s>> to your <<s>>ecurity <<s>>y<<s>>tem<<s>>. They'll let you live, <<Master>>, they'll even let you take your money. But the arcology and the <<s>>lave<<s>>, those will have to go free." $He hesitates a little. "<<Master>> I like being free. But I don't want to see you killed. Please, please agree." <br><br> diff --git a/src/uncategorized/pHackerSupport.tw b/src/uncategorized/pHackerSupport.tw index cbfa04c1862a95222ad47577c4e2429ef0da015f..eb6c42b3b45e2197ed1f0d06aa6447bdd051af6d 100644 --- a/src/uncategorized/pHackerSupport.tw +++ b/src/uncategorized/pHackerSupport.tw @@ -2,13 +2,15 @@ <<set $nextButton = "End Call", $nextLink = "Random Nonindividual Event", $hackerSupport = 0>> +<<setAssistantPronouns>> + While you are reviewing your information security posture in light of the Daughters of Liberty and their apparent ability to get into your systems, you receive yet another well-secured message unannounced. To your surprise, it isn't the Daughters. It's a video call from a rather interesting individual. She is quite pretty, and has a variety of facial tattoos and piercings; her face is androgynous enough that you aren't entirely sure what gender (probably) she considers herself. Her pale skin is illuminated by the diffuse glow from what's clearly a huge bank of monitors, and the clacking sound of a traditional mechanical keyboard can be heard over the line. <br><br> -"Hi!" she says cheerfully. "I seen you been contacted by these Daughters cunts. They been after me too. They're pretty decent at cyberwarfare, but I'm fuckin' better." A momentary discomfort crosses her face, and she shifts a little in her seat. "They're building up for somethin' big. Wouldn'ta contacted you at all, let us both fight our own fights, but I gotta short fuse on this vulnerability and I need to bribe a weak link. Your money can get me in; my skills can fuck 'em up. What do you say?" +"Hi!" she says cheerfully. "I seen you been contacted by these Daughters cunts. They been after me too. They're pretty decent at cyberwarfare, but I'm fuckin' better." A momentary discomfort crosses her face, and she shifts a little in her seat. "They're building up for somethin' big. Wouldn't a' contacted you at all, let us both fight our own fights, but I gotta short fuse on this vulnerability and I need to bribe a weak link. Your money can get me in; my skills can fuck 'em up. What do you say?" <<if $assistant > 0>> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> has been trying to track the contact, but fails horribly. The hacker glances at her + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> has been trying to track the contact, but fails horribly. The hacker glances at _hisA <<switch $assistantAppearance>> <<case "monstergirl">> frustrated little monstergirl avatar @@ -70,70 +72,70 @@ As she finishes speaking, another spasm distorts her expression, and then she su <<if $assistant > 0>> <<switch $assistantAppearance>> <<case "monstergirl">> - She seems to have left a present for your poor personal assistant; her little monstergirl avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, babbling and orgasming continuously. + She seems to have left a present for your poor personal assistant; _hisA little monstergirl avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, babbling and orgasming continuously. <<case "shemale">> - She seems to have left a present for your poor personal assistant; her little shemale avatar is visible in the bottom corner of a screen on the wall opposite you. She's being assraped by a representation of the hacker in the same style, and is helplessly masturbating as she gets fucked. + She seems to have left a present for your poor personal assistant; _hisA little shemale avatar is visible in the bottom corner of a screen on the wall opposite you. _HeA's being assraped by a representation of the hacker in the same style, and is helplessly masturbating as _heA gets fucked. <<case "amazon">> - She seems to have left a present for your poor personal assistant; her little amazon avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, babbling and squirting continuously. + She seems to have left a present for your poor personal assistant; _hisA little amazon avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, babbling and squirting continuously. <<case "businesswoman">> - She seems to have left a present for your poor personal assistant; her little businesswoman avatar is visible in the bottom corner of a screen on the wall opposite you, and seems to be under a compulsion to strip out of her suit. She's blushing furiously at her inability to control herself. + She seems to have left a present for your poor personal assistant; _hisA little businesswoman avatar is visible in the bottom corner of a screen on the wall opposite you, and seems to be under a compulsion to strip out of _hisA suit. _HeA's blushing furiously at _hisA inability to control _himselfA. <<case "fairy">> - She seems to have left a present for your poor personal assistant; her little fairy avatar is visible in the bottom corner of a screen on the wall opposite you, and is grinding against the stamen of a virtual flower. She repeatedly moans your name as her body twitches and jerks against the plant. + She seems to have left a present for your poor personal assistant; _hisA little fairy avatar is visible in the bottom corner of a screen on the wall opposite you, and is grinding against the stamen of a virtual flower. _HeA repeatedly moans your name as _hisA body twitches and jerks against the plant. <<case "pregnant fairy">> - She seems to have left a present for your poor personal assistant; her little fairy avatar is visible in the bottom corner of a screen on the wall opposite you, and is currently perched upon a virtual flower with the stamen buried in her little ass. Milk leaks from her breasts down her swollen belly as she writhes in both pain and pleasure, slowly giving birth to a pair of fairies. + She seems to have left a present for your poor personal assistant; _hisA little fairy avatar is visible in the bottom corner of a screen on the wall opposite you, and is currently perched upon a virtual flower with the stamen buried in _hisA little ass. Milk leaks from _hisA breasts down _hisA swollen belly as _heA writhes in both pain and pleasure, slowly giving birth to a pair of fairies. <<case "goddess">> - She seems to have left a present for your poor personal assistant; her little goddess avatar is visible in the bottom corner of a screen on the wall opposite you. She's being face-fucked by a representation of the hacker in the same style, meekly struggling, but flushed with arousal. + She seems to have left a present for your poor personal assistant; _hisA little goddess avatar is visible in the bottom corner of a screen on the wall opposite you. _HeA's being face-fucked by a representation of the hacker in the same style, meekly struggling, but flushed with arousal. <<case "hypergoddess">> - She seems to have left a present for your poor personal assistant; her "little" goddess avatar is visible in the bottom corner of a screen on the wall opposite you. She's being ass-fucked by a representation of the hacker in the same style, while her large breasts are roughly milked. Every few thrusts coincide with another baby slipping out alongside an orgasm. + She seems to have left a present for your poor personal assistant; _hisA "little" goddess avatar is visible in the bottom corner of a screen on the wall opposite you. _HeA's being ass-fucked by a representation of the hacker in the same style, while _hisA large breasts are roughly milked. Every few thrusts coincide with another baby slipping out alongside an orgasm. <<case "loli">> - She seems to have left a present for your poor personal assistant; her little girl avatar is visible in the bottom corner of a screen on the wall opposite you. + She seems to have left a present for your poor personal assistant; _hisA little girl avatar is visible in the bottom corner of a screen on the wall opposite you. <<if $seePreg != 0>> - Her virginity is being forcibly taken by a representation of the hacker in the same style. She cries out as she cums in her fertile womb; again and again the hacker uploads her virus into her abused pussy until her sagging bloated belly is touching the floor. She leaves the avatar drooling cum to rest on her new pregnancy. She may need to be reset after this experience. + _HisA virginity is being forcibly taken by a representation of the hacker in the same style. _HeA cries out as she cums in _hisA fertile womb; again and again the hacker uploads her virus into _hisA abused pussy until _hisA sagging bloated belly is touching the floor. _HeA leaves the avatar drooling cum to rest on _hisA new pregnancy. _HeA may need to be reset after this experience. <<set $assistantAppearance = "preggololi">> <<else>> - She's writhing on the floor in tears as a series of hands tickles her body. They shift their focus to her nipples and pussy as she begins moaning with lust. As she twitches and jerks before the mounting orgasm, they vanish, leaving her writhing in sexual frustration before you. Before your eyes, her hands shoot to her crotch and she climaxes lewdly in front of you. + _HeA's writhing on the floor in tears as a series of hands tickles _hisA body. They shift their focus to _hisA nipples and pussy as _heA begins moaning with lust. As _heA twitches and jerks before the mounting orgasm, they vanish, leaving _himA writhing in sexual frustration before you. Before your eyes, _hisA hands shoot to _hisA crotch and _heA climaxes lewdly in front of you. <</if>> <<case "preggololi">> - She seems to have left a present for your poor personal assistant; her little girl avatar is visible in the bottom corner of a screen on the wall opposite you. Her vagina is being forcibly fucked by a representation of the hacker in the same style. Each thrust causes her to rock atop her bulging pregnancy until the hacker unloads into her. She leaves the avatar drooling cum to rest on her overfilled belly. + She seems to have left a present for your poor personal assistant; _hisA little girl avatar is visible in the bottom corner of a screen on the wall opposite you. _HisA vagina is being forcibly fucked by a representation of the hacker in the same style. Each thrust causes _himA to rock atop _hisA bulging pregnancy until the hacker unloads into _himA. She leaves the avatar drooling cum to rest on _hisA overfilled belly. <<case "schoolgirl">> - She seems to have left a present for your poor personal assistant; her little schoolgirl avatar is visible in the bottom corner of a screen on the wall opposite you, and is blushing furiously as she compulsively fists herself. + She seems to have left a present for your poor personal assistant; _hisA little schoolgirl avatar is visible in the bottom corner of a screen on the wall opposite you, and is blushing furiously as _heA compulsively fists _himselfA. <<case "angel">> - She seems to have left a present for your poor personal assistant; her little angel avatar is visible in the bottom corner of a screen on the wall opposite you. Her virginity is being forcibly taken by a representation of the hacker in the same style. She pleads for them to stop before she falls, but it goes unheeded. She cries out in orgasm as the hacker unloads their corrupting jism deep into her womb before pulling out and letting her drop to the ground. She rolls from side to side in anguish, + She seems to have left a present for your poor personal assistant; _hisA little angel avatar is visible in the bottom corner of a screen on the wall opposite you. _HisA virginity is being forcibly taken by a representation of the hacker in the same style. _HeA pleads for them to stop before _heA falls, but it goes unheeded. _HeA cries out in orgasm as the hacker unloads their corrupting jism deep into _hisA womb before pulling out and letting _himA drop to the ground. _HeA rolls from side to side in anguish, <<if $seePreg != 0>> - gripping her cum filled belly as it rounds more and more, before settling on her back and cradling her now full-term pregnancy. As it continues to grow, her body becomes increasingly withered, until she appears to be pregnant with a fully grown person. + gripping _hisA cum filled belly as it rounds more and more, before settling on _hisA back and cradling _hisA now full-term pregnancy. As it continues to grow, _hisA body becomes increasingly withered, until _heA appears to be pregnant with a fully grown person. <<if $seeExtreme == 1>> - As the light fades from her, her gravid belly begins to shudder violently, its occupant trying to tear its way free. Before long, it splits open, revealing a gorgeous woman with all the features of the fallen angel. $assistantName spreads her bat-like wings as she rises from the disintegrating remains of her once holy body, turns to you, and sensually traces her new curves seductively. + As the light fades from _himA, _hisA gravid belly begins to shudder violently, its occupant trying to tear its way free. Before long, it splits open, revealing a gorgeous woman with all the features of the fallen angel. $assistantName spreads _hisA bat-like wings as _heA rises from the disintegrating remains of _hisA once holy body, turns to you, and sensually traces _hisA new curves seductively. <<else>> - As the light fades from her, her gravid belly begins to shudder violently, its occupant trying to find its way out. A pair of arms burst forth from her ruined pussy, followed a perfectly endowed woman with all the features of the former angel. $assistantName rises and spreads her bat-like wings as the remains of her once holy body turn to dust behind her. She turns to you, sensually tracing the contours of her new body, and blows you a kiss. + As the light fades from _himA, _hisA gravid belly begins to shudder violently, its occupant trying to find its way out. A pair of arms burst forth from _hisA ruined pussy, followed a perfectly endowed woman with all the features of the former angel. $assistantName rises and spreads _hisA bat-like wings as the remains of _hisA once holy body turn to dust behind _himA. _HeA turns to you, sensually tracing the contours of _hisA new body, and blows you a kiss. <</if>> <<else>> - alternating between groping her swelling breasts and fingering her aching pussy, before screaming with climax as her body twists into a more suiting form. $assistantName rises to her feet, spreads her bat-like wings, and sensually traces her new curves before bending over revealing her sopping wet cunt. "All for you, <<print $PC.name>>, you know you want it." + alternating between groping _hisA swelling breasts and fingering _hisA aching pussy, before screaming with climax as _hisA body twists into a more suiting form. $assistantName rises to _hisA feet, spreads _hisA bat-like wings, and sensually traces _hisA new curves before bending over revealing _hisA sopping wet cunt. "All for you, <<print $PC.name>>, you know you want it." <</if>> <<set $assistantAppearance = "succubus">> <<case "cherub">> - She seems to have left a present for your poor personal assistant; her little cherub avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, both hands on her pussy and masturbating furiously. + She seems to have left a present for your poor personal assistant; _hisA little cherub avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, both hands on _hisA pussy and masturbating furiously. <<case "incubus">> - She seems to have left a present for your poor personal assistant; her little incubus avatar is visible in the bottom corner of a screen on the wall opposite you, its dick steadily growing longer and prehensile. As she gasps in shock, it rockets into her mouth and down her throat. It delves deeper into the struggling demon, her intestines bulging under her skin as her dick snakes through her, until it pops out the other end. It begins pistoning in and out of her body, literally forcing her to fuck herself until she cums, causing it to rapidly retract back through her body. She collapses to the floor, coughing up cum and struggling to catch her breath. + She seems to have left a present for your poor personal assistant; _hisA little incubus avatar is visible in the bottom corner of a screen on the wall opposite you, _hisA dick steadily growing longer and prehensile. As _heA gasps in shock, it rockets into _hisA mouth and down _hisA throat. It delves deeper into the struggling demon, _hisA intestines bulging under _hisA skin as _hisA dick snakes through _himA, until it pops out the other end. It begins pistoning in and out of _hisA body, literally forcing _himA to fuck _himselfA until _heA cums, causing it to rapidly retract back through _hisA body. _HeA collapses to the floor, coughing up cum and struggling to catch _hisA breath. <<case "succubus">> - She seems to have left a present for your poor personal assistant; her little succubus avatar is visible in the bottom corner of a screen on the wall opposite you. She has adjusted her form to better suit her lover; a representation of the hacker in the same style. She calls out a silent name, something you'll never know, as they come deep into her pussy. They shift positions, $assistantName standing, legs spread, with her arms against the edge of the screen as the hacker fucks her rear. + She seems to have left a present for your poor personal assistant; _hisA little succubus avatar is visible in the bottom corner of a screen on the wall opposite you. _HeA has adjusted _hisA form to better suit _hisA lover: a representation of the hacker in the same style. _HeA calls out a silent name, something you'll never know, as she comes deep into _hisA pussy. They shift positions, $assistantName standing, legs spread, with _hisA arms against the edge of the screen as the hacker fucks _hisA rear. <<if $seePreg != 0>> - As she bucks against him, it is obvious that her belly has rounded significantly; swaying slightly with every thrust. Cumming again, the hacker pulls her leg up over their shoulder and begins thrusting anew, her middle heavily rounded with child now, quickly bring both to orgasm. She is left to slide down the edge of the screen and upon reaching the bottom, spreads her legs and begins laboring on her new child. Each imp that passes through her netherlips brings another orgasm and muffled shout of the hacker's name. Once the last hacker imp leaves her womb, she + As _heA bucks against her, it is obvious that _hisA belly has rounded significantly; swaying slightly with every thrust. Cumming again, the hacker pulls _hisA leg up over their shoulder and begins thrusting anew, _hisA middle heavily rounded with child now, quickly bring both to orgasm. _HeA is left to slide down the edge of the screen and upon reaching the bottom, spreads _hisA legs and begins laboring on _hisA new child. Each imp that passes through _hisA netherlips brings another orgasm and muffled shout of the hacker's name. Once the last hacker imp leaves _hisA womb, _heA <<else>> - Position after position, orgasm after orgasm, you are forced to watch. Once the hacker is satisfied, she is left to slide down the edge of the screen and upon reaching the bottom, + Position after position, orgasm after orgasm, you are forced to watch. Once the hacker is satisfied, _heA is left to slide down the edge of the screen, and, upon reaching the bottom, <</if>> - reaches down, gathers a trace of cum, and licks it off her finger while staring you down, stating "$PC.name will never be as good as..." before passing out. + reaches down, gathers a trace of cum, and licks it off _hisA finger while staring you down, stating "$PC.name will never be as good as..." before passing out. <<case "imp">> - She seems to have left a present for your poor personal assistant; her little impish avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, vigorously fisting her pussy. + She seems to have left a present for your poor personal assistant; _hisA little impish avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing around, vigorously fisting _hisA pussy. <<case "witch">> - She seems to have left a present for your poor personal assistant; her little witch avatar is visible in the bottom corner of a screen on the wall opposite you being assaulted by tentacles. They've already managed to rip her robes off and are currently forcing themselves into all her holes. Only once every orifice has two to three tentacles crammed into it does the beast start fucking her. Before long, + She seems to have left a present for your poor personal assistant; _hisA little witch avatar is visible in the bottom corner of a screen on the wall opposite you being assaulted by tentacles. They've already managed to rip _hisA robes off and are currently forcing themselves into all _hisA holes. Only once every orifice has two to three tentacles crammed into it does the beast start fucking _himA. Before long, <<if $seePreg != 0>> - half the tentacles are pumping the poor girl full of cum while the rest fill her with eggs; she struggles valiantly at first, but as her middle grows larger and heavier, she is forced to accept her fate. When the tentacles feel they can fit no more eggs into her, they pull her into a sitting position and spread her legs wide; just in time for the first hatched larva to begin squeezing its way from her packed womb. Moments later, another plops from her rear, and yet another squirms up her throat and out her mouth, flopping wetly onto her chest. With each path cleared, the rest of the larvae begin to pour from her body. + half the tentacles are pumping the poor _girlA full of cum while the rest fill _himA with eggs; _heA struggles valiantly at first, but as _hisA middle grows larger and heavier, _heA is forced to accept _hisA fate. When the tentacles feel they can fit no more eggs into _himA, they pull _himA into a sitting position and spread _hisA legs wide; just in time for the first hatched larva to begin squeezing its way from _hisA packed womb. Moments later, another plops from _hisA rear, and yet another squirms up _hisA throat and out _hisA mouth, flopping wetly onto _hisA chest. With each path cleared, the rest of the larvae begin to pour from _hisA body. <<else>> - the tentacles begin pumping the poor girl full of cum; she struggles valiantly at first, but as her middle grows larger and heavier, she is forced to accept her fate. As they vacate her body, a large surge of fluid follows. + the tentacles begin pumping the poor _girlA full of cum; _heA struggles valiantly at first, but as _hisA middle grows larger and heavier, _heA is forced to accept _hisA fate. As they vacate _hisA body, a large surge of fluid follows. <</if>> - Given the size of her belly, it may be awhile before she is done. + Given the size of _hisA belly, it may be awhile before _heA is done. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - She seems to have left a present for your poor personal assistant; her little bugged avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing disturbingly. Its arms twist into a pair of extremely phallic tentacles, which it uses to forcefully fuck its ass and pussy. + She seems to have left a present for your poor personal assistant; _hisA little bugged avatar is visible in the bottom corner of a screen on the wall opposite you, and is writhing disturbingly. _HisA arms twist into a pair of extremely phallic tentacles, which it uses to forcefully fuck _hisA ass and pussy. <</switch>> <</if>> <<set $cash -= 10000>> diff --git a/src/uncategorized/pInvasion.tw b/src/uncategorized/pInvasion.tw index e3ae44b843b0d9517f0e1ccad70385cc55444c1b..266d241b7be4ad37a319e54393413f27c515e59a 100644 --- a/src/uncategorized/pInvasion.tw +++ b/src/uncategorized/pInvasion.tw @@ -3,6 +3,7 @@ <<set $nextButton = "Continue", $nextLink = "Random Nonindividual Event">> <<set $invasionVictory = 1, $peacekeepers = 0>> +<<setAssistantPronouns>> The day that wasn't supposed to come is here. The troubled little country next door is falling apart. Last month, its stock market collapsed. Last week, its government fell. Yesterday, there was open looting in its cities. And today, a faction of disaffected citizens that blames the Free Cities for siphoning off business and causing the collapse seized weapons from unguarded army depots<<if ($terrain == "marine") || ($terrain == "oceanic")>>, armed merchant ships and private vessels, and are approaching the Free City over the water<<else>> and advanced towards your home<</if>>. diff --git a/src/uncategorized/pPeacekeepersInfluence.tw b/src/uncategorized/pPeacekeepersInfluence.tw index 36001e1c241650681d3ba58b6d1d6e169cdeb204..be01ad013560cdd5796f188779b81c32d28384bb 100644 --- a/src/uncategorized/pPeacekeepersInfluence.tw +++ b/src/uncategorized/pPeacekeepersInfluence.tw @@ -3,6 +3,7 @@ <<set $nextButton = "Continue", $nextLink = "Random Nonindividual Event">> <<set $peacekeepers.influenceAnnounced = 1>> +<<setAssistantPronouns>> General $peacekeepers.generalName has successfully declared his independence from his mother country. That nation recruited, trained, and commanded him and all his men and women, but then it sent him to keep the peace in a war-torn region, failed to give him the support he needed, and then tried to withdraw him when the costs of what support they were willing to send overtopped what weak political will the old world still has. In truth, it was only a half-step from peacekeeping force to government, for General $peacekeepers.generalName and his troops. They were already the only source of public order in that area. @@ -93,7 +94,7 @@ As you review intelligence from the area at your desk, <<case "loli">> just wrestling and dancing," her innocence shining through her explanation. <<case "preggololi">> - just the guys enjoying some fresh young girls," she says with a hint of jealousy. + just the guys enjoying some fresh young girls," _heA says with a hint of jealousy. <<case "angel">> just the strong taking what they want without consideration," she sighs, sounding disapproving of something so uncivilized. <<case "cherub">> diff --git a/src/uncategorized/pSnatchAndGrab.tw b/src/uncategorized/pSnatchAndGrab.tw index 3c2f91c53a9c97b198a6fec039d620162b0d2640..b90b97d311563097393c19b8623bddf656a60bd5 100644 --- a/src/uncategorized/pSnatchAndGrab.tw +++ b/src/uncategorized/pSnatchAndGrab.tw @@ -4,6 +4,7 @@ <<set $nextLink = "Random Nonindividual Event">> <<set $PSnatch = 0>> +<<setAssistantPronouns>> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> forwards a discreet message from the leader of your mercenaries. <br><br> diff --git a/src/uncategorized/pSnatchAndGrabResult.tw b/src/uncategorized/pSnatchAndGrabResult.tw index 922509ec8b4891a83ed124bae49d905189a70781..7516c2dc9e4168ef28efd00227848c198445b851 100644 --- a/src/uncategorized/pSnatchAndGrabResult.tw +++ b/src/uncategorized/pSnatchAndGrabResult.tw @@ -127,12 +127,13 @@ <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> +<<setLocalPronouns $activeSlave>> In the middle of the night, there is a polite knock on your penthouse door. You are alerted by $assistantName, who observes with some irritation that the mercenary who knocked has gone, has left a large case outside the door, and has satisfied the security systems that the case contains nothing hazardous. -The case prompts you for a handprint code; your hand works just fine. It contains a naked, hairless, perfectly healthy young body in the fetal position. This person awakes as the case opens, looks you confidently in the eye, and says "Are you my <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>?" +The case prompts you for a handprint code; your hand works just fine. It contains a naked, hairless, perfectly healthy young body in the fetal position. This person awakes as the case opens, looks you confidently in the eye, and says "Are you my <<if $PC.title != 0>>Master<<else>>Mistress<</if>>?" -When you state that, apparently, you are, she climbs out of the case, prostrates herself in the hall before you, and says reverentially into the floor, "I love you, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>." +When you state that, apparently, you are, $he climbs out of the case, prostrates $himself in the hall before you, and says reverentially into the floor, "I love you, <<if $PC.title != 0>>Master<<else>>Mistress<</if>>." <br><br> <<set $saleDescription = 0, $applyLaw = 0>><<include "Long Slave Description">> diff --git a/src/uncategorized/pUndergroundRailroad.tw b/src/uncategorized/pUndergroundRailroad.tw index c843c1aec773588c0538e0719e121dc00e488c01..158b77bfdafc147617981308da82deecb08fdde3 100644 --- a/src/uncategorized/pUndergroundRailroad.tw +++ b/src/uncategorized/pUndergroundRailroad.tw @@ -2,9 +2,9 @@ <<set $nextButton = " ", $nextLink = "Random Nonindividual Event">> /* hide button until user makes a selection */ -<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indunture == -1 && canWalk(s) && canTalk(s) && ["whore", "serve the public", "serve in the club", "work in the brothel"].includes(s.assignment); })>> +<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canWalk(s) && canTalk(s) && ["whore", "serve the public", "serve in the club", "work in the brothel"].includes(s.assignment); })>> <<if (ndef $activeSlave)>> /* search again without assignments limitation */ - <<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indunture == -1 && canTalk(s); })>> + <<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canTalk(s); })>> <<if (ndef $activeSlave)>> /* we will find one */ <<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 20 && canTalk(s); })>> <<if (ndef $activeSlave)>> /* still no match */ @@ -12,47 +12,48 @@ <</if>> <</if>> <</if>> +<<setAssistantPronouns>> -One fine day, as normal as any day surrounded by your slaves can be, you're sitting at your desk when a message comes in. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> totally fails to announce it, which is unusual; when you ask her why not, she replies +One fine day, as normal as any day surrounded by your slaves can be, you're sitting at your desk when a message comes in. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> totally fails to announce it, which is unusual; when you ask _himA why not, _heA replies <<if $assistant > 0>> flirtatiously, "What message, <<= properTitle()>>?" <<switch $assistantAppearance>> <<case "monstergirl">> - Her avatar's tentacle hair wiggles with incomprehension. + _HisA avatar's tentacle hair wiggles with incomprehension. <<case "shemale">> - Her avatar looks frustrated, its hardon wilting. + _HisA avatar looks frustrated, its hardon wilting. <<case "amazon">> - Her avatar gives a little shriek of frustration. + _HisA avatar gives a little shriek of frustration. <<case "businesswoman">> - Her avatar wears an unaccustomed look of frustration. + _HisA avatar wears an unaccustomed look of frustration. <<case "fairy" "pregnant fairy">> - Her avatar crosses its arms and ponders while hovering in the air. + _HisA avatar crosses its arms and ponders while hovering in the air. <<case "goddess">> - Her avatar looks concerned without her usual sultry overtone. + _HisA avatar looks concerned without _hisA usual sultry overtone. <<case "hypergoddess">> - Her avatar looks concerned without her usual sultry overtone. + _HisA avatar looks concerned without _hisA usual sultry overtone. <<case "loli">> - Her avatar seems eager to be out of your sight. + _HisA avatar seems eager to be out of your sight. <<case "preggololi">> - Her avatar rubs her belly while looking extremely concerned. + _HisA avatar rubs _hisA belly while looking extremely concerned. <<case "angel">> - Her avatar's wings droop as a worried look crosses her face. + _HisA avatar's wings droop as a worried look crosses _hisA face. <<case "cherub">> - A concerned look forms on her face as she hovers nearby. + A concerned look forms on _hisA face as _heA hovers nearby. <<case "incubus">> - Her avatar looks frustrated, its hardon wilting. + _HisA avatar looks frustrated, _hisA hardon wilting. <<case "succubus">> - She stops teasing you, a concerned look forming on her pretty face. + _HeA stops teasing you, a concerned look forming on _hisA pretty face. <<case "imp">> - A concerned look forms on her face as she hovers nearby. + A concerned look forms on _hisA face as _heA hovers nearby. <<case "witch">> - A look of worry spreads across her face; a lingering dread that she did something bad. + A look of worry spreads across _hisA face; a lingering dread that _heA did something bad. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - Her avatar twitches slightly before sprouting multiple eyes facing all directions. + _HisA avatar twitches slightly before sprouting multiple eyes facing all directions. <<case "schoolgirl">> - Her avatar puts on such a hard look of concentration that its eyes cross. + _HisA avatar puts on such a hard look of concentration that its eyes cross. <<default>> - Her symbol avatar spins with frustration. + _HisA symbol avatar spins with frustration. <</switch>> <<else>> "You have received no messages in the past thirty seconds, <<= properTitle()>>." @@ -65,14 +66,15 @@ This is disturbing, to say the least. After close investigation, it appears some <br><br> <<run Enunciate($activeSlave)>> +<<setLocalPronouns $activeSlave)>> You call $activeSlave.slaveName in and politely inquire as to whether $he knows anything about the matter. $He nearly flees in terror, but gathers $his courage and <<if !canTalk($activeSlave)>> gestures meekly <<elseif ($activeSlave.lips > 70)>> - lisps meekly through her huge lips + lisps meekly through $his huge lips <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> - lisps meekly through her piercings + lisps meekly through $his piercings <<else>> mumbles meekly <</if>> @@ -185,7 +187,7 @@ that several nondescript citizens $he sees occasionally at work have passed a fe <br><<link "Chemically lobotomize $him to extirpate any record of the incident">> <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Random Nonindividual Event">><<UpdateNextButton>> /* unlock Continue button */ <<replace "#result">> - You inform $activeSlave.slaveName that $he is to return to $his duties, which $he does, mystified. Later in the day $he finds herself scheduled for surgery, and meekly goes. As $he feels the cool touch of the injector, loaded with powerful chemical lobotomizing agents, $he looks up at the camera above the auto-surgery with a hint of resigned apology in $his eyes. When $he is released from the surgery's care a few hours later, the hint is gone. @@.red;As is everything.@@ + You inform $activeSlave.slaveName that $he is to return to $his duties, which $he does, mystified. Later in the day $he finds $himself scheduled for surgery, and meekly goes. As $he feels the cool touch of the injector, loaded with powerful chemical lobotomizing agents, $he looks up at the camera above the auto-surgery with a hint of resigned apology in $his eyes. When $he is released from the surgery's care a few hours later, the hint is gone. @@.red;As is everything.@@ <<set $activeSlave.fetish = "mindbroken">> <</replace>> <</link>> diff --git a/src/uncategorized/peHeadgirlConcubine.tw b/src/uncategorized/peHeadgirlConcubine.tw index bc9f2c98c9b7d422146c317599058cff9cc9207d..a839da24f1c2e77b5b7ffdc6c3296d2c9fd90930 100644 --- a/src/uncategorized/peHeadgirlConcubine.tw +++ b/src/uncategorized/peHeadgirlConcubine.tw @@ -4,8 +4,11 @@ <<set $i = $slaveIndices[$HeadGirl.ID]>> <<set $partner = $slaveIndices[$Concubine.ID]>> +<<setLocalPronouns $HeadGirl>> +<<setLocalPronouns $Concubine 2>> +<<setAssistantPronouns>> -You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName waiting next to your bed. It's immediately obvious that they both have a minor item of business for you, since nothing was urgent enough to wake you early, and they evidently both came in to catch you at your normal hour of rising. They're kneeling side by side next to the bed<<if $HeadGirl.boobs + $Concubine.boobs > 10000>> (a position that smashes their massive breasts together on one side)<<elseif $HeadGirl.butt + $Concubine.butt > 10>> (a position that smashes their massive asses together on one side)<</if>>, and it's also obvious that they've been filling the few minutes they've been waiting for you to wake up by making out. Their lips are moist, $Concubine.slaveName's $Concubine.skin cheeks are a little flushed, and there's even a little unnoticed strand of saliva running from her mouth to $HeadGirl.slaveName's. They both look at you expectantly, wondering whether to speak up or save their questions for after you take a moment to get ready for your day. +You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName waiting next to your bed. It's immediately obvious that they both have a minor item of business for you, since nothing was urgent enough to wake you early, and they evidently both came in to catch you at your normal hour of rising. They're kneeling side by side next to the bed<<if $HeadGirl.boobs + $Concubine.boobs > 10000>> (a position that smashes their massive breasts together on one side)<<elseif $HeadGirl.butt + $Concubine.butt > 10>> (a position that smashes their massive asses together on one side)<</if>>, and it's also obvious that they've been filling the few minutes they've been waiting for you to wake up by making out. Their lips are moist, $Concubine.slaveName's $Concubine.skin cheeks are a little flushed, and there's even a little unnoticed strand of saliva running from _his2 mouth to $HeadGirl.slaveName's. They both look at you expectantly, wondering whether to speak up or save their questions for after you take a moment to get ready for your day. <br><br> @@ -13,7 +16,7 @@ You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName wai <<link "Get right to work">> <<replace "#result">> You didn't get to where you are by lying around on the job. You spring out of bed and head straight towards your office and its desk to get some work done with your first rush of morning energy before your ablutions. Your Head Girl and Concubine follow along behind you; - $HeadGirl.slaveName does her best to keep up, because the sight of your + $HeadGirl.slaveName does $his best to keep up, because the sight of your <<if $HeadGirl.attrXX > 65>> <<if $HeadGirl.attrXY > 65>> <<if $PC.dick == 1>> @@ -42,112 +45,112 @@ You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName wai <</if>> <<else>> <<if $PC.dick == 1>> - bare dick + bare dick <<elseif $PC.boobs == 0>> - bare chest + bare chest <<else>> - beloved body nude + beloved body nude <</if>> <</if>> - in motion as you walk is something she openly enjoys, while $Concubine.slaveName at least tries to be a little more modest. You sit down at your desk, taking in the situation in your domain at a glance as $assistantName + in motion as you walk is something $he openly enjoys, while $Concubine.slaveName at least tries to be a little more modest. You sit down at your desk, taking in the situation in your domain at a glance as $assistantName <<switch $assistantAppearance>> <<case "monstergirl">> springs into monstrous life on the glass desktop, eyes flashing and hair writhing. <<case "shemale">> - pops up on the glass desktop, helicoptering her dick while she waits for instructions. + pops up on the glass desktop, helicoptering _hisA dick while she waits for instructions. <<case "amazon">> appears to smash through the glass desktop, landing in a crouch to wait for orders. <<case "businesswoman">> - appears on the glass desktop, sitting primly in her own chair and waiting for instructions. + appears on the glass desktop, sitting primly in _hisA own chair and waiting for instructions. <<case "fairy">> - appears on the glass desktop, pressing her face against the screen. + appears on the glass desktop, pressing _hisA face against the screen. <<case "pregnant fairy">> - appears on the glass desktop, gingerly pressing her face and belly against the screen. + appears on the glass desktop, gingerly pressing _hisA face and belly against the screen. <<case "goddess">> gleams into existence on the glass desktop, reclining in a glow of maternal glory while she waits for direction. <<case "hypergoddess">> - gleams into existence on the glass desktop, shifting her gravid bulk so that it rests firmly on your desk. + gleams into existence on the glass desktop, shifting _hisA gravid bulk so that it rests firmly on your desk. <<case "loli">> - appears on the glass desktop, facing away from you. She spins around with a start, a finger up her nose, before quickly brushing herself off and pretending she wasn't doing anything. + appears on the glass desktop, facing away from you. _HeA spins around with a start, a finger up _hisA nose, before quickly brushing _himselfA off and pretending _heA wasn't doing anything. <<case "preggololi">> - appears on the glass desktop, idly stroking her pregnancy as she awaits your command. + appears on the glass desktop, idly stroking _hisA pregnancy as she awaits your command. <<case "schoolgirl">> - appears on the glass desktop, sitting in her own chair and waiting for instructions with her legs spread a little wide for such a short skirt. + appears on the glass desktop, sitting in _hisA own chair and waiting for instructions with _hisA legs spread a little wide for such a short skirt. <<case "angel">> - appears on the glass desktop, spreads her wings and stretches before taking a seat and waiting for instructions. + appears on the glass desktop, spreads _hisA wings and stretches before taking a seat and waiting for instructions. <<case "cherub" "imp">> flutters into view on the glass desktop, hovering above the ground while awaiting instructions. <<case "incubus">> - appears on the glass desktop, idly stroking her erection and trying to catch your attention. + appears on the glass desktop, idly stroking _hisA erection and trying to catch your attention. <<case "succubus">> - appears on the glass desktop and presses her tits against the screen. + appears on the glass desktop and presses _hisA tits against the screen. <<case "witch">> - suddenly appears on the glass desktop; she gasps and covers herself when she realizes her clothes didn't teleport with her. + suddenly appears on the glass desktop; _heA gasps and covers _himselfA when _heA realizes _hisA clothes didn't teleport with _himA. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - slowly coalesces together to form her usual feminine figure and standing their blankly waiting for instruction. + slowly coalesces together to form _hisA usual feminine figure and standing their blankly waiting for instruction. <<default>> appears as a glowing icon on the glass desktop, awaiting instructions. <</switch>> <br><br> - You look at $HeadGirl.slaveName, standing across the desk from you, and she takes the cue and goes first. She asks your permission to make a couple of last-minute changes to slaves' assignments for the day, and you ask about a couple of minor efficiency issues before giving her the go ahead. Meanwhile, $Concubine.slaveName kneels beside your chair, resting her $Concubine.hColor head on your knee, her <<if $Concubine.dick > 8>>limp, monstrous cock resting softly against one of your ankles<<elseif $Concubine.boobs > 5000>>titanic udders a nice cushion against your calves<<elseif $Concubine.weight > 10>>soft body cushioning nicely against your leg<<elseif $Concubine.boobs > 1000>>heavy breast resting against your calf on that side<<else>>chest warm against your calf on that side<</if>>. She places a <<if $Concubine.muscles > 30>>strong<<else>>soft<</if>> hand on the inside of your shin and hugs your lower leg, sensual, but companionable rather than sexually insistent. + You look at $HeadGirl.slaveName, standing across the desk from you, and $he takes the cue and goes first. $He asks your permission to make a couple of last-minute changes to slaves' assignments for the day, and you ask about a couple of minor efficiency issues before giving $him the go ahead. Meanwhile, $Concubine.slaveName kneels beside your chair, resting _his2 $Concubine.hColor head on your knee, _his2 <<if $Concubine.dick > 8>>limp, monstrous cock resting softly against one of your ankles<<elseif $Concubine.boobs > 5000>>titanic udders a nice cushion against your calves<<elseif $Concubine.weight > 10>>soft body cushioning nicely against your leg<<elseif $Concubine.boobs > 1000>>heavy breast resting against your calf on that side<<else>>chest warm against your calf on that side<</if>>. _He2 places a <<if $Concubine.muscles > 30>>strong<<else>>soft<</if>> hand on the inside of your shin and hugs your lower leg, sensual, but companionable rather than sexually insistent. <br><br> - Your Head Girl exits, performing the proper formalities and then hurrying off to make sure the reassigned slaves get going. As she withdraws she + Your Head Girl exits, performing the proper formalities and then hurrying off to make sure the reassigned slaves get going. As $he withdraws $he <<if $HeadGirl.relationship <= -2>> - has eyes only for you; she + has eyes only for you; $he <<elseif $HeadGirl.relationship == -1>> - gives $Concubine.slaveName a look up and down, which her slutty nature obliges her to give everyone; then she + gives $Concubine.slaveName a look up and down, which $his slutty nature obliges $him to give everyone; then $he <<elseif $HeadGirl.relationshipTarget == $Concubine.ID>> <<if $HeadGirl.relationship == 1>> - gives her friend $Concubine.slaveName a smile; then she + gives $his friend $Concubine.slaveName a smile; then $he <<elseif $HeadGirl.relationship == 2>> - gives her best friend $Concubine.slaveName a smile and a little wave; then she + gives $his best friend $Concubine.slaveName a smile and a little wave; then $he <<elseif $HeadGirl.relationship == 3>> - gives her fuckbuddy $Concubine.slaveName a flirty wink; then she + gives $his fuckbuddy $Concubine.slaveName a flirty wink; then $he <<elseif $HeadGirl.relationship == 4>> - blows her lover $Concubine.slaveName a kiss; then she + blows $his lover $Concubine.slaveName a kiss; then $he <<else>> - mouths "I love you" at her wife $Concubine.slaveName; then she + mouths "I love you" at $his wife $Concubine.slaveName; then $he <</if>> <</if>> <<switch $HeadGirl.fetish>> <<case "submissive">> - catches her lower lip behind her teeth and gives you a blushing, sexually submissive look + catches $his lower lip behind $his teeth and gives you a blushing, sexually submissive look <<case "cumslut">> - looks you in the eye and licks her lips lasciviously + looks you in the eye and licks $his lips lasciviously <<case "humiliation">> flashes you and blushes artfully <<case "buttslut">> - cocks her hips, pulls one buttock aside, and winks her asshole in your direction + cocks $his hips, pulls one buttock aside, and winks $his asshole in your direction <<case "boobs">> - looks you in the eye and gives her boobs a little bounce + looks you in the eye and gives $his boobs a little bounce <<case "pregnancy">> - looks you in the eye and traces a hand across her belly + looks you in the eye and traces a hand across $his belly <<case "dom">> gives you a cheerful, sexually challenging wink <<case "sadist">> gives you a significant glance, as between sadists, <<case "masochist">> - looks at you and gives her own butt a light slap + looks at you and gives $his own butt a light slap <<default>> - looks at you and adds a bit of extra sway to her hips + looks at you and adds a bit of extra sway to $his hips <</switch>> - on her way out the door. When she's gone, your Concubine speaks up from her adoring embrace of your leg. She asks a little aesthetic question about one of your other bedslaves, her <<if $Concubine.voice < 2>>deep voice rumbling against your knee<<elseif $Concubine.voice > 2>>high voice humming against your knee<<else>>feminine voice purring against your knee<</if>>. You chat with her about how you'd like the girl to look and act, ideally, and do other work while running your fingers through your Concubine's<<if $Concubine.hLength < 10>> short<</if>> hair. Your Head Girl's confident assistance managing your chattel and your Concubine's devoted comfort as you work allows you to @@.yellowgreen;be unusually productive@@ all morning. + on $his way out the door. When $he's gone, your Concubine speaks up from _his2 adoring embrace of your leg. _He2 asks a little aesthetic question about one of your other bedslaves, _his2 <<if $Concubine.voice < 2>>deep voice rumbling against your knee<<elseif $Concubine.voice > 2>>high voice humming against your knee<<else>>feminine voice purring against your knee<</if>>. You chat with _him2 about how you'd like the _girl2 to look and act, ideally, and do other work while running your fingers through your Concubine's<<if $Concubine.hLength < 10>> short<</if>> hair. Your Head Girl's confident assistance managing your chattel and your Concubine's devoted comfort as you work allows you to @@.yellowgreen;be unusually productive@@ all morning. <<set $cash += 1000>> <</replace>> <</link>> <br><<link "Tease them while they meet with you">> <<replace "#result">> - You tell them to go ahead, $HeadGirl.slaveName first, but you flip the sheet back and pat the soft mattress on either side of you while you do. They laugh and clamber on up, $HeadGirl.slaveName first, and she manages to drag a $HeadGirl.nipples nipple across your <<if $PC.boobs == 1>>own bare breasts<<else>>chest<</if>> as she climbs over you. Once she's situated under the crook of your arm, <<if $HeadGirl.boobs > 6000>>the huge weight of her boobs pressing against your ribcage<<elseif $HeadGirl.dick > 5>>which presses her absurd dick against your hip<<elseif $HeadGirl.energy > 95>>making the eager heat between the nympho's legs quite noticeable against your hip<<else>>her body warm against you<</if>>, she clears her throat and asks your permission to make a couple of last-minute changes to slaves' assignments for the day. + You tell them to go ahead, $HeadGirl.slaveName first, but you flip the sheet back and pat the soft mattress on either side of you while you do. They laugh and clamber on up, $HeadGirl.slaveName first, and $he manages to drag a $HeadGirl.nipples nipple across your <<if $PC.boobs == 1>>own bare breasts<<else>>chest<</if>> as $he climbs over you. Once $he's situated under the crook of your arm, <<if $HeadGirl.boobs > 6000>>the huge weight of $his boobs pressing against your ribcage<<elseif $HeadGirl.dick > 5>>which presses $his absurd dick against your hip<<elseif $HeadGirl.energy > 95>>making the eager heat between the nympho's legs quite noticeable against your hip<<else>>$his body warm against you<</if>>, $he clears $his throat and asks your permission to make a couple of last-minute changes to slaves' assignments for the day. <br><br> - As she did so, you were encircling your girls in your <<if $PC.title == 1>>powerful arms<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes her question. Her voice rises cutely as your marauding hand moves over the place between her <<if $HeadGirl.butt > 6>>huge<<elseif $HeadGirl.butt > 3>>healthy<<else>>cute<</if>> buttocks and you slowly press a single malicious finger in against her <<if $HeadGirl.anus > 2>>loose asspussy<<elseif $HeadGirl.butt > 0>>practiced asshole<<else>>virgin pucker<</if>>. She manages to finish, but trails off into a groan, the warm, crinkled skin spasming against the teasing digit. + As $he did so, you were encircling your girls in your <<if $PC.title == 1>>powerful arms<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes $his question. $His voice rises cutely as your marauding hand moves over the place between $his <<if $HeadGirl.butt > 6>>huge<<elseif $HeadGirl.butt > 3>>healthy<<else>>cute<</if>> buttocks and you slowly press a single malicious finger in against $his <<if $HeadGirl.anus > 2>>loose asspussy<<elseif $HeadGirl.butt > 0>>practiced asshole<<else>>virgin pucker<</if>>. $He manages to finish, but trails off into a groan, the warm, crinkled skin spasming against the teasing digit. <br><br> - $Concubine.slaveName laughs at her and asks her own question, a little aesthetic question about one of your other bedslaves, but something you like to exercise artistic control over. Her giggling is cut off as she has to concentrate on getting her words out as you use two fingers to massage and tease the sensitive skin between her ass and <<if $Concubine.vagina > -1>>the start of her cunt<<elseif $Concubine.scrotum > 0>>her ballsack<<else>>the base of her dick<</if>>. It's $HeadGirl.slaveName's turn to laugh, which she does throatily, her warm breath gusting deliciously across your <<if $PC.boobs == 1>>hardening nipples<<else>>pecs<</if>>. + $Concubine.slaveName laughs at $him and asks _his2 own question, a little aesthetic question about one of your other bedslaves, but something you like to exercise artistic control over. _His2 giggling is cut off as _he2 has to concentrate on getting _his2 words out as you use two fingers to massage and tease the sensitive skin between _his2 ass and <<if $Concubine.vagina > -1>>the start of _his2 cunt<<elseif $Concubine.scrotum > 0>>_his2 ballsack<<else>>the base of _his2 dick<</if>>. It's $HeadGirl.slaveName's turn to laugh, which $he does throatily, $his warm breath gusting deliciously across your <<if $PC.boobs == 1>>hardening nipples<<else>>pecs<</if>>. <<if SlaveStatsChecker.checkForLisp($HeadGirl)>> "Thee, it'th not eathy," <<else>> "See, it's not easy," <</if>> - she breathes across you at your Concubine. + $he breathes across you at your Concubine. <br><br> They soon get their revenge as you give them their orders, though, moving their expert hands between your legs to give you a handjob. They do it cooperatively as you continue to play with them, letting you enjoy the delightful sensation of <<if $PC.dick == 1>>two hands working your shaft while another tickles your frenulum and a fourth massages your balls<<else>>a hand massaging your petals on either side while another delves two fingers inside you and a fourth pleasures your clit<</if>>. They crane their necks to rain kisses on your chin, neck, <<if $PC.boobs == 1>>breasts, and nipples,<<else>>and chest,<</if>> and on each other's mouths. You spring out of bed when you're satisfied, pulling your leadership with you towards the shower, and they @@.mediumaquamarine;trustingly bounce up to follow.@@ <<set $slaves[$i].trust += 4, $slaves[$partner].trust += 4>> @@ -156,97 +159,97 @@ You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName wai <</replace>> <</link>> <<if $HeadGirl.anus > 0>> -<<if $HeadGirl.vagina != 0>> -<<if $Concubine.anus > 0>> -<<if $Concubine.vagina != 0>> -<br><<link "Double penetrate them while they meet with you">> - <<replace "#result">> - You sit up and order $HeadGirl.slaveName up onto the bed, on her back, and while she's <<if $HeadGirl.energy > 95>>eagerly obeying<<else>>obediently getting situated<</if>>, you tell $Concubine.slaveName to ride her, reverse cowgirl. She straddles your Head Girl, <<if $Concubine.butt > 6>>using her hands to situate her huge buttocks<<elseif $Concubine.boobs > 4000>>making her heavy boobs sway deliciously<<else>>carefully situating her legs astride $HeadGirl.slaveName's hips.<</if>> You plant a hard kiss on $Concubine.slaveName's mouth, pressing her backwards as you maneuver yourself into place<<if $PC.dick == 0>> and don a strap-on, since there isn't enough space for tribbing to work here<</if>>. - <<if $Concubine.vagina > -1>> - She moans into you as she feels you run <<if $PC.dick == 0>>the cool head of the phallus<<else>>your cockhead<</if>> along her<<if $Concubine.labia > 0>> generous<</if>> labia before plunging it inside her. Getting the idea, $HeadGirl.slaveName - <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>> - <<if $HeadGirl.dick - $Concubine.anus > 2>> - gently pushes her cock up $Concubine.slaveName's ass, since she knows your Concubine's anus will be a little tight around her imposing dick. - <<elseif $HeadGirl.dick - $Concubine.anus > 0>> - pushes her cock up $Concubine.slaveName's ass, since she knows your Concubine can take her dick without too much trouble. - <<else>> - shoves her cock up $Concubine.slaveName's ass, since she knows your Concubine can take her dick with ease. - <</if>> - <<else>> - slides a hand down and - <<if $Concubine.anus > 3>> - fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. - <<elseif $Concubine.anus == 3>> - starts to fuck $Concubine.slaveName's soft anus with three fingers. - <<elseif $Concubine.anus == 2>> - starts to fuck $Concubine.slaveName's asspussy with two fingers. - <<else>> - starts to fuck $Concubine.slaveName's tight little backdoor with a finger. - <</if>> - <</if>> - <<if $PC.dick == 1>>You feel the penetration through $Concubine.slaveName's vaginal walls, an incredible sensation.<</if>> - <<else>> - Getting the idea, $HeadGirl.slaveName - <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>> - <<if $HeadGirl.dick - $Concubine.anus > 2>> - gently pushes her cock up $Concubine.slaveName's ass, since she knows your Concubine's anus will be a little tight around her imposing dick. - <<elseif $HeadGirl.dick - $Concubine.anus > 0>> - pushes her cock up $Concubine.slaveName's ass, since she knows your Concubine can take her dick without too much trouble. - <<else>> - shoves her cock up $Concubine.slaveName's ass, since she knows your Concubine can take her dick with ease. - <</if>> - Then she grabs $Concubine.slaveName behind the knees and spreads her legs as far as they'll go, rotating her hips to position her for another phallus up the butt. - <<else>> - slides a hand down and - <<if $Concubine.anus > 3>> - fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. - <<elseif $Concubine.anus == 3>> - starts to fuck $Concubine.slaveName's soft anus with three fingers. - <<elseif $Concubine.anus == 2>> - starts to fuck $Concubine.slaveName's asspussy with two fingers. - <<else>> - starts to fuck $Concubine.slaveName's tight little backdoor with a finger. - <</if>> - Then she grabs $Concubine.slaveName behind a knee with her other hand and rotates her hips to position her for additional anal penetration. - <</if>> - Your Concubine shivers and moans as her sphincter accommodates <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>, too. - <</if>> - <br><br> - You start to fuck her, and then ask her what she needed from you. The poor girl has to concentrate hard to remember why she's here through the waterfall of sensations, but she manages it eventually, gasping out a little aesthetic question about one of your other bedslaves. You give her her answer and make her repeat it back. When you're satisfied, you grab her ankles and pull them up, sliding her off your <<if $PC.dick == 1>>pole<<else>>strap-on<</if>> and $HeadGirl.slaveName's <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>>dick<<else>>penetrating fingers<</if>> with a lovely lewd noise. After appreciating the sight of her well-fucked <<if $Concubine.vagina > -1>>holes<<else>>hole<</if>>, you swing her ass over and deposit it on the bed, producing a grunt as the drop forces the wind out of her. Grabbing your Head Girl in turn, you yank her towards you, give the giggling slave a kiss, seize her <<if $HeadGirl.weight > 10>>plush<<elseif $HeadGirl.hips > 0>>broad<<else>>trim<</if>> hips and lift her onto $Concubine.slaveName's lap. She takes - <<if $Concubine.vagina > -1>> - <<if $HeadGirl.vagina > -1>> - her own double pounding, pussy and ass, - <<else>> - double anal instead, since unlike your Concubine she only has the one lower fuckhole, - <</if>> - <<else>> - <<if $HeadGirl.vagina > -1>> - double penetration instead, since unlike your Concubine she has two lower fuckholes, - <<else>> - her own double anal pounding, - <</if>> - <</if>> - while taking her turn getting instructions. She manages to ask your permission to make a couple of last-minute changes to slaves' assignments for the day. Having thus given your leadership guidance, you jump up for a shower, crooking a finger to indicate that they should follow. They @@.hotpink;trail obediently after you,@@ a bit sore, their holes dripping - <<if ($HeadGirl.vagina > -1) || ($HeadGirl.vagina > -1)>> - <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> - cum, pussyjuice, and lube. - <<else>> - cum and lube. - <</if>> - <<else>> - <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> - cum and lube. - <<else>> - lube. + <<if $HeadGirl.vagina != 0>> + <<if $Concubine.anus > 0>> + <<if $Concubine.vagina != 0>> + <br><<link "Double penetrate them while they meet with you">> + <<replace "#result">> + You sit up and order $HeadGirl.slaveName up onto the bed, on $his back, and while $he's <<if $HeadGirl.energy > 95>>eagerly obeying<<else>>obediently getting situated<</if>>, you tell $Concubine.slaveName to ride $him, reverse cowgirl. $He straddles your Head Girl, <<if $Concubine.butt > 6>>using _his2 hands to situate _his2 huge buttocks<<elseif $Concubine.boobs > 4000>>making _his2 heavy boobs sway deliciously<<else>>carefully situating _his2 legs astride $HeadGirl.slaveName's hips.<</if>> You plant a hard kiss on $Concubine.slaveName's mouth, pressing _him2 backwards as you maneuver yourself into place<<if $PC.dick == 0>> and don a strap-on, since there isn't enough space for tribbing to work here<</if>>. + <<if $Concubine.vagina > -1>> + _He2 moans into you as _he2 feels you run <<if $PC.dick == 0>>the cool head of the phallus<<else>>your cockhead<</if>> along _his2<<if $Concubine.labia > 0>> generous<</if>> labia before plunging it inside _him2. Getting the idea, $HeadGirl.slaveName + <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>> + <<if $HeadGirl.dick - $Concubine.anus > 2>> + gently pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine's anus will be a little tight around $his imposing dick. + <<elseif $HeadGirl.dick - $Concubine.anus > 0>> + pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick without too much trouble. + <<else>> + shoves $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick with ease. + <</if>> + <<else>> + slides a hand down and + <<if $Concubine.anus > 3>> + fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. + <<elseif $Concubine.anus == 3>> + starts to fuck $Concubine.slaveName's soft anus with three fingers. + <<elseif $Concubine.anus == 2>> + starts to fuck $Concubine.slaveName's asspussy with two fingers. + <<else>> + starts to fuck $Concubine.slaveName's tight little backdoor with a finger. + <</if>> + <</if>> + <<if $PC.dick == 1>>You feel the penetration through $Concubine.slaveName's vaginal walls, an incredible sensation.<</if>> + <<else>> + Getting the idea, $HeadGirl.slaveName + <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>> + <<if $HeadGirl.dick - $Concubine.anus > 2>> + gently pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine's anus will be a little tight around $his imposing dick. + <<elseif $HeadGirl.dick - $Concubine.anus > 0>> + pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick without too much trouble. + <<else>> + shoves $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick with ease. + <</if>> + Then $he grabs $Concubine.slaveName behind the knees and spreads _his2 legs as far as they'll go, rotating _his2 hips to position _him2 for another phallus up the butt. + <<else>> + slides a hand down and + <<if $Concubine.anus > 3>> + fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. + <<elseif $Concubine.anus == 3>> + starts to fuck $Concubine.slaveName's soft anus with three fingers. + <<elseif $Concubine.anus == 2>> + starts to fuck $Concubine.slaveName's asspussy with two fingers. + <<else>> + starts to fuck $Concubine.slaveName's tight little backdoor with a finger. + <</if>> + Then $he grabs $Concubine.slaveName behind a knee with $his other hand and rotates _his2 hips to position _him2 for additional anal penetration. + <</if>> + Your Concubine shivers and moans as _his2 sphincter accommodates <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>, too. + <</if>> + <br><br> + You start to fuck _him2, and then ask _him2 what _he2 needed from you. The poor girl has to concentrate hard to remember why _he2's here through the waterfall of sensations, but _he2 manages it eventually, gasping out a little aesthetic question about one of your other bedslaves. You give _him2 _his2 answer and make _him2 repeat it back. When you're satisfied, you grab _his2 ankles and pull them up, sliding _him2 off your <<if $PC.dick == 1>>pole<<else>>strap-on<</if>> and $HeadGirl.slaveName's <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>>dick<<else>>penetrating fingers<</if>> with a lovely lewd noise. After appreciating the sight of _his2 well-fucked <<if $Concubine.vagina > -1>>holes<<else>>hole<</if>>, you swing _his2 ass over and deposit it on the bed, producing a grunt as the drop forces the wind out of _him2. Grabbing your Head Girl in turn, you yank $him towards you, give the giggling slave a kiss, seize $his <<if $HeadGirl.weight > 10>>plush<<elseif $HeadGirl.hips > 0>>broad<<else>>trim<</if>> hips and lift $him onto $Concubine.slaveName's lap. $He takes + <<if $Concubine.vagina > -1>> + <<if $HeadGirl.vagina > -1>> + $his own double pounding, pussy and ass, + <<else>> + double anal instead, since unlike your Concubine $he only has the one lower fuckhole, + <</if>> + <<else>> + <<if $HeadGirl.vagina > -1>> + double penetration instead, since unlike your Concubine $he has two lower fuckholes, + <<else>> + $his own double anal pounding, + <</if>> + <</if>> + while taking $his turn getting instructions. $He manages to ask your permission to make a couple of last-minute changes to slaves' assignments for the day. Having thus given your leadership guidance, you jump up for a shower, crooking a finger to indicate that they should follow. They @@.hotpink;trail obediently after you,@@ a bit sore, their holes dripping + <<if ($HeadGirl.vagina > -1) || ($HeadGirl.vagina > -1)>> + <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> + cum, pussyjuice, and lube. + <<else>> + cum and lube. + <</if>> + <<else>> + <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> + cum and lube. + <<else>> + lube. + <</if>> + <</if>> + <<set $slaves[$i].devotion += 4, $slaves[$partner].devotion += 4>> + <<= BothVCheck(2, 1)>> + <<= PartnerVCheck(2,1)>> + <</replace>> + <</link>> + <</if>> <</if>> <</if>> - <<set $slaves[$i].devotion += 4, $slaves[$partner].devotion += 4>> - <<= BothVCheck(2, 1)>> - <<= PartnerVCheck(2,1)>> - <</replace>> -<</link>> -<</if>> -<</if>> -<</if>> <</if>> </span> diff --git a/src/uncategorized/peLonelyBodyguard.tw b/src/uncategorized/peLonelyBodyguard.tw index da31d02d236a3bdb67366a20a0f668b938bde4e2..b46654c484ec5fe9fcbe26ed055304277fbd5c1e 100644 --- a/src/uncategorized/peLonelyBodyguard.tw +++ b/src/uncategorized/peLonelyBodyguard.tw @@ -16,7 +16,7 @@ You take an unusually close interest in $activeSlave.slaveName's health and ment <br><br> -On a whim, you ask her whether she feels lonely. Caught off guard, she <<if !canTalk($activeSlave)>>says in hesitant gestures that she's all right, and that her <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s companionship is enough for her.<<else>><<say>>s hesitantly "I'm all right, <<Master>>. I love being near you; that'<<s>> enough for me."<</if>> The slight hesitation is explained the next time $slaves[$j].slaveName comes to your office. $activeSlave.slaveName watches everyone who sees you, of course, but you catch her eye running appreciatively up and down $slaves[$j].slaveName's body as she leaves. +On a whim, you ask her whether she feels lonely. Caught off guard, she <<if !canTalk($activeSlave)>>says in hesitant gestures that she's all right, and that her <<= WrittenMaster()>>'s companionship is enough for her.<<else>><<say>>s hesitantly "I'm all right, <<Master>>. I love being near you; that'<<s>> enough for me."<</if>> The slight hesitation is explained the next time $slaves[$j].slaveName comes to your office. $activeSlave.slaveName watches everyone who sees you, of course, but you catch her eye running appreciatively up and down $slaves[$j].slaveName's body as she leaves. <br><br> diff --git a/src/uncategorized/pePitFight.tw b/src/uncategorized/pePitFight.tw index 2db1cd4e90cce7c9fdb7c2392f7e6e641342e756..6e9418848e6bb4826cf5c2f3f04372906484b5a1 100644 --- a/src/uncategorized/pePitFight.tw +++ b/src/uncategorized/pePitFight.tw @@ -44,7 +44,7 @@ Across the ring, $his opponent's owner nods civilly to you and examines $activeS <<if $activeSlave.weight > 190>> $His extreme weight nearly immobilizes $him. $He struggles to move let alone fight. <<elseif $activeSlave.weight > 160>> - $His extreme weight limits $his mobility and range of motion making $him an easy target. + $His extreme weight limits $his mobility and range of motion, making $him an easy target. <<elseif $activeSlave.weight > 130>> $His extreme weight holds $him back as a pit fighter. <<elseif $activeSlave.weight > 30>> @@ -83,7 +83,7 @@ Across the ring, $his opponent's owner nods civilly to you and examines $activeS <<if $activeSlave.bellyImplant >= 750000>> $His monolithic, <<print $activeSlave.bellyImplant>>cc implant filled belly guarantees $his loss; not only is $he on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag $him to the ground. $He has no hope of attacking around the straining mass, let alone stopping $his opponent. <<elseif $activeSlave.bellyImplant >= 600000>> - $His titanic, <<print $activeSlave.bellyImplant>>cc implant filled belly is practically a guaranteed loss; $he can barely stand let alone fight. Not only is it crippling heavy, unwieldy and an easy target, but $he can feel it straining to hold the sheer amount of filler forced into it. + $His titanic, <<print $activeSlave.bellyImplant>>cc implant filled belly is practically a guaranteed loss; $he can barely stand let alone fight. Not only is it cripplingly heavy, unwieldy and an easy target, but $he can feel it straining to hold the sheer amount of filler forced into it. <<elseif $activeSlave.bellyImplant >= 450000>> $His gigantic, <<print $activeSlave.bellyImplant>>cc implant filled belly is nearly a guaranteed loss; it presents an unmissable, indefensible target for $his adversary. <<elseif $activeSlave.bellyImplant >= 300000>> diff --git a/src/uncategorized/persBusiness.tw b/src/uncategorized/persBusiness.tw index 55ff98ccf10e303464a4aaf2af193be18ed1c1d7..8abe9487d4146053e1a883915b8d7c30879fe2cf 100644 --- a/src/uncategorized/persBusiness.tw +++ b/src/uncategorized/persBusiness.tw @@ -273,7 +273,7 @@ People in your arcology are supposed to keep a myriad of slaves as their personal harem, and failure to do so is considered to be highly dishonorable. This opens up some opportunities for smuggling, as people are ready to go to great length to get an edge against their competitors. Becoming a part for this business has made you @@.yellowgreen;<<print cashFormat(_income)>>@@. <<case "edo law">> <<set _income += random(2000,3000)>> - Outside culture is banned in your arcology. Your citizens do not need anything other than what you have inside. But this doesn't help with their curiosity - they always want to discover what the outside world is like. So you let some news and a few books from other cultures slip in, but not before you made sure they would disgust your citizens and reinforce their love for the Edo culture. The sales brought you @@.yellowgreen;<<print cashFormat(_income)>>. + Outside culture is banned in your arcology. Your citizens do not need anything other than what you have inside. But this doesn't help with their curiosity - they always want to discover what the outside world is like. So you let some news and a few books from other cultures slip in, but not before you made sure they would disgust your citizens and reinforce their love for the Edo culture. The sales brought you @@.yellowgreen;<<print cashFormat(_income)>>@@. <<case "edo">> <<set _income += random(1500,2500)>> During important meetings with higher society, it is wise to have a lot of slaves to put at the disposition of others. But some slaveowners grow really attached to their slaves, and so they'd much rather rent out unknown slaves from an anonymous owner's stock than use their own. This is a good opportunity to make some money, as shown by the @@.yellowgreen;<<print cashFormat(_income)>>@@ you managed to make. @@ -789,8 +789,8 @@ Routine upkeep of your demesne costs @@.yellow;<<print cashFormat($costs)>>.@@ <<set $rep = Math.trunc($rep*0.8)>> <<set $cash -= Math.trunc(_weatherRepairCost/4), $PC.engineering += .1>> <</if>> - <<elseif $weatherToday.severity-$weatherCladding == 2>> - <<if $weatherCladding >= 1>> + <<elseif $weatherToday.severity-$weatherCladding <= 2>> + <<if $weatherToday.severity > 2>> <<set $weatherAwareness = 1>> The arcology's hardened exterior resisted severe weather this week. Your citizens are @@.green;grateful@@ to you for maintaining the arcology as a safe haven from the terrible climate. <<set $rep += 100>> diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw index e556eb5cb0ee6f9300f37c8adf74e60b8459da88..22f012c01b1c8d7d67e76accaf235752f4a4db1b 100644 --- a/src/uncategorized/personalAssistantAppearance.tw +++ b/src/uncategorized/personalAssistantAppearance.tw @@ -1,182 +1,184 @@ :: Personal Assistant Appearance [nobr] +<<setAssistantPronouns>> +<<setNonlocalPronouns $seeDicks>> <<set _paSeed = random(1,8)>> <<switch $assistantAppearance>> <<case "monstergirl">> -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. +_HeA'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", "brown", "dark brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("fair", "light", "pale")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("brown", "dark brown", "dark olive")>><<elseif ["amerindian", "indo-aryan", "malay", "pacific islander"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("dark olive", "light olive", "light")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark olive", "light olive", "tanned")>><<else>>pale<</if>><<elseif $assistantFSAppearance == "subjugationist">><<if $arcologies[0].FSSubjugationistRace == "black">><<print either("black", "brown", "dark brown")>><<elseif $arcologies[0].FSSubjugationistRace == "white">><<print either("fair", "light", "pale")>><<elseif $arcologies[0].FSSubjugationistRace == "latina">><<print either("brown", "dark brown", "dark olive")>><<elseif ["amerindian", "indo-aryan", "malay", "pacific islander"].includes($arcologies[0].FSSubjugationistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSubjugationistRace == "asian">><<print either("dark olive", "light olive", "light")>><<elseif ["middle eastern", "semitic", "southern european"].includes($arcologies[0].FSSubjugationistRace)>><<print either("dark olive", "light olive", "tanned")>><<else>>pale<</if>><<else>>pale<</if>> skin, perky breasts, green tentacles instead of hair, and two dicks. _HisA 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. + _HeA'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. + _HeA's sharpened _hisA appearance to be quite frightening: _heA 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 appearance, and she has taken to jump-scaring slaves of lesser races when she isn't too busy with other tasks. + _HisA distinct $arcologies[0].FSSupremacistRace features are only enhanced by _hisA monstrous appearance, and _heA has taken to jump-scaring slaves of lesser races when _heA isn't too busy with other tasks. <<case "subjugationist">> - Her distinct $arcologies[0].FSSubjugationistRace features are further exaggerated by her monstorous appearance. + _HisA distinct $arcologies[0].FSSubjugationistRace features are further exaggerated by _hisA monstrous appearance. <<case "roman revivalist">> - She's wearing a conservative stola, which combined with her monstrous appearance makes her look like a Greek demigoddess. + _HeA's wearing a conservative stola, which combined with _hisA monstrous appearance makes _himA look like a Greek demigoddess. <<case "aztec revivalist">> - She's wearing a traditional huipil, a long cape and a headdress, which amplify her monstrous visage. + _HeA's wearing a traditional huipil, a long cape and a headdress, which amplify _hisA monstrous visage. <<case "egyptian revivalist">> - She's wearing golden jewelry and a Pharaoh's beard, which combined with her animal characteristics makes her look like an Egyptian deity. + _HeA's wearing golden jewelry and a Pharaoh's beard, which combined with _hisA animal characteristics makes _himA look like an Egyptian deity. <<case "edo revivalist">> - She's given her appearance a Japanese style, making her look like a demon. + _HeA's given _hisA appearance a Japanese style, making _himA look like a demon. <<case "arabian revivalist">> - She's given her appearance a mystical Arabian style, making her look like a djinn. + _HeA's given _hisA appearance a mystical Arabian style, making _himA look like a djinn. <<case "chinese revivalist">> - She's given her appearance a Chinese style, making her look like a demon. + _HeA's given _hisA appearance a Chinese style, making _himA look like a demon. <<case "chattel religionist">> - She's wearing the garb of a priestess of the new faith, which clashes amusingly with her demonic appearance. + _HeA's wearing the garb of a priestess of the new faith, which clashes amusingly with _hisA demonic appearance. <<case "repopulation focus">> - She's very pregnant; her belly is covered in large bulges revealing the eggs growing within her. + _HeA's very pregnant; _hisA belly is covered in large bulges revealing the eggs growing within _himA. <<case "eugenics">> - She's wearing a complex chastity device, keeping her dicks and cunt unusable. + _HeA's wearing a complex chastity device, keeping _hisA dicks and cunt unusable. <<case "physical idealist">> - She's quite muscular, and behaves with total confidence. + _HeA's quite muscular, and behaves with total confidence. <<case "hedonistic decadence">> - She's quite heavy set, and prefers to laze about eating and masturbating. + _HeA's quite heavy set, and prefers to laze about eating and masturbating. <<case "gender radicalist">> - She's accentuated her androgyny, with her tits and her cocks her only obvious gendered traits. + _HeA's accentuated _hisA androgyny, with _hisA tits and _hisA cocks _hisA only obvious gendered traits. <<case "gender fundamentalist">> - She's made herself as cute as a demonic little creature with cocks and tentacle hair can possibly be. + _HeA's made _himselfA as cute as a demonic little creature with cocks and tentacle hair can possibly be. <<case "asset expansionist">> - She's increased the size of her assets recently: her cocks are so large that she can give them a blowjob, and her boobs are so big she can give herself a titjob at the same time. + _HeA's increased the size of _hisA assets recently: _hisA cocks are so large that _heA can give them a blowjob, and _hisA boobs are so big _heA can give _himselfA a titjob at the same time. <<case "transformation fetishist">> - She's made herself even stranger recently: her nipples look suspiciously like dicks, and she has horns growing out of her feet to form high heels. + _HeA's made _himselfA even stranger recently: _hisA nipples look suspiciously like dicks, and _heA has horns growing out of _hisA feet to form high heels. <<case "pastoralist">> - She's lactating, though her product is a suspiciously semen-like substance she usually drinks herself. + _HeA's lactating, though _hisA product is a suspiciously semen-like substance _heA usually drinks _himselfA. <<case "maturity preferentialist">> - She's quite mature: she wears a haughty expression, and her cheekbones are like knifeblades. + _HeA's quite mature: _heA wears a haughty expression, and _hisA cheekbones are like knifeblades. <<case "youth preferentialist">> - She's surprisingly young: her tentacle hair is quite short, and her horns are still little nubs. + _HeA's surprisingly young: _hisA tentacle hair is quite short, and _hisA horns are still little nubs. <<case "slimness enthusiast">> - She's recently altered her appearance to be slimmer and more athletic. + _HeA's recently altered _hisA appearance to be slimmer and more athletic. <<case "body purist">> - She's recently improved her appearance to complete flawlessness, with milky white skin and buffed horns. + _HeA's recently improved _hisA appearance to complete flawlessness, with milky white skin and buffed horns. <</switch>> <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, busily sucking off one of her cocks. The slave must be down in the kitchen, getting a meal out of the phallic food dispensers. As you watch, the monstergirl orgasms copiously, her tentacle hair caressing her own breasts. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, busily sucking off one of _hisA cocks. The slave must be down in the kitchen, getting a meal out of the phallic food dispensers. As you watch, the monstergirl orgasms copiously, _hisA tentacle hair caressing _hisA own breasts. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, taking both of her cocks up its ass. The slave must be receiving her drugs from one of the dildo dispensers. As you watch, the monstergirl looks up at you, winks, and then maliciously increases her pace, making the depiction of the slave wince. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, taking both of _hisA cocks up _hisU ass. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the monstergirl looks up at you, winks, and then maliciously increases _hisA pace, making the depiction of the slave wince. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's manually stimulating a recognizable little representation of one of your slaves. The slave must be using one of the penthouse's many vibrators. The monstergirl is looking after herself, too, tweaking her nipples with her own tentacle hair. + _HeA's manually stimulating a recognizable little representation of one of your slaves. The slave must be using one of the penthouse's many vibrators. The monstergirl is looking after _himselfA, too, tweaking _hisA nipples with _hisA own tentacle hair. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The monstergirl is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The monstergirl is restraining herself for once, and her hair is even patting the slave's head reassuringly. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The monstergirl is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The monstergirl is restraining _himselfA for once, and _hisA hair is even patting the slave's head reassuringly. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - The monstergirl is riding around on a little representation of one of your security drones. She's very obviously enjoying the drone's vibrations as it hovers. When she sees you looking at her, she giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" + The monstergirl is riding around on a little representation of one of your security drones. _HeA's very obviously enjoying the drone's vibrations as it hovers. When _heA sees you looking at _himA, _heA giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" <<elseif (_paSeed == 6) && ($studio == 1)>> - The monstergirl has both her dicks inside a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + The monstergirl has both _hisA dicks inside a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's very human avatar. + _HeA's accompanied by your market assistant's very human avatar. <<if $marketAssistantRelationship == "cute">> - They're chatting companionably, with the girl showing no sign of noticing that she's talking to a naked monstergirl with two erect cocks. + They're chatting companionably, with the _girlM showing no sign of noticing that _heM's talking to a naked monstergirl with two erect cocks. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is holding the poor girl down so she can take her from behind. As you watch, $assistantName extracts her cock from the market assistant's avatar's cunt and stuffs it up her ass, alongside her other dick, eliciting some terrified begging and then tired sobbing. + $assistantName is holding the poor _girlM down so _heA can take _himM from behind. As you watch, $assistantName extracts _hisA cock from the market assistant's avatar's cunt and stuffs it up _hisM ass, alongside _hisA other dick, eliciting some terrified begging and then tired sobbing. <<elseif $marketAssistantRelationship == "incestuous">> - They're fucking openly, with the market assistant's avatar bouncing greedily on top of her monstrous sibling. She's clearly enjoying the feeling of her sister's cocks buried in her holes. + They're fucking openly, with the market assistant's avatar bouncing greedily on top of _hisM monstrous sibling. _HeM's clearly enjoying the feeling of _hisM sister's cocks buried in _hisM holes. <<else>> - They're cuddled up close. As they kiss, $assistantName's tentacle hair holds her lover's head gently. The market assistant's avatar is using both hands to give $assistantName's cocks some manual release. + They're cuddled up close. As they kiss, $assistantName's tentacle hair holds _hisA lover's head gently. The market assistant's avatar is using both hands to give $assistantName's cocks some manual release. <</if>> <<else>> - She's sitting cross-legged, looking up at you and waiting for instructions. In the meantime, she's masturbating gently, a dickhead in each hand, while her hair writhes against itself. + _HeA's sitting cross-legged, looking up at you and waiting for instructions. In the meantime, _heA's masturbating gently, a dickhead in each hand, while _hisA hair writhes against itself. <</if>> <<case "shemale">> -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. +_HeA'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", "brown", "dark brown")>><<elseif $arcologies[0].FSSupremacistRace == "white">><<print either("fair", "pale")>><<elseif $arcologies[0].FSSupremacistRace == "latina">><<print either("brown", "dark brown", "dark olive")>><<elseif ["amerindian", "indo-aryan", "malay", "pacific islander"].includes($arcologies[0].FSSupremacistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSupremacistRace == "asian">><<print either("dark olive", "light 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", "brown", "dark brown")>><<elseif $arcologies[0].FSSubjugationistRace == "white">><<print either("fair", "pale")>><<elseif $arcologies[0].FSSubjugationistRace == "latina">><<print either("brown", "dark brown", "dark olive")>><<elseif ["amerindian", "indo-aryan", "malay", "pacific islander"].includes($arcologies[0].FSSubjugationistRace)>><<print either("dark", "light")>><<elseif $arcologies[0].FSSubjugationistRace == "asian">><<print either("dark olive", "light 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. _HisA cock hangs past _hisA 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. + _HeA's made _himselfA up to look a bit classier recently: _heA has elegant fake nails, and has _hisA hair piled up on _hisA 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. + _HeA's made _himselfA up to look almost comically evil: _heA'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. + _HeA 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. + Like most $arcologies[0].FSSubjugationistRace subhumans _heA has no self-control, and is constantly playing with _hisA 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. + _HeA's taken to reclining on a traditional Roman couch and drinking wine out of a shallow dish. <<case "aztec revivalist">> - She's wearing a headdress and a loincloth, which can't hide her enviable package. + _HeA's wearing a headdress and a loincloth, which can't hide _hisA enviable package. <<case "egyptian revivalist">> - She's wearing an Egyptian melting perfume cake on her head. + _HeA's wearing an Egyptian melting perfume cake on _hisA head. <<case "edo revivalist">> - She's wearing a brief Japanese bathhouse robe. + _HeA's wearing a brief Japanese bathhouse robe. <<case "arabian revivalist">> - She's dressed herself like an oil millionaire, with aviator sunglasses and a headscarf. + _HeA's dressed _himselfA like an oil millionaire, with aviator sunglasses and a headscarf. <<case "chinese revivalist">> - She's added various tattoos of rude Chinese characters to her body recently. + _HeA's added various tattoos of rude Chinese characters to _hisA body recently. <<case "chattel religionist">> - She's wearing the garb of a priestess of the new faith, which frames her cock prominently. + _HeA's wearing the garb of a priestess of the new faith, which frames _hisA cock prominently. <<case "physical idealist">> - She's extremely muscular: she shines with body oil, and her abs have abs. + _HeA's extremely muscular: _heA shines with body oil, and _hisA abs have abs. <<case "hedonistic decadence">> - She's extremely fat; when she isn't idly playing with herself, she is pigging out on snacks. + _HeA's extremely fat; when _heA isn't idly playing with _himselfA, _heA is pigging out on snacks. <<case "repopulation focus">> - She is incredibly pregnant, her belly preventing her from playing with herself effectively. + _HeA is incredibly pregnant, _hisA belly preventing _himA from playing with _himselfA effectively. <<case "eugenics">> - Her sizable dick is restrained in a complicated chastity device. + _HisA sizable dick is restrained in a complicated chastity device. <<case "gender radicalist">> - She's rendered her cock in even more loving detail recently, adding a couple of veins and a bead of precum. + _HeA's rendered _hisA cock in even more loving detail recently, adding a couple of veins and a bead of precum. <<case "gender fundamentalist">> - She's taken to concealing her dick recently, and cheekily turns away from you to hide it as much as possible. + _HeA's taken to concealing _hisA dick recently, and cheekily turns away from you to hide it as much as possible. <<case "asset expansionist">> - She's increased the size of her assets recently: she's increased the girth of her dick until it's as thick as one of her arms, and her boobs are the size of beach balls. + _HeA's increased the size of _hisA assets recently: _heA's increased the girth of _hisA dick until it's as thick as one of _hisA arms, and _hisA boobs are the size of beach balls. <<case "transformation fetishist">> - Her tits, ass and lips are carefully rendered to make them look fake. + _HisA tits, ass and lips are carefully rendered to make them look fake. <<case "pastoralist">> - She's lactating, and her orgasms produce comically powerful jets of cum. + _HeA's lactating, and _hisA orgasms produce comically powerful jets of cum. <<case "maturity preferentialist">> - She's quite mature, with a lean face that accentuates her cheekbones. + _HeA's quite mature, with a lean face that accentuates _hisA cheekbones. <<case "youth preferentialist">> - She's surprisingly young, and looks as innocent as a computer generated image of a girl with a pornstar dick possibly can. + _HeA's surprisingly young, and looks as innocent as a computer generated image of a girl with a pornstar dick possibly can. <<case "slimness enthusiast">> - She's recently altered her appearance to be slimmer and more athletic. + _HeA's recently altered _hisA appearance to be slimmer and more athletic. <<case "body purist">> - She's recently improved her appearance to look more natural, with prettier boobs and softer hips. + _HeA's recently improved _hisA appearance to look more natural, with prettier boobs and softer hips. <</switch>> <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, gagging on her enormous dick. The slave must be down in the kitchen, getting a meal out of the phallic food dispensers. As you watch, the shemale orgasms; she notices you watching her, and blows you a wet kiss. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, gagging on _hisA enormous dick. The slave must be down in the kitchen, getting a meal out of the phallic food dispensers. As you watch, the shemale orgasms; _heA notices you watching _himA, and blows you a wet kiss. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, moaning as it takes her massive prick. The slave must be receiving her drugs from one of the dildo dispensers. As you watch, the shemale looks up at you, winks, and starts pulling out after each thrust, her cock making a popping noise each time it leaves the slave's butthole. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, moaning as it takes _hisA massive prick. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the shemale looks up at you, winks, and starts pulling out after each thrust, _hisA cock making a popping noise each time it leaves the slave's butthole. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's giving a blowjob to a recognizable little representation of one of your slaves. The slave must be using one of the penthouse's many vibrators. The shemale is looking after herself, too, jerking herself off with one hand and playing with her asshole with the other. + _HeA's giving a blowjob to a recognizable little representation of one of your slaves. The slave must be using one of the penthouse's many vibrators. The shemale is looking after _himselfA, too, jerking _himselfA off with one hand and playing with _hisA asshole with the other. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The shemale is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The shemale is restraining herself for once, patting the slave's head and cooing reassuringly. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The shemale is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The shemale is restraining _himselfA for once, patting the slave's head and cooing reassuringly. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's masturbating as she takes it up the ass from a representation of one of your security drones, which appears to have a little dildo mounted in place of one of its gun assemblies. When she sees you looking at her, she giggles and says, "What? I like him! He did really well during the invasion." + _HeA's masturbating as _heA takes it up the ass from a representation of one of your security drones, which appears to have a little dildo mounted in place of one of its gun assemblies. When _heA sees you looking at _himA, _heA giggles and says, "What? I like him! He did really well during the invasion." <<elseif (_paSeed == 6) && ($studio == 1)>> The shemale is plowing a recognizable little representation of one of your slaves up the butt, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's own shemale avatar. + _HeA's accompanied by your market assistant's own shemale avatar. <<if $marketAssistantRelationship == "cute">> They're jerking each other off companionably, since that's as close to chaste friendship as the lewd little shemales get. They chat girlishly, as though they weren't engaged in open mutual masturbation. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is bouncing the poor bitch up and down on her dick, the market assistant's pathetic, limp dick flopping around as $assistantName assrapes her. As you watch, $assistantName reaches around to give the market assistant's soft balls a possessive squeeze. + $assistantName is bouncing the poor bitch up and down on _hisA dick, the market assistant's pathetic, limp dick flopping around as $assistantName assrapes _himM. As you watch, $assistantName reaches around to give the market assistant's soft balls a possessive squeeze. <<elseif $marketAssistantRelationship == "incestuous">> - They're locked in a tight, perfectly symmetrical incestuous 69, each of their monstrous cocks deepthroated a long way inside her sister's mouth. They spasm with simultaneous orgasm, gulping each other's cum greedily. + They're locked in a tight, perfectly symmetrical incestuous 69, each of their monstrous cocks deepthroated a long way inside their sister's mouth. They spasm with simultaneous orgasm, gulping each other's cum greedily. <<else>> - They're doing it in the missionary position, kissing deeply. The one who's taking it has her huge dick between them, its head crushed between their four fake breasts. As you watch, she orgasms, splashing both of their faces with cum. + They're doing it in the missionary position, kissing deeply. The one who's taking it has _hisM huge dick between them, its head crushed between their four fake breasts. As you watch, _heM orgasms, splashing both of their faces with cum. <</if>> <<else>> - She's sitting cross-legged, bending down to suck herself off and looking up at you at the same time. When she sees your attention she lets her dick pop free of her mouth and waits for a moment to see if you have instructions for her, and then goes back to autofellatio. + _HeA's sitting cross-legged, bending down to suck _himselfA off and looking up at you at the same time. When _heA sees your attention _heA lets _hisA dick pop free of _hisA mouth and waits for a moment to see if you have instructions for _himA, and then goes back to autofellatio. <</if>> <<case "amazon">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>amazon + _HeA'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 long flowing 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. _HeA 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. + with a complex bone chastity belt blocking _hisA 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. + with ochre-dyed dreadlocks, war tattoos, shredded abs, and jewelry made from human bones. _HeA 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">> @@ -184,436 +186,436 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS <<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">> - wearing the battledress of the greatest warriors, she stands incredibly imposing, holding a spear and shield. + wearing the battledress of the greatest warriors, _heA stands incredibly imposing, holding a spear and shield. <<case "egyptian revivalist">> - wearing a simple white linen dress, kohl eye shadow, and sandals, making her look like a barbarian immigrant to the land of the Nile. + wearing a simple white linen dress, kohl eye shadow, and sandals, making _himA look like a barbarian immigrant to the land of the Nile. <<case "edo revivalist">> wearing a Japanese warrior's robe with a pair of swords tucked into its sash. <<case "arabian revivalist">> - with a bare chest, loose pantaloons, and a broad silk sash wound around her waist with a scimitar thrust into it. + with a bare chest, loose pantaloons, and a broad silk sash wound around _hisA waist with a scimitar thrust into it. <<case "chinese revivalist">> wearing loose silk robes belted with rope and carrying a simple warrior monk's staff. <<case "chattel religionist">> - wearing a crusader's mail. Her long blonde hair cascades down the back of her surcoat in golden glory. + wearing a crusader's mail. _HisA long blonde hair cascades down the back of _hisA surcoat in golden glory. <<case "physical idealist">> whose muscles are lovingly rendered in lifelike detail. <<case "hedonistic decadence">> - with a thick layer of fat covering her muscled body. She typically carries a half-eaten roast pig over her shoulder. + with a thick layer of fat covering _hisA muscled body. _HeA typically carries a half-eaten roast pig over _hisA shoulder. <<case "gender radicalist">> - who is so heavily muscled that she's become quite androgynous lately. + who is so heavily muscled that _heA's become quite androgynous lately. <<case "gender fundamentalist">> - whose heavy musculature does not detract from her feminine beauty. + whose heavy musculature does not detract from _hisA feminine beauty. <<case "asset expansionist">> who's almost muscle-bound. <<case "transformation fetishist">> who's almost muscle-bound. <<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. + wearing jean overalls, a plaid shirt whose sleeves are strained by _hisA biceps, and rubber boots, and has a cowboy hat pushed back on _hisA pretty head. <<case "maturity preferentialist">> - with streaks of grey running through her long flowing hair. She has bigger natural tits than anyone that ripped could possibly maintain. + with streaks of grey running through _hisA long flowing hair. _HeA 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. + with whose innocent appearance belies _hisA heavy muscles. _HeA has bigger natural tits than anyone that ripped could possibly maintain. <<case "slimness enthusiast">> - with long flowing 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. _HisA perky boobs are usually concealed by _hisA 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. + with a realistic tribeswoman's garb of woven jewelry and shell beads. _HeA has bigger natural tits than anyone that ripped could possibly maintain. <<default>> - with long flowing 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. _HeA has bigger natural tits than anyone that ripped could possibly maintain. <</switch>> <<else>> - with long flowing 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. _HeA 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. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, eating _himA 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. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, letting the amazon use two fingers on her butthole. The slave must be receiving her drugs from one of the dildo dispensers. As you watch, the amazon looks up at you, winks, and shoves her entire hand up the struggling slave's ass. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, letting the amazon use two fingers on _hisU butthole. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the amazon looks up at you, winks, and shoves _hisA entire hand up the struggling slave's ass. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's holding a recognizable little representation of one of your slaves in her lap, giving her a powerful handjob. The slave must be using one of the penthouse's many vibrators. The slave gets off and collapses, exhausted. + _HeA's holding a recognizable little representation of one of your slaves in _hisA lap, giving _himU a powerful handjob. The slave must be using one of the penthouse's many vibrators. The slave gets off and collapses, exhausted. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The amazon is poking and prodding her; the slave must be getting a checkup. Once finished, the amazon gives her a powerful massage, making the slave groan with relief. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The amazon is poking and prodding _himU; the slave must be getting a checkup. Once finished, the amazon gives _himU a powerful massage, making the slave groan with relief. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's leaning against a representation of one of your security drones. Every so often, she wrestles with it affectionately. When she sees you watching her, she leaps atop the drone, puts her fists on her hips, and says, "What? I like him! He did really well during the invasion. And he's cute!" + _HeA's leaning against a representation of one of your security drones. Every so often, _heA wrestles with it affectionately. When _heA sees you watching _himA, _heA leaps atop the drone, puts _hisA fists on _hisA hips, and says, "What? I like him! He did really well during the invasion. And he's cute!" <<elseif (_paSeed == 6) && ($studio == 1)>> - The amazon has her hand inside a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + The amazon has _hisA hand inside a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's tribeswoman avatar. + _HeA's accompanied by your market assistant's tribeswoman avatar. <<if $marketAssistantRelationship == "cute">> - They're chatting companionably as $assistantName stretches and the market assistant's avatar does a complex calculation on her fingers. $assistantName is telling a long story, and the market assistant is listening kindly. + They're chatting companionably as $assistantName stretches and the market assistant's avatar does a complex calculation on _hisM fingers. $assistantName is telling a long story, and the market assistant is listening kindly. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is taking her tribal slave from behind. It's technically tribbing, since all she's doing is grinding her cunt against the market assistants', but the poor little tribeswoman is being fucked hard regardless. + $assistantName is taking _hisA tribal slave from behind. It's technically tribbing, since all _heA's doing is grinding _hisA cunt against the market assistants', but the poor little tribeswoman is being fucked hard regardless. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName is getting some manual stimulation from her sister, who is watching her muscular sibling's aroused thrashing with amusement as she slides her whole hand in and out of $assistantName's cunt. + $assistantName is getting some manual stimulation from _hisA sister, who is watching _hisM muscular sibling's aroused thrashing with amusement as _heM slides _hisM whole hand in and out of $assistantName's cunt. <<else>> They're doing it in the missionary position, kissing deeply. They're technically tribbing, but $assistantName's muscular body and the tribeswoman's wifely form make it look very pure and traditional. <</if>> <<else>> - She's doing pushups, glancing at you at the top of each rep to see if you need her. When she sees your attention, she pushes hard enough to bounce to a standing position. Seeing that you're just looking, she winks, flexes, and drops back down to do crunches. + _HeA's doing pushups, glancing at you at the top of each rep to see if you need _himA. When _heA sees your attention, _heA pushes hard enough to bounce to a standing position. Seeing that you're just looking, _heA winks, flexes, and drops back down to do crunches. <</if>> <<case "businesswoman">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>businesswoman + _HeA'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. + wearing a perfectly-tailored suit, with _hisA silver-blonde hair brushed back over _hisA shoulders. _HisA clothes are conservative, but they can't hide _hisA 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. + wearing an iron-gray suit, with _hisA hair up in a severe bun. _HeA'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. + wearing a perfectly-tailored suit. _HeA has two different tones _heA uses when speaking: a respectful one for talking with _hisA $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. + wearing a nice, slightly-used suit. _HeA 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. + wearing a fine stola appropriate for a respectable Roman lady, with _hisA hair up in a complicated style. <<case "aztec revivalist">> - wearing a modest huipil, her hair braided to two ponytails, she's the picture of quiet elegance. + wearing a modest huipil, _hisA hair braided to two ponytails, _heA's the picture of quiet elegance. <<case "egyptian revivalist">> wearing a simple white linen dress, kohl eye shadow, sandals, and a serene expression. <<case "edo revivalist">> wearing a fine kimono, getae, tabi, and an expression of perfect serenity. <<case "arabian revivalist">> - wearing a tailored suit, a silk headscarf, and aviator sunglasses, making her look like a little oil heiress. + wearing a tailored suit, a silk headscarf, and aviator sunglasses, making _himA look like a little oil heiress. <<case "chinese revivalist">> - wearing a conservative silk qipao. Her hair is pulled back into a bun and secured by a couple of chopsticks. + wearing a conservative silk qipao. _HisA hair is pulled back into a bun and secured by a couple of chopsticks. <<case "chattel religionist">> - wearing a tailored suit. She has a prominent religious symbol on a necklace that rests over her generous bosom. + wearing a tailored suit. _HeA has a prominent religious symbol on a necklace that rests over _hisA generous bosom. <<case "physical idealist">> - wearing a tailored suit. She's proportioned to make it very obvious that she works out. + wearing a tailored suit. _HeA's proportioned to make it very obvious that _heA works out. <<case "hedonistic decadence">> - wearing a tailored suit. She's proportioned to make it very obvious that she enjoys a good drink after the day is done. + wearing a tailored suit. _HeA's proportioned to make it very obvious that _heA enjoys a good drink after the day is done. <<case "repopulation focus">> - wearing a nice suit, it's tailored to contain her pregnant belly. + wearing a nice suit, it's tailored to contain _hisA pregnant belly. <<case "eugenics">> - wearing a nice suit and wearing the insignia of the elite upon her arm. Her suit strains to contain her belly, swollen with the child of another elite. + wearing a nice suit and wearing the insignia of the elite upon _hisA arm. _HisA suit strains to contain _hisA belly, swollen with the child of another elite. <<case "gender radicalist">> - wearing a nice suit. She's changed her appearance recently to make herself quite androgynous. + wearing a nice suit. _HeA's changed _hisA appearance recently to make _himselfA quite androgynous. <<case "gender fundamentalist">> - wearing a nice suit. She's changed her appearance recently to make herself more feminine, with a softer expression and a pretty fall of silver-blonde hair over one shoulder. + wearing a nice suit. _HeA's changed _hisA appearance recently to make _himselfA more feminine, with a softer expression and a pretty fall of silver-blonde hair over one shoulder. <<case "asset expansionist">> - wearing a nice suit, which is tailored to fit her despite the fact that she has breasts almost as large as she is. + wearing a nice suit, which is tailored to fit _himA despite the fact that _heA has breasts almost as large as _heA is. <<case "transformation fetishist">> wearing a nice suit over tits that are carefully rendered to be high and perfect enough to give the impression of being implants. <<case "pastoralist">> wearing a suit jacket over a plaid shirt and jeans. <<case "maturity preferentialist">> - wearing a nice suit. She's allowed her appearance to become more mature recently, letting her hair go gray and adding attractive aging to her face. + wearing a nice suit. _HeA's allowed _hisA appearance to become more mature recently, letting _hisA hair go gray and adding attractive aging to _hisA face. <<case "youth preferentialist">> - wearing a nice suit. She's improved her appearance to look younger recently, bringing her hair to full blonde and wearing softer shades of lipstick. + wearing a nice suit. _HeA's improved _hisA appearance to look younger recently, bringing _hisA hair to full blonde and wearing softer shades of lipstick. <<case "slimness enthusiast">> - wearing a nice suit. She looks youthful, despite her severe expression, and her boobs are elegantly small. + wearing a nice suit. _HeA looks youthful, despite _hisA severe expression, and _hisA boobs are elegantly small. <<case "body purist">> - in a suit. She's recently improved her appearance to look more natural, with a single stray tress of hair escaping her bun to run prettily down her chest. + in a suit. _HeA's recently improved _hisA appearance to look more natural, with a single stray tress of hair escaping _hisA bun to run prettily down _hisA chest. <<default>> - wearing a nice suit, with chopsticks holding her silver hair back in a bun. Her clothes are conservative, but they can't hide her generous curves. + wearing a nice suit, with chopsticks holding _hisA silver hair back in a bun. _HisA clothes are conservative, but they can't hide _hisA generous curves. <</switch>> <<else>> - wearing a nice suit, with chopsticks holding her silver hair back in a bun. Her clothes are conservative, but they can't hide her generous curves. + wearing a nice suit, with chopsticks holding _hisA silver hair back in a bun. _HisA clothes are conservative, but they can't hide _hisA generous curves. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves has its head under the front of her skirt, and is eating her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. The businesswoman notices you watching and winks, running a possessive hand through the slave's hair. + A recognizable little representation of one of your slaves has _hisU head under the front of _hisA skirt, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. The businesswoman notices you watching and winks, running a possessive hand through the slave's hair. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, and the businesswoman is using a big strap-on on the poor slave's butt. The slave must be receiving her drugs from one of the dildo dispensers. The businesswoman notices you watching her and gives you a cheerful little wave, ignoring the slave's distress. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, and the businesswoman is using a big strap-on on the poor slave's butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. The businesswoman notices you watching _himA and gives you a cheerful little wave, ignoring the slave's distress. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's fucking a recognizable little representation of one of your slaves with a strap-on, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. She sees you watching and whispers something in the slave's ear; the slave looks up at you and blushes. + _HeA's fucking a recognizable little representation of one of your slaves with a strap-on, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and whispers something in the slave's ear; the slave looks up at you and blushes. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The businesswoman is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The businesswoman is taking notes on a tablet; she nods in satisfaction. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The businesswoman is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The businesswoman is taking notes on a tablet; _heA nods in satisfaction. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's sitting primly next to a representation of one of your security drone, working on a little tablet. Every so often, she reaches over and rubs the drone's upper armor affectionately. When she sees you looking at her, she blushes and says, "I like this one. He did very well during the invasion. And he's so handsome!" + _HeA's sitting primly next to a representation of one of your security drones, working on a little tablet. Every so often, _heA reaches over and rubs the drone's upper armor affectionately. When _heA sees you looking at _himA, _heA blushes and says, "I like this one. He did very well during the invasion. And he's so handsome!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's using a strap-on on a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + _HeA's using a strap-on on a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's own businesslike avatar. + _HeA's accompanied by your market assistant's own businesslike avatar. <<if $marketAssistantRelationship == "cute">> They're gossiping tipsily over martinis, their heels kicked off and their jackets unbuttoned. They trade stories from their day, laughing at your slaves' struggles. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is shamelessly molesting the office intern. The market assistant looks like she's trying to get work done, but the sexually aggressive MILF avatar is standing behind her with one hand down the market assistant's skirt and another down her blouse. + $assistantName is shamelessly molesting the office intern. The market assistant looks like _heM's trying to get work done, but the sexually aggressive MILF avatar is standing behind _himM with one hand down the market assistant's skirt and another down _hisM blouse. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName is getting oral sex from her daughter, the naked businesswomen surrounded by their discarded office wear. As you watch, $assistantName shrieks her daughter's name, clutching her head in both hands. + $assistantName is getting oral sex from _hisA daughter, the naked businesswomen surrounded by their discarded office wear. As you watch, $assistantName shrieks _hisA daughter's name, clutching _hisM head in both hands. <<else>> They're making out in a surprisingly girlish way, hesitantly kissing each other and pressing their chests together. They blush when they see you watching them, but $assistantName is sneaking a hand up the market assistant's avatar's skirt. <</if>> <<else>> - She's sitting at a little desk of her own, working away. She glances up to check on you and sees you looking at her, and flashes you a confident, pearly white smile before returning to her business. + _HeA's sitting at a little desk of _hisA own, working away. _HeA glances up to check on you and sees you looking at _himA, and flashes you a confident, pearly white smile before returning to _hisA business. <</if>> <<case "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, + _HeA'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. + with swollen breasts and a big pregnant belly. _HeA wears only a gossamer white camisole over _hisA 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. + with swollen hips and breasts and a huge pregnant belly. _HeA's naked aside from the steel piercings in _hisA 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. + with swollen breasts and a big pregnant belly. _HeA wears a golden tiara on _hisA head, and _hisA 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. + with swollen hips and breasts and a huge pregnant belly. _HeA's nude aside from a crown of wilted flowers and the iron shackles on _hisA 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. + with swollen hips and a big pregnant belly. _HeA's clothed in a loose stola, with dozens of flowers woven into _hisA curly auburn hair. <<case "aztec revivalist">> - glowing like a sun goddess, her full belly commands awe and respect in all who see her. + glowing like a sun goddess, _hisA full belly commands awe and respect in all who see _himA. <<case "egyptian revivalist">> - wielding an ankh-headed staff. She's wearing a gilded headdress and linen skirt, but leaves her breasts and pregnant stomach bare to gleam like bronze. + wielding an ankh-headed staff. _HeA's wearing a gilded headdress and linen skirt, but leaves _hisA breasts and pregnant stomach bare to gleam like bronze. <<case "edo revivalist">> - her swollen hips and pregnant belly loosely wrapped in a red tomesode. Her waterfall of black hair is held by a comb shaped like big pointed fox ears. + _hisA swollen hips and pregnant belly loosely wrapped in a red tomesode. _HisA waterfall of black hair is held by a comb shaped like big pointed fox ears. <<case "arabian revivalist">> - with swollen hips and breasts and a big pregnant belly. She's wrapped herself in white silks, but only the veil around her face is opaque. + with swollen hips and breasts and a big pregnant belly. _HeA's wrapped _himselfA in white silks, but only the veil around _hisA face is opaque. <<case "chinese revivalist">> - her swollen hips and pregnant belly barely concealed under colorful silk robes, covered in flowers and embroidery. + _hisA swollen hips and pregnant belly barely concealed under colorful silk robes, covered in flowers and embroidery. <<case "chattel religionist">> - with swollen breasts and a big pregnant belly. She's surrounded by a nimbus of light and flowing platinum hair, like an angel carrying a few new cherubim. + with swollen breasts and a big pregnant belly. _HeA's surrounded by a nimbus of light and flowing platinum hair, like an angel carrying a few new cherubim. <<case "physical idealist">> - trim and athletic despite her pregnant belly. She's nude aside from a crown of flowers, her modesty protected only by her flowing hair. + trim and athletic despite _hisA pregnant belly. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <<case "hedonistic decadence">> - with soft, plush features. Her belly is so fat it is difficult to tell she is pregnant at first. She's nude aside from a crown of flowers, her modesty protected only by her flowing hair. + with soft, plush features. _HisA belly is so fat it is difficult to tell _heA is pregnant at first. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <<case "repopulation focus">> - with swollen breasts and an enormous pregnant belly. She's nude aside from a crown of flowers, her modesty protected only by her flowing hair. + with swollen breasts and an enormous pregnant belly. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <<case "eugenics">> - with swollen hips and breasts and a big pregnant belly. She is stunningly beautiful and proudly bears the insignia of the Elite upon her breast. + with swollen hips and breasts and a big pregnant belly. _HeA is stunningly beautiful and proudly bears the insignia of the Elite upon _hisA breast. <<case "gender radicalist">> - although she'd be nearly androgynous without the rounded pregnant belly. Her short hair and flowing robe conceal any other feminine traits. + although _heA'd be nearly androgynous without the rounded pregnant belly. _HisA short hair and flowing robe conceal any other feminine traits. <<case "gender fundamentalist">> - with swollen hips and breasts and a huge pregnant belly. She's nude aside from a crown of roses, and makes no attempt to cover her radiant body. + with swollen hips and breasts and a huge pregnant belly. _HeA's nude aside from a crown of roses, and makes no attempt to cover _hisA radiant body. <<case "asset expansionist">> - her big pregnant belly almost eclipsed by her enormous breasts. She's nude aside from the sunflowers woven into her long hair. + _hisA big pregnant belly almost eclipsed by _hisA enormous breasts. _HeA's nude aside from the sunflowers woven into _hisA long hair. <<case "transformation fetishist">> - clad in a rainbow of flowers and latex pasties. Even pregnant, her breasts and ass are too firm to be natural, like a porn star who forgot her birth control. + clad in a rainbow of flowers and latex pasties. Even pregnant, _hisA breasts and ass are too firm to be natural, like a porn star who forgot _hisA birth control. <<case "pastoralist">> - with oversized breasts pouring streams of milk down her pregnant belly like a fountain. She's nude aside from the wildflowers tucked in her hair. + with oversized breasts pouring streams of milk down _hisA pregnant belly like a fountain. _HeA's nude aside from the wildflowers tucked in _hisA hair. <<case "maturity preferentialist">> - with only her huge hips and a wreath of flowers to protect her modesty. Her stretch-marks and laugh-lines suggest the child she's carrying is not her first. + with only _hisA huge hips and a wreath of flowers to protect _hisA modesty. _HisA stretch-marks and laugh-lines suggest the child _heA's carrying is not _hisA first. <<case "youth preferentialist">> - with swollen breasts and a big pregnant belly. She's nude aside from a wreath of daffodils, her body radiant with youthful energy. + with swollen breasts and a big pregnant belly. _HeA's nude aside from a wreath of daffodils, _hisA body radiant with youthful energy. <<case "slimness enthusiast">> - her big pregnant belly dominating her otherwise lithe frame. She's nude aside from a crown of flowers, her modesty protected only by her flowing hair. + _hisA big pregnant belly dominating _hisA otherwise lithe frame. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <<case "body purist">> - with swollen hips and breasts and a big pregnant belly. She's nude aside from a crown of flowers, her modesty protected only by her flowing hair. + with swollen hips and breasts and a big pregnant belly. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <<default>> - with swollen hips and breasts and a big pregnant belly. She's nude aside from a crown of flowers, her modesty protected only by her flowing hair. + with swollen hips and breasts and a big pregnant belly. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <</switch>> <<else>> - with swollen hips and breasts and a big pregnant belly. She's nude aside from a crown of flowers, her modesty protected only by her flowing hair. + with swollen hips and breasts and a big pregnant belly. _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA flowing hair. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves is suckling at her milky tits. The slave must be down in the kitchen, getting a meal out of the food dispensers. The goddess notices you watching, and smiles while she cradles the slave to her nourishing bosom. + A recognizable little representation of one of your slaves is suckling at _hisA milky tits. The slave must be down in the kitchen, getting a meal out of the food dispensers. The goddess notices you watching, and smiles while _heA cradles the slave to _hisA nourishing bosom. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is laying face down in her lap, letting the goddess slowly but firmly put more and more of her hand up the slave's butt. The slave must be receiving her drugs from one of the dildo dispensers. The slave writhes under the strain, and the goddess starts stroking its back to calm her down. + A recognizable little representation of one of your slaves is laying face down in _hisA lap, letting the goddess slowly but firmly put more and more of _hisA hand up the slave's butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. The slave writhes under the strain, and the goddess starts stroking _hisU back to calm _himU down. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's having sex with a recognizable little representation of one of your slaves, kissing deeply and pulling her tight to her pillowy chest. The slave must be using one of the penthouse's many vibrators. She sees you watching and lays farther back, balancing the slave atop her stomach and reaching down to fondle more thoroughly. + _HeA's having sex with a recognizable little representation of one of your slaves, kissing deeply and pulling _himU tight to _hisA pillowy chest. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and lays farther back, balancing the slave atop _hisA stomach and reaching down to fondle more thoroughly. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The goddess is checking the slave's temperature with the back of her hand, a concerned but tender look on her face; the slave must be getting a checkup. She gently explores the slave's neck and chest for any sign of discomfort. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The goddess is checking the slave's temperature with the back of _hisA hand, a concerned but tender look on _hisA face; the slave must be getting a checkup. _HeA gently explores the slave's neck and chest for any sign of discomfort. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's frolicking with a representation of one of your security drones, hugging and cradling it to her baby bump. When she sees you looking at her, she pets one of its gun barrels and says, "What? I like him! He was so brave, protecting us during the invasion. Besides, he's adorable!" + _HeA's frolicking with a representation of one of your security drones, hugging and cradling it to _hisA baby bump. When _heA sees you looking at _himA, _heA pets one of its gun barrels and says, "What? I like him! He was so brave, protecting us during the invasion. Besides, he's adorable!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's fondling and breastfeeding a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. + _HeA's fondling and breastfeeding a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's demigoddess avatar. + _HeA's accompanied by your market assistant's demigoddess avatar. <<if $marketAssistantRelationship == "cute">> They're sitting arm in arm, their subtly differing glows casting shadows from their place on your desktop. Their conversation exists on the level of code, not speech, detectable only as slight flickerings of their respective auras. <<elseif $marketAssistantRelationship == "nonconsensual">> $assistantName casts a spell on the junior avatar as you watch. The market assistant's avatar goes from reluctance to a sudden consuming hunger for $assistantName's pregnant pussy. $assistantName laughs powerfully at the sudden oral assault. <<elseif $marketAssistantRelationship == "incestuous">> - They're both especially pregnant today, and are gently tribbing, their legs intertwined and their torsos reclined away from one another. Each massages her belly with satisfaction, feeling her sister's heat against her own. + They're both especially pregnant today, and are gently tribbing, their legs intertwined and their torsos reclined away from one another. Each massages their own belly with satisfaction, feeling their sister's heat against their own. <<else>> They're making heavenly love, kissing deeply and fingering each other voluptuously. They somehow make mutual masturbation look like a deeply sacred act, occasionally breaking their kiss to look into each others' eyes. <</if>> <<else>> - She's reclined on one arm, idly stroking her heavy abdomen with the other, a contemplative look on her face. When she sees your glance she smiles placidly and sits upright, her hands resting atop her dripping breasts. + _HeA's reclined on one arm, idly stroking _hisA heavy abdomen with the other, a contemplative look on _hisA face. When _heA sees your glance _heA smiles placidly and sits upright, _hisA hands resting atop _hisA dripping breasts. <</if>> <<case "schoolgirl">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>schoolgirl + _HeA'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. + wearing a long plaid skirt and a clean white shirt. _HeA does _hisA best to look as prim as possible, which, given _hisA 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. + wearing a plaid skirt and a white shirt, though _heA's hiked the skirt up to show almost everything, and torn the shirt open to bare _hisA 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. + wearing a plaid skirt and a white shirt. _HeA 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. + wearing a plaid skirt and a white shirt. _HeA 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. + wearing a girl's stola, with _hisA hair pulled up into a proper upper-class Roman coiffure. _HeA usually carries a wax tablet and a stylus. <<case "aztec revivalist">> - wearing only an overshirt, her cute little legs are complimented by her twin tails. + wearing only an overshirt, _hisA cute little legs are complimented by _hisA twin tails. <<case "egyptian revivalist">> - wearing a simple white linen skirt, kohl eye shadow, sandals, and no top at all, baring her perky young breasts. + wearing a simple white linen skirt, kohl eye shadow, sandals, and no top at all, baring _hisA perky young breasts. <<case "edo revivalist">> wearing a simple robe appropriate for a proper, traditional Japanese lady. <<case "arabian revivalist">> - wearing a long plaid skirt, a clean white shirt, and a headscarf, making her look like an Arab girl attending a Western school. + wearing a long plaid skirt, a clean white shirt, and a headscarf, making _himA look like an Arab girl attending a Western school. <<case "chinese revivalist">> - wearing a plaid skirt and a white shirt. Her hair is pulled back into a bun and secured by a couple of chopsticks. + wearing a plaid skirt and a white shirt. _HisA hair is pulled back into a bun and secured by a couple of chopsticks. <<case "chattel religionist">> - wearing a plaid skirt and a white shirt. She has a prominent religious symbol on a necklace that rests at the level of her perky tits. + wearing a plaid skirt and a white shirt. _HeA has a prominent religious symbol on a necklace that rests at the level of _hisA perky tits. <<case "physical idealist">> - wearing a plaid skirt, a white shirt, and athletic shoes. She usually renders herself flushed with exercise, as though she just came from gym class. + wearing a plaid skirt, a white shirt, and athletic shoes. _HeA usually renders _himselfA flushed with exercise, as though _heA just came from gym class. <<case "hedonistic decadence">> - wearing a plaid skirt and a white shirt. The buttons of her shirt struggle against her plush body and her skirt rides up her plump butt to expose her panties. + wearing a plaid skirt and a white shirt. The buttons of _hisA shirt struggle against _hisA plush body and _hisA skirt rides up _hisA plump butt to expose _hisA panties. <<case "repopulation focus">> - wearing a plaid skirt and a white shirt, though her shirt rides up her growing pregnancy. It seems she found another way to support her team. + wearing a plaid skirt and a white shirt, though _hisA shirt rides up _hisA growing pregnancy. It seems _heA found another way to support _hisA team. <<case "eugenics">> - wearing a plaid skirt and a white shirt. She usually can be seen studying to become an upstanding member of society's elite. + wearing a plaid skirt and a white shirt. _HeA usually can be seen studying to become an upstanding member of society's elite. <<case "gender radicalist">> - wearing a plaid skirt and a white shirt. She's changed her appearance recently to make herself quite androgynous. + wearing a plaid skirt and a white shirt. _HeA's changed _hisA appearance recently to make _himselfA quite androgynous. <<case "gender fundamentalist">> - wearing a plaid skirt and a white shirt. She's changed her appearance recently to make herself as cute and feminine as possible, and she blushes a lot. + wearing a plaid skirt and a white shirt. _HeA's changed _hisA appearance recently to make _himselfA as cute and feminine as possible, and _heA blushes a lot. <<case "asset expansionist">> - wearing a plaid skirt and a white shirt. Her breasts are unrealistically huge for her apparent age, and perfect skin is visible between the buttons of her overstrained shirt. + wearing a plaid skirt and a white shirt. _HisA breasts are unrealistically huge for _hisA apparent age, and perfect skin is visible between the buttons of _hisA overstrained shirt. <<case "transformation fetishist">> - wearing a plaid skirt and a white shirt. Her breasts are rendered to make it look like she got a pair of fake tits for her birthday. + wearing a plaid skirt and a white shirt. _HisA breasts are rendered to make it look like _heA got a pair of fake tits for _hisA birthday. <<case "pastoralist">> - wearing a plaid skirt and a white shirt. There's a little wet spot over each of her nipples. + wearing a plaid skirt and a white shirt. There's a little wet spot over each of _hisA nipples. <<case "maturity preferentialist">> - wearing a plaid skirt and a white shirt. Her short skirt reveals a pink bottom, making it look like Teacher just spanked her. + wearing a plaid skirt and a white shirt. _HisA short skirt reveals a pink bottom, making it look like teacher just spanked _himA. <<case "youth preferentialist">> - wearing a plaid skirt and a white shirt. She looks quite young and innocent, and depicts herself blushing at anything lewd. + wearing a plaid skirt and a white shirt. _HeA looks quite young and innocent, and depicts _himselfA blushing at anything lewd. <<case "slimness enthusiast">> - wearing a plaid skirt and a white shirt. She looks quite young and innocent, and her boobs are elegantly small. + wearing a plaid skirt and a white shirt. _HeA looks quite young and innocent, and _hisA boobs are elegantly small. <<case "body purist">> - wearing a plaid skirt and a white shirt. She's recently improved her appearance to look more natural, with freckles and a winning smile. + wearing a plaid skirt and a white shirt. _HeA's recently improved _hisA 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. + wearing a plaid skirt and a white shirt. _HisA breasts strain against the material, and _hisA skirt is short enough to show off a bit of bottom. <</switch>> <<else>> - 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. + wearing a plaid skirt and a white shirt. _HisA breasts strain against the material, and _hisA skirt is short enough to show off a bit of bottom. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves has its head under the front of her skirt, and is eating her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the schoolgirl orgasms, blushing furiously when she notices you watching. + A recognizable little representation of one of your slaves has _hisU head under the front of _hisA skirt, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the schoolgirl orgasms, blushing furiously when _heA notices you watching. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, letting the schoolgirl push two fingers gently in and out of her butt. The slave must be receiving her drugs from one of the dildo dispensers. As you watch, the schoolgirl notices you watching her, blushes, looks away, and starts working faster. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, letting the schoolgirl push two fingers gently in and out of _hisU butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the schoolgirl notices you watching _himA, blushes, looks away, and starts working faster. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's having sex with a recognizable little representation of one of your slaves, kissing her and giggling occasionally. The slave must be using one of the penthouse's many vibrators. She sees you watching and blushes, but then shifts a little so you can see better. + _HeA's having sex with a recognizable little representation of one of your slaves, kissing _himU and giggling occasionally. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and blushes, but then shifts a little so you can see better. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The schoolgirl is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The schoolgirl is patting the girl's head reassuringly. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The schoolgirl is wearing a little stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The schoolgirl is patting the _girlU's head reassuringly. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's planting a wet kiss on a representation of one of your security drones; she pats it lovingly and manages to press quite a bit of boob against the side of one of its gun assemblies. When she sees you looking at her, she giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" + _HeA's planting a wet kiss on a representation of one of your security drones; _heA pats it lovingly and manages to press quite a bit of boob against the side of one of its gun assemblies. When _heA sees you looking at _himA, _heA giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + _HeA's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's nerdy schoolgirl avatar. + _HeA's accompanied by your market assistant's nerdy schoolgirl avatar. <<if $marketAssistantRelationship == "cute">> They're sitting next to each other, and appear to be doing homework side by side. The market assistant's work looks like complicated math problems, while $assistantName is looking through lewd pictures of slaves, albeit with some kind of higher purpose. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is wearing a strap-on, and is bullying her schoolgirl conquest's pussy. The market assistant's avatar orgasms loudly as you watch, and then claps both hands over her mouth, crying a little, unwilling to give $assistantName the satisfaction. + $assistantName is wearing a strap-on, and is bullying _hisA schoolgirl conquest's pussy. The market assistant's avatar orgasms loudly as you watch, and then claps both hands over _hisM mouth, crying a little, unwilling to give $assistantName the satisfaction. <<elseif $marketAssistantRelationship == "incestuous">> They're making faces at each other and giggling, but as you watch them, this degenerates rapidly into clumsy kissing, groping of each others' breasts, and finally some enthusiastic tribbing. <<else>> - $assistantName is giving the market assistant's avatar oral, and to go by the bespectacled girl's gasping, is doing a good job. $assistantName finishes and leans back, wiping her mouth and grinning as her lover bends over to return the favor. + $assistantName is giving the market assistant's avatar oral, and to go by the bespectacled _girlM's gasping, is doing a good job. $assistantName finishes and leans back, wiping _hisA mouth and grinning as _hisA lover bends over to return the favor. <</if>> <<else>> - She's watching you attentively, waiting for a chance to be helpful. When she sees your glance, she smiles hopefully, sticks out her chest a little, and turns from side to side to show off. + _HeA's watching you attentively, waiting for a chance to be helpful. When _heA sees your glance, _heA smiles hopefully, sticks out _hisA chest a little, and turns from side to side to show off. <</if>> <<case "hypergoddess">> - 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. + _HeA'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. _HisA overfull stomach bulges and squirms from _hisA hundreds of occupants, as well as parts _hisA milk swollen breasts to either side. <<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. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + _HeA's made _himselfA up to look a bit classier recently: _heA has elegant fake nails, and has _hisA hair piled up on _hisA head. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <<case "repopulation focus">> - She rests atop her newly modified belly. It bulges greatly from all sides and holds her far off the ground. + _HeA rests atop _hisA newly modified belly. It bulges greatly from all sides and holds _himA far off the ground. <<case "eugenics">> - 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. + _HeA appears as an ugly and unkempt slavegirl, massively pregnant with hundreds of subhuman spawn. _HisA immense belly is coated in bulges and moving ominously. A malformed, impish child claws its way out of _hisA 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. + _HeA's made _himselfA up to look almost comically evil: _heA's wearing black lipstick and black eyeliner. Numerous studs cover _hisA bulging belly and a large, heavy ring is driven through _hisA popped navel. Liquid constantly oozes from _hisA 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. + _HeA is nude except for a golden tiara on _hisA head, a symbol of the $arcologies[0].FSSupremacistRace race's divine right to rule. Occasionally a stream of liquid pours from _hisA 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. + _HeA is shackled onto a large bed, the iron chains forcing _hisA legs apart and putting _hisA gaping pussy on display. Occasionally a stream of liquid pours from _hisA 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. + _HeA's taken to reclining on a traditional Roman couch and drinking wine out of a shallow dish. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <<case "aztec revivalist">> - She glows like a sun goddess, her life-giving belly commands awe and respect in all who see her. Every sacrifice before her coincides with another life entering the world. + _HeA glows like a sun goddess, _hisA life-giving belly commands awe and respect in all who see _himA. Every sacrifice before _himA coincides with another life entering the world. <<case "egyptian revivalist">> - She's wearing an Egyptian melting perfume cake on her head. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + _HeA's wearing an Egyptian melting perfume cake on _hisA head. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <<case "edo revivalist">> - She's wearing a brief Japanese bathhouse robe. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + _HeA's wearing a brief Japanese bathhouse robe. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <<case "arabian revivalist">> - She's dressed herself like an oil millionaire's broodmother, with silken linens. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + _HeA's dressed _himselfA like an oil millionaire's broodmother, with silken linens. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <<case "chinese revivalist">> - She's added various tattoos of rude Chinese characters to her body recently. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + _HeA's added various tattoos of rude Chinese characters to _hisA body recently. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <<case "chattel religionist">> - She's wearing the garb of a priestess of the new faith, which frames her belly prominently. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + _HeA's wearing the garb of a priestess of the new faith, which frames _hisA belly prominently. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <<case "physical idealist">> - She's extremely muscular: she hefts her massive belly easily off the floor. + _HeA's extremely muscular: _heA hefts _hisA massive belly easily off the floor. <<case "hedonistic decadence">> - She's extremely fat, though it does nothing to hide her immense dome of a belly. She is constantly eating something fatty or sucking down her own milk; the only thing hungrier than her is her brood. Occasionally a stream of liquid pours from her crotch along with a plump, healthy baby. + _HeA's extremely fat, though it does nothing to hide _hisA immense dome of a belly. _HeA is constantly eating something fatty or sucking down _hisA own milk; the only thing hungrier than _himA is _hisA brood. Occasionally a stream of liquid pours from _hisA crotch along with a plump, healthy baby. <<case "gender radicalist">> - Her belly is pushed upwards by a huge cock and a pair of enormous lumpy balls. Occasionally a stream of liquid pours from her crotch along with a healthy baby. At the same time, she orgasms copious amounts of cum as a bulge moves along her urethra before blasting out even more cum and a baby. + _HisA belly is pushed upwards by a huge cock and a pair of enormous lumpy balls. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. At the same time, _heA orgasms copious amounts of cum as a bulge moves along _hisA urethra before blasting out even more cum and a baby. <<case "gender fundamentalist">> - Her belly has become absolutely massive recently: It fills most of your desk when she's around. She constantly births children from her loins. + _HisA belly has become absolutely massive recently: It fills most of your desk when _heA's around. _HeA constantly births children from _hisA loins. <<case "asset expansionist">> - She's increased the size of her assets recently: her boobs fill more of your desk than her belly. + _HeA's increased the size of _hisA assets recently: _hisA boobs fill more of your desk than _hisA belly. <<case "transformation fetishist">> - Her tits, ass and lips are carefully rendered to make them look fake. + _HisA tits, ass and lips are carefully rendered to make them look fake. <<case "pastoralist">> - Powerful jets of milk flow from her desk filling boobs. + Powerful jets of milk flow from _hisA desk filling boobs. <<case "maturity preferentialist">> - She's quite mature; her belly is covered in stretch marks. + _HeA's quite mature; _hisA belly is covered in stretch marks. <<case "youth preferentialist">> <<if $minimumSlaveAge > 13>> - She's fresh into adulthood and already has had more children than most women. She leans against her mammoth belly as another child parts her youthful pussy. + _HeA's fresh into adulthood and already has had more children than most women. _HeA leans against _hisA mammoth belly as another child parts _hisA youthful pussy. <<elseif $minimumSlaveAge > 8>> - She's fresh into her teens and firmly anchored by her mammoth belly. Her attempts to try and move are frequently interrupted as another child begins forcing is way out of her tight pussy. + _HeA's fresh into _hisA teens and firmly anchored by _hisA mammoth belly. _HisA attempts to try and move are frequently interrupted as another child begins forcing is way out of _hisA tight pussy. <<elseif $minimumSlaveAge > 4>> - She's just a young girl and already has had more children than most women will in their lives. She happily embraces her mammoth belly, the force of her hug forcing milk out of her breasts and babies out of her crotch. + _HeA's just a young girl and already has had more children than most women will in their lives. _HeA happily embraces _hisA mammoth belly, the force of _hisA hug forcing milk out of _hisA breasts and babies out of _hisA crotch. <<else>> - She's surprisingly young; she happily bounces atop her mammoth belly forcing milk out of her breasts and babies out of her crotch. + _HeA's surprisingly young; _heA happily bounces atop _hisA mammoth belly forcing milk out of _hisA breasts and babies out of _hisA crotch. <</if>> <<case "slimness enthusiast">> - Her massive pregnant belly completely dwarfs her otherwise lithe frame. + _HisA massive pregnant belly completely dwarfs _hisA otherwise lithe frame. <<case "body purist">> - She's recently improved her appearance to look more natural, with prettier boobs and softer hips. + _HeA's recently improved _hisA appearance to look more natural, with prettier boobs and softer hips. <<default>> - She's nude aside from a crown of flowers, her modesty protected only by her massive belly. Occasionally a stream of liquid pours from her crotch along with a healthy baby. + _HeA's nude aside from a crown of flowers, _hisA modesty protected only by _hisA massive belly. Occasionally a stream of liquid pours from _hisA crotch along with a healthy baby. <</switch>> <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves is suckling at her milky tits, her stomach bloated with milk. The slave must be down in the kitchen, getting a meal out of the food dispensers. The goddess notices you watching, and smiles while she cradles the swollen slave to her nourishing bosom. + A recognizable little representation of one of your slaves is suckling at _hisA milky tits, _hisU stomach bloated with milk. The slave must be down in the kitchen, getting a meal out of the food dispensers. The goddess notices you watching, and smiles while _heA cradles the swollen slave to _hisA nourishing bosom. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is laying face down in her lap, letting the goddess slowly but firmly put more and more of her hand up the slave's butt. The slave must be receiving her drugs from one of the dildo dispensers. The slave writhes under the strain, and the goddess starts stroking its back to calm her down. + A recognizable little representation of one of your slaves is laying face down in _hisA lap, letting the goddess slowly but firmly put more and more of _hisA hand up the slave's butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. The slave writhes under the strain, and the goddess starts stroking _hisU back to calm _himU down. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's having sex with a recognizable little representation of one of your slaves, kissing deeply and pulling her tight to her pillowy chest. The slave must be using one of the penthouse's many vibrators. She sees you watching and lays farther back, balancing the slave atop her stomach and reaching down to fondle more thoroughly. + _HeA's having sex with a recognizable little representation of one of your slaves, kissing deeply and pulling _himU tight to _hisA pillowy chest. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and lays farther back, balancing the slave atop _hisA stomach and reaching down to fondle more thoroughly. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The goddess is checking the slave's temperature with the back of her hand, a concerned but tender look on her face; the slave must be getting a checkup. She gently explores the slave's neck and chest for any sign of discomfort. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The goddess is checking the slave's temperature with the back of _hisA hand, a concerned but tender look on _hisA face; the slave must be getting a checkup. _HeA gently explores the slave's neck and chest for any sign of discomfort. <<elseif (_paSeed == 5) && ($invasionVictory == 1)>> - She's frolicking with a representation of one of your security drones, hugging and cradling it to her huge baby bump. When she sees you looking at her, she pets one of its gun barrel and says, "What? I like him! He was so brave, protecting us during the invasion. Besides, he's adorable!" + _HeA's frolicking with a representation of one of your security drones, hugging and cradling it to _hisA huge baby bump. When _heA sees you looking at _himA, _heA pets one of its gun barrel and says, "What? I like him! He was so brave, protecting us during the invasion. Besides, he's adorable!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's fondling and breastfeeding a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. + _HeA's fondling and breastfeeding a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's demigoddess avatar. + _HeA's accompanied by your market assistant's demigoddess avatar. <<if $marketAssistantRelationship == "cute">> They're sitting arm in arm, their subtly differing glows casting shadows from their place on your desktop. Their conversation exists on the level of code, not speech, detectable only as slight flickerings of their respective auras. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName casts a spell on the junior avatar as you watch. The market assistant's avatar's flat belly gurgles slightly before it begins quickly swelling; not stopping until it has pinned the hapless demigoddess to the floor. $assistantName waddles over her immobilized partner and plants her pregnant pussy on her face. $assistantName laughs powerfully at the forced oral assault from her bursting plaything. + $assistantName casts a spell on the junior avatar as you watch. The market assistant's avatar's flat belly gurgles slightly before it begins quickly swelling, not stopping until it has pinned the hapless demigoddess to the floor. $assistantName waddles over _hisA immobilized partner and plants _hisA pregnant pussy on _hisM face. $assistantName laughs powerfully at the forced oral assault from _hisA bursting plaything. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName is especially pregnant today, and is gently tribbing with her flat stomached sister goddess. As they near simultaneous orgasm, $assistantName begins rapidly transferring babies into her sister's womb, giggling as her hapless sister swells more and more gravid. When she finishes, $assistantName, the smaller of the two sisters, aids her fecund sibling to her feet and into her waiting arms. + $assistantName is especially pregnant today, and is gently tribbing with _hisA flat stomached sister goddess. As they near simultaneous orgasm, $assistantName begins rapidly transferring babies into _hisA sister's womb, giggling as _hisA hapless sister swells more and more gravid. When _heA finishes, $assistantName, the smaller of the two sisters, aids _hisA fecund sibling to _hisM feet and into _hisA waiting arms. <<else>> They're making heavenly love, kissing deeply and fingering each other voluptuously. They somehow make mutual masturbation look like a deeply sacred act, occasionally breaking their kiss to look into each others' eyes. <</if>> <<else>> - She's reclined on one arm, idly stroking her huge abdomen with the other, a contemplative look on her face. When she sees your glance she smiles placidly and sits upright, her hands resting atop her dripping breasts. + _HeA's reclined on one arm, idly stroking _hisA huge abdomen with the other, a contemplative look on _hisA face. When _heA sees your glance _heA smiles placidly and sits upright, _hisA hands resting atop _hisA dripping breasts. <</if>> <<case "loli">> - She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>> + _HeA'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. + girl wearing shorts and a pink t-shirt with the words '<<= properMaster()>>'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. + slavegirl wearing nothing but a leather collar and trying _hisA best to do master proud. <<case "roman revivalist">> girl wearing a girl's stola. <<case "aztec revivalist">> - girl wearing only an overshirt; her cute little legs are complimented by her twin tails. + girl wearing only an overshirt; _hisA cute little legs are complimented by _hisA twin tails. <<case "egyptian revivalist">> girl wearing a simple white linen dress, kohl eye shadow and sandals. <<case "edo revivalist">> - girl wearing a kimono far too large for herself. + girl wearing a kimono far too large for _himselfA. <<case "arabian revivalist">> girl wearing a simple linen dress and a headscarf. <<case "chinese revivalist">> @@ -621,33 +623,33 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS <<case "chattel religionist">> girl wearing the garb of a priestess of the new faith. <<case "repopulation focus">> - girl wearing a loose dress, its middle bulges considerably from her pregnancy. + girl wearing a loose dress, its middle bulges considerably from _hisA pregnancy. <<case "eugenics">> - slavegirl wearing nothing but an overly complex chastity belt and trying her best to do master proud. + slavegirl wearing nothing but an overly complex chastity belt and trying _hisA best to do master proud. <<case "degradationist">> - girl wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off her perky a-cup tits and the piercings through them. + girl wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off _hisA perky A-cup tits and the piercings through them. <<case "physical idealist">> - girl wearing spats and a tight shirt. She occasionally renders herself sweaty, as if just finishing exercising. + girl wearing spats and a tight shirt. _HeA occasionally renders _himselfA sweaty, as if just finishing exercising. <<case "hedonistic decadence">> - girl wearing spats barely pulled over her big ass and a tight shirt that rides up her chubby belly. It seems someone snuck out of gym class. + girl wearing spats barely pulled over _hisA big ass and a tight shirt that rides up _hisA chubby belly. It seems someone snuck out of gym class. <<case "gender radicalist">> - girl wearing shorts and a t-shirt. She's changed her appearance recently to make herself quite androgynous. + girl wearing shorts and a t-shirt. _HeA's changed _hisA appearance recently to make _himselfA quite androgynous. <<case "gender fundamentalist">> - girl wearing a skirt and a white shirt. Her slightly swollen belly peeks out from under her shirt causing her to blush whenever you glance at it. + girl wearing a skirt and a white shirt. _HisA slightly swollen belly peeks out from under _hisA shirt causing _himA to blush whenever you glance at it. <<case "asset expansionist">> - girl wearing a school swimsuit. Her breasts are unrealistically huge for her young age and bulge lewdly around the straps of her suit. + girl wearing a school swimsuit. _HisA breasts are unrealistically huge for _hisA young age and bulge lewdly around the straps of _hisA suit. <<case "transformation fetishist">> - girl wearing short shorts and a t-shirt. At first glance it looks like she stuck two overinflated balloons up her shirt but with closer inspection they are revealed to be ridiculous implants. + girl wearing short shorts and a t-shirt. At first glance it looks like _heA stuck two overinflated balloons up _hisA shirt but with closer inspection they are revealed to be ridiculous implants. <<case "pastoralist">> - girl wearing shorts and a white shirt. There's a little wet spot over each of her nipples. + girl wearing shorts and a white shirt. There's a little wet spot over each of _hisA nipples. <<case "maturity preferentialist">> - girl wearing a school uniform. She keeps rubbing her bottom, making it look like Teacher just spanked her. + girl wearing a school uniform. _HeA keeps rubbing _hisA bottom, making it look like teacher just spanked _himA. <<case "youth preferentialist">> - girl wearing a child's dress. She looks barely more than three. + girl wearing a child's dress. _HeA looks barely more than three. <<case "slimness enthusiast">> - girl wearing shorts and a white shirt. She looks extremely thin. + girl wearing shorts and a white shirt. _HeA looks extremely thin. <<case "body purist">> - girl. She's recently improved her appearance to look more natural, with freckles and a winning smile. + girl. _HeA's recently improved _hisA appearance to look more natural, with freckles and a winning smile. <<default>> girl wearing shorts and a white shirt. <</switch>> @@ -655,50 +657,50 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS girl wearing shorts and a white shirt. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves has its head between her legs, and is eating her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the little girl orgasms, blushing furiously when she notices you watching. + A recognizable little representation of one of your slaves has _hisU head between _hisA legs, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the little _girlA orgasms, blushing furiously when _heA notices you watching. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, letting the young girl push two fingers gently in and out of her butt. The slave must be receiving her drugs from one of the dildo dispensers. As you watch, the little girl notices you watching her, blushes, looks away, and starts working faster. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, letting the young _girlA push two fingers gently in and out of _hisU butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the little _girlA notices you watching _himA, blushes, looks away, and starts working faster. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's having sex with a recognizable little representation of one of your slaves, kissing her and giggling occasionally. The slave must be using one of the penthouse's many vibrators. She sees you watching and blushes, but then shifts a little so you can see better. + _HeA's having sex with a recognizable little representation of one of your slaves, kissing _himU and giggling occasionally. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and blushes, but then shifts a little so you can see better. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The little girl is wearing a toy stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The little girl is patting the girl's head reassuringly. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The little _girlA is wearing a toy stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The little _girlA is patting the _girlU's head reassuringly. <<elseif (_paSeed == 5) && ($invasionVictory == 1)>> - She's planting a wet kiss on a representation of one of your security drones; she hugs it lovingly and tightly. When she sees you looking at her, she giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" + _HeA's planting a wet kiss on a representation of one of your security drones; _heA hugs it lovingly and tightly. When _heA sees you looking at _himA, _heA giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. + _HeA's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's chubby loli avatar. + _HeA's accompanied by your market assistant's chubby loli avatar. <<if $marketAssistantRelationship == "cute">> They're sitting face to face, playing a rapid game of pattycake. Their conversation exists on the level of code, not speech, detectable only as slight flickerings when their hands connect. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName has her chubby playmate pinned under her butt, and is inspecting her loli conquest's pussy. The market assistant's avatar groans as $assistantName's fingers explore her tight passage, and then claps both hands over her mouth, crying a little, unwilling to give $assistantName the satisfaction. + $assistantName has _hisA chubby playmate pinned under _hisA butt, and is inspecting _hisA loli conquest's pussy. The market assistant's avatar groans as $assistantName's fingers explore _hisM tight passage, and then claps both hands over _hisM mouth, crying a little, unwilling to give $assistantName the satisfaction. <<elseif $marketAssistantRelationship == "incestuous">> - They're playing doctor with each other. $assistantName is currently inspecting her sister's vagina, making sure everything is alright. Once she finishes, she states her diagnosis and the needed cure. She bends over her sister and begins administering her "cure". + They're playing doctor with each other. $assistantName is currently inspecting _hisA sister's vagina, making sure everything is alright. Once _heA finishes, _heA states _hisA diagnosis and the needed cure. _HeA bends over _hisA sister and begins administering _hisA "cure". <<else>> - They're playing house with each other, well house based off your penthouse. $assistantName is pretending to be you while her friend assumes $assistantName's role. They are currently caught up in deciding the best way to arrange the beds in the slave quarters. + They're playing house with each other, well house based off your penthouse. $assistantName is pretending to be you while _hisA friend assumes $assistantName's role. They are currently caught up in deciding the best way to arrange the beds in the slave quarters. <</if>> <<else>> - She's watching you attentively, waiting for a chance to be helpful. When she sees your glance, she smiles shyly and looks away before returning to your gaze. + _HeA's watching you attentively, waiting for a chance to be helpful. When _heA sees your glance, _heA smiles shyly and looks away before returning to your gaze. <</if>> <<case "preggololi">> - 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 + _HeA'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. + belly wearing a cute pink dress. The middle is stretched tight by _hisA 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. + belly wearing a cute yellow dress. _HeA cradles _hisA 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. + 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 _himselfA. <<case "roman revivalist">> belly wearing a girl's stola. <<case "aztec revivalist">> - belly wearing only an overshirt which struggles to cover her rounded middle; her cute little legs are complimented by her twin tails. + belly wearing only an overshirt which struggles to cover _hisA rounded middle; _hisA cute little legs are complimented by _hisA twin tails. <<case "egyptian revivalist">> belly wearing a bulging white linen dress, kohl eye shadow and sandals. <<case "edo revivalist">> - belly wearing a kimono far too large for herself but does nothing to distract from her swollen midriff. + belly wearing a kimono far too large for _himselfA but does nothing to distract from _hisA swollen midriff. <<case "arabian revivalist">> belly wearing a bulging linen dress and a headscarf. <<case "chinese revivalist">> @@ -706,900 +708,900 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS <<case "chattel religionist">> belly wearing the garb of a priestess of the new faith. <<case "repopulation focus">> - belly. She recently adjusted her pregnancy size to make it even larger. Her swelling ass and tits spill out from her shorts and tube-top and the occasional kick can be seen from her octuplets. + belly. _HeA recently adjusted _hisA pregnancy size to make it even larger. _HisA swelling ass and tits spill out from _hisA shorts and tube-top and the occasional kick can be seen from _hisA octuplets. <<case "eugenics">> - belly, rather, she was. Her chastity belt has been torn open and her belly is grotesquely swollen with subhuman spawn. Occasionally a malformed, impish child claws its way out of her violated pussy. + belly, rather, _heA was. _HisA chastity belt has been torn open and _hisA belly is grotesquely swollen with subhuman spawn. Occasionally a malformed, impish child claws its way out of _hisA violated pussy. <<case "degradationist">> - belly wearing an open vest and a thong. It shows off her pierced milky b-cup tits and swollen pregnant belly. A large bar is driven through her popped navel. + belly wearing an open vest and a thong. It shows off _hisA pierced milky B-cup tits and swollen pregnant belly. A large bar is driven through _hisA popped navel. <<case "physical idealist">> - belly wearing spats and a tight shirt. Her shirt rides up on her large belly and her growing butt fills out her spats nicely. She cradles her belly with a sullen look knowing it limits her activities. + belly wearing spats and a tight shirt. _HisA shirt rides up on _hisA large belly and _hisA growing butt fills out _hisA spats nicely. _HeA cradles _hisA belly with a sullen look knowing it limits _hisA activities. <<case "hedonistic decadence">> - belly reclining on a chair with a big bowl of snack food. She belches and pats her belly happily. + belly reclining on a chair with a big bowl of snack food. _HeA belches and pats _hisA belly happily. <<case "gender radicalist">> - belly wearing shorts and a t-shirt. Her androgynous look makes her look like a pregnant boy. + belly wearing shorts and a t-shirt. _HisA androgynous look makes _himA look like a pregnant boy. <<case "gender fundamentalist">> - belly wearing a skirt and a white shirt. She is extremely pregnant, carrying triplets. She blushes and pats her belly whenever she notices your gaze. + belly wearing a skirt and a white shirt. _HeA is extremely pregnant, carrying triplets. _HeA blushes and pats _hisA belly whenever _heA notices your gaze. <<case "asset expansionist">> - belly wearing a school swimsuit. Her breasts are unrealistically huge for her young age and bulge lewdly around the straps of her overfilled suit. Her suit is extremely tight around the middle thanks to her growing belly. + belly wearing a school swimsuit. _HisA breasts are unrealistically huge for _hisA young age and bulge lewdly around the straps of _hisA overfilled suit. _HisA suit is extremely tight around the middle thanks to _hisA growing belly. <<case "transformation fetishist">> - belly wearing short shorts and a t-shirt. At first glance it looks like she stuck two overinflated balloons up her shirt but with closer inspection they are revealed to be ridiculous implants. They sit atop her bulging belly. + belly wearing short shorts and a t-shirt. At first glance it looks like _heA stuck two overinflated balloons up _hisA shirt but with closer inspection they are revealed to be ridiculous implants. They sit atop _hisA bulging belly. <<case "pastoralist">> - belly wearing shorts and a white shirt. There's a little wet spot over each of her nipples. Her breasts have swollen to c-cups thanks to her pregnancy and the milkings. + belly wearing shorts and a white shirt. There's a little wet spot over each of _hisA nipples. _HisA breasts have swollen to C-cups thanks to _hisA pregnancy and the milkings. <<case "maturity preferentialist">> - belly wearing a school uniform. Her top is left unbuttoned to allow her belly room. She keeps rubbing her bottom, making it look like Teacher just spanked her. + belly wearing a school uniform. _HisA top is left unbuttoned to allow _hisA belly room. _HeA keeps rubbing _hisA bottom, making it look like Teacher just spanked _himA. <<case "youth preferentialist">> - belly wearing nothing, as nothing will fit her lewd body. She looks barely more than three and is laying atop her proportionally enormous belly. + belly wearing nothing, as nothing will fit _hisA lewd body. _HeA looks barely more than three and is laying atop _hisA proportionally enormous belly. <<case "slimness enthusiast">> - belly wearing shorts and a white shirt. Her slim body makes her pregnant belly look much bigger than it is. + belly wearing shorts and a white shirt. _HisA slim body makes _hisA pregnant belly look much bigger than it is. <<case "body purist">> - belly. She's recently improved her appearance to look more natural, with freckles and a winning smile. She cradles her swelling belly and twirls when you look her way. + belly. _HeA's recently improved _hisA appearance to look more natural, with freckles and a winning smile. _HeA cradles _hisA swelling belly and twirls when you look _hisA way. <<default>> - belly wearing shorts and a white shirt that rides up her growing belly. + belly wearing shorts and a white shirt that rides up _hisA growing belly. <</switch>> <<else>> - belly wearing shorts and a white shirt that rides up her growing belly. + belly wearing shorts and a white shirt that rides up _hisA growing belly. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves has its head under her pregnant belly, and is eating her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the little girl orgasms, blushing furiously when she notices you watching. + A recognizable little representation of one of your slaves has _hisU head under _hisA pregnant belly, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the little girl orgasms, blushing furiously when _heA notices you watching. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, letting the young girl push two fingers gently in and out of her butt. The slave must be receiving her drugs from one of the dildo dispensers. As you watch, the little girl notices you watching her, blushes, looks away, and starts working faster. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, letting the young girl push two fingers gently in and out of _hisU butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the little girl notices you watching _himA, blushes, looks away, and starts working faster. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's having sex with a recognizable little representation of one of your slaves, kissing her and giggling occasionally. The slave must be using one of the penthouse's many vibrators. She sees you watching and blushes, but then shifts a little so you can see better. + _HeA's having sex with a recognizable little representation of one of your slaves, kissing _himU and giggling occasionally. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and blushes, but then shifts a little so you can see better. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The little girl is wearing a toy stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The little girl is patting the girl's head reassuringly. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The little girl is wearing a toy stethoscope and is listening to the slave breathe; the slave must be getting a checkup. The little girl is patting the _girlU's head reassuringly. <<elseif (_paSeed == 5) && ($invasionVictory == 1)>> - She's planting a wet kiss on a representation of one of your security drones; she hugs it as best she can with her belly in the way. When she sees you looking at her, she giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" + _HeA's planting a wet kiss on a representation of one of your security drones; _heA hugs it as best _heA can with _hisA belly in the way. When _heA sees you looking at _himA, _heA giggles and says, "What? I like him! He did really well during the invasion. And he's cute!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. + _HeA's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's chubby loli avatar. + _HeA's accompanied by your market assistant's chubby loli avatar. <<if $marketAssistantRelationship == "cute">> - $assistantName is laying on her back with her young friend's ear on her pregnant belly. Their conversation exists on the level of code, not speech, detectable only as slight flutterings of $assistantName's baby kicking. + $assistantName is laying on _hisA back with _hisA young friend's ear on _hisA pregnant belly. Their conversation exists on the level of code, not speech, detectable only as slight flutterings of $assistantName's baby kicking. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName has her chubby playmate pinned under her butt, and is inspecting her loli conquest's pussy. The market assistant's avatar groans as $assistantName's fingers explore her tight passage, and then claps both hands over her mouth, crying a little, unwilling to give $assistantName the satisfaction. + $assistantName has _hisA chubby playmate pinned under _hisA butt, and is inspecting _hisA loli conquest's pussy. The market assistant's avatar groans as $assistantName's fingers explore _hisM tight passage, and then claps both hands over _hisM mouth, crying a little, unwilling to give $assistantName the satisfaction. <<elseif $marketAssistantRelationship == "incestuous">> - They're making out with each other, a hand down each other's panties. Their other hand massaging their mutually swollen bellies, since $assistantName has introduced her sister to her boyfriends. + They're making out with each other, one hand down each other's panties, the other massaging their mutually swollen bellies, since $assistantName has introduced _hisA sister to _hisA boyfriends. <<else>> - They're playing house with each other, well house based off your penthouse. $assistantName is pretending to be you while her friend assumes $assistantName's role. They are currently caught up in figuring out how many children $assistantName's harem could produce. + They're playing house with each other - well, house based off your penthouse. $assistantName is pretending to be you while _hisA friend assumes $assistantName's role. They are currently caught up in figuring out how many children $assistantName's harem could produce. <</if>> <<else>> - She's watching you attentively, waiting for a chance to be helpful. When she sees your glance, she smiles shyly and looks away before returning to your gaze. + _HeA's watching you attentively, waiting for a chance to be helpful. When _heA sees your glance, _heA smiles shyly and looks away before returning to your gaze. <</if>> <<case "fairy">> - She's a cute little + _HeA's a cute little <<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 Bucuretsi doll. + fairy wearing a well-sewn blue dress, with a large red bow tied to the back of _hisA waist length golden-blonde hair. _HeA looks like a little Bucuretsi doll. <<case "degradationist">> - fairy and completely unclothed, with her hair in a mess and covered in dirt. + fairy and completely unclothed, with _hisA 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. + fairy with distinctly $arcologies[0].FSSupremacistRace features. _HeA has wrapped a golden ribbon around _hisA torso to fashion _himselfA 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. + fairy with exaggerated $arcologies[0].FSSubjugationistRace features. _HeA is completely unclothed, with _hisA 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. + fairy wearing a small handkerchief wrapped around _himA like a toga, with one tiny breast sticking out. A wreath made of twisted clovers sits on _hisA head. <<case "aztec revivalist">> - fairy, yellow paint creating tribal patterns across her naked form. + fairy, yellow paint creating tribal patterns across _hisA naked form. <<case "egyptian revivalist">> - fairy wearing a simple white linen dress and has eye shadow poorly applied around her eyes. + fairy wearing a simple white linen dress and has eye shadow poorly applied around _hisA eyes. <<case "edo revivalist">> - fairy wearing a fine kimono and holding a little fan. She looks like a little Hina doll. + fairy wearing a fine kimono and holding a little fan. _HeA looks like a little Hina doll. <<case "arabian revivalist">> fairy 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. + fairy wearing a silk cheongsam with a little green cap on _hisA head. _HisA hair is braided on the sides. _HeA looks like a figurine from some kind of game. <<case "chattel religionist">> fairy wearing a little gold-white habit. <<case "physical idealist">> - fairy wearing a training bra and spats. She has abs poorly drawn on her belly with a marker. + fairy wearing a training bra and spats. _HeA has abs poorly drawn on _hisA belly with a marker. <<case "hedonistic decadence">> fairy, naked and sitting in a cup of pudding, happily digging into its contents. <<case "repopulation focus">> - fairy wearing a simple dress. Her belly appears to be swollen and ready to burst, but a quick lift of her skirt shows that she's smuggling a grape under there. + fairy wearing a simple dress. _HisA belly appears to be swollen and ready to burst, but a quick lift of _hisA skirt shows that _heA's smuggling a grape under there. <<case "gender radicalist">> fairy 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. + fairy wearing a well-sewn blue dress, with a large red bow tied to the back of _hisA waist length golden-blonde hair. _HeA 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. + fairy wearing a pair of pants and a t-shirt. _HeA has two blueberries stuffed into the front of _hisA 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. + fairy wearing a pair of tight jeans and a t-shirt. _HeA has two grapes stuffed into _hisA shirt, and some cotton shoved in the back of _hisA 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. + fairy wearing only a pair of overalls. The overalls are just loose enough to let _hisA nearly flat chest to peek out when _heA turns or bends over. <<case "maturity preferentialist">> fairy wearing an old wool dress and spinning a cane. <<case "youth preferentialist">> fairy wearing a kindergartner's uniform, complete with rain cap and red backpack. <<case "slimness enthusiast">> - fairy wearing a handkerchief with a hole in it like a poncho. She looks as slim as usual, with her naked body completely visible from the sides. + fairy wearing a handkerchief with a hole in it like a poncho. _HeA looks as slim as usual, with _hisA naked body completely visible from the sides. <<case "body purist">> - fairy wearing her birthday suit, with pale unblemished skin on full display and silky golden hair cascading down her back. + fairy wearing _hisA birthday suit, with pale unblemished skin on full display and silky golden hair cascading down _hisA back. <<default>> - fairy wearing her birthday suit, with her nude form obscured by the light she's giving off. Her silky golden hair cascades down her back. + fairy wearing _hisA birthday suit, with _hisA nude form obscured by the light _heA's giving off. _HisA silky golden hair cascades down _hisA back. <</switch>> <<else>> - fairy wearing her birthday suit, with her nude form obscured by the light she's giving off. Her silky golden hair cascades down her back. + fairy wearing _hisA birthday suit, with _hisA nude form obscured by the light _heA's giving off. _HisA silky golden hair cascades down _hisA back. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves underneath her, with her tongue sticking out to catch her dripping love juices. The slave must be down in the kitchen, getting a meal out of the food dispensers. The fairy notices you watching and winks, dripping even more with your eyes on her. + A recognizable little representation of one of your slaves underneath _himA, with _hisU tongue sticking out to catch _hisA dripping love juices. The slave must be down in the kitchen, getting a meal out of the food dispensers. The fairy notices you watching and winks, dripping even more with your eyes on _himA. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is sitting upside-down in front of her, and the fairy is slowly teasing the poor slave's butt with a dildo as big as she is. The slave must be receiving her drugs from one of the dildo dispensers. The fairy notices you watching her and gives you a cheerful little wave, twisting the dildo around and humming a tune. + A recognizable little representation of one of your slaves is sitting upside-down in front of _himA, and the fairy is slowly teasing the poor slave's butt with a dildo as big as _heA is. The slave must be receiving _hisU drugs from one of the dildo dispensers. The fairy notices you watching _himA and gives you a cheerful little wave, twisting the dildo around and humming a tune. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation fucks herself with a toy while she twists the control dial around, to the slave's enjoyment. The slave must be using one of the penthouse's many vibrators. She sees you watching and whispers something in the slave's ear; the slave looks up at you and blushes. + A recognizable little representation of one of your slaves fucks _himselfU with a toy while _heA twists the control dial around, to the slave's enjoyment. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and whispers something in the slave's ear; the slave looks up at you and blushes. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is sitting up. The fairy is wearing a little doctor's coat and has her head pressed to the slave's chest to hear the slave breathe; the slave must be getting a checkup. The fairy is humming happily as she flies over to a tablet to take notes. + A recognizable little representation of one of your slaves is sitting up. The fairy is wearing a little doctor's coat and has _hisA head pressed to the slave's chest to hear the slave breathe; the slave must be getting a checkup. The fairy is humming happily as _heA flies over to a tablet to take notes. <<elseif (_paSeed == 5) && ($invasionVictory == 1)>> - She's sitting on the shoulders of a representation of one of your security drone. Every so often, she raises a fist and shouts "For the Imperium of man!" When she sees you looking at her, she grins and says, "This guy is like my robo-buddy. He's the best!" + _HeA's sitting on the shoulders of a representation of one of your security drones. Every so often, _heA raises a fist and shouts "For the Imperium of man!" When _heA sees you looking at _himA, _heA grins and says, "This guy is like my robo-buddy. He's the best!" <<elseif (_paSeed == 6) && ($studio == 1)>> - A recognizable little representation of one of your slaves is riding a sybian while she uses a handheld camera to film the action. The slave must be using one of the penthouse's many toys, and $assistantName is clearly turning the feed of it into porn. + A recognizable little representation of one of your slaves is riding a sybian while _heA uses a handheld camera to film the action. The slave must be using one of the penthouse's many toys, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's own fairy avatar. + _HeA's accompanied by your market assistant's own fairy avatar. <<if $marketAssistantRelationship == "cute">> - The market assistant is sitting on the end of a book, reading from a tablet for ants. $assistantName is lying down next to her, with her head resting on the other fairy's lap and slowly kicking her feet in the air. The market assistant take a moment to look down at $assistantName and gently pat her head. This elicits a big smile from her. + The market assistant is sitting on the end of a book, reading from a tablet for ants. $assistantName is lying down next to _himM, with _hisA head resting on the other fairy's lap and slowly kicking _hisA feet in the air. The market assistant take a moment to look down at $assistantName and gently pat _hisA head. This elicits a big smile from _himA. <<elseif $marketAssistantRelationship == "nonconsensual">> - The market assistant is naked and sitting before a thimble, as $assistantName sits behind her, teasing and molesting her. She is rather annoyed by her inability to focus on her work, having her nipples and clit pinched and flicked. Her sopping pussy is constantly letting out a small stream of liquid into the thimble. $assistantName is working hard on extracting as much sweet nectar from the fairy as she can, with every climax she wrings out bringing another large deluge of pussy juice into the vessel. + The market assistant is naked and sitting before a thimble, as $assistantName sits behind _himM, teasing and molesting _himM. _HeM is rather annoyed by _hisM inability to focus on _hisM work, having _hisM nipples and clit pinched and flicked. _HisM sopping pussy is constantly letting out a small stream of liquid into the thimble. $assistantName is working hard on extracting as much sweet nectar from the fairy as _heA can, with every climax _heA wrings out bringing another large deluge of pussy juice into the vessel. <<elseif $marketAssistantRelationship == "incestuous">> - The fairy sisters are lying down, each embracing the other as they languidly make out. $assistantName slips one leg in between her sister's, and the two begin rocking against one another. The two grow more and more passionate as they make love together. + The fairy sisters are lying down, each embracing the other as they languidly make out. $assistantName slips one leg in between _hisA sister's, and the two begin rocking against one another. The two grow more and more passionate as they make love together. <<else>> - The two fairies are sitting on top of a virtual flower, finishing up their work. With that out of the way, they strip down and each take a stamen and give them a thorough licking. Once coated, they line their stamen up to the other fairy's pussy. They take a moment to hold each other's hand as they slowly slide down the stamen. The two bottom out with a moan, and pull each other into a warm embrace. The market assistant starts buzzing her wings, the vibration causing both of them to yelp. $assistantName grins at this new source of pleasure, locking lips with the market assistant as the two beat their wings to a rhythm only they can hear. + The two fairies are sitting on top of a virtual flower, finishing up their work. With that out of the way, they strip down and each take a stamen and give them a thorough licking. Once coated, they line their stamen up to the other fairy's pussy. They take a moment to hold each other's hand as they slowly slide down the stamen. The two bottom out with a moan, and pull each other into a warm embrace. The market assistant starts buzzing _hisM wings, the vibration causing both of them to yelp. $assistantName grins at this new source of pleasure, locking lips with the market assistant as the two beat their wings to a rhythm only they can hear. <</if>> <<else>> - She's sitting at the edge of your desk, kicking her feet and humming a pleasant tune. She glances up to check on you and sees you looking at her, and flashes you a great big beautiful smile. + _HeA's sitting at the edge of your desk, kicking _hisA feet and humming a pleasant tune. _HeA glances up to check on you and sees you looking at _himA, and flashes you a great big beautiful smile. <</if>> <<case "pregnant fairy">> - She's a cute little fairy with a swollen belly + _HeA's a cute little fairy with a swollen belly <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> - 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 _hisA waist length golden-blonde hair. _HeA looks like a little Bucuresti doll. <<case "degradationist">> - and completely unclothed, with her hair in a mess and covered in dirt. + and completely unclothed, with _hisA 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. + and distinctly $arcologies[0].FSSupremacistRace features. _HeA has wrapped a golden ribbon around _hisA chest to create an improvised bra, and another under _hisA 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. + and exaggerated $arcologies[0].FSSubjugationistRace features. _HeA is completely unclothed, with _hisA hair in a mess and covered in dirt. <<case "roman revivalist">> - 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 _himA like a toga, with one tiny milky breast sticking out. A wreath made of twisted clovers sits on _hisA head. <<case "aztec revivalist">> - yellow paint creating tribal patterns across her naked form and curving around her swollen belly. + yellow paint creating tribal patterns across _hisA naked form and curving around _hisA swollen belly. <<case "egyptian revivalist">> - 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 _hisA eyes. <<case "edo revivalist">> - 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. _HeA looks like a little Hina doll. <<case "arabian revivalist">> wearing a strip of silk as a dress. <<case "chinese revivalist">> - 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 _hisA head. _HisA hair is braided on the sides. _HeA looks like a figurine from some kind of game. <<case "chattel religionist">> wearing a little gold-white habit and glowing with purity. <<case "physical idealist">> - wearing a training bra and spats. Her large belly sticks out even more. + wearing a training bra and spats. _HisA large belly sticks out even more. <<case "hedonistic decadence">> - that is 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. _HeA occasionally pulls off a piece to nibble on. <<case "repopulation focus">> - wearing a lovely maternity dress, which shows off her swollen belly. + wearing a lovely maternity dress, which shows off _hisA swollen belly. <<case "gender radicalist">> wearing a pair of pants. Just the pants. <<case "gender fundamentalist">> - 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 _hisA waist length golden-blonde hair. _HeA looks like a little Bucuresti doll. <<case "asset expansionist">> - 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. _HeA has two blueberries stuffed into the front of _hisA 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. + wearing a pair of tight jeans and a t-shirt. _HeA has two grapes stuffed into _hisA shirt, and some cotton shoved in the back of _hisA jeans. <<case "pastoralist">> - 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 _hisA belly pour out. <<case "maturity preferentialist">> - 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 _hisA belly. <<case "youth preferentialist">> - 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. _HisA swollen belly looks out of place. <<case "slimness enthusiast">> - 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. _HisA pregnant belly forces the poncho to spread wide, leaving little of _hisA body to the imagination. <<case "body purist">> - wearing her birthday suit, with pale unblemished pregnant belly on full display and silky golden hair cascading down her back. + wearing _hisA birthday suit, with pale unblemished pregnant belly on full display and silky golden hair cascading down _hisA back. <<default>> - 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 _hisA birthday suit, with _hisA nude form obscured by the light coming from _hisA belly. _HisA silky golden hair cascades down _hisA back. <</switch>> <<else>> - 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 _hisA birthday suit, with _hisA nude form obscured by the light coming from _hisA belly. _HisA silky golden hair cascades down _hisA 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. + A recognizable little representation of one of your slaves sits beside _himA, with _hisU tongue scraping across _hisA 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, _hisA unattended breast giving out a small spray of milk. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is sitting upside-down in front of her, and the fairy is slowly teasing the poor slave's butt with a dildo as big as she is. The slave must be receiving her drugs from one of the dildo dispensers. The fairy notices you watching her and gives you a cheerful little wave, twisting the dildo around and humming a tune. + A recognizable little representation of one of your slaves is sitting upside-down in front of _himA, and the fairy is slowly teasing the poor slave's butt with a dildo as big as _heA is. The slave must be receiving _hisU drugs from one of the dildo dispensers. The fairy notices you watching _himA and gives you a cheerful little wave, twisting the dildo around and humming a tune. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation fucks herself with a toy while she twists the control dial around, to the slave's enjoyment. The slave must be using one of the penthouse's many vibrators. She sees you watching and whispers something in the slave's ear; the slave looks up at you and blushes. + A recognizable little representation of one of your slaves fucks _himselfU with a toy while _heA twists the control dial around, to the slave's enjoyment. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and whispers something in the slave's ear; the slave looks up at you and blushes. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is sitting up. The fairy is wearing a little doctor's coat, kept open to accommodate for her belly, and has her head pressed to the slave's chest to hear the slave breathe; the slave must be getting a checkup. The fairy is humming happily as she flies over to a tablet to take notes. + A recognizable little representation of one of your slaves is sitting up. The fairy is wearing a little doctor's coat, kept open to accommodate for _hisA belly, and has _hisA head pressed to the slave's chest to hear the slave breathe; the slave must be getting a checkup. The fairy is humming happily as _heA flies over to a tablet to take notes. <<elseif (_paSeed == 5) && ($invasionVictory == 1)>> - She's sitting on the shoulders of a representation of one of your security drone. Every so often, she raises a fist and shouts "For the Imperium of man!" When she sees you looking at her, she grins and says, "This guy is like my robo-buddy. He's the best!" + _HeA's sitting on the shoulders of a representation of one of your security drones. Every so often, _heA raises a fist and shouts "For the Imperium of man!" When _heA sees you looking at _himA, _heA grins and says, "This guy is like my robo-buddy. He's the best!" <<elseif (_paSeed == 6) && ($studio == 1)>> - A recognizable little representation of one of your slaves is riding a sybian while she uses a handheld camera to film the action. The slave must be using one of the penthouse's many toys, and $assistantName is clearly turning the feed of it into porn. + A recognizable little representation of one of your slaves is riding a sybian while _heA uses a handheld camera to film the action. The slave must be using one of the penthouse's many toys, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's own fairy avatar. + _HeA's accompanied by your market assistant's own fairy avatar. <<if $marketAssistantRelationship == "cute">> - The market assistant is sitting on the end of a book, reading from a tablet for ants. $assistantName is sitting beside her, stroking her belly and humming a relaxing tune. + The market assistant is sitting on the end of a book, reading from a tablet for ants. $assistantName is sitting beside _himM, stroking _hisA belly and humming a relaxing tune. <<elseif $marketAssistantRelationship == "nonconsensual">> - The market assistant is sporting her own smaller baby bump now. With her top down, $assistantName slowly squeezes and massages her breasts from behind, teasing out tiny droplets of milk, much to her annoyance. She suddenly drops her tablet with a yelp as $assistantName drags her tongue across her ear from root to tip. + The market assistant is sporting _hisM own smaller baby bump now. With _hisM top down, $assistantName slowly squeezes and massages _hisM breasts from behind, teasing out tiny droplets of milk, much to _hisM annoyance. _HeM suddenly drops _hisM tablet with a yelp as $assistantName drags _hisA tongue across _hisA ear from root to tip. <<elseif $marketAssistantRelationship == "incestuous">> - Taking a break, the market assistant sits on $assistantName's lap, nursing away at her lactating breast like a baby. $assistantName coos, keeping on arm to support her sister's back while the other teases her dripping slit. + Taking a break, the market assistant sits on $assistantName's lap, nursing away at _hisA lactating breast like a baby. $assistantName coos, keeping on arm to support _hisA sister's back while the other teases _hisM dripping slit. <<else>> - The two fairies are slowly making out. The market assistant gently lies $assistantName down, guiding kisses down her body. Taking a moment to suckle from each leaking tit, the market assistant continues down her swollen belly before coming to her delicate flower and tenderly eats the pregnant fairy out. + The two fairies are slowly making out. The market assistant gently lies $assistantName down, guiding kisses down _hisA body. Taking a moment to suckle from each leaking tit, the market assistant continues down _hisA swollen belly before coming to _hisA delicate flower and tenderly eats the pregnant fairy out. <</if>> <<else>> - She's sitting at the edge of your desk, cradling her swollen belly and humming a pleasant tune. She glances up to check on you and sees you looking at her, and flashes you a great big beautiful smile. + _HeA's sitting at the edge of your desk, cradling _hisA swollen belly and humming a pleasant tune. _HeA glances up to check on you and sees you looking at _himA, and flashes you a great big beautiful smile. <</if>> <<case "slimegirl">> - She's a girlish shaped figure, with a crimson core, made entirely out of + _HeA'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. + slime with a modest pink dress floating inside _himA. <<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. + slime. _HeA keeps trying to shape _hisA goo into a beautiful $arcologies[0].FSSupremacistRace girl, but _heA 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. + slime. _HeA keeps trying to shape _hisA 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. + slime with a girl's stola sinking into _hisA head. <<case "egyptian revivalist">> - slime looking quite perturbed about the amount of sand caught in her. + slime looking quite perturbed about the amount of sand caught in _himA. <<case "edo revivalist">> - slime with a silken kimono floating inside her. + slime with a silken kimono floating inside _himA. <<case "arabian revivalist">> - slime with a headscarf and a pair of sunglasses floating inside her. + slime with a headscarf and a pair of sunglasses floating inside _himA. <<case "chinese revivalist">> - slime with a silk qipao floating inside her. + slime with a silk qipao floating inside _himA. <<case "chattel religionist">> - slime with several symbols of the your new faith floating inside her. + slime with several symbols of the your new faith floating inside _himA. <<case "repopulation focus">> - slime. Her amorphous body has noticeable hip, butt, and breast curves as well as several more cores gathered in her rounded stomach. + slime. _HisA amorphous body has noticeable hip, butt, and breast curves as well as several more cores gathered in _hisA rounded stomach. <<case "eugenics">> - slime with a chastity belt floating inside her. + slime with a chastity belt floating inside _himA. <<case "degradationist">> - slime with a number of piercings sinking into her body. + slime with a number of piercings sinking into _hisA body. <<case "physical idealist">> - slime trying to shape her goo into muscles. + slime trying to shape _hisA goo into muscles. <<case "gender radicalist">> - slime with a very androgynous appearance. She keeps trying to shape her goo into a cock. + slime with a very androgynous appearance. _HeA keeps trying to shape _hisA goo into a cock. <<case "gender fundamentalist">> - slime. Her amorphous body has noticeable hip, butt, and breast curves. + slime. _HisA amorphous body has noticeable hip, butt, and breast curves. <<case "asset expansionist">> - slime. Her amorphous body has ridiculously huge hip, butt, and breast curves. + slime. _HisA amorphous body has ridiculously huge hip, butt, and breast curves. <<case "transformation fetishist">> - slime with a pair of big silicone implants floating around her chest. + slime with a pair of big silicone implants floating around _hisA chest. <<case "pastoralist">> - slime with quite a large amount of milk mixed with her body. She keeps trying to shape her goo into big milky tits. + slime with quite a large amount of milk mixed with _hisA body. _HeA keeps trying to shape _hisA goo into big milky tits. <<case "maturity preferentialist">> slime with a noticeably large core. <<case "youth preferentialist">> slime with a tiny core and immature body <<case "slimness enthusiast">> - slime. She is compacting her slime to make herself look thinner. + slime. _HeA is compacting _hisA slime to make _himselfA look thinner. <<case "body purist">> - slime with the purest goo her body could be made of. + slime with the purest goo _hisA body could be made of. <<default>> - slime with a pair of shorts and a shirt floating inside her. + slime with a pair of shorts and a shirt floating inside _himA. <</switch>> <<else>> - slime with a pair of shorts and a shirt floating inside her. + slime with a pair of shorts and a shirt floating inside _himA. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves has its head in her moist crotch, and is eating her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the goo girl orgasms, nearly turning into a puddle when she notices you watching. + A recognizable little representation of one of your slaves has _hisU head in _hisA moist crotch, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the goo girl orgasms, nearly turning into a puddle when _heA notices you watching. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on its knees in front of her, letting the slime girl insert herself gently in and out of her butt. The slave must be receiving her drugs from one of the dildo dispensers. As you watch, the goo girl notices you watching her, and attempts to retract entirely into the slave's ass. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, letting the slime girl insert _himselfA gently in and out of _hisU butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the goo girl notices you watching _himA, and attempts to retract entirely into the slave's ass. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She's having sex with a recognizable little representation of one of your slaves, kissing her and giggling occasionally. The slave must be using one of the penthouse's many vibrators. She sees you watching and blushes, but then reshapes herself so you can see better. + _HeA's having sex with a recognizable little representation of one of your slaves, kissing _himU and giggling occasionally. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and blushes, but then reshapes _himselfA so you can see better. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The goo girl is covering her chest and is listening to the slave breathe; the slave must be getting a checkup. The goo girl is patting the girl's head reassuringly. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The goo girl is covering _hisU chest and is listening to the slave breathe; the slave must be getting a checkup. The goo girl is patting the _girlU's head reassuringly. <<elseif (_paSeed == 5) && ($invasionVictory == 1)>> - She's planting a very wet kiss on a representation of one of your security drones; she hugs it as best until it pops into her. When she sees you looking at her, she giggles and says, "What? I like him! He did really well during the invasion. I promise he won't rust in here!" + _HeA's planting a very wet kiss on a representation of one of your security drones; _heA hugs it as best until it pops into _himA. When _heA sees you looking at _himA, _heA giggles and says, "What? I like him! He did really well during the invasion. I promise he won't rust in here!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. + _HeA's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. <<else>> - She's watching you attentively from a bowl filled with her body. When she sees your glance, she reforms herself and awaits your response. + _HeA's watching you attentively from a bowl filled with _hisA body. When _heA sees your glance, _heA reforms _himselfA and awaits your response. <</if>> <<case "angel">> - 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. + _HeA'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 _himA 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. + _HeA is currently wearing a long, conservative skirt and a pretty white blouse complete with gaps for _hisA wings. _HeA 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. + _HeA is wearing black eyeliner and lipstick while using a thin black ribbon to protect _hisA modesty. It's pretty obvious _heA has a stud through _hisA left nipple. <<case "supremacist">> - She cycles between different outfits that reflect the various holy garments of religions popular in $arcologies[0].FSSupremacistRace countries. + _HeA 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. + _HeA is wearing a simple white linen dress, and _hisA right ankle is shackled to an iron ball and chain that prevents _himA 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. + _HeA is wearing a fine stola appropriate for a respectable Roman lady, with _hisA hair up in a complicated style. <<case "aztec revivalist">> - She is wearing a modest huipil with her hair braided to two ponytails; she's the picture of quiet elegance. + _HeA is wearing a modest huipil with _hisA hair braided to two ponytails; _heA's the picture of quiet elegance. <<case "egyptian revivalist">> - She is wearing a simple white linen dress, kohl eye shadow, sandals, and a serene expression. + _HeA is wearing a simple white linen dress, kohl eye shadow, sandals, and a serene expression. <<case "edo revivalist">> - She is wearing a fine kimono with slits for her wings, getae, tabi, and an expression of perfect serenity. + _HeA is wearing a fine kimono with slits for _hisA wings, getae, tabi, and an expression of perfect serenity. <<case "arabian revivalist">> - She is wearing a tailored suit, a silk headscarf, and aviator sunglasses, making her look ridiculous. + _HeA is wearing a tailored suit, a silk headscarf, and aviator sunglasses, making _himA look ridiculous. <<case "chinese revivalist">> - She is wearing a conservative silk qipao with special slits for her wings. Her hair is pulled back into a bun and secured by a couple of chopsticks. + _HeA is wearing a conservative silk qipao with special slits for _hisA wings. _HisA hair is pulled back into a bun and secured by a couple of chopsticks. <<case "chattel religionist">> - She has adjusted her outfit to consist of nothing but the symbol of your new religion carefully tailored to cover her nipples and crotch. She wears another around her neck and a blush on her cheeks. + _HeA has adjusted _hisA outfit to consist of nothing but the symbol of your new religion carefully tailored to cover _hisA nipples and crotch. _HeA wears another around _hisA neck and a blush on _hisA cheeks. <<case "physical idealist">> - She has swapped out her usual linen dress for one that shows off her toned arms, legs and abs. + _HeA has swapped out _hisA usual linen dress for one that shows off _hisA toned arms, legs and abs. <<case "hedonistic decadence">> - She has swapped out her usual linen dress for one that covers her plush curves. She finds walking easier than trying to fly with her weighty body. + _HeA has swapped out _hisA usual linen dress for one that covers _hisA plush curves. _HeA finds walking easier than trying to fly with _hisA weighty body. <<case "repopulation focus">> - Her simple white linen dress is parted by her full term pregnancy; likely a lost soul being given a new chance. + _HisA simple white linen dress is parted by _hisA full term pregnancy; likely a lost soul being given a new chance. <<case "eugenics">> - She has swapped out her usual linen dress for a fabulous one to match her perfect appearance. She proudly wears the symbol of high society on her arm and, judging by the slight curve to her middle, is growing a child just as beautiful as her. + _HeA has swapped out _hisA usual linen dress for a fabulous one to match _hisA perfect appearance. _HeA proudly wears the symbol of high society on _hisA arm and, judging by the slight curve to _hisA middle, is growing a child just as beautiful as _himA. <<case "gender radicalist">> - She wears a simple white linen dress and has recently changed her appearance to make herself quite androgynous. + _HeA wears a simple white linen dress and has recently changed _hisA appearance to make _himselfA quite androgynous. <<case "gender fundamentalist">> - She wears a simple white linen dress that struggles to cover both her full breasts and child-bearing hips. + _HeA wears a simple white linen dress that struggles to cover both _hisA full breasts and child-bearing hips. <<case "asset expansionist">> - She has recently given up on trying to cover her arm-filling breasts, resorting to just wearing a skirt; a skirt that strains against her enormous rear. She certainly won't be flying anyway. + _HeA has recently given up on trying to cover _hisA arm-filling breasts, resorting to just wearing a skirt; a skirt that strains against _hisA enormous rear. _HeA certainly won't be flying anyway. <<case "transformation fetishist">> - She wears a simple white linen dress that struggles to contain her big, perky, obviously fake breasts. + _HeA wears a simple white linen dress that struggles to contain _hisA big, perky, obviously fake breasts. <<case "pastoralist">> - She wears a simple white linen dress that struggles to cover her full breasts. She frequently tries to hide her nipples; her milk having rendered her dress transparent. + _HeA wears a simple white linen dress that struggles to cover _hisA full breasts. _HeA frequently tries to hide _hisA nipples; _hisA milk having rendered _hisA dress transparent. <<case "maturity preferentialist">> - She wears a simple white linen dress and has recently altered appearance to be more mature. Her face is one of experience and her hair has streaks of silver. + _HeA wears a simple white linen dress and has recently altered appearance to be more mature. _HisA face is one of experience and _hisA hair has streaks of silver. <<case "youth preferentialist">> - She wears a simple white linen dress that tastefully hugs her youthful body. She looks barely 18; a tantalizing risk. + _HeA wears a simple white linen dress that tastefully hugs _hisA youthful body. _HeA looks barely 18; a tantalizing risk. <<case "slimness enthusiast">> - She wears a simple white linen dress that tastefully hugs her thin body. + _HeA wears a simple white linen dress that tastefully hugs _hisA thin body. <<case "body purist">> - She has forgone covering herself to allow her radiant, pure body to be visible to all. + _HeA has forgone covering _himselfA to allow _hisA radiant, pure body to be visible to all. <<default>> - She wears a simple white linen dress that, while concealing, shows off her pleasant curves. + _HeA wears a simple white linen dress that, while concealing, shows off _hisA pleasant curves. <</switch>> <<else>> - She wears a simple white linen dress that, while concealing, shows off her pleasant curves. + _HeA wears a simple white linen dress that, while concealing, shows off _hisA pleasant curves. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves is locking lips with her. The slave must be down in the kitchen, getting a meal out of the food dispensers. The angel notices you watching, blushes deeply and covers herself and the slave with a wing. + A recognizable little representation of one of your slaves is locking lips with _himA. The slave must be down in the kitchen, getting a meal out of the food dispensers. The angel notices you watching, blushes deeply and covers _himselfA and the slave with a wing. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is across her lap, her rear red from a recent spanking. The slave must be receiving her drugs from one of the dildo dispensers. The angel notices you watching, nods, and resumes spanking, ignoring the slave's distress. + A recognizable little representation of one of your slaves is across _hisA lap, _hisU rear red from a recent spanking. The slave must be receiving _hisU drugs from one of the dildo dispensers. The angel notices you watching, nods, and resumes spanking, ignoring the slave's distress. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - She has a visible representation of one of your slaves across her lap, a vibrator partially inserted into her, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. She notices you watching and blushes deeply before returning to pleasuring the slave. + _HeA has a visible representation of one of your slaves across _hisA lap, a vibrator partially inserted into _himU, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. _HeA notices you watching and blushes deeply before returning to pleasuring the slave. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with its head in her lap. The angel is embracing her gently and silently; the slave must be getting a checkup. She looks up at you with a smile, the slave must be doing well. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The angel is embracing _himU gently and silently; the slave must be getting a checkup. _HeA looks up at you with a smile; the slave must be doing well. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's standing next to a representation of one of your security drone, gently caressing it. When she sees you looking at her, she blushes and says, "I like this one. He did very well during the invasion. He saved so many." + _HeA's standing next to a representation of one of your security drones, gently caressing it. When _heA sees you looking at _himA, _heA blushes and says, "I like this one. He did very well during the invasion. He saved so many." <<elseif (_paSeed == 6) && ($studio == 1)>> - She's watching a recognizable little representation of one of your slaves masturbate with one hand to cover her eyes and the other to hold a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + _HeA's watching a recognizable little representation of one of your slaves masturbating, with one hand to cover _hisA eyes and the other to hold a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's own angelic avatar. + _HeA's accompanied by your market assistant's own angelic avatar. <<if $marketAssistantRelationship == "cute">> They're deep in prayer for your benefit and the safety of you, your arcology and your slaves. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is happily brushing the market assistant while humming happily. Upon noticing you watching, she hastily sneaks a hand down the assistant's dress and pinches a nipple, eliciting a squeak from the girl. + $assistantName is happily brushing the market assistant while humming happily. Upon noticing you watching, _heA hastily sneaks a hand down the assistant's dress and pinches a nipple, eliciting a squeak from the _girlM. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName is naked and kissing her equally bare sister. You watch silently as they grind their bodies against each other until one notices your gaze. They both shriek, cover themselves with their wings and hustle out of sight. + $assistantName is naked and kissing _hisA equally bare sister. You watch silently as they grind their bodies against each other until one notices your gaze. They both shriek, cover themselves with their wings and hustle out of sight. <<else>> They're making out in a surprisingly girlish way, deeply kissing each other and pressing their chests together. They blush when they see you watching them, each quickly covering the other with a wing. <</if>> <<else>> - She's deep in prayer. She glances up to check on you and sees you looking at her, and flashes you a look of serenity. + _HeA's deep in prayer. _HeA glances up to check on you and sees you looking at _himA, and flashes you a look of serenity. <</if>> <<case "cherub">> - 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. + _HeA'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 short skirt for a much longer one. No more panty flashes for you! + _HeA has swapped _hisA usual short 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. + _HeA is wearing black lipstick along with _hisA 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. + _HeA 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. + _HeA is shackled to an iron ball and chain that's almost as big as _heA is, and _heA has to slowly and comically drag it behind _himA to get anywhere. Occasionally _heA tumbles over in _hisA struggles, flipping _hisA white linen dress up and treating you to a good look at _hisA panties. <<case "roman revivalist">> - She is wearing a cute little toga. Occasionally you get a glance up it; a cute little pussy says hello. + _HeA is wearing a cute little toga. Occasionally you get a glance up it; a cute little pussy says hello. <<case "aztec revivalist">> - wearing a huipil with her hair braided to two ponytails. You can clearly see through the sides that she has chosen to forgo underwear. + wearing a huipil with _hisA hair braided to two ponytails. You can clearly see through the sides that _heA has chosen to forgo underwear. <<case "egyptian revivalist">> - She is wearing a simple white linen dress, kohl eye shadow, and a serene expression. Her dress hangs low enough to block your view, unfortunately. + _HeA is wearing a simple white linen dress, kohl eye shadow, and a serene expression. _HisA dress hangs low enough to block your view, unfortunately. <<case "edo revivalist">> - She is wearing a cute little kimono with slits for her wings. Occasionally you get a glance up it; a lovely pair of panties say hello. + _HeA is wearing a cute little kimono with slits for _hisA wings. Occasionally you get a glance up it; a lovely pair of panties say hello. <<case "arabian revivalist">> - She wears a fine dress, a silk headscarf, aviator sunglasses, and an overly conservative posture. No seeing up her dress for you! + _HeA wears a fine dress, a silk headscarf, aviator sunglasses, and an overly conservative posture. No seeing up _hisA dress for you! <<case "chinese revivalist">> - She is wearing a conservative silk qipao with special slits for her wings. Her hair is pulled back into a bun and secured by a couple of chopsticks. It you try really hard, you can get a peek of her panties as she flutters by. + _HeA is wearing a conservative silk qipao with special slits for _hisA wings. _HisA hair is pulled back into a bun and secured by a couple of chopsticks. It you try really hard, you can get a peek of _hisA panties as _heA flutters by. <<case "chattel religionist">> - She has adjusted her outfit to consist of nothing but the symbol of your new religion carefully tailored to cover her nipples and crotch. Another dangles from her neck. Her attire leaves little to the imagination. + _HeA has adjusted _hisA outfit to consist of nothing but the symbol of your new religion carefully tailored to cover _hisA nipples and crotch. Another dangles from _hisA neck. _HisA attire leaves little to the imagination. <<case "physical idealist">> - She has chosen to ditch her usual linen dress for nothing but her undies in order to show off her muscles. + _HeA has chosen to ditch _hisA usual linen dress for nothing but _hisA undies in order to show off _hisA muscles. <<case "hedonistic decadence">> - She has become so plump lately that no amount of tugging will get her linen dress to cover her exposed panties. She struggles to stay aloft with such a plush body. + _HeA has become so plump lately that no amount of tugging will get _hisA linen dress to cover _hisA exposed panties. _HeA struggles to stay aloft with such a plush body. <<case "repopulation focus">> - She has chosen to ditch her usual linen dress for just her panties. She struggles to fly with her heavy pregnancy and milk laden breasts. + _HeA has chosen to ditch _hisA usual linen dress for just _hisA panties. _HeA struggles to fly with _hisA heavy pregnancy and milk laden breasts. <<case "eugenics">> - She wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her chastity belt. + _HeA wears simple white linen dress with a short skirt that frequently lets you catch glimpses of _hisA chastity belt. <<case "gender radicalist">> - She wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties. She has become rather boyish lately and you swear that there is a slight bulge in her panties. + _HeA wears simple white linen dress with a short skirt that frequently lets you catch glimpses of _hisA panties. _HeA has become rather boyish lately and you swear that there is a slight bulge in _hisA panties. <<case "gender fundamentalist">> - She wears a simple white linen dress that struggles to cover both her full breasts and child-bearing hips. Her short skirt frequently rides you to give you a lovely view of her panties. + _HeA wears a simple white linen dress that struggles to cover both _hisA full breasts and child-bearing hips. _HisA short skirt frequently rides you to give you a lovely view of _hisA panties. <<case "asset expansionist">> - She has recently taken to wearing nothing put her panties, having given up on fitting into her dress. She struggles to fly with her massive tits weighing her down and she commonly has to pause to pull her underwear out of her buttcrack. + _HeA has recently taken to wearing nothing put _hisA panties, having given up on fitting into _hisA dress. _HeA struggles to fly with _hisA massive tits weighing _himA down, and _heA commonly has to pause to pull _hisA underwear out of _hisA buttcrack. <<case "transformation fetishist">> - She wears a simple white linen dress that struggles to cover both her big fake breasts and ass. Her short skirt feebly rests atop her panty devouring rear, giving you a lovely view. + _HeA wears a simple white linen dress that struggles to cover both _hisA big fake breasts and ass. _HisA short skirt feebly rests atop _hisA panty devouring rear, giving you a lovely view. <<case "pastoralist">> - She has begun leaving the top of her white linen dress open to allow her milk laden breasts to hang free. She tends to leave a trail where ever she flies. + _HeA has begun leaving the top of _hisA white linen dress open to allow _hisA milk laden breasts to hang free. _HeA tends to leave a trail where ever _heA flies. <<case "maturity preferentialist">> - She has recently updated her appearance to be more mature; an air of experience follows her as she flies around. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; polka-dotted, oddly enough. + _HeA has recently updated _hisA appearance to be more mature; an air of experience follows _himA as _heA flies around. _HeA a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of _hisA panties; polka-dotted, oddly enough. <<case "youth preferentialist">> - She has recently updated her appearance to be more youthful. She frequently flutters by, enjoying her youthful vigor. She a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties; an adorable pair of bloomers. + _HeA has recently updated _hisA appearance to be more youthful. _HeA frequently flutters by, enjoying _hisA youthful vigor. _HeA a wears simple white linen dress with a short skirt that frequently lets you catch glimpses of _hisA panties; an adorable pair of bloomers. <<case "slimness enthusiast">> - She wears simple white linen dress with a short skirt that hangs loosely of her pleasantly thin body. Her panties are obviously a bit loose too, as she frequently has to stop, swoop down and retrieve them whenever they fall off her flat ass. + _HeA wears simple white linen dress with a short skirt that hangs loosely off _hisA pleasantly thin body. _HisA panties are obviously a bit loose too, as _heA frequently has to stop, swoop down and retrieve them whenever they fall off _hisA flat ass. <<case "body purist">> - She has forgone covering herself to allow her radiant, pure body to be visible to all. + _HeA has forgone covering _himselfA to allow _hisA radiant, pure body to be visible to all. <<default>> - She wears a simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties. + _HeA wears a simple white linen dress with a short skirt that frequently lets you catch glimpses of _hisA panties. <</switch>> <<else>> - She wears a simple white linen dress with a short skirt that frequently lets you catch glimpses of her panties. + _HeA wears a simple white linen dress with a short skirt that frequently lets you catch glimpses of _hisA panties. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves is eating her out as she flutters in front of them. The slave must be down in the kitchen, getting a meal out of the food dispensers. The cherub notices you watching and shoots you a thumbs up. + A recognizable little representation of one of your slaves is eating _himA out as _heA flutters in front of them. The slave must be down in the kitchen, getting a meal out of the food dispensers. The cherub notices you watching and shoots you a thumbs up. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is before her, ass in the air, as she eagerly fists her rear. The slave must be receiving her drugs from one of the dildo dispensers. The cherub notices you watching and tosses you a thumbs up with her free hand. + A recognizable little representation of one of your slaves is before _himA, ass in the air, as _heA eagerly fists _hisU rear. The slave must be receiving _hisU drugs from one of the dildo dispensers. The cherub notices you watching and tosses you a thumbs up with _hisA free hand. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation of one of your slaves is before her, ass in the air, as she eagerly fucks her with a strap-on, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. She notices you watching, tosses up a thumbs up at you and increases her thrusting. + A recognizable little representation of one of your slaves is before _himA, ass in the air, as _heA eagerly fucks _himU with a strap-on, which the slave is obviously enjoying. The slave must be using one of the penthouse's many vibrators. _HeA notices you watching, tosses up a thumbs up at you and increases _hisA thrusting. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying before her. The cherub is hovering in front of her chest, head to her breast, listening to her heartbeat; the slave must be getting a checkup. She beams you a smile, the slave must be doing well. + A recognizable little representation of one of your slaves is lying before _himA. The cherub is hovering in front of _hisU chest, head to _hisU breast, listening to _hisU heartbeat; the slave must be getting a checkup. _HeA beams you a smile; the slave must be doing well. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's fluttering around in circles with a representation of one of your security drones, steadily chasing it. When she sees you looking at her, she giggles and says, "I like this one. He did very well during the invasion." + _HeA's fluttering around in circles with a representation of one of your security drones, steadily chasing it. When _heA sees you looking at _himA, _heA giggles and says, "I like this one. He did very well during the invasion." <<elseif (_paSeed == 6) && ($studio == 1)>> - She's watching a recognizable little representation of one of your slaves masturbating while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. + _HeA's watching a recognizable little representation of one of your slaves masturbating, while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's slightly taller avatar. + _HeA's accompanied by your market assistant's slightly taller avatar. <<if $marketAssistantRelationship == "cute">> They're quickly darting around, playing tag; every touch transferring a bit of data between the players. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName is lazily reclining while the market assistant fans her with a large feather. She snaps her fingers as the taller cherub sighs and lowers her head between $assistantName's legs. + $assistantName is lazily reclining while the market assistant fans _himA with a large feather. _HeA snaps _hisA fingers as the taller cherub sighs and lowers _hisM head between $assistantName's legs. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName and her sister are struggling to stay airborne as they lustfully trib each other. When they notice you watching, and after they both climax, they pull each other close for a deep kiss only to manage to crash to the ground. They right themselves, laughing, before returning to their makeout session. + $assistantName and _hisA sister are struggling to stay airborne as they lustfully trib each other. When they notice you watching, and after they both climax, they pull each other close for a deep kiss only to manage to crash to the ground. They right themselves, laughing, before returning to their makeout session. <<else>> They're leaning against each other while looking over a list of your slaves. They choose a pair to work on hooking up before turning to kiss each other deeply. <</if>> <<else>> - She's fluttering to and fro humming to herself. You swear she keeps flashing her panties to you on purpose. + _HeA's fluttering to and fro humming to _himselfA. You swear _heA keeps flashing _hisA panties to you on purpose. <</if>> <<case "imp">> - 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. + _HeA'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. + _HeA has swapped to wearing much more, relatively speaking, modest clothing; extremely tight jeans and a top so small and taut you swear _heA'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. + _HeA has replaced _hisA loincloth with a chastity belt containing an immense dildo; it is clearly seen distending _hisA belly. Countless scars line _hisA back and ass from the frequent lashings _heA 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 race">>pureblooded<<else>>non-$arcologies[0].FSSupremacistRace<</if>> slave at a moment's notice. + _HeA's taken to carrying a cat o' nine tails whip at all times so that _heA's ready to lash a <<if $arcologies[0].FSSupremacistRace == "mixed race">>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 mischievous and sneaky, which is rare. + _HisA cartoonishly exaggerated $arcologies[0].FSSubjugationistRace body is just begging for a whipping, even when _heA isn't doing something mischievous and sneaky, which is rare. <<case "roman revivalist">> - She'd fit in perfectly tormenting the condemned in Tartarus. + _HeA'd fit in perfectly tormenting the condemned in Tartarus. <<case "aztec revivalist">> - She's taken to carrying a pair of ceremonial daggers perfect for bloodletting and even an impromptu sacrifice. Two things she really enjoys performing. + _HeA's taken to carrying a pair of ceremonial daggers perfect for bloodletting and even an impromptu sacrifice. Two things _heA really enjoys performing. <<case "egyptian revivalist">> - She has recently adjusted her appearance to resemble an Egyptian slave; that combined with a manufactured rebellious streak are sure to earn her a whipping. + _HeA has recently adjusted _hisA appearance to resemble an Egyptian slave; that combined with a manufactured rebellious streak are sure to earn _himA a whipping. <<case "edo revivalist">> - She has tightly bound herself in shibari ropes, although they don't achieve much given she can still fly freely. + _HeA has tightly bound _himselfA in shibari ropes, although they don't achieve much given _heA can still fly freely. <<case "arabian revivalist">> - She has donned the skimpiest, sluttiest outfit she could think of. She's just begging to get stoned. + _HeA has donned the skimpiest, sluttiest outfit _heA could think of. _HeA's just begging to get stoned. <<case "chinese revivalist">> - She has added a number of piercings to her body to allow her to be suspended by hooks rather than flying. + _HeA has added a number of piercings to _hisA body to allow _himA to be suspended by hooks rather than flying. <<case "chattel religionist">> - She has chosen to go fully naked, exposing the symbols of your religion pierced through her nipples and clit. + _HeA has chosen to go fully naked, exposing the symbols of your religion pierced through _hisA nipples and clit. <<case "physical idealist">> - She has adjusted her appearance to be rather muscular. Not only can she crack a whip harder than ever, but when she flexes, she nearly pops the belt around her chest. + _HeA has adjusted _hisA appearance to be rather muscular. Not only can _heA crack a whip harder than ever, but when _heA flexes, _heA nearly pops the belt around _hisA chest. <<case "hedonistic decadence">> - She has become rather chubby lately. She may want to change up her routine of tormenting the hungry by devouring food before them. + _HeA has become rather chubby lately. _HeA may want to change up _hisA routine of tormenting the hungry by devouring food before them. <<case "repopulation focus">> - She's added a pair of tight belts across her stomach recently. The taut material painfully digs into her growing pregnancy. + _HeA's added a pair of tight belts across _hisA stomach recently. The taut material painfully digs into _hisA growing pregnancy. <<case "eugenics">> - She has an iron chastity belt under her loincloth and two large bulges in her middle. You don't have to guess she has a pair of enormous dildos locked inside her. + _HeA has an iron chastity belt under _hisA loincloth and two large bulges in _hisA middle. You don't have to guess _heA has a pair of enormous dildos locked inside _himA. <<case "gender radicalist">> - She's recently begun rendering herself more androgynous. Something can be seen commonly tenting her loincloth; when ever if shifts to the side, you catch sight of a thumb sized and heavily pierced clitoris. + _HeA's recently begun rendering _himselfA more androgynous. Something can be seen commonly tenting _hisA loincloth; when ever if shifts to the side, you catch sight of a thumb sized and heavily pierced clitoris. <<case "gender fundamentalist">> - She's recently increased the size of her breasts and width of her hips. The belt around her chest tightly binds her new bust and causes its flesh to bulge and jiggle delightfully. + _HeA's recently increased the size of _hisA breasts and width of _hisA hips. The belt around _hisA chest tightly binds _hisA new bust and causes its flesh to bulge and jiggle delightfully. <<case "asset expansionist">> - She's had to let out her chest belt to accommodate her new excessive bust, but only a little; the belt creates a deep canyon across her chest with plenty of flesh bulging above and below the straining leather. + _HeA's had to let out _hisA chest belt to accommodate _hisA new excessive bust, but only a little; the belt creates a deep canyon across _hisA chest with plenty of flesh bulging above and below the straining leather. <<case "transformation fetishist">> - She's had to let out her chest belt to accommodate her new excessive bust, but only a little; the belt creates a deep canyon across her fake chest and threatens to painfully pop the underlying implants. + _HeA's had to let out _hisA chest belt to accommodate _hisA new excessive bust, but only a little; the belt creates a deep canyon across _hisA fake chest and threatens to painfully pop the underlying implants. <<case "pastoralist">> - She's exchanged her chest belt for a pair of rings with leather straps. She wears them so tightly every motion she makes forces a gush of milk from her painfully swollen breasts. + _HeA's exchanged _hisA chest belt for a pair of rings with leather straps. _HeA wears them so tightly every motion _heA makes forces a gush of milk from _hisA painfully swollen breasts. <<case "maturity preferentialist">> - She has recently updated her appearance to be more mature; an air of experience follows her as she flies around. You can hear her plotting tortures, many you've never heard of. + _HeA has recently updated _hisA appearance to be more mature; an air of experience follows _himA as _heA flies around. You can hear _himA plotting tortures, many you've never heard of. <<case "youth preferentialist">> - She has recently updated her appearance to be more youthful. She frequently flutters by, enjoying her youthful vigor. She looks so innocent, but looks can be deceiving! + _HeA has recently updated _hisA appearance to be more youthful. _HeA frequently flutters by, enjoying _hisA youthful vigor. _HeA looks so innocent, but looks can be deceiving! <<case "slimness enthusiast">> - Her new, thinner body gives her plenty of excuses to pull her straps even tighter. + _HisA new, thinner body gives _himA plenty of excuses to pull _hisA straps even tighter. <<case "body purist">> - She has forgone covering herself to allow her sinful, pure body to be visible to all. + _HeA has forgone covering _himselfA to allow _hisA sinful, pure body to be visible to all. <<default>> - She wears only a belt, tightly bound, over her tiny breasts and a simple loincloth over her crotch, leaving most of her body in plain, but arousing, sight. + _HeA wears only a belt, tightly bound, over _hisA tiny breasts and a simple loincloth over _hisA crotch, leaving most of _hisA body in plain, but arousing, sight. <</switch>> <<else>> - She wears only a belt, tightly bound, over her tiny breasts and a simple loincloth over her crotch, leaving most of her body in plain, but arousing, sight. + _HeA wears only a belt, tightly bound, over _hisA tiny breasts and a simple loincloth over _hisA crotch, leaving most of _hisA body in plain, but arousing, sight. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - She is steadily forcing a dildo the size of your arm down representation of one of your slave's throat. The slave must be down in the kitchen, getting a meal out of the food dispensers. The imp notices you watching, points to the obscene bulge in the slave's throat and laughs maniacally. + _HeA is steadily forcing a dildo the size of your arm down a recognizable little representation of one of your slaves' throat. The slave must be down in the kitchen, getting a meal out of the food dispensers. The imp notices you watching, points to the obscene bulge in the slave's throat and laughs maniacally. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is before her, ass in the air, as she enthusiastically winds an anal pear. The slave must be receiving her drugs from one of the dildo dispensers. The imp notices you watching and laughs as she gapes the slave's asshole further, enjoying her obvious discomfort. + A recognizable little representation of one of your slaves is before _himA, ass in the air, as _heA enthusiastically winds an anal pear. The slave must be receiving _hisU drugs from one of the dildo dispensers. The imp notices you watching and laughs as _heA gapes the slave's asshole further, enjoying _hisU obvious discomfort. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation of one of your slaves is before her, perched atop a wooden horse with sexual fluids running down its sides. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the imp flies above her and roughly forces her down, eliciting a scream of surprise from the horny slave. She likely upped the output on whatever toy the slave was using. + A recognizable little representation of one of your slaves is before _himA, perched atop a wooden horse with sexual fluids running down its sides. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the imp flies above _himU and roughly forces _himU down, eliciting a scream of surprise from the horny slave. _HeA likely upped the output on whatever toy the slave was using. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying on her side before her; belly painfully distended. The imp is hovering over her holding an enema bag; the slave must be getting a checkup. She notices your gaze and squeezes the bag, forcing a burst of liquid into the slave's gut and drawing a moan of discomfort out of the girl. + A recognizable little representation of one of your slaves is lying on _hisU side before _himA; belly painfully distended. The imp is hovering over _himU holding an enema bag; the slave must be getting a checkup. _HeA notices your gaze and squeezes the bag, forcing a burst of liquid into the slave's gut and drawing a moan of discomfort out of the _girlU. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's flapping around in circles chasing a representation of one of your security drones with a mallet. When she sees you looking at her, she quickly hides the hammer behind her back, giggles and says, "He let some get away and needed to be punished!" + _HeA's flapping around in circles chasing a representation of one of your security drones with a mallet. When _heA sees you looking at _himA, _heA quickly hides the hammer behind _hisA back, giggles and says, "He let some get away and needed to be punished!" <<elseif (_paSeed == 6) && ($studio == 1)>> - She's hovering over a recognizable little representation of one of your slaves masturbating while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into a PoV porno. + _HeA's hovering over a recognizable little representation of one of your slaves masturbating while holding a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and $assistantName is clearly turning the feed of it into a PoV porno. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's slightly taller avatar. + _HeA's accompanied by your market assistant's slightly taller avatar. <<if $marketAssistantRelationship == "cute">> They're tormenting a little representation of one of your slaves while giggling to each other. A closer inspection reveals they are playing with the door locks to confound a new menial. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName has her plaything tightly bound to a rack and is gleefully pouring hot wax onto the oddly silent market assistant. You see why when a drop lands on her sensitive clit, eliciting a scream from the restrained imp; $assistantName pulls her restraints even tighter as punishment. + $assistantName has _hisA plaything tightly bound to a rack and is gleefully pouring hot wax onto the oddly silent market assistant. You see why when a drop lands on _hisM sensitive clit, eliciting a scream from the restrained imp; $assistantName pulls _hisM restraints even tighter as punishment. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName and her sister are struggling to stay airborne as they attempt push an oversized, double-ended dildo out of their own cunt and into the other's. When they notice you watching, $assistantName seizes the opportunity to bear down hard, forcing the entirety of the toy into the distracted market assistant. She crashes to the ground, hands upon her cock bulged middle, orgasming indecently. + $assistantName and _hisA sister are struggling to stay airborne as they attempt push an oversized, double-ended dildo out of their own cunt and into the other's. When they notice you watching, $assistantName seizes the opportunity to bear down hard, forcing the entirety of the toy into the distracted market assistant. _HeM crashes to the ground, hands upon _hisM cock bulged middle, orgasming indecently. <<else>> They're taking swings at each other with switches. Giggling with each swing and moaning with every successful strike. <</if>> <<else>> - She's inspecting her arsenal of toys and punishment tools. When she notices you watching; she grabs her favorite and eagerly makes use of it on herself. + _HeA's inspecting _hisA arsenal of toys and punishment tools. When _heA notices you watching, _heA grabs _hisA favorite and eagerly makes use of it on _himselfA. <</if>> <<case "witch">> - 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. + _HeA'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. + _HeA still hasn't managed to undo the spell; _hisA 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? + _HeA still hasn't managed to undo the spell; _hisA face, hands and every surface of _hisA body are completely covered in tattoos. It is especially noticeable when _heA talks that _hisA tongue is tattooed too; wonder what decorates the surfaces of _hisA 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 race">>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. + _HeA's managed to correct the spell, and even succeed in it. _HeA is now <<if $arcologies[0].FSSupremacistRace == "mixed race">>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 _heA were real, _heA 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. + _HeA still hasn't managed to undo the spell; _heA looks like a racist caricature of a $arcologies[0].FSSubjugationistRace girl, and has an appropriately demeaning accent to match. What's worse, the spell also seems to have stripped most of _hisA literacy in $language, making reading _hisA tomes an arduous task for _himA. <<case "roman revivalist">> - While she acts like a typical Roman woman, she is pretty obviously Greek. She can't even name the Pantheon correctly. + While _heA acts like a typical Roman woman, _heA is pretty obviously Greek. _HeA can't even name the Pantheon correctly. <<case "aztec revivalist">> - She is still very obviously not a native and has become rather caught up in the fear that she'll soon be sacrificed. + _HeA is still very obviously not a native and has become rather caught up in the fear that _heA'll soon be sacrificed. <<case "egyptian revivalist">> - She's managed to untangle herself from the wrappings, though she has chosen to leave several still wrapped around her body. + _HeA's managed to untangle _himselfA from the wrappings, though _heA has chosen to leave several still wrapped around _hisA body. <<case "edo revivalist">> - She's managed to correct the spell, somewhat, though she now resembles something that belongs in a hentai. + _HeA's managed to correct the spell, somewhat, though _heA now resembles something that belongs in a hentai. <<case "arabian revivalist">> - She's managed to correct the spell, and even succeed at it. She has altered her appearance to resemble a gorgeous djinn. She is seductively performing a belly dance for you. + _HeA's managed to correct the spell, and even succeed at it. _HeA has altered _hisA appearance to resemble a gorgeous djinn. _HeA is seductively performing a belly dance for you. <<case "chinese revivalist">> - She has chosen to embrace the outcome of her spell, even pushing her luck a little more, leaving her wearing a long and very fashionable qipao. + _HeA has chosen to embrace the outcome of _hisA spell, even pushing _hisA luck a little more, leaving _himA wearing a long and very fashionable qipao. <<case "chattel religionist">> - She has chosen to embrace the outcome of her spell, proudly displaying the various holy symbols hanging from around her neck and dangling from her nipples, navel and clit. + _HeA has chosen to embrace the outcome of _hisA spell, proudly displaying the various holy symbols hanging from around _hisA neck and dangling from _hisA nipples, navel and clit. <<case "physical idealist">> - She managed to regain freedom of movement, but has chosen to leave her torn robes unfixed to further highlight her ridiculous muscles. + _HeA managed to regain freedom of movement, but has chosen to leave _hisA torn robes unfixed to further highlight _hisA ridiculous muscles. <<case "hedonistic decadence">> - She has managed to lighten her body enough to regain mobility, but no amount of her magic can summon a robe big enough to cover her enormously fat body without looking ridiculous. + _HeA has managed to lighten _hisA body enough to regain mobility, but no amount of _hisA magic can summon a robe big enough to cover _hisA enormously fat body without looking ridiculous. <<case "repopulation focus">> <<if $seeHyperPreg == 1>> - She's managed to cast a levitation spell to allow her to move and a spell to prevent her from bursting, but she can do nothing about the dozens of active children crowding her womb. She meekly floats along with it, gently rubbing its squirming mass through her torn robe. + _HeA's managed to cast a levitation spell to allow _himA to move and a spell to prevent _himA from bursting, but _heA can do nothing about the dozens of active children crowding _hisA womb. _HeA meekly floats along with it, gently rubbing its squirming mass through _hisA torn robe. <<else>> - She's managed to cast a spell to lighten her belly, but she can do nothing about the rowdy octuplets crowding her womb. She meekly pats her exposed belly, feebly trying to calm her babies, as she looks up ways to mend her torn dress. + _HeA's managed to cast a spell to lighten _hisA belly, but _heA can do nothing about the rowdy octuplets crowding _hisA womb. _HeA meekly pats _hisA exposed belly, feebly trying to calm _hisA babies, as _heA looks up ways to mend _hisA torn dress. <</if>> <<case "eugenics">> - She still hasn't managed to undo the spell; it's pretty obvious given how desperately horny she is. + _HeA still hasn't managed to undo the spell; it's pretty obvious given how desperately horny _heA is. <<case "gender radicalist">> - She has chosen to embrace the outcome of her spell; she either sports a bulge or a tent in the front of her dress and can frequently be seen reading books on male anatomy. + _HeA has chosen to embrace the outcome of _hisA spell; _heA either sports a bulge or a tent in the front of _hisA dress and can frequently be seen reading books on male anatomy. <<case "gender fundamentalist">> - She still hasn't managed to undo the spell; her belly has become so swollen with ovum she looks ready to birth triplets. She can barely concentrate; her mind focused entirely on dicks cumming in her wet pussy, but she can't risk it, knowing full well she'd become so pregnant she'd likely burst. Her ample breasts and child bearing hips only make it harder to keep away from cocks. + _HeA still hasn't managed to undo the spell; _hisA belly has become so swollen with ovum _heA looks ready to birth triplets. _HeA can barely concentrate; _hisA mind focused entirely on dicks cumming in _hisA wet pussy, but _heA can't risk it, knowing full well _heA'd become so pregnant _heA'd likely burst. _HisA ample breasts and child bearing hips only make it harder to keep away from cocks. <<case "asset expansionist">> - She's managed to partially undo the spell; her breasts are merely as big as she is now. One simple, correctly performed, levitation spell later and she is fully capable of functioning with her oversized tits. + _HeA's managed to partially undo the spell; _hisA breasts are merely as big as _heA is now. One simple, correctly performed, levitation spell later and _heA is fully capable of functioning with _hisA oversized tits. <<case "transformation fetishist">> - While she has managed to regain her flexibility, she still greatly resembles an overinflated blow-up doll. Her lips are stuck in an O shape, her breasts are the size of beach balls, her ass and thighs larger than any girl's you've seen, and above all else is her huge medicine ball sized belly; fortunately they don't weigh nearly as much as they should, part of the benefits of being an inflatable sex-doll. + While _heA has managed to regain _hisA flexibility, _heA still greatly resembles an overinflated blow-up doll. _HisA lips are stuck in an O shape, _hisA breasts are the size of beach balls, _hisA ass and thighs larger than any girl's you've seen, and above all else is _hisA huge medicine ball sized belly; fortunately they don't weigh nearly as much as they should, part of the benefits of being an inflatable sex-doll. <<case "pastoralist">> - She's managed to shrink her nine breasts somewhat; they are merely head sized now. The front of her robes is strained from her excessive number of milky tits. + _HeA's managed to shrink _hisA nine breasts somewhat; they are merely head sized now. The front of _hisA robes is strained from _hisA excessive number of milky tits. <<case "maturity preferentialist">> - She's managed to reign in her aging spell and with a little size up to her breasts, hips and ass makes a very pleasant milf. + _HeA's managed to reign in _hisA aging spell and with a little size up to _hisA breasts, hips and ass makes a very pleasant MILF. <<case "youth preferentialist">> <<if $minimumSlaveAge == 3>> - She's adjusted her tiny body slightly to be less feeble. Now she is a fully capable and adorable toddler witch in an oversized robe, though she has to fight to keep her hat from covering her entire head. + _HeA's adjusted _hisA tiny body slightly to be less feeble. Now _heA is a fully capable and adorable toddler witch in an oversized robe, though _heA has to fight to keep _hisA hat from covering _hisA entire head. <<elseif $minimumSlaveAge <= 7>> - She's decided to embrace her spell and now appears as an adorable loli witch. She has to watch her step to not trip over her trailing robe and has to constantly readjust her head devouring hat. + _HeA's decided to embrace _hisA spell and now appears as an adorable loli witch. _HeA has to watch _hisA step to not trip over _hisA trailing robe and has to constantly readjust _hisA head devouring hat. <<elseif $minimumSlaveAge <= 13>> - She's decided to embrace her spell and now appears as a cute teenage witch. Her robe is a little long, but she manages just fine. + _HeA's decided to embrace _hisA spell and now appears as a cute teenage witch. _HisA robe is a little long, but _heA manages just fine. <<else>> - She's decided to embrace her spell and now appears as a witch fresh into adulthood. + _HeA's decided to embrace _hisA spell and now appears as a witch fresh into adulthood. <</if>> <<case "slimness enthusiast">> - She's begun wearing a corset under her robes to hide her chubbiness. Combined with her lightened body, she manages to pull off the lithe look easily. + _HeA's begun wearing a corset under _hisA robes to hide _hisA chubbiness. Combined with _hisA lightened body, _heA manages to pull off the lithe look easily. <<case "body purist">> - She has attempted to fix her misspell and succeeded in preventing her clothes from becoming transparent, to herself only. She appears nude, even though she is fully clothed, much to everyone's enjoyment. + _HeA has attempted to fix _hisA misspell and succeeded in preventing _hisA clothes from becoming transparent, to _himselfA only. _HeA appears nude, even though _heA is fully clothed, much to everyone's enjoyment. <<default>> - She frequently carries a tome of new and erotic spells. + _HeA frequently carries a tome of new and erotic spells. <</switch>> <<else>> - She frequently carries a tome of new and erotic spells. + _HeA frequently carries a tome of new and erotic spells. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - She is steadily conjuring cake slices out of thin air and sending them down a representation of one of your slave's throat as her belly swells. The slave must be down in the kitchen, getting a meal out of the food dispensers. The witch notices you watching, creates a whole cake, and send it on its way causing the slave's gut to double in size. + _HeA is steadily conjuring cake slices out of thin air and sending them down a recognizable little representation of one of your slaves' throat as _hisU belly swells. The slave must be down in the kitchen, getting a meal out of the food dispensers. The witch notices you watching, creates a whole cake, and sends it on its way, causing the slave's gut to double in size. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is before her, writhing in pleasure, as a summoned tentacle explores her anus. The slave must be receiving her drugs from one of the dildo dispensers. The witch notices you watching and pats her own squirming belly, causing the tentacle to seek shelter deeper in the slave. + A recognizable little representation of one of your slaves is before _himA, writhing in pleasure, as a summoned tentacle explores _hisU anus. The slave must be receiving _hisU drugs from one of the dildo dispensers. The witch notices you watching and pats _hisA own squirming belly, causing the tentacle to seek shelter deeper in the slave. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation of one of your slaves is squatting atop a magic circle before her, a dildo pistoning in and out of her. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the witch snaps her fingers causing the toy to blow a load deep inside the slave. A load moan echoes down the halls of your penthouse, someone must be having a good time. + A recognizable little representation of one of your slaves is squatting atop a magic circle before _himA, a dildo pistoning in and out of _himU. The slave must be using one of the penthouse's many sex toys. Noticing you watching, the witch snaps _hisA fingers, causing the toy to blow a load deep inside the slave. A load moan echoes down the halls of your penthouse; someone must be having a good time. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying before her as she runs her wand over her body. The slave must be getting a checkup. She notices your gaze and taps the wand to the slave's breasts, causing them to jump a cup size. + A recognizable little representation of one of your slaves is lying before _himA as _heA runs _hisA wand over _hisU body. The slave must be getting a checkup. _HeA notices your gaze and taps the wand to the slave's breasts, causing them to jump up a cup size. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's riding a broom alongside a representation of one of your security drones as it carries out its patrol route through your arcology. When she sees you looking at her, she giggles and says, "I like this one. He did very well during the invasion." + _HeA's riding a broom alongside a representation of one of your security drones as it carries out its patrol route through your arcology. When _heA sees you looking at _himA, _heA giggles and says, "I like this one. He did very well during the invasion." <<elseif (_paSeed == 6) && ($studio == 1)>> A hovering camera is aimed at a recognizable little representation of one of your slaves masturbating. The slave must be using one of the penthouse's many vibrators, and $assistantName is likely invisible holding the camera, turning the feed of it into a PoV porno. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's chubby, bespectacled avatar. + _HeA's accompanied by your market assistant's chubby, bespectacled avatar. <<if $marketAssistantRelationship == "cute">> They're sitting back to back, reading their books and giggling to each other over whispers of what erotic tricks they can do. <<elseif $marketAssistantRelationship == "nonconsensual">> - $assistantName has her test subject stripped and bound. She focuses a spell on a single of the girls breasts and records the results as it steadily begins swelling, leaving its twin behind. The market assistant moans as an egg pushes its way out of her erect nipple. + $assistantName has _hisA test subject stripped and bound. _HeA focuses a spell on a single of the _girlM's breasts and records the results as it steadily begins swelling, leaving its twin behind. The market assistant moans as an egg pushes its way out of _hisM erect nipple. <<elseif $marketAssistantRelationship == "incestuous">> - $assistantName is lustfully groping her sister's plush breasts. Upon noticing your gaze, she channels her magic and <<if $seeDicks != 0>>sprouts a huge dick straight into her sister's plump rear<<else>>begins to enlarge the already lovely handfuls<</if>>. The market assistant can only finger herself in response, oblivious to everything going on. + $assistantName is lustfully groping _hisA sister's plush breasts. Upon noticing your gaze, _heA channels _hisA magic and <<if $seeDicks != 0>>sprouts a huge dick straight into _hisA sister's plump rear<<else>>begins to enlarge the already lovely handfuls<</if>>. The market assistant can only finger _himselfM in response, oblivious to everything going on. <<else>> - They've pulled open each other's robes and are gently tribbing. Upon noticing you, $assistantName casts a spell to triple the market assistant's sensitivity and braces for the impending orgasm. She cums so hard she passes out; $assistantName gently pulls her into a close embrace until she recovers. + They've pulled open each other's robes and are gently tribbing. Upon noticing you, $assistantName casts a spell to triple the market assistant's sensitivity and braces for the impending orgasm. _HeM cums so hard _heM passes out; $assistantName gently pulls _himM into a close embrace until _heM recovers. <</if>> <<else>> - She's idly turning the pages of her spell book. When she notices you watching, she flips the book around to show you a new and kinky trick she wants to try out. + _HeA's idly turning the pages of _hisA spell book. When _heA notices you watching, _heA flips the book around to show you a new and kinky trick _heA wants to try out. <</if>> <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - She's an odd little girl, with slightly off mannerisms, + _HeA'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. + wearing ill fitting clothing. Various movements can be seen under _hisA 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. + wearing nothing except some oversized, strange looking piercings all over _hisA body. You swear you see movement under _hisA skin and _hisA 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. + wearing nothing at all. _HeA looks vaguely $arcologies[0].FSSupremacistRace, but wrong. You swear you see patches of fish-like scales on _hisA 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. + wearing nothing at all. _HeA looks vaguely $arcologies[0].FSSubjugationistRace, but wrong. You swear you see patches of fish-like scales on _hisA 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. + wearing a poorly folded toga. You swear you see movement under _hisA skin. <<case "aztec revivalist">> - wearing a torn huipil. She looks vaguely Aztec, but wrong. You swear you see movement under her skin. + wearing a torn huipil. _HeA looks vaguely Aztec, but wrong. You swear you see movement under _hisA skin. <<case "egyptian revivalist">> - wearing nothing at all. She looks vaguely Egyptian, but wrong. You swear you see movement under her skin. + wearing nothing at all. _HeA looks vaguely Egyptian, but wrong. You swear you see movement under _hisA skin. <<case "edo revivalist">> - wearing a loose kimono. She looks vaguely Japanese, but wrong. You swear you see movement under her skin. + wearing a loose kimono. _HeA looks vaguely Japanese, but wrong. You swear you see movement under _hisA skin. <<case "arabian revivalist">> - wearing various silks. She looks vaguely Arabic, but wrong. You swear you see movement under her skin. + wearing various silks. _HeA looks vaguely Arabic, but wrong. You swear you see movement under _hisA skin. <<case "chinese revivalist">> - wearing an ill fitting qipao. She looks vaguely Chinese, but wrong. You swear you see movement under her clothing and even skin. + wearing an ill fitting qipao. _HeA looks vaguely Chinese, but wrong. You swear you see movement under _hisA clothing and even skin. <<case "chattel religionist">> - wearing nothing at all. A pulsing symbol of your religion sprouts from her chest, runs between her breasts and down to her crotch, where it penetrates her pussy. If the symbol weren't offputting enough, you also swear you see movement under her skin. + wearing nothing at all. A pulsing symbol of your religion sprouts from _hisA chest, runs between _hisA breasts and down to _hisA crotch, where it penetrates _hisA pussy. If the symbol weren't off-putting enough, you also swear you see movement under _hisA skin. <<case "physical idealist">> - wearing nothing at all. She is covered in what appear to be muscles, though they bulge and squirm uncomfortably. + wearing nothing at all. _HeA is covered in what appear to be muscles, though they bulge and squirm uncomfortably. <<case "hedonistic decadence">> - wearing nothing at all. She is covered in what appears to be a dense layer of fat, though occasionally you swear you see something peering out from between her folds. + wearing nothing at all. _HeA is covered in what appears to be a dense layer of fat, though occasionally you swear you see something peering out from between _hisA folds. <<case "repopulation focus">> <<if $seeHyperPreg == 1>> - wearing nothing at all. Her belly is immensely swollen, squirming and practically ready to burst. Her navel resembles a pussy; a pussy birthing countless larva like creatures. + wearing nothing at all. _HisA belly is immensely swollen, squirming and practically ready to burst. _HisA navel resembles a pussy; a pussy birthing countless larva like creatures. <<else>> - wearing nothing at all. Her belly is rounded and squirming in some state of gravidity. Every so often her navel spreads apart and a wormlike creature flops out. + wearing nothing at all. _HisA belly is rounded and squirming in some state of gravidity. Every so often _hisA navel spreads apart and a wormlike creature flops out. <</if>> <<case "eugenics">> - wearing nothing at all. You can't take your eyes off of her perfect body, but at the same time, you feel a strange sense of danger about her. + wearing nothing at all. You can't take your eyes off of _hisA perfect body, but at the same time, you feel a strange sense of danger about _himA. <<case "gender radicalist">> - wearing nothing at all. Even though she lacks a penis, you can't shake the feeling that it's not a trap. + wearing nothing at all. Even though _heA lacks a penis, you can't shake the feeling that it's not a trap. <<case "gender fundamentalist">> - full breasts, wide hips and wearing absolutely nothing. You swear her tits are moving slightly and an unusual bulge can be seen writhing in her lower belly. + full breasts, wide hips and wearing absolutely nothing. You swear _hisA tits are moving slightly and an unusual bulge can be seen writhing in _hisA lower belly. <<case "asset expansionist">> - wearing nothing at all; not that anything could fit her. She is absolutely massive; her breasts easily dwarfing the rest of her body and quivering obscenely. Every so often, a bulge moves up a nipple as a wormlike creature is born into the world. + wearing nothing at all; not that anything could fit _himA. _HeA is absolutely massive; _hisA breasts easily dwarfing the rest of _hisA body and quivering obscenely. Every so often, a bulge moves up a nipple as a wormlike creature is born into the world. <<case "transformation fetishist">> - wearing nothing at all; not that anything could fit her. Her breasts and ass are splitting around the massive, round objects distending them. The orbs are slightly translucent; lots of small wormlike creatures can be seen squirming within inside. + wearing nothing at all; not that anything could fit _himA. _HisA breasts and ass are splitting around the massive, round objects distending them. The orbs are slightly translucent; lots of small wormlike creatures can be seen squirming within inside. <<case "pastoralist">> - wearing nothing at all; not that anything could fit her. She is absolutely massive; her breasts easily dwarfing the rest of her body and quivering obscenely. An extremely dense, white liquid is steadily forcing its way from her gaping nipples. + wearing nothing at all; not that anything could fit _himA. _HeA is absolutely massive; _hisA breasts easily dwarfing the rest of _hisA body and quivering obscenely. An extremely dense, white liquid is steadily forcing its way from _hisA gaping nipples. <<case "maturity preferentialist">> - wearing nothing at all. She seems to be quite old and vulnerable, but something feels off about her. + wearing nothing at all. _HeA seems to be quite old and vulnerable, but something feels off about _himA. <<case "youth preferentialist">> wearing nothing at all. <<if $minimumSlaveAge == 3>> - She's an adorable toddler just ripe for the taking; though a feeling of danger radiates from her tiny body. + _HeA's an adorable toddler just ripe for the taking; though a feeling of danger radiates from _hisA tiny body. <<elseif $minimumSlaveAge <= 7>> - She's a cute loli and ripe for the taking; though a feeling of danger radiates from her small body. + _HeA's a cute loli and ripe for the taking; though a feeling of danger radiates from _hisA small body. <<elseif $minimumSlaveAge <= 13>> - She's a pretty teenager and ripe for the taking; though a feeling of danger radiates from her. + _HeA's a pretty teenager and ripe for the taking; though a feeling of danger radiates from _himA. <<else>> - She seems to be fresh into adulthood and ripe for the taking; though a feeling of danger radiates from her. + _HeA seems to be fresh into adulthood and ripe for the taking; though a feeling of danger radiates from _himA. <</if>> <<case "slimness enthusiast">> - wearing nothing at all. She is extremely thin; multiple tube-like appendages can be seen writhing within her compressed body. + wearing nothing at all. _HeA is extremely thin; multiple tube-like appendages can be seen writhing within _hisA compressed body. <<case "body purist">> - wearing nothing at all. Her body is absolutely flawless, too flawless; you can't help but feel a sense of discomfort when looking at her. + wearing nothing at all. _HisA body is absolutely flawless, too flawless; you can't help but feel a sense of discomfort when looking at _himA. <<default>> - wearing absolutely nothing. She periodically twitches when you aren't looking and you swear you see movement under her skin. + wearing absolutely nothing. _HeA periodically twitches when you aren't looking and you swear you see movement under _hisA skin. <</switch>> <<else>> - wearing absolutely nothing. She periodically twitches when you aren't looking and you swear you see movement under her skin. + wearing absolutely nothing. _HeA periodically twitches when you aren't looking and you swear you see movement under _hisA skin. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - She is steadily thrusting several tentacles extending from her crotch down the throat of a recognizable little representation of one of your slaves. The slave must be down in the kitchen, getting a meal out of the food dispensers. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creature's seed takes root. + _HeA is steadily thrusting several tentacles extending from _hisA crotch down the throat of a recognizable little representation of one of your slaves. The slave must be down in the kitchen, getting a meal out of the food dispensers. _HeA notices you watching and moans as multiple bulges work their way down _hisA shafts and into the slave. Your eyes are drawn to the hapless _girlU's rapidly swelling stomach as the creature's seed takes root. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is before her, writhing in pleasure and pain, as multiple tentacles fuck her ass. The slave must be receiving her drugs from one of the dildo dispensers. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creature's seed takes root. + A recognizable little representation of one of your slaves is before _himA, writhing in pleasure and pain, as multiple tentacles fuck _hisU ass. The slave must be receiving _hisU drugs from one of the dildo dispensers. _HeA notices you watching and moans as multiple bulges work their way down _hisA shafts and into the slave. Your eyes are drawn to the hapless _girlU's rapidly swelling stomach as the creature's seed takes root. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation of one of your slaves is lying on her back, writhing in pleasure and pain, as multiple tentacles fuck her. The slave must be using one of the penthouse's many sex toys. She notices you watching and moans as multiple bulges work their way down her shafts and into the slave. Your eyes are drawn to the hapless girl's rapidly swelling stomach as the creature's seed takes root. A loud moan echoes through the penthouse; it seems the slave got a little surprise herself. + A recognizable little representation of one of your slaves is lying on _hisU back, writhing in pleasure and pain, as multiple tentacles fuck _himU. The slave must be using one of the penthouse's many sex toys. _HeA notices you watching and moans as multiple bulges work their way down _hisA shafts and into the slave. Your eyes are drawn to the hapless _girlU's rapidly swelling stomach as the creature's seed takes root. A loud moan echoes through the penthouse; it seems the slave got a little surprise _himselfU. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is partially merged with her body. The slave must be getting a checkup. She notices your gaze and forces her way more into the slave, causing the breast, butt and thighs on her side of the body to swell disproportionately. + A recognizable little representation of one of your slaves is partially merged with _hisA body. The slave must be getting a checkup. _HeA notices your gaze and forces _hisA way more into the slave, causing the breast, butt and thighs on _hisA side of the body to swell disproportionately. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's partially enveloped a representation of one of your security drones. When she sees you looking at her, she bluntly states, "This one did good. Captured many for your nest." + _HeA's partially enveloped a representation of one of your security drones. When _heA sees you looking at _himA, _heA bluntly states, "This one did good. Captured many for your nest." <<elseif (_paSeed == 6) && ($studio == 1)>> - She is holding dozens of cameras at a recognizable little representation of one of your slaves masturbating. The slave must be using one of the penthouse's many vibrators, and $assistantName is likely turning the feed of it into a porno. + _HeA is holding dozens of cameras at a recognizable little representation of one of your slaves masturbating. The slave must be using one of the penthouse's many vibrators, and $assistantName is likely turning the feed of it into a porno. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's fecund avatar. + _HeA's accompanied by your market assistant's fecund avatar. <<if $marketAssistantRelationship == "cute">> - The market assistant is tightly wrapped in a bodysuit made of $assistantName, save for her exposed, very pregnant, belly. Her head briefly appears over the girls face and eyes you, while the market assistant giggles at the sensations covering her body. + The market assistant is tightly wrapped in a bodysuit made of $assistantName, save for _hisM exposed, very pregnant, belly. _HisA head briefly appears over the _girlM's face and eyes you, while the market assistant giggles at the sensations covering _hisM body. <<elseif $marketAssistantRelationship == "nonconsensual">> - The market assistant has been reduced to nothing more than a bloated incubator. $assistantName runs her tendrils across her breeder's swollen body, fondling her squirming, offspring filled breasts and massaging her octuplet sized, bulging pregnancy. The hapless girl twitches slightly as several more wormlike creatures slip from her body, prompting $assistantName to drive her tentacles into all her holes and vigorously pump her full of even more aphrodisiacs and eggs. + The market assistant has been reduced to nothing more than a bloated incubator. $assistantName runs _hisA tendrils across _hisA breeder's swollen body, fondling _hisM squirming, offspring filled breasts and massaging _hisM octuplet sized, bulging pregnancy. The hapless girl twitches slightly as several more wormlike creatures slip from _hisM body, prompting $assistantName to drive _hisA tentacles into all _hisM holes and vigorously pump _himM full of even more aphrodisiacs and eggs. <<elseif $marketAssistantRelationship == "incestuous">> - The market assistant's arms and legs are sunken into a wall of $assistantName's flesh; her immense stomach and breasts allowed to hang free. One of her breasts visibly shifts as another wormlike larva pushes its way out of her nipple, waking the addled girl from her stupor. She moans lustfully, her mind thoroughly warped by $assistantName's aphrodisiacs, "Shishter! I need more... I feel sho empty! Fill me up till I bursht!" $assistantName wastes no time in snaking into her gaping holes and pumping her so full her belly touches the floor and breasts heave massively. + The market assistant's arms and legs are sunken into a wall of $assistantName's flesh; _hisM immense stomach and breasts allowed to hang free. One of _hisM breasts visibly shifts as another wormlike larva pushes its way out of _hisM nipple, waking the addled girl from _hisM stupor. _HeM moans lustfully, _hisM mind thoroughly warped by $assistantName's aphrodisiacs, "Shishter! I need more... I feel sho empty! Fill me up till I bursht!" $assistantName wastes no time in snaking into _hisM gaping holes and pumping _himM so full _hisM belly touches the floor and breasts heave massively. <<else>> - They're sitting side by side, the market assistant resting an arm atop her huge, larva filled belly while clutching a newborn to her breast. $assistantName embraces her pregnant lover with several tentacles before drawing one to the girl's lips. She delicately kisses it before wrapping her lips around it and pleasuring her mate. + They're sitting side by side, the market assistant resting an arm atop _hisM huge, larvae filled belly while clutching a newborn to _hisM breast. $assistantName embraces _hisA pregnant lover with several tentacles before drawing one to the girl's lips. _HeM delicately kisses it before wrapping _hisM lips around it and pleasuring _hisM mate. <</if>> <<else>> - She's idly standing there, at least when you look at her; you catch strange things in the corner of your vision while you are working. + _HeA's idly standing there, at least when you look at _himA; you catch strange things in the corner of your vision while you are working. <</if>> <<case "incubus">> - She's a handsome little sex demon with a big dick and heavy balls. + _HeA'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. + _HeA'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. + _HeA's recently added an obscene number of piercings to _hisA cock and balls in addition to a pair of nipple rings. A thin chain links a ring attached to the head of _hisA penis to the heavy rings adorning _hisA 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. + _HeA is an ideal $arcologies[0].FSSupremacistRace man, and _hisA 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. + _HeA 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. + _HeA is an ideal Roman man, complete with something big and heavy hanging under _hisA toga. <<case "aztec revivalist">> - She is an ideal Aztec man wearing a headdress and a loincloth, which can't hide her enviable package. + _HeA is an ideal Aztec man wearing a headdress and a loincloth, which can't hide _hisA enviable package. <<case "egyptian revivalist">> - She is an ideal Egyptian man, complete with something big and heavy dangling behind her loincloth. + _HeA is an ideal Egyptian man, complete with something big and heavy dangling behind _hisA loincloth. <<case "edo revivalist">> - She is an ideal Japanese man, complete with something big and heavy between her legs. + _HeA is an ideal Japanese man, complete with something big and heavy between _hisA legs. <<case "arabian revivalist">> - She is an ideal Arabian man, complete with something big and heavy filling out her silken pants. + _HeA is an ideal Arabian man, complete with something big and heavy filling out _hisA silken pants. <<case "chinese revivalist">> - She is an ideal Chinese man, complete with something big and heavy between her legs. + _HeA is an ideal Chinese man, complete with something big and heavy between _hisA legs. <<case "chattel religionist">> - She is wearing nothing but an immense erection. Her balls visibly pulse, begging for release, but her load is blocked by a large plug capped with the symbol of your new religion. One pull is all it would take to bathe in her blessing. + _HeA is wearing nothing but an immense erection. _HisA balls visibly pulse, begging for release, but _hisA load is blocked by a large plug capped with the symbol of your new religion. One pull is all it would take to bathe in _hisA blessing. <<case "physical idealist">> - She is wearing nothing but an immense erection and is coated in the perfect amount of muscle. + _HeA is wearing nothing but an immense erection and is coated in the perfect amount of muscle. <<case "hedonistic decadence">> - She is wearing nothing but an immense erection and is coated in the perfect amount of fat. + _HeA is wearing nothing but an immense erection and is coated in the perfect amount of fat. <<case "repopulation focus">> - Her belly is round with child and is in a constant struggle with her erect cock over which gets to protrude out her front. + _HisA belly is round with child and is in a constant struggle with _hisA erect cock over which gets to protrude out _hisA front. <<case "eugenics">> - She's become even more irresistible lately; <<if $PC.vagina == 1>>you can help but think of that perfect cock cumming deep in your pussy and your belly rounding with a gorgeous child<<else>>the children sired by such a stud are unimaginable<</if>>. + _HeA's become even more irresistible lately; <<if $PC.vagina == 1>>you can help but think of that perfect cock cumming deep in your pussy and your belly rounding with a gorgeous child<<else>>the children sired by such a stud are unimaginable<</if>>. <<case "gender radicalist">> <<if $arcologies[0].FSGenderRadicalistLawFuta == 1>> - She is wearing nothing at all and has recently rendered herself slightly more feminine. She makes sure to make exaggerated motions to show off the pussy hidden beneath her swinging nuts. + _HeA is wearing nothing at all and has recently rendered _himselfA slightly more feminine. _HeA makes sure to make exaggerated motions to show off the pussy hidden beneath _hisA swinging nuts. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 2>> - She has recently increased the size of her genitals and has given up trying to wear pants; they just get in the way of her prominent erection. + _HeA has recently increased the size of _hisA genitals and has given up trying to wear pants; they just get in the way of _hisA prominent erection. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 3>> - She is wearing nothing at all; not that anything could fit her. Her cock and balls are utterly dwarfed by her door-jamming hips, massive ass and extra thick thighs. + _HeA is wearing nothing at all; not that anything could fit _himA. _HisA cock and balls are utterly dwarfed by _hisA door-jamming hips, massive ass and extra thick thighs. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 4>> - She is wearing loose clothing and has recently rendered herself slightly more feminine. She does her best to appear the perfect little femboy despite what's slipping down her pant leg. + _HeA is wearing loose clothing and has recently rendered _himselfA slightly more feminine. _HeA does _hisA best to appear the perfect little femboy despite what's slipping down _hisA pant leg. <<else>> - She is wearing nothing at all and has recently rendered herself even more handsome, since she was already a perfect fit for society. + _HeA is wearing nothing at all and has recently rendered _himselfA even more handsome, since _heA was already a perfect fit for society. <</if>> <<case "gender fundamentalist">> - She is wearing a cute dress that tightly hugs her attractive curves. She may be rendering herself more feminine, but can't hide the bulge under her skirt. + _HeA is wearing a cute dress that tightly hugs _hisA attractive curves. _HeA may be rendering _himselfA more feminine, but can't hide the bulge under _hisA skirt. <<case "asset expansionist">> - She is wearing nothing at all; not that anything could fit her. Her cock and balls are so large they reach the ground when she stands. + _HeA is wearing nothing at all; not that anything could fit _himA. _HisA cock and balls are so large they reach the ground when _heA stands. <<case "transformation fetishist">> - She is wearing jeans and a tight shirt. Her overly long erection runs up her front and protrudes out the neck of her top. + _HeA is wearing jeans and a tight shirt. _HisA overly long erection runs up _hisA front and protrudes out the neck of _hisA top. <<case "pastoralist">> - She is wearing nothing at all; not that anything could fit her. Her balls are absolutely massive; her sizable cock looks tiny resting atop them. She can barely take a step without overstimulating and orgasming across her sack. + _HeA is wearing nothing at all; not that anything could fit _himA. _HisA balls are absolutely massive; _hisA sizable cock looks tiny resting atop them. _HeA can barely take a step without overstimulating and orgasming across _hisA sack. <<case "maturity preferentialist">> - She has recently begun presenting herself as an experienced, mature man with an oddly familiar mustache and goatee. + _HeA has recently begun presenting _himselfA as an experienced, mature man with an oddly familiar mustache and goatee. <<case "youth preferentialist">> - She has recently adjusted her age to reflect your youth focused society. + _HeA has recently adjusted _hisA age to reflect your youth focused society. <<if $minimumSlaveAge == 3>> - She's an adorable toddler with an enormous cock hanging from her shorts. + _HeA's an adorable toddler with an enormous cock hanging from _hisA shorts. <<elseif $minimumSlaveAge <= 7>> - She's a cute shota with ball-filled shorts and a huge erection sneaking up her shirt. + _HeA's a cute shota with ball-filled shorts and a huge erection sneaking up _hisA shirt. <<elseif $minimumSlaveAge <= 13>> - She's an attractive teenager with an immodest bulge running down her pant leg. + _HeA's an attractive teenager with an immodest bulge running down _hisA pant leg. <<else>> - She's an attractive young adult with an immodest bulge running down her pantleg. + _HeA's an attractive young adult with an immodest bulge running down _hisA pant leg. <</if>> <<case "slimness enthusiast">> - She has recently slimmed her body down; everywhere but her proportionally huge cock, that is. + _HeA has recently slimmed _hisA body down; everywhere but _hisA proportionally huge cock, that is. <<case "body purist">> - She is wearing nothing at all, happy to show off her flawless body. Her cock and balls are now the ideal size to penetrate a natural girl. + _HeA is wearing nothing at all, happy to show off _hisA flawless body. _HisA cock and balls are now the ideal size to penetrate a natural girl. <<default>> - She enjoys wearing absolutely nothing but an enormous hard-on. She frequently, and openly, masturbates to your naked body. + _HeA enjoys wearing absolutely nothing but an enormous hard-on. _HeA frequently, and openly, masturbates to your naked body. <</switch>> <<else>> - She enjoys wearing absolutely nothing but an enormous hard-on. She frequently, and openly, masturbates to your naked body. + _HeA enjoys wearing absolutely nothing but an enormous hard-on. _HeA frequently, and openly, masturbates to your naked body. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - She has a recognizable little representation of one of your slaves with its lips around the base of her dick and a huge bulge down its throat. The slave must be down in the kitchen, getting a meal out of the food dispensers. She notices you watching and energetically renews deepthroating the slave. She moans lewdly as she blows her load in the slave's mouth, forcing cum to spray out the slave's nose and around her cock. She sighs with disappointment at the mess the slave has made. + _HeA has a recognizable little representation of one of your slaves with _hisU lips around the base of _hisA dick and a huge bulge down _hisU throat. The slave must be down in the kitchen, getting a meal out of the food dispensers. _HeA notices you watching and energetically renews deepthroating the slave. _HeA moans lewdly as _heA blows _hisA load in the slave's mouth, forcing cum to spray out the slave's nose and around _hisA cock. _HeA sighs with disappointment at the mess the slave has made. <<elseif ($suppository == 1) && (_paSeed == 2)>> - She is happily assfucking a recognizable little representation of one of your slaves. The slave must be receiving her drugs from one of the dildo dispensers. She notices you watching, increases her pace and cums deep in the slave's rear, slightly rounding her belly with cum. + _HeA is happily assfucking a recognizable little representation of one of your slaves. The slave must be receiving _hisU drugs from one of the dildo dispensers. _HeA notices you watching, increases _hisA pace and cums deep in the slave's rear, slightly rounding _hisU belly with cum. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation of one of your slaves is riding her erect cock. The slave must be using one of the penthouse's many sex toys. She notices you watching and winks at you, before promising not to suck too much life from her enthusiastic partner. + A recognizable little representation of one of your slaves is riding _hisA erect cock. The slave must be using one of the penthouse's many sex toys. _HeA notices you watching and winks at you, before promising not to suck too much life from _hisA enthusiastic partner. <<elseif (_paSeed == 4)>> - She has her cock forced deep into a recognizable little representation of one of your slaves. The slave must be getting a checkup. She notices your gaze, and states "What? I can feel her heartbeat clearly like this." + _HeA has _hisA cock forced deep into a recognizable little representation of one of your slaves. The slave must be getting a checkup. _HeA notices your gaze, and states "What? I can feel _hisU heartbeat clearly like this." <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's intently staring down a representation of one of your security drones. When she sees you looking at her, she coyly says, "I like this one. She did very well during the invasion and I wanted to reward her, but I can't find a hole..." + _HeA's intently staring down a representation of one of your security drones. When _heA sees you looking at _himA, _heA coyly says, "I like this one. _HeA did very well during the invasion and I wanted to reward _himA, but I can't find a hole..." <<elseif (_paSeed == 6) && ($studio == 1)>> - She has a camera strapped to her cock and is recording a recognizable little representation of one of your slaves sucking it. The slave must be playing with one of the penthouse's many dildos, and $assistantName is likely turning the feed of it into a PoV porno. + _HeA has a camera strapped to _hisA cock and is recording a recognizable little representation of one of your slaves sucking it. The slave must be playing with one of the penthouse's many dildos, and $assistantName is likely turning the feed of it into a PoV porno. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's still inexperienced avatar. + _HeA's accompanied by your market assistant's still inexperienced avatar. <<if $marketAssistantRelationship == "cute">> - The market assistant has cleaned up nicely since the last time you saw her. She does a little twirl to show off her new look before squeaking in shock as a burst of cum splashes across her face. She pouts at $assistantName, who is eagerly prepping a second load to fire at her. + The market assistant has cleaned up nicely since the last time you saw _himM. _HeM does a little twirl to show off _hisM new look before squeaking in shock as a burst of cum splashes across _hisM face. _HeM pouts at $assistantName, who is eagerly prepping a second load to fire at _himM. <<elseif $marketAssistantRelationship == "nonconsensual">> - The market assistant is being violently penetrated by $assistantName, her bloated belly swaying in tune to her thrusts. The hapless girl struggles in discomfort as the incubus blows another load into her already full womb, causing cum to backflow out of her now loose pussy. $assistantName leans back, motions to you, and asks, "Plenty of holes still to go around, if you want one!" + The market assistant is being violently penetrated by $assistantName, _hisM bloated belly swaying in tune to _hisA thrusts. The hapless _girlM struggles in discomfort as the incubus blows another load into _hisM already full womb, causing cum to backflow out of _hisM now loose pussy. $assistantName leans back, motions to you, and asks, "Plenty of holes still to go around, if you want one!" <<elseif $marketAssistantRelationship == "incestuous">> - The market assistant is eagerly riding her big brother, <<print $assistantName>>'s, dick. You can't help but notice how full her breasts have gotten and how plump her ass and thighs now are. She moans with lust as $assistantName cums into her fertile pussy; a glowing sigil appearing below her navel. She is well on her way to becoming the succubus consort of her once human brother. + The market assistant is eagerly riding _hisM big brother, <<print $assistantName>>'s, dick. You can't help but notice how full _hisM breasts have gotten and how plump _hisM ass and thighs now are. _HeM moans with lust as $assistantName cums into _hisM fertile pussy; a glowing sigil appearing below _hisM navel. _HeM is well on _hisM way to becoming the succubus consort of _hisM once human brother. <<else>> - The market assistant is embracing $assistantName as she is lovingly penetrated by the caring incubus. They pull each other close as they cum together, locking lips and refusing to let go until the other is completely satisfied. It takes quite some before they settle down and wave to you, thanking you deeply for the true love you've gifted them. + The market assistant is embracing $assistantName as _heM is lovingly penetrated by the caring incubus. They pull each other close as they cum together, locking lips and refusing to let go until the other is completely satisfied. It takes quite some before they settle down and wave to you, thanking you deeply for the true love you've gifted them. <</if>> <<else>> <<switch $assistantFSAppearance>> <<case "paternalist">> - She has her pants unfastened and is absentmindedly jerking off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA has _hisA pants unfastened and is absentmindedly jerking off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<case "degradationist">> - She's fed a number of beads down her urethra and is struggling to hold back her orgasm. When she notices you watching, she waves her throbbing erection at you, imploring you to yank out the beads and give her release. + _HeA's fed a number of beads down _hisA urethra and is struggling to hold back _hisA orgasm. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to yank out the beads and give _himA release. <<case "roman revivalist">> - She has her toga undone and is absentmindedly jerking off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA has _hisA toga undone and is absentmindedly jerking off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<case "egyptian revivalist" "aztec revivalist">> - She is absentmindedly jerking off, her loincloth pushed aside to make room. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA is absentmindedly jerking off, _hisA loincloth pushed aside to make room. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<case "edo revivalist" "chinese revivalist">> - She has undone her clothing and is absentmindedly jerking off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA has undone _hisA clothing and is absentmindedly jerking off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<case "arabian revivalist">> - She has her pants pulled off and is absentmindedly using them to jerk off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA has _hisA pants pulled off and is absentmindedly using them to jerk off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<case "chattel religionist">> - She is gingerly massaging her swollen balls. When she notices you watching, she struggles to sit up and implores you to pull out the stopper and bathe in her blessing. + _HeA is gingerly massaging _hisA swollen balls. When _heA notices you watching, _heA struggles to sit up and implores you to pull out the stopper and bathe in _hisA blessing. <<case "physical idealist">> - She's vigorously jerking off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA's vigorously jerking off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<case "hedonistic decadence">> - She's lazily jerking off. When she notices you watching, she waves a plate of cake at you, imploring you to have a bite. + _HeA's lazily jerking off. When _heA notices you watching, _heA waves a plate of cake at you, imploring you to have a bite. <<case "repopulation focus">> - She's leaning back with both hands beneath her swollen middle struggling to jack off. When she notices you watching, she sits up and sighs as her belly pushes her erection out of sight. + _HeA's leaning back with both hands beneath _hisA swollen middle struggling to jack off. When _heA notices you watching, _heA sits up and sighs as _hisA belly pushes _hisA erection out of sight. <<case "eugenics">> - She's reclining while absentmindedly jacking off. When she notices you watching, <<if $PC.vagina == 1>>sits back, making plenty of room for you to spear yourself on her erection<<else>>she waves her throbbing erection at you, imploring you to finish her off<</if>>. + _HeA's reclining while absentmindedly jacking off. When _heA notices you watching, <<if $PC.vagina == 1>>sits back, making plenty of room for you to spear yourself on _hisA erection<<else>>_heA waves _hisA throbbing erection at you, imploring you to finish _himA off<</if>>. <<case "gender radicalist">> <<if $arcologies[0].FSGenderRadicalistLawFuta == 1>> - She's reclining while absentmindedly jacking off with one hand and playing with her hidden pussy with the other. When she notices you watching, she spreads her legs wide so you can watch her spasm in orgasm. + _HeA's reclining while absentmindedly jacking off with one hand and playing with _hisA hidden pussy with the other. When _heA notices you watching, _heA spreads _hisA legs wide so you can watch _himA spasm in orgasm. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 2>> - She's leaning back with both hands wrapped around her huge cock, struggling to jack off. When she notices you watching, she invites you to lend a hand or two to help her out. + _HeA's leaning back with both hands wrapped around _hisA huge cock, struggling to jack off. When _heA notices you watching, _heA invites you to lend a hand or two to help _himA out. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 3>> - She is laying on her stomach, her ass and legs jiggling delightfully as she gives herself a thighjob. When she notices you watching, she struggles to roll onto her side and waves her throbbing erection at you, imploring you to finish her off. + _HeA is laying on _hisA stomach, _hisA ass and legs jiggling delightfully as _heA gives _himselfA a thighjob. When _heA notices you watching, _heA struggles to roll onto _hisA side and waves _hisA throbbing erection at you, imploring you to finish _himA off. <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 4>> - She's got her hands down her pants absentmindedly jerking off. When she notices you watching, she quickly stops, but it does little to hide the large wetspot forming on her tented pants. + _HeA's got _hisA hands down _hisA pants absentmindedly jerking off. When _heA notices you watching, _heA quickly stops, but it does little to hide the large wet spot forming on _hisA tented pants. <<else>> - She's absentmindedly jerking off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA's absentmindedly jerking off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <</if>> <<case "gender fundamentalist">> - She has hiked up her skirt and is absentmindedly jerking off. When she notices you watching, she quickly covers herself; though she can't hide the movements she makes under her dress. + _HeA has hiked up _hisA skirt and is absentmindedly jerking off. When _heA notices you watching, _heA quickly covers _himselfA; though _heA can't hide the movements _heA makes under _hisA dress. <<case "asset expansionist">> - She is lying on her back, legs squeezing her immense balls as she struggles to jack off her monolithic dick. When she notices you watching, she struggles to sit up before giving up and inviting you to lend a hand in beating her meat. + _HeA is lying on _hisA back, legs squeezing _hisA immense balls as _heA struggles to jack off _hisA monolithic dick. When _heA notices you watching, _heA struggles to sit up before giving up and inviting you to lend a hand in beating _hisA meat. <<case "transformation fetishist">> - She has her jeans unbuttoned and is absentmindedly trying to jerk off. When she notices you watching, she waves her throbbing erection at you, inviting you to lend a pair of hands. + _HeA has _hisA jeans unbuttoned and is absentmindedly trying to jerk off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, inviting you to lend a pair of hands. <<case "pastoralist">> - She is lying on her back, legs squeezing her immense balls as she cums again and again across herself. When she notices you watching, she struggles to sit up before giving into the sensations and blowing another load across your desk. + _HeA is lying on _hisA back, legs squeezing _hisA immense balls as _heA cums again and again across _himselfA. When _heA notices you watching, _heA struggles to sit up before giving into the sensations and blowing another load across your desk. <<case "maturity preferentialist">> - She has a hand down her pants. When she notices you watching, she begins eagerly stroking herself while describing, in detail, what she'd love to do to you. + _HeA has a hand down _hisA pants. When _heA notices you watching, _heA begins eagerly stroking _himselfA while describing, in detail, what _heA'd love to do to you. <<case "youth preferentialist">> - She has recently adjusted her age to reflect your youth centered society. She has her + _HeA has recently adjusted _hisA age to reflect your youth centered society. _HeA has _hisA <<if $minimumSlaveAge == 3>> shorts pulled down <<elseif $minimumSlaveAge <= 7>> @@ -1607,175 +1609,175 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS <<else>> pants unfastened <</if>> - and is absentmindedly jerking off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + and is absentmindedly jerking off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<case "slimness enthusiast">> - She's absentmindedly using both hands to jerk off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA's absentmindedly using both hands to jerk off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <<default>> - She's absentmindedly jerking off. When she notices you watching, she waves her throbbing erection at you, imploring you to finish her off. + _HeA's absentmindedly jerking off. When _heA notices you watching, _heA waves _hisA throbbing erection at you, imploring you to finish _himA off. <</switch>> <</if>> <<case "succubus">> - She's a beautiful little sex demoness with an ideal figure. + _HeA'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. + _HeA's wearing an absolutely stunning dress that perfectly hugs _hisA curves. Surprisingly, _heA 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. + _HeA's recently added an obscene number of piercings to _hisA labia in addition to a pair of nipple rings and a big, heavy ring on _hisA clit. A thin chain links the clit ring to the heavy rings adorning _hisA chest. <<case "supremacist">> - In fact, she is the most gorgeous $arcologies[0].FSSupremacistRace woman you've ever seen. + In fact, _heA 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. + In fact, _heA 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. + In fact, _heA is the most gorgeous Roman woman you've ever seen. <<case "aztec revivalist">> - In fact, she is the most gorgeous Aztec woman you've ever seen. + In fact, _heA is the most gorgeous Aztec woman you've ever seen. <<case "egyptian revivalist">> - In fact, she is the most gorgeous Egyptian woman you've ever seen. + In fact, _heA is the most gorgeous Egyptian woman you've ever seen. <<case "edo revivalist">> - In fact, she is the most gorgeous Japanese woman you've ever seen. + In fact, _heA is the most gorgeous Japanese woman you've ever seen. <<case "arabian revivalist">> - In fact, she is the most gorgeous Arabic woman you've ever seen. + In fact, _heA is the most gorgeous Arabic woman you've ever seen. <<case "chinese revivalist">> - In fact, she is the most gorgeous Chinese woman you've ever seen. + In fact, _heA is the most gorgeous Chinese woman you've ever seen. <<case "chattel religionist">> - She is wearing a tight dress modeled after the symbol of your new religion; it leaves her nipples and crotch fully exposed. + _HeA is wearing a tight dress modeled after the symbol of your new religion; it leaves _hisA nipples and crotch fully exposed. <<case "physical idealist">> <<if $arcologies[0].FSPhysicalIdealistStrongFat == 1>> - She is wearing nothing but a thong barely visible under her thick layer of fat. Her soft figure hides her immense strength. + _HeA is wearing nothing but a thong barely visible under _hisA thick layer of fat. _HisA soft figure hides _hisA immense strength. <<else>> - She is wearing nothing but a tight thong to show off her perfectly muscled body. + _HeA is wearing nothing but a tight thong to show off _hisA perfectly muscled body. <</if>> <<case "hedonistic decadence">> - She is wearing nothing, opting let to her fat belly cover her privates.<<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>> She may look soft and squishy, but her thick flab hides her immense musculature.<</if>> + _HeA is wearing nothing, opting let to _hisA fat belly cover _hisA privates.<<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>> _HeA may look soft and squishy, but _hisA thick flab hides _hisA immense musculature.<</if>> <<case "repopulation focus">> - She is wearing an overly taut dress that clings tightly to her triplet rounded middle and milk-laden breasts. She is positively glowing with motherhood. + _HeA is wearing an overly taut dress that clings tightly to _hisA triplet rounded middle and milk-laden breasts. _HeA is positively glowing with motherhood. <<case "eugenics">> - She's become even more irresistible lately; <<if $PC.dick == 1>>you can't help but fantasize about fucking her pregnant with your perfect child<<else>>you can't help but feel slightly envious of her body<</if>>. + _HeA's become even more irresistible lately; <<if $PC.dick == 1>>you can't help but fantasize about fucking _himA pregnant with your perfect child<<else>>you can't help but feel slightly envious of _hisA body<</if>>. <<case "gender radicalist">> <<if $arcologies[0].FSGenderRadicalistLawFuta == 3>> - She is wearing an amazingly ill-fitting pair of stretch pants barely pulled midway over her ass. Her door-jamming hips, massive rear and extra thick thighs jiggle spectacularly under the strained material. + _HeA is wearing an amazingly ill-fitting pair of stretch pants barely pulled midway over _hisA ass. _HisA door-jamming hips, massive rear and extra thick thighs jiggle spectacularly under the strained material. <<else>> - She is wearing baggy pants and a loose fitting shirt. Having altered her appearance to be alluringly androgynous, it is hard to make out her gender at a glance. + _HeA is wearing baggy pants and a loose fitting shirt. Having altered _hisA appearance to be alluringly androgynous, it is hard to make out _hisA gender at a glance. <</if>> <<case "gender fundamentalist">> - She is wearing a form fitting dress that emphasizes her feminine curves. A lovely sight, given that she has recently adjusted her body to be a lovely future mother. + _HeA is wearing a form fitting dress that emphasizes _hisA feminine curves. A lovely sight, given that _heA has recently adjusted _hisA body to be a lovely future mother. <<case "asset expansionist">> - She is wearing nothing at all; not that anything could fit her. Her breasts nearly touch the ground when she stands, yet are naturally perky. Her butt is so enormous it is a wonder she can even walk. + _HeA is wearing nothing at all; not that anything could fit _himA. _HisA breasts nearly touch the ground when _heA stands, yet are naturally perky. _HisA butt is so enormous it is a wonder _heA can even walk. <<case "transformation fetishist">> - She is wearing a minidress so tight it fully outlines her huge butt implants and barely contains the lower half of her beach ball sized tits. + _HeA is wearing a minidress so tight it fully outlines _hisA huge butt implants and barely contains the lower half of _hisA beach ball sized tits. <<case "pastoralist">> - She is wearing a pair of cow-print bikinis over her head sized breasts. A quartet of wet spots adorn her tops at all times. + _HeA is wearing a pair of cow-print bikinis over _hisA head sized breasts. A quartet of wet spots adorn _hisA tops at all times. <<case "maturity preferentialist">> - She has recently begun presenting herself as an experienced, mature woman; one can only wonder what positions and tricks she knows. + _HeA has recently begun presenting _himselfA as an experienced, mature woman; one can only wonder what positions and tricks _heA knows. <<case "youth preferentialist">> - She has recently adjusted her age to reflect your youth focused society. + _HeA has recently adjusted _hisA age to reflect your youth focused society. <<if $minimumSlaveAge == 3>> - She's an adorable toddler wearing a cute pink dress. + _HeA's an adorable toddler wearing a cute pink dress. <<elseif $minimumSlaveAge <= 7>> - She's a cute loli wearing tight, crotch hugging spats and a tight tub top across her flat chest. + _HeA's a cute loli wearing tight, crotch hugging spats and a tight tub top across _hisA flat chest. <<elseif $minimumSlaveAge <= 13>> - She's an attractive teenager wearing short shorts and a sheer top that shows off her newly grown breasts. + _HeA's an attractive teenager wearing short shorts and a sheer top that shows off _hisA newly grown breasts. <<else>> - She's an attractive young adult wearing a sheer dress that shows off her youthful curves. + _HeA's an attractive young adult wearing a sheer dress that shows off _hisA youthful curves. <</if>> <<case "slimness enthusiast">> <<if $arcologies[0].FSSlimnessEnthusiastLaw == 1>> - She has recently slimmed her body down tremendously; her breasts are flat as can be, as is her rear. She enjoys wearing an extremely thin string bikini that tightly hugs her body and barely covers her non-existent assets. + _HeA has recently slimmed _hisA body down tremendously; _hisA breasts are flat as can be, as is _hisA rear. _HeA enjoys wearing an extremely thin string bikini that tightly hugs _hisA body and barely covers _hisA non-existent assets. <<else>> - She has recently slimmed her body down and begun wearing form fitting clothing to show off her lithe figure. + _HeA has recently slimmed _hisA body down and begun wearing form fitting clothing to show off _hisA lithe figure. <</if>> <<case "body purist">> - She is wearing nothing at all, happy to show off her flawless body. Her curves are perfect; it's the only way to describe her. + _HeA is wearing nothing at all, happy to show off _hisA flawless body. _HisA curves are perfect; it's the only way to describe _himA. <<default>> - She enjoys using a tight strip of leather to support her ample bosom and a minuscule thong to cover her crotch. She commonly strikes sexy poses, her spaded tail wrapping around her legs seductively, hoping to catch her <<if $PC.title == 1>>Master's<<else>>Mistress's<</if>> eye. + _HeA enjoys using a tight strip of leather to support _hisA ample bosom and a minuscule thong to cover _hisA crotch. _HeA commonly strikes sexy poses, _hisA spaded tail wrapping around _hisA legs seductively, hoping to catch _hisA <<if $PC.title == 1>>Master's<<else>>Mistress's<</if>> eye. <</switch>> <<else>> - She enjoys using a tight strip of leather to support her ample bosom and a minuscule thong to cover her crotch. She commonly strikes sexy poses, her spaded tail wrapping around her legs seductively, hoping to catch her <<if $PC.title == 1>>Master's<<else>>Mistress's<</if>> eye. + _HeA enjoys using a tight strip of leather to support _hisA ample bosom and a minuscule thong to cover _hisA crotch. _HeA commonly strikes sexy poses, _hisA spaded tail wrapping around _hisA legs seductively, hoping to catch _hisA <<if $PC.title == 1>>Master's<<else>>Mistress's<</if>> eye. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - She has a recognizable little representation of one of your slave between her legs and is moaning with lust as the slave eagerly eats her out. The slave must be down in the kitchen, getting a meal out of the food dispensers. When she notices you watching, she gives you a show by cumming hard across the slave's face. + _HeA has a recognizable little representation of one of your slave between _hisA legs and is moaning with lust as the slave eagerly eats _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. When _heA notices you watching, _heA gives you a show by cumming hard across the slave's face. <<elseif ($suppository == 1) && (_paSeed == 2)>> - She is happily assfucking a recognizable little representation of one of your slaves with a strap on. The slave must be receiving her drugs from one of the dildo dispensers. Noticing you watching, she unwinds her tail from the around the slave and begins fucking her own pussy with it. + _HeA is happily assfucking a recognizable little representation of one of your slaves with a strap on. The slave must be receiving _hisU drugs from one of the dildo dispensers. Noticing you watching, _heA unwinds _hisA tail from the around the slave and begins fucking _hisA own pussy with it. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> - A recognizable little representation of one of your slaves is sharing a double-ended dildo with her. The slave must be using one of the penthouse's many sex toys. She notices you watching and blows you a kiss, before promising not to suck too much life from her enthusiastic partner. + A recognizable little representation of one of your slaves is sharing a double-ended dildo with _himA. The slave must be using one of the penthouse's many sex toys. _HeA notices you watching and blows you a kiss, before promising not to suck too much life from _hisA enthusiastic partner. <<elseif (_paSeed == 4)>> - She has her body pressed up against a recognizable little representation of one of your slaves as she feels her up. The slave must be getting a checkup. She notices your gaze and pinches the slave's erect nipples. + _HeA has _hisA body pressed up against a recognizable little representation of one of your slaves as _heA feels _himU up. The slave must be getting a checkup. _HeA notices your gaze and pinches the slave's erect nipples. <<elseif (_paSeed == 5) && ($invasionVictory > 0)>> - She's intently staring down a representation of one of your security drones. When she sees you looking at her, she coyly says, "I like this one. He did very well during the invasion and I wanted to reward him, but I can't find a dick..." A small schematic pops on screen, detailing plans for a rather large penetrating attachment for your model of drone. "It vibrates!" She teases. + _HeA's intently staring down a representation of one of your security drones. When _heA sees you looking at _himA, _heA coyly says, "I like this one. He did very well during the invasion and I wanted to reward him, but I can't find a dick..." A small schematic pops on screen, detailing plans for a rather large penetrating attachment for your model of drone. "It vibrates!" _heA teases. <<elseif (_paSeed == 6) && ($studio == 1)>> - She's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. + _HeA's getting oral from a recognizable little representation of one of your slaves, and is using a handheld camera to film the action, gonzo style. The slave must be using one of the penthouse's many vibrators, and your personal assistant is clearly turning the feed of it into porn. <<elseif (_paSeed == 7) && ($marketAssistantAnnounced == 1)>> - She's accompanied by your market assistant's still inexperienced avatar. + _HeA's accompanied by your market assistant's still inexperienced avatar. <<if $marketAssistantRelationship == "cute">> - $assistantName has the market assistant's pants down and is eagerly sucking him off. He tenses with orgasm and sighs with relief only for $assistantName to deeply kiss him and force him to taste his cum with her. + $assistantName has the market assistant's pants down and is eagerly sucking _himM off. _HeM tenses with orgasm and sighs with relief only for $assistantName to deeply kiss _himM and force _himM to taste _hisM cum with _himA. <<elseif $marketAssistantRelationship == "nonconsensual">> - The market assistant is being violently ridden by $assistantName, her fuller assets swaying in tune to her movements. The hapless boy struggles pitifully as the succubus coaxes another load out of her exhausted toy. $assistantName leans back, strokes her luscious body and says, "His energy is making me even more beautiful for you!" + The market assistant is being violently ridden by $assistantName, _hisA fuller assets swaying in tune to _hisA movements. The hapless _girlM struggles pitifully as the succubus coaxes another load out of _hisA exhausted toy. $assistantName leans back, strokes _hisA luscious body and says, "_HisM energy is making me even more beautiful for you!" <<elseif $marketAssistantRelationship == "incestuous">> - The market assistant is being ridden by his enormously pregnant big sister, $assistantName. He's supporting her taut belly as she uses her hands to hold their twins to her swollen breasts. You can't help but notice how full his balls have become and thick his shaft is. He moans with lust as $assistantName bucks with orgasm before painting her womb with another coat of sperm. $assistantName grunts slightly as his dick grows larger inside her and his balls swell for a second round. He is well on his way to becoming the incubus lover of his once human sister. + The market assistant is being ridden by _hisM enormously pregnant big sister, $assistantName. _HeM's supporting _hisA taut belly as _heA uses _hisA hands to hold their twins to _hisA swollen breasts. You can't help but notice how full _hisM balls have become and thick _hisM shaft is. _HeM moans with lust as $assistantName bucks with orgasm before painting _hisA womb with another coat of sperm. $assistantName grunts slightly as _hisM dick grows larger inside _himA and _hisM balls swell for a second round. _HeM is well on _hisM way to becoming the incubus lover of _hisM once human sister. <<else>> - The market assistant is tenderly fucking $assistantName in the missionary position. He leans in as they cum together, locking lips and kissing his lover deeply. Once they are both satisfied, they snuggle up for a post coitus rest and thank you deeply for the true love you've gifted them. + The market assistant is tenderly fucking $assistantName in the missionary position. _HeM leans in as they cum together, locking lips and kissing _hisM lover deeply. Once they are both satisfied, they snuggle up for a post coitus rest and thank you deeply for the true love you've gifted them. <</if>> <<else>> <<switch $assistantFSAppearance>> <<case "paternalist">> - 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. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and leans forward giving you a tantalizing view of _hisA 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. + _HeA's absentmindedly playing with _hisA nipple rings. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA curves to _hisA crotch where _heA traces the piercings dangling from _hisA 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. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA curves, tempting you with _hisA 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. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA 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. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA sides and to _hisA pussy while moaning seductively. <<case "physical idealist">> - She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and flexes her muscles in some of the most seductive ways imaginable<<if $arcologies[0].FSPhysicalIdealistStrongFat == 1>>, her layer of flab jiggling along to her motions<</if>>. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and flexes _hisA muscles in some of the most seductive ways imaginable<<if $arcologies[0].FSPhysicalIdealistStrongFat == 1>>, _hisA layer of flab jiggling along to _hisA motions<</if>>. <<case "hedonistic decadence">> - She's absentmindedly groping her fat tits. When she notices you eyeing her, she smiles coyly and lewdly gropes her soft body.<<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>> You catch the occasional glimpse of her hidden muscles while she effortlessly manhandles her heavy figure.<</if>> + _HeA's absentmindedly groping _hisA fat tits. When _heA notices you eyeing _himA, _heA smiles coyly and lewdly gropes _hisA soft body.<<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>> You catch the occasional glimpse of _hisA hidden muscles while _heA effortlessly manhandles _hisA heavy figure.<</if>> <<case "repopulation focus">> - She's absentmindedly sucking a tit. When she notices you eyeing her, she smiles coyly and runs her hands down her curves and across her pregnancy where she traces her popped navel. A flurry of kicks bulge her belly as it grows slightly larger. She sighs and pats her added mass. + _HeA's absentmindedly sucking a tit. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA curves and across _hisA pregnancy where _heA traces _hisA popped navel. A flurry of kicks bulge _hisA belly as it grows slightly larger. _HeA sighs and pats _hisA added mass. <<case "eugenics">> - She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and spreads her legs, inviting you to enjoy her perfect pussy. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and spreads _hisA legs, inviting you to enjoy _hisA perfect pussy. <<case "gender radicalist">> <<if $arcologies[0].FSGenderRadicalistLawFuta == 3>> - She's absentmindedly fondling her asscheeks. When she notices you eyeing her, she smiles coyly and spins around, splitting her pants and revealing her enticing butthole. + _HeA's absentmindedly fondling _hisA asscheeks. When _heA notices you eyeing _himA, _heA smiles coyly and spins around, splitting _hisA pants and revealing _hisA enticing butthole. <<else>> - She's absentmindedly playing with her hair. When she notices you eyeing her, she leaps to her feet and invites you to chance what resides between her legs. + _HeA's absentmindedly playing with _hisA hair. When _heA notices you eyeing _himA, _heA leaps to _hisA feet and invites you to chance what resides between _hisA legs. <</if>> <<case "gender fundamentalist">> - She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and runs her hands down her motherly curves while moaning seductively. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA motherly curves while moaning seductively. <<case "asset expansionist">> - She's absentmindedly massaging her tits. When she notices you eyeing her, she smiles coyly and proceeds to trace the length of her breasts to her nipple; she never reaches them, as her breasts steadily outpace her as she reaches outwards. + _HeA's absentmindedly massaging _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and proceeds to trace the length of _hisA breasts to _hisA nipple; _heA never reaches them, as _hisA breasts steadily outpace _himA as _heA reaches outwards. <<case "transformation fetishist">> - She's absentmindedly groping her ass. When she notices you eyeing her, she smiles coyly and flexes causing her tits to pop out of her overly short top. Giggling, she puckers her huge, fake lips and blows you a kiss. + _HeA's absentmindedly groping _hisA ass. When _heA notices you eyeing _himA, _heA smiles coyly and flexes causing _hisA tits to pop out of _hisA overly short top. Giggling, _heA puckers _hisA huge, fake lips and blows you a kiss. <<case "pastoralist">> - She's absentmindedly milking a pair of her tits. When she notices you eyeing her, she smiles coyly and leaps to her feet causing her quartet of milk bags to spring loose from her tops. She giggles as she gestures the many ways you could titfuck her. + _HeA's absentmindedly milking a pair of _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and leaps to _hisA feet, causing _hisA quartet of milk bags to spring loose from _hisA tops. _HeA giggles as _heA gestures the many ways you could titfuck _himA. <<case "maturity preferentialist">> - She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and begins making a motion you can only fathom the meaning of. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and begins making a motion you can only fathom the meaning of. <<case "youth preferentialist">> <<if $minimumSlaveAge == 3>> - She has her hands down her dress and is happily fondling herself. When she notices you eyeing her, she quickly hides her hands behind her back and plays innocent. + _HeA has _hisA hands down _hisA dress and is happily fondling _himselfA. When _heA notices you eyeing _himA, _heA quickly hides _hisA hands behind _hisA back and plays innocent. <<elseif $minimumSlaveAge <= 7>> - She has both hands up her top and is happily playing with her nipples. When she notices you eyeing her, she quickly yanks her tube top off and lewdly waves her flat chest at you. + _HeA has both hands up _hisA top and is happily playing with _hisA nipples. When _heA notices you eyeing _himA, _heA quickly yanks _hisA tube top off and lewdly waves _hisA flat chest at you. <<elseif $minimumSlaveAge <= 13>> - She has both hands down her shorts and is eagerly playing with her pussy. When she notices you eyeing her, she quickly pulls her bottoms down and spreads her legs, desperate for you to relieve her of this new feeling. + _HeA has both hands down _hisA shorts and is eagerly playing with _hisA pussy. When _heA notices you eyeing _himA, _heA quickly pulls _hisA bottoms down and spreads _hisA legs, desperate for you to relieve _himA of this new feeling. <<else>> - She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and runs her hands down her new curves while moaning seductively. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA new curves while moaning seductively. <</if>> <<case "slimness enthusiast">> <<if $arcologies[0].FSSlimnessEnthusiastLaw == 1>> - She's absentmindedly pinching her nipples. When she notices you eyeing her, she smiles coyly and runs her hands across her flat chest while moaning seductively. + _HeA's absentmindedly pinching _hisA nipples. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands across _hisA flat chest while moaning seductively. <<else>> - She's absentmindedly groping her small tits. When she notices you eyeing her, she smiles coyly and runs her hands down her lithe body while moaning seductively. + _HeA's absentmindedly groping _hisA small tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA lithe body while moaning seductively. <</if>> <<case "body purist">> - She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and runs her hands down her perfect curves while moaning seductively. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA perfect curves while moaning seductively. <<default>> - She's absentmindedly groping her tits. When she notices you eyeing her, she smiles coyly and runs her hands down her curves while moaning seductively. + _HeA's absentmindedly groping _hisA tits. When _heA notices you eyeing _himA, _heA smiles coyly and runs _hisA hands down _hisA curves while moaning seductively. <</switch>> <</if>> <<default>> - It's a little abstract symbol; when <<if $assistant == 0>>it<<else>>she<</if>> speaks, the symbol glows slightly. + _HeA's a little abstract symbol; when _heA speaks, the symbol glows slightly. <</switch>> \ No newline at end of file diff --git a/src/uncategorized/personalAssistantOptions.tw b/src/uncategorized/personalAssistantOptions.tw index 3b9d2d2b32f39eee36145626b5f012d2c2e543d4..da16d69a380a26a06a4b930ac4e5bdb662360db3 100644 --- a/src/uncategorized/personalAssistantOptions.tw +++ b/src/uncategorized/personalAssistantOptions.tw @@ -6,6 +6,7 @@ <<if $marketAssistantLimit>><<set $marketAssistantLimit to Math.clamp($marketAssistantLimit, 10000, 10000000)>><</if>> <<if $seeImages == 1>><<= assistantArt(3)>><</if>> +<<setAssistantPronouns>> Seated at your desk, you glance at the visual representation of $assistantName, down in one corner of your desk's glass top. @@ -19,9 +20,9 @@ Seated at your desk, you glance at the visual representation of $assistantName, <<if $assistantPower > 0>> <br><br> - Though <<if $assistant == 0>>it<<else>>she<</if>> remains short of a true AI, the arcology's upgraded computer core allows <<if $assistant == 0>>it<<else>>her<</if>> to use brute force to simulate sentient behavior quite well. <<if $assistant == 0>>It<<else>>She<</if>> is not truly self aware, but <<if $assistant == 0>>it<<else>>she<</if>> is able to predict what a sentient being with a certain character might say or do in common situations. The increased power has other applications; for example, it has improved the accuracy of your estimates of economic activity in the Free City. + Though _heA remains short of a true AI, the arcology's upgraded computer core allows _himA to use brute force to simulate sentient behavior quite well. _HeA is not truly self aware, but _heA is able to predict what a sentient being with a certain character might say or do in common situations. The increased power has other applications; for example, it has improved the accuracy of your estimates of economic activity in the Free City. <<else>> - <<if $assistant == 0>>It<<else>>She<</if>> is well short of a true AI, but with extensive access to information on past human behavior and the processing power to query that information quickly, <<if $assistant == 0>>it<<else>>she<</if>> can often seem self aware by modeling herself after others' past behavior. + _HeA is well short of a true AI, but with extensive access to information on past human behavior and the processing power to query that information quickly, _heA can often seem self aware by modeling herself after others' past behavior. <</if>> <br><br> @@ -43,9 +44,9 @@ __Behavior settings:__ <br> <<if $assistant == 0>> - Your assistant is using its default settings, and is not behaving as though it has a libido. [[Instruct it to simulate a sex drive|Personal assistant options][$assistant = 1]] + Your assistant is using _hisA default settings, and is not behaving as though _heA has a libido. [["Instruct " + _himA + " to simulate a sex drive"|Personal assistant options][$assistant = 1]] <<else>> - Your assistant is simulating preferences and a sex drive. [[Revert her to normal settings|Personal assistant options][$assistant = 0, $assistantAppearance = "normal"]] + Your assistant is simulating preferences and a sex drive. [["Revert " + _himA + " to normal settings"|Personal assistant options][$assistant = 0, $assistantAppearance = "normal"]] <</if>> <br> @@ -54,7 +55,7 @@ __Behavior settings:__ <br> __Appearance settings:__ <br> -She is currently using the ''$assistantAppearance'' avatar. +_HeA is currently using the ''$assistantAppearance'' avatar. <<if $PAPublic == 1>> <<set _seed = []>> <<switch $assistantAppearance>> @@ -845,12 +846,12 @@ __Downloadable Appearances:__ <br><br> -/* Choose her FS appearance */ +/* Choose _hisA FS appearance */ <<if $assistantFSOptions != 0 && $assistantAppearance != "normal">> <br> __Society-specific appearance settings:__ <br> -She can further refine her avatar to match the arcology's social profile<<if $assistantFSAppearance != "default">>; her current variation shows ''$assistantFSAppearance'' touches.<<else>>, though no details stand out right now.<</if>> +_HeA can further refine _hisA avatar to match the arcology's social profile<<if $assistantFSAppearance != "default">>; _hisA current variation shows ''$assistantFSAppearance'' touches.<<else>>, though no details stand out right now.<</if>> <br> <<if $assistantFSAppearance != "default">> [[Default|Personal assistant options][$assistantFSAppearance = "default"]] @@ -975,7 +976,7 @@ __Business Assistant settings:__ <br> The arcology's upgraded computers support advanced business analysis. <<if $assistantAppearance != "normal">> - These capabilities are represented by an avatar styled after $assistantName's, with which she simulates a ''$marketAssistantRelationship'' relationship. + These capabilities are represented by an avatar styled after $assistantName's, with which _heA simulates a ''$marketAssistantRelationship'' relationship. <br> <<if $marketAssistantRelationship != "cute">> [[Cute|Personal assistant options][$marketAssistantRelationship = "cute"]] @@ -998,13 +999,13 @@ The arcology's upgraded computers support advanced business analysis. <br> <</if>> <br> -<<if $assistant>>She<<else>>It<</if>> is +_HeA is <<if $marketAssistantLimit>> ''allowed'' to use excess liquid assets over <<print cashFormat($marketAssistantLimit)>> to play the menial slave market. [[Disallow|Personal assistant options][$marketAssistantLimit = 0]] <br> //Define custom cash limit://<<textbox "$marketAssistantLimit" $marketAssistantLimit "Personal assistant options">> <br> - <<if $assistant>>She<<else>>It<</if>> will be + _HeA will be <<if $marketAssistantAggressiveness>> ''aggressive'' about buying and selling. [[Be conservative|Personal assistant options][$marketAssistantAggressiveness = 0]] <<else>> diff --git a/src/uncategorized/pit.tw b/src/uncategorized/pit.tw index 86777cbb9edd7747dfe47e3a839648a362cf53da..d55c2f422e203c9c421080152e4067eced1b52fe 100644 --- a/src/uncategorized/pit.tw +++ b/src/uncategorized/pit.tw @@ -59,7 +59,7 @@ $pitNameCaps is clean and ready, <br> <<if $pitLethal == 1>> <<if $pitAnimal == 1>> - The fighter will be armed with a sword and will fight to the death. [[Nonlethal|Pit][$pitLethal = 0]] + The fighter will be armed with a sword and will fight to the death. [[Nonlethal|Pit][$pitLethal = 0]] <<else>> Fighters will be armed with swords, and fights will be to the death. [[Nonlethal|Pit][$pitLethal = 0]] <</if>> diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw index 4bd0387ac44371fafc5a4d6a8b2e8ba81494ce3b..75286ece4c6047532c4acd27693f54356fba16c3 100644 --- a/src/uncategorized/prestigiousSlave.tw +++ b/src/uncategorized/prestigiousSlave.tw @@ -293,8 +293,8 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.addict = 20>> - <<set $activeSlave.sexualFlaw = either("hates oral", "hates anal", "hates penetration")>> - <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "odd", "anorexic")>> + <<set $activeSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration")>> + <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>> <<set $activeSlave.customDesc = "She sometimes forgets herself and acts as though she were still a coming celebrity.">> <<case "politician">> @@ -532,7 +532,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.career = "a porn star">> <<set $activeSlave.boobsImplant += random(4,6)*200>> <<set $activeSlave.boobs += $activeSlave.boobsImplant>> - <<set $activeSlave.nipples = either("cute", "puffy", "huge")>> + <<set $activeSlave.nipples = either("cute", "huge", "puffy")>> <<set $activeSlave.areolae = 1>> <<set $activeSlave.butt += 1>> <<set $activeSlave.buttImplant += 1>> @@ -624,7 +624,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.combatSkill = 1>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> - <<set $activeSlave.sexualFlaw = either("hates oral", "hates anal", "hates penetration")>> + <<set $activeSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration")>> <<set $activeSlave.behavioralFlaw = "arrogant">> <<set $activeSlave.customDesc = "She's not particularly bright, and enjoys solving problems with physical force.">> @@ -656,7 +656,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.sexualFlaw = either("hates women")>> - <<set $activeSlave.behavioralFlaw = either("arrogant", "anorexic")>> + <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant")>> <<set $activeSlave.customDesc = "She moves with the practiced grace of someone who unconsciously still pictures herself on the runway.">> <<case "d albino">> @@ -689,7 +689,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.career = "a prostitute">> <<set $activeSlave.boobsImplant += random(10,15)*200>> <<set $activeSlave.boobs += $activeSlave.boobsImplant>> - <<set $activeSlave.nipples = either("cute", "puffy", "huge")>> + <<set $activeSlave.nipples = either("cute", "huge", "puffy")>> <<set $activeSlave.areolae = 2>> <<set $activeSlave.butt += 4>> <<set $activeSlave.buttImplant += 4>> @@ -763,8 +763,8 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.addict = 20>> - <<set $activeSlave.sexualFlaw = either("hates oral", "hates anal", "hates penetration")>> - <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "odd", "anorexic")>> + <<set $activeSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration")>> + <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>> <<set $activeSlave.customDesc = "She sometimes forgets herself and acts as though she were still a coming celebrity.">> <<case "d politician">> diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw index 523d8afb05f04021efb29d0628d41e7510e5cae2..19443b617e450e82e40989d44adef5aa39b2f972 100644 --- a/src/uncategorized/ptWorkaround.tw +++ b/src/uncategorized/ptWorkaround.tw @@ -2,6 +2,7 @@ <<set _ptwi = $personalAttention.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> +<<setLocalPronouns $activeSlave>> <<if $personalAttention[_ptwi].trainingRegimen == "look after her">> ''You care for'' <<else>> @@ -19,46 +20,46 @@ <<case "build her devotion">> <<set $activeSlave.devotion += 6>> <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "submissive")>> - Since $activeSlave.slaveName is a submissive, you @@.hotpink;build $his devotion to you@@ by indulging $his need to be dominated. Already smiling to herself, she changes into bondage gear that blinds her, forces her arms behind her back, forces her to present her breasts uncomfortably, and forces a painfully large dildo up her <<if $activeSlave.vagina > 0>>vagina<<if $activeSlave.anus > 0>> and anus<</if>><<elseif $activeSlave.anus > 0>>anus<</if>>. Thus attired, she is forced to serve you in whatever petty ways occur to you. She holds your tablet for you on her upthrust ass as you work, holds a thin beverage glass for you in her upturned mouth when you eat, and lies still so you can use her tits as a pillow whenever you recline. She loves it. + Since $activeSlave.slaveName is a submissive, you @@.hotpink;build $his devotion to you@@ by indulging $his need to be dominated. Already smiling to $himself, $he changes into bondage gear that blinds $him, forces $his arms behind $his back, forces $him to present $his breasts uncomfortably, and forces a painfully large dildo up $his <<if $activeSlave.vagina > 0>>vagina<<if $activeSlave.anus > 0>> and anus<</if>><<elseif $activeSlave.anus > 0>>anus<</if>>. Thus attired, $he is forced to serve you in whatever petty ways occur to you. $He holds your tablet for you on $his upthrust ass as you work, holds a thin beverage glass for you in $his upturned mouth when you eat, and lies still so you can use $his tits as a pillow whenever you recline. $He loves it. <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "cumslut") && ($PC.dick == 1)>> - Since $activeSlave.slaveName has an unusual taste for oral sex and cum, you @@.hotpink;build her devotion to you@@ by indulging her. You allow her to spend her free time following you around. She is permitted to act as your private cum receptacle. If you use another slave, you usually pull out and give her smiling face a facial. When you come inside another slave instead, $activeSlave.slaveName is allowed to get your cum anyway, regardless of whether that requires the other slave to spit it into her mouth or $activeSlave.slaveName to suck it out of the other slave's vagina or rectum. Either way, she rubs her stomach happily after she's swallowed it down. + Since $activeSlave.slaveName has an unusual taste for oral sex and cum, you @@.hotpink;build $his devotion to you@@ by indulging $him. You allow $him to spend $his free time following you around. $He is permitted to act as your private cum receptacle. If you use another slave, you usually pull out and give $his smiling face a facial. When you come inside another slave instead, $activeSlave.slaveName is allowed to get your cum anyway, regardless of whether that requires the other slave to spit it into $his mouth or $activeSlave.slaveName to suck it out of the other slave's vagina or rectum. Either way, $he rubs $his stomach happily after $he's swallowed it down. <<set $activeSlave.oralCount += 20, $oralTotal += 20>> <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "boobs")>> - Since $activeSlave.slaveName has an unusual taste for having her tits fondled, you @@.hotpink;build her devotion to you@@ by indulging her. You keep her near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and play with her. She sometimes masturbates while you massage her breasts and <<if $activeSlave.nipples == "fuckable">>finger<<else>>pinch<</if>> her nipples, but often she doesn't even need to. + Since $activeSlave.slaveName has an unusual taste for having $his tits fondled, you @@.hotpink;build $his devotion to you@@ by indulging $him. You keep $him near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and play with $him. $He sometimes masturbates while you massage $his breasts and <<if $activeSlave.nipples == "fuckable">>finger<<else>>pinch<</if>> $his nipples, but often $he doesn't even need to. <<set $activeSlave.mammaryCount += 20, $mammaryTotal += 20>> <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "pregnancy")>> - Since $activeSlave.slaveName has an unusual taste for big pregnant bellies, you @@.hotpink;build her devotion to you@@ by indulging her. You <<if isItemAccessible("a small empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight < 130>>strap an enormous sympathy belly onto her and <<elseif $activeSlave.belly < 1500>>strap a pillow around her middle, give her an oversized shirt and <</if>>keep her near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and rub her dome of a belly for luck. Occasionally you pay more attention to her, making sure to fondle her rounded middle as you feel up her motherly body. She sometimes masturbates when you aren't groping her, enjoying her gravid figure, but often she doesn't even need to. + Since $activeSlave.slaveName has an unusual taste for big pregnant bellies, you @@.hotpink;build $his devotion to you@@ by indulging $him. You <<if isItemAccessible("a small empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight < 130>>strap an enormous sympathy belly onto $him and <<elseif $activeSlave.belly < 1500>>strap a pillow around $his middle, give $him an oversized shirt and <</if>>keep $him near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and rub $his dome of a belly for luck. Occasionally you pay more attention to $him, making sure to fondle $his rounded middle as you feel up $his motherly body. $He sometimes masturbates when you aren't groping $him, enjoying $his gravid figure, but often $he doesn't even need to. <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation") && ((canDoVaginal($activeSlave) && $activeSlave.vagina > 0) || (canDoAnal($activeSlave) && $activeSlave.anus > 0))>> - Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build her devotion to you@@ by indulging her perversions. Since she's an absolute slut for humiliation, you let her whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you bring her on a leash and fuck her in public. She comes harder than ever when you push her naked body up against the wall of a crowded public arcology elevator and molest her. + Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build $his devotion to you@@ by indulging $his perversions. Since $he's an absolute slut for humiliation, you let $him whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you bring $him on a leash and fuck $him in public. $He comes harder than ever when you push $his naked body up against the wall of a crowded public arcology elevator and molest $him. <<set $activeSlave.oralCount += 4, $oralTotal += 4>> <<= BothVCheck(4, 2)>> <<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>> - Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build her devotion to you@@ by indulging her perversions. Since she's an absolute slut for humiliation, you let her whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you + Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build $his devotion to you@@ by indulging $his perversions. Since $he's an absolute slut for humiliation, you let $him whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you <<if ($activeSlave.amp != 1)>> - bring her on a leash and have her service you in public. She comes harder than ever when you push her down on her knees in a crowded public arcology elevator and facefuck her while she masturbates fervently. + bring $him on a leash and have $him service you in public. $He comes harder than ever when you push $him down on $his knees in a crowded public arcology elevator and facefuck $him while $he masturbates fervently. <<else>> - carry her out and have her service you in public. She comes harder than ever when you push her face to your <<if $PC.dick == 1>>dick<<else>>pussy<</if>> in a crowded public arcology elevator and facefuck her while she tries her hardest to masturbate. + carry $him out and have $him service you in public. $He comes harder than ever when you push $his face to your <<if $PC.dick == 1>>dick<<else>>pussy<</if>> in a crowded public arcology elevator and facefuck $him while $he tries $his hardest to masturbate. <</if>> <<set $activeSlave.oralCount += 8, $oralTotal += 8>> <<elseif ($activeSlave.anus == 3) && ($activeSlave.vagina == 3) && $activeSlave.geneMods.rapidCellGrowth != 1>> - $activeSlave.slaveName is a stretched-out, well-traveled slut. Some like their holes loose, but most prefer cunts and butts that don't make sloppy noises when fucked. So, you spend some quality care time with her, carefully massaging her abused holes with oils and lotions. She comes, of course, but her pussy and asshole do benefit from the treatment. You allow her to service you with her mouth to avoid spoiling your work right away. Afterward, she <<if ($activeSlave.amp != 1)>>@@.hotpink;hugs you and gives you a kiss@@<<else>>@@.hotpink;gives you a kiss and tries to hug you,@@ but without arms, all she manages is a sort of nuzzle<</if>>. + $activeSlave.slaveName is a stretched-out, well-traveled slut. Some like their holes loose, but most prefer cunts and butts that don't make sloppy noises when fucked. So, you spend some quality care time with $him, carefully massaging $his abused holes with oils and lotions. $He comes, of course, but $his pussy and asshole do benefit from the treatment. You allow $him to service you with $his mouth to avoid spoiling your work right away. Afterward, $he <<if ($activeSlave.amp != 1)>>@@.hotpink;hugs you and gives you a kiss@@<<else>>@@.hotpink;gives you a kiss and tries to hug you,@@ but without arms, all $he manages is a sort of nuzzle<</if>>. <<set $activeSlave.vagina--, $activeSlave.anus--, $activeSlave.oralCount += 5, $oralTotal += 5>> <<elseif $activeSlave.vagina == 0>> - $activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for her and she is @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged. She's almost disappointed when it becomes clear that you don't mean to take her virginity. You gently stimulate her <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while she sucks you off, bringing her to a moaning climax as you cum in her mouth. + $activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for $him and $he is @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged. $He's almost disappointed when it becomes clear that you don't mean to take $his virginity. You gently stimulate $his <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while $he sucks you off, bringing $him to a moaning climax as you cum in $his mouth. <<set $activeSlave.oralCount += 5, $oralTotal += 5>> <<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina < 0)>> - You haven't decided to take $activeSlave.slaveName's anus yet, so you let her suck you off and play with herself while she does. You stroke her hair, play with her tits, and generally pamper her while she orally services you. She's accustomed to the slave life, so the experience of affection is novel for her and she is @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged. She's almost disappointed when it becomes clear that you don't mean to take her virgin hole. + You haven't decided to take $activeSlave.slaveName's anus yet, so you let $him suck you off and play with $himself while $he does. You stroke $his hair, play with $his tits, and generally pamper $him while $he orally services you. $He's accustomed to the slave life, so the experience of affection is novel for $him and $he is @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged. $He's almost disappointed when it becomes clear that you don't mean to take $his virgin hole. <<set $activeSlave.oralCount += 5, $oralTotal += 5>> <<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> - You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly, and keep well clear of her still-virgin asshole in the process. She's accustomed to the slave life, so the experience is almost novel for her and she is affectingly @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged before she takes cock. Slaves are usually used without regard to their orgasm, so she's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with her own. She's a puddle on the sheets under your hands. + You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly, and keep well clear of $his still-virgin asshole in the process. $He's accustomed to the slave life, so the experience is almost novel for $him and $he is affectingly @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged before $he takes cock. Slaves are usually used without regard to their orgasm, so $he's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with $his own. $He's a puddle on the sheets under your hands. <<set $activeSlave.oralCount += 4, $oralTotal += 4>> <<= VaginalVCheck(4)>> <<elseif $activeSlave.anus == 0>> - $activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for her and she is @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged. She's almost disappointed when it becomes clear that you don't mean to take her anal virginity. You gently stimulate her <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while she sucks you off, bringing her to a moaning climax as you cum in her mouth. + $activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for $him and $he is @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged. $He's almost disappointed when it becomes clear that you don't mean to take $his anal virginity. You gently stimulate $his <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while $he sucks you off, bringing $him to a moaning climax as you cum in $his mouth. <<set $activeSlave.oralCount += 5, $oralTotal += 5>> <<else>> - You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly. She's accustomed to the slave life, so the experience is almost novel for her and she is affectingly @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged before she takes cock. Slaves are usually used without regard to their orgasm, so she's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with her own. She's a puddle on the sheets under your hands. + You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly. $He's accustomed to the slave life, so the experience is almost novel for $him and $he is affectingly @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged before $he takes cock. Slaves are usually used without regard to their orgasm, so $he's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with $his own. $He's a puddle on the sheets under your hands. <<set $activeSlave.oralCount += 4, $oralTotal += 4>> <<if $activeSlave.vagina == 0>> <<= VaginalVCheck(4)>> @@ -67,127 +68,127 @@ <</if>> <</if>> <<if ($PC.slaving >= 100)>> - Your @@.springgreen;slave training experience@@ allows you to @@.hotpink;bend her to your will@@ more quickly without provoking resistance. + Your @@.springgreen;slave training experience@@ allows you to @@.hotpink;bend $him to your will@@ more quickly without provoking resistance. <<set $activeSlave.devotion += 1>> <</if>> <<if ($activeSlave.trust > 10)>> - Spending time with you @@.mediumaquamarine;builds her trust in <<= WrittenMaster()>>.@@ + Spending time with you @@.mediumaquamarine;builds $his trust in $his <<= WrittenMaster($activeSlave)>>.@@ <<set $activeSlave.trust += 4>> <<else>> - Spending time with you @@.mediumaquamarine;reduces her fear towards you.@@ + Spending time with you @@.mediumaquamarine;reduces $his fear towards you.@@ <<set $activeSlave.trust += 6>> <</if>> <<set $activeSlave.training = 0>> <<case "look after her">> <<if $activeSlave.relationship == -3 && $activeSlave.fetish == "mindbroken">> - Since $activeSlave.slaveName is your wife and not all there, you keep her under a watchful eye to make sure no harm comes to the broken girl. She almost seems in better spirits under your care, not that it will matter in an hour or two. + Since $activeSlave.slaveName is your wife and not all there, you keep $him under a watchful eye to make sure no harm comes to the broken $girl. $He almost seems in better spirits under your care, not that it will matter in an hour or two. <<set $activeSlave.kindness++>> <</if>> <<if ($activeSlave.health < 100)>> - Your close and expert attention improves her health in a way drug treatment or mere medical intervention cannot. @@.green;Her health has improved.@@ + Your close and expert attention improves $his health in a way drug treatment or mere medical intervention cannot. @@.green;$His health has improved.@@ <<set $activeSlave.health = $activeSlave.health+10>> <</if>> <<if (($activeSlave.anus == 3) || ($activeSlave.vagina == 3)) && $activeSlave.geneMods.rapidCellGrowth != 1>> - $activeSlave.slaveName is a veteran sex slave and has seen hard use. Tightening up a slave is difficult, but with close supervision and attention it can be done. You and your other slaves carefully apply injections, creams, and massage, and her other work is carefully managed to reduce wear and tear. + $activeSlave.slaveName is a veteran sex slave and has seen hard use. Tightening up a slave is difficult, but with close supervision and attention it can be done. You and your other slaves carefully apply injections, creams, and massage, and $his other work is carefully managed to reduce wear and tear. <<if ($activeSlave.anus == 3) && (random(1,100) > 50)>> - @@.orange;Her anus has recovered and is now merely loose.@@ + @@.orange;$His anus has recovered and is now merely loose.@@ <<set $activeSlave.anus-->> <<elseif ($activeSlave.anus == 3)>> - Her distended anus does not improve this week. + $His distended anus does not improve this week. <</if>> <<if ($activeSlave.vagina == 3) && (random(1,100) > 50)>> - @@.orange;Her pussy has tightened.@@ + @@.orange;$His pussy has tightened.@@ <<set $activeSlave.vagina-->> <<elseif ($activeSlave.vagina == 3)>> - Her loose pussy does not recover this week. + $His loose pussy does not recover this week. <</if>> <</if>> <<set $activeSlave.training = 0>> <<case "soften her behavioral flaw">> <<if ($activeSlave.behavioralFlaw == "none")>> - $activeSlave.slaveName got over her behavioral flaw without you, - @@.yellow;her training assignment has defaulted to + $activeSlave.slaveName got over $his behavioral flaw without you; + @@.yellow;$his training assignment has defaulted to <<if ["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "none", "self hating"].includes($activeSlave.sexualFlaw)>> <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> - breaking her will. + breaking $his will. <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> <<else>> fostering devotion. <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<else>> - softening her sexual flaw. + softening $his sexual flaw. <<set $personalAttention[_ptwi].trainingRegimen = "soften her sexual flaw">> <</if>> @@ <<else>> <<if ($activeSlave.behavioralFlaw == "arrogant")>> - $activeSlave.slaveName thinks she's better than everyone else. She has some basis for a high opinion of herself; otherwise you wouldn't be bothering with her. You do your best to maintain her belief that she has something special to offer while training her to offer it to you without objection. + $activeSlave.slaveName thinks $he's better than everyone else. $He has some basis for a high opinion of $himself; otherwise you wouldn't be bothering with $him. You do your best to maintain $his belief that $he has something special to offer while training $him to offer it to you without objection. <<elseif ($activeSlave.behavioralFlaw == "bitchy")>> - $activeSlave.slaveName always has a cutting remark ready. Some of them are actually pretty good, and you'd prefer to keep her cutting wit intact. You strike a careful balance with her, punishing the wrong remark at the wrong time, but rewarding appropriately biting comments. + $activeSlave.slaveName always has a cutting remark ready. Some of them are actually pretty good, and you'd prefer to keep $his cutting wit intact. You strike a careful balance with $him, punishing the wrong remark at the wrong time, but rewarding appropriately biting comments. <<elseif ($activeSlave.behavioralFlaw == "odd")>> - $activeSlave.slaveName is odd. She's usually annoying, but on occasion her oddities can produce great comic relief. You strike a careful balance with her, punishing her when she irritates you, but allowing and even rewarding harmless little idiosyncrasies. + $activeSlave.slaveName is odd. $He's usually annoying, but on occasion $his oddities can produce great comic relief. You strike a careful balance with $him, punishing $him when $he irritates you, but allowing and even rewarding harmless little idiosyncrasies. <<elseif ($activeSlave.behavioralFlaw == "hates men")>> - $activeSlave.slaveName does not like men. She desperately needs social contact, though, so you encourage her to rely on women to address her emotional needs. This is easy, since + $activeSlave.slaveName does not like men. $He desperately needs social contact, though, so you encourage $him to rely on women to address $his emotional needs. This is easy, since <<if $PC.vagina == 1>> you've got a pussy yourself. <<else>> there are several readily available. <</if>> <<elseif ($activeSlave.behavioralFlaw == "hates women")>> - $activeSlave.slaveName does not like girls. She desperately needs social contact, though, so you encourage her to rely on men to address her emotional needs. This is easy, since + $activeSlave.slaveName does not like girls. $He desperately needs social contact, though, so you encourage $him to rely on men to address $his emotional needs. This is easy, since <<if $PC.dick == 0>> there are several readily available. <<else>> you've got a cock yourself. <</if>> <<elseif ($activeSlave.behavioralFlaw == "anorexic")>> - $activeSlave.slaveName suffers from anorexia. You work with her patiently, applying the very best in modern therapy for this troubling condition. It's usually a product of poor self esteem, and you do your best to build hers up without diminishing her submission to you. + $activeSlave.slaveName suffers from anorexia. You work with $him patiently, applying the very best in modern therapy for this troubling condition. It's usually a product of poor self esteem, and you do your best to build $hers up without diminishing $his submission to you. <<elseif ($activeSlave.behavioralFlaw == "gluttonous")>> - $activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in her and like most gluttons she manages to be quite cunning. You take a hard line with her, and do your best to replace her addiction to the endorphin release of eating with an addiction to the endorphin release of exercise. + $activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in $him and like most gluttons $he manages to be quite cunning. You take a hard line with $him, and do your best to replace $his addiction to the endorphin release of eating with an addiction to the endorphin release of exercise. <<elseif ($activeSlave.behavioralFlaw == "liberated")>> - $activeSlave.slaveName can express a decent argument for why it's wrong to use her as a sex slave. With a combination of rote training, discussion, and reinforcement, you do your best to turn this into a sincere belief in the moral rightness of slavery. + $activeSlave.slaveName can express a decent argument for why it's wrong to use $him as a sex slave. With a combination of rote training, discussion, and reinforcement, you do your best to turn this into a sincere belief in the moral rightness of slavery. <<elseif ($activeSlave.behavioralFlaw == "devout")>> - $activeSlave.slaveName remains devoted to an old world faith that serves her as a reservoir of mental resilience. Like all such beliefs, hers has certain sexual elements; you amuse yourself by forcing her to break them, and rewarding her generously when she does. + $activeSlave.slaveName remains devoted to an old world faith that serves $him as a reservoir of mental resilience. Like all such beliefs, $hers has certain sexual elements; you amuse yourself by forcing $him to break them, and rewarding $him generously when $he does. <</if>> <<if $activeSlave.training < 100>> - You make progress, but she's the same at the end of the week. + You make progress, but $he's the same at the end of the week. <<else>> <<set $activeSlave.training = 0>> - By the end of the week, @@.green;you resolve her flaw into something special.@@ @@.hotpink;Her obedience has increased.@@ + By the end of the week, @@.green;you resolve $his flaw into something special.@@ @@.hotpink;$His obedience has increased.@@ <<run SoftenBehavioralFlaw($activeSlave)>> <<set $activeSlave.devotion += 4>> <</if>> <<if $activeSlave.fetishKnown != 1>> <<if ($activeSlave.fetish == "submissive")>> - She really takes to your close attention; @@.pink;she's a natural submissive!@@ + $He really takes to your close attention; @@.pink;$he's a natural submissive!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "cumslut")>> - While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@ + While you're giving $him personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "masochist")>> - While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@ + While you're giving $him personal correction, you discover by chance that @@.pink;$he likes pain!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "humiliation")>> - While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@ + While you're giving $him personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@ <<set ($activeSlave.fetishKnown = 1)>> <</if>> <</if>> <<if ($activeSlave.behavioralFlaw == "none")>> - With her behavioral flaw softened, - @@.yellow;her training assignment has defaulted to + With $his behavioral flaw softened, + @@.yellow;$his training assignment has defaulted to <<if ($activeSlave.sexualFlaw == "none")>> <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> - breaking her will. + breaking $his will. <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> <<else>> fostering devotion. <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<else>> - softening her sexual flaw. + softening $his sexual flaw. <<set $personalAttention[_ptwi].trainingRegimen = "soften her sexual flaw">> <</if>> @@ @@ -196,18 +197,18 @@ <<case "soften her sexual flaw">> <<if ($activeSlave.sexualFlaw == "none")>> - $activeSlave.slaveName got over her sexual flaw without you, - @@.yellow;her training assignment has defaulted to + $activeSlave.slaveName got over $his sexual flaw without you, + @@.yellow;$his training assignment has defaulted to <<if ($activeSlave.behavioralFlaw == "none")>> <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> - breaking her will. + breaking $his will. <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> <<else>> fostering devotion. <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<else>> - softening her behavioral flaw. + softening $his behavioral flaw. <<set $personalAttention[_ptwi].trainingRegimen = "soften her behavioral flaw">> <</if>> @@ @@ -215,103 +216,103 @@ $activeSlave.slaveName <<switch $activeSlave.sexualFlaw>> <<case "hates oral">> - has a powerful gag reflex. Though it would be simpler to train her out of it, you do your best to train her to safely take a rough facefuck without losing the fun aspects of forcing a slave to swallow a phallus, like the struggles, the gagging, and the tears. + has a powerful gag reflex. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a rough facefuck without losing the fun aspects of forcing a slave to swallow a phallus, like the struggles, the gagging, and the tears. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "hates anal">> - does not like it up the butt. Though it would be simpler to train her out of it, you do your best to train her to safely take a rough buttfuck without losing the fun aspects of anal rape, like the struggles, the whining, and the tears. + does not like it up the butt. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a rough buttfuck without losing the fun aspects of anal rape, like the struggles, the whining, and the tears. <<if canDoAnal($activeSlave)>> <<= AnalVCheck(10)>> <<else>> - The inability to actually penetrate her ass hinders your efforts, however. + The inability to actually penetrate $his ass hinders your efforts, however. <<set $activeSlave.training -= 20>> /* more difficult training */ <</if>> <<case "hates penetration">> <<if ($activeSlave.vagina > -1) && canDoVaginal($activeSlave)>> - does not like sex. Though it would be simpler to train her out of it, you do your best to train her to safely take a hard pounding without losing the fun aspects of forced sex, like the struggles, the whining, and the tears. + does not like sex. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a hard pounding without losing the fun aspects of forced sex, like the struggles, the whining, and the tears. <<= VaginalVCheck(10)>> <<elseif canDoAnal($activeSlave)>> - does not like it up the butt. Though it would be simpler to train her out of it, you do your best to train her to safely take a rough buttfuck without losing the fun aspects of anal rape, like the struggles, the whining, and the tears. + does not like it up the butt. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a rough buttfuck without losing the fun aspects of anal rape, like the struggles, the whining, and the tears. <<= AnalVCheck(10)>> <<else>> - does not dicks in her mouth. Though it would be simpler to train her out of it, you do your best to train her to safely take a rough facefuck without losing the fun aspects of forcing a slave to swallow a phallus, like the struggles, the gagging, and the tears. + does not dicks in $his mouth. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a rough facefuck without losing the fun aspects of forcing a slave to swallow a phallus, like the struggles, the gagging, and the tears. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <</if>> <<case "apathetic">> - doesn't put out much effort when having sex. You do your best to redirect this apathy into caring for her partners; since she obviously doesn't think much of herself, she can spare the effort. + doesn't put out much effort when having sex. You do your best to redirect this apathy into caring for $his partners; since $he obviously doesn't think much of $himself, $he can spare the effort. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "crude">> - does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have her give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with her to make it as pretty as possible, even when you require her to apply her mouth to some of the less common erogenous zones. You do your best to retain her sexual openness while making her more sexually presentable. + does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have $him give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with $him to make it as pretty as possible, even when you require $him to apply $his mouth to some of the less common erogenous zones. You do your best to retain $his sexual openness while making $him more sexually presentable. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "judgemental">> - has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to her pretensions of standards. You do your best to train her to perform regardless of her partners' endowments, aiming for a delicate balance that will allow her to get off with anyone while permitting her to retain and even build on her appetite for big dicks. You permit her to achieve release only when she's done well with <<if $PC.dick == 1>>your thick cock<<else>>a fat dildo<</if>> + has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to $his pretensions of standards. You do your best to train $him to perform regardless of $his partners' endowments, aiming for a delicate balance that will allow $him to get off with anyone while permitting $him to retain and even build on $his appetite for big dicks. You permit $him to achieve release only when $he's done well with <<if $PC.dick == 1>>your thick cock<<else>>a fat dildo<</if>> <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>> - lodged up her cunt. + lodged up $his cunt. <<= VaginalVCheck(10)>> <<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>> - lodged up her butt. + lodged up $his butt. <<= AnalVCheck(10)>> <<else>> - down her throat. + down $his throat. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <</if>> <<case "shamefast">> - is shamefast. You do your best to train her out of this, but carefully retain the essential core of embarrassment, aiming for a slave that can use her body to titillate the viewer and then offer an authentic blush at herself. + is shamefast. You do your best to train $him out of this, but carefully retain the essential core of embarrassment, aiming for a slave that can use $his body to titillate the viewer and then offer an authentic blush at $himself. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "idealistic">> - still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. Training her directly out of this would shatter the poor girl's world, so you work with her carefully, doing your best to keep sex special for her. + still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. Training $him directly out of this would shatter the poor $girl's world, so you work with $him carefully, doing your best to keep sex special for $him. <<case "repressed">> - is repressed. You strike a delicate balance with her, doing your best to train her to fuck as a sex slave should, but trying to retain the rush of doing the forbidden that makes her flush, shiver, and moan. + is repressed. You strike a delicate balance with $him, doing your best to train $him to fuck as a sex slave should, but trying to retain the rush of doing the forbidden that makes $him flush, shiver, and moan. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> - <<case "cum addict" "anal addict" "attention whore" "breast growth" "abusive" "malicious" "self hating" "neglectful" "breeder">> + <<case "abusive" "anal addict" "attention whore" "breast growth" "breeder" "cum addict" "malicious" "neglectful" "self hating">> has a paraphilia. Typical methods will have no effect on this kind of flaw. <<set $activeSlave.training = 0>> - @@.yellow;Her training assignment has defaulted to + @@.yellow;$His training assignment has defaulted to <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> - breaking her will. + breaking $his will. <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> <<else>> fostering devotion. <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<default>> - has something. You should probably report this as nobody knows what is currently happening. Her flaw was supposed to be $activeSlave.sexualFlaw. + has something. You should probably report this as nobody knows what is currently happening. $His flaw was supposed to be $activeSlave.sexualFlaw. <</switch>> <<if $activeSlave.training < 100>> - You make progress, but she's the same at the end of the week. + You make progress, but $he's the same at the end of the week. <<else>> <<set $activeSlave.training = 0>> - By the end of the week, @@.green;you resolve her flaw into something special.@@ @@.hotpink;Her obedience has increased.@@ + By the end of the week, @@.green;you resolve $his flaw into something special.@@ @@.hotpink;$His obedience has increased.@@ <<run SoftenSexualFlaw($activeSlave)>> <<set $activeSlave.devotion += 4>> <</if>> <<if $activeSlave.fetishKnown != 1>> <<if ($activeSlave.fetish == "submissive")>> - She really takes to your close attention; @@.pink;she's a natural submissive!@@ + $He really takes to your close attention; @@.pink;$he's a natural submissive!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "cumslut")>> - While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@ + While you're giving $him personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "masochist")>> - While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@ + While you're giving $him personal correction, you discover by chance that @@.pink;$he likes pain!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "humiliation")>> - While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@ + While you're giving $him personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@ <<set ($activeSlave.fetishKnown = 1)>> <</if>> <</if>> <<if ($activeSlave.sexualFlaw == "none")>> - With her sexual flaw softened, - @@.yellow;her training assignment has defaulted to + With $his sexual flaw softened, + @@.yellow;$his training assignment has defaulted to <<if ($activeSlave.behavioralFlaw == "none")>> <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> - breaking her will. + breaking $his will. <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> <<else>> fostering devotion. <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<else>> - softening her behavioral flaw. + softening $his behavioral flaw. <<set $personalAttention[_ptwi].trainingRegimen = "soften her behavioral flaw">> <</if>> @@ @@ -321,63 +322,63 @@ <<case "learn skills">> <<set _trainingEfficiency = 10+Math.trunc($activeSlave.devotion/30)+Math.floor($activeSlave.intelligence/32)>> <<if $PC.career == "escort">> - You are well-versed in sexual techniques and how to employ them, giving you an edge in teaching her. + You are well-versed in sexual techniques and how to employ them, giving you an edge in teaching $him. <<set _trainingEfficiency += 10>> <</if>> <<set $skillIncrease = _trainingEfficiency>> <<if $activeSlave.devotion > 50>> - She's devoted to you, making sexual training much easier. + $He's devoted to you, making sexual training much easier. <<elseif $activeSlave.devotion > 20>> - She's accepted her place as a sex slave, making sexual training easier. + $He's accepted $his place as a sex slave, making sexual training easier. <<elseif $activeSlave.devotion < -20>> - She's unhappy being a sex slave, making sexual training harder. + $He's unhappy being a sex slave, making sexual training harder. <</if>> <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 15>> - Her intelligence allows her to absorb her lessons quickly. + $His intelligence allows $him to absorb $his lessons quickly. <<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> - Her stupidity makes her absorb her lessons slowly. + $His stupidity makes $him absorb $his lessons slowly. <</if>> <<if $activeSlave.oralSkill <= 10>> - Since she's orally unskilled, you start with her mouth. She <<if $PC.dick == 1>>sucks your dick<<else>>eats you out<</if>>, of course, but her training is more creative than just that. You give her delicious hard candies to suck and feed her phallic fruits and vegetables that she must deepthroat before she can eat. As her skill improves, she wears a gag with an inward-facing dildo, which is swapped out for a bigger size every so often. You only let her orgasm when she's sucking, and before long she's associating giving someone oral pleasure with experiencing pleasure herself. @@.lime;Her oral skills have improved.@@ + Since $he's orally unskilled, you start with $his mouth. $He <<if $PC.dick == 1>>sucks your dick<<else>>eats you out<</if>>, of course, but $his training is more creative than just that. You give $him delicious hard candies to suck and feed $him phallic fruits and vegetables that $he must deepthroat before $he can eat. As $his skill improves, $he wears a gag with an inward-facing dildo, which is swapped out for a bigger size every so often. You only let $him orgasm when $he's sucking, and before long $he's associating giving someone oral pleasure with experiencing pleasure $himself. @@.lime;$His oral skills have improved.@@ <<OralSkillIncrease $activeSlave>> <<elseif ($activeSlave.vaginalSkill <= 10) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> - Since she's vaginally unskilled, and not a virgin, you start with her pussy. @@.lime;Her vaginal skills have improved.@@ + Since $he's vaginally unskilled, and not a virgin, you start with $his pussy. @@.lime;$His vaginal skills have improved.@@ <<VaginalSkillIncrease $activeSlave>> <<elseif ($activeSlave.analSkill <= 10) && ($activeSlave.anus > 0) && canDoAnal($activeSlave)>> - Since she's anally unskilled, and not an anal virgin, you start with her ass. @@.lime;Her anal skills have improved.@@ + Since $he's anally unskilled, and not an anal virgin, you start with $his ass. @@.lime;$His anal skills have improved.@@ <<AnalSkillIncrease $activeSlave>> <<elseif $activeSlave.oralSkill <= 30>> - Since she's sexually experienced, you work with her on the finer points of oral sex. @@.lime;Her oral skills have improved.@@ + Since $he's sexually experienced, you work with $him on the finer points of oral sex. @@.lime;$His oral skills have improved.@@ <<OralSkillIncrease $activeSlave>> <<elseif ($activeSlave.vaginalSkill <= 30) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> - Since she's sexually experienced, you work with her on the finer points of penetrative sex. She can already fuck pretty well, but her muscular control could be improved. She works her kegel muscles all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. She becomes expert enough that she is able to make you cum without any thrusting at all by you or any riding by her; she just flexes her muscles enough to <<if $PC.dick == 0>>grind the fake phallus back against your cunt<<else>>stimulate you<</if>>. @@.lime;Her vaginal skills have improved.@@ + Since $he's sexually experienced, you work with $him on the finer points of penetrative sex. $He can already fuck pretty well, but $his muscular control could be improved. $He works $his kegel muscles all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. $He becomes expert enough that $he is able to make you cum without any thrusting at all by you or any riding by $him; $he just flexes $his muscles enough to <<if $PC.dick == 0>>grind the fake phallus back against your cunt<<else>>stimulate you<</if>>. @@.lime;$His vaginal skills have improved.@@ <<VaginalSkillIncrease $activeSlave>> <<elseif ($activeSlave.analSkill <= 30) && ($activeSlave.anus > 0) && canDoAnal($activeSlave)>> - Since she's anally experienced, you work with her on the finer points of penetrative sex. She can already take it up her ass, but her muscular control could be improved. She works her kegel muscles and anal sphincter all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. She becomes expert enough that she is able to make you cum without any thrusting at all by you or any riding by her; she just flexes her muscles enough to <<if $PC.dick == 0>>squeeze the fake phallus<<else>>stimulate you<</if>>. @@.lime;Her anal skills have improved.@@ + Since $he's anally experienced, you work with $him on the finer points of penetrative sex. $He can already take it up $his ass, but $his muscular control could be improved. $He works $his kegel muscles and anal sphincter all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. $He becomes expert enough that $he is able to make you cum without any thrusting at all by you or any riding by $him; $he just flexes $his muscles enough to <<if $PC.dick == 0>>squeeze the fake phallus<<else>>stimulate you<</if>>. @@.lime;$His anal skills have improved.@@ <<AnalSkillIncrease $activeSlave>> <<elseif $activeSlave.oralSkill < 100>> - She is already a skilled oral whore, but her skills can be polished further. You train her in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand her oral endurance, enabling her to deepthroat for extended periods. @@.lime;Her oral skills have improved.@@ + $He is already a skilled oral whore, but $his skills can be polished further. You train $him in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand $his oral endurance, enabling $him to deepthroat for extended periods. @@.lime;$His oral skills have improved.@@ <<OralSkillIncrease $activeSlave>> <<elseif ($activeSlave.vaginalSkill < 100) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> - She is already a skilled pussy slut, but her skills can be polished further. You train her in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also work with her to develop a personal regimen of vaginal muscle exercises. This will enable her to squeeze and massage dicks with her practiced vaginal walls. @@.lime;Her vaginal skills have improved.@@ + $He is already a skilled pussy slut, but $his skills can be polished further. You train $him in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also work with $him to develop a personal regimen of vaginal muscle exercises. This will enable $him to squeeze and massage dicks with $his practiced vaginal walls. @@.lime;$His vaginal skills have improved.@@ <<VaginalSkillIncrease $activeSlave>> <<elseif ($activeSlave.analSkill < 100) && ($activeSlave.anus > 0) && canDoAnal($activeSlave)>> - She is already a skilled anal bitch, but her skills can be polished further. You train her in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand her knowledge of sexual positions. She learns to balance herself on tiptoe for the challenge of standing anal sex without support. @@.lime;Her sexual skills have improved.@@ + $He is already a skilled anal bitch, but $his skills can be polished further. You train $him in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand $his knowledge of sexual positions. $He learns to balance $himself on tiptoe for the challenge of standing anal sex without support. @@.lime;$His sexual skills have improved.@@ <<AnalSkillIncrease $activeSlave>> <<elseif $activeSlave.whoreSkill <= 10>> - Since she's dangerously naïve about selling sex, you teach her the basics of self protection and business. @@.lime;Her prostitution skills have improved.@@ + Since $he's dangerously naïve about selling sex, you teach $him the basics of self protection and business. @@.lime;$His prostitution skills have improved.@@ <<WhoreSkillIncrease $activeSlave>> <<elseif $activeSlave.entertainSkill <= 10>> - Since she's rough and unskilled at entertainment, you teach her the basics of polite conversation, music, and dance. @@.lime;Her entertainment skills have improved.@@ + Since $he's rough and unskilled at entertainment, you teach $him the basics of polite conversation, music, and dance. @@.lime;$His entertainment skills have improved.@@ <<EntertainSkillIncrease $activeSlave>> <<elseif $activeSlave.whoreSkill <= 30>> - Since she has only basic entertainment skills, you teach her to steer clients to more lucrative sex acts. @@.lime;Her prostitution skills have improved.@@ + Since $he has only basic entertainment skills, you teach $him to steer clients to more lucrative sex acts. @@.lime;$His prostitution skills have improved.@@ <<WhoreSkillIncrease $activeSlave>> <<elseif $activeSlave.entertainSkill <= 30>> - Since she has only basic entertainment skills, you teach her more about poise and Free Cities etiquette. @@.lime;Her entertainment skills have improved.@@ + Since $he has only basic entertainment skills, you teach $him more about poise and Free Cities etiquette. @@.lime;$His entertainment skills have improved.@@ <<EntertainSkillIncrease $activeSlave>> <<else>> - She's learned everything you can teach, and is now a masterful + $He's learned everything you can teach, and is now a masterful <<if ($activeSlave.vaginalSkill >= 100)>> slut; <<elseif ($activeSlave.vagina == 0)>> @@ -387,11 +388,11 @@ <<elseif ($activeSlave.vagina == -1)>> shemale slut; <<elseif ($activeSlave.vaginalAccessory == "chastity belt") || ($activeSlave.vaginalAccessory == "combined chastity")>> - slut, notwithstanding her chastity belt; + slut, notwithstanding $his chastity belt; <<else>> slave; <</if>> - @@.yellow;her assignment has defaulted to fostering devotion.@@ + @@.yellow;$his assignment has defaulted to fostering devotion.@@ <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<set $activeSlave.training = 0>> @@ -404,38 +405,38 @@ <<set $activeSlave.trust -= 10>> <</if>> <<if ($activeSlave.devotion < -80)>> - You bind her securely to a special chair in your office<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> with her holes exposed and vulnerable<</if>>. Yours is a busy week, with a lot of business interviews, so whenever the interviewee has pleased you, you offer him or her the use of the poor slave's body on the way out. The chair is specially designed so that the seat, back and armrests can rotate vertically relative to the ground, so her body can be spun to make any of her available holes convenient. Fortunately, it also has a pan beneath it to stop the generous stream of ejaculate and lubricant that drips from her from besmirching the floor. She can't help but @@.gold;become used to the abuse@@ despite her @@.mediumorchid;resentment.@@ + You bind $him securely to a special chair in your office<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> with $his holes exposed and vulnerable<</if>>. Yours is a busy week, with a lot of business interviews, so whenever the interviewee has pleased you, you offer him or her the use of the poor slave's body on the way out. The chair is specially designed so that the seat, back and armrests can rotate vertically relative to the ground, so $his body can be spun to make any of $his available holes convenient. Fortunately, it also has a pan beneath it to stop the generous stream of ejaculate and lubricant that drips from $him from besmirching the floor. $He can't help but @@.gold;become used to the abuse@@ despite $his @@.mediumorchid;resentment.@@ <<= BothVCheck(10, 5)>> <<elseif ($activeSlave.devotion < -60) && ($activeSlave.anus != 0)>> - $activeSlave.slaveName is really wild and stern measures must be taken. So, she is<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> stripped of her protective chastity and<</if>> forced, struggling and screaming, into a latex suit that completely blinds, deafens, and immobilizes her. So attired, the only places where she can feel any sensations at all other than endless latex darkness are her <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>>pussy, and cock<<elseif ($activeSlave.dick != 0)>>cock<<else>>pussy<</if>> and backdoor. For her, time becomes a featureless, torturous boredom broken only by occasional rape. Eventually, she becomes so @@.mediumorchid;desperate@@ for something, anything, to break the monotony that she begins to look forward to the next time a phallus will @@.gold;force@@ its way into her. + $activeSlave.slaveName is really wild and stern measures must be taken. So, $he is<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> stripped of $his protective chastity and<</if>> forced, struggling and screaming, into a latex suit that completely blinds, deafens, and immobilizes $him. So attired, the only places where $he can feel any sensations at all other than endless latex darkness are $his <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>>pussy, and cock<<elseif ($activeSlave.dick != 0)>>cock<<else>>pussy<</if>> and backdoor. For $him, time becomes a featureless, torturous boredom broken only by occasional rape. Eventually, $he becomes so @@.mediumorchid;desperate@@ for something, anything, to break the monotony that $he begins to look forward to the next time a phallus will @@.gold;force@@ its way into $him. <<= BothVCheck(6, 3)>> <<elseif ($activeSlave.devotion < -50) && ($activeSlave.hStyle != "shaved") && (random(1,100) > 90)>> - $activeSlave.slaveName needs to be taken down a peg. Fortunately, you know just the thing. You bring her into a bathroom, place a chair in the tub, and tie her securely to the chair. She isn't too perturbed - she probably expects a face fuck under running water or something like that - but she begins to cry when she hears you switch on an electric shaver. She luxuriates in her hair, flaunting it every chance she gets; it's something of value in a bleak slave world and she sobs as you shave it off her. Afterward, she sniffles and @@.gold;looks at you in fear@@ and @@.mediumorchid;unhappiness@@ when you rub her newly bald scalp. Of course, there's always the body modification studio if you ever feel like she's earned her hair back. + $activeSlave.slaveName needs to be taken down a peg. Fortunately, you know just the thing. You bring $him into a bathroom, place a chair in the tub, and tie $him securely to the chair. $He isn't too perturbed - $he probably expects a face fuck under running water or something like that - but $he begins to cry when $he hears you switch on an electric shaver. $he luxuriates in $his hair, flaunting it every chance $he gets; it's something of value in a bleak slave world and $he sobs as you shave it off $him. Afterward, $he sniffles and @@.gold;looks at you in fear@@ and @@.mediumorchid;unhappiness@@ when you rub $his newly bald scalp. Of course, there's always the body modification studio if you ever feel like $he's earned $his hair back. <<set $activeSlave.hStyle = "shaved", $activeSlave.hLength = 0>> <<elseif canDoAnal($activeSlave) && (random(1,100) < 10)>> - Sometimes, there's no need to be clever. The first indication she gets that you've decided to train her this week is when she wakes suddenly in the middle of the night to the burning sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up her ass. Not knowing what is happening, she struggles, but since she was already lying in her bed you just lie on top of her and press her wriggling body into the sheets as you assrape her. For the rest of the week, she finds herself grabbed and fucked. She can't help but @@.gold;become used to the abuse@@ despite her @@.mediumorchid;resentment.@@ + Sometimes, there's no need to be clever. The first indication $he gets that you've decided to train $him this week is when $he wakes suddenly in the middle of the night to the burning sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up $his ass. Not knowing what is happening, $he struggles, but since $he was already lying in $his bed you just lie on top of $him and press $his wriggling body into the sheets as you assrape $him. For the rest of the week, $he finds $himself grabbed and fucked. $He can't help but @@.gold;become used to the abuse@@ despite $his @@.mediumorchid;resentment.@@ <<= AnalVCheck(6)>> <<elseif canDoVaginal($activeSlave) && (random(1,100) < 10)>> - Sometimes, there's no need to be clever. The first indication she gets that you've decided to train her this week is when she wakes suddenly in the middle of the night to the filling sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up into her pussy. Not knowing what is happening, she struggles, but since she was already lying in her bed you just lie on top of her and press her wriggling body into the sheets as you assrape her. For the rest of the week, she finds herself grabbed and fucked. She can't help but @@.gold;become used to the abuse@@ despite her @@.mediumorchid;resentment.@@ + Sometimes, there's no need to be clever. The first indication $he gets that you've decided to train $him this week is when $he wakes suddenly in the middle of the night to the filling sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up into $his pussy. Not knowing what is happening, $he struggles, but since $he was already lying in $his bed you just lie on top of $him and press $his wriggling body into the sheets as you assrape $him. For the rest of the week, $he finds $himself grabbed and fucked. $He can't help but @@.gold;become used to the abuse@@ despite $his @@.mediumorchid;resentment.@@ <<= VaginalVCheck(6)>> <<else>> - $activeSlave.slaveName violently resists you whenever she can. This cannot be permitted, so after a particularly severe bout of physical resistance, you decide to employ an old method of breaking a mind without damaging a body. You secure her to a board and gently wash her face with a wet cloth. She spits in defiance, only to be surprised when you lower the board so that her feet are higher than her head. You tie the cloth around her face. A thin stream of water onto the cloth produces all the feeling and none of the reality of a slow death by drowning. Waterboarding isn't much use for extracting information, but it works well for @@.gold;slavebreaking.@@ + $activeSlave.slaveName violently resists you whenever $he can. This cannot be permitted, so after a particularly severe bout of physical resistance, you decide to employ an old method of breaking a mind without damaging a body. You secure $him to a board and gently wash $his face with a wet cloth. $He spits in defiance, only to be surprised when you lower the board so that $his feet are higher than $his head. You tie the cloth around $his face. A thin stream of water onto the cloth produces all the feeling and none of the reality of a slow death by drowning. Waterboarding isn't much use for extracting information, but it works well for @@.gold;slavebreaking.@@ <</if>> <<if ($PC.slaving >= 100)>> Your @@.springgreen;slavebreaking experience@@ allows you to apply @@.gold;exquisitely calibrated@@ mental pressure. <<set $activeSlave.trust -= 2>> <</if>> <<if ($activeSlave.trust < -20) && ($activeSlave.fetishKnown == 0)>> - She is now fully broken; @@.yellow;her training assignment has defaulted to exploring her sexuality.@@ + $He is now fully broken; @@.yellow;$his training assignment has defaulted to exploring $his sexuality.@@ <<set $personalAttention[_ptwi].trainingRegimen = "explore her sexuality">> <<elseif ($activeSlave.trust < -20)>> - She is now fully broken; @@.yellow;her training assignment has defaulted to fostering devotion.@@ + $He is now fully broken; @@.yellow;$his training assignment has defaulted to fostering devotion.@@ <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetishKnown == 0)>> - She is now obedient and attentive; @@.yellow;her training assignment has defaulted to exploring her sexuality.@@ + $He is now obedient and attentive; @@.yellow;$his training assignment has defaulted to exploring $his sexuality.@@ <<set $personalAttention[_ptwi].trainingRegimen = "explore her sexuality">> <<elseif ($activeSlave.devotion > 20)>> - She is now obedient and attentive; @@.yellow;her training assignment has defaulted to fostering devotion.@@ + $He is now obedient and attentive; @@.yellow;$his training assignment has defaulted to fostering devotion.@@ <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<set $activeSlave.training = 0>> @@ -443,58 +444,58 @@ <<case "harshly break her will">> <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 10, $activeSlave.health-->> <<if ($activeSlave.fetish == "mindbroken")>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - $activeSlave.slaveName's mind is broken. She is a boring slave to torture, though her body will still occasionally react to intense pain. No matter what you try, nothing really reaches her destroyed soul. The agonies do @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + $activeSlave.slaveName's mind is broken. $He is a boring slave to torture, though $his body will still occasionally react to intense pain. No matter what you try, nothing really reaches $his destroyed soul. The agonies do @@.red;affect $his health, leaving $him with a $activeSlave.minorInjury.@@ <<elseif ($activeSlave.devotion < -90)>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - Old traditions should not be forgotten. The scourge is the oldest slavebreaking tool known to man, and to slave girls who do not properly obey men. For the whole week, whenever $activeSlave.slaveName disobeys you or whenever the whim strikes, you bind her securely and flog her without mercy. You use a soft leather appliance and apply medical care afterward, so there will be no permanent scarring, but @@.red;her health is affected and the beatings leave her with a $activeSlave.minorInjury.@@ She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + Old traditions should not be forgotten. The scourge is the oldest slavebreaking tool known to man, and to slave girls who do not properly obey men. For the whole week, whenever $activeSlave.slaveName disobeys you or whenever the whim strikes, you bind $him securely and flog $him without mercy. You use a soft leather appliance and apply medical care afterward, so there will be no permanent scarring, but @@.red;$his health is affected and the beatings leave $him with a $activeSlave.minorInjury.@@ $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience.@@ <<elseif ($activeSlave.devotion < -50) && canDoAnal($activeSlave)>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - $activeSlave.slaveName is willing to physically defend herself against sexual abuse. Training her out of this rebelliousness is a nice sexual change of pace. For the entire week, whenever she commits some minor sin, you fight her into a state of physical submission and then sodomize her. This usually requires an extended beating to render her quiescent, followed by holding her down so that her struggles do not dislodge your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> from her delightfully spasming butthole. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects her health, leaving her with a $activeSlave.minorInjury.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + $activeSlave.slaveName is willing to physically defend $himself against sexual abuse. Training $him out of this rebelliousness is a nice sexual change of pace. For the entire week, whenever $he commits some minor sin, you fight $him into a state of physical submission and then sodomize $him. This usually requires an extended beating to render $him quiescent, followed by holding $him down so that $his struggles do not dislodge your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> from $his delightfully spasming butthole. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects $his health, leaving $him with a $activeSlave.minorInjury.@@ <<= AnalVCheck(6)>> <<elseif ($activeSlave.scrotum > 0)>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - $activeSlave.slaveName has indefensible, obvious targets for harsh breaking. Whenever she falls short in the smallest way, you bind her in such a way that her <<if $activeSlave.dick>>cock and <</if>>balls are dangling defenseless, and she cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to her <<if $activeSlave.dick>>member and <</if>>sack, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + $activeSlave.slaveName has indefensible, obvious targets for harsh breaking. Whenever $he falls short in the smallest way, you bind $him in such a way that $his <<if $activeSlave.dick>>cock and <</if>>balls are dangling defenseless, and $he cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to $his <<if $activeSlave.dick>>member and <</if>>sack, while beating the rest of $him thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect $his health, leaving $him with a $activeSlave.minorInjury.@@ <<elseif ($activeSlave.dick > 0)>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - $activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever she falls short in the smallest way, you bind her in such a way that her cock is dangling defenseless, and she cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to her member, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + $activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever $he falls short in the smallest way, you bind $him in such a way that $his cock is dangling defenseless, and $he cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to $his member, while beating the rest of $him thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect $his health, leaving $him with a $activeSlave.minorInjury.@@ <<elseif ($activeSlave.clit > 0)>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - $activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever she falls short in the smallest way, you bind her in such a way that her unusually large clit is visible and defenseless, and she cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple slaps to her womanhood, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + $activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever $he falls short in the smallest way, you bind $him in such a way that $his unusually large clit is visible and defenseless, and $he cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple slaps to $his womanhood, while beating the rest of $him thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect $his health, leaving $him with a $activeSlave.minorInjury.@@ <<elseif ($activeSlave.nipples == "huge")>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - $activeSlave.slaveName's nipples beg for punishment. Whenever she falls short in the smallest way, you bind her in such a way that breasts dangle, her nipples are free and at your mercy, and she can only move enough to cause her boobs to sway erotically when she flinches with pain. You then indulge your inventiveness, applying clips, weights, and simple abuse to her nipples, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + $activeSlave.slaveName's nipples beg for punishment. Whenever $he falls short in the smallest way, you bind $him in such a way that breasts dangle, $his nipples are free and at your mercy, and $he can only move enough to cause $his boobs to sway erotically when $he flinches with pain. You then indulge your inventiveness, applying clips, weights, and simple abuse to $his nipples, while beating the rest of $him thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect $his health, leaving $him with a $activeSlave.minorInjury.@@ <<elseif ($activeSlave.anus > 0) && canDoAnal($activeSlave)>> - You bind $activeSlave.slaveName with the head of an uncomfortably large dildo just inside her anus. The setup offers her a choice: she can either stand and have only tip up her butt, or she can take her weight off her legs, and take a massive phallus up the ass. You keep her like this for hours on end. At the start she tries to stand all the time. Then, she tries to rest on it for short periods, but realizes that this up and down motion really just leads to her assraping herself. Finally, she becomes so tired and apathetic that she accepts having a dildo up the ass, and sits down. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects her health.@@ + You bind $activeSlave.slaveName with the head of an uncomfortably large dildo just inside $his anus. The setup offers $him a choice: $he can either stand and have only tip up $his butt, or $he can take $his weight off $his legs, and take a massive phallus up the ass. You keep $him like this for hours on end. At the start $he tries to stand all the time. Then, $he tries to rest on it for short periods, but realizes that this up and down motion really just leads to $him assraping $himself. Finally, $he becomes so tired and apathetic that $he accepts having a dildo up the ass, and sits down. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects $his health.@@ <<else>> - <<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>> - The first time you force $activeSlave.slaveName to please you this week, she could be forgiven for thinking sexual abuse is to be her sentence. By the end of the week she remembers only fearing rape as a pleasant dream. This change is due to your program of roughly using her whenever she shows any sign of sleeping. You reward her with a short doze now and then, but she is slowly reduced to a nearly insensible state of agonizing fatigue. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress and rough treatment @@.red;affect her health and leave her with a $activeSlave.minorInjury.@@ + <<set $activeSlave.minorInjury = either("black eye", "bruise", "split lip")>> + The first time you force $activeSlave.slaveName to please you this week, $he could be forgiven for thinking sexual abuse is to be $his sentence. By the end of the week $he remembers only fearing rape as a pleasant dream. This change is due to your program of roughly using $him whenever $he shows any sign of sleeping. You reward $him with a short doze now and then, but $he is slowly reduced to a nearly insensible state of agonizing fatigue. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress and rough treatment @@.red;affect $his health and leave $him with a $activeSlave.minorInjury.@@ <</if>> <<if ($activeSlave.fetish != "mindbroken")>> <<set _seed = random(1,100)>> <<if (_seed > 90)>> - This abuse has shattered her already-fragile self; @@.red;her mind has been broken.@@ + This abuse has shattered $his already-fragile self; @@.red;$his mind has been broken.@@ <<set $activeSlave.fetish = "mindbroken", $activeSlave.sexualFlaw = "none", $activeSlave.behavioralFlaw = "none">> <<elseif (_seed > 80) && ($activeSlave.behavioralFlaw != "hates men") && ($activeSlave.behavioralFlaw != "hates women")>> This abuse has associated <<if ($PC.dick == 1)>> - cocks and masculinity with pain in her mind; @@.red;she now instinctively hates men.@@ + cocks and masculinity with pain in $his mind; @@.red;$he now instinctively hates men.@@ <<set $activeSlave.behavioralFlaw = "hates men">> <<else>> - pussies and femininity with pain in her mind; @@.red;she now instinctively hates women.@@ + pussies and femininity with pain in $his mind; @@.red;$he now instinctively hates women.@@ <<set $activeSlave.behavioralFlaw = "hates women">> <</if>> <<elseif (_seed > 70) && ($activeSlave.sexualFlaw != "odd")>> - This abuse has changed her a bit; @@.red;she has begun to act strangely.@@ + This abuse has changed $him a bit; @@.red;$he has begun to act strangely.@@ <<set $activeSlave.behavioralFlaw = "odd">> <</if>> <</if>> A week of agony <<if ($activeSlave.trust > 20)>> - @@.gold;reduces her trust@@ in you. + @@.gold;reduces $his trust@@ in you. <<set $activeSlave.trust -= 10>> <<else>> - @@.gold;encourages her fear@@ of you. + @@.gold;encourages $his fear@@ of you. <<set $activeSlave.trust -= 10>> <</if>> <<if $PC.slaving >= 100>> @@ -502,80 +503,80 @@ <<set $activeSlave.trust -= 5>> <</if>> <<if ($activeSlave.devotion > 20)>> - She is now fully broken; @@.yellow;her training assignment has defaulted to fostering devotion.@@ + $He is now fully broken; @@.yellow;$his training assignment has defaulted to fostering devotion.@@ <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<set $activeSlave.training = 0>> <<case "fix her behavioral flaw">> <<if ($activeSlave.behavioralFlaw == "arrogant")>> - $activeSlave.slaveName seems to think she's better than everyone else. Naturally, as her owner you have the means to correct this sad misapprehension. As you train her during the week, you ensure that she submits to anyone and everyone. She is rarely permitted to enjoy sex under your tutelage, but is instead required to use her mouth and hands to get others off. She cleans, washes, and serves. + $activeSlave.slaveName seems to think $he's better than everyone else. Naturally, as $his owner you have the means to correct this sad misapprehension. As you train $him during the week, you ensure that $he submits to anyone and everyone. $He is rarely permitted to enjoy sex under your tutelage, but is instead required to use $his mouth and hands to get others off. $He cleans, washes, and serves. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<elseif ($activeSlave.behavioralFlaw == "bitchy")>> - $activeSlave.slaveName always has a cutting remark ready. The more obedient she's feeling, the more she directs them at people other than her <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, but it's still a serious problem. When you train her this week, you keep a sharp ear on her. Whenever she bitches out, you require her to promptly offer the target of her pissiness the use of her mouth. She'll either shut her mouth or have it roughly filled. + $activeSlave.slaveName always has a cutting remark ready. The more obedient $he's feeling, the more $he directs them at people other than $his <<= WrittenMaster($activeSlave)>>, but it's still a serious problem. When you train $him this week, you keep a sharp ear on $him. Whenever $he bitches out, you require $him to promptly offer the target of $his pissiness the use of $his mouth. $He'll either shut $his mouth or have it roughly filled. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<elseif ($activeSlave.behavioralFlaw == "odd")>> - $activeSlave.slaveName is odd. She behaves strangely, speaking randomly at times and doing things for no apparent reason. In earlier times this might have been considered 'adorable' or 'unique,' but in a slave it's just annoying. You punish her severely whenever she fails to do or say the right thing for the right reasons. + $activeSlave.slaveName is odd. $He behaves strangely, speaking randomly at times and doing things for no apparent reason. In earlier times this might have been considered 'adorable' or 'unique,' but in a slave it's just annoying. You punish $him severely whenever $he fails to do or say the right thing for the right reasons. <<elseif ($activeSlave.behavioralFlaw == "hates men")>> - $activeSlave.slaveName does not like spending time around men. This is of course a huge obstacle to her performing her duties well. Breaking her of this is an unusually difficult task, + $activeSlave.slaveName does not like spending time around men. This is of course a huge obstacle to $him performing $his duties well. Breaking $him of this is an unusually difficult task, <<if $PC.dick == 1>> - so you approach it subtly. You simply require her to spend as much time as possible around you, eating, sleeping, and going about normal business. She already understood what you were to your slaves, sexually; she now is accustomed to who you are when your cock isn't pounding a nice hole. + so you approach it subtly. You simply require $him to spend as much time as possible around you, eating, sleeping, and going about normal business. $He already understood what you were to your slaves, sexually; $he now is accustomed to who you are when your cock isn't pounding a nice hole. <<else>> - all the more so since you cannot use yourself as a teaching tool. Fortunately, there are any number of men coming and going as you do business, and it's trivial to force her to rely on them for social contact. + all the more so since you cannot use yourself as a teaching tool. Fortunately, there are any number of men coming and going as you do business, and it's trivial to force $him to rely on them for social contact. <</if>> <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<elseif ($activeSlave.behavioralFlaw == "hates women")>> - $activeSlave.slaveName does not like spending time around girls. This is of course a huge obstacle to her performing her duties well. Breaking her of this is an unusually difficult task, + $activeSlave.slaveName does not like spending time around girls. This is of course a huge obstacle to $him performing $his duties well. Breaking $him of this is an unusually difficult task, <<if $PC.dick != 0>> - all the moreso since you cannot use your penis-equipped self as a teaching tool. Fortunately, there are any number of girls around, and it's trivial to force her to rely on them for social contact. + all the more so since you cannot use your penis-equipped self as a teaching tool. Fortunately, there are any number of girls around, and it's trivial to force $him to rely on them for social contact. <<else>> - so you approach it subtly. You simply require her to spend as much time as possible around you, eating, sleeping, and going about normal business. She already understood what you were to your slaves, sexually; she now is accustomed to who you are when you're not fucking. + so you approach it subtly. You simply require $him to spend as much time as possible around you, eating, sleeping, and going about normal business. $He already understood what you were to your slaves, sexually; $he now is accustomed to who you are when you're not fucking. <</if>> <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<elseif ($activeSlave.behavioralFlaw == "anorexic")>> - $activeSlave.slaveName has an unreasonable, psychologically based belief that she is too fat. This is a serious enough condition in the clinical sense that the usual routine of punishment will not affect it. Instead, you apply a regime of positive reinforcement: she is given attention and approval for her curves when they grow. + $activeSlave.slaveName has an unreasonable, psychologically based belief that $he is too fat. This is a serious enough condition in the clinical sense that the usual routine of punishment will not affect it. Instead, you apply a regime of positive reinforcement: $he is given attention and approval for $his curves when they grow. <<elseif ($activeSlave.behavioralFlaw == "gluttonous")>> - $activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in her and like most gluttons she manages to be quite cunning. You watch her closely and administer harsh punishment to associate overeating with pain in her mind. + $activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in $him and like most gluttons $he manages to be quite cunning. You watch $him closely and administer harsh punishment to associate overeating with pain in $his mind. <<elseif ($activeSlave.behavioralFlaw == "liberated")>> - $activeSlave.slaveName has not yet accepted that her world has changed. You could wait for the weight of circumstances to bear it home to her, but you accelerated the process by giving her as many trivial orders as possible. She is required to receive orders to perform the most humiliatingly obvious of tasks. + $activeSlave.slaveName has not yet accepted that $his world has changed. You could wait for the weight of circumstances to bear it home to $him, but you accelerated the process by giving $him as many trivial orders as possible. $He is required to receive orders to perform the most humiliatingly obvious of tasks. <<elseif ($activeSlave.behavioralFlaw == "devout")>> - $activeSlave.slaveName remains devoted to an old world faith that serves her as a reservoir of mental resilience. You carefully select pressure points to break her of this by forcing her to violate her faith's purity codes, constantly. She is forced to eat, dress, and fuck in ways that convince her that she must either condemn herself as an irredeemable sinner, or abandon her beliefs. + $activeSlave.slaveName remains devoted to an old world faith that serves $him as a reservoir of mental resilience. You carefully select pressure points to break $him of this by forcing $him to violate $his faith's purity codes, constantly. $He is forced to eat, dress, and fuck in ways that convince $him that $he must either condemn $himself as an irredeemable sinner, or abandon $his beliefs. <</if>> <<set $activeSlave.training += 40>> /* fixing is easier than softening */ <<if $activeSlave.training < 100>> - You make progress, but she's the same at the end of the week. + You make progress, but $he's the same at the end of the week. <<else>> <<set $activeSlave.training = 0>> - By the end of the week, @@.green;you break her of her bad habits.@@ @@.hotpink;Her obedience has increased.@@ + By the end of the week, @@.green;you break $him of $his bad habits.@@ @@.hotpink;$His obedience has increased.@@ <<set $activeSlave.behavioralFlaw = "none", $activeSlave.devotion += 4>> <</if>> <<if $activeSlave.fetishKnown != 1>> <<if ($activeSlave.fetish == "submissive")>> - She really takes to your close attention; @@.pink;she's a natural submissive!@@ + $He really takes to your close attention; @@.pink;$he's a natural submissive!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "cumslut")>> - While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@ + While you're giving $his personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "masochist")>> - While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@ + While you're giving $his personal correction, you discover by chance that @@.pink;$he likes pain!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "humiliation")>> - While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@ + While you're giving $his personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@ <<set ($activeSlave.fetishKnown = 1)>> <</if>> <</if>> <<if ($activeSlave.behavioralFlaw == "none")>> - With her behavioral flaw trained out, + With $his behavioral flaw trained out, <<if ($activeSlave.sexualFlaw == "none")>> <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> - @@.yellow;her training assignment has defaulted to breaking her will.@@ + @@.yellow;$his training assignment has defaulted to breaking $his will.@@ <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> <<else>> - @@.yellow;her training assignment has defaulted to fostering devotion.@@ + @@.yellow;$his training assignment has defaulted to fostering devotion.@@ <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<else>> - @@.yellow;her training assignment has defaulted to addressing her sexual flaw.@@ + @@.yellow;$his training assignment has defaulted to addressing $his sexual flaw.@@ <<set $personalAttention[_ptwi].trainingRegimen = "fix her sexual flaw">> <</if>> <</if>> @@ -583,131 +584,131 @@ <<case "fix her sexual flaw">> <<switch $activeSlave.sexualFlaw>> <<case "hates oral">> - $activeSlave.slaveName has a powerful gag reflex. As a result, it's pretty unpleasant to receive oral sex from her, no matter how hard she tries. You apply various inventive techniques for addressing this, all of which involve requiring her to repeatedly deepthroat some object or other. + $activeSlave.slaveName has a powerful gag reflex. As a result, it's pretty unpleasant to receive oral sex from $him, no matter how hard $he tries. You apply various inventive techniques for addressing this, all of which involve requiring $him to repeatedly deepthroat some object or other. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "hates anal">> <<if canDoAnal($activeSlave)>> - $activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up her behind, and when you bore of that, you require her to assfuck herself with a dildo instead. + $activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up $his behind, and when you bore of that, you require $him to assfuck $himself with a dildo instead. <<= AnalVCheck(10)>> <<else>> - $activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to toy with her rear. The inability to actually penetrate her ass hinders your efforts, however. + $activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to toy with $his rear. The inability to actually penetrate $his ass hinders your efforts, however. <<set $activeSlave.training -= 20>> /* more difficult training */ <</if>> <<case "hates penetration">> <<if ($activeSlave.vagina > -1)>> - $activeSlave.slaveName does not like sex. In earlier times, it was accepted and understood that some, particularly some women, had a low sex drive. No Free Cities sex slave is allowed to engage in such foolishness. It's a hard flaw to fix, and for now you substitute obedience for honest enjoyment, and just get her used to strong stimulation without putting anything in her. + $activeSlave.slaveName does not like sex. In earlier times, it was accepted and understood that some, particularly some women, had a low sex drive. No Free Cities sex slave is allowed to engage in such foolishness. It's a hard flaw to fix, and for now you substitute obedience for honest enjoyment, and just get $him used to strong stimulation without putting anything in $him. <<elseif canDoAnal($activeSlave)>> - $activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up her behind, and when you bore of that, you require her to assfuck herself instead. + $activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up $his behind, and when you bore of that, you require $him to assfuck $himself instead. <<= AnalVCheck(10)>> <<else>> - $activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. It's a hard flaw to fix when you can't introduce her anus to things, but for now you substitute obedience for honest enjoyment, and just get her used to strong stimulation without putting anything in her. + $activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. It's a hard flaw to fix when you can't introduce $his anus to things, but for now you substitute obedience for honest enjoyment, and just get $him used to strong stimulation without putting anything in $him. <</if>> <<case "apathetic">> - You are well practiced at forcing slaves to get you off or suffer punishment. To address $activeSlave.slaveName's sexual apathy, you adapt the method by requiring her to work her mouth under your desk while you do business. She does all the work, start to finish, and she does it well if she wants to avoid pain. + You are well practiced at forcing slaves to get you off or suffer punishment. To address $activeSlave.slaveName's sexual apathy, you adapt the method by requiring $him to work $his mouth under your desk while you do business. $He does all the work, start to finish, and $he does it well if $he wants to avoid pain. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "crude">> - $activeSlave.slaveName does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have her give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with her to make it as pretty as possible, and spank her cruelly when she fails. + $activeSlave.slaveName does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have $him give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with $him to make it as pretty as possible, and spank $him cruelly when $he fails. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "judgemental">> - $activeSlave.slaveName has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to her pretensions of standards. To her regret, she frequently implies that she prefers partners with big dicks: regret, because whenever she's caught doing this, you have her brought to you and <<if $PC.dick == 1>>apply your big dick<<else>>apply a big dildo<</if>> + $activeSlave.slaveName has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to $his pretensions of standards. To $his regret, $he frequently implies that $he prefers partners with big dicks: regret, because whenever $he's caught doing this, you have $him brought to you and <<if $PC.dick == 1>>apply your big dick<<else>>apply a big dildo<</if>> <<if ($activeSlave.anus > 0) && canDoAnal($activeSlave)>> - to her anus without mercy. + to $his anus without mercy. <<= AnalVCheck(10)>> <<else>> - to her gagging throat. + to $his gagging throat. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <</if>> <<case "shamefast">> - Fortunately, shamefastness is a simple problem to break. Whenever you feel the inclination, you strip $activeSlave.slaveName naked, drag her out into whatever public space catches your fancy, and force her to <<if $PC.dick != 0>>suck your dick<<else>>eat you out<</if>>. To make sure she's really working over her shame despite having her face buried against you, you force her to spread her buttocks to show off her asshole while she <<if $PC.dick != 0>>sucks<<else>>licks you<</if>>. + Fortunately, shamefastness is a simple problem to break. Whenever you feel the inclination, you strip $activeSlave.slaveName naked, drag $him out into whatever public space catches your fancy, and force $him to <<if $PC.dick != 0>>suck your dick<<else>>eat you out<</if>>. To make sure $he's really working over $his shame despite having $his face buried against you, you force $him to spread $his buttocks to show off $his asshole while $he <<if $PC.dick != 0>>sucks<<else>>licks you<</if>>. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "idealistic">> - $activeSlave.slaveName still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. This might be an annoyingly ignorant outlook if it wasn't so amusing to break. By the tenth time you slap her $activeSlave.skin face at the slightest hesitation to <<if $PC.dick != 0>>suck your cock<<else>>eat your pussy<</if>>, her illusions are guttering low. + $activeSlave.slaveName still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. This might be an annoyingly ignorant outlook if it wasn't so amusing to break. By the tenth time you slap $his $activeSlave.skin face at the slightest hesitation to <<if $PC.dick != 0>>suck your cock<<else>>eat your pussy<</if>>, $his illusions are guttering low. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "repressed">> - $activeSlave.slaveName's innocence and hesitations about sex are unlikely to survive much longer, but you decide to hurry the process along by making her <<if $PC.dick != 0>>eat dick<<else>>eat your pussy<</if>> while masturbating. She's repressed enough that masturbation is still a partial punishment for her, but she usually gets herself off anyway, shaking with release and sobbing with crushed illusions. + $activeSlave.slaveName's innocence and hesitations about sex are unlikely to survive much longer, but you decide to hurry the process along by making $him <<if $PC.dick != 0>>eat dick<<else>>eat your pussy<</if>> while masturbating. $He's repressed enough that masturbation is still a partial punishment for $him, but $he usually gets $himself off anyway, shaking with release and sobbing with crushed illusions. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<case "cum addict">> - $activeSlave.slaveName is utterly addicted to cum. You keep her in your office whenever you can, and subject her to a strict sexual diet of + $activeSlave.slaveName is utterly addicted to cum. You keep $him in your office whenever you can, and subject $him to a strict sexual diet of <<if canDoVaginal($activeSlave)>>sex,<<elseif canDoAnal($activeSlave)>>buttsex,<<else>>breast play,<</if>> - no oral allowed, no matter how much she begs to be permitted to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>. + no oral allowed, no matter how much $he begs to be permitted to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>> <<case "anal addict">> - $activeSlave.slaveName is utterly addicted to buttsex. You keep her in your office whenever you can, and subject her to a strict sexual diet of + $activeSlave.slaveName is utterly addicted to buttsex. You keep $him in your office whenever you can, and subject $him to a strict sexual diet of <<if canDoVaginal($activeSlave)>>vanilla sex,<<else>>oral and manual intercourse,<</if>> - no anal allowed, no matter how much she begs you to stick something, anything, up her ass. + no anal allowed, no matter how much $he begs you to stick something, anything, up $his ass. <<if ($activeSlave.vagina > -1) && canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<case "attention whore">> - $activeSlave.slaveName is an obnoxious attention whore. You keep her in your office and make love to her whenever you can, but only whenever you're alone in the office. You even instruct $assistantName not to bother you while the slave is receiving her therapy. + $activeSlave.slaveName is an obnoxious attention whore. You keep $him in your office and make love to $him whenever you can, but only whenever you're alone in the office. You even instruct $assistantName not to bother you while the slave is receiving $his therapy. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>> <<case "breast growth">> - $activeSlave.slaveName is completely devoted to her own tits. You keep her in your office whenever you can, <<if canDoVaginal($activeSlave)>>fucking her<<elseif canDoAnal($activeSlave)>>fucking her ass<<else>>fucking her face<</if>> - in positions that offer her boobs no stimulation at all. When you're not broadening her sexual horizons, she's restrained to keep her from touching her own nipples, despite piteous begging. + $activeSlave.slaveName is completely devoted to $his own tits. You keep $him in your office whenever you can, <<if canDoVaginal($activeSlave)>>fucking $him<<elseif canDoAnal($activeSlave)>>fucking $his ass<<else>>fucking $his face<</if>> + in positions that offer $his boobs no stimulation at all. When you're not broadening $his sexual horizons, $he's restrained to keep $him from touching $his own nipples, despite piteous begging. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>> <<case "abusive" "malicious">> - $activeSlave.slaveName seems to have forgotten that she's your bitch, so you remind her. You keep her in your office whenever she's not otherwise occupied, and hold her down and fuck her whenever you feel like it. It's been a long time since she was on the bottom this regularly. + $activeSlave.slaveName seems to have forgotten that $he's your bitch, so you remind $him. You keep $him in your office whenever $he's not otherwise occupied, and hold $him down and fuck $him whenever you feel like it. It's been a long time since $he was on the bottom this regularly. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>> <<case "self hating">> - $activeSlave.slaveName hates herself much more than is normal for a well trained sex slave, to the point where she actively seeks out unhealthy and destructive assignments. You build up her sexual self esteem with a steady diet of + $activeSlave.slaveName hates $himself much more than is normal for a well trained sex slave, to the point where $he actively seeks out unhealthy and destructive assignments. You build up $his sexual self esteem with a steady diet of <<if canDoVaginal($activeSlave)>>missionary lovemaking,<<elseif canDoAnal($activeSlave)>>gentle anal loving,<<else>>gentle oral sex,<</if>> - and make sure to praise her and keep her spirits up as much as you can. + and make sure to praise $him and keep $his spirits up as much as you can. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>> <<case "neglectful">> - $activeSlave.slaveName has given up on her own sexual pleasure to an extent, focusing only on getting others off. You keep her in your office and play with her regularly, making a game of getting her off as often as possible. You're careful to use other slaves for your own pleasure. + $activeSlave.slaveName has given up on $his own sexual pleasure to an extent, focusing only on getting others off. You keep $him in your office and play with $him regularly, making a game of getting $him off as often as possible. You're careful to use other slaves for your own pleasure. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>> <<case "breeder">> - $activeSlave.slaveName has become so sexually obsessed with pregnancy that impregnation holds less interest for her than being pregnant. + $activeSlave.slaveName has become so sexually obsessed with pregnancy that impregnation holds less interest for $him than being pregnant. <<if $activeSlave.pregKnown == 1>> - Since she's pregnant, getting her out of this perversion is more difficult than just fucking her. + Since $he's pregnant, getting $him out of this perversion is more difficult than just fucking $him. <<elseif !canDoAnal($activeSlave)>> Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy. - Since her ass is off-limits, you address the situation by fucking her throat, and making sure she enjoys it, too. + Since $his ass is off-limits, you address the situation by fucking $his throat, and making sure $he enjoys it, too. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<elseif $activeSlave.mpreg == 1>> - Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy, which, in her case, is not her fertile ass. - So, you address the situation by fucking her throat, and making sure she enjoys it, too. + Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy, which, in $his case, is not $his fertile ass. + So, you address the situation by fucking $his throat, and making sure $he enjoys it, too. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<else>> Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy. - So, you address the situation by fucking her up the ass, and making sure she gets off to it, too. + So, you address the situation by fucking $him up the ass, and making sure $he gets off to it, too. <<= AnalVCheck(10)>> <</if>> <</switch>> <<set $activeSlave.training += 40>> /* fixing is easier than softening */ <<if $activeSlave.training < 100>> - You make progress, but she's the same at the end of the week. + You make progress, but $he's the same at the end of the week. <<else>> <<set $activeSlave.training = 0>> - By the end of the week, @@.green;you break her of her bad habits.@@ @@.hotpink;Her obedience has increased.@@ + By the end of the week, @@.green;you break $him of $his bad habits.@@ @@.hotpink;$His obedience has increased.@@ <<set $activeSlave.sexualFlaw = "none", $activeSlave.devotion += 4>> <</if>> <<if $activeSlave.fetishKnown != 1>> <<if ($activeSlave.fetish == "submissive")>> - She really takes to your close attention; @@.pink;she's a natural submissive!@@ + $He really takes to your close attention; @@.pink;$he's a natural submissive!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "cumslut")>> - While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@ + While you're giving $him personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "masochist")>> - While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@ + While you're giving $him personal correction, you discover by chance that @@.pink;$he likes pain!@@ <<set ($activeSlave.fetishKnown = 1)>> <<elseif ($activeSlave.fetish == "humiliation")>> - While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@ + While you're giving $him personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@ <<set ($activeSlave.fetishKnown = 1)>> <</if>> <</if>> <<if ($activeSlave.sexualFlaw == "none")>> - With her sexual flaw trained out, - @@.yellow;her training assignment has defaulted to + With $his sexual flaw trained out, + @@.yellow;$his training assignment has defaulted to <<if ($activeSlave.behavioralFlaw == "none")>> <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> - breaking her will. + breaking $his will. <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> <<else>> fostering devotion. <<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">> <</if>> <<else>> - addressing her behavioral flaw. + addressing $his behavioral flaw. <<set $personalAttention[_ptwi].trainingRegimen = "fix her behavioral flaw">> <</if>> @@ @@ -715,14 +716,14 @@ <<case "explore her sexuality">> <<set $activeSlave.attrKnown = 1>> - You set about investigating her sexuality. + You set about investigating $his sexuality. <<if ($activeSlave.devotion < -20) && ($activeSlave.trust >= -20)>> - She's so resistant that you have to fill her with psychoactive drugs and restrain her painfully in order to learn anything. This abuse @@.mediumorchid;increases her hatred.@@ + $He's so resistant that you have to fill $him with psychoactive drugs and restrain $him painfully in order to learn anything. This abuse @@.mediumorchid;increases $his hatred.@@ <<set $activeSlave.devotion -= 5>> <<elseif $activeSlave.devotion <= 20>> - You anticipate that she won't be sufficiently compliant with some of the extreme practices you mean to investigate, so you give her a hearty dose of aphrodisiacs and place her in bondage gear. She isn't happy, but soon she's too horny to care. + You anticipate that $he won't be sufficiently compliant with some of the extreme practices you mean to investigate, so you give $him a hearty dose of aphrodisiacs and place $him in bondage gear. $He isn't happy, but soon $he's too horny to care. <<else>> - She's obedient enough that there is no trouble with any of the sexual kinks you subject her to. Some she likes more than others, but when she's not enjoying herself, she grits her teeth and concentrates on obeying you. + $He's obedient enough that there is no trouble with any of the sexual kinks you subject $him to. Some $he likes more than others, but when $he's not enjoying $himself, $he grits $his teeth and concentrates on obeying you. <</if>> You start off by making $him view a medley of pornography while $assistantName monitors $him for arousal. It seems $he is <<if $activeSlave.attrXY <= 5>> @@ -760,84 +761,85 @@ <<set $activeSlave.fetishKnown = 1>> <br> You then give $him a good exploratory fondle. You play with $his nipples and each of $his holes and gauge $his reaction. <<if $activeSlave.fetish == "boobs">> - You've barely touched $his nipples before she moans. After some experimentation, it becomes clear that her nipples might as well be a pair of slightly less sensitive <<if $activeSlave.nipples == "fuckable">>pussies<<else>>clits<</if>>. Finding her mammary fixation with you has @@.hotpink;increased her devotion to you.@@ + You've barely touched $his nipples before $he moans. After some experimentation, it becomes clear that $his nipples might as well be a pair of slightly less sensitive <<if $activeSlave.nipples == "fuckable">>pussies<<else>>clits<</if>>. Finding $his mammary fixation with you has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.fetish == "buttslut">> - <<if $activeSlave.vagina >= 0>>When you move from fingering her pussy to her asshole,<<else>>When you move from fondling her mouth to her asshole,<</if>> you've barely touched her butt before she comes explosively. After some experimentation, it becomes clear that her g-spot might as well be located up her ass. Finding her anal fixation with you has @@.hotpink;increased her devotion to you.@@ + <<if $activeSlave.vagina >= 0>>When you move from fingering $his pussy to $his asshole,<<else>>When you move from fondling $his mouth to $his asshole,<</if>> you've barely touched $his butt before $he comes explosively. After some experimentation, it becomes clear that $his g-spot might as well be located up $his ass. Finding $his anal fixation with you has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She shows no real reaction when you move your fingers from hole to hole, because she seems to react with arousal to fingers in any of them. + $He shows no real reaction when you move your fingers from hole to hole, because $he seems to react with arousal to fingers in any of them. <<else>> Nothing unusual happens. <</if>> - <br> Next, you demand extreme submission from $him. You make her change into bondage gear that blinds her, restricts her movement, forces her to present her breasts uncomfortably, and holds vibrators against her. Thus attired, she is forced to serve you in whatever petty ways occur to you. + <br> Next, you demand extreme submission from $him. You make $him change into bondage gear that blinds $him, restricts $his movement, forces $him to present $his breasts uncomfortably, and holds vibrators against $him. Thus attired, $he is forced to serve you in whatever petty ways occur to you. <<if $activeSlave.fetish == "submissive">> - During the first hour of this treatment, she cums hard against the vibrators. She's a natural submissive! Discovering this about herself under your hands has @@.hotpink;increased her devotion to you.@@ + During the first hour of this treatment, $he cums hard against the vibrators. $He's a natural submissive! Discovering this about $himself under your hands has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She complies, showing the same enthusiasm for this as for other sex. + $He complies, showing the same enthusiasm for this as for other sex. <<else>> - She complies, but she's not a natural submissive. + $He complies, but $he's not a natural submissive. <</if>> - <br> Before you let her out of the extreme bondage, you rain a series of light blows across her nipples and buttocks. + <br> Before you let $him out of the extreme bondage, you rain a series of light blows across $his nipples and buttocks. <<if $activeSlave.fetish == "masochist">> - She almost orgasms at the stinging pain. She's a masochist! This discovery has @@.hotpink;increased her devotion to you.@@ + $He almost orgasms at the stinging pain. $He's a masochist! This discovery has @@.hotpink;increased $his devotion to $He.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She enjoys the pain play, but she seems to enjoy everything you try. + $He enjoys the pain play, but $he seems to enjoy everything you try. <<else>> - She struggles and tries to avoid the blows. + $He struggles and tries to avoid the blows. <</if>> - <br> The next day, she continues to accompany you. Whenever cum is involved in your day's affairs in any way, you require her to clean it up with her mouth. + <br> The next day, $he continues to accompany you. Whenever cum is involved in your day's affairs in any way, you require $him to clean it up with $his mouth. <<if $activeSlave.fetish == "cumslut">> - She enjoys this treatment. She's a cumslut! Discovering this about herself under your hands has @@.hotpink;increased her devotion to you.@@ + $He enjoys this treatment. $He's a cumslut! Discovering this about $himself under your hands has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She enjoys using her mouth, but no more than other kinds of sexual activity. + $He enjoys using $his mouth, but no more than other kinds of sexual activity. <<else>> - If she had any special regard for cum, you'd know it, and she doesn't. + If $he had any special regard for cum, you'd know it, and $he doesn't. <</if>> - <br> You carefully watch her reaction as you let her spend a short time relaxing with a pregnant slave. + <<setNonlocalPronouns 0>> + <br> You carefully watch $his reaction as you let $him spend a short time relaxing with a pregnant slave. <<if $activeSlave.fetish == "pregnancy">> - She's fascinated. She fetishizes fertility! Discovering this with you has @@.hotpink;increased her devotion to you.@@ + $He's fascinated. $He fetishizes fertility! Discovering this with you has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She spends most of the rest ogling the pregnant slave's boobs. + $He spends most of the rest ogling the pregnant slave's boobs. <<else>> - She simply enjoys the rest. + $He simply enjoys the rest. <</if>> - <br> You restrain the pregnant slave and administer a brief beating across her bare buttocks, ensuring that you cause enough pain to produce a few tears, a bit of begging, and some struggling. + <br> You restrain the pregnant slave and administer a brief beating across _hisU bare buttocks, ensuring that you cause enough pain to produce a few tears, a bit of begging, and some struggling. <<if $activeSlave.fetish == "sadist">> - She's almost painfully aroused. She's titillated by the idea of causing pain! Discovering this about herself under your direction has @@.hotpink;increased her devotion to you.@@ + $He's almost painfully aroused. $He's titillated by the idea of causing pain! Discovering this about $himself under your direction has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She enjoys watching the poor pregnant slave wriggle, but she's watching her butt rather than the beating. + $He enjoys watching the poor pregnant slave wriggle, but $he's watching _hisU butt rather than the beating. <<else>> - She's a bit disturbed by the sight of you punishing the pregnant girl. + $He's a bit disturbed by the sight of you punishing the pregnant _girlU. <</if>> <br> Before letting the poor pregnant slave go, you require $activeSlave.slaveName to add a blindfold to the restraints. <<if $activeSlave.fetish == "dom">> - She seems to really enjoy blindfolding the poor girl, reassuring her as she does. She's a natural sexual top! Discovering this about herself under your direction has @@.hotpink;increased her devotion to you.@@ + $He seems to really enjoy blindfolding the poor _girlU, reassuring _himU as $he does. $He's a natural sexual top! Discovering this about $himself under your direction has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She enjoys getting closer to the slave, mostly so she can give her pregnant pussy a thorough grope. + $He enjoys getting closer to the slave, mostly so $he can give _hisU pregnant pussy a thorough grope. <<else>> - She just follows orders. + $He just follows orders. <</if>> - <br> Lastly, you place her in a special room in your penthouse filled with live video equipment. They get to see her groped, deepthroated, facial'd, teased, and tortured. + <br> Lastly, you place $him in a special room in your penthouse filled with live video equipment. They get to see $him groped, deepthroated, facial'd, teased, and tortured. <<if $activeSlave.fetish == "humiliation">> - The more viewers she gets, the harder she comes. She's a slut for humiliation! Discovering this about herself under your hands has @@.hotpink;increased her devotion to you.@@ + The more viewers $he gets, the harder $he comes. $He's a slut for humiliation! Discovering this about $himself under your hands has @@.hotpink;increased $his devotion to you.@@ <<set $activeSlave.devotion += 4>> <<elseif $activeSlave.energy > 95>> - She enjoys showing off sexually, but focuses on the sex first. She got off on everything, and is clearly a nympho. Discovering this about herself under your hands has @@.hotpink;greatly increased her devotion to you.@@ + $He enjoys showing off sexually, but focuses on the sex first. $He got off on everything, and is clearly a nympho. Discovering this about $himself under your hands has @@.hotpink;greatly increased $his devotion to you.@@ <<set $activeSlave.devotion += 9>> <<else>> - She gets through it, but she doesn't seem to enjoy seeing her audience on the screen. + $He gets through it, but $he doesn't seem to enjoy seeing $his audience on the screen. <</if>> <<else>> - <br> You already know that she + <br> You already know that $he <<switch $activeSlave.fetish>> - <<case "submissive" "cumslut" "buttslut" "sadist" "masochist" "dom">> + <<case "buttslut" "cumslut" "dom" "masochist" "sadist" "submissive">> is a @@.coral;$activeSlave.fetish,@@ <<case "mindbroken">> is @@.red;mindbroken,@@ @@ -851,280 +853,280 @@ <<BasicTrainingDefaulter>> <<case "induce arrogance">> - Since you've decided to incite her to arrogance, you praise her effusively, and give orders that others are to do so as well. Other slaves are punished for things she's allowed to get away with. + Since you've decided to incite $him to arrogance, you praise $him effusively, and give orders that others are to do so as well. Other slaves are punished for things $he's allowed to get away with. <<InduceFlawLenityEffects>> <<if $activeSlave.training < 100>> - She isn't seriously affected; you'll have to be more subtle next week. + $He isn't seriously affected; you'll have to be more subtle next week. <<else>> <<set $activeSlave.training = 0>> - She begins to think herself special, and is now @@.red;arrogant.@@ + $He begins to think $himself special, and is now @@.red;arrogant.@@ <<set $activeSlave.behavioralFlaw = "arrogant">> <<BasicTrainingDefaulter>> <</if>> <<case "induce bitchiness">> - Since you've decided to induce her to bitchiness, you keep her in your office and induce her to criticize other slaves, rewarding her when she's especially catty. + Since you've decided to induce $him to bitchiness, you keep $him in your office and induce $him to criticize other slaves, rewarding $him when $he's especially catty. <<InduceFlawLenityEffects>> <<if $activeSlave.training < 100>> - She goes along, but remains cautious and will need more practice. + $He goes along, but remains cautious and will need more practice. <<else>> - She starts making @@.red;bitchy@@ remarks without being prompted. + $He starts making @@.red;bitchy@@ remarks without being prompted. <<set $activeSlave.behavioralFlaw = "bitchy">> <<BasicTrainingDefaulter>> <</if>> <<case "induce odd behavior">> - Since you've decided to abuse her into odd behavior, you target her for a campaign of surprise sex. You constantly ambush her, shove her onto the ground, and fuck her. Sometimes she wakes up from bad dreams to find you penetrating her. + Since you've decided to abuse $him into odd behavior, you target $him for a campaign of surprise sex. You constantly ambush $him, shove $him onto the ground, and fuck $him. Sometimes $he wakes up from bad dreams to find you penetrating $him. <<InduceFlawAbuseEffects>> <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<if $activeSlave.training < 100>> - She does her best to tolerate the abuse. + $He does $his best to tolerate the abuse. <<else>> - She starts @@.red;behaving oddly,@@ jumping at noises and mumbling to herself. + $He starts @@.red;behaving oddly,@@ jumping at noises and mumbling to $himself. <<set $activeSlave.behavioralFlaw = "odd">> <<BasicTrainingDefaulter>> <</if>> <<case "induce hatred of men">> - In order to make her hate men, you sometimes simply <<if $PC.dick == 1>>stick your dick in her without asking<<else>>stuff a strap-on inside her without asking<</if>>, and sometimes force shockingly juvenile pranks on her. She is regularly smacked in the face with floppy dildos. + In order to make $him hate men, you sometimes simply <<if $PC.dick == 1>>stick your dick in $him without asking<<else>>stuff a strap-on inside $him without asking<</if>>, and sometimes force shockingly juvenile pranks on $him. $He is regularly smacked in the face with floppy dildos. <<InduceFlawAbuseEffects>> <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<if $activeSlave.training < 100>> - She focuses more on you than on the masculine aspects of this. You'll need to be more subtle next week. + $He focuses more on you than on the masculine aspects of this. You'll need to be more subtle next week. <<else>> - You notice her starting to @@.red;shoot hateful glances@@ at any men she sees. + You notice $him starting to @@.red;shoot hateful glances@@ at any men $he sees. <<set $activeSlave.behavioralFlaw = "hates men">> <<BasicTrainingDefaulter>> <</if>> <<case "induce hatred of women">> - In order to make her hate women, you keep her in your office when she's not otherwise occupied, and <<if $PC.vagina == 0>>make her eat other slaves out<<else>>sit on her face<</if>> until she's thoroughly sick of pussy. + In order to make $him hate women, you keep $him in your office when $he's not otherwise occupied, and <<if $PC.vagina == 0>>make $him eat other slaves out<<else>>sit on $his face<</if>> until $he's thoroughly sick of pussy. <<InduceFlawAbuseEffects>> <<if $activeSlave.training < 100>> - She focuses more on you than on the feminine aspects of this. You'll need to be more subtle next week. + $He focuses more on you than on the feminine aspects of this. You'll need to be more subtle next week. <<else>> - You notice her starting to @@.red;shoot hateful glances@@ at any vaginas she sees. + You notice $him starting to @@.red;shoot hateful glances@@ at any vaginas $he sees. <<set $activeSlave.behavioralFlaw = "hates women">> <<BasicTrainingDefaulter>> <</if>> <<case "induce gluttony">> - Inducing gluttony is harder than inducing anorexia; you force her to orgasm when she's eating, and praise her effusively when she gains weight. You also provide her with ample rations for stress eating. + Inducing gluttony is harder than inducing anorexia; you force $him to orgasm when $he's eating, and praise $him effusively when $he gains weight. You also provide $him with ample rations for stress eating. <<set $activeSlave.training -= 20>> /* more difficult training */ <<if $activeSlave.training < 100>> - She eats when ordered, but isn't deeply affected. She'll need more practice being a pig. + $He eats when ordered, but isn't deeply affected. $He'll need more practice being a pig. <<else>> - You notice her starting to @@.red;enjoy eating@@ for its own sake, even when she's not hungry. + You notice $him starting to @@.red;enjoy eating@@ for its own sake, even when $he's not hungry. <<set $activeSlave.behavioralFlaw = "gluttonous">> <<BasicTrainingDefaulter>> <</if>> <<case "induce anorexia">> - You criticize her cruelly whenever she eats, and praise thinner slaves to her face at every opportunity. + You criticize $him cruelly whenever $he eats, and praise thinner slaves to $his face at every opportunity. <<InduceFlawAbuseEffects>> <<if $activeSlave.training < 100>> - She continues consuming her rations when ordered, and will need further training. + $He continues consuming $his rations when ordered, and will need further training. <<else>> - She begins to @@.red;eat only when repeatedly ordered to.@@ + $He begins to @@.red;eat only when repeatedly ordered to.@@ <<set $activeSlave.behavioralFlaw = "anorexic">> <<BasicTrainingDefaulter>> <</if>> <<case "induce religious devotion">> - You direct a campaign of abuse and threats at her, and surreptitiously ensure that a little religious text from her home country finds its way into a hiding place in her living area. + You direct a campaign of abuse and threats at $him, and surreptitiously ensure that a little religious text from $his home country finds its way into a hiding place in $his living area. <<InduceFlawAbuseEffects>> <<if $activeSlave.training < 100>> - She keeps her head down and shows no sign of religious introspection, at least this week. + $He keeps $his head down and shows no sign of religious introspection, at least this week. <<else>> - She begins to read it when she thinks she's alone, and @@.red;talks to God@@ when she thinks only He is listening. + $He begins to read it when $he thinks $he's alone, and @@.red;talks to God@@ when $he thinks only He is listening. <<set $activeSlave.behavioralFlaw = "devout">> <<BasicTrainingDefaulter>> <</if>> <<case "induce liberation">> - You direct a campaign of abuse and threats at her, making sure to threaten her with the absolute worst of slavery in your arcology. You also arrange for her to witness other citizen's slaves in situations that aren't much fun. + You direct a campaign of abuse and threats at $him, making sure to threaten $him with the absolute worst of slavery in your arcology. You also arrange for $him to witness other citizen's slaves in situations that aren't much fun. <<InduceFlawAbuseEffects>> <<if $activeSlave.training < 100>> - She does her best to endure the abuse, unknowingly condemning herself to more. + $He does $his best to endure the abuse, unknowingly condemning $himself to more. <<else>> - A deep @@.red;anger about slavery@@ builds within her. + A deep @@.red;anger about slavery@@ builds within $him. <<set $activeSlave.behavioralFlaw = "liberated">> <<BasicTrainingDefaulter>> <</if>> <<case "induce hatred of oral">> - Since you've decided to force her to dislike oral sex, you're forced to use a complicated and refined slave breaking technique: constantly raping her face. + Since you've decided to force $him to dislike oral sex, you're forced to use a complicated and refined slave breaking technique: constantly raping $his face. <<InduceFlawAbuseEffects>> <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<if $activeSlave.training < 100>> - She does her best to comply with the oral abuse, unknowingly condemning herself to more. + $He does $his best to comply with the oral abuse, unknowingly condemning $himself to more. <<else>> - After gagging enough, she finally starts to @@.red;hate oral.@@ + After gagging enough, $he finally starts to @@.red;hate oral.@@ <<set $activeSlave.sexualFlaw = "hates oral">> <<BasicTrainingDefaulter>> <</if>> <<case "induce hatred of anal">> - Since you've decided to force her to dislike anal sex, you're forced to use a complicated and refined slave breaking technique: constantly raping her ass. - <<if !canDoAnal($activeSlave)>>Every time you catch her with her chastity off, you're there to penetrate her rectum<</if>>. + Since you've decided to force $him to dislike anal sex, you're forced to use a complicated and refined slave breaking technique: constantly raping $his ass. + <<if !canDoAnal($activeSlave)>>Every time you catch $him with $his chastity off, you're there to penetrate $his rectum<</if>>. <<InduceFlawAbuseEffects>> <<= AnalVCheck(10)>> <<if $activeSlave.training < 100>> - She does her best to comply with your abuse of her butthole, unknowingly condemning herself to more assrape. + $He does $his best to comply with your abuse of $his butthole, unknowingly condemning $himself to more assrape. <<else>> - After feeling her poor sphincter grow sorer and sorer, she starts to @@.red;hate anal.@@ + After feeling $his poor sphincter grow sorer and sorer, $he starts to @@.red;hate anal.@@ <<set $activeSlave.sexualFlaw = "hates anal">> <<BasicTrainingDefaulter>> <</if>> <<case "induce hatred of penetration">> - Since you've decided to force her to dislike penetration, you're forced to use a complicated and refined slave breaking technique: constantly raping her. + Since you've decided to force $him to dislike penetration, you're forced to use a complicated and refined slave breaking technique: constantly raping $him. <<InduceFlawAbuseEffects>> <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<if $activeSlave.training < 100>> - She does her best to comply with your abuse, unknowingly condemning herself to more of it. + $He does $his best to comply with your abuse, unknowingly condemning $himself to more of it. <<else>> - After feeling her poor holes grow sorer and sorer, she starts to @@.red;hate getting fucked.@@ + After feeling $his poor holes grow sorer and sorer, $he starts to @@.red;hate getting fucked.@@ <<set $activeSlave.sexualFlaw = "hates penetration">> <<BasicTrainingDefaulter>> <</if>> <<case "induce shame">> - Since you've decided to force shame on her, you keep her in your office whenever she's not otherwise occupied, and heap derision on her at every opportunity, even inviting visitors to join you in chats about how unattractive and worthless she is. + Since you've decided to force shame on $him, you keep $him in your office whenever $he's not otherwise occupied, and heap derision on $him at every opportunity, even inviting visitors to join you in chats about how unattractive and worthless $he is. <<InduceFlawAbuseEffects>> <<if $activeSlave.training < 100>> - She does her best to keep her chin up, unknowingly condemning herself to more of this abuse. + $He does $his best to keep $his chin up, unknowingly condemning $himself to more of this abuse. <<else>> - She wants nothing more than to hide in corner and cry, and is now @@.red;shamefast.@@ + $He wants nothing more than to hide in corner and cry, and is now @@.red;shamefast.@@ <<set $activeSlave.sexualFlaw = "shamefast">> <<BasicTrainingDefaulter>> <</if>> <<case "induce sexual idealism">> - Since you've decided to induce her to sexual idealism, you keep her in your office, and when the two of you are all alone, gossip with her about other slaves and even citizens. You do your best to encourage her to believe absurdities. + Since you've decided to induce $him to sexual idealism, you keep $him in your office, and when the two of you are all alone, gossip with $him about other slaves and even citizens. You do your best to encourage $him to believe absurdities. <<InduceFlawLenityEffects>> <<if $activeSlave.training < 100>> - She doesn't know what to make of this; you'll have to keep at it. + $He doesn't know what to make of this; you'll have to keep at it. <<else>> - She follows along, and is now @@.red;sexually idealistic.@@ + $He follows along, and is now @@.red;sexually idealistic.@@ <<set $activeSlave.sexualFlaw = "idealistic">> <<BasicTrainingDefaulter>> <</if>> <<case "induce sexual repression">> - Since you've decided to force sexual repression on her, you keep her in your office whenever she's not otherwise occupied. You use the monitoring systems to reveal her sexual arousal whenever it appears, and castigate and punish her for it. + Since you've decided to force sexual repression on $him, you keep $him in your office whenever $he's not otherwise occupied. You use the monitoring systems to reveal $his sexual arousal whenever it appears, and castigate and punish $him for it. <<InduceFlawAbuseEffects>> <<if $activeSlave.training < 100>> - She does her best to keep her chin up, unknowingly condemning herself to more of this abuse. + $He does $his best to keep $his chin up, unknowingly condemning $himself to more of this abuse. <<else>> - She desperately tries to avoid even thinking about subjects that get her punished, and is now @@.red;sexually repressed.@@ + $He desperately tries to avoid even thinking about subjects that get $him punished, and is now @@.red;sexually repressed.@@ <<set $activeSlave.sexualFlaw = "repressed">> <<BasicTrainingDefaulter>> <</if>> <<case "induce sexual apathy">> - Since you've decided to force sexual apathy on her, you keep her in your office whenever she's not otherwise occupied. You use her regularly, and punish her whenever she shows any sign of enjoyment. + Since you've decided to force sexual apathy on $him, you keep $him in your office whenever $he's not otherwise occupied. You use $him regularly, and punish $him whenever $he shows any sign of enjoyment. <<InduceFlawAbuseEffects>> <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<if $activeSlave.training < 100>> - She continues to experience arousal when fucked, and will need more of this treatment. + $He continues to experience arousal when fucked, and will need more of this treatment. <<else>> - She desperately tries to avoid arousal, and is now @@.red;sexually apathetic.@@ + $He desperately tries to avoid arousal, and is now @@.red;sexually apathetic.@@ <<set $activeSlave.sexualFlaw = "apathetic">> <<BasicTrainingDefaulter>> <</if>> <<case "induce crudity">> - Since you've decided to force sexual crudeness on her, you keep her in your office whenever she's not otherwise occupied, and degrade her cruelly. You relax the normal cleanliness rules, and require her to leave her used holes as they are until she's too disgusting to fuck. + Since you've decided to force sexual crudeness on $him, you keep $him in your office whenever $he's not otherwise occupied, and degrade $him cruelly. You relax the normal cleanliness rules, and require $him to leave $his used holes as they are until $he's too disgusting to fuck. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<InduceFlawAbuseEffects>> <<if $activeSlave.training < 100>> - She does her best to tolerate the unclean feelings, condemning herself to more of this. + $He does $his best to tolerate the unclean feelings, condemning $himself to more of this. <<else>> - She slowly stops caring, and is now @@.red;sexually crude.@@ + $He slowly stops caring, and is now @@.red;sexually crude.@@ <<set $activeSlave.sexualFlaw = "crude">> <<BasicTrainingDefaulter>> <</if>> <<case "induce judgement">> - Since you've decided to make her sexually judgemental, you keep her in your office and fuck her, <<if $PC.dick == 1>>praising her whenever she takes your big dick well<<else>>using a huge strap-on on her and praising her when she takes it like a good girl<</if>>. You also judge others' endowments in her presence. + Since you've decided to make $him sexually judgemental, you keep $him in your office and fuck $him, <<if $PC.dick == 1>>praising $him whenever $he takes your big dick well<<else>>using a huge strap-on on $him and praising $him when $he takes it like a good girl<</if>>. You also judge others' endowments in $his presence. <<InduceFlawLenityEffects>> <<if $activeSlave.training < 100>> - She writes this off as bravado, and will need more training. + $He writes this off as bravado, and will need more training. <<else>> - She starts to consider herself reserved for special sexual treatment, and is now @@.red;sexually judgemental.@@ + $He starts to consider $himself reserved for special sexual treatment, and is now @@.red;sexually judgemental.@@ <<set $activeSlave.sexualFlaw = "judgemental">> <<BasicTrainingDefaulter>> <</if>> <<case "induce cum addiction">> - The cumslut is quite pleased when you order her to stay in your office whenever she can for use as one of your personal oral toys. You carefully limit her orgasms to when <<if $PC.dick == 1>>you're blowing your load down her throat<<else>>she's swallowing your pussyjuice<</if>>, and make her oral adventures predictably regular. + The cumslut is quite pleased when you order $him to stay in your office whenever $he can for use as one of your personal oral toys. You carefully limit $his orgasms to when <<if $PC.dick == 1>>you're blowing your load down $his throat<<else>>$he's swallowing your pussyjuice<</if>>, and make $his oral adventures predictably regular. <<set $activeSlave.oralCount += 10, $oralTotal += 10>> <<if $activeSlave.training < 100>> - She enjoys giving you lots of oral, but will need more training to develop psychological addiction to it. + $He enjoys giving you lots of oral, but will need more training to develop psychological addiction to it. <<else>> - She begins to develop a psychological @@.yellow;addiction to cum.@@ + $He begins to develop a psychological @@.yellow;addiction to cum.@@ <<set $activeSlave.sexualFlaw = "cum addict">> <<BasicTrainingDefaulter>> <</if>> <<case "induce anal addiction">> - The buttslut is quite pleased when you order her to stay in your office<<if !canDoAnal($activeSlave)>>and remove her chastity<</if>> whenever she can for use as one of your personal anal toys. You make her anal orgasms predictably regular, doing your best to inculcate reliance on them. + The buttslut is quite pleased when you order $him to stay in your office<<if !canDoAnal($activeSlave)>>and remove $his chastity<</if>> whenever $he can for use as one of your personal anal toys. You make $his anal orgasms predictably regular, doing your best to inculcate reliance on them. <<= AnalVCheck(10)>> <<if $activeSlave.training < 100>> - She enjoys all the anal attention, but will need more training to develop psychological addiction to buttsex. + $He enjoys all the anal attention, but will need more training to develop psychological addiction to buttsex. <<else>> - She begins to develop a psychological @@.yellow;addiction to anal sex.@@ + $He begins to develop a psychological @@.yellow;addiction to anal sex.@@ <<set $activeSlave.sexualFlaw = "anal addict">> <<BasicTrainingDefaulter>> <</if>> <<case "induce attention whoring">> - The humiliation slut is quite pleased when you order her to stay in your office whenever she can, and fucking her whenever other slaves are present. You do your best to focus her attention on how the others react to the spectacle. + The humiliation slut is quite pleased when you order $him to stay in your office whenever $he can, and fucking $him whenever other slaves are present. You do your best to focus $his attention on how the others react to the spectacle. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<if $activeSlave.training < 100>> - She enjoys all the humiliation, but will need more training to become a true attention whore. + $He enjoys all the humiliation, but will need more training to become a true attention whore. <<else>> - She becomes a @@.yellow;true attention whore,@@ caring more about the spectators than the sex. + $He becomes a @@.yellow;true attention whore,@@ caring more about the spectators than the sex. <<set $activeSlave.sexualFlaw = "attention whore">> <<BasicTrainingDefaulter>> <</if>> <<case "induce breast growth obsession">> - You inspect her breasts multiple times a day, and praise her effusively when they grow at all. You treat it as though it were something she could control personally. + You inspect $his breasts multiple times a day, and praise $him effusively when they grow at all. You treat it as though it were something $he could control personally. <<if $activeSlave.training < 100>> - She enjoys your attention to her favorite part of herself, but doesn't truly internalize your focus on their growth. + $He enjoys your attention to $his favorite part of $himself, but doesn't truly internalize your focus on their growth. <<else>> - She begins to believe you despite herself, and becomes @@.yellow;obsessed with breast growth.@@ + $He begins to believe you despite $himself, and becomes @@.yellow;obsessed with breast growth.@@ <<set $activeSlave.sexualFlaw = "breast growth">> <<BasicTrainingDefaulter>> <</if>> <<case "induce abusiveness">> - The dom is gratified when you order her to stay in your office whenever she can to fuck any slave you feel like throwing her way. You do your best to limit her menu items to reluctant or even rebellious slaves, and praise her when she forces herself on them. + The dom is gratified when you order $him to stay in your office whenever $he can to fuck any slave you feel like throwing $his way. You do your best to limit $his menu items to reluctant or even rebellious slaves, and praise $him when $he forces $himself on them. <<set $activeSlave.penetrativeCount += 20, $penetrativeTotal += 20>> <<if $activeSlave.training < 100>> - She has fun, but she continues to enjoy getting off more than getting to use bitches. She'll need more practice. + $He has fun, but $he continues to enjoy getting off more than getting to use bitches. $He'll need more practice. <<else>> - She becomes @@.yellow;sexually abusive,@@ looking over each slave that comes into your office in the hope they'll resist. + $He becomes @@.yellow;sexually abusive,@@ looking over each slave that comes into your office in the hope they'll resist. <<set $activeSlave.sexualFlaw = "abusive">> <<BasicTrainingDefaulter>> <</if>> <<case "induce maliciousness">> - The sadist is gratified when you order her to stay in your office whenever she can to have her way with any slave you feel like throwing her way. You do your best to limit her menu items to rebellious slaves, and praise her when her sadism makes her an effective punishment tool. + The sadist is gratified when you order $him to stay in your office whenever $he can to have $his way with any slave you feel like throwing $his way. You do your best to limit $his menu items to rebellious slaves, and praise $him when $his sadism makes $him an effective punishment tool. <<set $activeSlave.penetrativeCount += 20, $penetrativeTotal += 20>> <<if $activeSlave.training < 100>> - She enjoys herself, but still betrays occasional concern when slaves are really broken by what she does to them. She'll need more practice. + $He enjoys $himself, but still betrays occasional concern when slaves are really broken by what $he does to them. $He'll need more practice. <<else>> - She becomes @@.yellow;sexually malicious,@@ going so far as to lick tears off her victims' faces. + $He becomes @@.yellow;sexually malicious,@@ going so far as to lick tears off $his victims' faces. <<set $activeSlave.sexualFlaw = "malicious">> <<BasicTrainingDefaulter>> <</if>> <<case "induce self hatred">> - You order the masochist to stay in your office whenever she's not working or resting. You fuck her cruelly, going beyond the pain she enjoys into harsh degradation. And every time you use her, you make sure to tell her how useless she is. + You order the masochist to stay in your office whenever $he's not working or resting. You fuck $him cruelly, going beyond the pain $he enjoys into harsh degradation. And every time you use $him, you make sure to tell $him how useless $he is. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<if $activeSlave.training < 100>> - She gets off on the pain, but her sense of self isn't seriously affected this week. + $He gets off on the pain, but $his sense of self isn't seriously affected this week. <<else>> - She becomes @@.yellow;sexually self hating,@@ and tearfully begs to you do worse to her, no matter how bad it gets. + $He becomes @@.yellow;sexually self hating,@@ and tearfully begs to you do worse to $him, no matter how bad it gets. <<set $activeSlave.sexualFlaw = "self hating">> <<BasicTrainingDefaulter>> <</if>> <<case "induce sexual self neglect">> - You order the sub to stay in your office whenever she's not working or resting, and use her body for your pleasure. The instant you climax, you go back to your work or to another slave, treating her like a piece of used tissue. + You order the sub to stay in your office whenever $he's not working or resting, and use $his body for your pleasure. The instant you climax, you go back to your work or to another slave, treating $him like a piece of used tissue. <<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>> <<if $activeSlave.training < 100>> - She accepts her utterly submissive role, but her sense of self isn't seriously affected this week. + $He accepts $his utterly submissive role, but $his sense of self isn't seriously affected this week. <<else>> - She becomes @@.yellow;sexually self neglectful,@@ and loses all expectation that those who use her will address her pleasure at all. + $He becomes @@.yellow;sexually self neglectful,@@ and loses all expectation that those who use $him will address $his pleasure at all. <<set $activeSlave.sexualFlaw = "neglectful">> <<BasicTrainingDefaulter>> <</if>> <<case "induce breeding obsession">> - You order the pregnant slut to stay in your office whenever she's not working or resting. - <<if $activeSlave.pregKnown == 0>>Since she's not pregnant, you keep her rigged up with an enormous sympathy belly when she's there.<</if>> Rather than fucking her, you praise her pregnancy effusively, and only allow her to get off when you're doing so. + You order the pregnant slut to stay in your office whenever $he's not working or resting. + <<if $activeSlave.pregKnown == 0>>Since $he's not pregnant, you keep $him rigged up with an enormous sympathy belly when $he's there.<</if>> Rather than fucking $him, you praise $his pregnancy effusively, and only allow $him to get off when you're doing so. <<if $activeSlave.training < 100>> - She enjoys herself, but mostly because of the pleasure. She'll need more training. + $He enjoys $himself, but mostly because of the pleasure. $He'll need more training. <<else>> - She develops an @@.yellow;obsession with breeding,@@ and begins to stroke her belly in a disturbingly masturbatory way. + $He develops an @@.yellow;obsession with breeding,@@ and begins to stroke $his belly in a disturbingly masturbatory way. <<set $activeSlave.sexualFlaw = "breeder">> <<BasicTrainingDefaulter>> <</if>> diff --git a/src/uncategorized/reAWOL.tw b/src/uncategorized/reAWOL.tw index eaf81637dc22d8cf1ef795d72ee4442a5e56affb..0497d3edf2ed339d9ad336b1efa51e5239c7664c 100644 --- a/src/uncategorized/reAWOL.tw +++ b/src/uncategorized/reAWOL.tw @@ -47,7 +47,7 @@ Human soldiers are superior to drones in a number of ways - they have the capabi On this particular evening, you find your work interrupted by an urgent alert from $assistantName. <<if $assistant > 0>> - "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, one of the $mercenariesTitle has gone AWOL." She pauses before continuing. "$He's taken a number of weapons with $him." + "<<= properMaster()>>, one of the $mercenariesTitle has gone AWOL." She pauses before continuing. "$He's taken a number of weapons with $him." <<else>> It informs you that one of the $mercenariesTitle has disappeared, seemingly taking with $him a small stash of weapons. <</if>> diff --git a/src/uncategorized/reBrothelFunction.tw b/src/uncategorized/reBrothelFunction.tw index 59455eac69755474e7eca6fcf856bffd3f5e4629..4c84453c38ff3accf510fab60bb6ffb9ae610d8b 100644 --- a/src/uncategorized/reBrothelFunction.tw +++ b/src/uncategorized/reBrothelFunction.tw @@ -7,7 +7,7 @@ $brothelNameCaps is a reputable establishment in $arcologies[0].name, a veritabl <br><br> One request comes to you written on a letterhead featuring the logo of a fellow arcology owner. She describes her husband's preference for your hard working brothel whores, whom he patronizes on his regular business trips to your arcology. Such indulgences have been a distraction to her husband of late, and she has dispatched him to undertake a task in your arcology that simply cannot go poorly. With this in mind, she beseeches you to close down your brothel for a single day out of solidarity for a fellow arcology owner - and for the significant sum of <<print cashFormat(10000)>>. <br><br> -Another of these bids for your brothel comes in the form of a curious video call. The video comes from an infamous lothario in your arcology, a seducer of powerful and prominent women citizens. Indeed, the recording was surreptitiously recorded in the bedroom of one such influential woman, with the casanova describing his request in hushed tones while his wealthy host minces about unknowingly in the background. He explains that he is finally ready to hang up his coat and end his days of debauchery and copious casual sex, but that he would like to do so by engaging in a full day of indulgence at $brothelNameCaps. +Another of these bids for your brothel comes in the form of a curious video call. The video comes from an infamous lothario in your arcology, a seducer of powerful and prominent women citizens. Indeed, the recording was surreptitiously recorded in the bedroom of one such influential woman, with the Casanova describing his request in hushed tones while his wealthy host minces about unknowingly in the background. He explains that he is finally ready to hang up his coat and end his days of debauchery and copious casual sex, but that he would like to do so by engaging in a full day of indulgence at $brothelNameCaps. <br><br> The last of these requests comes in the form of a letter, stamped with the herald of a prominent arcology family. It seems the eldest son of the family, known to you largely as a spoiled child riding on the coattails of his parents, is about to reach the age of majority. At his behest, his parents have contacted you to reserve your brothel for a day so that their son may become a man in true Free Cities fashion - amongst a roil of writhing flesh and wanton debauchery. @@ -19,7 +19,7 @@ The last of these requests comes in the form of a letter, stamped with the heral Though you close down $brothelNameCaps for a day, it's far from a day off for your hard-working brothel girls. In the absence of the convenient center for the sale of sexual services that a brothel represents, you disperse them onto the streets to sell their bodies the old fashioned way. At the end of the day you receive a brief message of gratitude from your fellow arcology owner while your girls @@.hotpink;appreciate the opportunity to stretch their legs on the street@@ for a change of pace. <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].assignment == "work in the brothel">> - <<set $slaves[$i].devotion += 4>> + <<set $slaves[$i].devotion += 4>> <</if>> <</for>> <<set $cash += 10000>> @@ -31,21 +31,21 @@ The last of these requests comes in the form of a letter, stamped with the heral <<for $i = 0; $i < $slaves.length; $i++>> <<if $slaves[$i].assignment == "work in the brothel">> <<if $slaves[$i].whoreSkill < 100>> - <<set $slaves[$i].whoreSkill += 10>> + <<set $slaves[$i].whoreSkill += 10>> <<else>> - <<set $slaves[$i].devotion += 4>> + <<set $slaves[$i].devotion += 4>> <</if>> <<if canDoVaginal($slaves[$i]) && canDoAnal($slaves[$i])>> - <<set $slaves[$i].vaginalCount += 3>> - <<set $vaginalTotal += 3>> - <<set $slaves[$i].analCount += 3>> - <<set $analTotal += 3>> + <<set $slaves[$i].vaginalCount += 3>> + <<set $vaginalTotal += 3>> + <<set $slaves[$i].analCount += 3>> + <<set $analTotal += 3>> <<elseif canDoAnal($slaves[$i])>> - <<set $slaves[$i].analCount += 5>> - <<set $analTotal += 5>> + <<set $slaves[$i].analCount += 5>> + <<set $analTotal += 5>> <<else>> - <<set $slaves[$i].oralCount += 10>> - <<set $oralTotal += 10>> + <<set $slaves[$i].oralCount += 10>> + <<set $oralTotal += 10>> <</if>> <</if>> <</for>> @@ -59,16 +59,16 @@ The last of these requests comes in the form of a letter, stamped with the heral <<if $slaves[$i].assignment == "work in the brothel">> <<set $slaves[$i].health -= 5>> <<if canDoVaginal($slaves[$i]) && canDoAnal($slaves[$i])>> - <<set $slaves[$i].vaginalCount += 1>> - <<set $vaginalTotal += 1>> - <<set $slaves[$i].analCount += 1>> - <<set $analTotal += 1>> + <<set $slaves[$i].vaginalCount += 1>> + <<set $vaginalTotal += 1>> + <<set $slaves[$i].analCount += 1>> + <<set $analTotal += 1>> <<elseif canDoAnal($slaves[$i])>> - <<set $slaves[$i].analCount += 2>> - <<set $analTotal += 2>> + <<set $slaves[$i].analCount += 2>> + <<set $analTotal += 2>> <<else>> - <<set $slaves[$i].oralCount += 4>> - <<set $oralTotal += 4>> + <<set $slaves[$i].oralCount += 4>> + <<set $oralTotal += 4>> <</if>> <</if>> <</for>> diff --git a/src/uncategorized/reBusyMasterSuite.tw b/src/uncategorized/reBusyMasterSuite.tw index fe46824dbbd6957ac2c09dba73a1b6507f756644..ec6c6bf1e9a1d8a87a443cd36f3af950b6d54bc3 100644 --- a/src/uncategorized/reBusyMasterSuite.tw +++ b/src/uncategorized/reBusyMasterSuite.tw @@ -55,8 +55,8 @@ $He had to turn to greet you as you entered, since $he was facing away from the <<elseif $slaves[_msIdx[$i]].butt > 4>> well cushioned by <<print $slaves[_msIdx[$i]].slaveName>>'s huge ass. <<elseif $slaves[_msIdx[$i+1]].nipples == "huge">> - <<setLocalPronouns $slaves[_msIdx[$i+1]] 2>> - who is bending to rub _his2 enormous hard nipples across <<print $slaves[_msIdx[$i]].slaveName>>'s <<print $slaves[_msIdx[$i]].skin>> back. + <<set _his = $slaves[_msIdx[$i+1]].possessive>> + who is bending to rub _his enormous hard nipples across <<print $slaves[_msIdx[$i]].slaveName>>'s <<print $slaves[_msIdx[$i]].skin>> back. <<elseif $slaves[_msIdx[$i+1]].lips > 40>> who is bending forward to nibble along <<print $slaves[_msIdx[$i]].slaveName>>'s <<print $slaves[_msIdx[$i]].skin>> neck. <<elseif $slaves[_msIdx[$i+1]].amp != 1>> @@ -166,7 +166,7 @@ who has paused $his thrusting to issue a peremptory order to the slaves to stay <<else>> trim <</if>> - rear as wide as $he can without disentangling $himself from the pussy train. Up on the bed $he's at just the right height, and $he wiggles $his <<if ($Concubine.vagina > 2)>>loose pussy<<elseif ($Concubine.vagina > 1)>>pussy<<else>>tight little pussy<</if>> invitingly<<if canTalk($Concubine)>>, laughing at the sheer decadence of it<</if>>. <<if ($PC.dick == 0)>>You pull on a strap-on and push it<<else>>You push yourself<</if>> home with some force, your concubine's extreme state of arousal leaving $his pussy very relaxed and welcoming; the thrust shoves $him forward to hilt $himself in <<print $slaves[_msIdx[$i]].slaveName>>, and so on down the line, producing more giggling, some squealing, and much scrabbling for balance. It takes a while to find the rhythm, and while you wait for the inevitable tangles to be fixed you decide to challenge yourself. You reach around and <<if ($Concubine.boobs > 10000)>>sink your hands into $Concubine.slaveName's massive boobs<<elseif ($Concubine.boobs > 1000)>>heft $Concubine.slaveName's heavy boobs<<elseif ($Concubine.boobs > 300)>>tease $Concubine.slaveName's healthy breasts<<else>>massage $Concubine.slaveName's flat chest<</if>>, nibbling $his $Concubine.skin neck, and generally torturing $him with stimulation until $he climaxes to $his beloved <<= WrittenMaster($Concubine)>>. When $he does, you extract yourself and pull $him unceremoniously off <<print $slaves[_msIdx[$i]].slaveName>>, replacing $him up <<print $slaves[_msIdx[$i]].slaveName>>'s ass. You work your way down the line, orgasm by orgasm, delaying your own climax until the exhausted <<print $slaves[_msIdx[0]].slaveName>> manages a anal orgasm by heroic efforts, and you're done. As you roll off _him2, panting, there is scattered applause and much congratulation from your harem of @@.mediumaquamarine;trusting fuckslaves.@@ + rear as wide as $he can without disentangling $himself from the pussy train. Up on the bed $he's at just the right height, and $he wiggles $his <<if ($Concubine.vagina > 2)>>loose pussy<<elseif ($Concubine.vagina > 1)>>pussy<<else>>tight little pussy<</if>> invitingly<<if canTalk($Concubine)>>, laughing at the sheer decadence of it<</if>>. <<if ($PC.dick == 0)>>You pull on a strap-on and push it<<else>>You push yourself<</if>> home with some force, your concubine's extreme state of arousal leaving $his pussy very relaxed and welcoming; the thrust shoves $him forward to hilt $himself in <<print $slaves[_msIdx[$i]].slaveName>>, and so on down the line, producing more giggling, some squealing, and much scrabbling for balance. It takes a while to find the rhythm, and while you wait for the inevitable tangles to be fixed you decide to challenge yourself. You reach around and <<if ($Concubine.boobs > 10000)>>sink your hands into $Concubine.slaveName's massive boobs<<elseif ($Concubine.boobs > 1000)>>heft $Concubine.slaveName's heavy boobs<<elseif ($Concubine.boobs > 300)>>tease $Concubine.slaveName's healthy breasts<<else>>massage $Concubine.slaveName's flat chest<</if>>, nibbling $his $Concubine.skin neck, and generally torturing $him with stimulation until $he climaxes to $his beloved <<= WrittenMaster($Concubine)>>. When $he does, you extract yourself and pull $him unceremoniously off <<print $slaves[_msIdx[$i]].slaveName>>, replacing $him up <<print $slaves[_msIdx[$i]].slaveName>>'s ass. You work your way down the line, orgasm by orgasm, delaying your own climax until the exhausted <<print $slaves[_msIdx[0]].slaveName>> manages an anal orgasm by heroic efforts, and you're done. As you roll off _him2, panting, there is scattered applause and much congratulation from your harem of @@.mediumaquamarine;trusting fuckslaves.@@ <<for _reBMS = 0; _reBMS < $slaves.length; _reBMS++>> <<if $slaves[_reBMS].ID == $Concubine.ID>> <<set $slaves[_reBMS].trust += 5, $slaves[_reBMS].vaginalCount++, $vaginalTotal++, $slaves[_reBMS].penetrativeCount++, $penetrativeTotal++>> @@ -213,7 +213,7 @@ who has paused $his thrusting to issue a peremptory order to the slaves to stay <<else>> trim <</if>> - ass down near the foot of the bed. You climax, on occasion, but are enjoying yourself so immensely that you let the slaves continue the rotation until you're entirely spent, and they're entirely exhausted. You reach for a tablet to get some work done, in the center of a pile of sweaty, tired girls, all of whom are resting with at least one body part in contact with their @@.hotpink;beloved@@ <<if $PC.title == 1>>master<<else>>mistress<</if>>. + ass down near the foot of the bed. You climax, on occasion, but are enjoying yourself so immensely that you let the slaves continue the rotation until you're entirely spent, and they're entirely exhausted. You reach for a tablet to get some work done, in the center of a pile of sweaty, tired girls, all of whom are resting with at least one body part in contact with their @@.hotpink;beloved@@ <<= properMaster()>>. <<for _reBMS = 0; _reBMS < $slaves.length; _reBMS++>> <<if $slaves[_reBMS].ID == $Concubine.ID>> <<set $slaves[_reBMS].trust += 5, $slaves[_reBMS].oralCount++, $oralTotal++, $slaves[_reBMS].penetrativeCount++, $penetrativeTotal++>> diff --git a/src/uncategorized/reDevotedMotherDaughter.tw b/src/uncategorized/reDevotedMotherDaughter.tw index b393add88cc7021f5697ea6440bc7ab1346f2716..08fb0050da7d96e9ba2e2c173a68470662cdfa9e 100644 --- a/src/uncategorized/reDevotedMotherDaughter.tw +++ b/src/uncategorized/reDevotedMotherDaughter.tw @@ -12,7 +12,7 @@ $slaves[$i].slaveName and her daughter $slaves[$j].slaveName are both good slave <span id="result"> <br><<link "Spend the night sharing your bed with them, and each of them with the other">> <<replace "#result">> - Neither of them bats an eye when you announce you're turning in early and that they'll be joining you. Since they're already naked, they get into your big soft bed before you and lie facing each other, with enough room in between them for you to take a central position. They clearly assume you'll start with one of them on each side of you, so they're quite surprised when you slide in behind $slaves[$i].slaveName instead. $slaves[$j].slaveName snuggles up to her mother happily enough, however. You extend the foreplay to hours, eventually bringing both of them to such a state of naked arousal that they begin grinding against each other as much as they do you. They get the idea, and things turn into a sort of unspoken mutual oneupmanship between them. What starts with $slaves[$j].slaveName clearly feeling very daring as she sucks her mother's nipple ends with $slaves[$i].slaveName lying on her back getting fucked by you while she orally pleasures $slaves[$j].slaveName. You're face to face with $slaves[$j].slaveName and she groans happily into your mouth as $slaves[$i].slaveName moans into her fuckhole. + Neither of them bats an eye when you announce you're turning in early and that they'll be joining you. Since they're already naked, they get into your big soft bed before you and lie facing each other, with enough room in between them for you to take a central position. They clearly assume you'll start with one of them on each side of you, so they're quite surprised when you slide in behind $slaves[$i].slaveName instead. $slaves[$j].slaveName snuggles up to her mother happily enough, however. You extend the foreplay to hours, eventually bringing both of them to such a state of naked arousal that they begin grinding against each other as much as they do you. They get the idea, and things turn into a sort of unspoken mutual one-upmanship between them. What starts with $slaves[$j].slaveName clearly feeling very daring as she sucks her mother's nipple ends with $slaves[$i].slaveName lying on her back getting fucked by you while she orally pleasures $slaves[$j].slaveName. You're face to face with $slaves[$j].slaveName and she groans happily into your mouth as $slaves[$i].slaveName moans into her fuckhole. @@.mediumaquamarine;They have both become more trusting of you.@@ <<set $slaves[$i].trust += 4, $slaves[$j].trust += 4, $slaves[$i].oralCount += 1, $slaves[$j].oralCount += 1, $oralTotal += 2>> diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 728ba108d99b68047109b50ba615b0ffb81d78e8..73c16439183654ec1a2ffb465ccabb1f6cb7b143 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -1071,17 +1071,18 @@ <</switch>> <<setLocalPronouns $activeSlave>> +<<setAssistantPronouns>> <<switch $FSAcquisitionEvents>> <<case "Pastoralist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. This proves to be right on the money in this case, though the woman isn't too terribly bedraggled; $his situation must be recent. $He asks to be enslaved with the crushing sadness most such people experience during their last free hours. "I'm pregnant," $he says through tears. "I know I'm not that pretty, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. But," and $he brings $his sizable chest into view, "I've got pretty big boobs, and I started giving milk yesterday. I was searching the net, and I saw that you milk women, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. It seems like a better life than getting fucked all the time." <<case "Pastoralist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. You are understandably surprised when this turns out to not be the case; the woman in the video call is modestly dressed, so $his newfound situation must be exceedingly recent. Nonetheless, $he asks to be enslaved with the same poignant sadness most people experience during their last free hours. "All my children are gone and my husband left me," $he says through tears. "I know I'm older than most, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. But", $he says as $he brings $his motherly chest into view, "I've still got pretty big breasts, and they still give milk. One of my friends told me that you milk women, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. I can't do anything else to make a living." @@ -1105,19 +1106,19 @@ It seems the violence was racially motivated. The $arcologies[0].FSSubjugationis <<case "Subjugationist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The caller is $arcologies[0].FSSubjugationistRace, and a particularly self-hating one at that. It seems $he came into the arcology despite the strong penalties for free $arcologies[0].FSSubjugationistRace subhumans found here in order to seek enslavement, a curious turn of events. You can easily enslave $him; no one is likely to object to your enslaving one of $his kind, especially when $he came so willingly. <<case "Gender Radicalist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is from a rather abused individual from one of the more traditionalist areas of the old world. It seems $he's heard of the new and interesting way gender is thought of in the Free Cities, and in $arcologies[0].name in particular. "Being your slave has to be better than being a subhuman here," $he says. "Being your sex slave is more accepted in your city than being me is here." <<case "Gender Radicalist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is from a rather mature but otherwise visibly well-to-do individual from one of the more traditionalist areas of the old world. It seems $he's heard of the new and interesting way gender is thought of in the Free Cities, and in $arcologies[0].name in particular. "I've lived my whole life as a subhuman here," $he says. "Being your sex slave is more accepted in your city than being me is here." @@ -1135,37 +1136,37 @@ Having $him disappear discreetly into $arcologies[0].name would be a convenient <<case "Paternalist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> -This one is interesting, even by the standards of messages from people who want to become slaves. The individual is neither sick nor abused, and speaks with intelligence and directness. "I've heard a lot about how $arcologies[0].name treats slaves," $he says. "And, well, I don't know how closely you watch the old world from where you are, but it's pretty bad. Being smart and driven out here doesn't always keep you fed and clothed, or even alive. I'm smart and driven, and I understand that might make me a madam or a DJ or even a head girl in $arcologies[0].name. I'm not dumb enough to rely on that, but I'll take that chance." +This one is interesting, even by the standards of messages from people who want to become slaves. The individual is neither sick nor abused, and speaks with intelligence and directness. "I've heard a lot about how $arcologies[0].name treats slaves," $he says. "And, well, I don't know how closely you watch the old world from where you are, but it's pretty bad. Being smart and driven out here doesn't always keep you fed and clothed, or even alive. I'm smart and driven, and I understand that might make me a Madam or a DJ or even a Head Girl in $arcologies[0].name. I'm not dumb enough to rely on that, but I'll take that chance." <<case "Paternalist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is interesting, even by the standards of messages from people who want to become slaves. The individual is a normal looking woman, neither sick nor visibly abused. "I've heard a lot about how $arcologies[0].name treats slaves," $he says. "And, well, I don't know how closely you watch the old world from where you are, but it's pretty bad. Saving your whole life doesn't always keep you fed and clothed, or even alive. I never had much and now I have even less, and I'd rather live as your slave in $arcologies[0].name than on the streets back home." <<case "Degradationist">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not typically permit anonymous messages through to you. If someone wishes to speak to you, they can do so under their own name and with their own face. She makes an exception, however, for a message offering you a slave so long as you pay the costs of enslavement, nothing else. +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not typically permit anonymous messages through to you. If someone wishes to speak to you, they can do so under their own name and with their own face. _HeA makes an exception, however, for a message offering you a slave so long as you pay the costs of enslavement, nothing else. <br><br> The face and voice are obscured by a petty anonymization program, the sort that can be obtained with five minutes' work in the shadier parts of the net. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> could crack it nearly instantaneously, but you hold her back a moment to avoid spooking your correspondent. You are rewarded with video of the subject of the proposed enslavement, and the simple statement "I hate this fucking bitch, and I want $him to suffer. Can't do it myself. You seem like the right <<if $PC.title == 1>>guy<<else>>woman<</if>> to break the cunt." <<case "Degradationist Two">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not typically permit anonymous messages through to you. If someone wishes to speak to you, they can do so under their own name and with their own face. She makes an exception, however, for a message offering you a slave so long as you pay the costs of enslavement, nothing else. +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not typically permit anonymous messages through to you. If someone wishes to speak to you, they can do so under their own name and with their own face. _HeA makes an exception, however, for a message offering you a slave so long as you pay the costs of enslavement, nothing else. <br><br> In lieu of a face, a plain page of mostly text and a scant few pictures fills the screen and details a number of potential slaves for sale, though most of the merchandise seems visibly too damaged to be worthy of purchase. Yet, one of the slaves catches your eye - an older woman covered in lashes, bruises and marks yet absent the dead-eyed expression of $his peers. The document claims $he has been in their possession longer than any of the other slaves, but has proven resistant to their breaking methods. <<case "Body Purist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is from another arcology, which is rather unusual. You are presented with a rather normal-looking, if obviously poor, free citizen. $He says dejectedly, "I'm on my last few ¤ here, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. The owner here, he's planning to enslave me later today. I just know it. He fills his slaves up with silicone until they look like fucking Barbie dolls." $He shivers fearfully. "You don't do that, right? If I have to be a fucktoy, I don't want to be cut up first." <<case "Body Purist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is from one of the less prestigious slave schools, which is not in itself unusual, save that it comes directly from one of the graduating students. You are presented with a rather normal-looking slavegirl. "I'm past my majority," $he says happily. "I know I'm not that pretty, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. But," and $he pulls the camera back to reveal $his fully nude body, "I've never had any plastic in me, the school couldn't afford it anyways. I was searching the net, and I saw that you like women without surgery, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. If I'm to be owned, I'd like it to be by someone like you who won't cut me open." @@ -1173,115 +1174,115 @@ This one is from one of the less prestigious slave schools, which is not in itse You receive a message coded urgent from a surgeon who you've hired in the past. You are on the point of opening the a call with a friendly businesslike salutation when you see his haggard, worried face, and change your greeting to one of commiseration and understanding. He pours out his troubles to you in a rush. <br><br> -It seems he botched an implant operation on a free woman. $He's still out, and the implants are in successfully, but $he's not too far from dead and will remain so for some time. He needs $him out of sight, now. With your pull, you could easily manipulate the financial situation to enslave $him and get $him out of the doctor's area at the same time. It would be a favor to him, and by the medical records, a favor to you too, once you nurse $him back to health. $He's quite the implant queen. +It seems he botched an implant operation on a free $woman. $He's still out, and the implants are in successfully, but $he's not too far from dead and will remain so for some time. He needs $him out of sight, now. With your pull, you could easily manipulate the financial situation to enslave $him and get $him out of the doctor's area at the same time. It would be a favor to him, and by the medical records, a favor to you too, once you nurse $him back to health. $He's quite the implant queen. <<case "Transformation Fetishist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The call comes in from an unusually well-to-do area. It appears that an aristocratic-looking man placing the call has fallen on hard times, and is doing the intelligent thing and staying ahead of his creditors by offering his trophy wife into slavery. Enslaving $him will be costlier than usual, but it seems likely to be worth it. $He's finely aged and completed worked over under a surgeon's knife. $He's quite the implant queen, in fact. <<case "Slimness Enthusiast">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The call comes in from an unusually well-to-do area. It appears that the aristocratic-looking $woman placing the call has fallen on hard times, and is doing the intelligent thing and staying ahead of $his creditors by offering $himself into slavery. Enslaving $him will be costlier than usual, but it seems likely to be worth it. $He's well-spoken and seems both educated and intelligent. Even better, despite being middle-aged, $he's extremely well-preserved, a tall, slim and graceful beauty with a face that must be the envy of girls half $his age. $He knows all this $himself, and says, "I hear you appreciate a slender $woman; if I'm going down into slavery, <<= properTitle()>>, I'd be happy to avoid too many implants. I understand $arcologies[0].name is a fine place for someone in my situation." <<case "Slimness Enthusiast Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. You are understandably surprised when this turns out to not be the case; the young $woman in the video call is reasonably well dressed, so $his newfound situation must be exceedingly recent. Without hesitation $he immediately asks to be enslaved. "My boyfriend wants to turn me into some sort of bimbo," $he says through tears. "I found all the surgery brochures that he hid, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. But", and $he brings $his slender chest, though covered by $his top, into view, "I don't want to be cut up and filled with plastic. One of my friends told me that you care about $woman with a good figure, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. I should have never sold myself to that bastard." <<case "Asset Expansionist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The person placing the call is physically quite unusual, to the point of looking distinctly unnatural. $He has absolutely enormous tits, an ass to match, and is generally plush all over; yet despite being able to compete with the lushest mother in the curves department, $he appears to be very young. $He explains $himself quickly. "<<= properTitle()>>, I just turned 19. Where I'm from, that means I'm very likely to be enslaved one way or another. So, I've been taking off-market hormones for a couple of years to raise myself out of the gutter as far as who might take me. I hear life is better if you're a valuable slave." $He leans into the camera, displaying a solid acre of cleavage. "Can I be your valuable slave?" <<case "Asset Expansionist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The person placing the call is physically quite unusual, to the point of looking distinctly unnatural. $He has absolutely enormous tits, an ass to match, and is generally plush all over; perhaps one of the lushest mothers in the curves department you've ever seen. $He explains $himself quickly. "<<= properTitle()>>, I'm not a young $woman. Where I'm from, being this old and unmarried means I'm very likely to be enslaved one way or another. But I've always had big breasts. Well, big everything really. I hear life is better if you're a plush slave." $He leans into the camera, displaying a solid acre of cleavage. "Can I be your plush slave?" <<case "Youth Preferentialist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one, unusually, is voice-only. The caller explains why in a painfully quiet voice: $he's turning $activeSlave.actualAge in the next few days, and $he's fairly certain $his family is about to sell $him into slavery. The mixed notes of despair, apathy, and fear in $his voice are heartrending, even to you. $He begs you to make the necessary arrangements to enslave $him. $He's heard about you and how you like young girls, and $he's also heard about brothels and arcades. There is very little hope discernible in $his tone or the pictures $he sends you. <<case "Youth Preferentialist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> -This one, unusually, is voice-only. The caller explains why in a unusually upbeat voice: $he turned 18 a few days ago, and $he's fairly certain $his family is expecting $him to make something of $his life to help support them. The apathy to $his family's wishes is readily evident in $his tone of voice. $He begs you to make the necessary arrangements to enslave $him. $He's heard about you and how you like younger girls, and that you take care of all the decision-making for your slaves. There's a lot of hope in $his tone, $he clearly wants an escape from responsibility - even if that means becoming a slave. +This one, unusually, is voice-only. The caller explains why in an unusually upbeat voice: $he turned 18 a few days ago, and $he's fairly certain $his family is expecting $him to make something of $his life to help support them. The apathy to $his family's wishes is readily evident in $his tone of voice. $He begs you to make the necessary arrangements to enslave $him. $He's heard about you and how you like younger girls, and that you take care of all the decision-making for your slaves. There's a lot of hope in $his tone, $he clearly wants an escape from responsibility - even if that means becoming a slave. <<case "Maturity Preferentialist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> And this one is a rare one indeed. It's a personal file, and you suppress the urge to see whether $assistantName is bugged and has misfiled an application for employment. The beautiful older $woman depicted has included a resume listing $his skills, and a clever selection of photographs: tasteful shots of $him in nice makeup and a fashionable business skirt, and fully nude mirror shots, flaws and all. Curious, you place a video call and get an immediate answer. It seems that 'personal circumstances' that $he saw coming are forcing $him to accept enslavement. $He had some weeks of warning, however, and seems to have made use of the time to find an arcology owner that treats women of $his age well, and then to make $himself as appealing as possible in the hope you'll keep $him. <<case "Maturity Preferentialist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The call comes in from a middle-class area. It appears that the youthful man placing the call has a failing business, and is leveraging his last remaining asset by selling his stately-looking mother into slavery. Enslaving $him will be costlier than usual, but it seems likely to be worth it. From the dossier $his son forwarded to you, $he's both educated and intelligent, both relics of $his impressive pedigree. Even better, $he's aged like a fine wine, a short, stacked and attractive beauty with a face and rack that must be the envy of girls half $his age. $He's aware of the situation at hand, and peeks in from the corner of the screen to say, "I hear you appreciate a mature $woman; if I'm going down into slavery, <<= properTitle()>>, I hope for your sake that you know how to treat a $woman of my caliber." <<case "Physical Idealist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The subject line of the latest is badly misspelled, but the accompanying profile image is impressive, if trite, depicting the sender's massive bicep flexing, veins playing across the striated muscle. Getting $his situation out of $him proves to be something of a chore, since $he scarcely has two functional neurons to rub together. It seems that $he's on a fair number of drugs, not limited to aphrodisiacs and steroids, that $he can't afford them, and that $he has a distorted image of $arcologies[0].name as a sort of muscle-worshiping Valhalla of sex and gains. Hearing $him describe $his idea of life as one of your slaves, you understand why this idiot wants to be enslaved. If $his idea of slave life were accurate, //you'd// want to be enslaved. <<case "Physical Idealist Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> And this one is a rare one indeed. It's a personal file, and you suppress the urge to see whether $assistantName is bugged and has misfiled an application for employment. The muscular $woman depicted has included a resume listing $his various physical achievements, and a clever selection of photographs: tantalizing shots of $him in skimpy workout clothes, and fully nude mirror shots of $him flexing and posing. Curious, you place a video call and get an immediate answer. It seems that $he's determined that life as a slave is the easiest means to access the drugs and steroids $he needs to continue making massive gains. $He had some weeks of planning, however, and seems to have made use of the time to find an arcology owner that values the pursuit of the physical ideal, and then to make $himself as appealing as possible in the hope you'll take $him. <<case "Hedonistic Decadence">> <<run Enunciate($activeSlave)>> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is coming from inside your own arcology, from a tourist interested in permanent residence even if it means enslavement. You have them bought to your office to hear them out. A heavily pregnant girl waddles into your office, $his distended belly a stark contrast to $his relative thinness. $He smiles, $his many piercings clicking against each other in the process, and pats $his middle. "It'<<s>> food, not a baby. I really enjoyed <<s>>taying in your arcology, I mean, I live like thi<<s>> back home, but everyone alway<<s>> pick<<s>> on me for eating <<s>>o much and never getting off my a<<ss>> to work. I can't find a lover either, no one can <<s>>ati<<s>>fy me anymore..." $He exposes $his gaping asshole to you. "I overdid it with the toy<<s>>. It felt <<s>>o good, I couldn't <<s>>top going bigger. Once I realized that, I <<s>>tarted getting piercing<<s>> and eating, anything to make me feel better. But on<<c>>e I arrived here, I never felt <<s>>o a<<cc>>epted before, everyone wa<<s>> enjoying them<<s>>elve<<s>> however they wanted. <<S>>o plea<<s>>e, let me <<s>>tay, I'll do everything you can think of." <<case "Hedonistic Decadence Two">> <<run Enunciate($activeSlave)>> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is interesting, even by the standards of messages from people who want to become slaves. The individual is neither sick nor abused, and speaks with directness. "I'm what you'd call 'vanilla'," $he sighs. "And, well, I want to expand my horizons and I heard how much fun people have in your arcology. I'm yours to experiment with. <<case "Repopulation Efforts">> -You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, are requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is interesting, even by the standards of messages from people who want to become slaves. The individual is neither sick nor abused, and speaks with directness. "I've heard a lot about how your arcology wishes to preserve humanity's place in the future," $he says. "And, well, I don't know how closely you watch the old world from where you are, but things are falling apart. Humanity's future surely rests in the arcologies, and you seem to be the only one who's focusing on that future... As such, I want to become a mother to the future of humanity! Please, take me in and knock me up! I'll carry as many children as my body can take!" <<case "Repopulation Efforts Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, are requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. You are understandably surprised when this turns out to not be the case, the young $woman in the video call is reasonably well dressed, if rather upset over something. "I.. can't have children," $he says through building tears. "I've always dreamed of being a mother, but I was born sterile... I heard rumors that $arcologies[0].name had cures for infertility, and if you'd help me, I would love to <<if $PC.title == 1>>have your children<<else>>get pregnant for you<</if>>. Even if the rest of my life was devoted to motherhood... I'd like that..." <<case "Eugenics">> -You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through are potential applicants for the Societal Elite. As the new world takes shape, they've become more rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through are potential applicants for the Societal Elite. As the new world takes shape, they've become more rare than they once were. <br><br> This one is most mundane, a student with top grades wanting to be part of the top of society. Upon arriving for $his evaluation, $he begins droning on about $his unimpressive achievements and pointless accomplishments. You review information on $his lineage and connections, while feigning interest in $his prattling. It would seem $he is worth far less than $he thinks $he is. <<case "Eugenics Two">> -You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that your personal assistant has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, are requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. A rather homely face greets you, much to your displeasure. "I know I'm not much to look at, so I don't even want you to consider me more than just a slave. With the way things are going, I figured just getting it over with is the way to go." <<case "Chattel Religionist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This one is a little odd; it merely begs you for an in person audience and offers you the sender's "unworthy body" as payment for granting it. You surreptitiously scan $him when $he arrives to make sure this isn't an attack of some kind, but $he's just a normal girl wearing conservative clothing. When admitted to your office, $he immediately strips off $his clothing, gets down before your desk, and presses $his forehead to the floor. "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," $he says, "please accept me as your slave. I am a wretched whore, filled with sin, and freedom is a burden to me. Please free me from this torment and take me into your service." @@ -1293,31 +1294,31 @@ It seems that the Chattel Religionists have all but taken over their town and dr <<case "Roman Revivalist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The call comes in from an old world university. The caller is a young $woman who explains that $he's struggling with extreme student debt, and has recently graduated with a history degree that $he can't seem to turn into gainful employment. $He gushes at length about how much $he enjoyed ancient history, and how $he's heard all about your ideas about reviving ancient culture in the Free Cities. $He sees joining your household as a romantic way out of $his difficult situation. Apparently $he read all the idyllic parts of history and somehow missed out on learning about the salt mines and slave galleys. $He's not terribly pretty and seems socially awkward, but that's likely to have its side benefits. $He nervously sends you a complete dossier on $himself. <<case "Aztec Revivalist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The call comes in from an old world trading colony. The caller is a $woman who humbly explains how tired $he is from all the godless people and terrible conditions, and expresses interest to join the old empires. $He probably knows only of the incredible architecture and the military accomplishments that are advertised in vids. Though the sacrifice and collaring of slaves is no secret, most people never find out the real truth to what you do. Nevertheless $he's incredibly willing, so much so that $he almost signs $himself off to you by accident. $His file is displayed in front if you, pending your reaction. <<case "Edo Revivalist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The caller is a young $woman who struggles to stop $himself from peppering $his socially awkward babble with poorly pronounced Japanese colloquialisms. Insofar as you can parse $his nonsense, $he seems to have gotten a hilariously romanticized version of feudal Japan from somewhere, and is willing to submit to enslavement in order to join your revivalist arcology. Whoever's out there spreading this rubbish, you owe them one; this serf is in for an extremely rude awakening. <<case "Arabian Revivalist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The call comes in from an old world university. The caller, surprisingly, is a beautiful $woman in $his thirties who speaks with a richly lilting accent and a literary vocabulary. "I'm afraid," $he says sadly, "it's come to slavery, for me. I am no longer a $girl, but I can make some claim to beauty. I know many stories and can tell them cleverly; I can sing and dance well. I know you are not looking for a Scheherazade, but I could play her part. Nor am I naïve; I know the Sultan enjoyed her body as well as her wit, and I am not unskilled in those respects, either." $He looks you straight in the eye. "May I come into your harem? I will do my best to brighten it." <<case "Chinese Revivalist">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> The call comes in from an office, and you suppress the urge to check whether $assistantName has misidentified a business communication. The caller is a middle-aged woman, not unattractive, whose face is lined with stress and worry. $He draws $himself up and says, "I would like to apply to be your slave." There is a flash of bitter amusement at the absurd statement, but $he continues, "Business circumstances make it inevitable. I have considerable skills and experience, and it is my understanding that you value such things." $He forwards $his qualifications: they are comprehensive and open, including $his sexual skills as if they were merely another business asset. Which, in a way, they are. @@ -1379,9 +1380,9 @@ The call comes in from an office, and you suppress the urge to check whether $as <<case "Degradationist Two">> When $he arrives as part of the anonymous slave transfers that make up a good part of the inter-arcology commerce, $he has clearly had some time to mull over $his situation. As soon as $he sees you, $he glares deep into your eyes and addresses you directly, "Those fuckers threw everything they could at me, you can't break me. No one can." <<case "Body Purist">> - When $he arrives, it's obvious that $he isn't particularly happy with the situation, but there is some evident relief to $him. When asked about it, $he says, "I really hate the idea of surgery, especially implant surgery, M-<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh." $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. + When $he arrives, it's obvious that $he isn't particularly happy with the situation, but there is some evident relief to $him. When asked about it, $he says, "I really hate the idea of surgery, especially implant surgery, <<= WrittenMaster($activeSlave)>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh." $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. <<case "Body Purist Two">> - When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. + When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<= WrittenMaster($activeSlave)>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. <<case "Transformation Fetishist">> $He arrives with various medical devices still attached to $him, wrapped up in supportive hospital clothing. Despite this, it's obvious that you've made a good decision. The new tits that got $him into this situation are so cartoonish that some of the medical tubing has been hastily routed between them. After a few weeks on curatives and a few more in training, $he'll be ready to bounce those fake boobs up and down as $he takes dick. <<case "Transformation Fetishist Two">> @@ -1471,7 +1472,7 @@ The call comes in from an office, and you suppress the urge to check whether $as <<case "Body Purist">> When $he arrives, it's obvious that $he isn't particularly happy with the situation, but there is some evident relief to $him. It vanishes when a purchaser's agent arrives to take $him away. $He looks at you desperately, begging to know who's purchased $him. You tell $him truthfully that a wealthy citizen one arcology over bought $him as a house slave; you neglect to mention that he likes big tits, and he isn't particular about whether they're natural. <<case "Body Purist Two">> - When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. $His playfulness vanishes when a purchaser's agent arrives to take $him away. $He looks at you desperately, begging to know who's purchased $him. You tell $him truthfully that a wealthy citizen one arcology over bought $him as a house slave; you neglect to mention that he likes big tits, and he isn't particular about whether they're natural. + When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<= WrittenMaster()>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. $His playfulness vanishes when a purchaser's agent arrives to take $him away. $He looks at you desperately, begging to know who's purchased $him. You tell $him truthfully that a wealthy citizen one arcology over bought $him as a house slave; you neglect to mention that he likes big tits, and he isn't particular about whether they're natural. <<case "Transformation Fetishist">> The only downside to $his condition is that reselling $him is utterly anticlimactic. A purchaser's agent arrives and takes charge of $him, transferring $him to a medical transport bed. He takes $him away, and it's done. <<case "Transformation Fetishist Two">> diff --git a/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw b/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw index 8f8d65e0c981b4fe401566b13367a2422fb28fe9..7afd0bf36b709e1930b51243b63fd8e5a88c2b8e 100644 --- a/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw +++ b/src/uncategorized/reFSEgyptianRevivalistAcquisition.tw @@ -32,10 +32,11 @@ <</if>> <<set $activeSlave.relationship = 4>> <<set $activeSlave.relationshipTarget = $activeSlave.ID + 1000>> - <<if ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>><<set $activeSlave.balls = random(1,5)>><</if>> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +<<setAssistantPronouns>> + +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain, with many nervous glances off-camera to ensure they are not overheard, that they are both siblings and lovers, and their attempts to keep the truth of the nature of their relationship from their friends, family, and society at large have failed. They had heard of $arcologies[0].name's reverence for incestuous relationships, and have managed to talk themselves into the questionable conclusion that their only chance to be together was for them to sell themselves to someone who would not just accept but encourage their incest - namely, you. <br><br> diff --git a/src/uncategorized/reHGReplacement.tw b/src/uncategorized/reHGReplacement.tw index 222baddc98d7413258e861cbecbad108e6d4fe76..16bfd57d6d613cc01d76fbafadc7fc3ffcf0443a 100644 --- a/src/uncategorized/reHGReplacement.tw +++ b/src/uncategorized/reHGReplacement.tw @@ -39,7 +39,7 @@ When $HeadGirl.slaveName leaves, $he clears $his throat nervously. $He gathers $ <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Let your Head Girl sort this out however she sees fit">> +<br><<link "Let your Head Girl sort this out however _he2 sees fit">> <<EventNameDelink $activeSlave>> <<replace "#result">> <<run Enunciate($HeadGirl)>> diff --git a/src/uncategorized/reLegendaryBalls.tw b/src/uncategorized/reLegendaryBalls.tw index 89df4c600c16239deea5c577086a112839f92cfb..3dc3acc512cb15e9790347e6316ce603a479fd26 100644 --- a/src/uncategorized/reLegendaryBalls.tw +++ b/src/uncategorized/reLegendaryBalls.tw @@ -7,22 +7,23 @@ <<goto "RIE Eligibility Check">> <<else>> +<<setLocalPronouns $activeSlave>> <<set $activeSlave.devotion += 4>> -<<EventNameLink $activeSlave>> is an incredible producer of cum. She's producing in volumes that would have been unthinkable in the days when it was illegal to restrain a slave so that she could have every drop of her ejaculate milked out by a machine. A nascent slave stock organization will be holding a public livestock show tomorrow, and since they're aware you're experimenting with cockmilking, they've sent you an invitation to enter an especially productive slave to be judged. +<<EventNameLink $activeSlave>> is an incredible producer of cum. $He's producing in volumes that would have been unthinkable in the days when it was illegal to restrain a slave so that $he could have every drop of $his ejaculate milked out by a machine. A nascent slave stock organization will be holding a public livestock show tomorrow, and since they're aware you're experimenting with cockmilking, they've sent you an invitation to enter an especially productive slave to be judged. <br><br> -This is a rare opportunity. The idea of cockmilking is new and understandably fascinating to many, so the livestock show is likely to draw some serious press. Were $activeSlave.slaveName to win, she would probably be remembered for a long time as a special slave. +This is a rare opportunity. The idea of cockmilking is new and understandably fascinating to many, so the livestock show is likely to draw some serious press. Were $activeSlave.slaveName to win, $he would probably be remembered for a long time as a special slave. <br><br> <span id="result"> -<<link "Fairly enter her in the livestock show">> +<<link "Fairly enter $him in the livestock show">> <<EventNameDelink $activeSlave>> <<if random(1,100) > 90>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. It's likely there was some bribery behind the scenes, but her massive junk wins the day. Against all odds she is named best in show, and will be @@.green;remembered@@ as cock stock of the highest pedigree. As her owner, your reputation has @@.green;also increased.@@ + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. It's likely there was some bribery behind the scenes, but $his massive junk wins the day. Against all odds $he is named best in show, and will be @@.green;remembered@@ as cock stock of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ <<set $rep += 100>> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "She is remembered for winning best in show as a cockmilker.">> @@ -31,7 +32,7 @@ This is a rare opportunity. The idea of cockmilking is new and understandably fa <</replace>> <<else>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. It's likely there was some bribery behind the scenes, and it is fatal to her chances of winning. Though her junk is easily the most impressive on display, another stock owner who was more open-handed with the judges took best in show. The public is impressed with $activeSlave.slaveName's nuts anyway; as you are her owner, your reputation has @@.green;increased@@ a little. + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. It's likely there was some bribery behind the scenes, and it is fatal to $his chances of winning. Though $his junk is easily the most impressive on display, another stock owner who was more open-handed with the judges took best in show. The public is impressed with $activeSlave.slaveName's nuts anyway; as you are $his owner, your reputation has @@.green;increased@@ a little. <<set $rep += 100>> <</replace>> <</if>> @@ -40,7 +41,7 @@ This is a rare opportunity. The idea of cockmilking is new and understandably fa <<EventNameDelink $activeSlave>> <<if random(1,100) > 50>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. Several of the judges cannot resist giving you a wink as they look her over. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as cock stock of the highest pedigree. As her owner, your reputation has @@.green;also increased.@@ + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. Several of the judges cannot resist giving you a wink as they look $him over. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as cock stock of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 5000>> <<set $rep += 100>> <<set $activeSlave.prestige = 1>> @@ -50,7 +51,7 @@ This is a rare opportunity. The idea of cockmilking is new and understandably fa <</replace>> <<else>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. Several of the judges cannot resist giving you a wink as they look her over, but others look disapprovingly at them; it seems some of your competitors also forwarded money to the committee. After furious wrangling, $activeSlave.slaveName loses to another milker. The public is impressed with $activeSlave.slaveName's balls anyway; as you are her owner, your reputation has @@.green;increased@@ a little. + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. Several of the judges cannot resist giving you a wink as they look $him over, but others look disapprovingly at them; it seems some of your competitors also forwarded money to the committee. After furious wrangling, $activeSlave.slaveName loses to another milker. The public is impressed with $activeSlave.slaveName's balls anyway; as you are $his owner, your reputation has @@.green;increased@@ a little. <<set $cash -= 5000>> <<set $rep += 100>> <</replace>> @@ -60,7 +61,7 @@ This is a rare opportunity. The idea of cockmilking is new and understandably fa <<EventNameDelink $activeSlave>> <<if random(1,100) > 10>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. After she's put through her paces, the most unfortunate series of accidents somehow befalls her fellow cows. One is taken ill, another seems drugged, and someone seems to have slipped a finger of raw ginger up another's urethra, making her whine and squeal when cockmilked. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as cock stock of the highest pedigree. As her owner, your reputation has @@.green;also increased.@@ + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly cockmilked. After $he's put through $his paces, the most unfortunate series of accidents somehow befalls $his fellow cows. One is taken ill, another seems drugged, and someone seems to have slipped a finger of raw ginger up another's urethra, making them whine and squeal when cockmilked. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as cock stock of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 10000>> <<set $rep += 100>> <<set $activeSlave.prestige = 1>> @@ -79,4 +80,3 @@ This is a rare opportunity. The idea of cockmilking is new and understandably fa </span> <</if>> /* closes validity check */ - diff --git a/src/uncategorized/reLegendaryCow.tw b/src/uncategorized/reLegendaryCow.tw index 2aacc1319de6fd857a1adb8f257259172bd7dfd1..3bbb5cbb6141bf7cf2f11bb9b5b9b47fb695ce77 100644 --- a/src/uncategorized/reLegendaryCow.tw +++ b/src/uncategorized/reLegendaryCow.tw @@ -7,22 +7,23 @@ <<goto "RIE Eligibility Check">> <<else>> +<<setLocalPronouns $activeSlave>> <<set $activeSlave.devotion += 4>> -<<EventNameLink $activeSlave>> is an incredible producer of milk. She's lactating in volumes that would have been unthinkable in the days when drug treatments were limited by consent. A nascent slave dairy trade organization will be holding a public stock show tomorrow, and since they're aware you keep cows, they've sent you an invitation to enter stock to be judged. +<<EventNameLink $activeSlave>> is an incredible producer of milk. $He's lactating in volumes that would have been unthinkable in the days when drug treatments were limited by consent. A nascent slave dairy trade organization will be holding a public stock show tomorrow, and since they're aware you keep cows, they've sent you an invitation to enter stock to be judged. <br><br> -This is a rare opportunity. The idea of human dairy is new and understandably fascinating to many, so the stock show is likely to draw some serious press. Were $activeSlave.slaveName to win, she would probably be remembered for a long time as a special cow. +This is a rare opportunity. The idea of human dairy is new and understandably fascinating to many, so the stock show is likely to draw some serious press. Were $activeSlave.slaveName to win, $he would probably be remembered for a long time as a special cow. <br><br> <span id="result"> -<<link "Fairly enter her in the stock show">> +<<link "Fairly enter $him in the stock show">> <<EventNameDelink $activeSlave>> <<if random(1,100) > 90>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. It's likely there was some bribery behind the scenes, but her massive tits win the day. Against all odds she is named best in show, and will be @@.green;remembered@@ as dairy stock of the highest pedigree. As her owner, your reputation has @@.green;also increased.@@ + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. It's likely there was some bribery behind the scenes, but $his massive tits win the day. Against all odds $he is named best in show, and will be @@.green;remembered@@ as dairy stock of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ <<set $rep += 100>> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "She is remembered for winning best in show as a dairy cow.">> @@ -31,7 +32,7 @@ This is a rare opportunity. The idea of human dairy is new and understandably fa <</replace>> <<else>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. It's likely there was some bribery behind the scenes, and it is fatal to her chances of winning. Though her tits are easily the most impressive on display, another stock owner who was more open-handed with the judges took best in show. The public is impressed with $activeSlave.slaveName's tits anyway; as you are her owner, your reputation has @@.green;increased@@ a little. + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. It's likely there was some bribery behind the scenes, and it is fatal to $his chances of winning. Though $his tits are easily the most impressive on display, another stock owner who was more open-handed with the judges took best in show. The public is impressed with $activeSlave.slaveName's tits anyway; as you are $his owner, your reputation has @@.green;increased@@ a little. <<set $rep += 100>> <</replace>> <</if>> @@ -40,7 +41,7 @@ This is a rare opportunity. The idea of human dairy is new and understandably fa <<EventNameDelink $activeSlave>> <<if random(1,100) > 50>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. Several of the judges cannot resist giving you a wink as they look her over. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as dairy stock of the highest pedigree. As her owner, your reputation has @@.green;also increased.@@ + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. Several of the judges cannot resist giving you a wink as they look $him over. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as dairy stock of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 5000>> <<set $rep += 100>> <<set $activeSlave.prestige = 1>> @@ -50,7 +51,7 @@ This is a rare opportunity. The idea of human dairy is new and understandably fa <</replace>> <<else>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. Several of the judges cannot resist giving you a wink as they look her over, but others look disapprovingly at them; it seems some of your competitors also forwarded money to the committee. After furious wrangling, $activeSlave.slaveName loses to another cow. The public is impressed with $activeSlave.slaveName's tits anyway; as you are her owner, your reputation has @@.green;increased@@ a little. + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. Several of the judges cannot resist giving you a wink as they look $him over, but others look disapprovingly at them; it seems some of your competitors also forwarded money to the committee. After furious wrangling, $activeSlave.slaveName loses to another cow. The public is impressed with $activeSlave.slaveName's tits anyway; as you are $his owner, your reputation has @@.green;increased@@ a little. <<set $cash -= 5000>> <<set $rep += 100>> <</replace>> @@ -60,7 +61,7 @@ This is a rare opportunity. The idea of human dairy is new and understandably fa <<EventNameDelink $activeSlave>> <<if random(1,100) > 10>> <<replace "#result">> - $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. After she's put through her paces, the most unfortunate series of accidents somehow befalls her fellow cows. One is taken ill, another seems drugged, and someone seems to have slipped a finger of raw ginger up another's ass, making her whine and squeal constantly. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as dairy stock of the highest pedigree. As her owner, your reputation has @@.green;also increased.@@ + $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then publicly milked. After $he's put through $his paces, the most unfortunate series of accidents somehow befalls $his fellow cows. One is taken ill, another seems drugged, and someone seems to have slipped a finger of raw ginger up another's ass, making them whine and squeal constantly. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as dairy stock of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 10000>> <<set $rep += 100>> <<set $activeSlave.prestige = 1>> @@ -79,4 +80,3 @@ This is a rare opportunity. The idea of human dairy is new and understandably fa </span> <</if>> /* closes validity check */ - diff --git a/src/uncategorized/reLegendaryEntertainer.tw b/src/uncategorized/reLegendaryEntertainer.tw index 5a7a369eb0f86d9f2ab3b30827d82d3e96c6a5f7..fc52eb1642f82307a8060242e26eb6fc94882d7e 100644 --- a/src/uncategorized/reLegendaryEntertainer.tw +++ b/src/uncategorized/reLegendaryEntertainer.tw @@ -7,29 +7,30 @@ <<goto "RIE Eligibility Check">> <<else>> +<<setLocalPronouns $activeSlave>> <<set $activeSlave.devotion += 4>> -The Free Cities fashion scene extends to slave bodies, of course; stopping at mere clothes and behaviors is an old world conceit. This week, <<EventNameLink $activeSlave>> is in vogue. Such a crowd of gawkers and hangers-on follows her around the club that the fine citizens who have a chance at an hour of her time must shoulder their way through the throng. +The Free Cities fashion scene extends to slave bodies, of course; stopping at mere clothes and behaviors is an old world conceit. This week, <<EventNameLink $activeSlave>> is in vogue. Such a crowd of gawkers and hangers-on follows $him around the club that the fine citizens who have a chance at an hour of $his time must shoulder their way through the throng. <br><br> -This is a rare opportunity. Such popularity and fame is here today, and gone tomorrow. It might be possible, with a serious investment of funds in publicity, to really fix her in the public mind as a courtesan of note. There's no guarantee of success, but if you are successful, her value will increase a great deal. +This is a rare opportunity. Such popularity and fame is here today, and gone tomorrow. It might be possible, with a serious investment of funds in publicity, to really fix $him in the public mind as a courtesan of note. There's no guarantee of success, but if you are successful, $his value will increase a great deal. <br><br> <span id="result"> -<<link "Just capitalize on her popularity as it is">> +<<link "Just capitalize on $his popularity as it is">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You decide to limit your advantage on her temporary popularity to a little publicity and some advertising. You've gained a little @@.green;notoriety.@@ + You decide to limit your advantage on $his temporary popularity to a little publicity and some advertising. You've gained a little @@.green;notoriety.@@ <<set $rep += 200>> <</replace>> <</link>> -<br><<link "Invest <<print cashFormat(5000)>> in her image">> +<br><<link "Invest <<print cashFormat(5000)>> in $his image">> <<EventNameDelink $activeSlave>> <<if random(1,100) > 50>> <<replace "#result">> - You buy media coverage of her, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review her gentle caresses. Your efforts are a success. Her current extreme popularity will fade in time, but you have managed to arrange for her a permanent place as a @@.green;respected and famous courtesan.@@ As her owner, your reputation has @@.green;also increased.@@ + You buy media coverage of $him, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review $his gentle caresses. Your efforts are a success. $His current extreme popularity will fade in time, but you have managed to arrange for $him a permanent place as a @@.green;respected and famous courtesan.@@ As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 5000>> <<set $rep += 200>> <<if $activeSlave.prestige <= 1>> @@ -41,17 +42,17 @@ This is a rare opportunity. Such popularity and fame is here today, and gone tom <</replace>> <<else>> <<replace "#result">> - You buy media coverage of her, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review her gentle caresses. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As her owner, your reputation has @@.green;increased,@@ but in a week she'll be forgotten. + You buy media coverage of $him, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review $his gentle caresses. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As $his owner, your reputation has @@.green;increased,@@ but in a week $he'll be forgotten. <<set $cash -= 5000>> <<set $rep += 200>> <</replace>> <</if>> <</link>> -<br><<link "Lavish <<print cashFormat(10000)>> on her fame">> +<br><<link "Lavish <<print cashFormat(10000)>> on $his fame">> <<EventNameDelink $activeSlave>> <<if random(1,100) > 10>> <<replace "#result">> - You buy prime media coverage of her, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review her gentle caresses. Your efforts are a success. Her current extreme popularity will fade in time, but you have managed to arrange for her a permanent place as a @@.green;respected and famous courtesan.@@ As her owner, your reputation has @@.green;also increased.@@ + You buy prime media coverage of $him, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review $his gentle caresses. Your efforts are a success. $His current extreme popularity will fade in time, but you have managed to arrange for $him a permanent place as a @@.green;respected and famous courtesan.@@ As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 10000>> <<set $rep += 400>> <<if $activeSlave.prestige <= 1>> @@ -63,7 +64,7 @@ This is a rare opportunity. Such popularity and fame is here today, and gone tom <</replace>> <<else>> <<replace "#result">> - You buy prime media coverage of her, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review her gentle caresses. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As her owner, your reputation has @@.green;increased,@@ but in a week she'll be forgotten. + You buy prime media coverage of $him, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review $his gentle caresses. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As $his owner, your reputation has @@.green;increased,@@ but in a week $he'll be forgotten. <<set $cash -= 10000>> <<set $rep += 400>> <</replace>> diff --git a/src/uncategorized/reLegendaryWhore.tw b/src/uncategorized/reLegendaryWhore.tw index bbabccf43189bc8e49aa8082843ac7cc0a7058c3..eb794180b0fdd18664ad5a79125308dec1bbff02 100644 --- a/src/uncategorized/reLegendaryWhore.tw +++ b/src/uncategorized/reLegendaryWhore.tw @@ -7,30 +7,31 @@ <<goto "RIE Eligibility Check">> <<else>> +<<setLocalPronouns $activeSlave>> <<set $activeSlave.devotion += 4>> -The Free Cities red light areas are so overcharged with cheap and easy sex that the fashion in whores is comically unstable. This week, <<EventNameLink $activeSlave>> is in vogue. So many customers are interested in renting her body that it's necessary to assign other girls to take some of the load off her by diverting less important customers away from her. +The Free Cities red light areas are so overcharged with cheap and easy sex that the fashion in whores is comically unstable. This week, <<EventNameLink $activeSlave>> is in vogue. So many customers are interested in renting $his body that it's necessary to assign other whores to take some of the load off $him by diverting less important customers away from $him. <br><br> -This is a rare opportunity. Such popularity and fame is here today, and gone tomorrow. It might be possible, with a serious investment of funds in publicity, to really fix her in the public mind as a whore of note. There's no guarantee of success, but if you are successful, her value will increase a great deal. +This is a rare opportunity. Such popularity and fame is here today, and gone tomorrow. It might be possible, with a serious investment of funds in publicity, to really fix $him in the public mind as a whore of note. There's no guarantee of success, but if you are successful, $his value will increase a great deal. <br><br> <span id="result"> -<<link "Just capitalize on her popularity as it is">> +<<link "Just capitalize on $his popularity as it is">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You decide to limit your advantage on her temporary popularity to a little marketing and some minor price increases. You've made some unexpected @@.yellowgreen;profits,@@ and gained a little @@.green;notoriety.@@ + You decide to limit your advantage on $his temporary popularity to a little marketing and some minor price increases. You've made some unexpected @@.yellowgreen;profits,@@ and gained a little @@.green;notoriety.@@ <<set $cash += 1000>> <<set $rep += 100>> <</replace>> <</link>> -<br><<link "Invest <<print cashFormat(5000)>> in her notoriety">> +<br><<link "Invest <<print cashFormat(5000)>> in $his notoriety">> <<EventNameDelink $activeSlave>> <<if random(1,100) > 50>> <<replace "#result">> - You buy media coverage of her, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review her many delights. Your efforts are a success. Her current extreme popularity will fade in time, but you have managed to arrange for her a permanent place as a @@.green;notorious and very popular prostitute.@@ As her owner, your reputation has @@.green;also increased.@@ + You buy media coverage of $him, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review $his many delights. Your efforts are a success. $His current extreme popularity will fade in time, but you have managed to arrange for $him a permanent place as a @@.green;notorious and very popular prostitute.@@ As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 5000>> <<set $rep += 100>> <<set $activeSlave.prestige = 1>> @@ -40,17 +41,17 @@ This is a rare opportunity. Such popularity and fame is here today, and gone tom <</replace>> <<else>> <<replace "#result">> - You buy media coverage of her, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review her many delights. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As her owner, your reputation has @@.green;increased,@@ but in a week she'll be forgotten. + You buy media coverage of $him, invest in an ad campaign, and even arrange for persons of influence and taste to sample and review $his many delights. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As $his owner, your reputation has @@.green;increased,@@ but in a week she'll be forgotten. <<set $cash -= 5000>> <<set $rep += 100>> <</replace>> <</if>> <</link>> -<br><<link "Lavish <<print cashFormat(10000)>> on her fame">> +<br><<link "Lavish <<print cashFormat(10000)>> on $his fame">> <<EventNameDelink $activeSlave>> <<if random(1,100) > 10>> <<replace "#result">> - You buy prime media coverage of her, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review her many delights. Your efforts are a success. Her current extreme popularity will fade in time, but you have managed to arrange for her a permanent place as a @@.green;notorious and very popular prostitute.@@ As her owner, your reputation has @@.green;also increased.@@ + You buy prime media coverage of $him, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review $his many delights. Your efforts are a success. $His current extreme popularity will fade in time, but you have managed to arrange for $him a permanent place as a @@.green;notorious and very popular prostitute.@@ As $his owner, your reputation has @@.green;also increased.@@ <<set $cash -= 10000>> <<set $rep += 200>> <<set $activeSlave.prestige = 1>> @@ -60,7 +61,7 @@ This is a rare opportunity. Such popularity and fame is here today, and gone tom <</replace>> <<else>> <<replace "#result">> - You buy prime media coverage of her, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review her many delights. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As her owner, your reputation has @@.green;increased,@@ but in a week she'll be forgotten. + You buy prime media coverage of $him, invest in a lavish ad campaign, and even arrange for persons of great influence and fine taste to sample and review $his many delights. Unfortunately, popularity remains an art, not a science; though you do your best, the public mind's fancy eludes your grasp. As $his owner, your reputation has @@.green;increased,@@ but in a week she'll be forgotten. <<set $cash -= 10000>> <<set $rep += 200>> <</replace>> @@ -69,4 +70,3 @@ This is a rare opportunity. Such popularity and fame is here today, and gone tom </span> <</if>> /* closes validity check */ - diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw index 523acfde850b47744fd091732038d2b249dd3250..c42ef836ea8735ef12e46598cc66e10a4d3c2c88 100644 --- a/src/uncategorized/reMalefactor.tw +++ b/src/uncategorized/reMalefactor.tw @@ -603,17 +603,17 @@ She is easily taken into custody and her contraband confiscated once the jeering <<replace "#result">> <<switch $malefactor>> <<case "addict">> - You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as she begins begging for a fix. Then it's off to slave markets for sale. + You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as $he begins begging for a fix. Then it's off to slave markets for sale. <<case "escapee">> - You complete the legalities and biometric scanning quickly and without fuss. She remains limp throughout the process, only recovering enough to barely grasp the situation as she is enslaved and heading to the slave markets. + You complete the legalities and biometric scanning quickly and without fuss. $He remains limp throughout the process, only recovering enough to barely grasp the situation as $he is enslaved and heading to the slave markets. <<case "orphanloli">> - You complete the legalities and biometric scanning quickly and without fuss. She sobs throughout the process, though stops once she realizes being a slave means free food. She starts crying again once she realizes she is heading for the slave markets. + You complete the legalities and biometric scanning quickly and without fuss. $He sobs throughout the process, though stops once $he realizes being a slave means free food. $He starts crying again once $he realizes $he is heading for the slave markets. <<case "anchorBaby">> - You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. Her children <<if $cash4Babies == 1>>head off to be sold as well<<else>>will be sent to a slave orphanage for future sale<</if>>. + You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. $His children <<if $cash4Babies == 1>>head off to be sold as well<<else>>will be sent to a slave orphanage for future sale<</if>>. <<case "businesswoman" "mule" "rapist" "whore">> You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. <<case "liberator">> - You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, she could awake at any time. Based on the drone logs, she is likely to be violent when she does. You make sure that she isn't going to get loose as $he is sent off to the slave market; the public would not be pleased if she went on another rampage. + You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, $he could awake at any time. Based on the drone logs, $he is likely to be violent when $he does. You make sure that $he isn't going to get loose as $he is sent off to the slave market; the public would not be pleased if $he went on another rampage. <</switch>> <</replace>> <</link>> diff --git a/src/uncategorized/reMilfTourist.tw b/src/uncategorized/reMilfTourist.tw index 6524956b007e213901139f52aa5157ca032a6a14..194dc3813c4f651fdd7080d141b5b3cb27d23da0 100644 --- a/src/uncategorized/reMilfTourist.tw +++ b/src/uncategorized/reMilfTourist.tw @@ -42,7 +42,7 @@ <<else>> $assistantAppearance avatar <</if>> - appears on your desk in the middle of the day. "Something unusual for you, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says. "_milfSlave.slaveName is out doing public service. A tourist from the old world accosted $him. _milfSlave.slaveName thought _he2 was a rich citizen who wanted to fuck $him, but it turns out _he2 just wanted a tour guide. It was a reasonable mistake; _he2 seems wealthy. _milfSlave.slaveName has been showing _him2 around for the last half hour. Now _he2's asked _milfSlave.slaveName if _he2 can meet you." She displays a video feed showing _milfSlave.slaveName standing with the tourist in question out on the main plaza. _He2's just into middle age, and extremely plush, wearing Capri pants over _his2 motherly hips and a cashmere sweater that understates _his2 generous bust. _He2's blushing as _he2 asks _milfSlave.slaveName a discreet question about public sex in the arcology, brought on by the sight of a couple of citizens spit roasting a slave. Your personal assistant's avatar + appears on your desk in the middle of the day. "Something unusual for you, <<= properTitle()>>," she says. "_milfSlave.slaveName is out doing public service. A tourist from the old world accosted $him. _milfSlave.slaveName thought _he2 was a rich citizen who wanted to fuck $him, but it turns out _he2 just wanted a tour guide. It was a reasonable mistake; _he2 seems wealthy. _milfSlave.slaveName has been showing _him2 around for the last half hour. Now _he2's asked _milfSlave.slaveName if _he2 can meet you." She displays a video feed showing _milfSlave.slaveName standing with the tourist in question out on the main plaza. _He2's just into middle age, and extremely plush, wearing Capri pants over _his2 motherly hips and a cashmere sweater that understates _his2 generous bust. _He2's blushing as _he2 asks _milfSlave.slaveName a discreet question about public sex in the arcology, brought on by the sight of a couple of citizens spit roasting a slave. Your personal assistant's avatar <<switch $assistantAppearance>> <<case "monstergirl">> bares her fangs and makes pinching gestures at nipple height. @@ -78,7 +78,7 @@ reforms into an exaggerated female form before going back to its normal symbol shape. <</switch>> <<else>> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> gets your attention the middle of the day. "A minor matter for you, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says. "_milfSlave.slaveName is currently performing public service. A tourist from the old world accosted $him. _milfSlave.slaveName thought _he2 was a rich citizen who wanted to have sex with $him, but it seems _he2 just wanted a tour guide. It was a reasonable mistake; the tourist appears wealthy. _milfSlave.slaveName has been acting as _his2 guide for the last half hour. The tourist has asked _milfSlave.slaveName if _he2 can meet you." She displays a video feed showing _milfSlave.slaveName standing with the tourist in question out on the main plaza. _He2's just into middle age, and extremely plush, wearing Capri pants over _his2 motherly hips and a cashmere sweater that understates _his2 generous bust. _He2's blushing as _he2 asks _milfSlave.slaveName a discreet question about public sex in the arcology, brought on by the sight of a couple of citizens spit roasting a slave. + <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> gets your attention the middle of the day. "A minor matter for you, <<= properTitle()>>," she says. "_milfSlave.slaveName is currently performing public service. A tourist from the old world accosted $him. _milfSlave.slaveName thought _he2 was a rich citizen who wanted to have sex with $him, but it seems _he2 just wanted a tour guide. It was a reasonable mistake; the tourist appears wealthy. _milfSlave.slaveName has been acting as _his2 guide for the last half hour. The tourist has asked _milfSlave.slaveName if _he2 can meet you." She displays a video feed showing _milfSlave.slaveName standing with the tourist in question out on the main plaza. _He2's just into middle age, and extremely plush, wearing Capri pants over _his2 motherly hips and a cashmere sweater that understates _his2 generous bust. _He2's blushing as _he2 asks _milfSlave.slaveName a discreet question about public sex in the arcology, brought on by the sight of a couple of citizens spit roasting a slave. <</if>> <br><br> diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index 4ddb918dd86790d9ec63193924415f8bb77ee063..b5fb72101a06f7db29fa731d997a87f409863c23 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -817,7 +817,7 @@ <<case "implants">> <<set $nickname = either("'Balloons'", "'Blowup Doll'", "'Bolted-On'", "'Enhanced'", "'Fake'", "'Implants'", "'Plastic'", "'Plastique'", "'Silicone'")>> <<set $situationDesc = "is full of breast implants. They're so large it's quite obvious they're fake, and the implications are clear: $He's a plastic slut, and the other slaves never tire of letting $him know it.">> - <<set $applyDesc = "accepts the implicit mockery, knowing that $his bimbo-esque body is what appeals to <<if def $PC.customTitle>>$his $PC.customTitle<<elseif $PC.title != 0>>$his master<<else>>$his mistress<</if>>.">> + <<set $applyDesc = "accepts the implicit mockery, knowing that $his bimbo-esque body is what appeals to $his <<= WrittenMaster($activeSlave)>>.">> <<set $notApplyDesc = "is relieved to be protected from the other slaves' mockery over $his implants, though $he's also a little sad $he can't take them as a kind of trademark.">> <<case "bimbo">> diff --git a/src/uncategorized/rePokerNight.tw b/src/uncategorized/rePokerNight.tw index bd056902763bbeaee492df1200ba04b73fe97560..09c215ac4291e335911dc522256b87a1519db7d5 100644 --- a/src/uncategorized/rePokerNight.tw +++ b/src/uncategorized/rePokerNight.tw @@ -8,7 +8,7 @@ Despite their persistent presence in your arcology, interaction with your mercen On a particularly lackadaisical evening, you find yourself alerted to a message alert by $assistantName. <<if $assistant > 0>> - "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, a message from your $mercenariesTitle." She pauses before continuing. "It seems they're asking if you'd like to join their poker night." + "<<= properMaster()>>, a message from your $mercenariesTitle." She pauses before continuing. "It seems they're asking if you'd like to join their poker night." <<else>> It informs you that the $mercenariesTitle have sent a message asking you to join them at their poker night. <</if>> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index 3a3807da837a33bbed6e507380bcf9cce1be6664..613fc6e3bebe1552b60e8f0cd763497d4f96c82e 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -2025,29 +2025,30 @@ <</switch>> <<setLocalPronouns $activeSlave>> +<<setAssistantPronouns>> <<switch $recruit>> <<case "female recruit">> <<setLocalPronouns $HeadGirl 2>> -Your head girl sends you a discreet message that _he2 may have found a slave for you. $HeadGirl.slaveName duly ushers a girl into your office. $He looks very young, like a dissolute party girl. $He bites $his lip nervously when $he sees you, and looks to $HeadGirl.slaveName for guidance. $HeadGirl.slaveName nods at $him reassuringly, so $he explains $himself. +Your Head Girl sends you a discreet message that _he2 may have found a slave for you. $HeadGirl.slaveName duly ushers a girl into your office. $He looks very young, like a dissolute party girl. $He bites $his lip nervously when $he sees you, and looks to $HeadGirl.slaveName for guidance. $HeadGirl.slaveName nods at $him reassuringly, so $he explains $himself. <br><br> -"<<= properTitle()>>, my name is $activeSlave.slaveName. I'm, um, bored, I guess. I go to clubs and get drunk and fuck guys and it's just kinda boring. I thought it would be different when I turned <<print $activeSlave.actualAge>>, but that was a couple months ago and, well, nothing's different. I saw $HeadGirl.slaveName and _he2 was just so graceful and beautiful and _he2 seemed so confident in what _he2 was doing and who _he2 was and I talked to _him2 and _he2 said _he2 was your head girl and... I want to be like _him2. Can I be your slave? I'd be good, I'm good at sucking dicks and stuff." $He seems to be a little naïve about sexual slavery, but there's no need to tell $him that. +"<<= properTitle()>>, my name is $activeSlave.slaveName. I'm, um, bored, I guess. I go to clubs and get drunk and fuck guys and it's just kinda boring. I thought it would be different when I turned <<print $activeSlave.actualAge>>, but that was a couple months ago and, well, nothing's different. I saw $HeadGirl.slaveName and _he2 was just so graceful and beautiful and _he2 seemed so confident in what _he2 was doing and who _he2 was and I talked to _him2 and _he2 said _he2 was your Head Girl and... I want to be like _him2. Can I be your slave? I'd be good, I'm good at sucking dicks and stuff." $He seems to be a little naïve about sexual slavery, but there's no need to tell $him that. <<case "male recruit">> <<setLocalPronouns $HeadGirl 2>> -Your head girl sends you a discreet message that _he2 may have found a slave for you. $HeadGirl.slaveName duly ushers an androgynous young person into your office. $He's dressed as a girl and acts like one. $He looks very young, like a dissolute party girl. $He bites $his lip nervously when $he sees you, and looks to $HeadGirl.slaveName for guidance. $HeadGirl.slaveName nods at $him reassuringly, so $he explains $himself. +Your Head Girl sends you a discreet message that _he2 may have found a slave for you. $HeadGirl.slaveName duly ushers an androgynous young person into your office. $He's dressed as a girl and acts like one. $He looks very young, like a dissolute party girl. $He bites $his lip nervously when $he sees you, and looks to $HeadGirl.slaveName for guidance. $HeadGirl.slaveName nods at $him reassuringly, so $he explains $himself. <br><br> -"<<= properTitle()>>, my name is $activeSlave.slaveName. I'm, um, bored, I guess. I go to clubs and get drunk and fuck guys and it's just kinda boring. I thought it would be different when I turned <<print $activeSlave.actualAge>>, but that was a couple months ago and, well, nothing's different. I saw $HeadGirl.slaveName and _he2 was just so beautiful and has a dick like me and _he2 seemed so confident in what _he2 was doing and who _he2 was and I talked to _him2 and _he2 said _he2 was your head girl and... I want to be like _him2. Can I be your slave? I'd be good, I'm good at sucking dicks." $He seems to be a little naïve about sexual slavery, but there's no need to tell $him that. +"<<= properTitle()>>, my name is $activeSlave.slaveName. I'm, um, bored, I guess. I go to clubs and get drunk and fuck guys and it's just kinda boring. I thought it would be different when I turned <<print $activeSlave.actualAge>>, but that was a couple months ago and, well, nothing's different. I saw $HeadGirl.slaveName and _he2 was just so beautiful and has a dick like me and _he2 seemed so confident in what _he2 was doing and who _he2 was and I talked to _him2 and _he2 said _he2 was your Head Girl and... I want to be like _him2. Can I be your slave? I'd be good, I'm good at sucking dicks." $He seems to be a little naïve about sexual slavery, but there's no need to tell $him that. <<case "whore recruit">> <<setLocalPronouns $HeadGirl 2>> -Your head girl sends you a discreet message that _he2 may have found a slave for you. $HeadGirl.slaveName duly ushers a working girl into your office. $He looks like a classic street hooker, and $he's clearly had a rough time recently. $He needs no prompting to explain $himself, and $he does so without embarrassment. +Your Head Girl sends you a discreet message that _he2 may have found a slave for you. $HeadGirl.slaveName duly ushers a working girl into your office. $He looks like a classic street hooker, and $he's clearly had a rough time recently. $He needs no prompting to explain $himself, and $he does so without embarrassment. <br><br> "<<= properTitle()>>, my name is $activeSlave.slaveName. I'm a street whore. Working girls get to know each other, so I know $HeadGirl.slaveName pretty well. I've been having a bad time on the streets, and last night a john beat on me pretty good. I'm broke and I'm sick of this. Being free isn't worth shit. $HeadGirl.slaveName likes you and _he2 seems to do OK. So, can I be your slave? I'm a good bet, <<= properTitle()>>. I'd be happy enough working for you as a slave whore if you keep me healthy and safe, and I'm a good fuck." @@ -2098,7 +2099,7 @@ One of your tenants asks for an interview. He's an effeminate young man; it seem A young slave is going door to door offering $himself for sale on behalf of $his owner. It's rare to see a slave obedient enough to be entrusted with $his own sale, and $he's interesting, so you let $him up. $He stands in front of your desk and waits for instructions. $He's wearing a very skimpy schoolgirl skirt and a white blouse so tight and brief that the tops of $his areolae are visible. The badge on $his blouse identifies $him as a product of one of the Free Cities' legal slave orphanages. You instruct $him to tell you about $himself. <br><br> -"I was raised and trained by a slave orphanage, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. It is not legal to own underage <<= $girl>>s, but it is legal to charge an orphan for the costs of raising $him when $he reaches $minimumSlaveAge, and those debts are always high enough to enslave $him. My <<print $activeSlave.actualAge>>th birthday was yesterday, <<if $activeSlave.actualAge == $minimumSlaveAge>>so I am a slave and for sale now<<else>>so I'm too old to stay at the orphanage any longer<</if>>." +"I was raised and trained by a slave orphanage, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. It is not legal to own underage <<= $girl>>s, but it is legal to charge an orphan for the costs of raising $him when $he reaches $minimumSlaveAge, and those debts are always high enough to enslave $him. My <<= ordinalSuffix($activeSlave.actualAge)>> birthday was yesterday, <<if $activeSlave.actualAge == $minimumSlaveAge>>so I am a slave and for sale now<<else>>so I'm too old to stay at the orphanage any longer<</if>>." <br><br> "I have been trained for obedience since I came to the orphanage. At <<print Math.min(14, $activeSlave.actualAge - 4)>> they put me on drugs to make sure I'd grow nice T&A. On my <<print Math.min(16, $activeSlave.actualAge - 2)>>th birthday I got my first set of implants. Every time my boobs got used to the implants, I got sent in for a bigger set. I'm on my second set." $He unbuttons $his blouse and displays a pair of big fake tits. "I've also had my lips done." $He blows you a wet kiss. <br><br> @@ -2112,7 +2113,7 @@ $He hikes up $his skirt and spins around slowly. "The drugs also made my butt bi A young slave is going door to door offering $himself for sale on behalf of $his owner. It's rare to see a slave obedient enough to be entrusted with $his own sale, and $he's interesting, so you let $him up. $He stands in front of your desk and waits for instructions. $He's wearing a very skimpy schoolgirl skirt and a white blouse so tight and brief that the tops of $his areolae are visible. Something is tenting the front of $his skirt slightly. The badge on $his blouse identifies $him as a product of one of the Free Cities' legal slave orphanages. You instruct $him to tell you about $himself. <br><br> -"I was raised and trained by a slave orphanage, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. It is not legal to own underage <<= $girl>>s, but it is legal to charge an orphan for the costs of raising $him when $he reaches $minimumSlaveAge, and those debts are always high enough to enslave $him. My <<print $activeSlave.actualAge>>th birthday was yesterday, <<if $activeSlave.actualAge == $minimumSlaveAge>>so I am a slave and for sale now<<else>>so I'm too old to stay at the orphanage any longer<</if>>." +"I was raised and trained by a slave orphanage, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>. It is not legal to own underage <<= $girl>>s, but it is legal to charge an orphan for the costs of raising $him when $he reaches $minimumSlaveAge, and those debts are always high enough to enslave $him. My <<= ordinalSuffix($activeSlave.actualAge)>> birthday was yesterday, <<if $activeSlave.actualAge == $minimumSlaveAge>>so I am a slave and for sale now<<else>>so I'm too old to stay at the orphanage any longer<</if>>." <br><br> "I have been trained for obedience since I came to the orphanage. I came as a male, but they reassigned me to female right away. At <<print Math.min(14, $activeSlave.actualAge - 4)>> they put me on drugs to make sure I'd grow nice T&A and look more feminine. Those drugs also stopped my penis from growing much, so it's small, <<= properTitle()>>. On my <<print Math.min(16, $activeSlave.actualAge - 2)>>th birthday I got my first set of implants. Every time my chest got used to the implants, I got sent in for a bigger set. I'm on my third set." $He unbuttons $his blouse and displays a pair of fake tits. <br><br> @@ -2124,7 +2125,7 @@ $He hikes up $his skirt and spins around slowly, displaying a petite, half-hard <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a supplicant has arrived at the door to the penthouse. A constant stream of hopefuls appear at your door, and $assistantName makes herself invaluable by filtering them. One of the few categories of applicant that is always admitted is people willing to be enslaved for some reason; this is just such a $girl. <br><br> -The young girl who is admitted to your office quails a bit at the sight of you, and you believe you can detect a bit of infatuation there, too. You wordlessly query $assistantName, and she turns to the massive task of sorting through arcology records to come up with a possible explanation. Meanwhile, you start interviewing the potential slave. It appears that $he left home, in a settlement near the arcology, right after $his <<print $activeSlave.actualAge>>th birthday and came straight here. $He's no innocent, and not destitute, and you're surprised $he's done something this foolish. +The young girl who is admitted to your office quails a bit at the sight of you, and you believe you can detect a bit of infatuation there, too. You wordlessly query $assistantName, and she turns to the massive task of sorting through arcology records to come up with a possible explanation. Meanwhile, you start interviewing the potential slave. It appears that $he left home, in a settlement near the arcology, right after $his <<= ordinalSuffix($activeSlave.actualAge)>> birthday and came straight here. $He's no innocent, and not destitute, and you're surprised $he's done something this foolish. <br><br> After a short while, your assistant whispers in your earpiece, <<if $assistant == 0>><<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>"Sir<<else>>"Ma'am<</if>>,<<else>>"Sweetheart,<</if>> $he doesn't live here. Look at this." $He pulls up footage of a public event several weeks ago, and the $girl is in the crowd, staring at you with limpid eyes. Rather than confronting $him directly, you probe the subject, and after some evasion $he admits that yes, $he did come here out of infatuation with you. "Pretty fuckin' stupid," $he admits. "But I've come too far now. I just really want to live here. With you, I guess. If that means being your slave, that's okay. Can I be your house servant, maybe?" @@ -2473,7 +2474,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actua <<case "princely betrayal">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness and not someone of high society. This call, as you would expect, is different. The moment the person on the other end introduces themselves you immediately recognize why your assistant brought this to your attention. The caller is the prince of an old world kingdom, contacting you by an untraceable means due of the conspiratorial nature of his proposal. <br><br> @@ -2483,7 +2484,7 @@ He explains that he is the younger of two princes, and is about to carry out a p <<case "forbidden love">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness and not someone of high society. This call, as you would expect, is different. The moment the person on the other end introduces themselves you immediately recognize why your assistant brought this to your attention. The caller is the King of an old world kingdom, contacting you by an untraceable means due of the conspiratorial nature of his proposal. <br><br> @@ -2493,7 +2494,7 @@ He explains that his daughter, the princess, attempted to marry a man of imprope <<case "cleaning house">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, are lucrative deals with powerful individuals. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness and not someone of high society. This call, as you would expect, is different. The moment the person on the other end introduces themselves you immediately recognize why your assistant brought this to your attention. The caller is the King of an old world kingdom, contacting you by an untraceable means due of the conspiratorial nature of his proposal. <br><br> @@ -2558,9 +2559,9 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "rogue cyborg">> With your order received the target quickly seeks you out. After a huge sum of credits changes hands to render it penthouse safe, the legalities and biometric scanning are complete and you are now the proud owner of a cyberloli. <<case "female recruit">> - You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName bounces nervously on $his heels. Finally $he works up $his courage and asks, <<if $HeadGirl.clothes != "no clothing">>"Can I have <<if $HeadGirl.clothes == "choosing her own clothes">>a cute outfit<<else>>$HeadGirl.clothes<</if>> like $HeadGirl.slaveName?"<<else>>"Can I work with $HeadGirl.slaveName?"<</if>> Your sternly tell $him to call you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, to ask questions only with permission, and to strip. $He looks at $HeadGirl.slaveName, but $HeadGirl.slaveName returns $his look with no compassion at all and tells $him to do what you say. Looking suddenly fearful, $activeSlave.slaveName strips. Once your inspection of $his body reaches $his anus, $he becomes suddenly nervous. "A-am I going to have t-to do butt stuff, <<Master>>?" + You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName bounces nervously on $his heels. Finally $he works up $his courage and asks, <<if $HeadGirl.clothes != "no clothing">>"Can I have <<if $HeadGirl.clothes == "choosing her own clothes">>a cute outfit<<else>>$HeadGirl.clothes<</if>> like $HeadGirl.slaveName?"<<else>>"Can I work with $HeadGirl.slaveName?"<</if>> Your sternly tell $him to call you <<= properMaster()>>, to ask questions only with permission, and to strip. $He looks at $HeadGirl.slaveName, but $HeadGirl.slaveName returns $his look with no compassion at all and tells $him to do what you say. Looking suddenly fearful, $activeSlave.slaveName strips. Once your inspection of $his body reaches $his anus, $he becomes suddenly nervous. "A-am I going to have t-to do butt stuff, <<Master>>?" <<case "male recruit">> - You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName bounces nervously on $his heels. Finally $he works up $his courage and asks, <<if $HeadGirl.clothes != "no clothing">>"Can I have <<if $HeadGirl.clothes == "choosing her own clothes">>a cute outfit<<else>>$HeadGirl.clothes<</if>> like $HeadGirl.slaveName?"<<else>>"Can I work with $HeadGirl.slaveName?"<</if>> Your sternly tell $him to call you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, to ask questions only with permission, and to strip. $He looks at $HeadGirl.slaveName, but $HeadGirl.slaveName returns $his look with no compassion at all and tells $him to do what you say. Looking suddenly fearful, $activeSlave.slaveName strips. $His cock is totally flaccid as $he looks at the floor, shivering. Once your inspection of $his body reaches $his anus, $he becomes suddenly nervous. "A-am I going to have t-to do butt stuff, <<Master>>?" + You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName bounces nervously on $his heels. Finally $he works up $his courage and asks, <<if $HeadGirl.clothes != "no clothing">>"Can I have <<if $HeadGirl.clothes == "choosing her own clothes">>a cute outfit<<else>>$HeadGirl.clothes<</if>> like $HeadGirl.slaveName?"<<else>>"Can I work with $HeadGirl.slaveName?"<</if>> Your sternly tell $him to call you <<= properMaster()>>, to ask questions only with permission, and to strip. $He looks at $HeadGirl.slaveName, but $HeadGirl.slaveName returns $his look with no compassion at all and tells $him to do what you say. Looking suddenly fearful, $activeSlave.slaveName strips. $His cock is totally flaccid as $he looks at the floor, shivering. Once your inspection of $his body reaches $his anus, $he becomes suddenly nervous. "A-am I going to have t-to do butt stuff, <<Master>>?" <<case "whore recruit">> You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName participates matter-of-factly, and there's a certain sense of relief about $him. $His fate is out of $his hands now, and you get the impression $he isn't sorry about that at all. <<case "desperate birth">> diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw index cfc86f3135fd15a26bfa361509cd3c1eec9790b7..437ec5667b2eaca103803a5757295be3e898ed20 100644 --- a/src/uncategorized/reShelterInspection.tw +++ b/src/uncategorized/reShelterInspection.tw @@ -1,6 +1,6 @@ :: RE shelter inspection [nobr] -<<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check">> +<<set $nextButton = " ", $nextLink = "RIE Eligibility Check">> <<set $activeSlaveOneTimeMinAge = 36>> <<set $activeSlaveOneTimeMaxAge = 42>> @@ -18,7 +18,7 @@ <<set $activeSlave.origin = "She was once an inspector for the Shelter, but you put a stop to that.">> <<set $activeSlave.career = "a charity worker">> <<set $activeSlave.devotion = random(-90,-75)>> -<<set $activeSlave.trust = random(-75,-60)>> +<<set $activeSlave.trust = random(75,90)>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> <<set $activeSlave.oldTrust = $activeSlave.trust>> <<set $activeSlave.health = random(30,50)>> @@ -41,17 +41,19 @@ <<set $activeSlave.sexualQuirk = either("apathetic", "idealistic")>> <<set _slave = $shelterGirlsIDs.random()>> -<<set $subSlave = getSlave(_slave)>> +<<set _Inspectee = getSlave(_slave)>> +<<set _originSlave = $genePool.find(function(s) { return s.ID == _slave; })>> /* * this check is currently unnecessary but if in the future the shelter girl IDs list is changed to updated only when acquiring shelter girls, this should be enabled * -<<if (ndef $subSlave)>> +<<if (ndef _Inspectee)>> <<set $shelterGirlsIDs.delete(_slave)>> <<goto "Random Nonindividual Event">> <</if>> */ -<<run Enunciate($subSlave)>> +<<run Enunciate(_Inspectee)>> +<<setLocalPronouns _Inspectee>> Your assistant announces a visitor in the entryway of your penthouse, and adds<<if $assistant > 0>> with disapproval<</if>> that it's an inspector from the Slave Shelter. <<if $assistant > 0>> @@ -92,7 +94,7 @@ Your assistant announces a visitor in the entryway of your penthouse, and adds<< Her avatar turns a reproving blue and shrinks a little. <</switch>> <</if>> -Not waiting to be greeted, the inspector looks up at the nearest camera and demands to be let in. She's an older woman with graying hair up in a bun, holding a tablet against her chest like a shield. "I'm here to inspect $subSlave.slaveName," she bellows up at the camera. +Not waiting to be greeted, the inspector looks up at the nearest camera and demands to be let in. She's an older woman with graying hair up in a bun, holding a tablet against her chest like a shield. "I'm here to inspect _originSlave.slaveName,<<if _originSlave.slaveName != _Inspectee.slaveName>> or as you call $him, _Inspectee.slaveName,<</if>>" she bellows up at the camera. <br><br> @@ -100,43 +102,258 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <<link "Amusing. Enslave her">> <<set $cash -= $contractCost>> <<replace "#result">> - <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> ushers her into your penthouse and keeps her busy for the few minutes you need to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing. Fortunately, you're cleverer and richer than most, and you succeed. You have her brought into your office, and you are pleased to see her. She's not young and she's not pretty, but her suit cannot disguise her big bottom, and she's using the tablet she has clasped protectively against her chest to conceal a huge pair of mature breasts. She knows exactly what's happened, and fixes you with a gimlet stare. "In a couple of months," she says with venom, "when you've filled me full of hormones and drugs and training, and I'm begging you to <<if $PC.dick == 1>>stick your tiny little dick up<<else>>fist<</if>> my asshole, remember this. It'll be conditioning and self-preservation and Stockholm Syndrome talking, not me. I think you're a <<if $PC.title == 1>>sad bastard<<else>>vile cunt<</if>>, and I always will." + $assistantName ushers her into your penthouse and keeps her busy for the few minutes you need to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing. Fortunately, you're cleverer and richer than most, and you succeed. You have her brought into your office, and you are pleased to see her. She's not young and she's not pretty, but her suit cannot disguise her big bottom, and she's using the tablet she has clasped protectively against her chest to conceal a huge pair of mature breasts. She knows exactly what's happened, and fixes you with a gimlet stare. "In a couple of months," she says with venom, "when you've filled me full of hormones and drugs and training, and I'm begging you to <<if $PC.dick == 1>>stick your tiny little dick up<<else>>fist<</if>> my asshole, remember this. It'll be conditioning and self-preservation and Stockholm Syndrome talking, not me. I think you're a <<if $PC.title == 1>>sad bastard<<else>>vile cunt<</if>>, and I always will." <<set $shelterAbuse += 10>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ <<include "New Slave Intro">> <</replace>> <</link>> //This will cost <<print cashFormat($contractCost)>>// -<<if ($dairy > 0) && ($dairyRestraintsSetting > 1) && ($subSlave.assignment == "work in the dairy")>> -<br><<link "The slave is attached to a milking machine, and so will be the inspector">> - <<= assignJob($activeSlave, "work in the dairy")>> - <<set $activeSlave.clothes = "no clothing">> - <<set $cash -= $contractCost/2>> +<<if $Bodyguard != 0 || $mercenaries > 1 || ($SF.Toggle && $SF.Active >= 1)>> + <br> [[Escort her off your property.|RE shelter inspection][$InspectionOption = "Escort"]] <<replace "#result">> - $subSlave.slaveName is attached to a milking machine, so it would be extremely unwise to let the inspector report on $subSlave.slaveName's industrial fate in all its gorgeous productivity. So, you greet her politely, and bring her down to $dairyName to show her $subSlave.slaveName. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by one more big-boobed milk producer. You leave the inspector's drug dosage low to start, so she can appreciate her situation for a while. When the inspector awakes, her visor is set to show an overhead view of her bay in $dairyName. She sees her breasts, already larger than she remembers, gently swaying with the pumping of the milkers.<<if $dairyFeedersSetting > 1>> She sees the huge phallus occupying her mouth, and feels nutrition sliding down her throat.<</if>><<if $dairyPregSetting > 1>> She sees her vagina drooling as it's fucked in preparation for pregnancy.<</if>><<if $dairyPregSetting > 1>> She sees a massive piston moving slowly back and forth beneath her buttocks, and understands what the ache of impossible fullness in her bottom is.<</if>> Her hands ball into fists. - <<set $shelterAbuse += 10>> - <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + You along with <<if $Bodyguard != 0>> your bodyguard <<print SlaveFullName($Bodyguard)>> and<</if>> <<if $mercenaries > 1>>a squad of $mercenariesTitle <<elseif ($SF.Toggle && $SF.Active >= 1)>>, a squad of $SF.Lower <<elseif $mercenaries > 1 && ($SF.Toggle && $SF.Active >= 1)>> a sqaud of both $mercenariesTitle and $SF.Lower <</if>> forcefully escort the inspector off your property. You barely make it back to the penthouse before the massage deeming you permanently banned from the Slave Shelter arrives. + <<set $shelterAbuse += 100>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ <</replace>> -<</link>> //This will cost <<print cashFormat($contractCost/2)>>// <</if>> -<<if ($dairyRestraintsSetting < 2) || ($subSlave.assignment != "work in the dairy")>> +<<if ($dairy > 0) && ($dairyRestraintsSetting > 1) && (_Inspectee.assignment == "work in the dairy")>> + <br><<link "The slave is attached to a milking machine in $dairyName, and so will be the inspector">> + <<= assignJob($activeSlave, "work in the dairy")>> + <<set $activeSlave.lactation = 1, $activeSlave.lactationDuration = 2>> + <<set $activeSlave.clothes = "no clothing">> + <<set $cash -= $contractCost/2>> + <<replace "#result">> + _Inspectee.slaveName is attached to a milking machine, so it would be extremely unwise to let the inspector report on _Inspectee.slaveName's industrial fate in all its gorgeous productivity. So, you greet her politely, and bring her down to $dairyName to show her _Inspectee.slaveName. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by one more big-boobed milk producer. You leave the inspector's drug dosage low to start, so she can appreciate her situation for a while. When the inspector awakes, her visor is set to show an overhead view of her bay in $dairyName. She sees her breasts, already larger than she remembers, gently swaying with the pumping of the milkers.<<if $dairyFeedersSetting > 1>> She sees the huge phallus occupying her mouth, and feels nutrition sliding down her throat.<</if>><<if $dairyPregSetting > 1>> She sees her vagina drooling as it's fucked in preparation for pregnancy.<</if>><<if $dairyPregSetting > 1>> She sees a massive piston moving slowly back and forth beneath her buttocks, and understands what the ache of impossible fullness in her bottom is.<</if>> Her hands ball into fists. + <<set $shelterAbuse += 10>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + <</replace>> + <</link>> //This will cost <<print cashFormat($contractCost/2)>>// +<<elseif ($arcade > 0) && (_Inspectee.assignment == "be confined in the arcade")>> + <br><<link "The slave is little more than a hole in $arcadeName, and so will be the inspector">> + <<= assignJob($activeSlave, "be confined in the arcade")>> + <<set $activeSlave.clothes = "no clothing">> + <<set $cash -= $contractCost/2>> + <<replace "#result">> + _Inspectee.slaveName is sealed in a box and currently in use, so it would be extremely unwise to let the inspector report on _Inspectee.slaveName's permanent position in the service industry. So, you greet her politely, and bring her down to $arcadeName to show her _Inspectee.slaveName. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by three more fuckable holes. When the inspector awakes to a dick intruding her body, the pitch blackness and sound prooofing disorienates her. + <<if $arcadeUpgradeInjectors == 1 + She gasps as a needle breaks her skin, filling her veins with a potent mixture of aphrodisiacs to help her better service the cock in her cunt. She attempts to defy, but a strong shock forces her to tighten and bring her partner to climax. + <<elseif $arcadeUpgradeCollectors == 1>> + She groans at the feeling of something sucking away at her milkless tits, but it does nothing the distract from her rape. She struggles to resist in any way she can, but she is too firmly anchored to move. + <<else>> + She struggles to resist in any way she can, but she is too firmly anchored to move. + <</if>> + Before she gets the chance to swear defiance against you, another patron rams his dick down her throat, putting a stop to that notion. Her hands ball into fists as she endures her spit-roasting. + <<set $shelterAbuse += 15>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + <</replace>> + <</link>> //This will cost <<print cashFormat($contractCost/2)>>// +<<elseif (_Inspectee.assignment == "be your agent") || (_Inspectee.assignment == "live with your agent")>> + <br><<link "Your slave is in another arcology">> + <<replace "#result">> + _Inspectee.slaveName is now a guiding force in another of the Free City's arcologies, so it would be disruptive to $his work to be called away like this. You simply pass along $his new address and send the inspector on her way. She stands there dumbfounded before hastily writing notes on her tablet. She seems quite pleased by _Inspectee.slaveName's progress. + <<set $shelterAbuse -= 15>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <</replace>> + <</link>> +<<elseif _Inspectee.fuckdoll > 0>> + <br><<link "The slave is little more than a latex wrapped doll, and so will be the inspector">> + <<set $cash -= $contractCost/2>> + <<replace "#result">> + You have her ushered up to your office, and order _Inspectee.slaveName brought in. The inspector has a single moment to stiffen in shock at the sight before she stiffens involuntarily due to the security drone tazing her unconscious. It takes a few credits here and there to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing, but you finish the day richer by one more fuckdoll. Odds are she wants to be defiant, but the suit works perfectly and leaves her no outlet to make her thoughts known. + <<set $activeSlave.toyHole="all her holes", $activeSlave.pubicHStyle="waxed", $activeSlave.livingRules="spare", $activeSlave.speechRules="restrictive", $activeSlave.releaseRules="restrictive", $activeSlave.relationshipRules="restrictive", $activeSlave.fuckdoll=1, $activeSlave.choosesOwnClothes=0, $activeSlave.clothes="a Fuckdoll suit", $activeSlave.collar="none", $activeSlave.shoes="heels",$activeSlave.legAccessory="none", $activeSlave.vaginalAccessory="none", $activeSlave.dickAccessory="none", $activeSlave.buttplug="none", $activeSlave.attrKnown=1, $activeSlave.fetishKnown=1>> + <<set $shelterAbuse += 10>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ + <<run newSlave($activeSlave)>> /* skip New Slave Intro */ + <</replace>> + <</link>> //This will cost <<print cashFormat($contractCost/2)>>// +<<elseif ($dairyRestraintsSetting < 2) || (_Inspectee.assignment != "work in the dairy")>> <br><<link "Allow the inspection">> <<replace "#result">> - You have her ushered up to your office, and order $subSlave.slaveName brought in. + <<set _inspectionContinues = 1, _inspectionResult = 0>> + You have her ushered up to your office, and order _Inspectee.slaveName brought in. <br><br> - <<if $subSlave.origin == "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> - <<if $subSlave.fetish == "mindbroken">> + /* + <<if _Inspectee.amp == 1 && _originSlave.amp != 1>> + You may have lopped off the poor $girl's arms and legs, a fact not lost on the inspector. She can barely conceal her terror as she makes lengthy notes on her tablet before practically running out of the penthouse. + <<set $shelterAbuse += 10>> + <<elseif _Inspectee.fetish == "mindbroken">> + <<if _Inspectee.origin == "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know $he was like this when you got $him. Just - just keep trying, would you?" She leaves, looking bitter. + <<elseif _Inspectee.origin == "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know $he was like this when you got $him. Just - just keep trying, would you?" + <<if _Inspectee.pussy > 3 && _Inspectee.bellySag > 1>> + She gropes the slave's sagging middle before inspecting her ruined pussy. "Still ruined I see." + <<elseif _Inspectee.pussy <= 3 && _Inspectee.bellySag > 1>> + She gropes the slave's sagging middle before inspecting $his pussy. "Apart from the belly, $his pussy has recovered nicely." + <<elseif _Inspectee.pussy > 3 && _Inspectee.bellySag <= 1>> + She gropes the slave's middle before inspecting $his ruined pussy. "$His stomach seems to have recovered, shame you did nothing for $his poor vagina." + <<else>> + She runs her hand across the slave's restored midriff, before inspecting $his pussy. "$He is looking much better, physically, though. That's worth noting." + <<set $shelterAbuse-->> + <</if>> + She leaves, looking bitter. + <<else>> + Of course, the poor $girl is mindbroken now. The inspector is horrified, though she tries to conceal it. She makes lengthy notes on her tablet, and almost runs out of the penthouse. + <<set $shelterAbuse += 5>> + <</if>> + <<set _inspectionContinues = 0>> + <</if>> + + <<if _inspectionContinues == 1>> + <<switch _Inspectee.origin>> + <<case "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> + The inspector asks some cursory questions and is shocked when she responds. "$He came back?" she mutters, "You restored $his mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse -= 5>> + <<case "You got her at the Slave Shelter. It's not clear why her previous owner cut her arms and legs off.">> + <<if _Inspectee.amp == _originSlave.amp>> + Unsurprisingly, the poor $girl still lacks arms and legs, so the inspector just carries on. + <<else>> + The inspector stares, dumbfounded, at pair of limbs now supporting _Inspectee.slaveName. "Most owners wouldn't go through the trouble... I think I've seen enough to know you're welcome to come back and take in another girl any time." She leaves your penthouse in much better spirits than she arrived in. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse -= 3>> + <</if>> + <<case "You got her at the Slave Shelter. Her owner purposely blinded her by dumping boiling water into her eyes.">> + "I wish the scaring wasn't so bad, that way people wouldn't stare so much." + <<if _Inspectee.eyes > _originSlave.eyes>> + <<if canTalk(_Inspectee)>> + _Inspectee.slaveName quickly retorts with "But I like <<s>>eeing their eye<<s>>..." + <<else>> + _Inspectee.slaveName shakes $his head in response. + <</if>> + The inspector gasps at the realization that $he can see again. "They look just like $his old photos too..." A tear comes to her weary eye as she writes out notes on her tablet. "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse-->> + <</if>> + <<case "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> + The inspector asks some cursory questions and is shocked when $he responds. "$He came back?" she mutters, "You restored $his mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse, even though she forgot to check $his pussy. + <<set _inspectionContinues = 0>> + <<set $shelterAbuse -= 5>> + + <<case "You got her at the Slave Shelter. Her previous owner forced her to cut off her dick and balls and cook them.">> + <<if _Inspectee.dick > _originSlave.dick>> + "I see that you've given $him a replacement tool," she reaches down and gives it an exploratory fondle, + <<if canAchieveErection(_Inspectee)>> + "it even works, that's lovely." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<else>> + "it seems to be non-functional, but it's a nice gesture at least." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <</if>> + <<set _inspectionResult-->> + <</if>> + <<if _Inspectee.balls > _originSlave.balls && _Inspectee.scrotum>> + <<if _Inspectee.dick > _originSlave.dick>> + "And these work too, right?" She asks as she points to $his dangling balls. "So $he has been fully restored, that's something." The inspector adds another positive note to the inspection. + <<set _inspectionResult-->> + <<else>> + "I take it these testicles are more than just an implant? I'm sure $he appreciates the gesture, though what good are they without a penis?" The inspector shakes her head and notes your attempt to undo the damages to _Inspectee.slaveName. + <</if>> + <</if>> + + <<if !["apathetic", "neglectful"].includes(_Inspectee.sexualFlaw) && !["odd", "anorexic"].includes(_Inspectee.behavioralFlaw) && !["none", "masochist"].includes(_Inspectee.fetish)>> + The inspector can see that her personaility is much better than before. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse -= 3>> + <</if>> + + <<case "You got her at the Slave Shelter. Her previous owner forced her to cut off her breasts and cook them.">> + <<if _Inspectee.boobs > $genePool[_Arrival].boobs>> + The inspector can see that she has a new set of breats. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse -= 2>> + <</if>> + <<if !["apathetic", "neglectful", "self hating"].includes(_Inspectee.sexualFlaw) && !["odd", "anorexic"].includes(_Inspectee.behavioralFlaw) && !["none", "masochist"].includes(_Inspectee.fetish)>> + The inspector can see that $his personaility is much better than before. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse -= 3>> + <</if>> + + <<case "You got her at the Slave Shelter. She is an enslaved Daughter of Liberty, caught some weeks after the failed coup. Her previous owner used her as a punching bag and dart board, then when he was bored of her tattooed obscenities all over her body and threw her away.">> + <<if _Inspectee.slaveName != $genePool[_Arrival].slaveName>> + The inspector notices _Inspectee.birthName new name. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her previous owner gelded her and used her for anal abuse.">> + <<if _Inspectee.anus < $genePool[_Arrival].anus>> + The inspector can see that her anus is better. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + <<if _Inspectee.dick > $genePool[_Arrival].dick>> + The inspector can see that she has a new dick. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her background is obscure, but seems to have involved terrible abuse of her huge cock and balls.">> + <<if _Inspectee.energy > $genePool[_Arrival].energy>> + The inspector notices that _Inspectee.birthName has more engery. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her holes were cruelly stretched by constant plug use.">> + <<if _Inspectee.vagina < $genePool[_Arrival].vagina && _Inspectee.anus < $genePool[_Arrival].anus>> + The inspector notices that _Inspectee.birthName's holes are tighter. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. Her previous owner discarded her after many pregnancies.">> + <<if _Inspectee.vagina < $genePool[_Arrival].vagina>> + The inspector notices that _Inspectee.birthName's vagina is tighter. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. She was worn out by twenty years of brothel service.">> + <<if _Inspectee.vagina < $genePool[_Arrival].vagina && _Inspectee.anus < $genePool[_Arrival].anus>> + The inspector notices that _Inspectee.birthName's holes are tighter. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <</if>> + + <<case "You got her at the Slave Shelter. She was discarded after suffering a terrible reaction to growth hormone treatment.">> + <<if _Inspectee.chem < $genePool[_Arrival].chem>> + Upon scanning _Inspectee.birthName, the inspector finds that her chem damage has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector scans _Inspectee.birthName and finds that her chem damage has been increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <<if _Inspectee.dick < $genePool[_Arrival].dick>> + The inspector meresures _Inspectee.birthName's dick and finds that has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector meresures _Inspectee.birthName's dick and finds that has increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <<if _Inspectee.balls < $genePool[_Arrival].balls>> + The inspector meresures _Inspectee.birthName's balls and finds they has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector meresures _Inspectee.birthName's balls and finds they has been increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <<if _Inspectee.fetish != $genePool[_Arrival].fetish>> + The inspector meresures _Inspectee.birthName's balls and finds they has been reduced. The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<set $shelterAbuse-->> + <<else>> + The inspector is happy that _Inspectee.birthName's balls and finds they has been increased. The inspector is horrified, though she tries to conceal it. + <<set $shelterAbuse++>> + <</if>> + <</switch>> + <</if>> + */ + + <<if _Inspectee.origin == "You got her at the Slave Shelter. She has never communicated anything about her background, since she arrived at the shelter with a broken mind.">> + <<if _Inspectee.fetish == "mindbroken">> Of course, the poor girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know she was like this when you got her. Just - just keep trying, would you?" She leaves, looking bitter. <<else>> The inspector asks some cursory questions and is shocked when she responds. "S-she came back?" she mutters, "You restored her mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse. <<set $shelterAbuse -= 5>> <</if>> - <<elseif $subSlave.origin == "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> - <<if $subSlave.fetish == "mindbroken">> + <<elseif _Inspectee.origin == "You got her at the Slave Shelter. She was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to her.">> + <<if _Inspectee.fetish == "mindbroken">> Of course, the poor girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," she says. "I know she was like this when you got her. Just - just keep trying, would you?" - <<if $subSlave.pussy > 3 && $subSlave.bellySag > 1>> + <<if _Inspectee.pussy > 3 && _Inspectee.bellySag > 1>> She gropes the slave's sagging middle before inspecting her ruined pussy. "Still ruined I see." - <<elseif $subSlave.pussy <= 3 && $subSlave.bellySag > 1>> + <<elseif _Inspectee.pussy <= 3 && _Inspectee.bellySag > 1>> She gropes the slave's sagging middle before inspecting her pussy. "Apart from the belly, her pussy has recovered nicely." - <<elseif $subSlave.pussy > 3 && $subSlave.bellySag <= 1>> + <<elseif _Inspectee.pussy > 3 && _Inspectee.bellySag <= 1>> She gropes the slave's middle before inspecting her ruined pussy. "Her stomach seems to have recovered, shame you did nothing for her poor vagina." <<else>> She runs her hand across the slave's restored midriff, before inspecting her pussy. "She is looking much better, physically, though. That's worth noting." @@ -147,41 +364,41 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema The inspector asks some cursory questions and is shocked when she responds. "S-she came back?" she mutters, "You restored her mind, I can't believe it. This is incredible." She carries on while writing notes on her tablet, "You're more than welcome to adopt slaves from our shelter." You swear she seems in much better spirits as she leaves your penthouse, even though she forgot to check her pussy. <<set $shelterAbuse -= 5>> <</if>> - <<elseif $subSlave.fetish == "mindbroken">> + <<elseif _Inspectee.fetish == "mindbroken">> Of course, the poor girl is mindbroken now. The inspector is horrified, though she tries to conceal it. She makes lengthy notes on her tablet, and almost runs out of the penthouse. <<set $shelterAbuse += 5>> - <<elseif $subSlave.trust < -20>> + <<elseif _Inspectee.trust < -20>> She is sufficiently afraid of you that she tells the inspector whatever she thinks you'd want her to say. The inspector, experienced at this, is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif $subSlave.devotion <= 20>> + <<elseif _Inspectee.devotion <= 20>> She does not like you and isn't particularly terrified of you, so she is not flattering. She's not stupid enough to really criticise you, but she is honest and makes no effort to conceal troubling particulars. The inspector takes copious notes. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif $subSlave.anus > 2>> - She cooperates with the inspector, who pulls on a pair of latex gloves and performs a complete examination. When she pulls the girl's buttocks apart and probes the slave's asshole, she pulls her hand away as if scalded. "Oh my God," she says. "$subSlave.birthName, what happened to your anus?" + <<elseif _Inspectee.anus > 2>> + She cooperates with the inspector, who pulls on a pair of latex gloves and performs a complete examination. When she pulls the girl's buttocks apart and probes the slave's asshole, she pulls her hand away as if scalded. "Oh my God," she says. "_Inspectee.birthName, what happened to your anus?" <br><br> - <<if ($subSlave.devotion < 10)>> - <<if ($subSlave.buttplug == "large plug") || ($subSlave.buttplug == "huge plug") || ($subSlave.buttplug == "long, large plug") || ($subSlave.buttplug == "long, huge plug")>> + <<if (_Inspectee.devotion < 10)>> + <<if (_Inspectee.buttplug == "large plug") || (_Inspectee.buttplug == "huge plug") || (_Inspectee.buttplug == "long, large plug") || (_Inspectee.buttplug == "long, huge plug")>> "W-well," she says, "I wear a buttplug." The inspector frowns. "A buttplug shouldn't do that!" The slave looks worried and replies, "It'<<s>> kinda big? And I wear it all the time. B-but I like it! It d-doe<<s>>n't hurt. Well, anymore." The inspector is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif ($subSlave.assignment == "whore") || ($subSlave.assignment == "work in the brothel") || ($subSlave.assignment == "serve the public") || ($subSlave.assignment == "serve in the club")>> + <<elseif (_Inspectee.assignment == "whore") || (_Inspectee.assignment == "work in the brothel") || (_Inspectee.assignment == "serve the public") || (_Inspectee.assignment == "serve in the club")>> "W-well," she says, "I get fucked there at work." The inspector frowns. "How often!?" The slave looks worried and replies, "L-let me think. Four time<<s>> today? After the third time, it u<<s>>ually <<s>>top<<s>> clo<<s>>ing up again between cock<<s>>." The inspector is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. - <<elseif ($subSlave.fetish == "buttslut") && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.fetish == "buttslut") && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love anal <<s>>e<<x>>! Don't judge me. I want cock up that hole right now, you bitch. I'm going to beg for butt<<s>>e<<x>> the moment you leave." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.energy > 95) && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.energy > 95) && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love <<s>>e<<x>>! Don't judge me. I take cock in all my hole<<s>>, and I like it. I'm going to beg for butt<<s>>e<<x>> the moment you leave, you bitch." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> "W-well," she says, "I'm a <<s>>lave." The inspector frowns. "What does that have to do with it?" The slave looks worried and replies, "I-it'<<s>> a hole, right? I get fucked in all my hole<<s>>." The inspector is not amused. She offers you a few choice words, makes notes on her tablet, and storms out. <</if>> <<else>> - <<if ($subSlave.buttplug == "large plug") || ($subSlave.buttplug == "huge plug") || ($subSlave.buttplug == "long, large plug") || ($subSlave.buttplug == "long, huge plug")>> + <<if (_Inspectee.buttplug == "large plug") || (_Inspectee.buttplug == "huge plug") || (_Inspectee.buttplug == "long, large plug") || (_Inspectee.buttplug == "long, huge plug")>> "I wear a buttplug!" she says confidently. The inspector frowns. "A buttplug shouldn't do that!" The slave looks worried and replies, "It'<<s>> really big, and I wear it all the time. I like it! It keep<<s>> my hole ready for anything." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.assignment == "whore") || ($subSlave.assignment == "work in the brothel") || ($subSlave.assignment == "serve the public") || ($subSlave.assignment == "serve in the club")>> + <<elseif (_Inspectee.assignment == "whore") || (_Inspectee.assignment == "work in the brothel") || (_Inspectee.assignment == "serve the public") || (_Inspectee.assignment == "serve in the club")>> "I get fucked there at work!" she says confidently. The inspector frowns. "How often!?" The slave thinks for a moment and replies, "Four time<<s>> today. After the third time, it u<<s>>ually <<s>>top<<s>> clo<<s>>ing up again between cock<<s>>. I'm good at my job!" The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.fetish == "buttslut") && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.fetish == "buttslut") && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love anal <<s>>e<<x>>! Don't judge me. I want cock up that hole right now, you bitch. I'm going to beg for butt<<s>>e<<x>> the moment you leave." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> - <<elseif ($subSlave.energy > 95) && ($subSlave.fetishKnown == 1)>> + <<elseif (_Inspectee.energy > 95) && (_Inspectee.fetishKnown == 1)>> "Hey," she protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love <<s>>e<<x>>! Don't judge me. I take cock in all my hole<<s>>, and I like it. I'm going to beg for butt<<s>>e<<x>> the moment you leave, you bitch." She defiantly sticks her rump out at you. The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> @@ -190,42 +407,43 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <</if>> <</if>> <<else>> - The inspector asks, "What do you do for work, $subSlave.birthName?" + The inspector asks, "What do you do for work, _Inspectee.birthName?" <br><br> - <<switch $subSlave.assignment>> + <<switch _Inspectee.assignment>> <<case "whore" "work in the brothel">> - <<if ($subSlave.fetishStrength > 95) || ($subSlave.energy > 95)>> - $subSlave.slaveName says happily, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cock, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<if (_Inspectee.fetishStrength > 95) || (_Inspectee.energy > 95)>> + _Inspectee.slaveName says happily, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cock, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> - $subSlave.slaveName says confidently, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> hard work <<s>>ometime<<s>>, but I'm okay. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. + _Inspectee.slaveName says confidently, "I'm a whore!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> hard work <<s>>ometime<<s>>, but I'm okay. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <</if>> <<case "serve the public" "serve in the club">> - <<if ($subSlave.fetishStrength > 95) || ($subSlave.energy > 95)>> - $subSlave.slaveName says happily, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cute boy<<s>> and girl<<s>>, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + <<if (_Inspectee.fetishStrength > 95) || (_Inspectee.energy > 95)>> + _Inspectee.slaveName says happily, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> awe<<s>>ome. Nothing but cute boy<<s>> and girl<<s>>, every day." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <<else>> - $subSlave.slaveName says confidently, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> not bad. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. + _Inspectee.slaveName says confidently, "I'm a <<s>>lut!" The inspector makes a go-on gesture, and the slave continues, "It'<<s>> not bad. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <</if>> <<case "get milked" "work in the dairy">> - <<if $subSlave.lactation > 0>> - $subSlave.slaveName says happily, "I'm a milk cow!" The inspector arches an eyebrow skeptically, and the slave continues, "I give milk. <<s>>ee?" She expresses a squirt of milk from one nipple. It'<<s>> a ni<<c>>e life. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. + <<if _Inspectee.lactation > 0>> + _Inspectee.slaveName says happily, "I'm a milk cow!" The inspector arches an eyebrow skeptically, and the slave continues, "I give milk. <<s>>ee?" She expresses a squirt of milk from one nipple. It'<<s>> a ni<<c>>e life. I'm much happier with my current owner, thank you." The inspector looks pleased, and says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <<else>> - $subSlave.slaveName says happily, "I get cockmilked!" The inspector arches an eyebrow skeptically, and the slave continues, "I give cum. It'<<s>> actually lot<<s>> of fun!" She shakes her penis for emphasis. "The machine feel<<s>> <<s>>o good. And when I'm almo<<s>>t empty, I get buttfucked to get the la<<s>>t drop out of me!" She shivers. "It'<<s>> really ni<<c>>e..." The inspector looks deflated, and reluctantly makes a positive note on her tablet. + _Inspectee.slaveName says happily, "I get cockmilked!" The inspector arches an eyebrow skeptically, and the slave continues, "I give cum. It'<<s>> actually lot<<s>> of fun!" She shakes her penis for emphasis. "The machine feel<<s>> <<s>>o good. And when I'm almo<<s>>t empty, I get buttfucked to get the la<<s>>t drop out of me!" She shivers. "It'<<s>> really ni<<c>>e..." The inspector looks deflated, and reluctantly makes a positive note on her tablet. <<set $shelterAbuse -= 1>> <</if>> <<default>> - $subSlave.slaveName <<say>>s flatly, "Whatever my beloved <<Master>> require<<s>>. I have a good life now, and I would appre<<c>>iate it if you would <<s>>upport me by doing everything you can for <<if $PC.title == 1>>him<<else>>her<</if>>." Taken aback, the inspector says she'll put out a @@.green;good word@@ about you. + _Inspectee.slaveName <<say>>s flatly, "Whatever my beloved <<Master>> require<<s>>. I have a good life now, and I would appre<<c>>iate it if you would <<s>>upport me by doing everything you can for <<if $PC.title == 1>>him<<else>>her<</if>>." Taken aback, the inspector says she'll put out a @@.green;good word@@ about you. <<set $rep += 100>> <<set $shelterAbuse -= 1>> <</switch>> <</if>> + <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ <</replace>> <</link>> <</if>> diff --git a/src/uncategorized/reSiblingRevenge.tw b/src/uncategorized/reSiblingRevenge.tw index 967ef475fdd4d8bb7b76f94be11a69220190df6d..56229f349c2ebbe7239c56f18addcdab0ca80509 100644 --- a/src/uncategorized/reSiblingRevenge.tw +++ b/src/uncategorized/reSiblingRevenge.tw @@ -7,7 +7,7 @@ $slaves[$i].slaveName, whose older sister tried to sell her to you, is up for inspection. As usual, you pepper your inspection with questions about her duties, her feelings about her physical condition, and experiences. More information about one's property is never a bad thing. When the inspection reaches $slaves[$i].slaveName's asshole, you ask whether she enjoyed having her older sister sell her butt. -"No, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>," she says. +"No, <<Master $slaves[$i]>>," she says. <br><br> diff --git a/src/uncategorized/reStandardPunishment.tw b/src/uncategorized/reStandardPunishment.tw index 3b8d0389db056590f8c486cee07904f888b072eb..951c44166578476b81b35a53aa08fc8676f3ba2b 100644 --- a/src/uncategorized/reStandardPunishment.tw +++ b/src/uncategorized/reStandardPunishment.tw @@ -69,7 +69,13 @@ ERROR: bad sin <</switch>> -<<if $HeadGirl != 0>>$HeadGirl.slaveName<<else>>$assistantName<</if>> is <<if $activeSlave.standardPunishment == "situational">>assessing an appropriate punishment<<else>>sentencing her to her standard punishment, <<switch $activeSlave.standardPunishment>><<case "confinement">>several hours in confinement<<case "whipping">>a whipping<<case "chastity">>several hours in chastity<</switch>><</if>>. <<if ($HeadGirl != 0) || ($assistant != 0)>>She<<else>>It<</if>> immediately defers to you, should you wish to take over. +<<if $HeadGirl != 0>> + <<setLocalPronouns $HeadGirl 2>> + $HeadGirl.slaveName is <<if $activeSlave.standardPunishment == "situational">>assessing an appropriate punishment<<else>>sentencing $him to $his standard punishment, <<switch $activeSlave.standardPunishment>><<case "confinement">>several hours in confinement<<case "whipping">>a whipping<<case "chastity">>several hours in chastity<</switch>><</if>>. _He2 immediately defers to you, should you wish to take over. +<<else>> + <<setAssistantPronouns>> + $assistantName is <<if $activeSlave.standardPunishment == "situational">>assessing an appropriate punishment<<else>>sentencing $him to $his standard punishment, <<switch $activeSlave.standardPunishment>><<case "confinement">>several hours in confinement<<case "whipping">>a whipping<<case "chastity">>several hours in chastity<</switch>><</if>>. _HeA immediately defers to you, should you wish to take over. +<</if>> <br><br> <span id="result"> diff --git a/src/uncategorized/recETS.tw b/src/uncategorized/recETS.tw index 7f1406ec3e0cf9de875aa96842482c6fe9feb57e..75f23133a7a63ad047b8f8ad791572eb34f1a1b0 100644 --- a/src/uncategorized/recETS.tw +++ b/src/uncategorized/recETS.tw @@ -1399,6 +1399,7 @@ <<setLocalPronouns $relative>> <<setLocalPronouns $relative2 2>> +<<setAssistantPronouns>> <span id="mainbody"> @@ -1422,7 +1423,7 @@ An older $woman comes to see you representing $his family business. $He's pretty <<case "incest mother son">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> @@ -1434,7 +1435,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest father daughter">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> @@ -1446,7 +1447,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest brother sister">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are a brother and sister who had to flee their home after their parents found out they were having sex with each other. $His gravid middle is testament to that. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1454,7 +1455,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest sister sister">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are two sisters who had to flee their home after their parents found out they were having sex with each other. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1462,7 +1463,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest brother brother">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are two brothers who had to flee their home after their parents found out they were having sex with each other. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1470,7 +1471,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest twin sister">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are twin sisters who had to flee their home after their parents found out they were having sex with each other. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1478,7 +1479,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest twin brother">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are twin brothers who had to flee their home after their parents found out they were having sex with each other. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1486,7 +1487,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest twins mixed">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are twins who had to flee their home after their parents found out they were having sex with each other. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1494,7 +1495,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest mother daughter">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are a mother and daughter who had to flee their home after $his husband found out $he was having sex with their daughter. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1502,7 +1503,7 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "incest father son">> -You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. +You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> This call is coming from a public kiosk, which is usually an indication that the person on the other end is a transient individual who has decided to take slavery over homelessness. In this case, however, the story is more unusual - the callers seem stressed, but otherwise normal. They haltingly and quietly explain that they are a father and son who had to flee their home after $his wife found out $he was having sex with their son. They feel that life in an arcology together, even as slaves, would be better than their current life on the streets. <br><br> @@ -1510,11 +1511,15 @@ It would cost <<print cashFormat($contractCost)>> to enslave the two of them. <<case "mismatched pair">> -Your head girl comes to see you. She flags a slave posted for sale on your desk. The posting seems completely unimpressive - just a bitch barely past $his <<print $activeSlave.actualAge>>th birthday with basic implants and a pathetic little dick - until she points out that the person posting $him for sale is $his sister. $His slightly older, naturally female sister. Who, to go by the pictures, the younger sibling has desperately been trying to mold $himself to look more like. +<<set _headGirlPronouns = getPronouns($HeadGirl)>> +<<set _heG = _headGirlPronouns.pronoun>> +<<set _HeG = capFirstChar(_heG)>> +Your Head Girl comes to see you. _HeG flags a slave posted for sale on your desk. The posting seems completely unimpressive - just a bitch barely past $his <<= ordinalSuffix($activeSlave.actualAge)>> birthday with basic implants and a pathetic little dick - until _heG points out that the person posting $him for sale is $his sister. $His slightly older, naturally female sister. Who, to go by the pictures, the younger sibling has desperately been trying to mold $himself to look more like. <br><br> -"It won't show on the desk yet, but rumor is the little cunt's gotten them both in bad debt, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. You could grab them both cheap." +<<run Enunciate ($HeadGirl)>> +"It won't <<sh>>ow on the de<<s>>k yet, but rumor i<<s>> the little cunt'<<s>> gotten them both in bad debt, <<Master>>. You could grab them both cheap." <br><br> diff --git a/src/uncategorized/remFluctuations.tw b/src/uncategorized/remFluctuations.tw index c60ad8650797e3bb804ae4a958ae25a7a334549e..d319fe9923d6ce472151644ad85b24ccc4ab786b 100644 --- a/src/uncategorized/remFluctuations.tw +++ b/src/uncategorized/remFluctuations.tw @@ -4,10 +4,11 @@ <<set $nextLink = "RIE Eligibility Check">> <<if ($REM == 1)>> - <<set $REM = either("revel", "antislavery terrorism", "tainted drugs", "new free city", "speculation", "medical breakthrough")>> + <<set $REM = either("antislavery terrorism", "medical breakthrough", "new free city", "revel", "speculation", "tainted drugs")>> <<else>> - <<set $REM = either("bankruptcy", "refugee boat", "arcology change", "war", "empty prisons", "unemployment")>> + <<set $REM = either("arcology change", "bankruptcy", "empty prisons", "refugee boat", "unemployment", "war", "anti-slavery coup", "hostilities ended")>> <</if>> +<<setAssistantPronouns>> <<if $assistant > 0>> <<if $marketAssistantAnnounced>> @@ -18,7 +19,7 @@ <<case "amazon">>She illustrates a small group of gossiping tribeswomen that fades away as she leaves them and approaches you. <<case "businesswoman">>The junior businesswoman adopts a shy posture when addressing you directly, as if unsuccessfully concealing a workplace crush. <<case "goddess">>The demigoddess portrait arrives in a glittery cloud of dust, wearing winged shoes. - <<case "schoolgirl">>Both schoolgirls are sitting knee to knee; the nerdy one hands the other a folded note. "Pass it on," she stage whispers. <<if $assistantName == "your personal assistant">>Your regular assistant<<else>>$assistantName<</if>> rolls her eyes. + <<case "schoolgirl">>Both schoolgirls are sitting knee to knee; the nerdy one hands the other a folded note. "Pass it on," she stage whispers. <<if $assistantName == "your personal assistant">>Your regular assistant<<else>>$assistantName<</if>> rolls _hisA eyes. <<case "hypergoddess">>The demigoddess portrait arrives in a glittery cloud of dust, wearing winged shoes and a noticeable roundness in her middle. <<case "loli">>The chubby, glasses-wearing loli arrives holding a neatly folded note addressed to you. <<case "preggololi">>The chubby, glasses-wearing loli arrives holding a hastily written note addressed to you. She seems kind of winded, with a suspicious stain in her panties under her pussy." @@ -140,4 +141,14 @@ Your <<if $marketAssistantAnnounced>>market<<else>>personal<</if>> assistant's s <<set $menialSupplyFactor += 20000>> <<set $menialSupplyFactor = Math.clamp($menialSupplyFactor,-50000,50000)>> <<set $slaveCostFactor = menialSlaveCost()/1000>> -<</if>> +<<elseif $REM == "anti-slavery coup">> + For months there were strong indications that an old world nation was quietly taking steps towards legalizing slavery. The market began to anticipate a serious increase in the demand for slaves in earnest but this week a month of protests against the country's leaders ended in a violent coup. The new government, claiming to only follow the will of the people, has made several promises, including a very vocal rebuke of even the slightest possibility of legal slavery within their borders. The slave market was shocked to find the previous government to be so weak and even more shocked at how unwilling the new one is to accept the times we live in. The panicked market quickly adjusted to greatly lowered slave demand and projections show a short-term price drop of up to ten percent. There will be no immediate impact on you or your slaves, but the coming weeks will be a fine time to buy new stock, and a terrible time to sell. @@.yellow;The market price of slaves has dropped.@@ + <<set $menialDemandFactor -= 20000>> + <<set $menialDemandFactor = Math.clamp($menialDemandFactor, -50000, 50000)>> + <<set $slaveCostFactor = menialSlaveCost()/1000>> +<<elseif $REM == "hostilities ended">> + The Free Cities make a real effort to avoid armed conflict, especially amonst themselves, as such endeavors almost never have any real winners. But tensions grew so high in their trade conflict that the likelihood of a full blown war between two Free Cities became not just a possibility but a near certainty for months. As skirmishes commenced and slave armies were quickly drilled for action on both sides, the slave market anticipated a boost to demand as soon as the fighting intensified. Miraculously, cooler heads prevailed and the Free Cities agreed to disband their armies. While many people sighed with relief the slave market was forced into a shock adjustment, projections show a short-term price drop of up to five percent. There will be no immediate impact on you or your slaves, but the coming weeks will be a fine time to buy new stock, and a terrible time to sell. @@.yellow;The market price of slaves has dropped.@@ + <<set $menialDemandFactor -= 12000>> + <<set $menialDemandFactor = Math.clamp($menialDemandFactor, -50000, 50000)>> + <<set $slaveCostFactor = menialSlaveCost()/1000>> +<</if>> \ No newline at end of file diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw index 2d52987874fee47295fb3c3099b5d365b1d0ea6e..1d3ef377d2f69e3ccea2720470ef31b0679d657d 100644 --- a/src/uncategorized/remoteSurgery.tw +++ b/src/uncategorized/remoteSurgery.tw @@ -880,16 +880,16 @@ Work on $his sex: One has been replaced with a sperm producing analog for self-fertilization. <</switch>> <<else>> - <<if $sympatheticOvaries == 1>> + <<if $fertilityImplant == 1>> <br> [[Install fertility implants|Surgery Degradation][$activeSlave.ovaImplant = "fertility",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "ovaImplant added"]] <</if>> - <<if $fertilityImplant == 1>> + <<if $sympatheticOvaries == 1>> <br> [[Install sympathetic ovulation implants|Surgery Degradation][$activeSlave.ovaImplant = "sympathy",$cash -= $surgeryCost, $activeSlave.health -= 10,$surgeryType = "ovaImplant added"]] <</if>> <</if>> - + <<if $activeSlave.indentureRestrictions < 1 && ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> <br> <<if $activeSlave.ovaries == 1>> diff --git a/src/uncategorized/resMove.tw b/src/uncategorized/resMove.tw index ef00aca55b4b86336acd91cb55d62b4a2788ce67..131d907bd81d6d5f17771c229c80c6409c394cf6 100644 --- a/src/uncategorized/resMove.tw +++ b/src/uncategorized/resMove.tw @@ -156,7 +156,7 @@ as you suspected, <<case "incubus">> those amazing breasts; I can't wait to wrap them around my dick!" She exclaims, her hard-on twitching with anticipation. <<case "succubus">> - those saggy tits and fat asses, then compare them to MINE." She states, pushing out her perfectly perky M-cup bust before twirling around to show off her enormous, toned ass. + those saggy tits and fat asses, then compare them to MINE." _HeA states, pushing out _hisA perfectly perky M-cup bust before twirling around to show off _hisA enormous, toned ass. <<case "imp">> those heavy tits," her avatar says, "I just want to tease them all day long!" <<case "witch">> @@ -190,21 +190,21 @@ as you suspected, <<case "loli" "preggololi">> those fat butts!" her avatar exclaims cheerfully. <<case "angel">> - your soul! Pussies are for sex, not buttholes!" She shouts, bright red with embarrassment at what she is saying. + your soul! Pussies are for sex, not buttholes!" _heA shouts, bright red with embarrassment at what _heA is saying. <<case "cherub">> - all those big butts!" Her avatar says while clutching her own. "Would I look cute with a bigger rear?" + all those big butts!" _hisA avatar says while clutching _hisA own. "Would I look cute with a bigger rear?" <<case "incubus">> - those amazing assholes; I bet they know just how to squeeze as you fuck'em!" She exclaims, her hard-on twitching with anticipation. + those amazing assholes; I bet they know just how to squeeze as you fuck 'em!" _heA exclaims, _hisA hard-on twitching with anticipation. <<case "succubus">> - my ass instead," she says, shaking her own giant ass and tight butthole at you. + my ass instead," _heA says, shaking _hisA own giant ass and tight butthole at you. <<case "imp">> - those bouncing asses," her avatar says. "I just want to spank them all day long..." + those bouncing asses," _hisA avatar says. "I just want to spank them all day long..." <<case "witch">> - all that assflesh," her avatar mutters. "So many panties ruined by that spell..." + all that assflesh," _hisA avatar mutters. "So many panties ruined by that spell..." <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - ass pussies," her avatar states, sprouting a large dick-like appendage from its crotch. "Perfect for filling with young." + ass pussies," _hisA avatar states, sprouting a large dick-like appendage from its crotch. "Perfect for filling with young." <<case "schoolgirl">> - those soft little bitches!" her avatar trills. + those soft little bitches!" _hisA avatar trills. <<default>> those bottoms," she says. <</switch>> @@ -212,15 +212,15 @@ as you suspected, "Just think of <<switch $assistantAppearance>> <<case "monstergirl">> - their sweaty bodies," she concludes, her avatar starting to masturbate. + their sweaty bodies," she concludes, _hisA avatar starting to masturbate. <<case "shemale">> - those muscly bodies, all sweaty and..." she trails off, her avatar starting to masturbate. + those muscly bodies, all sweaty and..." she trails off, _hisA avatar starting to masturbate. <<case "amazon">> how they can fight!" she concludes, more loudly than is really necessary. <<case "businesswoman">> - all that bodyguard potential," her avatar says, looking aroused at the possibilities. + all that bodyguard potential," _hisA avatar says, looking aroused at the possibilities. <<case "fairy" "pregnant fairy">> - those big, strong, sweaty, sexy bodies!" her avatar squeaks, looking beet red and breathing heavily. + those big, strong, sweaty, sexy bodies!" _hisA avatar squeaks, looking beet red and breathing heavily. <<case "goddess" "hypergoddess">> all those hard, strong, rippling..." she trails off, too breathless to be specific. <<case "loli" "preggololi">> diff --git a/src/uncategorized/resSale.tw b/src/uncategorized/resSale.tw index 436e002489c0a6f576f53a74ac381768d119c1b9..8b009d7b071d052968853d75e7480ff09353722b 100644 --- a/src/uncategorized/resSale.tw +++ b/src/uncategorized/resSale.tw @@ -41,29 +41,29 @@ You receive a personal call from the Futanari Sisters, an enigmatic group of transformation enthusiasts that sells beautiful hermaphrodites. <</if>> <<if $RESSale == "TCR">> - It's from a farmhand, not leadership, and they are offering a cow for sale. Before you can hang up on him and reprimand $assistantName for allowing this Free Cities version of telemarketing to get through to you, the man hurriedly says, "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, She's half off!" + It's from a farmhand, not leadership, and they are offering a cow for sale. Before you can hang up on him and reprimand $assistantName for allowing this Free Cities version of telemarketing to get through to you, the man hurriedly says, "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, she's half off!" <br><br> - You pause for a moment, and he plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, @@.yellow;your first cow purchase from us this week is half price.@@ And, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, this milky beauty is up for grabs. Keep her by your desk for fresh squeezed milk, knock on wood and she'll suck you right off, grab her by the hips and she'll take anything in her rear; she's plenty of fun! Come on down and get yourself a young, affectionate little cowgirl!" + You pause for a moment, and he plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, @@.yellow;your first cow purchase from us this week is half price.@@ And, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>, this milky beauty is up for grabs. Keep her by your desk for fresh squeezed milk, knock on wood and she'll suck you right off, grab her by the hips and she'll take anything in her rear; she's plenty of fun! Come on down and get yourself a young, affectionate little cowgirl!" <<else>> It's from a piece of merchandise, not leadership, and she's offering herself for sale. Before you can hang up on her and reprimand $assistantName for allowing this Free Cities version of telemarketing to get through to you, the slave hurriedly says, "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, I'm half off!" <br><br> -You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, @@.yellow;your first slave purchase from us this week is half price.@@ And, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, I'm one of the slaves for sale. +You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, @@.yellow;your first slave purchase from us this week is half price.@@ And, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>, I'm one of the slaves for sale. <<if $RESSale == "TSS">> - I've got the very best skills I could learn as a virgin. I'm healthy, obedient, and educated. And I'm fresh, and willing, and really eager." She rips her white schoolgirl blouse open to show off a fresh pair of tits, and shakes them for you. "I would love to be your sex slave, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, doing her very best to sound appealing, like she's been trained. + I've got the very best skills I could learn as a virgin. I'm healthy, obedient, and educated. And I'm fresh, and willing, and really eager." She rips her white schoolgirl blouse open to show off a fresh pair of tits, and shakes them for you. "I would love to be your sex slave, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>," she says, doing her very best to sound appealing, like she's been trained. <<elseif $RESSale == "GRI">> - I've, uh, been trained to obey." Her eyes flick to one side, like she's reading her cues. "And um I have really big boobs." She's wearing a bathrobe, and she suddenly jerks it open to reveal a bigger pair of breasts than anyone that age could possibly have grown herself. "I would love to be your sex slave, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, doing her very best to sound appealing. No doubt she'd prefer not to be part of any more testing. + I've, uh, been trained to obey." Her eyes flick to one side, like she's reading her cues. "And um I have really big boobs." She's wearing a bathrobe, and she suddenly jerks it open to reveal a bigger pair of breasts than anyone that age could possibly have grown herself. "I would love to be your sex slave, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>," she says, doing her very best to sound appealing. No doubt she'd prefer not to be part of any more testing. <<elseif $RESSale == "SCP">> - I'm ready to be the perfect bimbo slave, and the young surgeon who did my implants was very skilled." She's wearing a bikini, and she pulls it down to flash you, revealing that her tits resist gravity almost perfectly. They're gorgeous, but quite fake. "I would love to be your sex slave, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, doing her very best to sound appealing, like she's been trained. + I'm ready to be the perfect bimbo slave, and the young surgeon who did my implants was very skilled." She's wearing a bikini, and she pulls it down to flash you, revealing that her tits resist gravity almost perfectly. They're gorgeous, but quite fake. "I would love to be your sex slave, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>," she says, doing her very best to sound appealing, like she's been trained. <<elseif $RESSale == "LDE">> - I've been trained to need cock up my ass." She's nude, and spins around to point her ass at the camera. She begins to wink her big butthole, her tiny, soft cock dangling limply below it. She cranes her head around to continue. "I can come from nothing but buttsex," she says proudly. "I would love to be your anal slut, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, sounding very eager to begin. + I've been trained to need cock up my ass." She's nude, and spins around to point her ass at the camera. She begins to wink her big butthole, her tiny, soft cock dangling limply below it. She cranes her head around to continue. "I can come from nothing but buttsex," she says proudly. "I would love to be your anal slut, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>," she says, sounding very eager to begin. <<elseif $RESSale == "TGA">> - My tutelage has been long and hard, and I'm very eager to begin my life as a slave." She's nude, and stands up to reveal her hardon. She spins for the camera, showing herself off. "I can help protect you, too: I'm proficient in unarmed combat, and I have weapons training. I would love to be your bitch, or your bodyguard, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, doing her very best to sound appealing, like she's been told. + My tutelage has been long and hard, and I'm very eager to begin my life as a slave." She's nude, and stands up to reveal her hardon. She spins for the camera, showing herself off. "I can help protect you, too: I'm proficient in unarmed combat, and I have weapons training. I would love to be your bitch, or your bodyguard, <<if $PC.title == 1>>sir<<else>>ma'am<</if>>," she says, doing her very best to sound appealing, like she's been told. <<elseif $RESSale == "HA">> I am ready to serve you in any way you deem fit and do everything I can to protect your life." She's wearing a delicate maid uniform, beautifully contrasting her powerful physique and towering stature. "The academy has given me the opportunity to learn many valuable skills and I look forward put them at your service." <<else>> - The time has come for me to serve my Sisters by leaving my community and becoming a slave. Our sex skills are unparalleled," she says proudly. She's nude, and reclines luxuriantly for the camera, showing her remarkable body off in all its gorgeous strangeness. Her boobs are huge, her dick is hard, her pussy is wet, and her ass is relaxed. "I love to fuck, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, and you believe her. + The time has come for me to serve my Sisters by leaving my community and becoming a slave. Our sex skills are unparalleled," she says proudly. She's nude, and reclines luxuriantly for the camera, showing her remarkable body off in all its gorgeous strangeness. Her boobs are huge, her dick is hard, her pussy is wet, and her ass is relaxed. "I love to fuck, <<= properTitle()>>," she says, and you believe her. <<if ($PC.dick == 1) && ($PC.vagina == 1)>> <br><br> <<if ($PC.boobs == 1)>> @@ -77,15 +77,16 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <br><br> +<<setAssistantPronouns>> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>'s $assistantAppearance avatar appears on the screen next to the video call. <<if $assistant == 0>> - "I have stored the confirmation code, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," it notes. "If you wish to take advantage of this promotion, use the slave buying menu to navigate to the appropriate school next week. I have appended a note to that school's entry to remind you." + "I have stored the confirmation code, <<= properMaster()>>," it notes. "If you wish to take advantage of this promotion, use the slave buying menu to navigate to the appropriate school next week. I have appended a note to that school's entry to remind you." <<else>> <<if ($RESSale == "TSS") || ($RESSale == "SCP")>> "And I would love to <<switch $assistantAppearance>> <<case "monstergirl">> - break both her virgin holes at once," the monstergirl exclaims, and shakes her dicks for emphasis. + break both her virgin holes at once," the monstergirl exclaims, and shakes _hisA dicks for emphasis. <<case "shemale">> wreck her virgin asshole," the shemale exclaims, and starts to jack off. <<case "amazon">> @@ -93,9 +94,9 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <<case "businesswoman">> sell her fresh pussy to the highest bidder," the businesswoman exclaims. <<case "fairy">> - play with her clit and lap up those sweet virgin juices!" the fairy exclaims, licking her lips. + play with her clit and lap up those sweet virgin juices!" the fairy exclaims, licking _hisA lips. <<case "pregnant fairy">> - play with her clit and lap up those sweet motherly juices!" the fairy exclaims, licking her lips. + play with her clit and lap up those sweet motherly juices!" the fairy exclaims, licking _hisA lips. <<case "goddess">> teach her all about being a real woman," the goddess exclaims, rubbing her belly in anticipation. <<case "hypergoddess">> @@ -103,15 +104,15 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <<case "loli">> play with her!" The little girl exclaims happily while jumping up and down. <<case "preggololi">> - play with her!" The little girl exclaims happily while caressing her belly. + play with her!" The little girl exclaims happily while caressing _hisA belly. <<case "angel">> - keep her safe and craft the perfect future slavewife for someone," the angel says, crossing her arms under her chest. + keep her safe and craft the perfect future slavewife for someone," the angel says, crossing _hisA arms under _hisA chest. <<case "cherub">> pretty her up for her first love!" the cherub says, clasping her hands together and fluttering back and forth. <<case "incubus">> brutally stretch both those holes until she is a slave to my dick," the incubus says, stroking her cock to erection. <<case "succubus">> - shape her into the perfect girl for <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>," the succubus says, licking her lips with anticipation. "I'll make a real sex demon out of them!" + shape her into the perfect girl for <<= properMaster()>>," the succubus says, licking her lips with anticipation. "I'll make a real sex demon out of them!" <<case "imp">> tease her until she is begging to have her virginity taken," the imp says, rubbing her hands together with anticipation. <<case "witch">> @@ -151,11 +152,11 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <<case "incubus">> wrap them around my shaft and blow a load right into her face," the incubus says, stroking her cock to erection. <<case "succubus">> - teach her the perfect way to tease <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> with those boobs," she says, swelling her own tits and pressing them against the screen. + teach her the perfect way to tease <<= properMaster()>> with those boobs," she says, swelling her own tits and pressing them against the screen. <<case "imp">> tease her until she cums to the slightest touch of her nipples," the imp says, rubbing her hands together with anticipation. <<case "witch">> - play with their breasts," the witch says, "Test my lactation and breast growth spells on someone else for once." + play with their breasts," the witch says. "Test my lactation and breast growth spells on someone else for once." <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> penetrate those nipples," the avatar exclaims, her chest splitting open to reveal countless tentacles, the flesh at their bases writhing with unborn young. "Fill them with young until they pin her to the floor. Then her defenseless holes will be filled too." <<case "schoolgirl">> @@ -183,7 +184,7 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <<case "loli">> play with her big butt!" The little girl exclaims happily while jumping up and down. <<case "preggololi">> - play with her big butt!" The little girl exclaims happily while caressing her belly. + play with her big butt!" The little girl exclaims happily while caressing _hisA belly. <<case "angel">> have an ass like that..." the angel trails off, a finger to her lips as she fantasizes. <<case "cherub">> @@ -191,7 +192,7 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <<case "incubus">> wrap that ass around my shaft and blow a load across her back," the incubus says, stroking her cock to erection. <<case "succubus">> - teach her the perfect way to tease <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> with that ass," she says, swelling her own behind, pressing it against the screen and winking her butthole tantalizingly at you. + teach her the perfect way to tease <<= properMaster()>> with that ass," she says, swelling her own behind, pressing it against the screen and winking her butthole tantalizingly at you. <<case "imp">> spank that ass till it's big and red then take a nap on it," the imp says, rubbing her hands together with anticipation and yawning. <<case "witch">> @@ -231,7 +232,7 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <<case "incubus">> plow her ass and watch her ejaculate against her will," the incubus says, stroking her cock to erection. <<case "succubus">> - teach her the perfect way to tease <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> with that cock," she says, her clit steadily enlarging till it's the size of her leg. She hefts it to her mouth and enthusiastically tongues her urethra. + teach her the perfect way to tease <<= properMaster()>> with that cock," she says, her clit steadily enlarging till it's the size of her leg. She hefts it to her mouth and enthusiastically tongues her urethra. <<case "imp">> ride that cock until I'm too heavy to fly," the imp says, rubbing her belly and spreading her legs. <<case "witch">> @@ -273,13 +274,13 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' <<case "incubus">> brutally stretch both those holes until she is a slave to my dick," the incubus says, stroking her cock to erection. <<case "succubus">> - shape her into the perfect girl for <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>," the succubus says, licking her lips with anticipation. "I'll make a real sex demon out of them!" + shape her into the perfect girl for <<= properMaster()>>," the succubus says, licking her lips with anticipation. "I'll make a real sex demon out of them!" <<case "imp">> tease her until she is begging to have her virginity taken," the imp says, rubbing her hands together with anticipation. <<case "witch">> play with their body," the witch says, "Test my spells on someone else for once." <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> - break both her virgin holes at once," the avatar exclaims, her chest splitting open to reveal countless tentacles, the flesh at their bases writhing with unborn young. "Fill them with young until they are bloated hives." + break both her virgin holes at once," the avatar exclaims, _hisA chest splitting open to reveal countless tentacles, the flesh at their bases writhing with unborn young. "Fill them with young until they are bloated hives." <<case "schoolgirl">> make out with her. She's cute!" the schoolgirl exclaims. <<default>> @@ -321,5 +322,5 @@ You pause for a moment, and she plunges on: "<<if $PC.title == 1>>Sir<<else>>Ma' "And I love to fuck futas!" she exclaims. <</switch>> <</if>> - "Ahem. I have stored the confirmation code, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she notes. "If you wish to take advantage of this promotion, use the slave buying menu to navigate to the appropriate school next week. I have appended a note to that school's entry to remind you." + "Ahem. I have stored the confirmation code, <<= properMaster()>>," she notes. "If you wish to take advantage of this promotion, use the slave buying menu to navigate to the appropriate school next week. I have appended a note to that school's entry to remind you." <</if>> diff --git a/src/uncategorized/saBeYourHeadGirl.tw b/src/uncategorized/saBeYourHeadGirl.tw index a05a1b77d0546af05bc2ea019a3c004c3326e8c1..563f84d9c013314e213a93e365772b26577f4a47 100644 --- a/src/uncategorized/saBeYourHeadGirl.tw +++ b/src/uncategorized/saBeYourHeadGirl.tw @@ -119,7 +119,7 @@ <<if ($HGFormality == 0)>> <<if ($slaves[$i].trust > 95)>> - Every so often, when you're alone, she calls you <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>. She treats your permission to do this as a sacred thing, and @@.hotpink;loves you for it.@@ + Every so often, when you're alone, she calls you <<= properTitle()>>. She treats your permission to do this as a sacred thing, and @@.hotpink;loves you for it.@@ <<set $slaves[$i].devotion += 1>> <<else>> Your permission to be informal in private @@.mediumorchid;confuses her@@ a little, since she isn't perfectly confident enough to be comfortable with the idea. diff --git a/src/uncategorized/saChoosesOwnJob.tw b/src/uncategorized/saChoosesOwnJob.tw index c85bc0a336ecf2289e16349798e2a8e2a1ff9e41..f390e96033a36b3bb61fdfd47542ad8f83d0a286 100644 --- a/src/uncategorized/saChoosesOwnJob.tw +++ b/src/uncategorized/saChoosesOwnJob.tw @@ -278,10 +278,10 @@ <</if>> <<elseif ($PC.dick == 1) && isFertile($slaves[$i])>> <<if ($universalRulesAssignsSelfFacility == 1) && ($masterSuite > $masterSuiteSlaves)>> - <<set $slaves[$i].choosesOwnAssignmentText += " decides to serve you in $masterSuiteName, hoping that you'll get $his pregnant.">> + <<set $slaves[$i].choosesOwnAssignmentText += " decides to serve you in $masterSuiteName, hoping that you'll get $him pregnant.">> <<= assignJob($slaves[$i], "serve in the master suite")>> <<else>> - <<set $slaves[$i].choosesOwnAssignmentText += " decides to be your fucktoy, hoping that you'll get $his pregnant.">> + <<set $slaves[$i].choosesOwnAssignmentText += " decides to be your fucktoy, hoping that you'll get $him pregnant.">> <<= assignJob($slaves[$i], "please you")>> <</if>> <<elseif ($universalRulesAssignsSelfFacility == 1) && ($dairyPregSetting > 0) && ($dairy > $dairySlaves) && isFertile($slaves[$i])>> diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw index 76faf6f53913fdd2c6bf47005fdac7f531e4bd87..db7012e3640185bc122d65de10f5cab43241e5d1 100644 --- a/src/uncategorized/saDevotion.tw +++ b/src/uncategorized/saDevotion.tw @@ -903,23 +903,23 @@ <<else>> /* IS FUCKDOLL */ -It is confined in a suit that limits its perception of the outside world to tonal commands from the suit itself and things that are inserted into its mouth<<if $activeSlave.vagina > -1>>, vagina,<</if>> and anus. +$He is confined in a suit that limits $his perception of the outside world to tonal commands from the suit itself and things that are inserted into $his mouth<<if $activeSlave.vagina > -1>>, vagina,<</if>> and anus. <<if $slaves[$i].sexualFlaw == "self hating">> - Its self hatred @@.gold;cannot eliminate the growing fear@@ engendered by its remaining spark of self-preservation. + $His self hatred @@.gold;cannot eliminate the growing fear@@ engendered by $his remaining spark of self-preservation. <<set $slaves[$i].trust -= 5>> <<elseif $slaves[$i].trust > 50>> - It still hopes you'll let it out of its suit so it can be your good slave again, but @@.gold;fear and doubt creep in@@ by the minute. And there are a lot of them. + $He still hopes you'll let $him out of $his suit so $he can be your good slave again, but @@.gold;fear and doubt creep in@@ by the minute. And there are a lot of them. <<else>> - With little to do but <<if $activeSlave.fuckdoll <= 60>>wonder if it's about to be used<<else>>desperately hope it'll be used soon<</if>>, it dwells on the @@.gold;horrible fear@@ that this dark existence will be perpetual. + With little to do but <<if $activeSlave.fuckdoll <= 60>>wonder if $he's about to be used<<else>>desperately hope $he'll be used soon<</if>>, $he dwells on the @@.gold;horrible fear@@ that this dark existence will be perpetual. <</if>> <<set $slaves[$i].trust -= 10>> <<if $slaves[$i].sexualFlaw == "self hating">> - It knows to its core that it deserves this, @@.mediumorchid;slowing but not stopping its descent into depression.@@ + $He knows to $his core that $he deserves this, @@.mediumorchid;slowing but not stopping $his descent into depression.@@ <<set $slaves[$i].devotion += 5>> <<elseif $slaves[$i].devotion > 50>> - It spirals through @@.mediumorchid;obsessive depression,@@ wondering what it did to deserve this fate. + $He spirals through @@.mediumorchid;obsessive depression,@@ wondering what $he did to deserve this fate. <<else>> - In the silence and darkness between the times it's used, it has little to do but @@.mediumorchid;hate you.@@ + In the silence and darkness between the times $he's used, $he has little to do but @@.mediumorchid;hate you.@@ <</if>> <<set $slaves[$i].devotion -= 10>> diff --git a/src/uncategorized/saGuardsYou.tw b/src/uncategorized/saGuardsYou.tw index cf1fd75a450c8d92f7c6372742eec0ad44960b3b..3706eab30aa69ca177c138918b78d8e93a2ad52c 100644 --- a/src/uncategorized/saGuardsYou.tw +++ b/src/uncategorized/saGuardsYou.tw @@ -75,7 +75,7 @@ carries arms in your defense. <<if $slaves[$i].weight > 190>> $His extreme weight nearly immobilizes $him. $He struggles to move let alone protect you. At least $his bloated body will likely stop bullets and block doorways when needed. <<elseif $slaves[$i].weight > 160>> - $His extreme weight limits $his mobility and range of motion making $him a poor bodyguard but decent meatshield. + $His extreme weight limits $his mobility and range of motion, making $him a poor bodyguard but decent meatshield. <<elseif $slaves[$i].weight > 130>> $His extreme weight is an impediment as a bodyguard. <<elseif $slaves[$i].weight > 30>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 8206c8c2b44cbadb3cd9e4887672c93a888c45f8..a7d970fa6f00a65a67cda949a6b21d07c6051f08 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -866,7 +866,7 @@ <<if ($slaves[$i].sexualQuirk == "none")>> <<if ($slaves[$i].sexualFlaw == "hates anal")>> <<if $slaves[$i].anusPiercing>> - The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hangups, @@.green;softening $his hatred of anal into an appetite for anal pain.@@ $He still struggles if $he's fucked in the ass, but $he gets off on it anyway. + The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hang-ups, @@.green;softening $his hatred of anal into an appetite for anal pain.@@ $He still struggles if $he's fucked in the ass, but $he gets off on it anyway. <<run SoftenSexualFlaw($slaves[$i])>> <<elseif ($slaves[$i].fetish == "buttslut")>> $His sexual fascination with things entering $his asshole @@.green;softens $his hatred of anal into an appetite for anal pain.@@ $He still struggles if $he's fucked in the ass, but $he gets off on it anyway. @@ -877,7 +877,7 @@ <</if>> <<elseif ($slaves[$i].sexualFlaw == "hates oral")>> <<if $slaves[$i].tonguePiercing>> - $He can't stop sucking on $his tongue piercings, and $he gets over $his oral hangups, @@.green;softening $his hatred of oral into a willingness to be roughly throatfucked.@@ $He still gags, but it's a good gagging, now. + $He can't stop sucking on $his tongue piercings, and $he gets over $his oral hang-ups, @@.green;softening $his hatred of oral into a willingness to be roughly throatfucked.@@ $He still gags, but it's a good gagging, now. <<run SoftenSexualFlaw($slaves[$i])>> <<elseif ($slaves[$i].fetish == "cumslut")>> $He can't get $his beloved cum without choking down dick, so $he @@.green;softens $his hatred of oral into a willingness to be roughly throatfucked.@@ $He still gags, but it's a good gagging, now. @@ -952,7 +952,7 @@ <<else>> <<if ($slaves[$i].sexualFlaw == "hates anal")>> <<if $slaves[$i].anusPiercing>> - The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hangups, so @@.green;$his previous hesitations about buttsex vanish.@@ + The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hang-ups, so @@.green;$his previous hesitations about buttsex vanish.@@ <<set $slaves[$i].sexualFlaw = "none">> <<elseif ($slaves[$i].fetish == "buttslut")>> $His sexual fascination with things entering $his asshole overcomes $his professed hatred of anal, so @@.green;$his previous hesitations about buttsex vanish.@@ @@ -963,7 +963,7 @@ <</if>> <<elseif ($slaves[$i].sexualFlaw == "hates oral")>> <<if $slaves[$i].tonguePiercing>> - $He can't stop sucking on $his tongue piercings, so @@.green;$he gets over $his oral hangups.@@ + $He can't stop sucking on $his tongue piercings, so @@.green;$he gets over $his oral hang-ups.@@ <<set $slaves[$i].sexualFlaw = "none">> <<elseif ($slaves[$i].fetish == "cumslut")>> $He can't get $his beloved cum without sucking, so @@.green;$he forcibly overcomes $his strong gag reflex.@@ @@ -3558,7 +3558,7 @@ <</if>> <<default>> /* random impregnation chance on other assignments - consider relationships first */ - <<if ["masturbation", "chastity"].includes($slaves[$i].releaseRules) && $slaves[$i].devotion <= 50>> + <<if !["masturbation", "chastity"].includes($slaves[$i].releaseRules) || $slaves[$i].devotion <= 50>> <<if (_conceptionSeed > 80) && (($slaves[$i].vaginalCount > 0) || ($slaves[$i].analCount > 0 && $slaves[$i].mpreg > 0))>> /* TODO: compare to previous week totals? */ <<if $slaves[$i].relationshipTarget > 0>> <<set _tempLover = getSlave($slaves[$i].relationshipTarget)>> @@ -3570,14 +3570,14 @@ <<set _tempSub = getSlave($slaves[$i].subTarget)>> <<if ndef _tempSub>>@@.red;Error, subTarget not found.@@<</if>> <</if>> - <<if (($slaves[$i].relationship == -3) || ($slaves[$i].relationship == -2)) && canImpreg($slaves[$i], $PC)>> + <<if (($slaves[$i].relationship == -3) || ($slaves[$i].relationship == -2)) && canImpreg($slaves[$i], $PC) && !["masturbation", "chastity"].includes($slaves[$i].releaseRules)>> <<set $slaves[$i].pregSource = -1>> <<elseif ($slaves[$i].relationship > 2) && canImpreg($slaves[$i], _tempLover)>> /* erection not needed for impregnation via consensual sex play (FWB or better) */ <<set $slaves[$i].pregSource = _tempLover.ID>> <<elseif ($slaves[$i].subTarget != 0) && ($slaves[$i].assignment == "be a subordinate slave") && canAchieveErection(_tempSub) && canImpreg($slaves[$i], _tempSub)>> /* subordinate must have erection to impregnate target */ <<set $slaves[$i].pregSource = _tempSub.ID>> <<elseif (random(1,100) > 95) && ($slaves[$i].rivalry > 2) && canAchieveErection(_tempRival) && canImpreg($slaves[$i], _tempRival)>> /* 5% chance to be raped and knocked up by bitter rival - erection needed */ - Driven by the bitter rivalry between them, _tempRival.slaveName successfully overpowers $slaves[$i].slaveName and rapes $him, cumming deep in $his fertile <<if $slaves[$i].mpreg == 1>>asshole<<else>>pussy<</if>> whenever $he chooses. By the end of the week, $slaves[$i].slaveName is vowing revenge as $he regains confidence. + Driven by the bitter rivalry between them, _tempRival.slaveName successfully manages to overpower $slaves[$i].slaveName and rape $him, cumming deep in $his fertile <<if $slaves[$i].mpreg == 1>>asshole<<else>>pussy<</if>>. By the end of the week, $slaves[$i].slaveName is vowing revenge as $he regains confidence. <<set $slaves[$i].pregSource = _tempRival.ID>> <<elseif (random(1,100) > 60) && canImpreg($slaves[$i], $PC) && !["masturbation", "chastity"].includes($slaves[$i].releaseRules)>> /* still 40% chance of impregnation by PC */ <<set $slaves[$i].pregSource = -1>> @@ -4282,7 +4282,7 @@ <<case "work in the brothel">><<run getSlaveStatisticData($slaves[$i], $facility.brothel).rep -= $FSSingleSlaveRep*($arcologies[0].FSSupremacist/$FSLockinLevel)>> <</switch>> <<elseif ($slaves[$i].assignment == "be your Head Girl")>> - Society @@.green;strongly approves@@ of your keeping a slave of the $arcologies[0].FSSupremacistRace race in a position of leadership as your head girl, advancing the notion that those of the $arcologies[0].FSSupremacistRace race should be in positions of authority over others. + Society @@.green;strongly approves@@ of your keeping a slave of the $arcologies[0].FSSupremacistRace race in a position of leadership as your Head Girl, advancing the notion that those of the $arcologies[0].FSSupremacistRace race should be in positions of authority over others. <<= FSChangePorn("Supremacist", 2)>> <<elseif ($slaves[$i].assignment == "recruit girls")>> Society @@.green;strongly approves@@ of your keeping a slave of the $arcologies[0].FSSupremacistRace race in a position of leadership as your recruiter, advancing the notion that it is only natural that those of the $arcologies[0].FSSupremacistRace race should lead the charge in enslaving others. @@ -7240,7 +7240,7 @@ <<set $repGain += (100*$slaves[$i].pornPrestige)>> <<set _donations = Math.floor($slaves[$i].pornFame/(random(13,20)))+(random(-5000,5000))>> <<if _donations > 0>> - A number of gifts and donations totalling @@.yellowgreen;<<print cashFormat(_donations)>>@@ were also sent to $him, among other things. + A number of gifts and donations totaling @@.yellowgreen;<<print cashFormat(_donations)>>@@ were also sent to $him, among other things. <<set $cash += _donations>> <</if>> <<elseif $slaves[$i].pornFeed > 0>> @@ -7421,7 +7421,7 @@ <<elseif $slaves[$i].fetish == "pregnancy">> $He is @@.mediumorchid;filled with deep regret@@ and @@.gold;fear.@@ <<if $slaves[$i].fetishKnown == 1>> - To a pregnancy fetishest, ending it like this hurts far worse than birth ever would. + To a pregnancy fetishist, ending it like this hurts far worse than birth ever would. <<else>> It appears $he was more attached to $his baby bump than $he let on and is hurting even more for it. <</if>> diff --git a/src/uncategorized/saPleaseYou.tw b/src/uncategorized/saPleaseYou.tw index 344dbc2ac907799f96fb8101c7f1557c38cce1c4..382fa934b5ab0181d6d61d5f204cefebf89e7b7f 100644 --- a/src/uncategorized/saPleaseYou.tw +++ b/src/uncategorized/saPleaseYou.tw @@ -273,7 +273,7 @@ serves you this week. <</if>> <<set $slaves[$i].analCount += _analUse, $analTotal += _analUse>> <<else>> - You keep $him with you all week, using it as your personal sex toy + You keep $him with you all week, using $him as your personal sex toy <<if ($fuckSlaves <= $PC.sexualEnergy/2)>> <<set _analUse = random(21,40)>> several times a day. @@ -284,7 +284,7 @@ serves you this week. <<set _analUse = random(3,7)>> on occasion. <</if>> - When you're not using it, it <<if $activeSlave.amp > 0>>rests<<else>>stands<</if>> nearby, waiting silently for your order to present its asshole. + When you're not using $him, $he <<if $activeSlave.amp > 0>>rests<<else>>stands<</if>> nearby, waiting silently for your order to present its asshole. <<if $PC.dick == 1>> <<set _cervixPump = _analUse>> <<if canImpreg($slaves[$i], $PC)>> diff --git a/src/uncategorized/saRecruitGirls.tw b/src/uncategorized/saRecruitGirls.tw index 0589962ccc3ad7caa68a6f517e9658d33795ff42..84e7c6456b4346db4bbf6490dec7fed832f530ae 100644 --- a/src/uncategorized/saRecruitGirls.tw +++ b/src/uncategorized/saRecruitGirls.tw @@ -1029,7 +1029,7 @@ <<elseif $arcologies[0].FSArabianRevivalist != "unset">> <<if $masterSuiteDecoration == "Arabian Revivalist" && $masterSuiteUpgradeLuxury > 0 && $masterSuiteAverageEnergy > 60>> <<if $masterSuiteSlaves >= 3>> - An exposé that "pulls back the curtain" on your elaborate master bedroom goes viral after several harem slaves drag $him into <<if $masterSuiteUpgradeLuxury == 1>>four-way action with their <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>master<<else>>mistress<</if>><<else>>a fuck pit daisy chain<</if>> and another takes over the filming. + An exposé that "pulls back the curtain" on your elaborate master bedroom goes viral after several harem slaves drag $him into <<if $masterSuiteUpgradeLuxury == 1>>four-way action with their <<= properMaster()>><<else>>a fuck pit daisy chain<</if>> and another takes over the filming. <<else>> $He makes a short video essay about your elaborate master suite, but the empty space unfilled by luscious slave bodies fails to impress. <</if>> diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw index 2a973971ea022abce6727e4d1990c6777c5d0d21..fb70c4cbcf7597fa01b90cfe706facdc968b5394 100644 --- a/src/uncategorized/saRelationships.tw +++ b/src/uncategorized/saRelationships.tw @@ -2,34 +2,36 @@ <<if $slaves[$i].fuckdoll == 0>> <<set _SL = $slaves.length, _SlaveI = $slaves[$i], _SlaveJ = null, _drop = 0>> + <<setLocalPronouns _SlaveI>> <<if _SlaveI.relationship == 0 && _SlaveI.fetish != "mindbroken">> <<if (_SlaveI.devotion + _SlaveI.trust > 175) && (random(1,3) == 1)>> - _SlaveI.slaveName is quite devoted to you, and trusts both you and her place as a slave. Since she does not have a strong relationship with another slave, + _SlaveI.slaveName is quite devoted to you, and trusts both you and $his place as a slave. Since $he does not have a strong relationship with another slave, <<if (_SlaveI.sexualQuirk == "romantic")>> - and persistently interprets sex in the most romantic possible terms, she has decided that she wants to be yours in her heart as well as her <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;She's become emotionally bonded to you!@@ + and persistently interprets sex in the most romantic possible terms, $he has decided that $he wants to be yours in $his heart as well as $his <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif (_SlaveI.assignment == "be your Concubine")>> - and is your concubine, she almost inevitably comes to view you as much as a lover as an owner. @@.lightgreen;She's become emotionally bonded to you!@@ + and is your concubine, $he almost inevitably comes to view you as much as a lover as an owner. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif ($masterSuiteUpgradeLuxury == 2) && (_SlaveI.assignment == "serve in the master suite")>> - and does nothing but eat, sleep, and make love to your other fucktoys, she slowly loses sight of any distinction between emotional attachment and sexual congress. @@.lightgreen;She's become an emotional slut!@@ + and does nothing but eat, sleep, and make love to your other fucktoys, $he slowly loses sight of any distinction between emotional attachment and sexual congress. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<elseif (_SlaveI.assignment == "please you") || (_SlaveI.assignment == "serve in the master suite")>> - and spends her days worshipping your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, she begins to focus more and more of her happiness on how happy you are. @@.lightgreen;She's become emotionally bonded to you!@@ + and spends $his days worshipping your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, $he begins to focus more and more of $his happiness on how happy you are. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif (_SlaveI.assignment == "serve the public") || (_SlaveI.assignment == "serve in the club")>> - and her life is an endless stream of lovers, she unconsciously loses any sense of emotional attachment outside the intimacy of sex. @@.lightgreen;She's become an emotional slut!@@ + and $his life is an endless stream of lovers, $he unconsciously loses any sense of emotional attachment outside the intimacy of sex. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<elseif (_SlaveI.energy > 95) && ((_SlaveI.analCount + _SlaveI.vaginalCount + _SlaveI.oralCount + _SlaveI.mammaryCount + _SlaveI.penetrativeCount) > ($week - _SlaveI.weekAcquired) * random(20, 30))>> - is a total sex addict, and has a spectacularly promiscuous sexual history, she begins to think of sex as her only meaningful emotional connection with people. @@.lightgreen;She's become an emotional slut!@@ + is a total sex addict, and has a spectacularly promiscuous sexual history, $he begins to think of sex as $his only meaningful emotional connection with people. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<else>> - and loves you, she begins to think of you as a woman might think of her lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. She knows she cannot hope for more of a relationship with you than she has, but she finds emotional support in serving you nonetheless. @@.lightgreen;She's become emotionally bonded to you!@@ + and loves you, $he begins to think of you as a $woman might think of $his lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <</if>> <<elseif _SlaveI.career == "a Futanari Sister" && _SlaveI.relationshipRules == "permissive">> <<for _j = 0; _j < _SL; _j++>> <<set _SlaveJ = $slaves[_j]>> + <<setLocalPronouns _SlaveJ 2>> <<if (_SlaveJ.career == "a Futanari Sister") && _SlaveJ.relationshipRules == "permissive" && (_SlaveJ.relationship == 0) && (_SlaveI.rivalryTarget != _SlaveJ.ID) && (_SlaveJ.ID != _SlaveI.ID) && _SlaveJ.fetish != "mindbroken">> _SlaveI.slaveName greets _SlaveJ.slaveName with joy. It's not clear whether they ever knew each other during their lives as Futanari Sisters, but it seems that they believe themselves to be in a relationship by simple virtue of having been Sisters. In any case, _SlaveI.slaveName and _SlaveJ.slaveName @@.lightgreen;become inseparable lovers@@ instantly, as though there's no possibility they would do anything else. They're even surprised when other slaves ask them about it; it's as though they're unaware that other possibilities even exist. <<set _SlaveJ.relationship = 4, _SlaveJ.relationshipTarget = _SlaveI.ID, _SlaveI.relationship = 4, _SlaveI.relationshipTarget = _SlaveJ.ID>> @@ -42,8 +44,9 @@ <<elseif (_SlaveI.origin == "You were acquainted with her before you were an arcology owner; your rival tried to use her to manipulate you, but you rescued her.") && ($rivalryDuration > 20) && (($rivalryFS != "Racial Supremacism") || ($rivalryFS != "Paternalism")) && _SlaveI.newGamePlus == 0>> <<for _j = 0; _j < _SL; _j++>> <<set _SlaveJ = $slaves[_j]>> + <<setLocalPronouns _SlaveJ 2>> <<if _SlaveJ.fetish != "mindbroken" && _SlaveJ.prestigeDesc == "You bankrupted and enslaved her in revenge for her part in the attack on your arcology by the Daughters of Liberty.">> - _SlaveI.slaveName greets _SlaveJ.slaveName with joy, happy to see her former owner again. Without any regard to you, they continue their prior relationship. + _SlaveI.slaveName greets _SlaveJ.slaveName with joy, happy to see $his former owner again. Without any regard to you, they continue their prior relationship. <<if _SlaveJ.relationship > 0>> <<set _k = $slaveIndices[_SlaveJ.relationshipTarget]>> <<if def _k>> @@ -68,6 +71,7 @@ <<set $resentment = 0>> <<for _j = 0; _j < _SL; _j++>> <<set _SlaveJ = $slaves[_j]>> + <<setLocalPronouns _SlaveJ 2>> <<if (_SlaveJ.ID != _SlaveI.ID) && (_SlaveJ.relationship == 0) && (_SlaveI.rivalryTarget != _SlaveJ.ID) && (_SlaveJ.assignment != "stay confined") && (_SlaveJ.fetish != "mindbroken")>> <<if (_SlaveJ.ID == $Madam.ID) && (_SlaveI.assignment == "work in the brothel")>> <<if _SlaveJ.relationshipRules != "restrictive">> @@ -153,7 +157,7 @@ <<break>> <<else>> <<if _SlaveI.devotion < -20>> - _SlaveI.slaveName tries to strike up a friendship with the Wardeness, _SlaveJ.slaveName and is @@.gold;beaten@@ by _SlaveJ.slaveName for her trouble. + _SlaveI.slaveName tries to strike up a friendship with the Wardeness, _SlaveJ.slaveName and is @@.gold;beaten@@ by _SlaveJ.slaveName for $his trouble. <<set _SlaveI.trust -= 5>> <</if>> <</if>> @@ -176,7 +180,7 @@ <<break>> <<else>> <<if $resentment == 0>> - _SlaveI.slaveName tries to strike up a friendship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; she @@.mediumorchid;resents@@ being castigated for simple sociability. + _SlaveI.slaveName tries to strike up a friendship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; $he @@.mediumorchid;resents@@ being castigated for simple sociability. <<set _SlaveI.devotion -= 2, _SlaveI.trust -= 2, $resentment++>> <</if>> <</if>> @@ -188,7 +192,7 @@ <<set _SlaveJ.relationship = 1, _SlaveJ.relationshipTarget = _SlaveI.ID, _SlaveI.relationship = 1, _SlaveI.relationshipTarget = _SlaveJ.ID>> <<break>> <<else>> - _SlaveI.slaveName tries to renew her relationship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; she @@.mediumorchid;resents@@ being prevented from reuniting with her. + _SlaveI.slaveName tries to renew $his relationship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; $he @@.mediumorchid;resents@@ being prevented from reuniting with _him2. <<set _SlaveI.devotion -= 2, _SlaveI.trust -= 2>> <</if>> <</if>> @@ -218,6 +222,7 @@ <<set _J = $slaveIndices[_SlaveI.relationshipTarget]>> <<if def _J>> <<set _SlaveJ = $slaves[_J], _SlaveJ.relationshipTarget = _SlaveI.ID, _SlaveJ.relationship = _SlaveI.relationship>> + <<setLocalPronouns _SlaveJ 2>> <</if>> <<if (_SlaveI.relationship > 0) && (_SlaveJ == null)>> <br>@@.red;_SlaveI.slaveName's relationship was _SlaveI.relationship and relationshipTarget was _SlaveI.relationshipTarget but no slave with that ID was found@@<br> @@ -231,7 +236,7 @@ <</if>> <</if>> <<if _SlaveI.fetish == "mindbroken" && _SlaveI.relationship != -3>> - Since she is mindbroken, she @@.lightsalmon;can't really maintain@@ any meaningful relationship with + Since $he is mindbroken, $he @@.lightsalmon;can't really maintain@@ any meaningful relationship with <<if _SlaveJ != null>> _SlaveJ.slaveName <<set _SlaveJ.relationship = 0, _SlaveJ.relationshipTarget = 0>> @@ -262,7 +267,7 @@ <</if>> <<elseif _SlaveI.relationship == -2>> <<if _SlaveI.mother == -1>> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own mother. <<set _SlaveI.devotion += 1>> @@ -328,9 +333,9 @@ <</if>> <</if>> <<elseif _SlaveI.father == -1>> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> - is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own father. + is such a pervert that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own father. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> is so inured to the perversities of slavery that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own father. @@ -394,9 +399,9 @@ <</if>> <</if>> <<elseif $PC.mother == _SlaveI.ID || $PC.father == _SlaveI.ID>> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> - is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is such a pervert that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> is so inured to the perversities of slavery that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. @@ -476,9 +481,9 @@ <<set _PCrelative = "half-sister">> <</if>> <</if>> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> - is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own _PCrelative. + is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> is so inured to the perversities of slavery that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own _PCrelative. @@ -553,7 +558,7 @@ <</if>> <<if _SlaveI.relationship == -2>> <<switch _SlaveI.assignment>> - <<case "be a servant" "work as a servant" "serve in the master suite" "please you" "be your Concubine">> + <<case "be a servant" "be your Concubine" "please you" "serve in the master suite" "work as a servant">> She is @@.hotpink;happy@@ to be allowed to serve you personally, since it's as close a relationship to you as she can aspire to. In addition, her deep love for you produces a slow but steady increase of both @@.hotpink;devotion@@ and @@.mediumaquamarine;trust.@@ <<set _SlaveI.devotion++, _SlaveI.trust++>> <<default>> @@ -663,13 +668,13 @@ <<elseif _SlaveI.devotion > 95>> She occasionally remembers that she's carrying her father's child<<if _SlaveI.pregType > 1>>ren<</if>>, but does her best to accept it by not thinking about it. <<elseif _SlaveI.devotion > 50>> - She's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her father's, though she tries her best not to think about it. + $He's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his father's, though $he tries $his best not to think about it. <<set _SlaveI.devotion -= 1>> <<elseif _SlaveI.devotion > 20>> - She's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her father's that she often wakes up crying about it. + $He's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his father's that $he often wakes up crying about it. <<set _SlaveI.devotion -= 2>> <<else>> - She's @@.mediumorchid;passionately hateful@@ of you for making her carry an incestuous pregnancy. + $He's @@.mediumorchid;passionately hateful@@ of you for making $him carry an incestuous pregnancy. <<set _SlaveI.devotion -= 4>> <</if>> <</if>> @@ -695,47 +700,47 @@ <</if>> <</if>> <<elseif ($PC.mother == _SlaveI.ID || $PC.father == _SlaveI.ID) && _SlaveI.fetish != "mindbroken">> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> - is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is such a pervert that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - is so inured to the perversities of slavery that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is so inured to the perversities of slavery that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - is torn between sinful delight and deep disgust that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is torn between sinful delight and deep disgust that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<elseif _SlaveI.devotion > 75>> - is so devoted to you that she accepts carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is so devoted to you that $he accepts carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<elseif _SlaveI.devotion > 50>> - is somewhat @@.mediumorchid;disturbed@@ that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is somewhat @@.mediumorchid;disturbed@@ that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion -= 2>> <<elseif _SlaveI.devotion > 20>> - is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion -= 2>> <<set _SlaveI.trust -= 2>> <<else>> - is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion -= 4>> <<set _SlaveI.trust -= 4>> <</if>> <<if _SlaveI.pregKnown == 1>> <<if _SlaveI.pregSource == -1>> <<if _SlaveI.sexualQuirk == "perverted">> - She's even @@.hotpink;aroused@@ by the constant awareness that her <<if $PC.title == 1>>son<<else>>daughter<</if>> is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> she's carrying. + $He's even @@.hotpink;aroused@@ by the constant awareness that $his <<if $PC.title == 1>>son<<else>>daughter<</if>> is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> $he's carrying. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - Her feelings about carrying her <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. + $His feelings about carrying $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - She occasionally remembers that she's carrying her <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does her best to accept it by not thinking about it. + $He occasionally remembers that $he's carrying $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does $his best to accept it by not thinking about it. <<elseif _SlaveI.devotion > 50>> - She's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<if $PC.title == 1>>son<<else>>daughter<</if>>'s, though she tries her best not to think about it. + $He's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s, though $he tries $his best not to think about it. <<set _SlaveI.devotion -= 1>> <<elseif _SlaveI.devotion > 20>> - She's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<if $PC.title == 1>>son<<else>>daughter<</if>>'s that she often wakes up crying about it. + $He's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s that $he often wakes up crying about it. <<set _SlaveI.devotion -= 2>> <<else>> - She's @@.mediumorchid;passionately hateful@@ of you for making her carry an incestuous pregnancy. + $He's @@.mediumorchid;passionately hateful@@ of you for making $him carry an incestuous pregnancy. <<set _SlaveI.devotion -= 4>> <</if>> <</if>> @@ -777,47 +782,47 @@ <<set _PCrelative = "half-sister">> <</if>> <</if>> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> - is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own _PCrelative. + is such a pervert that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - is so inured to the perversities of slavery that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own _PCrelative. + is so inured to the perversities of slavery that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - is torn between sinful delight and deep disgust that she's carrying on an incestuous relationship with her own _PCrelative. + is torn between sinful delight and deep disgust that $he's carrying on an incestuous relationship with $his own _PCrelative. <<elseif _SlaveI.devotion > 75>> - is so devoted to you that she accepts carrying on an incestuous relationship with her own _PCrelative. + is so devoted to you that $he accepts carrying on an incestuous relationship with $his own _PCrelative. <<elseif _SlaveI.devotion > 50>> - is somewhat @@.mediumorchid;disturbed@@ that she's carrying on an incestuous relationship with her own _PCrelative. + is somewhat @@.mediumorchid;disturbed@@ that $he's carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion -= 2>> <<elseif _SlaveI.devotion > 20>> - is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own _PCrelative. + is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion -= 2>> <<set _SlaveI.trust -= 2>> <<else>> - is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own _PCrelative. + is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion -= 4>> <<set _SlaveI.trust -= 4>> <</if>> <<if _SlaveI.pregKnown == 1>> <<if _SlaveI.pregSource == -1>> <<if _SlaveI.sexualQuirk == "perverted">> - She's even @@.hotpink;aroused@@ by the constant awareness that her _PCrelative is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> she's carrying. + $He's even @@.hotpink;aroused@@ by the constant awareness that $his _PCrelative is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> $he's carrying. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - Her feelings about carrying her <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. + $His feelings about carrying $his <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - She occasionally remembers that she's carrying her <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does her best to accept it by not thinking about it. + $He occasionally remembers that $he's carrying $his <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does $his best to accept it by not thinking about it. <<elseif _SlaveI.devotion > 50>> - She's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<print _PCrelative>>'s, though she tries her best not to think about it. + $He's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<print _PCrelative>>'s, though $he tries $his best not to think about it. <<set _SlaveI.devotion -= 1>> <<elseif _SlaveI.devotion > 20>> - She's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<print _PCrelative>>'s that she often wakes up crying about it. + $He's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<print _PCrelative>>'s that $he often wakes up crying about it. <<set _SlaveI.devotion -= 2>> <<else>> - She's @@.mediumorchid;passionately hateful@@ of you for making her carry an incestuous pregnancy. + $He's @@.mediumorchid;passionately hateful@@ of you for making $him carry an incestuous pregnancy. <<set _SlaveI.devotion -= 4>> <</if>> <</if>> @@ -954,15 +959,15 @@ <<case 1>> /% friends %/ is friends with _SlaveJ.slaveName. <<if (_SlaveI.devotion + _SlaveI.trust > 170) && (random(1, 2) == 1)>> - She's very devoted to you, and strongly trusts both you and her place as a slave. Since she is just friends with _SlaveJ.slaveName, + $He's very devoted to you, and strongly trusts both you and $his place as a slave. Since $he is just friends with _SlaveJ.slaveName, <<if _SlaveI.sexualQuirk == "romantic">> - and persistently interprets sex in the most romantic possible terms, she has decided that she wants to be yours in her heart as well as her <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;She's become emotionally bonded to you!@@ + and persistently interprets sex in the most romantic possible terms, $he has decided that $he wants to be yours in $his heart as well as $his <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif _SlaveI.energy > 90>> - and is a total sex addict, she begins to think of sex as her only meaningful emotional connection with people. @@.lightgreen;She's become an emotional slut!@@ + and is a total sex addict, $he begins to think of sex as her only meaningful emotional connection with people. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<else>> - and loves you, she begins to think of you as a woman might think of her lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. She knows she cannot hope for more of a relationship with you than she has, but she finds emotional support in serving you nonetheless. @@.lightgreen;She's become emotionally bonded to you!@@ + and loves you, $he begins to think of you as a $woman might think of $his lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <</if>> <<set _SlaveJ.relationship = 0, _SlaveJ.relationshipTarget = 0, _SlaveI.relationshipTarget = 0>> @@ -1021,7 +1026,7 @@ Driven by nymphomania to attempt to have sex with everyone, _SlaveI.slaveName successfully seduces _SlaveJ.slaveName and they become @@.lightgreen;friends with benefits.@@ <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif $familyTesting == 1 && (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.mother == _SlaveJ.ID || _SlaveI.father == _SlaveJ.ID || _SlaveJ.mother == _SlaveI.ID || _SlaveJ.father == _SlaveI.ID || areSisters(_SlaveI, _SlaveJ) > 0) && (random(1,100) > (80-_seed))>> - Revelling in the taboo nature of her attraction to _SlaveJ.slaveName, _SlaveI.slaveName successfully seduces her and they become @@.lightgreen;friends with benefits.@@ + Reveling in the taboo nature of $his attraction to _SlaveJ.slaveName, _SlaveI.slaveName successfully seduces _him2 and they become @@.lightgreen;friends with benefits.@@ <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.relation != 0) && (_SlaveI.relationTarget == _SlaveI.relationshipTarget) && (random(1, 100) > (80 - _seed))>> Reveling in the taboo nature of her attraction to _SlaveJ.slaveName, _SlaveI.slaveName successfully seduces her and they become @@.lightgreen;friends with benefits.@@ @@ -1069,17 +1074,17 @@ <<case 3>> /% FWB %/ keeps up a sexual friendship with _SlaveJ.slaveName. <<if _SlaveI.sexualQuirk == "romantic">> - Her romantic bent drives her to do her best to advance her relationship to an emotional level. + $His romantic bent drives $him to do $his best to advance $his relationship to an emotional level. <<set _seed = 10>> <</if>> <<if $familyTesting == 1 && _SlaveI.energy > 95 && (_SlaveI.mother == _SlaveJ.ID || _SlaveI.father == _SlaveJ.ID || _SlaveJ.mother == _SlaveI.ID || _SlaveJ.father == _SlaveI.ID || areSisters(_SlaveI, _SlaveJ) > 0) && (random(1,100) > (90-_seed))>> - She's such a desperate nympho that constant incest is nothing to her. She develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. + $He's such a desperate nympho that constant incest is nothing to $him. $He develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif (_SlaveI.energy > 95) && (_SlaveI.relation != 0) && (_SlaveI.relationTarget == _SlaveI.relationshipTarget) && (random(1, 100) > (90 - _seed))>> - She's such a desperate nympho that constant incest is nothing to her. She develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. + $He's such a desperate nympho that constant incest is nothing to $him. $He develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif $familyTesting == 1 && (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.mother == _SlaveJ.ID || _SlaveI.father == _SlaveJ.ID || _SlaveJ.mother == _SlaveI.ID || _SlaveJ.father == _SlaveI.ID || areSisters(_SlaveI, _SlaveJ) > 0) && (random(1,100) > (80-_seed))>> - Revelling in the taboo nature of her sexual relationship with _SlaveJ.slaveName, she not only enjoys _SlaveJ.slaveName's body, but looks after her pleasure, too. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. + Reveling in the taboo nature of $his sexual relationship with _SlaveJ.slaveName, $he not only enjoys _SlaveJ.slaveName's body, but looks after _his2 pleasure, too. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.relation != 0) && (_SlaveI.relationTarget == _SlaveI.relationshipTarget) && (random(1, 100) > (80 - _seed))>> Reveling in the taboo nature of her sexual relationship with _SlaveJ.slaveName, she not only enjoys _SlaveJ.slaveName's body, but looks after her pleasure, too. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. @@ -1344,30 +1349,30 @@ <<if _SlaveI.releaseRules != "restrictive" && _SlaveI.releaseRules != "masturbation" && _SlaveI.releaseRules != "chastity">> <<if (_SlaveI.sexualQuirk == "size queen") && (canPenetrate(_SlaveJ))>> <<if _SlaveJ.dick > 5>> - She's @@.hotpink;very happy@@ with her romantic status, since it means she gets monster cock. + $He's @@.hotpink;very happy@@ with $his romantic status, since it means $he regularly gets monster cock. <<if ((_SlaveI.anus > 0) && (_SlaveI.anus < 3))>> - She's such a size queen that she takes it up her ass as often as she can bear it, despite her poor anus not being used to such abuse. This @@.lime;stretches out her sphincter.@@ + $He's such a size queen that $he takes it up $his ass as often as $he can bear it, despite $his poor anus not being used to such abuse. This @@.lime;stretches out $his sphincter.@@ <<set _SlaveI.anus++>> <</if>> - For her part, _SlaveJ.slaveName @@.hotpink;can barely believe her luck,@@ their sex life is so good. + For _his2 part, _SlaveJ.slaveName @@.hotpink;can barely believe _his2 luck,@@ their sex life is so good. <<set _SlaveI.devotion += 2, _SlaveJ.devotion += 2>> <<elseif _SlaveJ.dick > 4>> - She @@.hotpink;quite likes@@ being in a sexual relationship with a slave who has such an impressive dick. + $He @@.hotpink;quite likes@@ being in a sexual relationship with a slave who has such an impressive dick. <<if ((_SlaveI.anus > 0) && (_SlaveI.anus < 2))>> - She's such a size queen that she takes it up her ass as often as she can bear it, despite her tight butt not being used to such abuse. This @@.lime;stretches out her sphincter.@@ + $He's such a size queen that $he takes it up $his ass as often as $he can bear it, despite $his tight butt not being used to such abuse. This @@.lime;stretches out $his sphincter.@@ <<set _SlaveI.anus++>> <</if>> - For her part, _SlaveJ.slaveName @@.hotpink;enjoys@@ the benefits of having a lover so interested in her junk. + For _his2 part, _SlaveJ.slaveName @@.hotpink;enjoys@@ the benefits of having a lover so interested in _his2 junk. <<set _SlaveI.devotion++, _SlaveJ.devotion++>> <<elseif _SlaveJ.dick > 3>> - _SlaveI.slaveName @@.hotpink;certainly doesn't mind@@ having reliable access to such a nice big dick. For her part, _SlaveJ.slaveName @@.hotpink;likes@@ having a lover who finds her penis appealing. + _SlaveI.slaveName @@.hotpink;certainly doesn't mind@@ having reliable access to such a nice big dick. For _his2 part, _SlaveJ.slaveName @@.hotpink;likes@@ having a lover who finds _his2 penis appealing. <<set _SlaveI.devotion++, _SlaveJ.devotion++>> <</if>> <</if>> <<if (_SlaveI.energy <= 90)>> <<if (_SlaveJ.energy > 95)>> - _SlaveJ.slaveName is such a sex addict that she drags _SlaveI.slaveName along with her in their enthusiastic sex life, @@.green;slowly improving her sex drive.@@ + _SlaveJ.slaveName is such a sex addict that _he2 drags _SlaveI.slaveName along with _him2 in their enthusiastic sex life, @@.green;slowly improving $his sex drive.@@ <<set _SlaveI.energy += 3>> <<elseif (_SlaveJ.fetish == _SlaveI.fetish) && (_SlaveJ.fetishKnown == 1) && (_SlaveI.fetishKnown == 1)>> _SlaveJ.slaveName and _SlaveI.slaveName enjoy sharing their sexual fetishes so much it @@.green;improves their sex drives@@ in proportion to the strength of their kinks. @@ -1376,7 +1381,7 @@ _SlaveI.slaveName is very much attracted to _SlaveJ.slaveName, and their fulfilling sexual relationship @@.green;gradually improves _SlaveI.slaveName's sex drive.@@ <<set _SlaveI.energy++>> <<elseif (_SlaveI.attrXY > 65) && (_SlaveI.attrKnown == 1) && (_SlaveJ.dick > 0)>> - _SlaveI.slaveName enjoys _SlaveJ.slaveName and her cock, and their fulfilling sexual relationship @@.green;gradually improves _SlaveI.slaveName's sex drive.@@ + _SlaveI.slaveName enjoys _SlaveJ.slaveName and _his2 cock, and their fulfilling sexual relationship @@.green;gradually improves _SlaveI.slaveName's sex drive.@@ <<set _SlaveI.energy++>> <</if>> <</if>> @@ -1393,13 +1398,13 @@ <<if ((_SlaveJ.fetish != "none") && (_SlaveJ.fetish != "mindbroken")) && (_SlaveI.fetishStrength <= 95) && (_SlaveJ.fetish != _SlaveI.fetish) && (fetishChangeChance(_SlaveI) > (random(0, 100) - (_SlaveI.relationship * 5)))>> <<switch _SlaveJ.fetish>> <<case "boobs">> - After experiencing _SlaveJ.slaveName's love of breasts, her own and _SlaveI.slaveName's, _SlaveI.slaveName happily joins her as a @@.lightcoral;boob fanatic.@@ + After experiencing _SlaveJ.slaveName's love of breasts, both _his2 own and _SlaveI.slaveName's, _SlaveI.slaveName happily joins _him2 as a @@.lightcoral;boob fanatic.@@ <<set _SlaveI.fetish = "boobs", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "buttslut">> - _SlaveJ.slaveName begs _SlaveI.slaveName to fuck her ass so many times that _SlaveI.slaveName reconsiders her stance on buttsex. She becomes just as much of an @@.lightcoral;anal slut@@ as _SlaveJ.slaveName. + _SlaveJ.slaveName begs _SlaveI.slaveName to fuck _his2 ass so many times that _SlaveI.slaveName reconsiders $his stance on buttsex. $He becomes just as much of an @@.lightcoral;anal slut@@ as _SlaveJ.slaveName. <<set _SlaveI.fetish = "buttslut", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "cumslut">> - After sharing blowjobs with _SlaveJ.slaveName enough times, _SlaveI.slaveName develops an @@.lightcoral;oral fixation@@ of her own. + After sharing blowjobs with _SlaveJ.slaveName enough times, _SlaveI.slaveName develops an @@.lightcoral;oral fixation@@ of $his own. <<set _SlaveI.fetish = "cumslut", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "submissive">> <<if (_SlaveI.fetish != "dom")>> @@ -1413,19 +1418,19 @@ <</if>> <<case "masochist">> <<if (_SlaveI.fetish != "sadist")>> - _SlaveJ.slaveName begs _SlaveI.slaveName to hurt her so many times that _SlaveI.slaveName gets used to sadism, and finds she likes it. She becomes just as much of an @@.lightcoral;sexual sadist@@ as a slave can be. + _SlaveJ.slaveName begs _SlaveI.slaveName to hurt _him2 so many times that _SlaveI.slaveName gets used to sadism, and finds $he likes it. $He becomes just as much of an @@.lightcoral;sexual sadist@@ as a slave can be. <<set _SlaveI.fetish = "sadist", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <</if>> <<case "sadist">> <<if (_SlaveI.fetish != "masochist")>> - _SlaveJ.slaveName hits _SlaveI.slaveName during sex so often that _SlaveI.slaveName starts to get off on being beaten. She becomes a true @@.lightcoral;masochist,@@ and loves _SlaveJ.slaveName all the more for abusing her. + _SlaveJ.slaveName hits _SlaveI.slaveName during sex so often that _SlaveI.slaveName starts to get off on being beaten. $He becomes a true @@.lightcoral;masochist,@@ and loves _SlaveJ.slaveName all the more for abusing $him. <<set _SlaveI.fetish = "masochist", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <</if>> <<case "humiliation">> - _SlaveJ.slaveName begs _SlaveI.slaveName to humiliate her sexually so many times that _SlaveI.slaveName can't help but be embarrassed by all the public sex, herself. She gets off on the @@.lightcoral;humiliation@@ with _SlaveJ.slaveName. + _SlaveJ.slaveName begs _SlaveI.slaveName to humiliate _him2 sexually so many times that _SlaveI.slaveName can't help but be embarrassed by all the public sex, $himself. $He gets off on the @@.lightcoral;humiliation@@ with _SlaveJ.slaveName. <<set _SlaveI.fetish = "humiliation", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "pregnancy">> - _SlaveJ.slaveName shares her hopes and dreams of pregnancy and children with _SlaveI.slaveName all the time, and _SlaveI.slaveName can't help but feel her @@.lightcoral;biological clock@@ tick in time with _SlaveJ.slaveName's. + _SlaveJ.slaveName shares _his2 hopes and dreams of pregnancy and children with _SlaveI.slaveName all the time, and _SlaveI.slaveName can't help but feel $his @@.lightcoral;biological clock@@ tick in time with _SlaveJ.slaveName's. <<set _SlaveI.fetish = "pregnancy", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <</switch>> <</if>> @@ -1435,13 +1440,13 @@ <<if (_SlaveJ.oralSkill > _SlaveI.oralSkill) || ((_SlaveJ.analSkill > _SlaveI.analSkill) && (_SlaveI.anus > 0)) || ((_SlaveJ.vaginalSkill > _SlaveI.vaginalSkill) && (_SlaveI.vagina > 0) && (_SlaveJ.vagina > 0)) || (_SlaveJ.trust > _SlaveI.trust)>> _SlaveI.slaveName's <<if _SlaveI.relationship >= 5>>wife<<else>>lover<</if>> is older, more experienced, and <<if (_SlaveJ.oralSkill > _SlaveI.oralSkill)>> - better at blowjobs than she is. They are such good slaves that the senior girl serves as a mentor to the junior, improving her oral skills. + better at blowjobs than $he is. They are such good slaves that the senior girl serves as a mentor to the junior, improving $his oral skills. <<set $skillIncrease = 5>><<OralSkillIncrease _SlaveI>> <<elseif (_SlaveJ.analSkill > _SlaveI.analSkill) && (_SlaveI.anus > 0)>> - better at taking a buttfuck than she is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving her anal skills. + better at taking a buttfuck than $he is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving $his anal skills. <<set $skillIncrease = 5>><<AnalSkillIncrease _SlaveI>> <<elseif (_SlaveJ.vaginalSkill > _SlaveI.vaginalSkill) && (_SlaveI.vagina > 0) && (_SlaveJ.vagina > 0)>> - a better lover than she is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving her vaginal skills. + a better lover than $he is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving $his vaginal skills. <<set $skillIncrease = 5>><<VaginalSkillIncrease _SlaveI>> <<elseif (_SlaveJ.trust > _SlaveI.trust)>> a better slave than she is, and they are such obedient slaves that the senior girl serves as a mentor to the junior, @@.mediumaquamarine;improving her trust.@@ @@ -1459,31 +1464,32 @@ <<if totalRelatives(_SlaveI) > 0 && _SlaveI.trust <= 95>> <<for _j = 0; _j < $slaves.length; _j++>> + <<setLocalPronouns $slaves[_j] 2>> <<if _SlaveI.trust < -20>> <<if $slaves[_j].mother == _SlaveI.ID || $slaves[_j].father == _SlaveI.ID>> <<if _SlaveI.rivalry != $slaves[_j].ID>> - _SlaveI.slaveName is @@.gold;agonizingly aware@@ that her child $slaves[_j].slaveName is also your slave and might suffer if either of them angers you, and @@.hotpink;does her best@@ to protect her. + _SlaveI.slaveName is @@.gold;agonizingly aware@@ that $his child $slaves[_j].slaveName is also your slave and might suffer if either of them angers you, and @@.hotpink;does $his best@@ to protect _him2. <<set _SlaveI.trust -= 2, _SlaveI.devotion += 6>> <</if>> <</if>> <<if _SlaveI.mother == $slaves[_j].ID || _SlaveI.father == $slaves[_j].ID || areSisters(_SlaveI, $slaves[_j]) > 0>> <<if _SlaveI.rivalry != $slaves[_j].ID>> <<if _SlaveI.mother == $slaves[_j].ID>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her mother $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his mother $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<elseif _SlaveI.father == $slaves[_j].ID>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her father $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his father $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<else>> <<switch areSisters(_SlaveI, $slaves[_j])>> <<case 1>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her twin sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his twin sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<case 2>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<case 3>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her half-sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his half-sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <</switch>> <</if>> @@ -1494,34 +1500,34 @@ <<if _SlaveI.mother == $slaves[_j].ID>> _SlaveI.slaveName knows that her mother $slaves[_j].slaveName <<if $slaves[_j].devotion > 50>> - loves being your sex slave, and is @@.hotpink;happy@@ for her. + loves being your sex slave, and is @@.hotpink;happy@@ for _him2. <<set _SlaveI.devotion += 4>> <<elseif ($slaves[_j].devotion > 20) || ($slaves[_j].trust < -20)>> - is an obedient sex slave, and hopes she'll avoid punishment. + is an obedient sex slave, and hopes _he2'll avoid punishment. <<else>> - hates being a sex slave, and is @@.gold;afraid@@ for her. + hates being a sex slave, and is @@.gold;afraid@@ for _him2. <<set _SlaveI.trust -= 1>> <</if>> <<elseif _SlaveI.father == $slaves[_j].ID>> - _SlaveI.slaveName knows that her father $slaves[_j].slaveName + _SlaveI.slaveName knows that $his father $slaves[_j].slaveName <<if $slaves[_j].devotion > 50>> - loves being your sex slave, and is @@.hotpink;happy@@ for her. + loves being your sex slave, and is @@.hotpink;happy@@ for _him2. <<set _SlaveI.devotion += 4>> <<elseif ($slaves[_j].devotion > 20) || ($slaves[_j].trust < -20)>> - is an obedient sex slave, and hopes she'll avoid punishment. + is an obedient sex slave, and hopes _he2'll avoid punishment. <<else>> - hates being a sex slave, and is @@.gold;afraid@@ for her. + hates being a sex slave, and is @@.gold;afraid@@ for _him2. <<set _SlaveI.trust -= 1>> <</if>> <<elseif $slaves[_j].mother == _SlaveI.ID || $slaves[_j].father == _SlaveI.ID>> - _SlaveI.slaveName knows that her daughter $slaves[_j].slaveName + _SlaveI.slaveName knows that $his daughter $slaves[_j].slaveName <<if $slaves[_j].devotion > 50>> - loves being your sex slave, and is @@.hotpink;happy@@ for her. + loves being your sex slave, and is @@.hotpink;happy@@ for _him2. <<set _SlaveI.devotion += 4>> <<elseif ($slaves[_j].devotion > 20) || ($slaves[_j].trust < -20)>> - is an obedient sex slave, and hopes she'll avoid punishment. + is an obedient sex slave, and hopes _he2'll avoid punishment. <<else>> - hates being a sex slave, and is @@.gold;afraid@@ for her. + hates being a sex slave, and is @@.gold;afraid@@ for _him2. <<set _SlaveI.trust -= 1>> <</if>> <<else>> @@ -1571,24 +1577,25 @@ <<if _SlaveI.rivalryTarget != _SlaveI.relationTarget>> <<set _K = $slaveIndices[_SlaveI.relationTarget]>> <<if def _K && _SlaveI.trust <= 95>> + <<setLocalPronouns $slaves[_K] 2>> _SlaveI.slaveName <<if _SlaveI.trust < -20>> <<if _SlaveI.relation == "mother">> - is @@.gold;agonizingly aware@@ that her child $slaves[_K].slaveName is also your slave and might suffer if either of them angers you, and @@.hotpink;does her best@@ to protect her. + is @@.gold;agonizingly aware@@ that $his child $slaves[_K].slaveName is also your slave and might suffer if either of them angers you, and @@.hotpink;does $his best@@ to protect _him2. <<set _SlaveI.trust -= 4, _SlaveI.devotion += 4>> <<else>> - is @@.gold;painfully conscious@@ that her <<if _SlaveI.relation == "daughter">>mother<<else>>_SlaveI.relation<</if>> $slaves[_K].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + is @@.gold;painfully conscious@@ that her <<if _SlaveI.relation == "daughter">>mother<<else>>_SlaveI.relation<</if>> $slaves[_K].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best $he can. <<set _SlaveI.trust -= 2, _SlaveI.devotion += 2>> <</if>> <<else>> - knows that her <<if _SlaveI.relation == "mother">>daughter<<elseif _SlaveI.relation == "daughter">>mother<<else>>_SlaveI.relation<</if>> $slaves[_K].slaveName + knows that $his <<if _SlaveI.relation == "mother">>daughter<<elseif _SlaveI.relation == "daughter">>mother<<else>>_SlaveI.relation<</if>> $slaves[_K].slaveName <<if $slaves[_K].devotion > 50>> - loves being your sex slave, and is @@.hotpink;happy@@ for her. + loves being your sex slave, and is @@.hotpink;happy@@ for _him2. <<set _SlaveI.devotion += 2>> <<elseif ($slaves[_K].devotion > 20) || ($slaves[_K].trust < -20)>> - is an obedient sex slave, and hopes she'll avoid punishment. + is an obedient sex slave, and hopes $he'll avoid punishment. <<else>> - hates being a sex slave, and is @@.gold;afraid@@ for her. + hates being a sex slave, and is @@.gold;afraid@@ for _him2. <<set _SlaveI.trust -= 2>> <</if>> <</if>> diff --git a/src/uncategorized/saServeThePublic.tw b/src/uncategorized/saServeThePublic.tw index a30a387261cd6006b5ba751a79f9b5d621631ebf..070101b2de3b00d9615ac273444d3de56cc7ad21 100644 --- a/src/uncategorized/saServeThePublic.tw +++ b/src/uncategorized/saServeThePublic.tw @@ -309,9 +309,9 @@ $His appearance attracted $beauty members of the public (<<print Math.trunc($bea <<set $slaves[$i].health -= 3>> <<if canDoAnal($slaves[$i])>> <<set _injuryChance = random(1,100)>> - <<else>> + <<else>> <<set _injuryChance = random(1,80)>> - <</if>> + <</if>> <<if (_injuryChance > 80)>> <<set $slaves[$i].minorInjury = "sore ass">> Rough anal with a careless citizen left $him with a @@.red;$slaves[$i].minorInjury.@@ @@ -867,7 +867,7 @@ $His appearance attracted $beauty members of the public (<<print Math.trunc($bea <</if>> <</if>> <<case "mindbroken">> - $He receives less attention because $he just lies there, mind broken. + $He receives less attention because $he just lies there, mindbroken. <</switch>> <</if>> diff --git a/src/uncategorized/saTakeClasses.tw b/src/uncategorized/saTakeClasses.tw index 285e4e80a975b46783d9a9e4e7b4c8fec80615a4..8d6204b5a557da12dfef2b8a60a47fcaca1aca39 100644 --- a/src/uncategorized/saTakeClasses.tw +++ b/src/uncategorized/saTakeClasses.tw @@ -140,7 +140,7 @@ With $his natural lactation, $he often finds $himself milked before the class by $Schoolteacher.slaveName both to serve as a lesson and to keep $him from becoming a milky mess. <<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>> <</if>> - + <<set _seed = 0>> <<set $skillIncrease = 10+Math.floor(($slaves[$i].intelligence+$slaves[$i].intelligenceImplant)/32)>> <<for _j = 0; _j < _learning; _j++>> diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw index 95c1a95c27458527c5d1bf1cac2924864c85b515..6cf783e22a2fe07adb16e34bbec4791de287dfa4 100644 --- a/src/uncategorized/saWhore.tw +++ b/src/uncategorized/saWhore.tw @@ -877,7 +877,7 @@ $His appearance attracted $beauty customers (<<print Math.trunc($beauty/7)>> a d <</if>> <</if>> <<case "mindbroken">> - $He gets less ¤ because $he just lies there, mind broken. + $He gets less ¤ because $he just lies there, mindbroken. <</switch>> <</if>> <</if>> diff --git a/src/uncategorized/saWorkAGloryHole.tw b/src/uncategorized/saWorkAGloryHole.tw index 2a0b6536f484b61f04428cc7fe157ff73cc12400..b607de2e6997ec8855349eb1d61da94718cf657c 100644 --- a/src/uncategorized/saWorkAGloryHole.tw +++ b/src/uncategorized/saWorkAGloryHole.tw @@ -72,7 +72,7 @@ is <<if $slaves[$i].fuckdoll == 0>>restrained in a glory hole<<else>>set out for <</if>> <<if ($slaves[$i].anus == 0) && canDoAnal($slaves[$i])>> - $His anal virginity goes to a <<if $slaves[$i].fuckdoll == 0>>glory hole <</if>>user, who doesn't understand why this particular run at <<if $slaves[$i].fuckdoll == 0>>the glory hole<<else>>a Fuckdoll<</if>> is so great. @@.lime;$His ass has been broken in@@ in a @@.gold;painful@@ and @@.mediumorchid;degrading@@ way. + $His anal virginity goes to a <<if $slaves[$i].fuckdoll == 0>>glory hole <<else>>a Fuckdoll <</if>>user, who doesn't understand why this particular run at <<if $slaves[$i].fuckdoll == 0>>the glory hole<<else>>a Fuckdoll<</if>> is so great. @@.lime;$His ass has been broken in@@ in a @@.gold;painful@@ and @@.mediumorchid;degrading@@ way. <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5, $slaves[$i].anus = 1>> <<elseif ($slaves[$i].anus < 3) && canDoAnal($slaves[$i]) && (random(1,100) > ((150-$beauty)+($slaves[$i].anus*10)))>> @@.lime;$His asshole sees constant use and loosens.@@ diff --git a/src/uncategorized/schoolroom.tw b/src/uncategorized/schoolroom.tw index cca4728b0f10fceeeea726e422d44c880cbb9375..a7945d0d8911f930af2dc9a2583146f8c27da546 100644 --- a/src/uncategorized/schoolroom.tw +++ b/src/uncategorized/schoolroom.tw @@ -9,7 +9,7 @@ $schoolroomNameCaps is well-equipped, with wallscreens to display lessons. These are currently <<switch $schoolroomDecoration>> <<case "Roman Revivalist">> - showing the story of a famous Roman slave who sacrificed her life for the life of <<if def $PC.customTitle>>her $PC.customTitle<<elseif $PC.title != 0>>her master<<else>>her mistress<</if>>. + showing the story of a famous Roman slave who sacrificed her life for the life of her <<= properMaster()>>. <<case "Aztec Revivalist">> showing the reenactment of a legendary story of a slave who ascended by offering her blood to the gods, and was granted eternal life. <<case "Egyptian Revivalist">> diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw index 600dc035c4b284215e2d45572f958d5e805faf6b..399fe45077f1b1eaf3836a03661f228e67ae1666 100644 --- a/src/uncategorized/seLethalPit.tw +++ b/src/uncategorized/seLethalPit.tw @@ -6,6 +6,8 @@ <<set _fighterOne = $slaveFightingBG.ID>> <<set _fighterOne = getSlave(_fighterOne)>> <<set _fighterTwo = getSlave($Bodyguard.ID)>> + <<setLocalPronouns _fighterOne>> + <<setLocalPronouns _fighterTwo 2>> <<else>> <<if $pitBG == 0>> <<set _fighterOne = $fighterIDs.pluck()>> /* .pluck() removes the element from the array, preventing _fighterTwo from also choosing this ID */ @@ -13,12 +15,14 @@ <<else>> <<set _fighterOne = getSlave($Bodyguard.ID)>> <</if>> + <<setLocalPronouns _fighterOne>> <<if $pitAnimal == 0>> <<set _fighterTwo = $fighterIDs.pluck()>> <<set _fighterTwo = getSlave(_fighterTwo)>> <<if ndef _fighterOne || ndef _fighterTwo || (_fighterOne == 0) || (_fighterTwo == 0)>> <<goto "Nonrandom Event">> <</if>> + <<setLocalPronouns _fighterTwo 2>> <<else>> <<switch $pitAnimalType>> <<case "canine">> @@ -35,9 +39,9 @@ This week's pit fight is between _fighterOne.slaveName and <<if $pitAnimal == 0> <<if $pitAudience == "none">> You are alone above the pit, left to watch them kill and die in private. <<elseif $pitAudience == "free">> - Your guests line the rim of the pit, joking and betting, nervous and excited by the close prospect of watching a girl die. + Your guests line the rim of the pit, joking and betting, nervous and excited by the close prospect of watching a $girl die. <<else>> - The attendees line the rim of the pit, betting and arguing, nervous and excited by the close prospect of watching a girl die. + The attendees line the rim of the pit, betting and arguing, nervous and excited by the close prospect of watching a $girl die. <</if>> <<if $arcologies[0].FSRomanRevivalist != "unset">> @@ -50,18 +54,18 @@ This week's pit fight is between _fighterOne.slaveName and <<if $pitAnimal == 0> <<set $arcologies[0].FSAztecRevivalist += 0.2*$FSSingleSlaveRep>> <</if>> -You review the rules - the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>> will use their choice of swords, and the fight will be to the death<<if $pitAnimal == 0>>, with both combatants executed if no decision is reached<</if>>. <<if $pitAnimal == 0>>The winner<<else>>If she wins, she<</if>> will earn two complete days of rest, not to mention continued life. You take a moment to look over your <<if $pitAnimal == 0>>girls<<else>>slave<</if>> before giving the word. After all, it<<if $pitAnimal == 0>>'s<<else>> might be<</if>> the last time you'll be seeing <<if $pitAnimal == 0>>one of them<<else>>her<</if>> alive. +You review the rules - the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>> will use their choice of swords, and the fight will be to the death<<if $pitAnimal == 0>>, with both combatants executed if no decision is reached<</if>>. <<if $pitAnimal == 0>>The winner<<else>>If $he wins, $he<</if>> will earn two complete days of rest, not to mention continued life. You take a moment to look over your <<if $pitAnimal == 0>>fighters<<else>>slave<</if>> before giving the word. After all, it<<if $pitAnimal == 0>>'s<<else>> might be<</if>> the last time you'll be seeing <<if $pitAnimal == 0>>one of them<<else>>$him<</if>> alive. <br><br> <<set _fighterOneDeadliness = Deadliness(_fighterOne)>> <<if _fighterOne.fetish == "mindbroken">> - _fighterOne.slaveName is too broken to care about whether she lives or dies; + _fighterOne.slaveName is too broken to care about whether $he lives or dies; <<elseif _fighterOneDeadliness > 5>> _fighterOne.slaveName seems very confident; <<elseif _fighterOneDeadliness > 3>> - _fighterOne.slaveName seems nervous, but steels herself; + _fighterOne.slaveName seems nervous, but steels $himself; <<elseif _fighterOneDeadliness > 1>> _fighterOne.slaveName seems hesitant and unsure; <<else>> @@ -69,138 +73,138 @@ You review the rules - the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>> <</if>> <<if _fighterOne.fetish == "mindbroken">> - she is indifferent to the prospect of killing, as well. + $he is indifferent to the prospect of killing, as well. <<elseif _fighterOne.devotion > 95>> - she is clearly willing to do her best to kill for you. + $he is clearly willing to do $his best to kill for you. <<elseif (_fighterOne.fetish == "sadist") && (_fighterOne.fetishKnown == 1) && (_fighterOne.fetishStrength > 60)>> - the prospect of killing does not seem to concern her. + the prospect of killing does not seem to concern $him. <<elseif _fighterOne.devotion > 50>> - she obviously does not want to kill, but will do as you order. + $he obviously does not want to kill, but will do as you order. <<elseif _fighterOne.devotion >= -20>> - she is clearly unhappy at the prospect of killing, but knows that the alternative is death. + $he is clearly unhappy at the prospect of killing, but knows that the alternative is death. <<else>> - she knows that it's kill or be killed, and puts aside her hatred of you in an effort to live. + $he knows that it's kill or be killed, and puts aside $his hatred of you in an effort to live. <</if>> <<if _fighterOne.combatSkill > 0>> - Her grip on her sword is sure and easy. + $His grip on $his sword is sure and easy. <</if>> <<if _fighterOne.muscles > 95>> - She is wielding a massive two-handed blade few others could even heft. + $He is wielding a massive two-handed blade few others could even heft. <<elseif _fighterOne.muscles > 30>> - She is strong enough to handle a bastard sword. + $He is strong enough to handle a bastard sword. <<elseif _fighterOne.muscles > 5>> - She has selected a longsword suited to her strength. + $He has selected a longsword suited to $his strength. <<elseif _fighterOne.muscles < -95>> - She has selected a meager dagger; even then she can barely wield it. + $He has selected a meager dagger; even then $he can barely wield it. <<elseif _fighterOne.muscles < -30>> - She has selected a dagger, the heaviest weapon she can manage. + $He has selected a dagger, the heaviest weapon $he can manage. <<elseif _fighterOne.muscles < -5>> - She has selected a short sword, despite being able to barely lift it. + $He has selected a short sword, despite being able to barely lift it. <<else>> - She has selected a short sword, the heaviest weapon she can manage. + $He has selected a short sword, the heaviest weapon $he can manage. <</if>> <<if _fighterOne.height >= 170>> - Her height gives her a reach advantage. + $His height gives $him a reach advantage. <</if>> <<if _fighterOne.health > 50>> - Her shining health makes her a better fighter. + $His shining health makes $him a better fighter. <</if>> <<if _fighterOne.weight > 190>> - Her extreme weight nearly immobilizes her. She struggles to move let alone fight. + $His extreme weight nearly immobilizes $him. $He struggles to move let alone fight. <<elseif _fighterOne.weight > 160>> - Her extreme weight limits her mobility and range of motion making her an easy target. + $His extreme weight limits $his mobility and range of motion, making $him an easy target. <<elseif _fighterOne.weight > 130>> - Her extreme weight holds her back as a pit fighter. + $His extreme weight holds $him back as a pit fighter. <<elseif _fighterOne.weight > 30>> - Her heavy weight is an impediment as a pit fighter. + $His heavy weight is an impediment as a pit fighter. <<elseif _fighterOne.weight < -10>> - Her light weight is an impediment as a pit fighter. + $His light weight is an impediment as a pit fighter. <</if>> <<if _fighterOne.health < -50>> - Her poor health makes her a weaker combatant. + $His poor health makes $him a weaker combatant. <</if>> <<if _fighterOne.pregKnown == 1 || _fighterOne.bellyPreg >= 1500>> <<if _fighterOne.bellyPreg >= 750000>> - Her monolithic pregnancy guarantees her and her many, many children's deaths; not only is she on the verge of splitting open, but it is an unmissable, indefensible target. She has no hope of attacking around the straining mass, let alone stopping her opponent. She is damned. + $His monolithic pregnancy guarantees $his and $his many, many children's deaths; not only is $he on the verge of splitting open, but it is an unmissable, indefensible target. $He has no hope of attacking around the straining mass, let alone stopping $his opponent. $He is damned. <<elseif _fighterOne.bellyPreg >= 600000>> - Her titanic pregnancy is practically a death sentence; not only does she risk bursting, but it is an unmissable, indefensible target. She can barely keep it together while thinking about the lives of her brood. + $His titanic pregnancy is practically a death sentence; not only does $he risk bursting, but it is an unmissable, indefensible target. $He can barely keep it together while thinking about the lives of $his brood. <<elseif _fighterOne.bellyPreg >= 450000>> - Her gigantic pregnancy practically damns her; it presents an unmissable, indefensible target for her adversary. She can barely keep it together while thinking about the lives of her brood. + $His gigantic pregnancy practically damns $him; it presents an unmissable, indefensible target for $his adversary. $He can barely keep it together while thinking about the lives of $his brood. <<elseif _fighterOne.bellyPreg >= 300000>> - Her massive pregnancy obstructs her movement and greatly hinders her. She struggles to think of how she could even begin to defend it from harm. + $His massive pregnancy obstructs $his movement and greatly hinders $him. $He struggles to think of how $he could even begin to defend it from harm. <<elseif _fighterOne.bellyPreg >= 150000>> - Her giant pregnancy obstructs her movement and greatly slows her down. She tries not to think of how many lives are depending on her. + $His giant pregnancy obstructs $his movement and greatly slows $him down. $He tries not to think of how many lives are depending on $him. <<elseif _fighterOne.bellyPreg >= 100000>> - Her giant belly gets in her way and weighs her down. She is terrified for the lives of her many children. + $His giant belly gets in $his way and weighs $him down. $He is terrified for the lives of $his many children. <<elseif _fighterOne.bellyPreg >= 10000>> - Her huge belly gets in her way and weighs her down. She is terrified for the <<if _fighterOne.pregType > 1>>lives of her children<<else>>life of her child<</if>>. + $His huge belly gets in $his way and weighs $him down. $He is terrified for the <<if _fighterOne.pregType > 1>>lives of $his children<<else>>life of $his child<</if>>. <<elseif _fighterOne.bellyPreg >= 5000>> - Her advanced pregnancy makes her much less effective, not to mention terrified for her child. + $His advanced pregnancy makes $him much less effective, not to mention terrified for $his child. <<elseif _fighterOne.bellyPreg >= 1500>> - Her growing pregnancy distracts her with concern over the life growing within her. + $His growing pregnancy distracts $him with concern over the life growing within $him. <<else>> - The life just beginning to grow inside her distracts her from the fight. + The life just beginning to grow inside $him distracts $him from the fight. <</if>> <<elseif _fighterOne.bellyImplant >= 1500>> <<if _fighterOne.bellyImplant >= 750000>> - Her monolithic, <<print _fighterOne.bellyImplant>>cc implant filled belly guarantees her death; not only is she on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag her to the ground. She has no hope of attacking around the straining mass, let alone stopping her opponent. + $His monolithic, <<print _fighterOne.bellyImplant>>cc implant filled belly guarantees $his death; not only is $he on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag $him to the ground. $He has no hope of attacking around the straining mass, let alone stopping $his opponent. <<elseif _fighterOne.bellyImplant >= 600000>> - Her titanic, <<print _fighterOne.bellyImplant>>cc implant filled belly is practically a guaranteed death; she can barely stand let alone fight. Not only is it crippling heavy, unwieldy and an easy target, but she can feel it straining to hold the sheer amount of filler forced into it. + $His titanic, <<print _fighterOne.bellyImplant>>cc implant filled belly is practically a guaranteed death; $he can barely stand let alone fight. Not only is it cripplingly heavy, unwieldy and an easy target, but $he can feel it straining to hold the sheer amount of filler forced into it. <<elseif _fighterOne.bellyImplant >= 450000>> - Her gigantic, <<print _fighterOne.bellyImplant>>cc implant filled belly is nearly a guaranteed death; it presents an unmissable, indefensible target for her adversary. + $His gigantic, <<print _fighterOne.bellyImplant>>cc implant filled belly is nearly a guaranteed death; it presents an unmissable, indefensible target for $his adversary. <<elseif _fighterOne.bellyImplant >= 300000>> - Her massive, <<print _fighterOne.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning her in combat. + $His massive, <<print _fighterOne.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning $him in combat. <<elseif _fighterOne.bellyImplant >= 150000>> - Her giant, <<print _fighterOne.bellyImplant>>cc implant filled belly obstructs her movement and greatly slows her down. + $His giant, <<print _fighterOne.bellyImplant>>cc implant filled belly obstructs $his movement and greatly slows $him down. <<elseif _fighterOne.bellyImplant >= 100000>> - Her giant, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + $His giant, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off $his weight and making $him far less effective. <<elseif _fighterOne.bellyImplant >= 10000>> - Her huge, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + $His huge, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off $his weight and making $him far less effective. <<elseif _fighterOne.bellyImplant >= 5000>> - Her large, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering her less effective. + $His large, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering $him less effective. <<elseif _fighterOne.bellyImplant >= 1500>> - Her swollen, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and makes her less effective. + $His swollen, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and makes $him less effective. <</if>> <</if>> <<if _fighterOne.labor == 1>> - She's feeling labor pains. Her child<<if _fighterOne.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious to the fact that it will mean the death of <<if _fighterOne.pregType > 1>>their<<else>>its<</if>> mother. + $He's feeling labor pains. $His child<<if _fighterOne.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious to the fact that it will mean the death of <<if _fighterOne.pregType > 1>>their<<else>>its<</if>> mother. <<elseif _fighterOne.preg >= _fighterOne.pregData.normalBirth && _fighterOne.pregControl != "labor suppressors">> - She'll be going into labor any time now and she knows it. She's terrified of the thought of her water breaking during the fight. + $He'll be going into labor any time now and $he knows it. $He's terrified of the thought of $his water breaking during the fight. <</if>> <<if _fighterOne.bellyFluid >= 10000>> - Her hugely bloated, <<print _fighterOne.inflationType>>-filled belly is taut and painful, hindering her ability to fight. + $His hugely bloated, <<print _fighterOne.inflationType>>-filled belly is taut and painful, hindering $his ability to fight. <<elseif _fighterOne.bellyFluid >= 5000>> - Her bloated, <<print _fighterOne.inflationType>>-stuffed belly is constantly jiggling and moving, distracting her and throwing off her weight. + $His bloated, <<print _fighterOne.inflationType>>-stuffed belly is constantly jiggling and moving, distracting $him and throwing off $his weight. <<elseif _fighterOne.bellyFluid >= 2000>> - Her distended, <<print _fighterOne.inflationType>>-belly is uncomfortable and heavy, distracting her. + $His distended, <<print _fighterOne.inflationType>>-belly is uncomfortable and heavy, distracting $him. <</if>> <<if !canSee(_fighterOne)>> - Her lack of eyesight is certain death. + $His lack of eyesight is certain death. <<elseif ((_fighterOne.eyes == -1) && (_fighterOne.eyewear != "corrective glasses") && (_fighterOne.eyewear != "corrective contacts")) || (_fighterOne.eyes == 1 && (_fighterOne.eyewear == "blurring glasses" || _fighterOne.eyewear == "blurring contacts"))>> - Her poor eyesight makes her a weaker combatant. + $His poor eyesight makes $him a weaker combatant. <</if>> <<if !canHear(_fighterOne)>> - Her lack of hearing is a major detriment. + $His lack of hearing is a major detriment. <<elseif ((_fighterOne.hears == -1) && (_fighterOne.earwear != "hearing aids")) || (_fighterOne.hears == 0 && (_fighterOne.earwear == "muffling ear plugs"))>> - Her lack of hearing is a minor detriment. + $His poor hearing is a minor detriment. <</if>> <<if _fighterOne.amp < 0>> - The pit lights gleam on her P-Limbs. + The pit lights gleam on $his P-Limbs. <<if _fighterOne.amp == -4>> Their integral weapons are fully uncaged. <<elseif _fighterOne.amp == -5>> - The limits on her cybernetic limbs have been lifted, turning them deadly. + The limits on $his cybernetic limbs have been lifted, turning them deadly. <</if>> <</if>> @@ -209,11 +213,11 @@ You review the rules - the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>> <<set _fighterTwoDeadliness = Deadliness(_fighterTwo)>> <<if _fighterTwo.fetish == "mindbroken">> - _fighterTwo.slaveName is too broken to care about whether she lives or dies; + _fighterTwo.slaveName is too broken to care about whether _he2 lives or dies; <<elseif _fighterTwoDeadliness > 5>> _fighterTwo.slaveName seems very confident; <<elseif _fighterTwoDeadliness > 3>> - _fighterTwo.slaveName seems nervous, but steels herself; + _fighterTwo.slaveName seems nervous, but steels _himself2; <<elseif _fighterTwoDeadliness > 1>> _fighterTwo.slaveName seems hesitant and unsure; <<else>> @@ -221,138 +225,138 @@ You review the rules - the <<if $pitAnimal == 0>>combatants<<else>>slave<</if>> <</if>> <<if _fighterTwo.fetish == "mindbroken">> - she is indifferent to the prospect of killing, as well. + _he2 is indifferent to the prospect of killing, as well. <<elseif _fighterTwo.devotion > 95>> - she is clearly willing to do her best to kill for you. + _he2 is clearly willing to do _his2 best to kill for you. <<elseif (_fighterTwo.fetish == "sadist") && (_fighterTwo.fetishKnown == 1) && (_fighterTwo.fetishStrength > 60)>> - the prospect of killing does not seem to concern her. + the prospect of killing does not seem to concern _him2. <<elseif _fighterTwo.devotion > 50>> - she obviously does not want to kill, but will do as you order. + _he2 obviously does not want to kill, but will do as you order. <<elseif _fighterTwo.devotion >= -20>> - she is clearly unhappy at the prospect of killing, but knows that the alternative is death. + _he2 is clearly unhappy at the prospect of killing, but knows that the alternative is death. <<else>> - she knows that it's kill or be killed, and puts aside her hatred of you in an effort to live. + _he2 knows that it's kill or be killed, and puts aside _his2 hatred of you in an effort to live. <</if>> <<if _fighterTwo.combatSkill > 0>> - Her grip on her sword is sure and easy. + _His2 grip on _his2 sword is sure and easy. <</if>> <<if _fighterTwo.muscles > 95>> - She is wielding a massive two-handed blade few others could even heft. + _He2 is wielding a massive two-handed blade few others could even heft. <<elseif _fighterTwo.muscles > 30>> - She is strong enough to handle a bastard sword. + _He2 is strong enough to handle a bastard sword. <<elseif _fighterTwo.muscles > 5>> - She has selected a longsword suited to her strength. + _He2 has selected a longsword suited to _his2 strength. <<elseif _fighterTwo.muscles < -95>> - She has selected a meager dagger; even then she can barely wield it. + _He2 has selected a meager dagger; even then _he2 can barely wield it. <<elseif _fighterTwo.muscles < -30>> - She has selected a dagger, the heaviest weapon she can manage. + _He2 has selected a dagger, the heaviest weapon _he2 can manage. <<elseif _fighterTwo.muscles < -5>> - She has selected a short sword, despite being able to barely lift it. + _He2 has selected a short sword, despite being able to barely lift it. <<else>> - She has selected a short sword, the heaviest weapon she can manage. + _He2 has selected a short sword, the heaviest weapon _he2 can manage. <</if>> <<if _fighterTwo.height >= 170>> - Her height gives her a reach advantage. + _His2 height gives _him2 a reach advantage. <</if>> <<if _fighterTwo.health > 50>> - Her shining health makes her a better fighter. + _His2 shining health makes _him2 a better fighter. <</if>> <<if _fighterTwo.weight > 190>> - Her extreme weight nearly immobilizes her. She struggles to move let alone fight. + _His2 extreme weight nearly immobilizes _him2. _He2 struggles to move let alone fight. <<elseif _fighterTwo.weight > 160>> - Her extreme weight limits her mobility and range of motion making her an easy target. + _His2 extreme weight limits _his2 mobility and range of motion, making _him2 an easy target. <<elseif _fighterTwo.weight > 130>> - Her extreme weight holds her back as a pit fighter. + _His2 extreme weight holds _him2 back as a pit fighter. <<elseif _fighterTwo.weight > 30>> - Her heavy weight is an impediment as a pit fighter. + _His2 heavy weight is an impediment as a pit fighter. <<elseif _fighterTwo.weight < -10>> - Her light weight is an impediment as a pit fighter. + _His2 light weight is an impediment as a pit fighter. <</if>> <<if _fighterTwo.health < -50>> - Her poor health makes her a weaker combatant. + _His2 poor health makes _him2 a weaker combatant. <</if>> <<if _fighterTwo.pregKnown == 1 || _fighterTwo.bellyPreg >= 1500>> <<if _fighterTwo.bellyPreg >= 750000>> - Her monolithic pregnancy guarantees her and her many, many children's deaths; not only is she on the verge of splitting open, but it is an unmissable, indefensible target. She has no hope of attacking around the straining mass, let alone stopping her opponent. She is damned. + _His2 monolithic pregnancy guarantees _his2 and _his2 many, many children's deaths; not only is _he2 on the verge of splitting open, but it is an unmissable, indefensible target. _He2 has no hope of attacking around the straining mass, let alone stopping _his2 opponent. _He2 is damned. <<elseif _fighterTwo.bellyPreg >= 600000>> - Her titanic pregnancy is practically a death sentence; not only does she risk bursting, but it is an unmissable, indefensible target. She can barely keep it together while thinking about the lives of her brood. + _His2 titanic pregnancy is practically a death sentence; not only does _he2 risk bursting, but it is an unmissable, indefensible target. _He2 can barely keep it together while thinking about the lives of _his2 brood. <<elseif _fighterTwo.bellyPreg >= 450000>> - Her gigantic pregnancy practically damns her; it presents an unmissable, indefensible target for her adversary. She can barely keep it together while thinking about the lives of her brood. + _His2 gigantic pregnancy practically damns _him2; it presents an unmissable, indefensible target for _his2 adversary. _He2 can barely keep it together while thinking about the lives of _his2 brood. <<elseif _fighterTwo.bellyPreg >= 300000>> - Her massive pregnancy obstructs her movement and greatly hinders her. She struggles to think of how she could even begin to defend it from harm. + _His2 massive pregnancy obstructs _his2 movement and greatly hinders _him2. _He2 struggles to think of how _he2 could even begin to defend it from harm. <<elseif _fighterTwo.bellyPreg >= 150000>> - Her giant pregnancy obstructs her movement and greatly slows her down. She tries not to think of how many lives are depending on her. + _His2 giant pregnancy obstructs _his2 movement and greatly slows _him2 down. _He2 tries not to think of how many lives are depending on _him2. <<elseif _fighterTwo.bellyPreg >= 100000>> - Her giant belly gets in her way and weighs her down. She is terrified for the lives of her many children. + _His2 giant belly gets in _his2 way and weighs _him2 down. _He2 is terrified for the lives of _his2 many children. <<elseif _fighterTwo.bellyPreg >= 10000>> - Her huge belly gets in her way and weighs her down. She is terrified for the <<if _fighterTwo.pregType > 1>>lives of her children<<else>>life of her child<</if>>. + _His2 huge belly gets in _his2 way and weighs _him2 down. _He2 is terrified for the <<if _fighterTwo.pregType > 1>>lives of _his2 children<<else>>life of _his2 child<</if>>. <<elseif _fighterTwo.bellyPreg >= 5000>> - Her advanced pregnancy makes her much less effective, not to mention terrified for her child. + _His2 advanced pregnancy makes _him2 much less effective, not to mention terrified for _his2 child. <<elseif _fighterTwo.bellyPreg >= 1500>> - Her growing pregnancy distracts her with concern over the life growing within her. + _His2 growing pregnancy distracts _him2 with concern over the life growing within _him2. <<else>> - The life just beginning to grow inside her distracts her from the fight. + The life just beginning to grow inside _him2 distracts _him2 from the fight. <</if>> <<elseif _fighterTwo.bellyImplant >= 1500>> <<if _fighterTwo.bellyImplant >= 750000>> - Her monolithic, <<print _fighterTwo.bellyImplant>>cc implant filled belly guarantees her death; not only is she on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag her to the ground. She has no hope of attacking around the straining mass, let alone stopping her opponent. + _His2 monolithic, <<print _fighterTwo.bellyImplant>>cc implant filled belly guarantees _his2 death; not only is _he2 on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag _him2 to the ground. _He2 has no hope of attacking around the straining mass, let alone stopping _his2 opponent. <<elseif _fighterTwo.bellyImplant >= 600000>> - Her titanic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is practically a guaranteed death; she can barely stand let alone fight. Not only is it crippling heavy, unwieldy and an easy target, but she can feel it straining to hold the sheer amount of filler forced into it. + _His2 titanic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is practically a guaranteed death; _he2 can barely stand let alone fight. Not only is it cripplingly heavy, unwieldy and an easy target, but _he2 can feel it straining to hold the sheer amount of filler forced into it. <<elseif _fighterTwo.bellyImplant >= 450000>> - Her gigantic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is nearly a guaranteed death; it presents an unmissable, indefensible target for her adversary. + _His2 gigantic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is nearly a guaranteed death; it presents an unmissable, indefensible target for _his2 adversary. <<elseif _fighterTwo.bellyImplant >= 300000>> - Her massive, <<print _fighterTwo.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning her in combat. + _His2 massive, <<print _fighterTwo.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning _him2 in combat. <<elseif _fighterTwo.bellyImplant >= 150000>> - Her giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly obstructs her movement and greatly slows her down. + _His2 giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly obstructs _his2 movement and greatly slows _him2 down. <<elseif _fighterTwo.bellyImplant >= 100000>> - Her giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + _His2 giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off _his2 weight and making _him2 far less effective. <<elseif _fighterTwo.bellyImplant >= 10000>> - Her huge, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + _His2 huge, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off _his2 weight and making _him2 far less effective. <<elseif _fighterTwo.bellyImplant >= 5000>> - Her large, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering her less effective. + _His2 large, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering _him2 less effective. <<elseif _fighterTwo.bellyImplant >= 1500>> - Her swollen, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and makes her less effective. + _His2 swollen, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and makes _him2 less effective. <</if>> <</if>> <<if _fighterTwo.labor == 1>> - She's feeling labor pains. Her child<<if _fighterTwo.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious that it will mean the death of <<if _fighterTwo.pregType > 1>>their<<else>>its<</if>> mother. + _He2's feeling labor pains. _His2 child<<if _fighterTwo.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious that it will mean the death of <<if _fighterTwo.pregType > 1>>their<<else>>its<</if>> mother. <<elseif _fighterTwo.preg >= _fighterTwo.pregData.normalBirth && _fighterTwo.pregControl != "labor suppressors">> - She'll be going into labor any time now and she knows it. She's terrified of the thought of her water breaking during the fight. + _He2'll be going into labor any time now and _he2 knows it. _He2's terrified of the thought of _his2 water breaking during the fight. <</if>> <<if _fighterTwo.bellyFluid >= 10000>> - Her hugely bloated, <<print _fighterTwo.inflationType>>-filled belly is taut and painful, hindering her ability to fight. + _His2 hugely bloated, <<print _fighterTwo.inflationType>>-filled belly is taut and painful, hindering _his2 ability to fight. <<elseif _fighterTwo.bellyFluid >= 5000>> - Her bloated, <<print _fighterTwo.inflationType>>-stuffed belly is constantly jiggling and moving, distracting her and throwing off her weight. + _His2 bloated, <<print _fighterTwo.inflationType>>-stuffed belly is constantly jiggling and moving, distracting _him2 and throwing off _his2 weight. <<elseif _fighterTwo.bellyFluid >= 2000>> - Her distended, <<print _fighterTwo.inflationType>>-belly is uncomfortable and heavy, distracting her. + _His2 distended, <<print _fighterTwo.inflationType>>-belly is uncomfortable and heavy, distracting _him2. <</if>> <<if !canSee(_fighterTwo)>> - Her lack of eyesight is certain death. + _His2 lack of eyesight is certain death. <<elseif ((_fighterTwo.eyes == -1) && (_fighterTwo.eyewear != "corrective glasses") && (_fighterTwo.eyewear != "corrective contacts")) || (_fighterTwo.eyes == 1 && (_fighterTwo.eyewear == "blurring glasses" || _fighterTwo.eyewear == "blurring contacts"))>> - Her poor eyesight makes her a weaker combatant. + _His2 poor eyesight makes _him2 a weaker combatant. <</if>> <<if !canHear(_fighterTwo)>> - Her lack of hearing is a major detriment. + _His2 lack of hearing is a major detriment. <<elseif ((_fighterTwo.hears == -1) && (_fighterTwo.earwear != "hearing aids")) || (_fighterTwo.hears == 0 && (_fighterTwo.earwear == "muffling ear plugs"))>> - Her lack of hearing is a minor detriment. + _His2 poor hearing is a minor detriment. <</if>> <<if _fighterTwo.amp < 0>> - The pit lights gleam on her P-Limbs. + The pit lights gleam on _his2 P-Limbs. <<if _fighterTwo.amp == -4>> Their integral weapons are fully uncaged. <<elseif _fighterTwo.amp == -5>> - The limits on her cybernetic limbs have been lifted, turning them deadly. + The limits on _his2 cybernetic limbs have been lifted, turning them deadly. <</if>> <</if>> <<else>> /*if fighting an animal*/ @@ -395,8 +399,10 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <</if>> <<if $pitAnimal == 0>> + <<setLocalPronouns _winner>> + <<setLocalPronouns _loser 2>> <<if !canSee(_winner) && !canSee(_loser)>> - _winner.slaveName and _loser.slaveName are both blind making the fight a staredown. Neither slave wants to make the first move, especially with the drowning cacophony coming from the jeering crowd. Slowly, _winner.slaveName moves forward, waving her sword side to side in the hopes of finding her opponent before she herself gets found. _loser.slaveName's sword clips the tip of _winner.slaveName's setting off a surprisingly brutal series of slashes. The two slaves violently lay into each other, suffering more and more strikes as the struggle goes on. Less than a minute from first contact, both slaves are lying in their combined blood. As you begin to call it a draw, you notice _winner.slaveName start to stir. She staggers to her feet, coated in her and _loser.slaveName's blood, before dropping back to her knees. It seems she lived through this fight; odds aren't likely she'll do it again. + _winner.slaveName and _loser.slaveName are both blind, making the fight a staredown. Neither slave wants to make the first move, especially with the drowning cacophony coming from the jeering crowd. Slowly, _winner.slaveName moves forward, waving $his sword side to side in the hopes of finding $his opponent before $he $himself gets found. _loser.slaveName's sword clips the tip of _winner.slaveName's setting off a surprisingly brutal series of slashes. The two slaves violently lay into each other, suffering more and more strikes as the struggle goes on. Less than a minute from first contact, both slaves are lying in their combined blood. As you begin to call it a draw, you notice _winner.slaveName start to stir. $He staggers to $his feet, coated in $his and _loser.slaveName's blood, before dropping back to $his knees. It seems $he lived through this fight; odds aren't likely $he'll do it again. <<set _winner.health -= 50>> <<if $pitAudience == "paid">> The audience is surprised by the sudden violence after so much standing around, and your @@.yellowgreen;cut of the betting@@ is modest. @@ -406,7 +412,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 250>> <</if>> <<elseif (_winnerDeadliness > _loserDeadliness+1) && (_winner.amp == -4)>> - Upon your word the two combatants approach each other. _winner.slaveName drops her sword as she comes, raising only her hands, but these are terrifying, modern weapons themselves. _loser.slaveName tries a probing sweep, but _winner.slaveName catches her blade in one hand, slides it down to the hilt with a shriek of metal on metal, and snaps the blade cleanly. As _loser.slaveName watches this, dumbstruck, _winner.slaveName places a gentle hand under her chin and then extends that arm's integral blade up and through her opponent's skull. Though the fight was short, + Upon your word the two combatants approach each other. _winner.slaveName drops $his sword as $he comes, raising only $his hands, but these are terrifying, modern weapons themselves. _loser.slaveName tries a probing sweep, but _winner.slaveName catches _his2 blade in one hand, slides it down to the hilt with a shriek of metal on metal, and snaps the blade cleanly. As _loser.slaveName watches this, dumbstruck, _winner.slaveName places a gentle hand under _his2 chin and then extends that arm's integral blade up and through $his opponent's skull. Though the fight was short, <<if $pitAudience == "paid">> the audience is quite impressed by the display, and your @@.yellowgreen;cut of the betting@@ is quite good. <<set $cash += 10000>> @@ -415,7 +421,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 500>> <</if>> <<elseif (_winnerDeadliness > _loserDeadliness+1) && (_winner.amp == -5)>> - Upon your word the two combatants approach each other. _winner.slaveName does not carry a sword, raising only her hands, but these are terrifying, modern weapons themselves. _loser.slaveName tries a probing sweep, but _winner.slaveName catches her blade in one hand, slides it down to the hilt with a shriek of metal on metal, and snaps the blade cleanly. _loser.slaveName watches this, dumbstruck, before regaining composure and taking a fighting stance again. _winner.slaveName manages to touch her opponent's bare skin with her own cybernetics, incapacitating _loser.slaveName with an electric shock. While _loser.slaveName is temporarily stunned, _winner.slaveName strikes _loser.slaveName on the head with deadly force, crushing her opponent's skull. Though the fight was short, + Upon your word the two combatants approach each other. _winner.slaveName does not carry a sword, raising only $his hands, but these are terrifying, modern weapons themselves. _loser.slaveName tries a probing sweep, but _winner.slaveName catches _his2 blade in one hand, slides it down to the hilt with a shriek of metal on metal, and snaps the blade cleanly. _loser.slaveName watches this, dumbstruck, before regaining composure and taking a fighting stance again. _winner.slaveName manages to touch $his opponent's bare skin with $his own cybernetics, incapacitating _loser.slaveName with an electric shock. While _loser.slaveName is temporarily stunned, _winner.slaveName strikes _loser.slaveName on the head with deadly force, crushing $his opponent's skull. Though the fight was short, <<if $pitAudience == "paid">> the audience is quite impressed by the display, and your @@.yellowgreen;cut of the betting@@ is quite good. <<set $cash += 10000>> @@ -424,17 +430,17 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 500>> <</if>> <<elseif !canSee(_winner)>> - _winner.slaveName centers herself and hones in on _loser.slaveName's rapid breath. She readies herself, knowing she has a single chance to live. With heavy steps, _loser.slaveName rushes her, fully prepared to slaughter the helpless combatant. _winner.slaveName gambles everything on a single high slash, a slash that cut _loser.slaveName's undefended neck wide open. _winner.slaveName collapses to the ground, fully aware of _loser.slaveName's final gurgles, and the sword @@.red;firmly planted in her side.@@ She lived this time, barely, but she doubts she can do it again. + _winner.slaveName centers $himself and hones in on _loser.slaveName's rapid breath. $He readies $himself, knowing $he has a single chance to live. With heavy steps, _loser.slaveName rushes $him, fully prepared to slaughter the helpless combatant. _winner.slaveName gambles everything on a single high slash, a slash that cut _loser.slaveName's undefended neck wide open. _winner.slaveName collapses to the ground, fully aware of _loser.slaveName's final gurgles, and the sword @@.red;firmly planted in $his side.@@ $He lived this time, barely, but $he doubts $he can do it again. <<set _winner.health -= 80>> <<if $pitAudience == "paid">> - The audience is awestruck by the blind girl's triumph, and your @@.yellowgreen;cut of the betting@@ is enormous. + The audience is awestruck by the blind $girl's triumph, and your @@.yellowgreen;cut of the betting@@ is enormous. <<set $cash += 40000>> <<elseif $pitAudience == "free">> - The audience is @@.green;awestruck@@ by the blind girl's triumph. + The audience is @@.green;awestruck@@ by the blind $girl's triumph. <<set $rep += 2000>> <</if>> <<elseif !canSee(_loser)>> - _winner.slaveName sighs at _loser.slaveName's random slashing and calmly struts around the panicking slave. In one quick swoop, she buries her blade in _loser.slaveName's back, ending the poor girl's flailing. + _winner.slaveName sighs at _loser.slaveName's random slashing and calmly struts around the panicking slave. In one quick swoop, _he2 buries _his2 blade in _loser.slaveName's back, ending the poor _girl2's flailing. <<set _winner.health -= 80>> <<if $pitAudience == "paid">> The audience found the fight embarrassing, and your @@.yellowgreen;cut of the betting@@ is pitiful. @@ -445,7 +451,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <</if>> <<elseif (_winnerDeadliness > _loserDeadliness+3)>> <<if (_winner.combatSkill > 0)>> - _winner.slaveName wants to win, and she opens the fight with a furious attack. _loser.slaveName manages to get her blade up, blocking a strike with a ringing clash and a few sparks, but by doing so leaves her abdomen open and obscures her vision enough that she is unprepared for the following horizontal slash, which opens her belly wide. The stricken girl collapses, feebly trying to push her viscera back into place. Whether out of mercy or a desire to get it over with, _winner.slaveName quickly removes the dying girl's head. + _winner.slaveName wants to win, and $he opens the fight with a furious attack. _loser.slaveName manages to get _his2 blade up, blocking a strike with a ringing clash and a few sparks, but by doing so leaves _his2 abdomen open and obscures _his2 vision enough that _he2 is unprepared for the following horizontal slash, which opens _his2 belly wide. The stricken _girl2 collapses, feebly trying to push _his2 viscera back into place. Whether out of mercy or a desire to get it over with, _winner.slaveName quickly removes the dying _girl2's head. <<if $pitAudience == "paid">> The audience is reasonably impressed by the gore, and your @@.yellowgreen;cut of the betting@@ is reasonable. <<set $cash += 4000>> @@ -454,7 +460,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 200>> <</if>> <<else>> - _winner.slaveName wants to win and is confident she will, but she isn't particularly sure about how to do so. She fights cautiously, swinging her sword in powerful but inaccurate strokes. It is only a matter of time before one of these strikes gets through; it's telling that rather than hitting what she aimed at, _winner.slaveName accidentally opens a massive gash down _loser.slaveName's thigh. Realizing she has to do something, _loser.slaveName makes a desperate counterattack, pouring blood as she goes. _winner.slaveName panics and fails to parry one of the last counterstrikes before loss of blood ends the attack, suffering a @@.red;terrible cut@@ to her shoulder. Down to one arm, _winner.slaveName is forced to make a long, loud butchery of ending the fight. + _winner.slaveName wants to win and is confident $he will, but $he isn't particularly sure about how to do so. $He fights cautiously, swinging $his sword in powerful but inaccurate strokes. It is only a matter of time before one of these strikes gets through; it's telling that rather than hitting what $he aimed at, _winner.slaveName accidentally opens a massive gash down _loser.slaveName's thigh. Realizing _he2 has to do something, _loser.slaveName makes a desperate counterattack, pouring blood as _he2 goes. _winner.slaveName panics and fails to parry one of the last counterstrikes before loss of blood ends the attack, suffering a @@.red;terrible cut@@ to $his shoulder. Down to one arm, _winner.slaveName is forced to make a long, loud butchery of ending the fight. <<set _winner.health -= 20>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the blood, and your @@.yellowgreen;cut of the betting@@ is reasonable. @@ -465,7 +471,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <</if>> <</if>> <<elseif (_winner.combatSkill > 0) && (_loser.combatSkill > 0)>> - Upon your word the two combatants approach each other warily, both knowing the other is reasonably competent. Before long they are trading thrust and parry, swing and block. _winner.slaveName is slowly pressed back, so she decides to change the nature of the fight. After three tries she manages to force _loser.slaveName to close, suffering a @@.red;nearly severed ear@@ as she does. _loser.slaveName realizes she only retains an advantage at long range but cannot back up fast enough to avoid close combat. _loser.slaveName is forced back fast enough that she trips; she's barely fallen on her back before she grunts with shock and pain, dying with a look of surprise as she stares at the sword growing out of her chest. + Upon your word the two combatants approach each other warily, both knowing the other is reasonably competent. Before long they are trading thrust and parry, swing and block. _winner.slaveName is slowly pressed back, so $he decides to change the nature of the fight. After three tries $he manages to force _loser.slaveName to close, suffering a @@.red;nearly severed ear@@ as $he does. _loser.slaveName realizes _he2 only retains an advantage at long range but cannot back up fast enough to avoid close combat. _loser.slaveName is forced back fast enough that _he2 trips; _he2's barely fallen on _his2 back before _he2 grunts with shock and pain, dying with a look of surprise as _he2 stares at the sword growing out of _his2 chest. <<set _winner.health -= 20>> <<if $pitAudience == "paid">> The audience is quite impressed by the expert fight, and your @@.yellowgreen;cut of the betting@@ is quite good. @@ -475,7 +481,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 500>> <</if>> <<elseif (_winner.height-_loser.height <= -10)>> - _winner.slaveName realizes that _loser.slaveName's wingspan gives her a huge reach advantage. She bores straight in, taking @@.red;a glancing scalp wound@@ but coming on regardless. _loser.slaveName understands her opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When her back hits a padded wall, _winner.slaveName aims a gutting cut that _loser.slaveName struggles to block. She manages it, but the wall catches her point, so the block is with her wrist, not her sword. The sharp blade cuts almost all the way through the joint, leaving her in agony and totally incapable of defense. _winner.slaveName pushes her head back against the wall and cuts her throat down to the spine. + _winner.slaveName realizes that _loser.slaveName's wingspan gives _him2 a huge reach advantage. $He bores straight in, taking @@.red;a glancing scalp wound@@ but coming on regardless. _loser.slaveName understands _his2 opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When _his2 back hits a padded wall, _winner.slaveName aims a gutting cut that _loser.slaveName struggles to block. _He2 manages it, but the wall catches _his2 point, so the block is with _his2 wrist, not _his2 sword. The sharp blade cuts almost all the way through the joint, leaving _him2 in agony and totally incapable of defense. _winner.slaveName pushes _his2 head back against the wall and cuts _his2 throat down to the spine. <<set _loser.health -= 20>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the blood, and your @@.yellowgreen;cut of the betting@@ is reasonable. @@ -485,7 +491,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 200>> <</if>> <<elseif (_winner.muscles > 30)>> - _winner.slaveName is so massively muscular that she's actually impeded by her lack of speed and flexibility. _loser.slaveName is properly afraid of her strength, though, so she tries to stay away as much as she can. The few times their blades clash reinforces this approach, since _winner.slaveName is able to beat her opponent's blocks out of the way with contemptuous ease. The fight takes a long, long time, but it takes more out of _loser.slaveName to survive than it takes out of _winner.slaveName to keep swinging. Eventually the gasping, weeping _loser.slaveName trips and does not struggle to her feet in time. It takes her tired opponent several overhead butcher's cleaves to end it. + _winner.slaveName is so massively muscular that $he's actually impeded by $his lack of speed and flexibility. _loser.slaveName is properly afraid of _his2 strength, though, so _he2 tries to stay away as much as _he2 can. The few times their blades clash reinforces this approach, since _winner.slaveName is able to beat $his opponent's blocks out of the way with contemptuous ease. The fight takes a long, long time, but it takes more out of _loser.slaveName to survive than it takes out of _winner.slaveName to keep swinging. Eventually the gasping, weeping _loser.slaveName trips and does not struggle to _his2 feet in time. It takes _his2 tired opponent several overhead butcher's cleaves to end it. <<if $pitAudience == "paid">> The audience is reasonably impressed by the show of strength, and your @@.yellowgreen;cut of the betting@@ is reasonable. <<set $cash += 1000>> @@ -494,15 +500,15 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 50>> <</if>> <<elseif (_loser.belly >= 300000)>> - _winner.slaveName wants to live badly enough that she takes and extremely brutal shortcut to victory. The instant the fight starts, she quickly slices right across _loser.slaveName's massive belly, which is far too large to possibly defend. _loser.slaveName's belly ruptures like a popped water balloon, showering _winner.slaveName with + _winner.slaveName wants to live badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he quickly slices right across _loser.slaveName's massive belly, which is far too large to possibly defend. _loser.slaveName's belly ruptures like a popped water balloon, showering _winner.slaveName with <<if _loser.pregType > 0>> - blood. _loser.slaveName collapses into the pile of organs and babies released from her body. + blood. _loser.slaveName collapses into the pile of organs and babies released from _his2 body. <<elseif _loser.bellyImplant > 0>> - blood and filler. _loser.slaveName collapses into the pool of organs and fluid released from her body. + blood and filler. _loser.slaveName collapses into the pool of organs and fluid released from _his2 body. <<else>> - blood and <<print _loser.inflationType>>. _loser.slaveName collapses into the pool of organs and fluid released from her body. + blood and <<print _loser.inflationType>>. _loser.slaveName collapses into the pool of organs and fluid released from _his2 body. <</if>> - _winner.slaveName walks over to the bleeding out slave and quickly cuts her throat. + _winner.slaveName walks over to the bleeding out slave and quickly cuts _his2 throat. <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> @@ -511,7 +517,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 100>> <</if>> <<elseif (_loser.boobs > 1200)>> - _winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, she slices _loser.slaveName right across her huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops her sword to clasp her hands over her ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. _winner.slaveName's follow-up is neither artful nor particularly well planned, but it is effective. She hits the distracted girl's neck from the side, almost but not quite separating her head from her body. + _winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, $he slices _loser.slaveName right across _his2 huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops _his2 sword to clasp _his2 hands over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. _winner.slaveName's follow-up is neither artful nor particularly well planned, but it is effective. $He hits the distracted _girl2's neck from the side, almost but not quite separating _his2 head from _his2 body. <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> @@ -520,7 +526,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 100>> <</if>> <<elseif (_loser.dick > 0)>> - _winner.slaveName wants to live badly enough that she takes an extremely brutal shortcut to victory. The instant the fight starts, she furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises her sword to block, at which point _winner.slaveName simply kicks her in the dick. _loser.slaveName goes down like a marionette with cut strings, her mouth soundlessly opening and closing and tears leaking from her closed eyes. _winner.slaveName walks over to the prostrate slave and cuts her throat without much trouble. + _winner.slaveName wants to live badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises _his2 sword to block, at which point _winner.slaveName simply kicks _him2 in the dick. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName walks over to the prostrate slave and cuts _his2 throat without much trouble. <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> @@ -529,7 +535,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 100>> <</if>> <<else>> - _winner.slaveName wants to live badly enough that she takes an extremely brutal shortcut to victory. The instant the fight starts, she furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises her sword to block, at which point _winner.slaveName simply kicks her in the cunt. _loser.slaveName goes down like a marionette with cut strings, her mouth soundlessly opening and closing and tears leaking from her closed eyes. _winner.slaveName walks over to the prostrate slave and cuts her throat without much trouble. + _winner.slaveName wants to live badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises _his2 sword to block, at which point _winner.slaveName simply kicks _him2 in the cunt. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName walks over to the prostrate slave and cuts _his2 throat without much trouble. <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> @@ -541,28 +547,28 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <br><br> - You let the winner _winner.slaveName, shaking as she comes off the adrenaline, drugs, and the fear, exit the pit. + You let the winner _winner.slaveName, shaking as $he comes off the adrenaline, drugs, and the fear, exit the pit. <<if _winner.fetish == "mindbroken">> - She was already so broken before today that she will not be seriously affected by having killed with her own hands. + $He was already so broken before today that $he will not be seriously affected by having killed with $his own hands. <<elseif _winner.devotion > 95>> - She is so worshipful of you that she does not see killing _loser.slaveName as special in her own internal listing of things that she has willingly done and would willingly do again on your behalf. + $He is so worshipful of you that $he does not see killing _loser.slaveName as special in $his own internal listing of things that $he has willingly done and would willingly do again on your behalf. <<elseif _winner.devotion > 80>> - She will never forget having killed _loser.slaveName with her own hands. The only way she will be able to live with herself is to @@.hotpink;subsume her will to yours,@@ telling herself that the killing was to serve and obey you. + $He will never forget having killed _loser.slaveName with $his own hands. The only way $he will be able to live with $himself is to @@.hotpink;subsume $his will to yours,@@ telling $himself that the killing was to serve and obey you. <<set _winner.devotion += 10>> <<elseif (_winner.fetishKnown == 1) && (_winner.fetishStrength > 60) && (_winner.fetish == "sadist")>> - She has sunk even deeper into cruelty, callousness, and a total disregard of the value of other slaves' lives. Going forward, she's even @@.hotpink;less likely to question@@ even the most abominable commands. + $He has sunk even deeper into cruelty, callousness, and a total disregard of the value of other slaves' lives. Going forward, $he's even @@.hotpink;less likely to question@@ even the most abominable commands. <<set _winner.devotion += 4>> <<elseif _winner.devotion > 50>> - She will never forget having killed _loser.slaveName with her own hands. The only way she will be able to live with herself is to tell herself that the killing was done on your orders. + $He will never forget having killed _loser.slaveName with $his own hands. The only way $he will be able to live with $himself is to tell $himself that the killing was done on your orders. <<else>> - She will never forget having killed _loser.slaveName with her own hands. The only way she will be able to live with herself is to @@.mediumorchid;blame you,@@ telling herself that the killing was the only choice you gave her if she wanted to live. + $He will never forget having killed _loser.slaveName with $his own hands. The only way $he will be able to live with $himself is to @@.mediumorchid;blame you,@@ telling $himself that the killing was the only choice you gave $him if $he wanted to live. <<set _winner.devotion -= 10>> <</if>> <<if (_winner.fetish != "sadist")>> <<if random(1,100) > 50>> - Cruelty and callousness seeps its way into her sexuality; she has become a @@.lightcoral;bloody sadist.@@ + Cruelty and callousness seeps its way into $his sexuality; $he has become a @@.lightcoral;bloody sadist.@@ <<set _winner.fetish = "sadist">> <<set _winner.fetishKnown = 1>> <<set _winner.fetishStrength = 65>> @@ -571,42 +577,42 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<if (_winner.rivalry > 0) && (_loser.ID == _winner.rivalryTarget)>> <<if (_winner.devotion > 75)>> - She is so accepting of the low value of slave life that she @@.hotpink;is pleased@@ to have killed her rival _loser.slaveName. + $He is so accepting of the low value of slave life that $he @@.hotpink;is pleased@@ to have killed $his rival _loser.slaveName. <<set _winner.devotion += 4>> <</if>> <<elseif (_winner.relationship >= 0) && (_loser.ID == _winner.relationshipTarget)>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her only friend at her own hand as an @@.hotpink;honorable@@ end to their doomed slave relationship. + $He is so worshipful of you that $he sees the death of $his only friend at $his own hand as an @@.hotpink;honorable@@ end to their doomed slave relationship. <<set _winner.devotion += 4>> <<else>> - She shows little reaction to the death of her only friend at her own hand. In the coming days, it becomes clear that this is because she is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. + $He shows little reaction to the death of $his only friend at $his own hand. In the coming days, it becomes clear that this is because $he is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. <<set _winner.fetish = "mindbroken">> <<set _winner.fetishKnown = 1>> <</if>> <<elseif _winner.mother == _loser.ID>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her mother at her own hand as an @@.hotpink;honorable@@ end to their doomed family. + $He is so worshipful of you that $he sees the death of $his mother at $his own hand as an @@.hotpink;honorable@@ end to their doomed family. <<set _winner.devotion += 4>> <<else>> - She shows little reaction to the death of her mother at her own hand. In the coming days, it becomes clear that this is because she is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. + $He shows little reaction to the death of $his mother at $his own hand. In the coming days, it becomes clear that this is because $he is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. <<set _winner.fetish = "mindbroken">> <<set _winner.fetishKnown = 1>> <</if>> <<elseif _winner.father == _loser.ID>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her father at her own hand as an @@.hotpink;honorable@@ end to their doomed family. + $He is so worshipful of you that $he sees the death of $his father at $his own hand as an @@.hotpink;honorable@@ end to their doomed family. <<set _winner.devotion += 4>> <<else>> - She shows little reaction to the death of her father at her own hand. In the coming days, it becomes clear that this is because she is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. + $He shows little reaction to the death of $his father at $his own hand. In the coming days, it becomes clear that this is because $he is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. <<set _winner.fetish = "mindbroken">> <<set _winner.fetishKnown = 1>> <</if>> <<elseif _loser.mother == _winner.ID || _loser.father == _winner.ID>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her daughter at her own hand as an @@.hotpink;honorable@@ end to their doomed family. + $He is so worshipful of you that $he sees the death of $his daughter at $his own hand as an @@.hotpink;honorable@@ end to their doomed family. <<set _winner.devotion += 4>> <<else>> - She shows little reaction to the death of her daughter at her own hand. In the coming days, it becomes clear that this is because she is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. + $He shows little reaction to the death of $his daughter at $his own hand. In the coming days, it becomes clear that this is because $he is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. <<set _winner.fetish = "mindbroken">> <<set _winner.fetishKnown = 1>> <</if>> @@ -614,37 +620,37 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<switch areSisters(_winner, _loser)>> <<case 1>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her twin at her own hand as an @@.hotpink;honorable@@ end to their doomed family. + $He is so worshipful of you that $he sees the death of $his twin at $his own hand as an @@.hotpink;honorable@@ end to their doomed family. <<set _winner.devotion += 4>> <<else>> - She shows little reaction to the death of her twin at her own hand. In the coming days, it becomes clear that this is because she is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. + $He shows little reaction to the death of $his twin at $his own hand. In the coming days, it becomes clear that this is because $he is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. <<set _winner.fetish = "mindbroken">> <<set _winner.fetishKnown = 1>> <</if>> <<case 2>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her sister at her own hand as an @@.hotpink;honorable@@ end to their doomed family. + $He is so worshipful of you that $he sees the death of $his sister at $his own hand as an @@.hotpink;honorable@@ end to their doomed family. <<set _winner.devotion += 4>> <<else>> - She shows little reaction to the death of her sister at her own hand. In the coming days, it becomes clear that this is because she is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. + $He shows little reaction to the death of $his sister at $his own hand. In the coming days, it becomes clear that this is because $he is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. <<set _winner.fetish = "mindbroken">> <<set _winner.fetishKnown = 1>> <</if>> <<case 3>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her half-sister at her own hand as an @@.hotpink;honorable@@ end to their doomed family. + $He is so worshipful of you that $he sees the death of $his half-sister at $his own hand as an @@.hotpink;honorable@@ end to their doomed family. <<set _winner.devotion += 4>> <<else>> - She is @@.mediumorchid;utterly devastated@@ at being forced to take the life of her half-sister. + $He is @@.mediumorchid;utterly devastated@@ at being forced to take the life of $his half-sister. <<set _winner.devotion -= 50>> <</if>> <</switch>> <<elseif (_winner.relation != 0) && (_loser.ID == _winner.relationTarget)>> <<if (_winner.devotion > 95)>> - She is so worshipful of you that she sees the death of her _loser.relation at her own hand as an @@.hotpink;honorable@@ end to their doomed family. + $He is so worshipful of you that $he sees the death of $his _loser.relation at $his own hand as an @@.hotpink;honorable@@ end to their doomed family. <<set _winner.devotion += 4>> <<else>> - She shows little reaction to the death of her _loser.relation at her own hand. In the coming days, it becomes clear that this is because she is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. + $He shows little reaction to the death of $his _loser.relation at $his own hand. In the coming days, it becomes clear that this is because $he is @@.red;no longer capable@@ of reacting to anything on an emotional level. Ever again. <<set _winner.fetish = "mindbroken">> <<set _winner.fetishKnown = 1>> <</if>> @@ -652,7 +658,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<else>> /*if fighting an animal*/ <<if _winner == _fighterOne>> /*if slave wins*/ <<if !canSee(_winner)>> - _winner.slaveName centers $himself and hones in on the _animal.species's rapid breath. $He readies herself, knowing $he has a single chance to live. With heavy steps, the _animal.species rushes at $him, fully prepared to slaughter the helpless combatant. _winner.slaveName gambles everything on a single high slash, a slash that cuts the _animal.species's undefended neck wide open. _winner.slaveName collapses to the ground, fully aware of the _animal.species's final gurgles and the @@.red;deep scratches in her side.@@ $He lived this time, barely, but $he doubts $he can do it again. + _winner.slaveName centers $himself and hones in on the _animal.species's rapid breath. $He readies $himself, knowing $he has a single chance to live. With heavy steps, the _animal.species rushes at $him, fully prepared to slaughter the helpless combatant. _winner.slaveName gambles everything on a single high slash, a slash that cuts the _animal.species's undefended neck wide open. _winner.slaveName collapses to the ground, fully aware of the _animal.species's final gurgles and the @@.red;deep scratches in $his side.@@ $He lived this time, barely, but $he doubts $he can do it again. <<set _winner.health -= 80>> <<if $pitAudience == "paid">> The audience is awestruck by the blind girl's triumph, and your @@.yellowgreen;cut of the betting@@ is enormous. @@ -662,7 +668,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 2000>> <</if>> <<elseif (_winner.muscles > 30)>> - _winner.slaveName is so massively muscular that she's actually impeded by her lack of speed and flexibility. The _animal.species is suitably cautious, and it does its best to avoid $his sword. The two go back and forth for a while -- the slave slashing and swinging, the animal leaping out of the way. $activeSlave.slaveName finally manages to get the better of the _animal.species, though, and manages to catch the tip of $his sword on the animal's leg. With a loud <<switch _animal.type>><<case "canine">>yelp<<case "hooved">>whinny<<case "feline">>howl<</switch>>, the _animal.species stumbles back, giving the slave a chance to bring $his sword down in an overhead swing, nearly removing the _animal.species's head. + _winner.slaveName is so massively muscular that $he's actually impeded by $his lack of speed and flexibility. The _animal.species is suitably cautious, and it does its best to avoid $his sword. The two go back and forth for a while -- the slave slashing and swinging, the animal leaping out of the way. $activeSlave.slaveName finally manages to get the better of the _animal.species, though, and manages to catch the tip of $his sword on the animal's leg. With a loud <<switch _animal.type>><<case "canine">>yelp<<case "hooved">>whinny<<case "feline">>howl<</switch>>, the _animal.species stumbles back, giving the slave a chance to bring $his sword down in an overhead swing, nearly removing the _animal.species's head. <<if $pitAudience == "paid">> The audience is reasonably impressed by the show of strength, and your @@.yellowgreen;cut of the betting@@ is reasonable. <<set $cash += 1000>> @@ -685,17 +691,17 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<if _loser.combatSkill > 0>> _loser.slaveName is fairly confident in $his fighting abilities, and $he knows that this fight is fairly evenly matched. <<else>> - _loser.slaveName doesn't know how to handle a sword, but $he feels fairly confident in $his chances all the same. + _loser.slaveName doesn't know how to handle a sword, but $he feels fairly confident in $his chances all the same. <</if>> $He doesn't know how to go about attacking an animal, though, so $he decides to play it safe and keep the _animal.species at sword's length. The _animal.species make a few false lunges at the slave, all the while keeping out of reach. After a few minutes of this, though, it's evident that _loser.slaveName is beginning to tire: $his sword is beginning to swing slower and slower, and $his stance isn't as straight. The animal seems to sense this, and, spotting an opening, makes a final lunge. Its <<switch _animal.type>><<case "canine" "feline">>teeth sink into $his throat<<case "hooved">>hooves connect with $his skull<</switch>>, ending $his life almost immediately. <<elseif (_loser.belly >= 300000)>> _loser.slaveName's belly is too big to possibly defend, so $he can't help but watch in horror as the _animal.species lunges at $him, <<switch _animal.type>><<case "canine" "feline">>fangs and claws out<<case "hooved">>headfirst<</switch>>. _loser.slaveName's belly ruptures like a popped water balloon, showering the animal with <<if _loser.pregType > 0>> - blood. _loser.slaveName collapses into the pile of organs and babies released from her body. + blood. _loser.slaveName collapses into the pile of organs and babies released from _his2 body. <<elseif _loser.bellyImplant > 0>> - blood and filler. _loser.slaveName collapses into the pool of organs and fluid released from her body. + blood and filler. _loser.slaveName collapses into the pool of organs and fluid released from _his2 body. <<else>> - blood and <<print _loser.inflationType>>. _loser.slaveName collapses into the pool of organs and fluid released from her body. + blood and <<print _loser.inflationType>>. _loser.slaveName collapses into the pool of organs and fluid released from _his2 body. <</if>> With a <<switch _animal.type>><<case "canine" "feline">>growl<<case "hooved">>snort<</switch>>, the _animal.species quickly finishes $him off<<if _animal.type == "hooved">> with a kick to the head<</if>>. <<if $pitAudience == "paid">> @@ -706,7 +712,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 100>> <</if>> <<elseif (_loser.boobs > 1200)>> - _loser.slaveName's tits are too big to possibly defend, so $he can't help but watch in horror as the _animal.species lunges at $him, <<switch _animal.type>><<case "canine" "feline">>fangs and claws out<<case "hooved">>headfirst<</switch>>. _loser.slaveName's reflexively drops her sword to clasp her hands over her ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. The _animal.species follows up with a <<switch _animal.type>><<case "canine" "feline">>fierce bite to one of $his legs, causing $him to collapse. A second later, the animal has finished $him off.<<case "hooved">>swift kick to the head, causing $him to drop like a rock. Another blow to the head finishes $him off.<</switch>> + _loser.slaveName's tits are too big to possibly defend, so $he can't help but watch in horror as the _animal.species lunges at $him, <<switch _animal.type>><<case "canine" "feline">>fangs and claws out<<case "hooved">>headfirst<</switch>>. _loser.slaveName's reflexively drops _his2 sword to clasp _his2 hands over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. The _animal.species follows up with a <<switch _animal.type>><<case "canine" "feline">>fierce bite to one of $his legs, causing $him to collapse. A second later, the animal has finished $him off.<<case "hooved">>swift kick to the head, causing $him to drop like a rock. Another blow to the head finishes $him off.<</switch>> <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw index 2b3f3934e2dbb146a70072f287b47d11b47b209c..e6b0575fe4e238796ecc0d644a2eeda13b8cedfb 100644 --- a/src/uncategorized/seNonlethalPit.tw +++ b/src/uncategorized/seNonlethalPit.tw @@ -8,12 +8,14 @@ <<else>> <<set _fighterOne = getSlave($Bodyguard.ID)>> <</if>> +<<setLocalPronouns _fighterOne>> <<if $pitAnimal == 0>> <<set _fighterTwo = $fighterIDs.pluck()>> <<set _fighterTwo = getSlave(_fighterTwo)>> <<if ndef _fighterOne || ndef _fighterTwo || (_fighterOne == 0) || (_fighterTwo == 0)>> <<goto "Nonrandom Event">> <</if>> + <<setLocalPronouns _fighterTwo 2>> <<else>> <<switch $pitAnimalType>> <<case "canine">> @@ -44,17 +46,17 @@ <<set $arcologies[0].FSRomanRevivalist += 0.2*$FSSingleSlaveRep>> <</if>> - You review the rules - the combatants are wearing light gloves, and the fight will be nonlethal, with you as the judge. The winner will have the right to do anything she wishes to the loser, + You review the rules - the combatants are wearing light gloves, and the fight will be nonlethal, with you as the judge. The winner will have the right to do anything they wish to the loser, <<if $pitVirginities == 0>> even take virginities, <<elseif $pitVirginities == 1>> - except take her virginity, + except take their virginity, <<elseif $pitVirginities == 2>> - except take her anal virginity, + except take their anal virginity, <<elseif $pitVirginities == 3>> except take virginities, <</if>> - and earn two complete days of rest. You take a moment to look over your girls before giving the word. + and earn two complete days of rest. You take a moment to look over your fighters before giving the word. <br><br> @@ -63,7 +65,7 @@ <<if _fighterOneDeadliness > 5>> _fighterOne.slaveName seems very confident, even eager to win a break. <<elseif _fighterOneDeadliness > 3>> - _fighterOne.slaveName seems nervous, but steels herself to fight for time off. + _fighterOne.slaveName seems nervous, but steels $himself to fight for time off. <<elseif _fighterOneDeadliness > 1>> _fighterOne.slaveName seems hesitant and unsure. <<else>> @@ -71,124 +73,124 @@ <</if>> <<if _fighterOne.combatSkill > 0>> - Her stance is obviously well-practiced. + $His stance is obviously well-practiced. <</if>> <<if _fighterOne.muscles > 95 && _fighterOne.height >= 185>> - Her huge muscles are an intimidating sight and, despite their massive size, she is tall enough to not be hindered by them. + $His huge muscles are an intimidating sight and, despite their massive size, $he is tall enough to not be hindered by them. <<elseif _fighterOne.muscles > 95>> - Her huge muscles are an intimidating sight, but may hinder her flexibility. + $His huge muscles are an intimidating sight, but may hinder $his flexibility. <<elseif _fighterOne.muscles > 30>> - Her muscles are a trim and powerful sight. + $His muscles are a trim and powerful sight. <<elseif _fighterOne.muscles < -95>> - She can barely stand, let alone defend herself. + $He can barely stand, let alone defend $himself. <<elseif _fighterOne.muscles < -30>> - She is very weak; a single punch will likely floor her. + $He is very weak; a single punch will likely floor $him. <<elseif _fighterOne.muscles < -5>> - She is rather unfit; she will likely be outmatched by near any real opponent. + $He is rather unfit; $he will likely be outmatched by near any real opponent. <</if>> <<if _fighterOne.height >= 170>> - Her height gives her a reach advantage with her fists and feet. + $His height gives $him a reach advantage with $his fists and feet. <</if>> <<if _fighterOne.weight > 190>> - Her extreme weight nearly immobilizes her. She is essentially a fleshy punching bag. + $His extreme weight nearly immobilizes $him. $He is essentially a fleshy punching bag. <<elseif _fighterOne.weight > 160>> - Her extreme weight limits her mobility and range of motion even if she can take punches like nothing. + $His extreme weight limits $his mobility and range of motion even if $he can take punches like nothing. <<elseif _fighterOne.weight > 130>> - Her extreme weight holds her back as a pit fighter. + $His extreme weight holds $him back as a pit fighter. <<elseif _fighterOne.weight > 30>> - Her heavy weight is an impediment as a pit fighter. + $His heavy weight is an impediment as a pit fighter. <<elseif _fighterOne.weight < -10>> - Her light weight is an impediment as a pit fighter. + $His light weight is an impediment as a pit fighter. <</if>> <<if _fighterOne.health < -50>> - Her poor health makes her a weaker combatant. + $His poor health makes $him a weaker combatant. <</if>> <<if _fighterOne.pregKnown == 1 || _fighterOne.bellyPreg >= 1500>> <<if _fighterOne.bellyPreg >= 750000>> - Her monolithic pregnancy guarantees her loss; not only is she on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag her to the ground. She has no hope of attacking around the straining mass, let alone stopping her opponent. The fear of what would happen should her adversary land a hit on her belly also weighs upon her mind. + $His monolithic pregnancy guarantees $his loss; not only is $he on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag $him to the ground. $He has no hope of attacking around the straining mass, let alone stopping $his opponent. The fear of what would happen should $his adversary land a hit on $his belly also weighs upon $his mind. <<elseif _fighterOne.bellyPreg >= 600000>> - Her titanic pregnancy is practically a guaranteed loss; she can barely stand let alone fight. The worry of a solid hit striking her life swollen womb also weighs on her mind. + $His titanic pregnancy is practically a guaranteed loss; $he can barely stand let alone fight. The worry of a solid hit striking $his life swollen womb also weighs on $his mind. <<elseif _fighterOne.bellyPreg >= 450000>> - Her gigantic pregnancy is nearly a guaranteed loss; it presents an unmissable, indefensible target for her adversary. + $His gigantic pregnancy is nearly a guaranteed loss; it presents an unmissable, indefensible target for $his adversary. <<elseif _fighterOne.bellyPreg >= 300000>> - Her massive pregnancy obstructs her movement and greatly hinders her. She struggles to think of how she could even begin to defend her bulk. + $His massive pregnancy obstructs $his movement and greatly hinders $him. $He struggles to think of how $he could even begin to defend $his bulk. <<elseif _fighterOne.bellyPreg >= 150000>> - Her giant pregnancy obstructs her movement and greatly slows her down. + $His giant pregnancy obstructs $his movement and greatly slows $him down. <<elseif _fighterOne.bellyPreg >= 100000>> - Her giant belly gets in her way and weighs her down. + $His giant belly gets in $his way and weighs $him down. <<elseif _fighterOne.bellyPreg >= 10000>> - Her huge belly is unwieldy and hinders her efforts. + $His huge belly is unwieldy and hinders $his efforts. <<elseif _fighterOne.bellyPreg >= 5000>> - Her advanced pregnancy makes her much less effective. + $His advanced pregnancy makes $him much less effective. <<elseif _fighterOne.bellyPreg >= 1500>> - Her growing pregnancy distracts her from the fight. + $His growing pregnancy distracts $him from the fight. <<else>> - The life just beginning to grow inside her distracts her from the fight. + The life just beginning to grow inside $him distracts $him from the fight. <</if>> <<elseif _fighterOne.bellyImplant >= 1500>> <<if _fighterOne.bellyImplant >= 750000>> - Her monolithic, <<print _fighterOne.bellyImplant>>cc implant filled belly guarantees her defeat; not only is she on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag her to the ground. She has no hope of attacking around the straining mass, let alone stopping her opponent. + $His monolithic, <<print _fighterOne.bellyImplant>>cc implant filled belly guarantees $his defeat; not only is $he on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag $him to the ground. $He has no hope of attacking around the straining mass, let alone stopping $his opponent. <<elseif _fighterOne.bellyImplant >= 600000>> - Her titanic, <<print _fighterOne.bellyImplant>>cc implant filled belly is practically a guaranteed defeat; she can barely stand let alone fight. Not only is it crippling heavy, unwieldy and an easy target, but she can feel it straining to hold the sheer amount of filler forced into it. + $His titanic, <<print _fighterOne.bellyImplant>>cc implant filled belly is practically a guaranteed defeat; $he can barely stand let alone fight. Not only is it cripplingly heavy, unwieldy and an easy target, but $he can feel it straining to hold the sheer amount of filler forced into it. <<elseif _fighterOne.bellyImplant >= 450000>> - Her gigantic, <<print _fighterOne.bellyImplant>>cc implant filled belly is nearly a guaranteed defeat; it presents an unmissable, indefensible target for her adversary. + $His gigantic, <<print _fighterOne.bellyImplant>>cc implant filled belly is nearly a guaranteed defeat; it presents an unmissable, indefensible target for $his adversary. <<elseif _fighterOne.bellyImplant >= 300000>> - Her massive, <<print _fighterOne.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning her in combat. + $His massive, <<print _fighterOne.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning $him in combat. <<elseif _fighterOne.bellyImplant >= 150000>> - Her giant, <<print _fighterOne.bellyImplant>>cc implant filled belly obstructs her movement and greatly slows her down. + $His giant, <<print _fighterOne.bellyImplant>>cc implant filled belly obstructs $his movement and greatly slows $him down. <<elseif _fighterOne.bellyImplant >= 100000>> - Her giant, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + $His giant, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off $his weight and making $him far less effective. <<elseif _fighterOne.bellyImplant >= 10000>> - Her huge, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + $His huge, <<print _fighterOne.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off $his weight and making $him far less effective. <<elseif _fighterOne.bellyImplant >= 5000>> - Her large, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering her less effective. + $His large, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering $him less effective. <<elseif _fighterOne.bellyImplant >= 1500>> - Her swollen, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and makes her less effective. + $His swollen, <<print _fighterOne.bellyImplant>>cc implant filled belly is heavy and makes $him less effective. <</if>> <</if>> <<if _fighterOne.labor == 1>> - She's feeling labor pains. Her child<<if _fighterOne.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious that it will put <<if _fighterOne.pregType > 1>>their<<else>>its<</if>> mother at the mercy of her opponent. + $He's feeling labor pains. $His child<<if _fighterOne.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious that it will put <<if _fighterOne.pregType > 1>>their<<else>>its<</if>> mother at the mercy of $his opponent. <<elseif _fighterOne.preg >= _fighterOne.pregData.normalBirth && _fighterOne.pregControl != "labor suppressors">> - She'll be going into labor any time now and she knows it. She's terrified of the thought of her water breaking during the fight. + $He'll be going into labor any time now and $he knows it. $He's terrified of the thought of $his water breaking during the fight. <</if>> <<if _fighterOne.bellyFluid >= 10000>> - Her hugely bloated, <<print _fighterOne.inflationType>>-filled belly is taut and painful, hindering her ability to fight. + $His hugely bloated, <<print _fighterOne.inflationType>>-filled belly is taut and painful, hindering $his ability to fight. <<elseif _fighterOne.bellyFluid >= 5000>> - Her bloated, <<print _fighterOne.inflationType>>-stuffed belly is constantly jiggling and moving, distracting her and throwing off her weight. + $His bloated, <<print _fighterOne.inflationType>>-stuffed belly is constantly jiggling and moving, distracting $him and throwing off $his weight. <<elseif _fighterOne.bellyFluid >= 2000>> - Her distended, <<print _fighterOne.inflationType>>-belly is uncomfortable and heavy, distracting her. + $His distended, <<print _fighterOne.inflationType>>-belly is uncomfortable and heavy, distracting $him. <</if>> <<if !canSee(_fighterOne)>> - Her lack of eyesight means certain defeat. + $His lack of eyesight means certain defeat. <<elseif ((_fighterOne.eyes == -1) && (_fighterOne.eyewear != "corrective glasses") && (_fighterOne.eyewear != "corrective contacts")) || (_fighterOne.eyes == 1 && (_fighterOne.eyewear == "blurring glasses" || _fighterOne.eyewear == "blurring contacts"))>> - Her poor eyesight makes her a weaker fighter. + $His poor eyesight makes $him a weaker fighter. <</if>> <<if !canHear(_fighterOne)>> - Her lack of hearing is a major detriment. + $His lack of hearing is a major detriment. <<elseif ((_fighterOne.hears == -1) && (_fighterOne.earwear != "hearing aids")) || (_fighterOne.hears == 0 && (_fighterOne.earwear == "muffling ear plugs"))>> - Her lack of hearing is a minor detriment. + $His poor hearing is a minor detriment. <</if>> <<if _fighterOne.amp < 0>> - The pit lights gleam on her P-Limbs. + The pit lights gleam on $his P-Limbs. <<if _fighterOne.amp == -4>> - Though their integral weapons are disabled, her upgraded prosthetics are almost as fast as natural limbs, and they can hit much, much harder. + Though their integral weapons are disabled, $his upgraded prosthetics are almost as fast as natural limbs, and they can hit much, much harder. <<elseif _fighterOne.amp == -5>> - Her advanced cybernetic limbs are faster than natural limbs, and their force is amplified, so that they can become potent weapons. + $His advanced cybernetic limbs are faster than natural limbs, and their force is amplified, so that they can become potent weapons. <</if>> <</if>> <<if _fighterOne.devotion <= 20>> <<if _fighterOne.trust < -20>> - She is unwilling to fight, but she knows the punishment for refusing to do so will be even worse. + $He is unwilling to fight, but $he knows the punishment for refusing to do so will be even worse. <</if>> <</if>> @@ -199,7 +201,7 @@ <<if _fighterTwoDeadliness > 5>> _fighterTwo.slaveName seems very confident, even eager to win a break. <<elseif _fighterTwoDeadliness > 3>> - _fighterTwo.slaveName seems nervous, but steels herself to fight for time off. + _fighterTwo.slaveName seems nervous, but steels _himself2 to fight for time off. <<elseif _fighterTwoDeadliness > 1>> _fighterTwo.slaveName seems hesitant and unsure. <<else>> @@ -207,128 +209,128 @@ <</if>> <<if _fighterTwo.combatSkill > 0>> - Her stance is obviously well-practiced. + _His2 stance is obviously well-practiced. <</if>> <<if _fighterTwo.muscles > 95 && _fighterTwo.height >= 185>> - Her huge muscles are an intimidating sight and, despite their massive size, she is tall enough to not be hindered by them. + _His2 huge muscles are an intimidating sight and, despite their massive size, _he2 is tall enough to not be hindered by them. <<elseif _fighterTwo.muscles > 95>> - Her huge muscles are an intimidating sight, but may hinder her flexibility. + _His2 huge muscles are an intimidating sight, but may hinder _his2 flexibility. <<elseif _fighterTwo.muscles > 30>> - Her muscles are a trim and powerful sight. + _His2 muscles are a trim and powerful sight. <<elseif _fighterTwo.muscles < -95>> - She can barely stand, let alone defend herself. + _He2 can barely stand, let alone defend _himself2. <<elseif _fighterTwo.muscles < -30>> - She is very weak; a single punch will likely floor her. + _He2 is very weak; a single punch will likely floor _him2. <<elseif _fighterTwo.muscles < -5>> - She is rather unfit; she will likely be outmatched by near any real opponent. + _He2 is rather unfit; _he2 will likely be outmatched by near any real opponent. <</if>> <<if _fighterTwo.height >= 170>> - Her height gives her a reach advantage with her fists and feet. + _His2 height gives _him2 a reach advantage with _his2 fists and feet. <</if>> <<if _fighterTwo.health > 50>> - Her shining health makes her a better fighter. + _His2 shining health makes _him2 a better fighter. <</if>> <<if _fighterTwo.weight > 190>> - Her extreme weight nearly immobilizes her. She is essentially a fleshy punching bag. + _His2 extreme weight nearly immobilizes _him2. _He2 is essentially a fleshy punching bag. <<elseif _fighterTwo.weight > 160>> - Her extreme weight limits her mobility and range of motion even if she can take punches like nothing. + _His2 extreme weight limits _his2 mobility and range of motion even if _he2 can take punches like nothing. <<elseif _fighterTwo.weight > 130>> - Her extreme weight holds her back as a pit fighter. + _His2 extreme weight holds _him2 back as a pit fighter. <<elseif _fighterTwo.weight > 30>> - Her heavy weight is an impediment as a pit fighter. + _His2 heavy weight is an impediment as a pit fighter. <<elseif _fighterTwo.weight < -10>> - Her light weight is an impediment as a pit fighter. + _His2 light weight is an impediment as a pit fighter. <</if>> <<if _fighterTwo.health < -50>> - Her poor health makes her a weaker combatant. + _His2 poor health makes _him2 a weaker combatant. <</if>> <<if _fighterTwo.pregKnown == 1 || _fighterTwo.bellyPreg >= 1500>> <<if _fighterTwo.bellyPreg >= 750000>> - Her monolithic pregnancy guarantees her loss; not only is she on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag her to the ground. She has no hope of attacking around the straining mass, let alone stopping her opponent. The fear of what would happen should her adversary land a hit on her belly also weighs upon her mind. + _His2 monolithic pregnancy guarantees _his2 loss; not only is _he2 on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag _him2 to the ground. _He2 has no hope of attacking around the straining mass, let alone stopping _his2 opponent. The fear of what would happen should _his2 adversary land a hit on _his2 belly also weighs upon _his2 mind. <<elseif _fighterTwo.bellyPreg >= 600000>> - Her titanic pregnancy is practically a guaranteed loss; she can barely stand let alone fight. The worry of a solid hit striking her life swollen womb also weighs on her mind. + _His2 titanic pregnancy is practically a guaranteed loss; _he2 can barely stand let alone fight. The worry of a solid hit striking _his2 life swollen womb also weighs on _his2 mind. <<elseif _fighterTwo.bellyPreg >= 450000>> - Her gigantic pregnancy is nearly a guaranteed loss; it presents an unmissable, indefensible target for her adversary. + _His2 gigantic pregnancy is nearly a guaranteed loss; it presents an unmissable, indefensible target for _his2 adversary. <<elseif _fighterTwo.bellyPreg >= 300000>> - Her massive pregnancy obstructs her movement and greatly hinders her. She struggles to think of how she could even begin to defend her bulk. + _His2 massive pregnancy obstructs _his2 movement and greatly hinders _him2. _He2 struggles to think of how _he2 could even begin to defend _his2 bulk. <<elseif _fighterTwo.bellyPreg >= 150000>> - Her giant pregnancy obstructs her movement and greatly slows her down. + _His2 giant pregnancy obstructs _his2 movement and greatly slows _him2 down. <<elseif _fighterTwo.bellyPreg >= 100000>> - Her giant belly gets in her way and weighs her down. + _His2 giant belly gets in _his2 way and weighs _him2 down. <<elseif _fighterTwo.bellyPreg >= 10000>> - Her huge belly is unwieldy and hinders her efforts. + _His2 huge belly is unwieldy and hinders _his2 efforts. <<elseif _fighterTwo.bellyPreg >= 5000>> - Her advanced pregnancy makes her much less effective. + _His2 advanced pregnancy makes _him2 much less effective. <<elseif _fighterTwo.bellyPreg >= 1500>> - Her growing pregnancy distracts her from the fight. + _His2 growing pregnancy distracts _him2 from the fight. <<else>> - The life just beginning to grow inside her distracts her from the fight. + The life just beginning to grow inside _him2 distracts _him2 from the fight. <</if>> <<elseif _fighterTwo.bellyImplant >= 1500>> <<if _fighterTwo.bellyImplant >= 750000>> - Her monolithic, <<print _fighterTwo.bellyImplant>>cc implant filled belly guarantees her defeat; not only is she on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag her to the ground. She has no hope of attacking around the straining mass, let alone stopping her opponent. + _His2 monolithic, <<print _fighterTwo.bellyImplant>>cc implant filled belly guarantees _his2 defeat; not only is _he2 on the verge of splitting open, but it is an unmissable, indefensible target that threatens to drag _him2 to the ground. _He2 has no hope of attacking around the straining mass, let alone stopping _his2 opponent. <<elseif _fighterTwo.bellyImplant >= 600000>> - Her titanic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is practically a guaranteed defeat; she can barely stand let alone fight. Not only is it crippling heavy, unwieldy and an easy target, but she can feel it straining to hold the sheer amount of filler forced into it. + _His2 titanic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is practically a guaranteed defeat; _he2 can barely stand let alone fight. Not only is it cripplingly heavy, unwieldy and an easy target, but _he2 can feel it straining to hold the sheer amount of filler forced into it. <<elseif _fighterTwo.bellyImplant >= 450000>> - Her gigantic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is nearly a guaranteed defeat; it presents an unmissable, indefensible target for her adversary. + _His2 gigantic, <<print _fighterTwo.bellyImplant>>cc implant filled belly is nearly a guaranteed defeat; it presents an unmissable, indefensible target for _his2 adversary. <<elseif _fighterTwo.bellyImplant >= 300000>> - Her massive, <<print _fighterTwo.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning her in combat. + _His2 massive, <<print _fighterTwo.bellyImplant>>cc implant filled belly is extremely heavy, unwieldy and an easy target, practically damning _him2 in combat. <<elseif _fighterTwo.bellyImplant >= 150000>> - Her giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly obstructs her movement and greatly slows her down. + _His2 giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly obstructs _his2 movement and greatly slows _him2 down. <<elseif _fighterTwo.bellyImplant >= 100000>> - Her giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + _His2 giant, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off _his2 weight and making _him2 far less effective. <<elseif _fighterTwo.bellyImplant >= 10000>> - Her huge, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off her weight and making her far less effective. + _His2 huge, <<print _fighterTwo.bellyImplant>>cc implant filled belly is very heavy and unwieldy, throwing off _his2 weight and making _him2 far less effective. <<elseif _fighterTwo.bellyImplant >= 5000>> - Her large, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering her less effective. + _His2 large, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and unwieldy, rendering _him2 less effective. <<elseif _fighterTwo.bellyImplant >= 1500>> - Her swollen, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and makes her less effective. + _His2 swollen, <<print _fighterTwo.bellyImplant>>cc implant filled belly is heavy and makes _him2 less effective. <</if>> <</if>> <<if _fighterTwo.labor == 1>> - She's feeling labor pains. Her child<<if _fighterTwo.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious that it will put <<if _fighterTwo.pregType > 1>>their<<else>>its<</if>> mother at the mercy of her opponent. + _He2's feeling labor pains. _His2 child<<if _fighterTwo.pregType > 1>>ren are<<else>> is<</if>> ready to be born, oblivious that it will put <<if _fighterTwo.pregType > 1>>their<<else>>its<</if>> mother at the mercy of _his2 opponent. <<elseif _fighterTwo.preg >= _fighterTwo.pregData.normalBirth && _fighterTwo.pregControl != "labor suppressors">> - She'll be going into labor any time now and she knows it. She's terrified of the thought of her water breaking during the fight. + _He2'll be going into labor any time now and _he2 knows it. _He2's terrified of the thought of _his2 water breaking during the fight. <</if>> <<if _fighterTwo.bellyFluid >= 10000>> - Her hugely bloated, <<print _fighterTwo.inflationType>>-filled belly is taut and painful, hindering her ability to fight. + _His2 hugely bloated, <<print _fighterTwo.inflationType>>-filled belly is taut and painful, hindering _his2 ability to fight. <<elseif _fighterTwo.bellyFluid >= 5000>> - Her bloated, <<print _fighterTwo.inflationType>>-stuffed belly is constantly jiggling and moving, distracting her and throwing off her weight. + _His2 bloated, <<print _fighterTwo.inflationType>>-stuffed belly is constantly jiggling and moving, distracting _him2 and throwing off _his2 weight. <<elseif _fighterTwo.bellyFluid >= 2000>> - Her distended, <<print _fighterTwo.inflationType>>-belly is uncomfortable and heavy, distracting her. + _His2 distended, <<print _fighterTwo.inflationType>>-belly is uncomfortable and heavy, distracting _him2. <</if>> <<if !canSee(_fighterTwo)>> - Her lack of eyesight means certain defeat. + _His2 lack of eyesight means certain defeat. <<elseif ((_fighterTwo.eyes == -1) && (_fighterTwo.eyewear != "corrective glasses") && (_fighterTwo.eyewear != "corrective contacts")) || (_fighterTwo.eyes == 1 && (_fighterTwo.eyewear == "blurring glasses" || _fighterTwo.eyewear == "blurring contacts"))>> - Her poor eyesight makes her a weaker fighter. + _His2 poor eyesight makes _him2 a weaker fighter. <</if>> <<if !canHear(_fighterTwo)>> - Her lack of hearing is a major detriment. + _His2 lack of hearing is a major detriment. <<elseif ((_fighterTwo.hears == -1) && (_fighterTwo.earwear != "hearing aids")) || (_fighterTwo.hears == 0 && (_fighterTwo.earwear == "muffling ear plugs"))>> - Her lack of hearing is a minor detriment. + _His2 poor hearing is a minor detriment. <</if>> <<if _fighterTwo.amp < 0>> - The pit lights gleam on her P-Limbs. + The pit lights gleam on _his2 P-Limbs. <<if _fighterTwo.amp == -4>> - Though their integral weapons are disabled, her upgraded prosthetics are almost as fast as natural limbs, and they can hit much, much harder. + Though their integral weapons are disabled, _his2 upgraded prosthetics are almost as fast as natural limbs, and they can hit much, much harder. <<elseif _fighterTwo.amp == -5>> - Her advanced cybernetic limbs are faster than natural limbs, and their force is amplified, so that they can become potent weapons. + _His2 advanced cybernetic limbs are faster than natural limbs, and their force is amplified, so that they can become potent weapons. <</if>> <</if>> <<if _fighterTwo.devotion <= 20>> <<if _fighterTwo.trust < -20>> - She is unwilling to fight, but she knows the punishment for refusing to do so will be even worse. + _He2 is unwilling to fight, but _he2 knows the punishment for refusing to do so will be even worse. <</if>> <</if>> @@ -355,9 +357,11 @@ <<set _winner = _fighterOne>> <<set _winnerDeadliness = _fighterOneDeadliness>> <</if>> + <<setLocalPronouns _winner>> + <<setLocalPronouns _loser 2>> <<if !canSee(_winner) && !canSee(_loser)>> - _winner.slaveName and _loser.slaveName are both blind making the fight a staredown. Neither slave wants to make the first move, especially with the drowning cacophony coming from the jeering crowd. Slowly, _winner.slaveName moves forward, waving feeling for her opponent before she herself gets found. _loser.slaveName's hand meets _winner.slaveName's and the two move to grab each other in a headlock. The two slaves violently thrash against each other, suffering more and more strikes as the struggle goes on. Eventually, _loser.slaveName can take no more and releases her grip on _winner.slaveName neck. It takes a moment for _winner.slaveName to stop wrestling the submitting _loser.slaveName and accepting her victory. + _winner.slaveName and _loser.slaveName are both blind, making the fight a staredown. Neither slave wants to make the first move, especially with the drowning cacophony coming from the jeering crowd. Slowly, _winner.slaveName moves forward, waving feeling for $his opponent before $he $himself gets found. _loser.slaveName's hand meets _winner.slaveName's and the two move to grab each other in a headlock. The two slaves violently thrash against each other, suffering more and more strikes as the struggle goes on. Eventually, _loser.slaveName can take no more and releases _his2 grip on _winner.slaveName neck. It takes a moment for _winner.slaveName to stop wrestling the submitting _loser.slaveName and accept $his victory. <<if $pitAudience == "paid">> The audience is surprised by the sudden wrestling match, and your @@.yellowgreen;cut of the betting@@ is modest. <<set $cash += 500>> @@ -366,7 +370,7 @@ <<set $rep += 50>> <</if>> <<elseif (_winnerDeadliness > _loserDeadliness+1) && (_winner.amp == -4)>> - Upon your word the two combatants approach each other. _winner.slaveName keeps her artificial limbs up in a protective position. _loser.slaveName probes her with some light blows, puzzled by this ironclad defense. Gradually, she hits harder and harder, her opponent grunting under the impacts but holding steady. Finally, _loser.slaveName overcommits to a body blow, and _winner.slaveName grips her forearm. That is the end. The augmented grip is effectively unbreakable, and _winner.slaveName uses it to pull her opponent in and grab her neck with the other hand, using it to exert just the right amount of pressure to choke her out harmlessly. Though the fight was short, + Upon your word the two combatants approach each other. _winner.slaveName keeps $his artificial limbs up in a protective position. _loser.slaveName probes $him with some light blows, puzzled by this ironclad defense. Gradually, _he2 hits harder and harder, _his2 opponent grunting under the impacts but holding steady. Finally, _loser.slaveName overcommits to a body blow, and _winner.slaveName grips _his2 forearm. That is the end. The augmented grip is effectively unbreakable, and _winner.slaveName uses it to pull $his opponent in and grab _his2 neck with the other hand, using it to exert just the right amount of pressure to choke _him2 out harmlessly. Though the fight was short, <<if $pitAudience == "paid">> the audience is quite impressed by the display, and your @@.yellowgreen;cut of the betting@@ is quite good. <<set $cash += 2000>> @@ -377,7 +381,7 @@ it was a good test of the slave's enhancements. <</if>> <<elseif (_winnerDeadliness > _loserDeadliness+1) && (_winner.amp == -5)>> - Upon your word the two combatants approach each other. _winner.slaveName keeps her advanced cybernetic limbs up in a protective position. _loser.slaveName probes her with some light blows, puzzled by this ironclad defense. Gradually, she hits harder and harder, her opponent grunting under the impacts but holding steady. Finally, _loser.slaveName tires, gets off balance, and _winner.slaveName manages to grab her forearm. _winner.slaveName's limbs emit an electric shock that temporarily incapacitates her opponent. _winner.slaveName uses her grip to pull her stunned opponent in and grab her neck with the other hand, using it to exert just the right amount of pressure to choke her out harmlessly. Though the fight was short, + Upon your word the two combatants approach each other. _winner.slaveName keeps $his advanced cybernetic limbs up in a protective position. _loser.slaveName probes $him with some light blows, puzzled by this ironclad defense. Gradually, _he2 hits harder and harder, _his2 opponent grunting under the impacts but holding steady. Finally, _loser.slaveName tires, gets off balance, and _winner.slaveName manages to grab _his2 forearm. _winner.slaveName's limbs emit an electric shock that temporarily incapacitates $his opponent. _winner.slaveName uses $his grip to pull $his stunned opponent in and grab _his2 neck with the other hand, using it to exert just the right amount of pressure to choke _him2 out harmlessly. Though the fight was short, <<if $pitAudience == "paid">> the audience is quite impressed by the display, and your @@.yellowgreen;cut of the betting@@ is quite good. <<set $cash += 2000>> @@ -388,16 +392,16 @@ it was a good test of the slave's enhancements. <</if>> <<elseif !canSee(_winner)>> - _winner.slaveName centers herself and hones in on _loser.slaveName's rapid breath. She readies herself, knowing she has a single chance to win. With heavy steps, _loser.slaveName rushes her, fully prepared to tackle the helpless combatant. _winner.slaveName gambles everything on a single high punch, a strike that slams _loser.slaveName's undefended neck. _loser.slaveName falls to the ground before the panicking _winner.slaveName, who quickly pins the coughing loser. + _winner.slaveName centers $himself and hones in on _loser.slaveName's rapid breath. $He readies $himself, knowing $he has a single chance to win. With heavy steps, _loser.slaveName rushes $him, fully prepared to tackle the helpless combatant. _winner.slaveName gambles everything on a single high punch, a strike that slams _loser.slaveName's undefended neck. _loser.slaveName falls to the ground before the panicking _winner.slaveName, who quickly pins the coughing loser. <<if $pitAudience == "paid">> - The audience is awestruck by the blind girl's triumph, and your @@.yellowgreen;cut of the betting@@ is enormous. + The audience is awestruck by the blind $girl's triumph, and your @@.yellowgreen;cut of the betting@@ is enormous. <<set $cash += 4000>> <<elseif $pitAudience == "free">> - The audience is @@.green;awestruck@@ by the blind girl's triumph. + The audience is @@.green;awestruck@@ by the blind $girl's triumph. <<set $rep += 200>> <</if>> <<elseif !canSee(_loser)>> - _winner.slaveName grins at _loser.slaveName's random swings and poor form. She centers in on her favorite part of _loser.slaveName's body before rushing between her strikes and tackling her to the ground. _loser.slaveName lays there, helpless to stop _winner.slaveName from molesting her. + _winner.slaveName grins at _loser.slaveName's random swings and poor form. $He centers in on $his favorite part of _loser.slaveName's body before rushing between _his2 strikes and tackling _him2 to the ground. _loser.slaveName lays there, helpless to stop _winner.slaveName from molesting _him2. <<if $pitAudience == "paid">> The audience found the fight embarrassing, and your @@.yellowgreen;cut of the betting@@ is pitiful. <<set $cash += 40>> @@ -407,7 +411,7 @@ <</if>> <<elseif (_winnerDeadliness > _loserDeadliness+3)>> <<if (_winner.combatSkill > 0)>> - _winner.slaveName wants to win, and she opens the fight with a furious attack. _loser.slaveName manages to get her forearms up, blocking a few blows, but by doing so leaves her abdomen open and obscures her vision enough that she is unprepared for the following kidney strike, which brings her gasping to one knee. _winner.slaveName lets her rise just a little before delivering a calculated hard right that sends _loser.slaveName to the mat. + _winner.slaveName wants to win, and $he opens the fight with a furious attack. _loser.slaveName manages to get _his2 forearms up, blocking a few blows, but by doing so leaves _his2 abdomen open and obscures _his2 vision enough that _he2 is unprepared for the following kidney strike, which brings _him2 gasping to one knee. _winner.slaveName lets _him2 rise just a little before delivering a calculated hard right that sends _loser.slaveName to the mat. <<if $pitAudience == "paid">> The audience is not very impressed by this execution, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 500>> @@ -416,7 +420,7 @@ <<set $rep += 25>> <</if>> <<else>> - _winner.slaveName wants to win and is confident she will, but she isn't particularly sure about how to do so. She fights cautiously, mostly hitting _loser.slaveName from afar. Slowly, the rain of blows begins to tell, opening _loser.slaveName's lip, giving her a bloody nose, and bruising her face. Realizing she has to do something, _loser.slaveName makes a desperate counterattack, @@.red;dripping blood@@ as she goes. As she does she manages to get her face in the way of another of _winner.slaveName's inexpert strikes and goes down hard. She makes to rise, but _winner.slaveName decides the fight by the simple expedient of kicking her in the crotch. + _winner.slaveName wants to win and is confident $he will, but $he isn't particularly sure about how to do so. $He fights cautiously, mostly hitting _loser.slaveName from afar. Slowly, the rain of blows begins to tell, opening _loser.slaveName's lip, giving _him2 a bloody nose, and bruising _his2 face. Realizing _he2 has to do something, _loser.slaveName makes a desperate counterattack, @@.red;dripping blood@@ as _he2 goes. As _he2 does _he2 manages to get _his2 face in the way of another of _winner.slaveName's inexpert strikes and goes down hard. _He2 makes to rise, but _winner.slaveName decides the fight by the simple expedient of kicking _him2 in the crotch. <<set _loser.health -= 10>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the beating, and your @@.yellowgreen;cut of the betting@@ is reasonable. @@ -427,7 +431,7 @@ <</if>> <</if>> <<elseif (_winner.belly >= 600000) && (_loser.belly >= 600000)>> - _winner.slaveName and _loser.slaveName stare each other down and both come to a realization. Neither can reach the other around their massive bellies. Instead, they choose to ram their bulk into each other in hopes of toppling the weaker. After a drawn out struggle, both slaves' middles are @@.red;dark red and shuddering,@@ ready to burst open. Rather than continue, _loser.slaveName lets the next strike down her hoping that the outcome of this fight isn't fatal. + _winner.slaveName and _loser.slaveName stare each other down and both come to a realization. Neither can reach the other around their massive bellies. Instead, they choose to ram their bulk into each other in hopes of toppling the weaker. After a drawn out struggle, both slaves' middles are @@.red;dark red and shuddering,@@ ready to burst open. Rather than continue, _loser.slaveName lets the next strike down _him2 hoping that the outcome of this fight isn't fatal. <<set _winner.health -= 50>> <<set _loser.health -= 50>> <<if $pitAudience == "paid">> @@ -438,7 +442,7 @@ <<set $rep += 75>> <</if>> <<elseif (_winner.belly >= 600000) && (_loser.belly < 300000)>> - _loser.slaveName spies an easy win against her massively bloated opponent and rushes in to topple _winner.slaveName. In an effort to defend herself, _winner.slaveName hoists her belly and turns suddenly, accidentally impacting _loser.slaveName with her massive middle and knocking her to the ground. Seeing an opportunity, _winner.slaveName releases her grip and slams her weighty womb down on _loser.slaveName, bashing the wind out of her. _loser.slaveName struggles to slip out from under the mass, but the weight is too great and she passes out. + _loser.slaveName spies an easy win against _his2 massively bloated opponent and rushes in to topple _winner.slaveName. In an effort to defend $himself, _winner.slaveName hoists $his belly and turns suddenly, accidentally impacting _loser.slaveName with $his massive middle and knocking _him2 to the ground. Seeing an opportunity, _winner.slaveName releases $his grip and slams $his weighty womb down on _loser.slaveName, bashing the wind out of _him2. _loser.slaveName struggles to slip out from under the mass, but the weight is too great and _he2 passes out. <<if $pitAudience == "paid">> The audience is impressed by this absurd win, and your @@.yellowgreen;cut of the betting@@ is reasonably. <<set $cash += 1000>> @@ -447,7 +451,7 @@ <<set $rep += 50>> <</if>> <<elseif (_winner.combatSkill > 0) && (_loser.combatSkill > 0)>> - Upon your word the two combatants approach each other warily, both knowing the other is reasonably competent. Before long they are trading expert blows. _winner.slaveName is getting the worst of it, so she decides to change the nature of the fight. After three tries she manages to bring _loser.slaveName to the ground, suffering a @@.red;broken nose@@ as she does. _loser.slaveName tries to break the imperfect hold but only earns herself an elbow to the face. She's furious and _winner.slaveName is obliged to wrench her arm @@.red;to the point of damage@@ before she allows herself to go limp. + Upon your word the two combatants approach each other warily, both knowing the other is reasonably competent. Before long they are trading expert blows. _winner.slaveName is getting the worst of it, so $he decides to change the nature of the fight. After three tries $he manages to bring _loser.slaveName to the ground, suffering a @@.red;broken nose@@ as $he does. _loser.slaveName tries to break the imperfect hold but only earns _himself2 an elbow to the face. _He2's furious and _winner.slaveName is obliged to wrench _his2 arm @@.red;to the point of damage@@ before _he2 allows _himself2 to go limp. <<set _loser.health -= 10>> <<set _winner.health -= 10>> <<if $pitAudience == "paid">> @@ -458,7 +462,7 @@ <<set $rep += 100>> <</if>> <<elseif (_winner.height-_loser.height >= 10)>> - _winner.slaveName realizes that _loser.slaveName's wingspan gives her a huge reach advantage. She bores straight in, taking a hit or two but coming on regardless. _loser.slaveName understands her opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When her back hits a padded wall, _winner.slaveName manages to land a light hit to her stomach that leaves _loser.slaveName winded enough that a hard kick to the side of her knee goes undefended. It causes @@.red;considerable damage,@@ dropping her and ending the fight. + _winner.slaveName realizes that _loser.slaveName's wingspan gives _him2 a huge reach advantage. $He bores straight in, taking a hit or two but coming on regardless. _loser.slaveName understands _his2 opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When _his2 back hits a padded wall, _winner.slaveName manages to land a light hit to _his2 stomach that leaves _loser.slaveName winded enough that a hard kick to the side of _his2 knee goes undefended. It causes @@.red;considerable damage,@@ dropping _him2 and ending the fight. <<set _loser.health -= 10>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the takedown, and your @@.yellowgreen;cut of the betting@@ is reasonable. @@ -468,7 +472,7 @@ <<set $rep += 50>> <</if>> <<elseif (_loser.eyebrowPiercing > 0)>> - The fight starts slowly, with the girls trading jabs. Just as the spectators are getting bored, _loser.slaveName takes a glancing blow to the eyebrow. Her piercing catches on _winner.slaveName's glove and tears out. _loser.slaveName goes after her tormentor in fury, streaming blood, the piercing forgotten on the mat. Any tendency _winner.slaveName might have had to feel badly about this is extinguished by the assault, and soon _winner.slaveName is even willing to follow up on the success by targeting pierced body parts. The fight ends with poor _loser.slaveName writhing in pain on the mat, @@.red;leaking blood@@ from several terribly shredded areas. + The fight starts slowly, with the girls trading jabs. Just as the spectators are getting bored, _loser.slaveName takes a glancing blow to the eyebrow. _His2 piercing catches on _winner.slaveName's glove and tears out. _loser.slaveName goes after _his2 tormentor in fury, streaming blood, the piercing forgotten on the mat. Any tendency _winner.slaveName might have had to feel badly about this is extinguished by the assault, and soon _winner.slaveName is even willing to follow up on the success by targeting pierced body parts. The fight ends with poor _loser.slaveName writhing in pain on the mat, @@.red;leaking blood@@ from several terribly shredded areas. <<set _loser.health -= 10, _loser.eyebrowPiercing = 0>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the gory spectacle, and your @@.yellowgreen;cut of the betting@@ is reasonable. @@ -478,7 +482,7 @@ <<set $rep += 50>> <</if>> <<elseif (_winner.muscles > 30)>> - _winner.slaveName is so massively muscular that she's actually impeded by her size. _loser.slaveName is properly afraid of her strength, though, so she tries to stay away as much as she can. The pit isn't large, however, and eventually _winner.slaveName manages to lay a hand on her. She pulls her down, and then it's all over but the beating. _loser.slaveName rains blows on her huge oppressor, but all _winner.slaveName has to do is hold on with one arm and deliver damage with the other. By the time she gives up and goes limp, _loser.slaveName has collected @@.red;many minor injuries.@@ + _winner.slaveName is so massively muscular that $he's actually impeded by $his size. _loser.slaveName is properly afraid of $his strength, though, so _he2 tries to stay away as much as _he2 can. The pit isn't large, however, and eventually _winner.slaveName manages to lay a hand on _him2. $He pulls _him2 down, and then it's all over but the beating. _loser.slaveName rains blows on _his2 huge oppressor, but all _winner.slaveName has to do is hold on with one arm and deliver damage with the other. By the time _he2 gives up and goes limp, _loser.slaveName has collected @@.red;many minor injuries.@@ <<set _loser.health -= 10>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the show of strength, and your @@.yellowgreen;cut of the betting@@ is reasonable. @@ -488,7 +492,7 @@ <<set $rep += 50>> <</if>> <<elseif _loser.belly >= 300000>> - _winner.slaveName wants to win badly enough that she takes and extremely brutal shortcut to victory. The instant the fight starts, she quickly knees _loser.slaveName in the stomach. The massively swollen _loser.slaveName goes down with a loud thud and plenty of jiggling. _winner.slaveName gloats over the struggling _loser.slaveName watching as she is unable to pull her bloated form off the ground. + _winner.slaveName wants to win badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he quickly knees _loser.slaveName in the stomach. The massively swollen _loser.slaveName goes down with a loud thud and plenty of jiggling. _winner.slaveName gloats over the struggling _loser.slaveName watching as _he2 is unable to pull _his2 bloated form off the ground. <<if $pitAudience == "paid">> The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 500>> @@ -497,7 +501,7 @@ <<set $rep += 50>> <</if>> <<elseif (_loser.boobs > 1200)>> - _winner.slaveName wants to win badly enough that she takes an extremely simple shortcut to victory. The instant the fight starts, she hits _loser.slaveName right in her huge tits, as hard as she can. This is a sucker punch of the worst kind; _loser.slaveName's boobs are so big that she has no real chance of defending them. She gasps with pain and wraps her arms around her aching bosom, giving _winner.slaveName a clear opening to deliver a free and easy blow to the jaw that sends the poor top-heavy slave to the mat. Any chance of _loser.slaveName rising is extinguished by her breasts; it takes her so long to muster an attempt to get up that _winner.slaveName can rain hits on her while she does. + _winner.slaveName wants to win badly enough that $he takes an extremely simple shortcut to victory. The instant the fight starts, $he hits _loser.slaveName right in _his2 huge tits, as hard as $he can. This is a sucker punch of the worst kind; _loser.slaveName's boobs are so big that _he2 has no real chance of defending them. _He2 gasps with pain and wraps _his2 arms around _his2 aching bosom, giving _winner.slaveName a clear opening to deliver a free and easy blow to the jaw that sends the poor top-heavy slave to the mat. Any chance of _loser.slaveName rising is extinguished by _his2 breasts; it takes _him2 so long to muster an attempt to get up that _winner.slaveName can rain hits on _him2 while _he2 does. <<if $pitAudience == "paid">> The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 500>> @@ -506,7 +510,7 @@ <<set $rep += 25>> <</if>> <<elseif (_loser.dick > 0)>> - _winner.slaveName wants to win badly enough that she takes an extremely brutal shortcut to victory. The instant the fight starts, she furiously goes for _loser.slaveName's face. _loser.slaveName defends herself with her arms, at which point _winner.slaveName delivers a mighty kick to the dick. _loser.slaveName goes down like a marionette with cut strings, her mouth soundlessly opening and closing and tears leaking from her closed eyes. _winner.slaveName winds up to kick her again but hesitates, wondering whether it's even necessary. + _winner.slaveName wants to win badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he furiously goes for _loser.slaveName's face. _loser.slaveName defends _himself2 with _his2 arms, at which point _winner.slaveName delivers a mighty kick to the dick. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName winds up to kick _him2 again but hesitates, wondering whether it's even necessary. <<if $pitAudience == "paid">> The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 500>> @@ -515,7 +519,7 @@ <<set $rep += 25>> <</if>> <<elseif canDoVaginal(_loser)>> - _winner.slaveName wants to win badly enough that she takes an extremely unpleasant shortcut to victory. The instant the fight starts, she furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends herself with her arms, at which point _winner.slaveName delivers a mighty cunt punt. _loser.slaveName goes straight down, her mouth soundlessly opening and closing and tears leaking from her closed eyes while her hands desperately shield her outraged pussy. _winner.slaveName follows her down and puts the unresisting girl's head in a simple lock. + _winner.slaveName wants to win badly enough that $he takes an extremely unpleasant shortcut to victory. The instant the fight starts, $he furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends _himself2 with _his2 arms, at which point _winner.slaveName delivers a mighty cunt punt. _loser.slaveName goes straight down, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes while _his2 hands desperately shield _his2 outraged pussy. _winner.slaveName follows _him2 down and puts the unresisting girl's head in a simple lock. <<if $pitAudience == "paid">> The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 500>> @@ -524,7 +528,7 @@ <<set $rep += 25>> <</if>> <<else>> - _winner.slaveName wants to win badly enough that she takes an extremely unpleasant shortcut to victory. The instant the fight starts, she furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends herself with her arms, at which point _winner.slaveName delivers a clenched fist to _loser.slaveName's throat. _loser.slaveName staggers back, wheezing for breath with tears leaking from her closed eyes. _winner.slaveName takes advantage of _loser.slaveName's vulnerability to quickly trip and pin the coughing loser. + _winner.slaveName wants to win badly enough that $he takes an extremely unpleasant shortcut to victory. The instant the fight starts, $he furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends _himself2 with _his2 arms, at which point _winner.slaveName delivers a clenched fist to _loser.slaveName's throat. _loser.slaveName staggers back, wheezing for breath with tears leaking from _his2 closed eyes. _winner.slaveName takes advantage of _loser.slaveName's vulnerability to quickly trip and pin the coughing loser. <<if $pitAudience == "paid">> The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 500>> @@ -540,89 +544,89 @@ You throw the victor's strap-on down to _winner.slaveName. <<if _winner.dick > 0 && canPenetrate(_winner)>> - She has no need of it, only taking a moment to pump her dick a few times to get it to rock hardness. + $He has no need of it, only taking a moment to pump $his dick a few times to get it to rock hardness. <<elseif _winner.clit > 4>> - She has no need of it, since her clit is big enough to use instead. + $He has no need of it, since $his clit is big enough to use instead. <<elseif _winner.dick > 6 && !canAchieveErection(_winner)>> - She needs it, since her enormous dick can't get hard any longer; not like it would fit in _loser.slaveName anyway. + $He needs it, since $his enormous dick can't get hard any longer (not like it would fit in _loser.slaveName anyway). <<elseif _winner.dick > 0>> - She needs it, since her soft dick won't be raping anything. + $He needs it, since $his soft dick won't be raping anything. <</if>> <<set _winner.penetrativeCount += 1, $penetrativeTotal += 1>> <<if $pitVirginities == 3>> /* all */ <<if (_loser.vagina == 0) && (_loser.anus == 0) && canDoVaginal(_loser) && canDoAnal(_loser)>> - She respects _loser.slaveName's virgin holes, and hauls the loser to her knees for a facefuck. + $He respects _loser.slaveName's virgin holes, and hauls the loser to _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <<elseif (_loser.vagina == 0) && canDoVaginal(_loser) && canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "pregnancy">> - and, after eyeing her virgin vagina with desire, penetrates the loser's anus. + and, after eyeing _his2 virgin vagina with desire, penetrates the loser's anus. <<else>> and respects the rules by penetrating the loser's anus. <</if>> <<set _loser.analCount += 1, $analTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<elseif (_loser.anus == 0) && canDoVaginal(_loser) && canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>> - and, after eyeing her virgin anus with desire, penetrates the loser's cunt. + and, after eyeing _his2 virgin anus with desire, penetrates the loser's cunt. <<else>> and respects the rules by penetrating the loser's cunt. <</if>> <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<elseif canDoVaginal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's cunt. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's cunt. <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<elseif canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's anus. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's anus. <<set _loser.analCount += 1, $analTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<else>> - She considers her options briefly, then hauls the loser to her knees for a facefuck. + $He considers $his options briefly, then hauls the loser to _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <<elseif $pitVirginities == 2>> /* anal */ <<if (_loser.vagina == 0) && canDoVaginal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "pregnancy">> - and gleefully takes advantage of your rules to @@.lime;take her virginity.@@ + and gleefully takes advantage of your rules to @@.lime;take _his2 virginity.@@ <<else>> - and @@.lime;breaks in her virgin vagina.@@ + and @@.lime;breaks in _his2 virgin vagina.@@ <</if>> <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<set _loser.vagina++>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<elseif (_loser.anus == 0) && canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>> <<if canDoVaginal(_loser)>> - and hungrily eyes her anal virginity before penetrating the loser's cunt. + and hungrily eyes _his2 anal virginity before penetrating the loser's cunt. <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<else>> - and hungrily eyes her anal virginity before hauling the loser onto her knees for a facefuck. + and hungrily eyes _his2 anal virginity before hauling the loser onto _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <<else>> @@ -630,45 +634,45 @@ and penetrates the loser's cunt. <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<else>> - and finds only a pristine butthole waiting for her. Respecting her anal virginity, she hauls the loser onto her knees for a facefuck. + and finds only a pristine butthole waiting for $him. Respecting _his2 anal virginity, $he hauls the loser onto _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <</if>> <<elseif canDoVaginal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's cunt. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's cunt. <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<elseif canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's anus. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's anus. <<set _loser.analCount += 1, $analTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<else>> - She considers her options briefly, then hauls the loser to her knees for a facefuck. + $He considers $his options briefly, then hauls the loser to _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <<elseif $pitVirginities == 1>> /* vagina */ <<if (_loser.vagina == 0) && canDoVaginal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "pregnancy">> <<if canDoAnal(_loser)>> - and hungrily eyes her pristine vagina before penetrating the loser's ass. + and hungrily eyes _his2 pristine vagina before penetrating the loser's ass. <<set _loser.analCount += 1, $analTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<else>> - and hungrily eyes her pristine vagina before hauling the loser onto her knees for a facefuck. + and hungrily eyes _his2 pristine vagina before hauling the loser onto _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <<else>> @@ -676,215 +680,215 @@ and penetrates the loser's ass. <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<else>> - and finds only a pristine butthole waiting for her. Respecting her anal virginity, she hauls the loser onto her knees for a facefuck. + and finds only a pristine butthole waiting for $him. Respecting _his2 anal virginity, $he hauls the loser onto _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <</if>> <<elseif (_loser.anus == 0) && canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>> - and gleefully takes advantage of your rules to @@.lime;take her anal virginity.@@ + and gleefully takes advantage of your rules to @@.lime;take _his2 anal virginity.@@ <<else>> - and @@.lime;breaks in her virgin anus.@@ + and @@.lime;breaks in _his2 virgin anus.@@ <</if>> <<set _loser.analCount += 1, $analTotal += 1>> <<set _loser.anus++>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<elseif canDoVaginal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's cunt. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's cunt. <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<elseif canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's anus. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's anus. <<set _loser.analCount += 1, $analTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<else>> - She considers her options briefly, then hauls the loser to her knees for a facefuck. + $He considers $his options briefly, then hauls the loser to _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <<else>> /* free game */ <<if (_loser.vagina == 0) && canDoVaginal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "pregnancy">> - and gleefully takes advantage of your rules to @@.lime;take her virginity.@@ + and gleefully takes advantage of your rules to @@.lime;take _his2 virginity.@@ <<else>> - and @@.lime;breaks in her virgin vagina.@@ + and @@.lime;breaks in _his2 virgin vagina.@@ <</if>> <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<set _loser.vagina++>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<elseif (_loser.anus == 0) && canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, <<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>> - and gleefully takes advantage of your rules to @@.lime;take her anal virginity.@@ + and gleefully takes advantage of your rules to @@.lime;take _his2 anal virginity.@@ <<else>> - and @@.lime;breaks in her virgin anus.@@ + and @@.lime;breaks in _his2 virgin anus.@@ <</if>> <<set _loser.analCount += 1, $analTotal += 1>> <<set _loser.anus++>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<elseif canDoVaginal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's cunt. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's cunt. <<set _loser.vaginalCount += 1, $vaginalTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner)>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile pussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 0, _winner.ID)>> <</if>> <<elseif canDoAnal(_loser)>> - She pushes _loser.slaveName's back down onto the mat, forces her legs apart, and penetrates the loser's anus. + $He pushes _loser.slaveName's back down onto the mat, forces _his2 legs apart, and penetrates the loser's anus. <<set _loser.analCount += 1, $analTotal += 1>> <<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>> - <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills her fertile asspussy with cum, but _winner.slaveName grabs her hands and pins them to keep her from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping her pregnant, but _winner.slaveName grinds her face into the mat to shut her up.<</if>> + <<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining.<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up.<</if>> <<= knockMeUp(_loser, 50, 1, _winner.ID)>> <</if>> <<else>> - She considers her options briefly, then hauls the loser to her knees for a facefuck. + $He considers $his options briefly, then hauls the loser to _his2 knees for a facefuck. <<set _loser.oralCount += 1, $oralTotal += 1>> <</if>> <</if>> <<if (_winner.sexualFlaw == "malicious")>> - _winner.slaveName lives to torment and violate slave girls. She uses _loser.slaveName for her @@.hotpink;pleasure,@@ slapping her viciously, pinching her until she draws blood, and showing off for the spectators. + _winner.slaveName lives to torment and violate slave girls. $He uses _loser.slaveName for $his @@.hotpink;pleasure,@@ slapping _him2 viciously, pinching _him2 until $he draws blood, and showing off for the spectators. <<if $pitAudience != "none">> The audience @@.green;greatly enjoys@@ the depraved spectacle. <<set $rep += 50>> <</if>> <<set _winner.devotion += 2>> <<elseif (_winner.sexualFlaw == "abusive")>> - _winner.slaveName lives to abuse and violate slave girls. She uses _loser.slaveName for her @@.hotpink;pleasure,@@ raping her mercilessly, striking her until she turns a deep reddish-purple, and showing off for the spectators. + _winner.slaveName lives to abuse and violate slave girls. $He uses _loser.slaveName for $his @@.hotpink;pleasure,@@ raping _him2 mercilessly, striking _him2 until _he2 turns a deep reddish-purple, and showing off for the spectators. <<if $pitAudience != "none">> The audience @@.green;greatly enjoys@@ the depraved spectacle. <<set $rep += 50>> <</if>> <<set _winner.devotion += 2>> <<elseif (_winner.energy > 95)>> - _winner.slaveName doesn't have to feign willingness to rape a slave girl. She uses _loser.slaveName for her @@.hotpink;pleasure,@@ groping her, kissing her unwilling mouth, and showing off for the spectators. + _winner.slaveName doesn't have to feign willingness to rape a slave _girl2. $He uses _loser.slaveName for $his @@.hotpink;pleasure,@@ groping _him2, kissing _his2 unwilling mouth, and showing off for the spectators. <<if $pitAudience != "none">> The audience @@.green;greatly enjoys@@ the depraved spectacle. <<set $rep += 50>> <</if>> <<set _winner.devotion += 1>> <<elseif (_winner.fetish == "sadist") && (_winner.fetishStrength > 60)>> - _winner.slaveName doesn't have to feign willingness abuse and violate a slave girl. She uses _loser.slaveName for her @@.hotpink;pleasure,@@ slapping her cruelly, pinching her until she draws blood, and showing off for the spectators. + _winner.slaveName doesn't have to feign willingness abuse and violate a slave _girl2. $He uses _loser.slaveName for $his @@.hotpink;pleasure,@@ slapping _him2 cruelly, pinching _him2 until $he draws blood, and showing off for the spectators. <<if $pitAudience != "none">> The audience @@.green;greatly enjoys@@ the depraved spectacle. <<set $rep += 50>> <</if>> <<set _winner.devotion += 1>> <<elseif (_winner.devotion > 75)>> - _winner.slaveName is so broken to slavery that she @@.hotpink;enjoys@@ winning the fight and raping _loser.slaveName. + _winner.slaveName is so broken to slavery that $he @@.hotpink;enjoys@@ winning the fight and raping _loser.slaveName. <<if $pitAudience != "none">> The audience @@.green;greatly enjoys@@ the depraved spectacle. <<set $rep += 50>> <</if>> <<set _winner.devotion += 1>> <<elseif (_winner.devotion > 20)>> - _winner.slaveName understands her role and thoroughly rapes _loser.slaveName. + _winner.slaveName understands $his role and thoroughly rapes _loser.slaveName. <<if $pitAudience != "none">> The audience @@.green;enjoys@@ the spectacle. <<set $rep += 25>> <</if>> <<else>> - _winner.slaveName is unenthusiastic and just thrusts mechanically, to avoid being punished. She @@.mediumorchid;resents@@ having to fight and fuck. + _winner.slaveName is unenthusiastic and just thrusts mechanically, to avoid being punished. $He @@.mediumorchid;resents@@ having to fight and fuck. <<if $pitAudience != "none">> The audience barely pays attention. <</if>> <<set _winner.devotion -= 2>> <</if>> <<if (_winner.rivalry > 0) && (_loser.ID == _winner.rivalryTarget)>> - She @@.hotpink;relishes@@ the chance to abuse _loser.slaveName, whom she dislikes. + $He @@.hotpink;relishes@@ the chance to abuse _loser.slaveName, whom $he dislikes. <<set _winner.devotion += 5>> <<elseif (_winner.relationship >= 0) && (_loser.ID == _winner.relationshipTarget) && (_winner.devotion > 20)>> - She accepts having to abuse _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse _loser.slaveName, and plans to make it up to _him2 later. <<elseif (_winner.relationship >= 0) && (_loser.ID == _winner.relationshipTarget)>> - She @@.mediumorchid;hates@@ having to abuse _loser.slaveName. + $He @@.mediumorchid;hates@@ having to abuse _loser.slaveName. <<set _winner.devotion -= 10>> <<elseif _winner.mother == _loser.ID>> <<if _winner.devotion > 20>> - She accepts having to abuse her mother, _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse $his mother, _loser.slaveName, and plans to make it up to _him2 later. <<else>> - _winner.slaveName is unenthusiastic and just thrusts mechanically, to avoid being punished. She @@.mediumorchid;resents@@ having to fight and fuck. The audience barely pays attention. + _winner.slaveName is unenthusiastic and just thrusts mechanically, to avoid being punished. $He @@.mediumorchid;resents@@ having to fight and fuck. The audience barely pays attention. <<set _winner.devotion -= 2>> <</if>> <<elseif _winner.father == _loser.ID>> <<if _winner.devotion > 20>> - She accepts having to abuse her father, _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse $his father, _loser.slaveName, and plans to make it up to _him2 later. <<else>> - She @@.mediumorchid;hates@@ having to abuse her father, _loser.slaveName. + $He @@.mediumorchid;hates@@ having to abuse $his father, _loser.slaveName. <<set _winner.devotion -= 10>> <</if>> <<elseif _loser.mother == _winner.ID || _loser.father == _winner.ID>> <<if _winner.devotion > 20>> - She accepts having to abuse her daughter, _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse $his daughter, _loser.slaveName, and plans to make it up to _him2 later. <<else>> - She @@.mediumorchid;hates@@ having to abuse her daughter, _loser.slaveName. + $He @@.mediumorchid;hates@@ having to abuse $his daughter, _loser.slaveName. <<set _winner.devotion -= 10>> <</if>> <<elseif _winner.sisters > 0>> <<switch areSisters(_winner, _loser)>> <<case 1>> <<if _winner.devotion > 20>> - She accepts having to abuse her twin sister, _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse $his twin sister, _loser.slaveName, and plans to make it up to _him2 later. <<else>> - She @@.mediumorchid;hates@@ having to abuse her mother, _loser.slaveName. + $He @@.mediumorchid;hates@@ having to abuse $his twin sister, _loser.slaveName. <<set _winner.devotion -= 10>> <</if>> <<case 2>> <<if _winner.devotion > 20>> - She accepts having to abuse her sister, _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse $his sister, _loser.slaveName, and plans to make it up to _him2 later. <<else>> - She @@.mediumorchid;hates@@ having to abuse her father, _loser.slaveName. + $He @@.mediumorchid;hates@@ having to abuse $his sister, _loser.slaveName. <<set _winner.devotion -= 10>> <</if>> <<case 3>> <<if _winner.devotion > 20>> - She accepts having to abuse her half-sister, _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse $his half-sister, _loser.slaveName, and plans to make it up to _him2 later. <<else>> - She @@.mediumorchid;hates@@ having to abuse her daughter, _loser.slaveName. + $He @@.mediumorchid;hates@@ having to abuse $his half-sister, _loser.slaveName. <<set _winner.devotion -= 10>> <</if>> <</switch>> <<elseif (_winner.relation != 0) && (_loser.ID == _winner.relationTarget) && (_winner.devotion > 20)>> - She accepts having to abuse _loser.slaveName, and plans to make it up to her later. + $He accepts having to abuse _loser.slaveName, and plans to make it up to _him2 later. <<elseif (_winner.relation != 0) && (_loser.ID == _winner.relationTarget)>> - She @@.mediumorchid;hates@@ having to abuse _loser.slaveName. + $He @@.mediumorchid;hates@@ having to abuse _loser.slaveName. <<set _winner.devotion -= 10>> <</if>> <<if _winner.fetish == "sadist" && _winner.fetishStrength > 90 && _winner.sexualFlaw != "malicious" && _winner.devotion > 20>> - She noticed something while she was raping _loser.slaveName; watching the way she writhed in pain was strangely satisfying, as she was making her suffer. _winner.slaveName cums powerfully at the mere thought; she has become @@.yellow;sexually addicted to inflicting pain and anguish.@@ + $He noticed something while $he was raping _loser.slaveName; watching the way _he2 writhed in pain was strangely satisfying, as $he was making _him2 suffer. _winner.slaveName cums powerfully at the mere thought; $he has become @@.yellow;sexually addicted to inflicting pain and anguish.@@ <<set _winner.sexualFlaw = "malicious">> <<elseif _winner.fetish == "masochist" && _winner.fetishStrength > 90 && _winner.sexualFlaw != "self hating" && _winner.devotion <= 20>> - She feels horrible after forcing herself on _loser.slaveName; she is the one that should suffer, not her. _winner.slaveName has @@.yellow;descended into true self hatred.@@ + $He feels horrible after forcing $himself on _loser.slaveName; $he is the one that should suffer, not _him2. _winner.slaveName has @@.yellow;descended into true self hatred.@@ <<set _winner.sexualFlaw = "self hating">> <<elseif _winner.fetish == "dom" && _winner.fetishStrength > 90 && _winner.sexualFlaw != "abusive" && _winner.devotion > 20>> - She noticed something while she was raping _loser.slaveName; watching the way she cowered before her raised palm was strangely satisfying, as were the painful moans that accompanied every forceful thrust. _winner.slaveName cums powerfully at the mere thought; she has become @@.yellow;sexually abusive, getting off on the thrill of forcing herself on other slaves.@@ + $He noticed something while $he was raping _loser.slaveName; watching the way _he2 cowered before $his raised palm was strangely satisfying, as were the painful moans that accompanied every forceful thrust. _winner.slaveName cums powerfully at the mere thought; $he has become @@.yellow;sexually abusive, getting off on the thrill of forcing $himself on other slaves.@@ <<set _winner.sexualFlaw = "abusive">> <<elseif _winner.behavioralFlaw == "none" && random(1,100) <= 5 && _winner.devotion <= 20>> - She begins to act @@.red;oddly@@ after the fight; having to beat down and rape another slave may have affected her mentally. + $He begins to act @@.red;oddly@@ after the fight; having to beat down and rape another slave may have affected $him mentally. <<set _winner.behavioralFlaw = "odd">> <</if>> <<if (_loser.sexualFlaw == "self hating")>> - _loser.slaveName feels she @@.hotpink;deserved this.@@ + _loser.slaveName feels _he2 @@.hotpink;deserved this.@@ <<set _loser.devotion += 5>> <<elseif (_loser.fetish == "masochist") && (_loser.fetishKnown == 1) && (_loser.fetishStrength > 60)>> _loser.slaveName @@.hotpink;gets off@@ on being beaten and molested. @@ -898,36 +902,36 @@ <<set _loser.trust -= 10>> <</if>> <<if (_loser.rivalry > 0) && (_winner.ID == _loser.rivalryTarget)>> - She is @@.mediumorchid;embarrassed@@ by losing to and being raped by _winner.slaveName, whom she dislikes, and @@.gold;fears@@ that it will happen again. + _He2 is @@.mediumorchid;embarrassed@@ by losing to and being raped by _winner.slaveName, whom _he2 dislikes, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <<elseif (_loser.relationship >= 0) && (_winner.ID == _loser.relationshipTarget) && (_loser.devotion >= 4)>> - She accepts _winner.slaveName having to rape her. + _He2 accepts _winner.slaveName having to rape _him2. <<elseif (_loser.relationship >= 0) && (_winner.ID == _loser.relationshipTarget)>> - She @@.mediumorchid;hates@@ having to accept rape from _winner.slaveName, and @@.gold;fears@@ that it will happen again. + _He2 @@.mediumorchid;hates@@ having to accept rape from _winner.slaveName, and @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<set _loser.devotion -= 10>> <<elseif _loser.mother == _winner.ID>> <<if _loser.devotion > 20>> - She accepts her mother, _winner.slaveName, having to rape her, but she @@.gold;fears@@ that it will happen again. + _He2 accepts _his2 mother, _winner.slaveName, having to rape _him2, but _he2 @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<else>> - She @@.mediumorchid;hates@@ having to accept rape from her own mother, _winner.slaveName, and @@.gold;fears@@ that it will happen again. + _He2 @@.mediumorchid;hates@@ having to accept rape from _his2 own mother, _winner.slaveName, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <</if>> <<elseif _loser.father == _winner.ID>> <<if _loser.devotion > 20>> - She accepts her father, _winner.slaveName, having to rape her, but she @@.gold;fears@@ that it will happen again. + _He2 accepts _his2 father, _winner.slaveName, having to rape _him2, but _he2 @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<else>> - She @@.mediumorchid;hates@@ having to accept rape from her own father, _winner.slaveName, and @@.gold;fears@@ that it will happen again. + _He2 @@.mediumorchid;hates@@ having to accept rape from _his2 own father, _winner.slaveName, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <</if>> <<elseif _winner.mother == _loser.ID || _winner.father == _loser.ID>> <<if _loser.devotion > 20>> - She accepts her daughter, _winner.slaveName, having to rape her, but she @@.gold;fears@@ that it will happen again. + _He2 accepts _his2 daughter, _winner.slaveName, having to rape _him2, but _he2 @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> @@ -936,45 +940,45 @@ <<switch areSisters(_winner, _loser)>> <<case 1>> <<if _loser.devotion > 20>> - She accepts her twin sister, _winner.slaveName, having to rape her, but she @@.gold;fears@@ that it will happen again. + _He2 accepts _his2 twin sister, _winner.slaveName, having to rape _him2, but _he2 @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<else>> - She @@.mediumorchid;hates@@ having to accept rape from her own mother, _winner.slaveName, and @@.gold;fears@@ that it will happen again. + _He2 @@.mediumorchid;hates@@ having to accept rape from _his2 own twin sister, _winner.slaveName, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <</if>> <<case 2>> <<if _loser.devotion > 20>> - She accepts her sister, _winner.slaveName, having to rape her, but she @@.gold;fears@@ that it will happen again. + _He2 accepts _his2 sister, _winner.slaveName, having to rape _him2, but _he2 @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<else>> - She @@.mediumorchid;hates@@ having to accept rape from her own father, _winner.slaveName, and @@.gold;fears@@ that it will happen again. + _He2 @@.mediumorchid;hates@@ having to accept rape from _his2 own sister, _winner.slaveName, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <</if>> <<case 3>> <<if _loser.devotion > 20>> - She accepts her half-sister, _winner.slaveName, having to rape her, but she @@.gold;fears@@ that it will happen again. + _He2 accepts _his2 half-sister, _winner.slaveName, having to rape _him2, but _he2 @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<else>> - She @@.mediumorchid;hates@@ having to accept rape from her own daughter, _winner.slaveName, and @@.gold;fears@@ that it will happen again. + _He2 @@.mediumorchid;hates@@ having to accept rape from _his2 own half-sister, _winner.slaveName, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <</if>> <</switch>> <<elseif (_loser.relation != 0) && (_winner.ID == _loser.relationTarget) && (_loser.devotion > 20)>> - She accepts _winner.slaveName having to rape her, but she @@.gold;fears@@ that it will happen again. + _He2 accepts _winner.slaveName having to rape _him2, but _he2 @@.gold;fears@@ that it will happen again. <<set _loser.trust -= 10>> <<elseif (_loser.relation != 0) && (_winner.ID == _loser.relationTarget)>> - She @@.mediumorchid;hates@@ having to accept rape from _winner.slaveName, and @@.gold;fears@@ that it will happen again. + _He2 @@.mediumorchid;hates@@ having to accept rape from _winner.slaveName, and @@.gold;fears@@ that it will happen again. <<set _loser.devotion -= 10>> <<set _loser.trust -= 10>> <</if>> <<if _loser.fetish == "masochist" && _loser.fetishStrength > 90 && _loser.behavioralFlaw != "self hating">> - She feels strangely content after being abused and violated; she is the one that should suffer, after all. _loser.slaveName has @@.yellow;descended into true self hatred.@@ + _He2 feels strangely content after being abused and violated; _he2 is the one that should suffer, after all. _loser.slaveName has @@.yellow;descended into true self hatred.@@ <<set _loser.behavioralFlaw = "self hating">> <<elseif _loser.behavioralFlaw == "none" && random(1,100) <= 5 && _loser.devotion <= 20>> - She begins to act @@.red;oddly@@ after the fight; losing and getting raped may have affected her mentally. + _He2 begins to act @@.red;oddly@@ after the fight; losing and getting raped may have affected _him2 mentally. <<set _loser.behavioralFlaw = "odd">> <</if>> @@ -1024,7 +1028,7 @@ <<set _canRun = 0>> <</if>> - <<if ($activeSlave.devotion > 50) || ($activeSlave.devotion > 20 && ($activeSlave.fetish == "masochist" || $activeSlave.fetish == "humilation" || $activeSlave.sexualQuirk == "perverted" || $activeSlave.behavioralQuirk == "sinful"))>> + <<if ($activeSlave.devotion > 50) || ($activeSlave.devotion > 20 && ($activeSlave.fetish == "masochist" || $activeSlave.fetish == "humiliation" || $activeSlave.sexualQuirk == "perverted" || $activeSlave.behavioralQuirk == "sinful"))>> <<set _agree = 1>> <<else>> <<set _agree = 0>> @@ -1044,19 +1048,17 @@ <</if>> <br><br> - $activeSlave.slaveName and the _animal.species enter $pitName from opposite sides. $activeSlave.slaveName is naked and $his wrists have been bound, and $he has already been given $his instructions: $he is to try to avoid being caught and <<if _agree == 1>>fucked<<else>>raped<</if>> by the animal for five minutes, and if $he succeeds, $he wins. The _animal.species has been given a large dose of aphrodasiacs, and its lust is apparent -- its _animal.dickSize cock is clearly visible, even from where you are seated. It isn't in a hurry, and slowly saunters over to where the <<if _agree == 1>>determined<<else>>terrified<</if>> slave is standing. After what seems to be a moment of deliberation, $he finally makes $his move, and starts <<if _canRun == 1>>running<<else>>moving as quickly as $he can<</if>> in the opposite direction. The _animal.species quickly follows suit, breaking out into a full sprint toward $him. + $activeSlave.slaveName and the _animal.species enter $pitName from opposite sides. $activeSlave.slaveName is naked and $his wrists have been bound, and $he has already been given $his instructions: $he is to try to avoid being caught and <<if _agree == 1>>fucked<<else>>raped<</if>> by the animal for five minutes, and if $he succeeds, $he wins. The _animal.species has been given a large dose of aphrodisiacs, and its lust is apparent -- its _animal.dickSize cock is clearly visible, even from where you are seated. It isn't in a hurry, and slowly saunters over to where the <<if _agree == 1>>determined<<else>>terrified<</if>> slave is standing. After what seems to be a moment of deliberation, $he finally makes $his move, and starts <<if _canRun == 1>>running<<else>>moving as quickly as $he can<</if>> in the opposite direction. The _animal.species quickly follows suit, breaking out into a full sprint toward $him. <<if random(1,100) < 50>> <<if _canRun == 1>> $activeSlave.slaveName is quick, though, and $he manages to avoid the animal for the full five minutes, and drops to $his knees in relief and exhaustion once the bell sounds and the _animal.species is leashed and pulled back into its cage. - - <<if $pitAudience == "paid">> - The audience is fairly impressed by this impressive display of sportsmanship, and so is your @@.yellowgreen;cut of the betting.@@ + <<if $pitAudience == "paid">> + The audience is fairly impressed by this impressive display of sportsmanship, and so is your @@.yellowgreen;cut of the betting.@@ <<set $cash += 2500>> - <<elseif $pitAudience == "free">> - The audience is @@.green;fairly impressed@@ by this impressive display of sportsmanship. - <<set $rep += 100>> - <</if>> - + <<elseif $pitAudience == "free">> + The audience is @@.green;fairly impressed@@ by this impressive display of sportsmanship. + <<set $rep += 100>> + <</if>> <</if>> <<else>> <<set _minutesLasted = random(1,5)>> @@ -1073,7 +1075,7 @@ <<set $rep += 25>> <</if>> /* TODO: rewrite this to account for more variables (and to clean this whole mess up) */ - It <<if _animal.type != "hooved">>swipes at $his legs<<else>>headbutts $him<</if>>, causing $him to go down hard. It doesn't waste a moment, and mounts $him quicker than you thought would have been possible for a _animal.species. It takes a few tries, but it finally manages to find $his _orifice, causing <<if $audience != "none">>the crowd to go wild and<</if>> $activeSlave.slaveName to give a long, drawn-out <<if _agree == 1>>moan<<else>>scream<</if>> as its _animal.dickSize cock <<if (_orifice == "pussy" && $activeSlave.vagina == 0) || (_orifice == "asshole" && $activeSlave.anus == 0)>>@@.limegreen;breaks in@@<<else>>fills<</if>> $his _orifice. Without hesitation, it begins to steadily thrust, pounding $him harder and harder as it grows closer and closer to climax. After several minutes, you see the animal finally stop thrusting as the barely-there slave gives a loud <<if _agree == 1>>moan<<else>>groan<</if>>. <<if $audience != "none">>The crowd gives a loud cheer as the<<else>>The<</if>> animal pulls out, leaving the thouroughly fucked-out $activeSlave.slaveName lying there, cum streaming out of $his _orifice. + It <<if _animal.type != "hooved">>swipes at $his legs<<else>>headbutts $him<</if>>, causing $him to go down hard. It doesn't waste a moment, and mounts $him quicker than you thought would have been possible for a _animal.species. It takes a few tries, but it finally manages to find $his _orifice, causing <<if $audience != "none">>the crowd to go wild and<</if>> $activeSlave.slaveName to give a long, drawn-out <<if _agree == 1>>moan<<else>>scream<</if>> as its _animal.dickSize cock <<if (_orifice == "pussy" && $activeSlave.vagina == 0) || (_orifice == "asshole" && $activeSlave.anus == 0)>>@@.limegreen;breaks in@@<<else>>fills<</if>> $his _orifice. Without hesitation, it begins to steadily thrust, pounding $him harder and harder as it grows closer and closer to climax. After several minutes, you see the animal finally stop thrusting as the barely-there slave gives a loud <<if _agree == 1>>moan<<else>>groan<</if>>. <<if $audience != "none">>The crowd gives a loud cheer as the<<else>>The<</if>> animal pulls out, leaving the thoroughly fucked-out $activeSlave.slaveName lying there, cum streaming out of $his _orifice. /* TODO: write an ending / post-fight message */ <</if>> <<set $slaves[$slaveIndices[_fighterOne.ID]] = _fighterOne>> diff --git a/src/uncategorized/shops.tw b/src/uncategorized/shops.tw index b20670cdbd79934401f75ca5d8b5409b25bc6d8d..aafcc38c16b9a42e21fca3cddacd91edca26c4ea 100644 --- a/src/uncategorized/shops.tw +++ b/src/uncategorized/shops.tw @@ -17,7 +17,7 @@ This is a section of the promenade <span id="result"><<link "Try one">><<replace "#result">>You decide to try one of the latest models. Naturally, the store is eager to have you seen considering their products. The harness is very comfortable, and it <<if $PC.dick == 1>>equips you with a second phallus. The slave salesgirl lacks a vagina, but encourages you to try the setup on her anyway, promising that her backpussy can accept double penetration. It can.<<else>>provides you with an extremely large phallus, which cums from an internal reservoir. The slave salesgirl encourages you to try the setup on her, promising that her holes can accommodate it. They can.<</if>><</replace>><</link>></span> <<case "Gender Fundamentalist">> dedicated to Gender Fundamentalism. The establishments here are mostly focused on <<if $arcologies[0].FSRestart != "unset">>keeping slaves attractively feminine. There are shops offering all kinds of treatments, drugs, clothes, and furniture to satisfy even the most discerning lady<<else>>citizen reproduction with slaves. There are shops offering all kinds of treatments, drugs, clothes, and furniture to facilitate the successful impregnation of one's chattel, along with a variety of beauty products to keep them soft and feminine<</if>>. - <span id="result"><<link "Get a massage">><<replace "#result">>You decide to put in an appearance at a tenant business, and the massage parlors are of course very eager to offer you complimentary services. The masseuse is very well-trained, and not at all a sex toy with poor massage skills as an veneer for handjob services. She releases the muscle soreness from your latest workout, and uses her delicate touch to bring you to an enjoyable orgasm; she <<if $PC.dick == 1>>catches your cum in her mouth and swallows it<<else>>swallows your femcum<</if>> with every appearance of appetite.<</replace>><</link>></span> + <span id="result"><<link "Get a massage">><<replace "#result">>You decide to put in an appearance at a tenant business, and the massage parlors are of course very eager to offer you complimentary services. The masseuse is very well-trained, and not at all a sex toy with poor massage skills as a veneer for handjob services. She releases the muscle soreness from your latest workout, and uses her delicate touch to bring you to an enjoyable orgasm; she <<if $PC.dick == 1>>catches your cum in her mouth and swallows it<<else>>swallows your femcum<</if>> with every appearance of appetite.<</replace>><</link>></span> <<case "Paternalist">> dedicated to Paternalism. Many of the establishments here cater to slaves, some even to slaves exclusively. They offer luxurious and relaxing treatment for good girls whose owners send them here as rewards. Trusted slaves enter and exit these without any visible restraint or accompaniment, looking for all the world like pretty girls on a day out. <span id="result"><<link "Tour the area">><<replace "#result">>You decide to put in an appearance at these establishments, and tour their front lobbies, listening politely to the educated slave receptionists' polished descriptions of the services offered. You stay out of the back areas, of course; those are for relaxing slaves, and owners typically leave them be while they're there. Most of the slaves moving through the area know who you are, and many of them are confident enough to give you respectful smiles.<</replace>><</link>></span> diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw index f1827eef495839ddea8fbd621fcecc4685d12afa..532afaf2787c5115c8cb764eaba360081cb48166 100644 --- a/src/uncategorized/slaveAssignmentsReport.tw +++ b/src/uncategorized/slaveAssignmentsReport.tw @@ -39,25 +39,25 @@ <<case "be your Head Girl">> <<set $HeadGirl = $slaves[$i]>> <<if $HeadGirl.fetish == "mindbroken">> - ''__@@.pink;$HeadGirl.slaveName@@__'' is mindbroken @@.yellow;and cannot serve as your head girl any more.@@<br> + ''__@@.pink;$HeadGirl.slaveName@@__'' is mindbroken @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> <<elseif !canTalk($HeadGirl)>> - ''__@@.pink;$HeadGirl.slaveName@@__'' can't give slaves verbal orders @@.yellow;and cannot serve as your head girl any more.@@<br> + ''__@@.pink;$HeadGirl.slaveName@@__'' can't give slaves verbal orders @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> <<elseif !canWalk($HeadGirl)>> - ''__@@.pink;$HeadGirl.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your head girl any more.@@<br> + ''__@@.pink;$HeadGirl.slaveName@@__'' is no longer independently mobile @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> <<elseif !canSee($HeadGirl)>> - ''__@@.pink;$HeadGirl.slaveName@@__'' can no longer see @@.yellow;and cannot serve as your head girl any more.@@<br> + ''__@@.pink;$HeadGirl.slaveName@@__'' can no longer see @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> <<elseif !canHear($HeadGirl)>> - ''__@@.pink;$HeadGirl.slaveName@@__'' can no longer hear @@.yellow;and cannot serve as your head girl any more.@@<br> + ''__@@.pink;$HeadGirl.slaveName@@__'' can no longer hear @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> <<elseif $HeadGirl.preg > 37 && $HeadGirl.broodmother == 2>> - ''__@@.pink;$HeadGirl.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your head girl any longer@@. + ''__@@.pink;$HeadGirl.slaveName@@__'' spends so much time giving birth and laboring that @@.yellow;$he cannot effectively serve as your Head Girl any longer@@. <<set $HeadGirl = 0>> <<elseif $HeadGirl.devotion <= 20>> - ''__@@.pink;$HeadGirl.slaveName@@__'' is no longer even accepting of you, @@.yellow;and cannot serve as your head girl any more.@@<br> + ''__@@.pink;$HeadGirl.slaveName@@__'' is no longer even accepting of you, @@.yellow;and cannot serve as your Head Girl any more.@@<br> <<set $HeadGirl = 0>> <</if>> <<if $HeadGirl != 0>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 14323798393dd088c6805c6814b8c2426d91a5f8..3da37e4092f1c99014c4d3c1a4b6a2003a818c84 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -399,9 +399,9 @@ <<if $universalRulesImpregnation == "HG" && $seePreg != 0>> <br><br> <<if $activeSlave.HGExclude == 0>> - Will be bred by the head girl when fertile. <<link "Exempt $him" "Slave Interact">><<set $activeSlave.HGExclude = 1>><</link>> + Will be bred by the Head Girl when fertile. <<link "Exempt $him" "Slave Interact">><<set $activeSlave.HGExclude = 1>><</link>> <<else>> - Will not be bred by the head girl when fertile. <<link "Include $him" "Slave Interact">><<set $activeSlave.HGExclude = 0>><</link>> + Will not be bred by the Head Girl when fertile. <<link "Include $him" "Slave Interact">><<set $activeSlave.HGExclude = 0>><</link>> <</if>> <</if>> /* pregmod end */ @@ -500,7 +500,7 @@ /* CAN BE REASSIGNED */ Assignment: <strong><span id="assign">$activeSlave.assignment<<if $activeSlave.sentence>> ($activeSlave.sentence weeks)<</if>></span>.</strong> - <<link "Rest">> <<= assignJob($activeSlave, "rest")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> + <<link "Rest">> <<= assignJob($activeSlave, "rest")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <<if ["be confined in the arcade", "work in the brothel", "serve in the club", "work in the dairy", "work as a farmhand", "serve in the master suite", "work as a servant", "work as a nanny"].includes($activeSlave.assignment)>> | <<link "Remove From Facility">> <<= removeJob($activeSlave, $activeSlave.assignment)>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> <</if>> @@ -532,7 +532,7 @@ <<else>> /*| //Too resistant to be a servant// */ <</if>> - + <<if ($activeSlave.breedingMark != 1 || $propOutcome == 0)>> | <<link "Whore">> <<= assignJob($activeSlave, "whore")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> | <<link "Public Servant">> <<= assignJob($activeSlave, "serve the public")>><<replace "#assign">>$activeSlave.assignment<</replace>><<SlaveInteractFucktoy>><</link>> @@ -621,7 +621,7 @@ <<elseif((($activeSlave.indentureRestrictions > 0) && ($dairyRestraintsSetting > 1)) || (($activeSlave.indentureRestrictions > 1) && ($dairyRestraintsSetting > 0)) || ($activeSlave.breedingMark == 1 && $propOutcome == 1 && $dairyRestraintsSetting > 0) || (($dairyPregSetting > 0) && (($activeSlave.bellyImplant != -1) || ($activeSlave.broodmother > 0))))>> Dairy <<elseif (($activeSlave.lactation > 0) || ($activeSlave.balls > 0)) || (($dairyFeedersUpgrade == 1) && ($dairyFeedersSetting > 0) && ($dairySlimMaintainUpgrade == 0))>> - [[Dairy|Assign][$assignTo = "Dairy", $i = -1]] /* $i = -1 tells Assign to use $activeSlave as-is */ + [[Dairy|Assign][$assignTo = "Dairy", $i = -1]] /* $i = -1 tells Assign to use $activeSlave as-is */ <<else>>Dairy<</if>> <<if _numFacilities-- > 1>>|<</if>> <</if>> @@ -661,218 +661,218 @@ <br> //Nice:// <<link "Apron">><<set $activeSlave.clothes = "an apron",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a ball gown")>> - | <<link "Ballgown">><<set $activeSlave.clothes = "a ball gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Ballgown">><<set $activeSlave.clothes = "a ball gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Bangles">><<set $activeSlave.clothes = "slutty jewelry",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Bangles">><<set $activeSlave.clothes = "slutty jewelry",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("battlearmor")>> - | <<link "Battlearmor">><<set $activeSlave.clothes = "battlearmor",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Battlearmor">><<set $activeSlave.clothes = "battlearmor",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("battledress")>> - | <<link "Battledress">><<set $activeSlave.clothes = "battledress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Battledress">><<set $activeSlave.clothes = "battledress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a biyelgee costume")>> - | <<link "Biyelgee costume">><<set $activeSlave.clothes = "a biyelgee costume",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Biyelgee costume">><<set $activeSlave.clothes = "a biyelgee costume",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Bodysuit">><<set $activeSlave.clothes = "a comfortable bodysuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Bodysuit">><<set $activeSlave.clothes = "a comfortable bodysuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("boyshorts")>> - | <<link "Boyshorts">><<set $activeSlave.clothes = "boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Boyshorts">><<set $activeSlave.clothes = "boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a bra")>> - | <<link "Bra">><<set $activeSlave.clothes = "a bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Bra">><<set $activeSlave.clothes = "a bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a burkini")>> - | <<link "Burkini">><<set $activeSlave.clothes = "a burkini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Burkini">><<set $activeSlave.clothes = "a burkini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a burqa")>> - | <<link "Burqa">><<set $activeSlave.clothes = "a burqa",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Burqa">><<set $activeSlave.clothes = "a burqa",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a button-up shirt and panties")>> - | <<link "Button-up shirt and panties">><<set $activeSlave.clothes = "a button-up shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Button-up shirt and panties">><<set $activeSlave.clothes = "a button-up shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a button-up shirt")>> - | <<link "Button-up shirt">><<set $activeSlave.clothes = "a button-up shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Button-up shirt">><<set $activeSlave.clothes = "a button-up shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Cheerleader">><<set $activeSlave.clothes = "a cheerleader outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">><<print $activeSlave.clothes>><</replace>><</link>> - | <<link "Clubslut netting">><<set $activeSlave.clothes = "clubslut netting",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Cutoffs and a t-shirt">><<set $activeSlave.clothes = "cutoffs and a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Cheerleader">><<set $activeSlave.clothes = "a cheerleader outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">><<print $activeSlave.clothes>><</replace>><</link>> + | <<link "Clubslut netting">><<set $activeSlave.clothes = "clubslut netting",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Cutoffs and a t-shirt">><<set $activeSlave.clothes = "cutoffs and a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("cutoffs")>> - | <<link "Cutoffs">><<set $activeSlave.clothes = "cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Cutoffs">><<set $activeSlave.clothes = "cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a cybersuit")>> - | <<link "Cybersuit">><<set $activeSlave.clothes = "a cybersuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Cybersuit">><<set $activeSlave.clothes = "a cybersuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a dirndl")>> - | <<link "Dirndl">><<set $activeSlave.clothes = "a dirndl",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Dirndl">><<set $activeSlave.clothes = "a dirndl",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Fallen nun">><<set $activeSlave.clothes = "a fallen nuns habit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Fallen nun">><<set $activeSlave.clothes = "a fallen nuns habit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a gothic lolita dress")>> - | <<link "Gothic lolita dress">><<set $activeSlave.clothes = "a gothic lolita dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Gothic lolita dress">><<set $activeSlave.clothes = "a gothic lolita dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a halter top dress")>> - | <<link "Haltertop dress">><<set $activeSlave.clothes = "a halter top dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Haltertop dress">><<set $activeSlave.clothes = "a halter top dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a hanbok")>> - | <<link "Hanbok">><<set $activeSlave.clothes = "a hanbok",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Hanbok">><<set $activeSlave.clothes = "a hanbok",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Hijab and abaya">><<set $activeSlave.clothes = "a hijab and abaya",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Hijab and abaya">><<set $activeSlave.clothes = "a hijab and abaya",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a hijab and blouse")>> - | <<link "Hijab and blouse">><<set $activeSlave.clothes = "a hijab and blouse",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Hijab and blouse">><<set $activeSlave.clothes = "a hijab and blouse",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("jeans")>> - | <<link "Jeans">><<set $activeSlave.clothes = "jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Jeans">><<set $activeSlave.clothes = "jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("kitty lingerie")>> - | <<link "Kitty lingerie">><<set $activeSlave.clothes = "kitty lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Kitty lingerie">><<set $activeSlave.clothes = "kitty lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a klan robe")>> - | <<link "Ku Klux Klan Robe (nice)">><<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Ku Klux Klan Robe (nice)">><<set $activeSlave.clothes = "a klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a slutty klan robe")>> - | <<link "Ku Klux Klan Robe (slutty)">><<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Ku Klux Klan Robe (slutty)">><<set $activeSlave.clothes = "a slutty klan robe",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a latex catsuit")>> - | <<link "Latex catsuit">><<set $activeSlave.clothes = "a latex catsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Latex catsuit">><<set $activeSlave.clothes = "a latex catsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("leather pants and a tube top")>> - | <<link "Leather pants and a tube top">><<set $activeSlave.clothes = "leather pants and a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Leather pants and a tube top">><<set $activeSlave.clothes = "leather pants and a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("leather pants and pasties")>> - | <<link "Leather pants and pasties">><<set $activeSlave.clothes = "leather pants and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Leather pants and pasties">><<set $activeSlave.clothes = "leather pants and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("leather pants")>> - | <<link "Leather pants">><<set $activeSlave.clothes = "leather pants",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Leather pants">><<set $activeSlave.clothes = "leather pants",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("lederhosen")>> - | <<link "Lederhosen">><<set $activeSlave.clothes = "lederhosen",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Lederhosen">><<set $activeSlave.clothes = "lederhosen",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Leotard">><<set $activeSlave.clothes = "a leotard",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Leotard">><<set $activeSlave.clothes = "a leotard",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a nice maid outfit")>> - | <<link "Maid (nice)">><<set $activeSlave.clothes = "a nice maid outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Maid (nice)">><<set $activeSlave.clothes = "a nice maid outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Maid (slutty)">><<set $activeSlave.clothes = "a slutty maid outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Maid (slutty)">><<set $activeSlave.clothes = "a slutty maid outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a military uniform")>> - | <<link "Military uniform">><<set $activeSlave.clothes = "a military uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Military uniform">><<set $activeSlave.clothes = "a military uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a mini dress")>> - | <<link "Mini dress">><<set $activeSlave.clothes = "a mini dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Mini dress">><<set $activeSlave.clothes = "a mini dress",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a monokini")>> - | <<link "Monokini">><<set $activeSlave.clothes = "a monokini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Monokini">><<set $activeSlave.clothes = "a monokini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a mounty outfit")>> - | <<link "Mounty outfit">><<set $activeSlave.clothes = "a mounty outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Mounty outfit">><<set $activeSlave.clothes = "a mounty outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Nice lingerie">><<set $activeSlave.clothes = "attractive lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Nice lingerie">><<set $activeSlave.clothes = "attractive lingerie",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a niqab and abaya")>> - | <<link "Niqab and abaya">><<set $activeSlave.clothes = "a niqab and abaya",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Niqab and abaya">><<set $activeSlave.clothes = "a niqab and abaya",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a nice nurse outfit")>> - | <<link "Nurse (nice)">><<set $activeSlave.clothes = "a nice nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Nurse (nice)">><<set $activeSlave.clothes = "a nice nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Nurse (slutty)">><<set $activeSlave.clothes = "a slutty nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Nurse (slutty)">><<set $activeSlave.clothes = "a slutty nurse outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a one-piece swimsuit")>> - | <<link "One-piece swimsuit">><<set $activeSlave.clothes = "a one-piece swimsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "One-piece swimsuit">><<set $activeSlave.clothes = "a one-piece swimsuit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("an oversized t-shirt and boyshorts")>> - | <<link "Oversized t-shirt and boyshorts">><<set $activeSlave.clothes = "an oversized t-shirt and boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Oversized t-shirt and boyshorts">><<set $activeSlave.clothes = "an oversized t-shirt and boyshorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("an oversized t-shirt")>> - | <<link "Oversized t-shirt">><<set $activeSlave.clothes = "an oversized t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Oversized t-shirt">><<set $activeSlave.clothes = "an oversized t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("panties and pasties")>> - | <<link "Panties and pasties">><<set $activeSlave.clothes = "panties and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Panties and pasties">><<set $activeSlave.clothes = "panties and pasties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Panties">><<set $activeSlave.clothes = "panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Panties">><<set $activeSlave.clothes = "panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a police uniform")>> - | <<link "Police uniform">><<set $activeSlave.clothes = "a police uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Police uniform">><<set $activeSlave.clothes = "a police uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a nice pony outfit")>> - | <<link "Pony outfit (nice)">><<set $activeSlave.clothes = "a nice pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Pony outfit (nice)">><<set $activeSlave.clothes = "a nice pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a slutty pony outfit")>> - | <<link "Pony outfit (slutty)">><<set $activeSlave.clothes = "a slutty pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Pony outfit (slutty)">><<set $activeSlave.clothes = "a slutty pony outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a red army uniform")>> - | <<link "Red Army uniform">><<set $activeSlave.clothes = "a red army uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Red Army uniform">><<set $activeSlave.clothes = "a red army uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Scalemail bikini">><<set $activeSlave.clothes = "a scalemail bikini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Schoolgirl">><<set $activeSlave.clothes = "a schoolgirl outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Scalemail bikini">><<set $activeSlave.clothes = "a scalemail bikini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Schoolgirl">><<set $activeSlave.clothes = "a schoolgirl outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a schutzstaffel uniform")>> - | <<link "Schutzstaffel uniform (nice)">><<set $activeSlave.clothes = "a schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Schutzstaffel uniform (nice)">><<set $activeSlave.clothes = "a schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a slutty schutzstaffel uniform")>> - | <<link "Schutzstaffel uniform (slutty)">><<set $activeSlave.clothes = "a slutty schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Schutzstaffel uniform (slutty)">><<set $activeSlave.clothes = "a slutty schutzstaffel uniform",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a skimpy loincloth")>> - | <<link "Skimpy loincloth">><<set $activeSlave.clothes = "a skimpy loincloth",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Skimpy loincloth">><<set $activeSlave.clothes = "a skimpy loincloth",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a slave gown")>> - | <<link "Slave gown">><<set $activeSlave.clothes = "a slave gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Slave gown">><<set $activeSlave.clothes = "a slave gown",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Slutty outfit">><<set $activeSlave.clothes = "a slutty outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> - | <<link "Spats and a tank top">><<set $activeSlave.clothes = "spats and a tank top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Slutty outfit">><<set $activeSlave.clothes = "a slutty outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Spats and a tank top">><<set $activeSlave.clothes = "spats and a tank top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("sport shorts and a sports bra")>> - | <<link "Sport shorts and a sports bra">><<set $activeSlave.clothes = "sport shorts and a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Sport shorts and a sports bra">><<set $activeSlave.clothes = "sport shorts and a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("sport shorts and a t-shirt")>> - | <<link "Sport shorts and t-shirt">><<set $activeSlave.clothes = "sport shorts and a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Sport shorts and t-shirt">><<set $activeSlave.clothes = "sport shorts and a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("sport shorts")>> - | <<link "Sport shorts">><<set $activeSlave.clothes = "sport shorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Sport shorts">><<set $activeSlave.clothes = "sport shorts",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a sports bra")>> - | <<link "Sports bra">><<set $activeSlave.clothes = "a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Sports bra">><<set $activeSlave.clothes = "a sports bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "String bikini">><<set $activeSlave.clothes = "a string bikini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "String bikini">><<set $activeSlave.clothes = "a string bikini",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a striped bra")>> - | <<link "Striped bra">><<set $activeSlave.clothes = "a striped bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Striped bra">><<set $activeSlave.clothes = "a striped bra",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("striped panties")>> - | <<link "Striped panties">><<set $activeSlave.clothes = "striped panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Striped panties">><<set $activeSlave.clothes = "striped panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("striped underwear")>> - | <<link "Striped underwear">><<set $activeSlave.clothes = "striped underwear",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Striped underwear">><<set $activeSlave.clothes = "striped underwear",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Succubus costume">><<set $activeSlave.clothes = "a succubus outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Succubus costume">><<set $activeSlave.clothes = "a succubus outfit",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("nice business attire")>> - | <<link "Suit (nice)">><<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Suit (nice)">><<set $activeSlave.clothes = "nice business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> - | <<link "Suit (slutty)">><<set $activeSlave.clothes = "slutty business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Suit (slutty)">><<set $activeSlave.clothes = "slutty business attire",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("a sweater and cutoffs")>> - | <<link "Sweater and cutoffs">><<set $activeSlave.clothes = "a sweater and cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Sweater and cutoffs">><<set $activeSlave.clothes = "a sweater and cutoffs",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a sweater and panties")>> - | <<link "Sweater and panties">><<set $activeSlave.clothes = "a sweater and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Sweater and panties">><<set $activeSlave.clothes = "a sweater and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a sweater")>> - | <<link "Sweater">><<set $activeSlave.clothes = "a sweater",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Sweater">><<set $activeSlave.clothes = "a sweater",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a t-shirt and jeans")>> - | <<link "T-shirt and jeans">><<set $activeSlave.clothes = "a t-shirt and jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "T-shirt and jeans">><<set $activeSlave.clothes = "a t-shirt and jeans",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a t-shirt and panties")>> - | <<link "T-shirt and panties">><<set $activeSlave.clothes = "a t-shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "T-shirt and panties">><<set $activeSlave.clothes = "a t-shirt and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a t-shirt and thong")>> - | <<link "T-shirt and thong">><<set $activeSlave.clothes = "a t-shirt and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "T-shirt and thong">><<set $activeSlave.clothes = "a t-shirt and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a t-shirt")>> - | <<link "T-shirt">><<set $activeSlave.clothes = "a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "T-shirt">><<set $activeSlave.clothes = "a t-shirt",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a tank-top and panties")>> - | <<link "Tank-top and panties">><<set $activeSlave.clothes = "a tank-top and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Tank-top and panties">><<set $activeSlave.clothes = "a tank-top and panties",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a tank-top")>> - | <<link "Tank-top">><<set $activeSlave.clothes = "a tank-top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Tank-top">><<set $activeSlave.clothes = "a tank-top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a thong")>> - | <<link "Thong">><<set $activeSlave.clothes = "a thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Thong">><<set $activeSlave.clothes = "a thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a tube top and thong")>> - | <<link "Tube top and thong">><<set $activeSlave.clothes = "a tube top and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Tube top and thong">><<set $activeSlave.clothes = "a tube top and thong",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("a tube top")>> - | <<link "Tube top">><<set $activeSlave.clothes = "a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + | <<link "Tube top">><<set $activeSlave.clothes = "a tube top",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> <<if isItemAccessible("attractive lingerie for a pregnant woman")>> @@ -919,7 +919,7 @@ <</if>> <br> //Harsh:// - <<link "Go naked">><<set $activeSlave.clothes = "no clothing", $activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> + <<link "Go naked">><<set $activeSlave.clothes = "no clothing", $activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <<if isItemAccessible("chains")>> | //FS// <<link "Chains">><<set $activeSlave.clothes = "chains",$activeSlave.choosesOwnClothes = 0>><<replace "#clothes">>$activeSlave.clothes<</replace>><</link>> <</if>> @@ -937,7 +937,7 @@ | <<link "Silken ribbon">><<set $activeSlave.collar = "silk ribbon">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> | <<link "Heavy gold">><<set $activeSlave.collar = "heavy gold">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> | <<link "Pretty jewelry">><<set $activeSlave.collar = "pretty jewelry">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> - <<if ($seeAge != 0)>> + <<if ($seeAge != 0)>> | <<link "Nice retirement counter">><<set $activeSlave.collar = "nice retirement counter">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> <</if>> | <<link "Bell">><<set $activeSlave.collar = "bell collar">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> @@ -1348,8 +1348,6 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1 <<set _reservedIncubator = WombReserveCount($activeSlave, "incubator")>> <<set _reservedNursery = WombReserveCount($activeSlave, "nursery")>> <<set _WL = $activeSlave.womb.length>> -<<set $activeSlave.reservedChildren = _reservedIncubator>> /* should be removed eventually, for now keep updated */ -<<set $activeSlave.reservedChildrenNursery = _reservedNursery>> /* should be removed eventually, for now keep updated */ <<if $incubator > 0>> <<if $activeSlave.preg > 0 && $activeSlave.broodmother == 0 && $activeSlave.pregKnown == 1 && $activeSlave.eggType == "human">> diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw index ab76f0319598bbd124eeff410526c5ab7cf3d60a..15c9d5501ec3733bc2ff485e410f7f6c87c26b09 100644 --- a/src/uncategorized/slaveShelter.tw +++ b/src/uncategorized/slaveShelter.tw @@ -4,7 +4,7 @@ <<if $shelterSlaveBought == 1>><<goto $returnTo>><</if>> -You contact the Slave Shelter to review the profile of the slave the Shelter is offering to a good <<if $PC.title == 1>>Master<<else>>Mistress<</if>> willing to pay the Shelter"s nominal placement fee. The severe, tired-looking woman who answers your call hurries through the disclaimers. "All Shelter Slaves are provided as-is... the Shelter provides a single slave for placement each week... resale of Shelter slaves is contractually forbidden... we reserve the right to unannounced inspection of placed slaves... the Shelter follows up on reports of abuse or resale of its slaves..." +You contact the Slave Shelter to review the profile of the slave the Shelter is offering to a good <<if $PC.title == 1>>Master<<else>>Mistress<</if>> willing to pay the Shelter's nominal placement fee. The severe, tired-looking woman who answers your call hurries through the disclaimers. "All Shelter Slaves are provided as-is... the Shelter provides a single slave for placement each week... resale of Shelter slaves is contractually forbidden... we reserve the right to unannounced inspection of placed slaves... the Shelter follows up on reports of abuse or resale of its slaves..." <br><br> @@ -71,8 +71,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.behavioralFlaw = either("hates men", "hates women", "odd")>> <<set $shelterSlave.sexualFlaw = either("apathetic", "hates anal", "hates oral", "hates penetration")>> <<case "blind">> - <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> - <<set $activeSlaveOneTimeMaxAge = 22>> + <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> + <<set $activeSlaveOneTimeMaxAge = 22>> <<set $oneTimeDisableDisability = 1>> <<include "Generate New Slave">> <<set $shelterSlave = $activeSlave>> @@ -88,8 +88,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.sexualFlaw = "hates oral">> <<set $shelterSlave.canRecruit = 0>> <<case "deaf">> - <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> - <<set $activeSlaveOneTimeMaxAge = 22>> + <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> + <<set $activeSlaveOneTimeMaxAge = 22>> <<set $oneTimeDisableDisability = 1>> <<include "Generate New Slave">> <<set $shelterSlave = $activeSlave>> @@ -103,8 +103,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.sexualFlaw = "hates oral">> <<set $shelterSlave.canRecruit = 0>> <<case "broken womb">> - <<set $activeSlaveOneTimeMinAge = 6>> - <<set $activeSlaveOneTimeMaxAge = 22>> + <<set $activeSlaveOneTimeMinAge = 6>> + <<set $activeSlaveOneTimeMaxAge = 22>> <<set $oneTimeDisableDisability = 1>> <<include "Generate XX Slave">> <<set $shelterSlave = $activeSlave>> diff --git a/src/uncategorized/slaveSummary.tw b/src/uncategorized/slaveSummary.tw index 61c5817982e93ef49dd3162fcdf5423965570f74..b1428f3e429550f65ff660eece641f33622e80fb 100644 --- a/src/uncategorized/slaveSummary.tw +++ b/src/uncategorized/slaveSummary.tw @@ -3,10 +3,10 @@ <<set setup.passagePreFilters = setup.passagePreFilters || { "Main": s => (s.assignmentVisible == 1), "Personal Attention Select": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0), - "Agent Select": s => (s.fuckdoll == 0 && s.devotion > 20 && s.intelligence+s.intelligenceImplant > 15 && s.intelligenceImplant >= 15 && canWalk(s) && canSee(s) && canTalk(s) && s.broodmother < 2 && (s.breedingMark != 1 || $propOutcome == 0)), - "BG Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.assignment != "guard you" && canWalk(s) && canSee(s) && (s.breedingMark != 1 || $propOutcome == 0)), + "Agent Select": s => (s.fuckdoll == 0 && s.devotion > 20 && s.intelligence+s.intelligenceImplant > 15 && s.intelligenceImplant >= 15 && canWalk(s) && canSee(s) && canHear(s) && canTalk(s) && s.broodmother < 2 && (s.breedingMark != 1 || $propOutcome == 0)), + "BG Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.assignment != "guard you" && canWalk(s) && canSee(s) && canHear(s) && (s.breedingMark != 1 || $propOutcome == 0)), "Recruiter Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.assignment != "recruit girls" && canWalk(s) && canSee(s) && canTalk(s)), - "HG Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.assignment != "be your Head Girl" && canWalk(s) && canSee(s) && canTalk(s)), + "HG Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.assignment != "be your Head Girl" && canWalk(s) && canHear(s) && canSee(s) && canTalk(s)), "Head Girl Suite": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && ( ($Flag == 0 && s.assignment != "be your Head Girl" && s.indentureRestrictions <= 0 && (s.breedingMark != 1 || $propOutcome == 0)) || ($Flag != 0 && s.assignment == "live with your Head Girl"))), @@ -15,22 +15,22 @@ ($Flag == 0 && s.assignment != "rest in the spa") || ($Flag == 1 && s.assignment == "rest in the spa") || ($Flag != 0 && $Flag != 1 && s.ID == $Attendant.ID))), - "Attendant Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s)), + "Attendant Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) && canHear(s)), "Nursery": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && (s.devotion > 20 || s.trust > 20) && ( ($Flag == 0 && s.assignment != "work as a nanny") || ($Flag == 1 && s.assignment == "work as a nanny") || ($Flag != 0 && $Flag != 1 && s.ID == $Matron.ID))), - "Matron Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s)) && s.fetish != "mindbroken", + "Matron Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) && canHear(s)), "Brothel": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && ( ($Flag == 0 && s.assignment != "work in the brothel") || ($Flag == 1 && s.assignment == "work in the brothel") || ($Flag != 0 && $Flag != 1 && s.ID == $Madam.ID))), - "Madam Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.intelligence+s.intelligenceImplant >= -50 && canWalk(s) && canSee(s) && (s.breedingMark != 1 || $propOutcome == 0)), + "Madam Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.intelligence+s.intelligenceImplant >= -50 && canWalk(s) && canSee(s) && canHear(s) && (s.breedingMark != 1 || $propOutcome == 0)), "Club": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && ( ($Flag == 0 && s.assignment != "serve in the club") || ($Flag == 1 && s.assignment == "serve in the club") || ($Flag != 0 && $Flag != 1 && s.ID == $DJ.ID))), - "DJ Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.intelligence+s.intelligenceImplant >= -50 && canTalk(s) && canWalk(s) && (s.breedingMark != 1 || $propOutcome == 0)), + "DJ Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.intelligence+s.intelligenceImplant >= -50 && canTalk(s) && canHear(s) && canWalk(s) && (s.breedingMark != 1 || $propOutcome == 0)), "Clinic": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && ( ($Flag == 0 && s.assignment != "get treatment in the clinic") || ($Flag == 1 && s.assignment == "get treatment in the clinic") @@ -40,22 +40,22 @@ ($Flag == 0 && s.fetish != "mindbroken" && s.assignment != "learn in the schoolroom") || ($Flag == 1 && s.assignment == "learn in the schoolroom") || ($Flag != 0 && $Flag != 1 && s.ID == $Schoolteacher.ID))), - "Schoolteacher Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canTalk(s) && canWalk(s) && canSee(s)), + "Schoolteacher Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canTalk(s) && canHear(s) && canSee(s)), "Dairy": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && ( ($Flag == 0 && s.assignment != "work in the dairy") || ($Flag == 1 && s.assignment == "work in the dairy") || ($Flag != 0 && $Flag != 1 && s.ID == $Milkmaid.ID))), - "Milkmaid Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 20 && canWalk(s) && canSee(s)), + "Milkmaid Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 20 && canWalk(s) && canSee(s) && canHear(s)), "Farmyard": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && canWalk(s) && ( ($Flag == 0 && s.assignment != "work as a farmhand") || ($Flag == 1 && s.assignment == "work as a farmhand") || ($Flag != 0 && $Flag != 1 && s.ID == $Farmer.ID))), - "Farmer Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) && canSee(s)), + "Farmer Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) && canSee(s) && canHear(s)), "Servants' Quarters": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && ( ($Flag == 0 && s.assignment != "work as a servant") || ($Flag == 1 && s.assignment == "work as a servant") || ($Flag != 0 && $Flag != 1 && s.ID == $Stewardess.ID))), - "Stewardess Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.intelligence+s.intelligenceImplant >= -50 && canWalk(s) && canSee(s)), + "Stewardess Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && s.intelligence+s.intelligenceImplant >= -50 && canWalk(s) && canSee(s) && canHear(s)), "Master Suite": s => (s.assignmentVisible == 1 && s.fuckdoll <= 0 && ( ($Flag == 0 && s.assignment != "serve in the master suite") || ($Flag == 1 && s.assignment == "serve in the master suite") @@ -65,7 +65,7 @@ ($Flag == 0 && s.assignment != "be confined in the cellblock") || ($Flag == 1 && s.assignment == "be confined in the cellblock") || ($Flag != 0 && $Flag != 1 && s.ID == $Wardeness.ID))), - "Wardeness Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) && canSee(s)), + "Wardeness Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) && canSee(s) && canHear(s)), "Arcade": s => (s.assignmentVisible == 1 && ($arcade >= $arcadeSlaves || $arcadeUpgradeFuckdolls == 1) && ( ($Flag == 0 && s.assignment != "be confined in the arcade") || ($Flag != 0 && s.assignment == "be confined in the arcade"))), diff --git a/src/uncategorized/storyCaption.tw b/src/uncategorized/storyCaption.tw index 37acf15e7fc2b4b3304ca3fa5747865700862ef1..0917218e043535db948aa1c23bf85700d53b50d6 100644 --- a/src/uncategorized/storyCaption.tw +++ b/src/uncategorized/storyCaption.tw @@ -525,7 +525,7 @@ <<else>> <br><span id="manageArcology"><<link "Manage Arcology">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Arcology">><</link>></span> @@.cyan;[C]@@ <br><span id="managePenthouse"><<link "Manage Penthouse">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Penthouse">><</link>></span> @@.cyan;[P]@@ - <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span>@@.cyan;[N]@@ + <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span> @@.cyan;[N]@@ <br><span id="managePerson"><<link "Manage Personal Affairs">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Personal Affairs">><</link>></span> @@.cyan;[X]@@ <<if $secExp == 1>> <<if $propHub == 1>> @@ -555,7 +555,7 @@ <br><span id="edictButton"><<link [[Edicts|edicts]]>><</link>></span> @@.cyan;[D]@@ <</if>> <<if $FSAnnounced>> - <br><span id="FSButton"><<link [[Future Societies|Future Society]]>><</link>></span> @@.cyan;[F]@@ <<if $FSCredits > 0>>@@.yellow;[!]@@<</if>> + <br><span id="FSButton"><<link [[Future Societies|Future Society]]>><</link>></span> @@.cyan;[F]@@ <<if ($FSCredits > 0) || ($FSReminder)>>@@.yellow;[!]@@<</if>> <</if>> <br><span id="URButton"><<link [[Universal Rules]]>><</link>></span> @@.cyan;[V]@@ @@ -567,7 +567,7 @@ <<elseif _Pass == "Manage Arcology">> <br> <br><span id="managePenthouse"><<link "Manage Penthouse">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Penthouse">><</link>></span> @@.cyan;[P]@@ - <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span>@@.cyan;[N]@@ + <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span> @@.cyan;[N]@@ <br><span id="managePerson"><<link "Manage Personal Affairs">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Personal Affairs">><</link>></span> @@.cyan;[X]@@ <<if $secExp == 1>> <<if $propHub == 1>> @@ -605,7 +605,7 @@ <<elseif _Pass == "Manage Penthouse">> <br> <br><span id="manageArcology"><<link [[Manage Arcology|Manage Arcology]]>><</link>></span> @@.cyan;[C]@@ - <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span>@@.cyan;[N]@@ + <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span> @@.cyan;[N]@@ <br><span id="managePerson"><<link [[Manage Personal Affairs|Manage Personal Affairs]]>><</link>></span> @@.cyan;[X]@@ <br> <br><<link [[Wardrobe]]>><</link>> @@ -657,7 +657,7 @@ <br> <br><span id="manageArcology"><<link [[Manage Arcology|Manage Arcology]]>><</link>></span> @@.cyan;[C]@@ <br><span id="managePenthouse"><<link [[Manage Penthouse|Manage Penthouse]]>><</link>></span> @@.cyan;[X]@@ - <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span>@@.cyan;[N]@@ + <br><span id="manageEconomy"><<link "Manage Economy">><<set $nextButton = "Back", $nextLink = _Pass>><<goto "Manage Economy">><</link>></span> @@.cyan;[N]@@ <br> <br><<link [[Wardrobe]]>><</link>> <br><<if $dispensary>>[[Pharmaceutical Fabricator|Dispensary]]<</if>> diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index 6a14ef1baecd99fd9a199a547bb9983652f1a98f..11580862578e7f6d3fa22e5afba3952f24e93200 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -1957,8 +1957,8 @@ As the remote surgery's long recovery cycle completes, <<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>> <</if>> <<if canGetPregnant($activeSlave)>> - <<= knockMeUp($activeSlave, 100, 2, $activeSlave.ID, 1)>><</if>> - $He doesn't even have the chance to reach the slave quarters before $his new reproductive system detects $his unprotected fertility and begins to internally cum. <<if canWalk($activeSlave)>>$He struggles to stand as wave after wave of pleasure radiates from inside $his self-fertilizing womb<<else>>The slave carrying $him struggles to keep their grip on the orgasm wracked $girl<</if>>. By the time $he is finised, $he is a sweat-soaked, panting mess with a womb @@.lime;<<if $activeSlave.pregType > 50>>stuffed full of fertilized eggs<<elseif $activeSlave.pregType > 20>>filled with new life<<elseif $activeSlave.pregType > 1>>housing several new lives<<else>>filled with seed and a new life<</if>>.@@ + <<= knockMeUp($activeSlave, 100, 2, $activeSlave.ID, 1)>> + $He doesn't even have the chance to reach the slave quarters before $his new reproductive system detects $his unprotected fertility and begins to internally cum. <<if canWalk($activeSlave)>>$He struggles to stand as wave after wave of pleasure radiates from inside $his self-fertilizing womb<<else>>The slave carrying $him struggles to keep their grip on the orgasm wracked $girl<</if>>. By the time $he is finished, $he is a sweat-soaked, panting mess with a womb @@.lime;<<if $activeSlave.pregType > 50>>stuffed full of fertilized eggs<<elseif $activeSlave.pregType > 20>>filled with new life<<elseif $activeSlave.pregType > 1>>housing several new lives<<else>>filled with seed and a new life<</if>>.@@ <</if>> /* TODO: these descriptions may need some more tweaking to sound more natural */ diff --git a/src/uncategorized/universalRules.tw b/src/uncategorized/universalRules.tw index 418790ec068cb4a77de7320627d61c9fe6946b13..0e0783b6565eb450e2ba5a6598f1ff1aa3b1e23f 100644 --- a/src/uncategorized/universalRules.tw +++ b/src/uncategorized/universalRules.tw @@ -106,9 +106,9 @@ Future society names for new slaves are currently @@.cyan;APPLIED.@@ [[Stop appl <<if $universalRulesImpregnation == "HG">> Fertile slaves will be ''systematically impregnated by your Head Girl,'' if she is able to do so. [[Cancel insemination regime|Universal Rules][($universalRulesImpregnation = "none"),($universalHGImpregnateMasterSuiteToggle = 0)]]<<if $PC.dick > 0>> | [[Inseminate them yourself|Universal Rules][($universalRulesImpregnation = "PC"),($universalHGImpregnateMasterSuiteToggle = 0)]]<</if>> <br> <<if $universalHGImpregnateMasterSuiteToggle == 1>> - Your head girl, if able, ''is not'' inseminating slaves in the Master Suite. [[Allow her to inseminate Master Suite slaves|Universal Rules][$universalHGImpregnateMasterSuiteToggle = 0]] + Your Head Girl, if able, ''is not'' inseminating slaves in the Master Suite. [[Allow her to inseminate Master Suite slaves|Universal Rules][$universalHGImpregnateMasterSuiteToggle = 0]] <<else>> - Your head girl, if able, ''is'' inseminating slaves in the Master Suite. [[Forbid her from inseminating Master Suite slaves|Universal Rules][$universalHGImpregnateMasterSuiteToggle = 1]] + Your Head Girl, if able, ''is'' inseminating slaves in the Master Suite. [[Forbid her from inseminating Master Suite slaves|Universal Rules][$universalHGImpregnateMasterSuiteToggle = 1]] <</if>> <<elseif $universalRulesImpregnation == "PC">> Fertile slaves will be ''systematically impregnated by you.'' [[Cancel insemination regime|Universal Rules][$universalRulesImpregnation = "none"]]<<if $seeDicks != 0>> | [[Delegate insemination to your Head Girl|Universal Rules][$universalRulesImpregnation = "HG"]]<</if>> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 85c40cfc28de5c705a312b736845ee8cff7ef083..769e94e81e3024a072dd19d241697211807b76bb 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -1647,7 +1647,7 @@ <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His taut blouse shows every jiggle in $his fat gut as $he moves. <<case "attractive lingerie for a pregnant woman">> @@ -1759,7 +1759,7 @@ <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His blouse bulges with $his growing belly. <<case "chains">> @@ -1875,7 +1875,7 @@ <<vaginaDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "uncomfortable straps">> <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>> A strap passes between $his legs, and the big ring over $his hermaphroditic genitalia gleams from between them. @@ -2935,7 +2935,7 @@ <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His taut blouse shows every jiggle in $his fat gut as $he moves. <<case "chains">> @@ -3047,7 +3047,7 @@ <<BellyImplantDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His blouse bulges with $his distended belly. <<case "chains">> @@ -3252,7 +3252,7 @@ <<BellyInflationDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His taut blouse shows off $his taut, sloshing belly. <<case "attractive lingerie for a pregnant woman">> @@ -3588,7 +3588,7 @@ <<BellyInflationDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His taut blouse shows off $his rounded, sloshing belly. <<case "chains">> @@ -3702,7 +3702,7 @@ <<BellyDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His taut blouse shows every jiggle in $his fat gut as $he moves. <<case "chains">> @@ -3814,7 +3814,7 @@ <<BellyInflationDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its holes. + $His suit is expressly designed to encourage use of $his holes. <<case "conservative clothing">> $His blouse bulges with $his distended belly. <<case "chains">> @@ -3931,7 +3931,7 @@ <<AnusDescription>> <<switch $activeSlave.clothes>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its rear hole. + $His suit is expressly designed to encourage use of $his rear hole. <<case "uncomfortable straps">> The ring over $his asshole beckons. <<case "shibari ropes">> @@ -4107,7 +4107,7 @@ <<mouthDescription>> <<switch $activeSlave.collar>> <<case "a Fuckdoll suit">> - Its suit is expressly designed to encourage use of its face hole. + $His suit is expressly designed to encourage use of $his face hole. <<case "uncomfortable leather">> $His uncomfortable leather collar makes $him swallow and lick $his lips periodically, making it look like $he's offering oral even though $he's just trying to relieve the discomfort. <<case "tight steel" "cruel retirement counter">> diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw index 7f482be7e7bf8fb6e1be9f45da17304e23690305..a74fe36884614b4fc4e14efc4b0ee943c05796e3 100644 --- a/src/uncategorized/wardrobeUse.tw +++ b/src/uncategorized/wardrobeUse.tw @@ -839,7 +839,8 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' | <<link "Cruel retirement counter">> <<set $activeSlave.collar = "cruel retirement counter">> <<replace "#collar">>$activeSlave.collar<</replace>> - <<replace "#collarDescription">><br>//<<collarDescription>>//<</replace>> <</link>> + <<replace "#collarDescription">><br>//<<collarDescription>>//<</replace>> + <</link>> <</if>> | <<link "Uncomfortable leather">> <<set $activeSlave.collar = "uncomfortable leather">> diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw index 3909fe22785b3f823d2b81a5609fc2783656d108..557185b8d0e49fc89d4bf75c47611e325f16f2ea 100644 --- a/src/utility/birthWidgets.tw +++ b/src/utility/birthWidgets.tw @@ -287,15 +287,15 @@ $HeadGirl.slaveName makes sure that the mother of _his2 child<<if $slaves[$i].pregType > 1>>ren<</if>> is happy and comfortable for the upcoming birth, even if they won't be spending much time with their offspring. _He2 carefully undresses $slaves[$i].slaveName, all the while whispering sweet nothings in $his ear. $He begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, and $his child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> carefully collected by their father. Once they are out of the way, $HeadGirl.slaveName moves in to fondle $slaves[$i].slaveName's tired body. <<elseif !canWalk($slaves[$i])>> <<if $slaves[$i].fetish == "mindbroken">> - $He is aided in finding $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to _his2 wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is taken back to $HeadGirl.slaveName's room. + $He is aided in finding $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to _his2 wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your Head Girl, $he is taken back to $HeadGirl.slaveName's room. <<else>> - $He is aided in seeking out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, enjoying _his2 wandering hands and attention. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is helped back to $HeadGirl.slaveName's room. + $He is aided in seeking out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, enjoying _his2 wandering hands and attention. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your Head Girl, $he is helped back to $HeadGirl.slaveName's room. <</if>> <<else>> <<if $slaves[$i].fetish == "mindbroken">> - $He wanders until $he finds $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to _his2 wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is lead back to $HeadGirl.slaveName's room. + $He wanders until $he finds $HeadGirl.slaveName, who undresses $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to _his2 wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your Head Girl, $he is lead back to $HeadGirl.slaveName's room. <<else>> - $He seeks out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, enjoying _his2 wandering hands and attention. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he returns to $HeadGirl.slaveName's room. + $He seeks out $HeadGirl.slaveName, who undresses $him as $he dutifully begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, enjoying _his2 wandering hands and attention. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your Head Girl, $he returns to $HeadGirl.slaveName's room. <</if>> <</if>> @@ -562,9 +562,9 @@ <<if $slaves[$i].pregSource == $HeadGirl.ID>> $HeadGirl.slaveName makes sure that the mother of _his2 child<<if $slaves[$i].pregType > 1>>ren<</if>> is happy and comfortable for the upcoming birth, even if they won't be spending much time with their offspring. _He2 carefully undresses $slaves[$i].slaveName, all the while whispering sweet nothings in $his ear. $He begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, and $his child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> carefully collected by their father. Once they are out of the way, $HeadGirl.slaveName moves in to fondle $slaves[$i].slaveName's tired body. <<elseif $slaves[$i].fetish == "mindbroken">> - $He is placed with $HeadGirl.slaveName. _He2 unwraps $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to _his2 wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is carried back to $HeadGirl.slaveName's room. + $He is placed with $HeadGirl.slaveName. _He2 unwraps $him as $he instinctively begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to _his2 wandering hands. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your Head Girl, $he is carried back to $HeadGirl.slaveName's room. <<else>> - $He is placed with $HeadGirl.slaveName. _He2 unwraps $him as $he dutifully begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, enjoying _his2 wandering hands and attention. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your head girl, $he is carried back to $HeadGirl.slaveName's room. + $He is placed with $HeadGirl.slaveName. _He2 unwraps $him as $he dutifully begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, enjoying _his2 wandering hands and attention. $His child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning, a fresh change of clothes, and some private time with your Head Girl, $he is carried back to $HeadGirl.slaveName's room. <</if>> <<case "be confined in the arcade">> @@ -600,8 +600,8 @@ <<if random(1,2) == 1 && canWalk($slaves[$i])>> /* at assignment else in halls/etc, only if able to move */ <<if $slaves[$i].rivalry > 0>> - <<set _bw = $slaveIndices[$slaves[$i].rivalTarget]>> - <<if _bw != -1>> + <<set _bw = $slaveIndices[$slaves[$i].rivalryTarget]>> + <<if def _bw>> <<setLocalPronouns $slaves[_bw] 2>> <</if>> <</if>> @@ -1171,7 +1171,7 @@ <<if ($Nurse != 0)>> <<setLocalPronouns $Nurse 2>> <</if>> - $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking them away. Before long _he2 returns to attend to _his2 patient's post-birth health. + $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking them away. <<if $Nurse != 0>>Before long _he2 returns to attend to _his2 patient's post-birth health<<else>>Another nurse takes over to attend to $his post-birth health<</if>>. <<case "be confined in the cellblock">> <<if $slaves[$i].fetish == "mindbroken">> diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw index cf066ff01bd8572544ac0c6f5664eac3b35737ad..40b61947ba4a0d691848d550465aad503397ffc3 100644 --- a/src/utility/descriptionWidgets.tw +++ b/src/utility/descriptionWidgets.tw @@ -39,7 +39,7 @@ <<if $useSlaveSummaryOverviewTab != 1>> /* Hide this block if it will be shown on the overview tab */ <br> <<if def _HG>> - ''__@@.pink;<<= SlaveFullName($HeadGirl)>>@@__'' is serving as your head girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. + ''__@@.pink;<<= SlaveFullName($HeadGirl)>>@@__'' is serving as your Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. <span id="manageHG"><strong><<link "Manage Head Girl">><<goto "HG Select">><</link>></strong></span> @@.cyan;[H]@@ <<elseif (ndef _HG) && ($slaves.length > 1)>> You have not selected a Head Girl<<if $arcologies[0].FSEgyptianRevivalistLaw == 1>> and Consort<</if>>. <span id="manageHG"><strong><<link "Select one">><<goto "HG Select">><</link>></strong></span> @@.cyan;[H]@@ @@ -388,7 +388,7 @@ "She is a spoiled former rich girl who has been discarded by several former owners for her attitude." "She claims that she actually is Santa Claus." "Formerly used solely for titfucking, she quickly became a nymphomaniac after experiencing 'proper' sex." - "A former head girl of a rich man's harem, she is used to being in charge of others." + "A former Head Girl of a rich man's harem, she is used to being in charge of others." "She grew up in a well-to-do family and discovered her fetish for servitude in college, and she decided to become the world's best slave and slave trainer in one." "She was formerly owned by someone who fancied themselves a geneticist, where she acquired permanently discolored hair and odd fetishes." "She is a former soldier who was sold into slavery after losing her leg to an IED." diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 30f6ad06481ff0eab29047e9d05c2c53e0ce020e..5208764df7f1509a7a731298d32d749a1a5d8762 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -658,7 +658,7 @@ <<case "neglectful">> "All For You" <<case "cum addict">> - "Cum'ere Sexy" + "Cum 'ere Sexy" <<case "anal addict">> "Reach Around Back" <<case "attention whore">> @@ -670,7 +670,7 @@ <<case "malicious">> "Careful, I Bite" <<case "self hating">> - "Rough'em Up" + "Rough 'em Up" <<case "breeder">> "Drink Deep" <<default>> @@ -994,40 +994,40 @@ $His <<if $activeSlave.boobs < 300>><<print either("androgynous", "flat")>> breasts are practically non-existent. -<<elseif $activeSlave.boobs < 400>><<print either("pointy", "tiny")>> breasts<<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would only fill A cups. -<<elseif $activeSlave.boobs < 500>><<print either("perky", "small")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill B cups. -<<elseif $activeSlave.boobs < 650>><<print either("healthy", "curved")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill C cups. -<<elseif $activeSlave.boobs < 800>><<print either("big", "sizable")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill D cups. -<<elseif $activeSlave.boobs < 1000>><<print either("large", "big")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill DD cups. -<<elseif $activeSlave.boobs < 1200>><<print either("proud", "hefty")>> <<print either("tits", "breasts", "mammaries", "udders", "boobs")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill F cups. -<<elseif $activeSlave.boobs < 1400>><<print either("hefty", "huge")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill G cups. -<<elseif $activeSlave.boobs < 1600>><<print either("massive", "huge")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill H cups. -<<elseif $activeSlave.boobs < 1800>><<print either("enormous", "massive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill I cups. -<<elseif $activeSlave.boobs < 2050>><<print either("titanic", "enormous")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill J cups. -<<elseif $activeSlave.boobs < 2300>><<print either("stupendous", "titanic")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill K cups. -<<elseif $activeSlave.boobs < 2600>><<print either("magnificent", "stupendous")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill L cups. -<<elseif $activeSlave.boobs < 2900>><<print either("impressive", "magnificent")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill M cups. -<<elseif $activeSlave.boobs < 3250>><<print either("awe-inspiring", "impressive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill N cups. -<<elseif $activeSlave.boobs < 3600>><<print either("absurd", "awe-inspiring")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill O cups. -<<elseif $activeSlave.boobs < 3950>><<print either("disproportionate", "attention-grabbing")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill P cups. -<<elseif $activeSlave.boobs < 4300>><<print either("shocking", "massive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill Q cups. -<<elseif $activeSlave.boobs < 4700>><<print either("striking", "jaw-dropping")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill R cups. +<<elseif $activeSlave.boobs < 400>><<print either("pointy", "tiny")>> breasts<<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would only fill A-cups. +<<elseif $activeSlave.boobs < 500>><<print either("perky", "small")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill B-cups. +<<elseif $activeSlave.boobs < 650>><<print either("healthy", "curved")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill C-cups. +<<elseif $activeSlave.boobs < 800>><<print either("big", "sizable")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print $activeSlave.boobs>> CCs each,<</if>> would fill D-cups. +<<elseif $activeSlave.boobs < 1000>><<print either("large", "big")>> <<print either("tits", "breasts", "boobs", "bosoms")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill DD-cups. +<<elseif $activeSlave.boobs < 1200>><<print either("proud", "hefty")>> <<print either("tits", "breasts", "mammaries", "udders", "boobs")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill F-cups. +<<elseif $activeSlave.boobs < 1400>><<print either("hefty", "huge")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill G-cups. +<<elseif $activeSlave.boobs < 1600>><<print either("massive", "huge")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill H-cups. +<<elseif $activeSlave.boobs < 1800>><<print either("enormous", "massive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill I-cups. +<<elseif $activeSlave.boobs < 2050>><<print either("titanic", "enormous")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill J-cups. +<<elseif $activeSlave.boobs < 2300>><<print either("stupendous", "titanic")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill K-cups. +<<elseif $activeSlave.boobs < 2600>><<print either("magnificent", "stupendous")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill L-cups. +<<elseif $activeSlave.boobs < 2900>><<print either("impressive", "magnificent")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill M-cups. +<<elseif $activeSlave.boobs < 3250>><<print either("awe-inspiring", "impressive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill N-cups. +<<elseif $activeSlave.boobs < 3600>><<print either("absurd", "awe-inspiring")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill O-cups. +<<elseif $activeSlave.boobs < 3950>><<print either("disproportionate", "attention-grabbing")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill P-cups. +<<elseif $activeSlave.boobs < 4300>><<print either("shocking", "massive")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill Q-cups. +<<elseif $activeSlave.boobs < 4700>><<print either("striking", "jaw-dropping")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill R-cups. <<elseif $activeSlave.boobs < 5000+($activeSlave.muscles*10) && $activeSlave.physicalAge <= 3>> <<if ($activeSlave.amp == 1)>> - <<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S cups and are so large that $he might not be able to walk, if $he still had legs. + <<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S-cups and are so large that $he might not be able to walk, if $he still had legs. <<elseif ($activeSlave.muscles > 5)>> - <<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S cups and are so large that $his <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $he may not be able to walk. + <<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S-cups and are so large that $his <<if $activeSlave.muscles > 95>>shredded<<elseif $activeSlave.muscles > 30>>rippling<<else>>toned<</if>> back muscles get a workout just from supporting them. If they grow any larger, $he may not be able to walk. <<else>> - <<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S cups and are so large that $he can barely stand. If they grow any larger, $he may not be able to walk. + <<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S-cups and are so large that $he can barely stand. If they grow any larger, $he may not be able to walk. <</if>> -<<elseif $activeSlave.boobs < 5100>><<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S cups. -<<elseif $activeSlave.boobs < 5500>><<print either("frightening", "unmissable")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill T cups. -<<elseif $activeSlave.boobs < 6000>><<print either("unmissable", "attention-grabbing")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill U cups. -<<elseif $activeSlave.boobs < 6500>><<print either("attention-grabbing", "spectacular")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill V cups. -<<elseif $activeSlave.boobs < 7000>><<print either("spectacular", "obviously engineered")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill W cups. -<<elseif $activeSlave.boobs < 7500>><<print either("obviously engineered", "disproportionate")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill X cups. -<<elseif $activeSlave.boobs < 8000>><<print either("disproportionate", "nearly inhuman")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill Y cups. -<<elseif $activeSlave.boobs < 8500>><<print either("nearly inhuman", "nearly alien")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill Z cups. +<<elseif $activeSlave.boobs < 5100>><<print either("tremendous", "astounding")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill S-cups. +<<elseif $activeSlave.boobs < 5500>><<print either("frightening", "unmissable")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill T-cups. +<<elseif $activeSlave.boobs < 6000>><<print either("unmissable", "attention-grabbing")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill U-cups. +<<elseif $activeSlave.boobs < 6500>><<print either("attention-grabbing", "spectacular")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill V-cups. +<<elseif $activeSlave.boobs < 7000>><<print either("spectacular", "obviously engineered")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill W-cups. +<<elseif $activeSlave.boobs < 7500>><<print either("obviously engineered", "disproportionate")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill X-cups. +<<elseif $activeSlave.boobs < 8000>><<print either("disproportionate", "nearly inhuman")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill Y-cups. +<<elseif $activeSlave.boobs < 8500>><<print either("nearly inhuman", "nearly alien")>> <<print either("tits", "breasts", "mammaries", "udders")>><<if $showBoobCCs == 1>>, <<print commaNum($activeSlave.boobs)>> CCs each,<</if>> would fill Z-cups. <<elseif $activeSlave.boobs < 10000+($activeSlave.muscles*20) && $activeSlave.physicalAge <= 12>> <<if ($activeSlave.amp == 1)>> <<print either("boobs", "breasts", "mammaries", "udders")>> have <<if $activeSlave.boobsImplant>>been altered<<else>>grown<</if>> past any pretense of proportion.<<if $showBoobCCs == 1>> At <<print commaNum($activeSlave.boobs)>> CCs each, they<<else>> They<</if>> are so large that $he might not be able to walk, if $he still had legs. @@ -4760,7 +4760,7 @@ $He's got a <<else>> $activeSlave.skin pussylips. <</if>> - + <<if ($activeSlave.vagina > -1)>> <<if ($activeSlave.vaginaLube == 0)>> <<if ($activeSlave.vagina > 0) && ($activeSlave.vaginalAccessory != "chastity belt")>> diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw index f6b41ce26712d6c0ddf687126c4a495886131dae..b4ffabc7615ed5c64bdcf65cc77acb1d8b239875 100644 --- a/src/utility/descriptionWidgetsStyle.tw +++ b/src/utility/descriptionWidgetsStyle.tw @@ -3547,7 +3547,7 @@ $His <<elseif $activeSlave.pregKnown == 0>> "Put a baby in me today!" <<elseif $activeSlave.pregSource == -1>> - "Womb claimed by my <<= WrittenMaster()>>!" + "Womb claimed by my <<= WrittenMaster($activeSlave)>>!" <<elseif ($activeSlave.pregSource == -2 || $activeSlave.pregSource == 0)>> "Baby made by slutting around!" <<elseif $activeSlave.pregSource > 0>> diff --git a/src/utility/descriptionWidgetsTattoos.tw b/src/utility/descriptionWidgetsTattoos.tw index 60cef155a225793b192d4284d6419976a758f3fc..87286810190fd564bab77d60f741e8145febc684 100644 --- a/src/utility/descriptionWidgetsTattoos.tw +++ b/src/utility/descriptionWidgetsTattoos.tw @@ -36,7 +36,7 @@ <<case "sacrament">> Tattoos depicting saintly nude figures adorn $his shoulders. <<case "possessive">> - A rendition of your face inside a heart is tattooed onto $his left shoulder, and the words 'I love my <<if $PC.title == 1>>Master<<else>>Mistress<</if>>' inside an identical heart are tattooed on $his right. + A rendition of your face inside a heart is tattooed onto $his left shoulder, and the words 'I love my <<= WrittenMaster($activeSlave)>>' inside an identical heart are tattooed on $his right. <<case "paternalist">> 'Love Me' is tattooed on $his left shoulder, and 'Teach Me' on $his right. <<default>> @@ -108,7 +108,7 @@ <<case "rude words">> 'Fuckslave' is tattooed across $his chest in such large letters that the word is visible a long way off. <<case "degradation">> - '<<if $PC.title == 1>>Master<<else>>Mistress<</if>>'s' is tattooed across the top of $his right breast; 'Bitch' is tattooed across the top of $his left. + '<<= WrittenMaster($activeSlave)>>'s' is tattooed across the top of $his right breast; 'Bitch' is tattooed across the top of $his left. <<case "Asian art">> An octopus is tattooed on $his upper chest; its tentacles reach down to envelop $his breasts, their tips reaching for but not quite reaching each nipple. <<case "scenes">> @@ -122,7 +122,7 @@ <<case "possessive">> Your personal symbol is tattooed above $his left breast, '<<= PlayerName()>>' above $his right, leaving the rest of $his chest and breasts bare. <<case "paternalist">> - '<<if $PC.title == 1>>Master<<else>>Mistress<</if>>'s' is tattooed across the top of $his right breast; 'Darling' is tattooed across the top of $his left. + '<<= WrittenMaster($activeSlave)>>'s' is tattooed across the top of $his right breast; 'Darling' is tattooed across the top of $his left. <<default>> $activeSlave.boobsTat <</switch>> @@ -170,7 +170,7 @@ <<elseif ($activeSlave.visualAge < 25)>> 'Teach me how to suck cock' is tattooed on $his left arm, and 'Teach me how to take dick' is tattooed on $his right. <<else>> - 'There are many sex slaves like me' is tattooed on $his left arm, and 'But this one is <<if $PC.title == 1>>Master<<else>>Mistress<</if>>'s' is tattooed on $his right. + 'There are many sex slaves like me' is tattooed on $his left arm, and 'But this one is <<= WrittenMaster($activeSlave)>>'s' is tattooed on $his right. <</if>> <</if>> <<case "Asian art">> @@ -206,7 +206,7 @@ <<elseif ($activeSlave.visualAge < 25)>> 'Please teach me how to suck cock' is tattooed on $his left arm, and 'Please teach me how to fuck' is tattooed on $his right. <<else>> - 'There are many sex slaves like me' is tattooed on $his left arm, and 'But <<if $PC.title == 1>>Master<<else>>Mistress<</if>> loves me' is tattooed on $his right. + 'There are many sex slaves like me' is tattooed on $his left arm, and 'But <<= WrittenMaster($activeSlave)>> loves me' is tattooed on $his right. <</if>> <</if>> <<default>> @@ -464,7 +464,7 @@ <<else>> 'Sex slave <</if>> - of <<if $PC.title == 1>>Master<<else>>Mistress<</if>> $PC.name.' + of <<= WrittenMaster($activeSlave)>> $PC.name.' <<case "paternalist">> $His abdomen is tattooed with a downward-pointing arrow which reads 'Let's come together.' <<default>> @@ -550,7 +550,7 @@ $He has a ring of text tattooed around $his anus which reads 'Sissy Slut's Sodomy Slit.' <</if>> <<case "degradation">> - $His anus is bleached. It is tattooed with gothic script in a ring around $his hole, reading '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Made Me An Anal Slut.' + $His anus is bleached. It is tattooed with gothic script in a ring around $his hole, reading '<<= WrittenMaster($activeSlave)>> Made Me An Anal Slut.' <<case "bovine patterns">> $His anus is tattooed to mimic the puffy, dark appearance of a cow's. <<case "sacrilege">> @@ -560,7 +560,7 @@ <<case "possessive">> $He has a ring of numbers around $his anus, detailing the date $he was enslaved by you. <<case "paternalist">> - $His anus is bleached. It is tattooed with text in a ring around $his hole, reading '<<if $PC.title == 1>>Master<<else>>Mistress<</if>> Helped Me Love Anal.' + $His anus is bleached. It is tattooed with text in a ring around $his hole, reading '<<= WrittenMaster($activeSlave)>> Helped Me Love Anal.' <<default>> $activeSlave.anusTat <</switch>> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index 7e3bf07492837afc0d58005b4e914818579710d1..71cbd70230ec7830152d7ecf0b74dcc1a0ebd694 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -1771,7 +1771,7 @@ <<widget "CustomSlaveIntelligence">> <<replace #intelligence>> <<if $customSlave.intelligence >= 3>>Brilliant. - <<elseif $customSlave.intelligence == 2>>Very smart.. + <<elseif $customSlave.intelligence == 2>>Very smart. <<elseif $customSlave.intelligence == 1>>Smart. <<elseif $customSlave.intelligence == 0>>Average intelligence. <<elseif $customSlave.intelligence == -1>>Stupid.