diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index f7aac9834130a0938bd36026ebe87408d7a06e51..b7908cef9dcd271467a6bac93f5a8293132efbd6 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -2235,7 +2235,7 @@ window.PersonalAttention = Object.freeze({TRADE: 'trading', WAR: 'warfare', SLAV window.predictCost = function(array) { var array2 = array; - var totalCosts = ( + var totalCosts = ( getBrothelCosts() + getBrothelAdsCosts() + getArcadeCosts() + @@ -2267,10 +2267,10 @@ window.predictCost = function(array) { //these two apply a multiplicative effect to all costs so far. totalCosts = getEnvironmentCosts(totalCosts); totalCosts = getPCMultiplierCosts(totalCosts); - + //in the old order these were applied after multiplication. Not sure if deliberate, but I'm leaving it for now. totalCosts += ( - getSFCosts() + + getSFCosts() + getWeatherCosts() ); totalCosts = Math.trunc(totalCosts); @@ -3169,10 +3169,10 @@ window.cashX = function(cost, what, who) { V.lastWeeksErrors += `NaN: "${cost}" at ${what}, `; } else { - + //Spend the money V.cash += cost; - + //INCOME if(cost > 0) { @@ -3182,14 +3182,14 @@ window.cashX = function(cost, what, who) { } else { V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`; } - + //record the slave, if available if (typeof who !== 'undefined'){ who.lastWeeksCashIncome += cost; who.lifetimeCashIncome += cost; } } - + //EXPENSES else if(cost < 0) { @@ -8531,6 +8531,8 @@ window.Enunciate = function Enunciate(slave) { V.ShEnunciate = "Th"; V.scEnunciate = "th"; V.ScEnunciate = "Th"; + V.schEnunciate = "th"; + V.SchEnunciate = "Th"; V.xEnunciate = "kth"; V.XEnunciate = "Th"; } else { @@ -8599,6 +8601,8 @@ window.Enunciate = function Enunciate(slave) { V.ShEnunciate = "Sh"; V.scEnunciate = "sc"; V.ScEnunciate = "Sc"; + V.schEnunciate = "sch"; + V.SchEnunciate = "Sch"; V.xEnunciate = "x"; V.XEnunciate = "X"; } diff --git a/src/SecExp/secExpSmilingMan.tw b/src/SecExp/secExpSmilingMan.tw index b9b41f50ee282378332104c487eb898d86f0b256..3f7902c782b5f1f19ffd8ad7f05d69ff68f6a014 100644 --- a/src/SecExp/secExpSmilingMan.tw +++ b/src/SecExp/secExpSmilingMan.tw @@ -7,7 +7,7 @@ <<if $smilingManProgress == 0>> <<set $nextButton = "Continue", $nextLink = "Random Nonindividual Event">> - <br> /* TODO: fix grammatical errors and clean this block up */ + <br> /* TODO: fix grammatical errors and clean this block up */ During your morning routine, you come across a peculiar report: it's been several weeks now that your arcology has been the victim of a series of cyber-crimes conducted by a mysterious figure. The egocentric criminal took great pride in their acts, to the point of signing his acts with their peculiar symbol: a stylized smiling face. Your arcology was not the only one under assault by the machinations of the one the media quickly nicknamed //the smiling man//. diff --git a/src/art/artJS.tw b/src/art/artJS.tw index 6158abe9e11b38216e0f68fc413f9251a12d88f2..025b86b0c0590153e89576f084fba93857349765 100644 --- a/src/art/artJS.tw +++ b/src/art/artJS.tw @@ -1740,7 +1740,7 @@ window.VectorArt = (function (artSlave) { let bellyScaleFactor, artBoobScaleFactor; let artTranslationX, artTranslationY; let penisDrawtime, penisArtString; - + function VectorArt(artSlave) { /* set constants */ V = State.variables, T = State.temporary, slave = artSlave; @@ -1758,7 +1758,7 @@ window.VectorArt = (function (artSlave) { setPenisSize(); penisArtControl(); /* depends on setPenisSize and setBoobScaling, sets penisDrawtime and penisArtString */ setTorsoSize(); - + /* each function adds one layer of vector art vector art added later is drawn over previously added art @@ -1789,7 +1789,7 @@ window.VectorArt = (function (artSlave) { ArtVectorCollar(); /* includes clavicle artwork */ ArtVectorHead(); /* glasses are drawn here */ ArtVectorHairFore(); - + return r; } @@ -1852,7 +1852,7 @@ window.VectorArt = (function (artSlave) { else if (slave.hLength >= 30) hairLength = "Medium"; else if (slave.hLength >= 10) - hairLength = "Short"; + hairLength = "Short"; } function setLegSize() { @@ -1863,7 +1863,7 @@ window.VectorArt = (function (artSlave) { legSize = "Narrow"; else if (slave.weight < 161) legSize = "Normal"; - else + else legSize = "Wide"; } else if (slave.hips === -1) { if (slave.weight <= -11) @@ -2011,12 +2011,12 @@ window.VectorArt = (function (artSlave) { } } else { penisDrawtime = 0; /* flaccid penises are drawn behind the boobs */ - if (slave.foreskin !== 0) + if (slave.foreskin !== 0) penisArtString = jsInclude(`Art_Vector_Flaccid_${penisSize}`); else penisArtString = jsInclude(`Art_Vector_FlaccidCirc_${penisSize}`); /* this draws chastity OVER latex catsuit. prndev finds this alright. */ - if (slave.dickAccessory === "chastity" || slave.dickAccessory === "combined chastity") + if (slave.dickAccessory === "chastity" || slave.dickAccessory === "combined chastity") penisArtString += jsInclude(`Art_Vector_Chastity_Cage_${penisSize}`); } } @@ -2994,7 +2994,7 @@ window.VectorArt = (function (artSlave) { if (slave.collar === "cat ears") r += jsInclude("Art_Vector_Cat_Ear_Fore"); } - + function ArtVectorHead() { let eyebrowFullness = clothing2artSuffix(slave.eyebrowFullness); /* designed for clothing but works for eyebrows too. If other eyebrow styles are added, this may need to be changed. */ @@ -3340,7 +3340,7 @@ window.VectorArt = (function (artSlave) { r += jsInclude("Art_Vector_Nose_Light"); else if (slave.nosePiercing === 2) r += jsInclude("Art_Vector_Nose_Heavy"); - + if (slave.lipsPiercing === 1) r += jsInclude("Art_Vector_Lip_Light"); else if (slave.lipsPiercing === 2) @@ -3396,7 +3396,7 @@ window.VectorArt = (function (artSlave) { r += jsInclude("Art_Vector_Cat_Ear_Fore"); r += jsInclude("Art_Vector_Cat_Ear_Back"); } - } + } } function ArtVectorLeg() { diff --git a/src/cheats/mod_EditArcologyCheat.tw b/src/cheats/mod_EditArcologyCheat.tw index 87adbc6edbdd5ce67c178bd66f367fad5b17f1a0..3e2981750b12d30cd73316739240681837c98f33 100644 --- a/src/cheats/mod_EditArcologyCheat.tw +++ b/src/cheats/mod_EditArcologyCheat.tw @@ -76,14 +76,14 @@ Custom: <<textbox "$language" $language "MOD_Edit Arcology Cheat">> <br> <<if $internationalTrade == 1>> -International slave variety is -<<if $internationalVariety == 0>> - ''semi-realistic,'' so more populous nations will be more common. - [[Normalized national variety|MOD_Edit Arcology Cheat][$internationalVariety = 1]] -<<else>> - ''normalized,'' so small nations will appear nearly as much as large ones. - [[Semi-realistic national variety|MOD_Edit Arcology Cheat][$internationalVariety = 0]] -<</if>> + International slave variety is + <<if $internationalVariety == 0>> + ''semi-realistic,'' so more populous nations will be more common. + [[Normalized national variety|MOD_Edit Arcology Cheat][$internationalVariety = 1]] + <<else>> + ''normalized,'' so small nations will appear nearly as much as large ones. + [[Semi-realistic national variety|MOD_Edit Arcology Cheat][$internationalVariety = 0]] + <</if>> <</if>> <br>Ethnicity will diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index f4f66391c462da1edc3a91fc9a4d33ebc275759c..291573deab5858a0a589f359f78f7ebd270a743b 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -505,28 +505,28 @@ The Free City features ''$neighboringArcologies'' arcologies in addition to your <</if>> <<if !["RomanRevivalist", "AztecRevivalist", "EgyptianRevivalist", "EdoRevivalist", "ArabianRevivalist", "ChineseRevivalist"].includes($targetArcology.type)>> -<br> -The lingua franca of your arcology is <<textbox "$language" $language "Intro Summary">>. -<<if $language != "English">> - [[English|Intro Summary][$language = "English"]] | -<<else>> - English | -<</if>> -<<if $language != "Spanish">> - [[Spanish|Intro Summary][$language = "Spanish"]] | -<<else>> - Spanish | -<</if>> -<<if $language != "Arabic">> - [[Arabic|Intro Summary][$language = "Arabic"]] | -<<else>> - Arabic | -<</if>> -<<if $language != "Chinese">> - [[Chinese|Intro Summary][$language = "Chinese"]] -<<else>> - Chinese -<</if>> + <br> + The lingua franca of your arcology is <<textbox "$language" $language "Intro Summary">>. + <<if $language != "English">> + [[English|Intro Summary][$language = "English"]] | + <<else>> + English | + <</if>> + <<if $language != "Spanish">> + [[Spanish|Intro Summary][$language = "Spanish"]] | + <<else>> + Spanish | + <</if>> + <<if $language != "Arabic">> + [[Arabic|Intro Summary][$language = "Arabic"]] | + <<else>> + Arabic | + <</if>> + <<if $language != "Chinese">> + [[Chinese|Intro Summary][$language = "Chinese"]] + <<else>> + Chinese + <</if>> <</if>> <br> diff --git a/src/facilities/farmyard/farmyard.tw b/src/facilities/farmyard/farmyard.tw index e8d24d228fc48e09815fd6fecf191673ed391057..33608ab64f554be01205f73a2493af2197986143 100644 --- a/src/facilities/farmyard/farmyard.tw +++ b/src/facilities/farmyard/farmyard.tw @@ -71,7 +71,7 @@ $farmyardNameCaps is an oasis of growth in the midst of the jungle of steel and $farmyardNameCaps is working steadily. Farmhands are moving about, looking after the animals and crops. <<elseif $Farmer != 0>> $Farmer.slaveName is alone in $farmyardName, and has nothing to do but look after the animals and crops. -<<else>> /* TODO: is there any way of cleaning up $animalsBought? I can't think of a good way */ +<<else>> /* TODO: is there any way of cleaning up $animalsBought? I can't think of a good way */ $farmyardNameCaps is empty and quiet. <<link "Decommission the Farmyard" "Main">><<set $farmyardName = "the Farmyard", $farmyard = 0, $farmyardSlaves = 0, $farmyardDecoration = "standard", $farmyardUpgrade = {pump: 0, fertilizer: 0, hydroponics: 0, machinery: 0, seeds: 0, lab: 0}, $farmyardLab = 0, $farmyardLabUpgrades = {animalOvaries: 0, animalTesticles: 0, animalMpreg: 0}, $farmyardCrops = 0, $farmyardKennels = 0, $farmyardStable = 0, $farmyardCages = 0, $activeCanine = 0, $activeHooved = 0, $activeFeline = 0, $animalsBought = {canines: 0, hooved: 0, felines: 0, labradorRetrievers: 0, germanShepherds: 0, goldenRetrievers: 0, frenchBulldogs: 0, bulldogs: 0, beagles: 0, poodles: 0, rottweilers: 0, yorkshireTerriers: 0, siberianHuskies: 0, horses: 0, siameses: 0, persians: 0, maineCoons: 0, ragdolls: 0, bengals: 0, abbysinians: 0, birmans: 0, orientalShorthairs: 0, sphynxes: 0, russianBlues: 0, wolves: 0, foxes: 0, jackals: 0, dingos: 0, zebras: 0, cougars: 0, jaguars: 0, pumas: 0, lynx: 0, leopards: 0, lions: 0, tigers: 0}, $pitAnimal = 0, $pitAnimalType = 0, $canines = [], $hooved = [], $felines = []>> <<set _far = $sectors.findIndex(function(s) { return s.type == "Farmyard"; })>> <<if _far != -1>> diff --git a/src/facilities/farmyard/farmyardReport.tw b/src/facilities/farmyard/farmyardReport.tw index 7904018c519c626d061ca1c8859fd8c21e2c980c..36818f74e37387eaccd144c70e884a97e7d158f7 100644 --- a/src/facilities/farmyard/farmyardReport.tw +++ b/src/facilities/farmyard/farmyardReport.tw @@ -944,11 +944,11 @@ <</if>> <<if ($dairyPregUpgrade == 1)>> -<<if ($dairyPregSetting >= 2)>> - Fertile cows make you a significant profit through contract pregnancies. -<<elseif ($dairyPregSetting == 1)>> - Fertile cows make you a small profit through contract pregnancies. -<</if>> + <<if ($dairyPregSetting >= 2)>> + Fertile cows make you a significant profit through contract pregnancies. + <<elseif ($dairyPregSetting == 1)>> + Fertile cows make you a small profit through contract pregnancies. + <</if>> <</if>> <<set _cumWeek = Math.trunc(_cumWeek/10)>> <<set $cumPipeline = _cumWeek, $milkPipeline = _milkWeek>> diff --git a/src/init/dummy.tw b/src/init/dummy.tw index 47457be4128b94531186813bee749f913f89c312..c2d6e9f180db681cc5f06ec3f84401e23e8c27c1 100644 --- a/src/init/dummy.tw +++ b/src/init/dummy.tw @@ -23,7 +23,7 @@ $drugs, $harshCollars, $shoes, $bellyAccessories, $vaginalAccessories, $dickAcce $PC.origRace, $PC.origSkin $isReady, $fatherID, $servantsQuartersSpots -$sayEnunciate, $sEnunciate, $SEnunciate, $ssEnunciate, $cEnunciate, $CEnunciate, $ccEnunciate, $zEnunciate, $ZEnunciate, $chEnunciate, $ChEnunciate, $shEnunciate, $ShEnunciate, $scEnunciate, $ScEnunciate, $xEnunciate, $XEnunciate +$sayEnunciate, $sEnunciate, $SEnunciate, $ssEnunciate, $cEnunciate, $CEnunciate, $ccEnunciate, $zEnunciate, $ZEnunciate, $chEnunciate, $ChEnunciate, $shEnunciate, $ShEnunciate, $scEnunciate, $ScEnunciate, $schEnunciate, $SchEnunciate, $xEnunciate, $XEnunciate $ZEnunciate = $ZEnunciate $Girl, $farmyardSpots */ diff --git a/src/js/assayJS.tw b/src/js/assayJS.tw index bbf29cb494f59e50b1900f638132d40fa1c17a15..5ea3a5c56655a6ca24e9f33e5f05589531dc48a6 100644 --- a/src/js/assayJS.tw +++ b/src/js/assayJS.tw @@ -568,6 +568,8 @@ window.Enunciate = function Enunciate(slave) { V.ShEnunciate = "Th"; V.scEnunciate = "th"; V.ScEnunciate = "Th"; + V.schEnunciate = "th"; + V.SchEnunciate = "Th"; V.xEnunciate = "kth"; V.XEnunciate = "Th"; } else { @@ -636,6 +638,8 @@ window.Enunciate = function Enunciate(slave) { V.ShEnunciate = "Sh"; V.scEnunciate = "sc"; V.ScEnunciate = "Sc"; + V.schEnunciate = "sch"; + V.SchEnunciate = "Sch"; V.xEnunciate = "x"; V.XEnunciate = "X"; } diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw index b4ee0cec07ba86552f87bfb1efd954aa66fa271c..92315217ed07153160344b1626d9c7b3d68ea4df 100644 --- a/src/js/economyJS.tw +++ b/src/js/economyJS.tw @@ -13,10 +13,10 @@ window.PersonalAttention = Object.freeze({TRADE: 'trading', WAR: 'warfare', SLAV window.predictCost = function(array) { var array2 = array; - var totalCosts = ( + var totalCosts = ( getBrothelCosts() + getBrothelAdsCosts() + - getArcadeCosts() + + getArcadeCosts() + getClubCosts() + getClubAdsCosts() + getDairyCosts() + @@ -45,10 +45,10 @@ window.predictCost = function(array) { //these two apply a multiplicative effect to all costs so far. totalCosts = getEnvironmentCosts(totalCosts); totalCosts = getPCMultiplierCosts(totalCosts); - - //in the old order these were applied after multiplication. Not sure if deliberate, but I'm leaving it for now. + + //in the old order these were applied after multiplication. Not sure if deliberate, but I'm leaving it for now. totalCosts += ( - getSFCosts() + + getSFCosts() + getWeatherCosts() ); /* @@ -92,17 +92,17 @@ window.getCost = function(array) { cashX(forceNeg(getPCTrainingCosts()), "PCtraining"); cashX(forceNeg(getPCCosts()), "PCmedical"); getTotalSlaveCosts(array2); - - + + //these two apply a multiplicative effect to all costs so far. - // Calculate what the deduced expenses would be, then subtract + // Calculate what the deduced expenses would be, then subtract costSoFar = (oldCash - State.variables.cash); //How much we have spent by this point; expected to be positive. - cashX(forceNeg(costSoFar - getEnvironmentCosts(costSoFar), "environment")); //getEnv takes total costs and makes it worse. Figure out how much worse and record it + cashX(forceNeg(costSoFar - getEnvironmentCosts(costSoFar), "environment")); //getEnv takes total costs and makes it worse. Figure out how much worse and record it costSoFar = (oldCash - State.variables.cash); cashX(forceNeg(costSoFar - getPCMultiplierCosts(costSoFar)), "PCskills"); - //in the old order these were applied after multiplication. Not sure if deliberate, but I'm leaving it for now. + //in the old order these were applied after multiplication. Not sure if deliberate, but I'm leaving it for now. cashX(forceNeg(getSFCosts()), "specialForces"); cashX(forceNeg(getWeatherCosts()), "weather"); return (oldCash - State.variables.cash); @@ -110,7 +110,7 @@ window.getCost = function(array) { //slave expenses window.predictTotalSlaveCosts = function(array3) { - var loopCosts = 0; + var loopCosts = 0; //slave expenses for (var slave of array3) { loopCosts += getSlaveCost(slave); @@ -213,7 +213,7 @@ window.getServantsQuartersCosts = function() { }; window.getMasterSuiteCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.masterSuitePregnancySlaveLuxuries === 1) { costs += 500; } @@ -313,13 +313,13 @@ window.getFSCosts = function() { }; window.getCitizenOrphanageCosts = function() { - var costs = 0; + var costs = 0; costs += State.variables.citizenOrphanageTotal * 100; return costs; }; window.getPrivateOrphanageCosts = function() { - var costs = 0; + var costs = 0; costs += State.variables.privateOrphanageTotal * 500; if(State.variables.breederOrphanageTotal > 0) { costs += 50; @@ -328,7 +328,7 @@ window.getPrivateOrphanageCosts = function() { }; window.getPeacekeeperCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.peacekeepers !== 0 && State.variables.peacekeepers.undermining !== 0) { costs += State.variables.peacekeepers.undermining; } @@ -351,7 +351,7 @@ window.getMercenariesCosts = function() { }; window.getMenialRetirementCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.citizenRetirementMenials == 1) { costs += State.variables.menials * 2; } @@ -360,7 +360,7 @@ window.getMenialRetirementCosts = function() { // policy and other expenses window.getRecruiterCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.Recruiter !== 0) { costs += 250; } @@ -368,7 +368,7 @@ window.getRecruiterCosts = function() { }; window.getSchoolCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.TSS.schoolPresent === 1) { costs += 1000; } @@ -447,7 +447,7 @@ window.getPolicyCosts = function() { }; window.getCyberModCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.cyberMod !== 0 && State.variables.researchLab.built === 'true') { costs += ((100 * State.variables.researchLab.maxSpace) + (300 * State.variables.researchLab.hired) + (100 * State.variables.researchLab.hired)); } @@ -457,7 +457,7 @@ window.getCyberModCosts = function() { //player expenses window.getPCTrainingCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.PC.actualAge >= State.variables.IsInPrimePC && State.variables.PC.actualAge < State.variables.IsPastPrimePC) { if(State.variables.personalAttention === PersonalAttention.TRADE) { costs += 10000*State.variables.AgeEffectOnTrainerPricingPC; @@ -476,7 +476,7 @@ window.getPCTrainingCosts = function() { return costs; }; window.getPCCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.PC.preg === -1) { costs += 25; } else if(State.variables.PC.fertDrugs === 1) { @@ -521,7 +521,7 @@ window.getEnvironmentCosts = function(cost) { }; window.getSFCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.SF.Toggle && State.variables.SF.Active >= 1) { if(State.variables.SF.Subsidy) { costs += Math.ceil( (10000*(State.variables.SF.Squad.Troops/10))+(1+(State.variables.arcologies[0].prosperity/100))+(1+(State.variables.SF.Size/100)) ); @@ -536,7 +536,7 @@ window.getSFCosts = function() { }; window.getWeatherCosts = function() { - var costs = 0; + var costs = 0; if(State.variables.econWeatherDamage && State.variables.disasterResponse > 0) { costs += Math.trunc(State.variables.disasterResponse * 200000 / State.variables.localEcon); } @@ -939,30 +939,30 @@ window.initFacilityStatistics = function(facility) { return facility; }; -/* +/* + +Welcome to the new way to spend and make money, all while having it recorded: cashX! In the past, costs were directly deducted from $cash, with something like <<set $cash -= 100>>. -Welcome to the new way to spend and make money, all while having it recorded: cashX! In the past, costs were directly deducted from $cash, with something like <<set $cash -= 100>>. +The new system will still happily spend your money, but it will also record it in the appropriate budget category and (optionally) the appropriate slave as well. -The new system will still happily spend your money, but it will also record it in the appropriate budget category and (optinally) the appropriate slave as well. +Let's say you were going to spend 100 on your favorite $activeSlave with cashX. You might try: -Let's say you were going to spend 100 on your favorite $activeSlave with cashX. You might try: - <<run cashX(-100, "slaveMod", $activeSlave)>> There we go! 1. -100 taken from your account 2. Recorded: -100 for the slaveMod category, to be displayed on the Budget screen -3. Recorded: -100 noted in your activeSlave's permanent record. She better get busy paying that off! +3. Recorded: -100 noted in your activeSlave's permanent record. She better get busy paying that off! cashX can be used in JS as well, and can be included in [[]] style links. -Make sure that expenses arrive in the COST slot as a negative, they are often positive in code. Use the new function forceNeg or pass it along on a temporary variable if needed. +Make sure that expenses arrive in the COST slot as a negative, they are often positive in code. Use the new function forceNeg or pass it along on a temporary variable if needed. -Costs don't have to be numbers either, you can use variables. <<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>>. forceNeg makes sure that whatever value $contractCost has is negative, and will therefore be recorded as an expense. You don't have to use it if you're sure the number you are passing along is negative. +Costs don't have to be numbers either, you can use variables. <<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>>. forceNeg makes sure that whatever value $contractCost has is negative, and will therefore be recorded as an expense. You don't have to use it if you're sure the number you are passing along is negative. -A full list of categories (slaveMod, slaveTransfer, event) are in the widget "setupLastWeeksCash", currently found in costsWidgets.tw. It's important to match your cost to one of those categories (or add a new one there, and display it in costsBudget.tw.) +A full list of categories (slaveMod, slaveTransfer, event) are in the widget "setupLastWeeksCash", currently found in costsWidgets.tw. It's important to match your cost to one of those categories (or add a new one there, and display it in costsBudget.tw.) -The third category, the "slave slot" is completely optional. Sometimes you just want to spend money by yourself. +The third category, the "slave slot" is completely optional. Sometimes you just want to spend money by yourself. */ window.cashX = function(cost, what, who) { @@ -972,10 +972,10 @@ window.cashX = function(cost, what, who) { V.lastWeeksErrors += `NaN: "${cost}" at ${what}, `; } else { - + //Spend the money V.cash += cost; - + //INCOME if(cost > 0) { @@ -985,14 +985,14 @@ window.cashX = function(cost, what, who) { } else { V.lastWeeksErrors += `Unknown place "${what}" gained you ${cost},`; } - + //record the slave, if available if (typeof who !== 'undefined'){ who.lastWeeksCashIncome += cost; who.lifetimeCashIncome += cost; } } - + //EXPENSES else if(cost < 0) { diff --git a/src/js/generateGenetics.tw b/src/js/generateGenetics.tw index 3a450dd1961cefdfd52e53e5dc43822424ca726d..4efa6cd6a345caaa8984ea6e682bc4147186288e 100644 --- a/src/js/generateGenetics.tw +++ b/src/js/generateGenetics.tw @@ -575,7 +575,7 @@ window.generateGenetics = (function() { } } } - + // hyper fertility if (mother.geneticQuirks.hyperFertility == 2) { if (sex == "XX") { diff --git a/src/js/generateNewSlaveJS.tw b/src/js/generateNewSlaveJS.tw index 4953ae85561e89ad654e101f95f6849b84decf7b..8856df7357b5a792e1a5df6f332a212dd731ec1c 100644 --- a/src/js/generateNewSlaveJS.tw +++ b/src/js/generateNewSlaveJS.tw @@ -1061,7 +1061,7 @@ window.GenerateNewSlave = (function(){ slave.geneticQuirks.hyperFertility = 1; } }; - + function generateXYGeneticQuirks() { chance = jsRandom(1,1000); if (chance >= 950) { diff --git a/src/npc/descriptions/fButt.tw b/src/npc/descriptions/fButt.tw index 6c64150a19c431e5ecee6660d47d92895827ee46..9c267890779625f5c2e0a63b4fcf4c68028b7553 100644 --- a/src/npc/descriptions/fButt.tw +++ b/src/npc/descriptions/fButt.tw @@ -19,13 +19,13 @@ You call $him over so you can <</if>> <<if ($activeSlave.vagina !== -1)>> -<<if ($activeSlave.vaginaTat == "tribal patterns")>> - The tattoos on $his abdomen certainly draw attention there. -<<elseif ($activeSlave.vaginaTat == "scenes")>> + <<if ($activeSlave.vaginaTat == "tribal patterns")>> + The tattoos on $his abdomen certainly draw attention there. + <<elseif ($activeSlave.vaginaTat == "scenes")>> The tattoos on $his abdomen nicely illustrate what you mean to do to $him. -<<elseif ($activeSlave.vaginaTat == "degradation")>> - The tattoos on $his abdomen are asking you to, after all. -<</if>> + <<elseif ($activeSlave.vaginaTat == "degradation")>> + The tattoos on $his abdomen are asking you to, after all. + <</if>> <</if>> <<if ($activeSlave.vaginaPiercing > 1)>> @@ -47,12 +47,12 @@ You call $him over so you can <</if>> <<if ($activeSlave.anusTat !== 0) && ($activeSlave.anusTat !== 4)>> -$His anus is invitingly bleached, -<<if ($activeSlave.vagina > -1)>> - which is appropriate: rather than looking like $he has a hole for fucking and an ass, it looks like $he has two fuckholes. -<<else>> - making $his sole fuckable hole look nice and natural. -<</if>> + $His anus is invitingly bleached, + <<if ($activeSlave.vagina > -1)>> + which is appropriate: rather than looking like $he has a hole for fucking and an ass, it looks like $he has two fuckholes. + <<else>> + making $his sole fuckable hole look nice and natural. + <</if>> <</if>> <<if ($activeSlave.vagina == 0) && ($activeSlave.anus == 0) && canDoVaginal($activeSlave)>> diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw index f5af283d57f3fc5f66e54591cd6fcb49d65d414c..310d8ea0e81f9f592b7fdb1a7f0f635174021aac 100644 --- a/src/npc/fFeelings.tw +++ b/src/npc/fFeelings.tw @@ -693,13 +693,13 @@ My favorite part of my body i<<s>> <</if>> /* closes dick check */ <<if Math.abs($activeSlave.hormoneBalance) >= 200>> -<<if $activeSlave.physicalAge > 35>> -<<if $activeSlave.devotion > 50>> -<<if $activeSlave.energy > 40>> - On all the<<s>>e hormone<<s>> I'm almo<<s>>t going through puberty all over again. Kind of a <<s>>urpri<<s>>e at my age." $He grins suggestively. "I'll do my be<<s>>t to fuck like a teenager, <<Master>>. -<</if>> -<</if>> -<</if>> + <<if $activeSlave.physicalAge > 35>> + <<if $activeSlave.devotion > 50>> + <<if $activeSlave.energy > 40>> + On all the<<s>>e hormone<<s>> I'm almo<<s>>t going through puberty all over again. Kind of a <<s>>urpri<<s>>e at my age." $He grins suggestively. "I'll do my be<<s>>t to fuck like a teenager, <<Master>>. + <</if>> + <</if>> + <</if>> <</if>> <<if ($activeSlave.curatives > 1) || $activeSlave.inflationType == "curative">> diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw index 59cd953e1da72e3e07fd745dc5b1fafdf4c38339..a001d969833cacd6383266d4deee3465d30def30 100644 --- a/src/pregmod/widgets/seBirthWidgets.tw +++ b/src/pregmod/widgets/seBirthWidgets.tw @@ -14,13 +14,13 @@ /* birth complications calcs */ <<if $slaves[$i].mpreg == 1>> -<<if $slaves[$i].anus < 2>> - <<set $birthDamage += 3>> -<</if>> + <<if $slaves[$i].anus < 2>> + <<set $birthDamage += 3>> + <</if>> <<else>> -<<if $slaves[$i].vagina < 2>> - <<set $birthDamage += 3>> -<</if>> + <<if $slaves[$i].vagina < 2>> + <<set $birthDamage += 3>> + <</if>> <</if>> <<if $slaves[$i].hips < 0>> <<set $birthDamage += (2-$slaves[$i].hips)>> @@ -51,9 +51,9 @@ <<set $birthDamage += 2>> <</if>> <<if $slaves[$i].mpreg != 1>> -<<if $slaves[$i].vaginaLube == 0>> - <<set $birthDamage += 1>> -<</if>> + <<if $slaves[$i].vaginaLube == 0>> + <<set $birthDamage += 1>> + <</if>> <</if>> <<if $slaves[$i].tired > 0>> <<set $birthDamage += 2>> @@ -103,9 +103,9 @@ <<set $birthDamage -= 3>> <</if>> <<if $slaves[$i].mpreg != 1>> -<<if $slaves[$i].vaginaLube > 0>> - <<set $birthDamage -= $slaves[$i].vaginaLube>> -<</if>> + <<if $slaves[$i].vaginaLube > 0>> + <<set $birthDamage -= $slaves[$i].vaginaLube>> + <</if>> <</if>> <<if $slaves[$i].curatives > 0>> <<set $birthDamage -= 3>> @@ -251,7 +251,7 @@ <<if $slaves[$i].fetish == "mindbroken">> While getting milked, $slaves[$i].slaveName's water breaks. $He shows little interest and continues kneading $his breasts. Instinctively $he begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. $He pays no heed to $his child<<if $slaves[$i].pregType > 1>>ren<</if>> being removed from the milking stall, instead focusing entirely on draining $his breasts. <<else>> - While getting milked, $slaves[$i].slaveName's water breaks,<<if $dairyPregSetting > 0>> this is a regular occurrence to $him now so<<else>> but<</if>> $he continues enjoying $his milking. $He begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. $He catches <<if canSee($slaves[$i])>>a glimpse<<else>>the sound<</if>> of $his child<<if $slaves[$i].pregType > 1>>ren<</if>> being removed from the milking stall before returning $his focus to draining $his breasts. + While getting milked, $slaves[$i].slaveName's water breaks,<<if $dairyPregSetting > 0>> this is a regular occurrence to $him now so<<else>> but<</if>> $he continues enjoying $his milking. $He begins to push out $his bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. $He catches <<if canSee($slaves[$i])>>a glimpse<<elseif canHear($slaves[$i])>>the sound<<else>>the feeling<</if>> of $his child<<if $slaves[$i].pregType > 1>>ren<</if>> being removed from the milking stall before returning $his focus to draining $his breasts. <</if>> <</if>> <</if>> /* close cow birth */ diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index bdceb84170b03aabb14197422ca05c32c3b78671..05283dea34431f9a762e58b95e7e77d38de33571 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -62,10 +62,10 @@ <</if>> <<if ndef $PC.name>> -<<if def $PCName>> - <<set $PC.name = $PCName>> - <<unset $PCName>> -<</if>> + <<if def $PCName>> + <<set $PC.name = $PCName>> + <<unset $PCName>> + <</if>> <</if>> <<if ndef $PC.surname>> <<set $PC.surname = 0>> diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index d8e96ca522d335e878afd49e3f9d25250b87dd76..383b75b8db7310aaa45c8d2cc99d4d1487001f62 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -102,7 +102,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, <<= WrittenMaster()>> ? ?"<<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>>whispers, "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>> @@ -278,7 +278,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Make $him the face of an ad campaign">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring $him out to a pretty balcony and put $him through an extended photo shoot. $He has no idea what you're planning, but $he's skilled enough not to need to. $He dons different outfits, changes makeup, and even shifts personas for the camera, producing hundreds of elegant, sensual and eye-catching images. You dismiss $him back to the club when you're done, and $he clearly thinks little of it. The next day, however, you walk $him out onto the club in the morning. When the two of you, <<= WrittenMaster()>> and DJ, reach the main club, $he stops short when $he catches sight of the main billboard screen. There $he is, resplendent and opulent, <<if $showInches == 2>>thirty feet<<else>>ten meters<</if>> tall, giving the viewer a sultry look. $He only breaks down for a single moment, but it's quite a moment: $he cries rather inelegantly, <<if canTalk($activeSlave)>><<say>>ing a sobbing "I love you <<Master>>" into your ear<</if>> before giving you a @@.hotpink;wet kiss.@@ Then $he runs over to stand under the screen, looking back at you to give you a @@.green;picture-perfect@@ imitation of the billboard $he's standing under before laughing at $himself a little. + You bring $him out to a pretty balcony and put $him through an extended photo shoot. $He has no idea what you're planning, but $he's skilled enough not to need to. $He dons different outfits, changes makeup, and even shifts personas for the camera, producing hundreds of elegant, sensual and eye-catching images. You dismiss $him back to the club when you're done, and $he clearly thinks little of it. The next day, however, you walk $him out onto the club in the morning. When the two of you, <<= WrittenMaster()>> and DJ, reach the main club, <<if canSee($activeSlave)>>$he stops short when $he catches sight of<<else>>you make sure to describe to $him, in explicit detail, what's displayed on<</if>> the main billboard screen. There $he is, resplendent and opulent, <<if $showInches == 2>>thirty feet<<else>>ten meters<</if>> tall, giving the viewer a sultry look. $He only breaks down for a single moment, but it's quite a moment: $he cries rather inelegantly, <<if canTalk($activeSlave)>><<say>>ing a sobbing "I love you, <<Master>>" into your ear<</if>> before giving you a @@.hotpink;wet kiss.@@ Then $he runs over to stand under the screen, looking back at you to give you a @@.green;picture-perfect@@ imitation of the billboard $he's standing under before laughing at $himself a little. <<run cashX(-1000, "event", $activeSlave)>> <<set $rep += 500>> <<set $activeSlave.devotion += 4>> @@ -329,7 +329,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<link "Give $him a businesslike massage">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss $him back to $his stretching. $He gets back to it, but is surprised to find $his shoulders seized by your powerful hands. $He shivers helplessly as you knead $his knotted muscles, whimpering with near-orgasmic delight as $he feels the day's aches ground away under your grip. When you're done with $him, $he touches $his toes and then smoothly rises to stretch with $his hands over $his head, groaning with sheer pleasure at the feeling. <<if !canTalk($activeSlave)>>$He thanks you profusely with gestures, and then hesitantly asks if you'd like to use $his body.<<else>>"Thank you <<Master>>," $he <<say murmur>>s. "Would — would you like to u<<s>>e my body, now?"<</if>> You shake your head kindly and place a kiss on $his forehead before continuing with your evening. As $he watches you go, $he suppresses @@.hotpink;another shiver.@@ + When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss $him back to $his stretching. $He gets back to it, but is surprised to find $his shoulders seized by your powerful hands. $He shivers helplessly as you knead $his knotted muscles, whimpering with near-orgasmic delight as $he feels the day's aches ground away under your grip. When you're done with $him, $he touches $his toes and then smoothly rises to stretch with $his hands over $his head, groaning with sheer pleasure at the feeling. <<if !canTalk($activeSlave)>>$He thanks you profusely with gestures, and then hesitantly asks if you'd like to use $his body.<<else>>"Thank you <<Master>>," $he <<say>>s. "Would — would you like to u<<s>>e my body, now?"<</if>> You shake your head kindly and place a kiss on $his forehead before continuing with your evening. As $he watches you go, $he suppresses @@.hotpink;another shiver.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -355,7 +355,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <br><<link "It can wait until after some lovemaking with the Concubine">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees the kind of lovemaking you're in the mood for, $he spreads $his arms for you, smiling gently. $He kisses you lovingly, <<if !canTalk($activeSlave)>>taking your hand in $hers and drawing a heart on your palm with one finger.<<else>><<say murmur>>ing: "<<Master>>, I love you."<</if>> <<if ($PC.vagina == 1)>>$He lies on $his side and raises one leg for you so you can straddle the other, sliding up to press your pussy against $his submissive groin. You grind against $him; the stimulation is so strong that $he writhes into the sheets, panting and whining.<<if $PC.dick == 1>> Your stiff dick, unused for once, slides deliciously between your warm bodies.<</if>><<else>><<if ($activeSlave.vagina > 0)>>$His pussy is warm and very wet, making penetration easy; $he gasps and arches $his back, clasping you between $his legs as $his $activeSlave.eyeColor eyes look deep into yours.<<elseif ($activeSlave.anus > 0)>>$His butt is relaxed and welcoming, and $he holds $his legs back to take missionary anal loving as $his $activeSlave.eyeColor look deep into yours.<<else>>$He holds $his thighs together for frottage so $he can love you without losing $his virginity.<</if>><</if>> You both know each other quite well, and maintain the gentle communion for a long time. When $he senses your climax building, $he lets $himself climb to orgasm with you, holding <<if ($PC.dick == 0)>>your hips in $his hands<<else>>you in $his arms<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant another kiss on you.@@ + When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he <<if canSee($activeSlave)>>sees<<else>>figures out<</if>> the kind of lovemaking you're in the mood for, $he spreads $his arms for you, smiling gently. $He kisses you lovingly, <<if !canTalk($activeSlave)>>taking your hand in $hers and drawing a heart on your palm with one finger.<<else>><<say>>ing, "<<Master>>, I love you."<</if>> <<if ($PC.vagina == 1)>>$He lies on $his side and raises one leg for you so you can straddle the other, sliding up to press your pussy against $his submissive groin. You grind against $him; the stimulation is so strong that $he writhes into the sheets, panting and whining.<<if $PC.dick == 1>> Your stiff dick, unused for once, slides deliciously between your warm bodies.<</if>><<else>><<if ($activeSlave.vagina > 0)>>$His pussy is warm and very wet, making penetration easy; $he gasps and arches $his back, clasping you between $his legs as $his $activeSlave.eyeColor eyes look deep into yours.<<elseif ($activeSlave.anus > 0)>>$His butt is relaxed and welcoming, and $he holds $his legs back to take missionary anal loving as $his $activeSlave.eyeColor look deep into yours.<<else>>$He holds $his thighs together for frottage so $he can love you without losing $his virginity.<</if>><</if>> You both know each other quite well, and maintain the gentle communion for a long time. When $he senses your climax building, $he lets $himself climb to orgasm with you, holding <<if ($PC.dick == 0)>>your hips in $his hands<<else>>you in $his arms<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant another kiss on you.@@ <<set $activeSlave.devotion += 10>> <<set $activeSlave.oralCount += 1>> <<set $oralTotal += 1>> @@ -374,7 +374,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to <<replace "#result">> When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees <<if ($PC.dick == 0)>>the big strap-on you're wearing<<else>>the kind of sex you're in the mood for<</if>>, $he turns over and pushes $his face down into the sheets. $He pulls $his knees under $himself and reaches back to pull $his <<if ($activeSlave.butt > 5)>>huge<<elseif ($activeSlave.butt > 2)>>sizable<<else>>pretty<</if>> buttocks apart, relaxing and then clenching $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole invitingly. $He starts <<if !canTalk($activeSlave)>>to point an inviting finger at $his backdoor,<<else>>to <<say beg>> "Plea<<s>>e a<<ss>>rape me, M-" into the sheets,<</if>> but you interrupt $him by shoving $him forward so that $he's all the way face-down on the bed. $He knows how you like it and starts to wriggle, struggle, and whine as you roughly sodomize $him, <<if ($PC.dick == 0)>>the strap-on<<else>>your cock<</if>> ramming straight up $his ass despite the uncomfortable angle, <<if ($activeSlave.butt > 5)>>which $his huge ass makes easier for $him by limiting how deeply you can fuck $him without $his buttocks spread wide.<<elseif ($activeSlave.butt > 2)>>which $his big behind makes easier for $him by limiting how deeply you can fuck $him.<<else>>which $his modest ass makes harder for $him by allowing you to get really deep inside $his anus.<</if>> $He continues to wrestle with you, sometimes even managing to dislodge <<if ($PC.dick == 0)>>the strap-on<<else>>your dick<</if>>, allowing you the <<if ($PC.dick == 0)>>cruel delight<<else>>delicious sensation<</if>> of pushing it back up $his butt each time. Despite the pretense $his enjoyment is obvious; <<if ($activeSlave.dick > 0) && ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> - despite $his chastity caged cock, $he's grinding against you as eagerly as a $girl making love with $his pussy. + though $his cock has been placed in a chastity cage, $he's grinding against you as eagerly as if it wasn't there at all. <<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>> though $his hormone-filled body can't get $his dick hard any more, $he's leaking precum all over the bed. <<elseif $activeSlave.dick > 0 && $activeSlave.balls > 0 && $activeSlave.ballType == "sterile">> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 9ec6d122bed98835be724be15734d2c7b29286d4..85a63fb5f332656df56dd5d1572e7ea215e58a89 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -203,7 +203,7 @@ Your slaves are required to take very good care of themselves, and your best gir <<elseif $activeSlave.belly >= 5000>> $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<elseif $activeSlave.bellyImplant >= 3000>>protruding<<else>>sloshing<</if>> belly parting $his legs as $he goes, <</if>> -moaning at the pleasurable feeling of a good stretch. $He sets the lotion bottle on the ground next to $him, dispenses a little, and carefully rubs it into the tops of $his feet. When $he reaches $his ankles, still bent almost double, $he <<if canSee($activeSlave)>>catches sight of you watching $him from between $his legs<<else>>picks up the sound of your breathing<</if>>. $He smiles at you and keeps working. +moaning at the pleasurable feeling of a good stretch. $He sets the lotion bottle on the ground next to $him, dispenses a little, and carefully rubs it into the tops of $his feet. When $he reaches $his ankles, still bent almost double, $he <<if canSee($activeSlave)>>catches sight of you watching $him from between $his legs<<elseif canHear($activeSlave)>>picks up the sound of your breathing<<else>>cottons on to your presence<</if>>. $He smiles at you and keeps working. <br><br> $He shifts $his <<if $activeSlave.hips > 2>> @@ -2828,7 +2828,7 @@ neck, $activeSlave.skin, <<if $activeSlave.muscles > 95>>hugely muscled<<elseif <<case "bonded love">> -Working in your office early in the morning, you can hear the low, human hum of your slaves who work during the daytime busily getting ready for their days. Suddenly, there's motion at your doorway, and <<EventNameLink $activeSlave>> hurries in. $He's nude, $his $activeSlave.skin skin glowing with the fresh cleanliness of having just gotten out of the shower. $He <<if canSee($activeSlave)>>glances at you<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>> to see if $he's unwelcome, and seeing no sign that $he is, the devoted $desc comes over to your desk. +Working in your office early in the morning, you can hear the low, human hum of your slaves who work during the daytime busily getting ready for their days. Suddenly, there's motion at your doorway, and <<EventNameLink $activeSlave>> hurries in. $He's nude, $his $activeSlave.skin skin glowing with the fresh cleanliness of having just gotten out of the shower. $He <<if canSee($activeSlave)>>glances at you<<elseif canHear($activeSlave)>>listens<<else>>waits<</if>> to see if $he's unwelcome, and <<if canSee($activeSlave)>>seeing<<else>>finding<</if>> no sign that $he is, the devoted $desc comes over to your desk. <<if $activeSlave.boobs < 400>> $His little $activeSlave.boobShape tits barely move at all as $he walks, though $his $activeSlave.nipples nipples certainly catch your eye. <<elseif Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .75>> /* tiny little 200cc implants in 20000cc tits are laughable. Now we make sure those tits are fake. */ @@ -4188,7 +4188,7 @@ $He sits back up and rubs $his hands down <<else>> $his lower back on either side, <</if>> -sighing contentedly at the feeling. <<if canSee($activeSlave)>>$He opens $his eyes, and sees you looking at $him<<else>>$His ears perk up as $he notices your presence<</if>>. +sighing contentedly at the feeling. <<if canSee($activeSlave)>>$He opens $his eyes, and sees you looking at $him<<elseif canHear($activeSlave)>>$His ears perk up as $he notices your presence<<else>>You gently prod $him to alert $him to your presence, causing $him to stiffens with surprise, before regaining $his composure<</if>>. <<if $activeSlave.energy > 80>> "Hi <<Master>>," $he <<say>>s flirtatiously, and hugs $himself under $his boobs, presenting them even more obviously. $His strong sex drive is awake, too. $He <<if canSee($activeSlave)>>watches at you speculatively<<elseif canHear($activeSlave)>>listens closely<<else>>waits patiently<</if>>, obviously hoping to get fucked. <<elseif $activeSlave.trust > 20>> @@ -5691,7 +5691,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><br><span id="result2"> <<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. + You lean forward until your lips graze one of $his ears, and<<if !canHear($activeSlave)>>, with a gentle nudge to $his shoulder,<</if>> tell $him that $he can touch $himself if $he wants. <<if !canTalk($activeSlave)>> $He raises a shaky hand to gesture @@.mediumaquamarine;$his thanks@@ as the other <<else>> @@ -8191,7 +8191,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <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 $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 you has increased.@@ <<set $activeSlave.devotion += 15, $activeSlave.trust += 5>> - <</replace>> <</link>> + <</replace>> <</link>> <</if>> <<case "scrubbing">> @@ -12724,7 +12724,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <</if>> $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 $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. + You run a possessive hand through $his $activeSlave.hColor hair, <<if canHear($activeSlave)>>and<<else>>to<</if>> 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>> @@ -15438,7 +15438,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <<replace "#result">> 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 $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.@@ + 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 their 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>> @@ -17006,7 +17006,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <</if>> <</if>> <br><br> - 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. + 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<<elseif canHear($activeSlave)>>slight perk of $his ears as $he tracks your motion<<else>>flushed color to $his cheeks as $he awaits your next action<</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 $his back to you and starts to grind, letting you feel $his <<if $activeSlave.weight > 160>> @@ -17120,7 +17120,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <br><<link "Reassure $him about $his body">> <<EventNameDelink $activeSlave>> <<replace "#result">> - 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. + 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 <<if canHear($activeSlave)>>sound<<else>>seem<</if>> 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>> @@ -17275,7 +17275,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <<case "submissive">> $He's a sub, but this actually means that $he can do a reasonable dom impression when $he works at it. $He certainly has experience with what works, even if it's from the other side. The erstwhile rich girls are required to kiss $his feet, literally. <<case "cumslut">> - As a cumslut, $he derives considerable enjoyment from seeing others drink ejaculate, too. In this case, $he enjoys forcing the erstwhile rich girls to choke down liters of the stuff. + As a cumslut, $he derives considerable enjoyment from <<if canSee($activeSlave)>>seeing<<else>>having<</if>> others drink ejaculate, too. In this case, $he enjoys forcing the erstwhile rich girls to choke down liters of the stuff. <<case "humiliation">> $He can't publicly humiliate them, since that would defeat the whole purpose of sequestering them until the trail goes really cold. Unfortunately for them, that doesn't stop $him from humiliating them to each other, and $he forces them to perform various sex acts on $him while the others watch. <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].oralCount += 10>><</if>><</for>> @@ -18533,7 +18533,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <<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<<elseif canHear($activeSlave)>>listens<<else>>freezes<</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 $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</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, + drained of $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</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<<elseif canHear($activeSlave)>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<<else>>turn $his thoughts away from the giant, jiggling, roughly manipulated orbs of flesh<</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>> @@ -18876,7 +18876,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <<else>> slide your stiff prick up between the virgin's thighs for some intercrural sex. <</if>> - As you fuck<<if $activeSlave.belly >= 5000 || $PC.belly >= 5000 || $activeSlave.weight > 160 || $activeSlave.boobs > 40000 || $activeSlave.butt > 10>> in the cramped corridor<</if>>, $his <<if canSee($activeSlave)>>gaze flicks up and down along the row<<else>>ears perks up at the subtle sounds<</if>> of suffering bodies. $He climaxes again and again, shuddering at each new subtle sign that another one of the slaves here is being degraded by yet another cock inserted into yet another of _hisU defenseless holes. By the time you're satisfied, $he's so exhausted that $his legs are shuddering uncontrollably as $he struggles to remain standing with you. You drop $him, leaving $him to find $his own way out of this place. You look back from the entrance, seeing that $he's following you on shaky legs, <<if canSee($activeSlave)>>staring at<<else>>facing<</if>> you with a profound look of mixed @@.mediumaquamarine;trust for your understanding of $his horrible sadism,@@ and deep unease that this is what truly gets $him off. + As you fuck<<if $activeSlave.belly >= 5000 || $PC.belly >= 5000 || $activeSlave.weight > 160 || $activeSlave.boobs > 40000 || $activeSlave.butt > 10>> in the cramped corridor<</if>>, $his <<if canSee($activeSlave)>>gaze flicks up and down along the row<<elseif canHear($activeSlave)>>ears perks up at the subtle sounds<<else>>expression becomes flushed from the mere thought<</if>> of suffering bodies. $He climaxes again and again, shuddering at each new subtle sign that another one of the slaves here is being degraded by yet another cock inserted into yet another of _hisU defenseless holes. By the time you're satisfied, $he's so exhausted that $his legs are shuddering uncontrollably as $he struggles to remain standing with you. You drop $him, leaving $him to find $his own way out of this place. You look back from the entrance, seeing that $he's following you on shaky legs, <<if canSee($activeSlave)>>staring at<<else>>facing<</if>> you with a profound look of mixed @@.mediumaquamarine;trust for your understanding of $his horrible sadism,@@ and deep unease that this is what truly gets $him off. <</replace>> <<set $activeSlave.trust += 5>> <</link>> @@ -20463,7 +20463,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address <br><<link "Fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You can't help but be aroused by the sight of your swollen, helpless slave, and you take off your pants, revealing your erection. The slave's <<if canSee($activeSlave)>>backward glance falls on your dick<<else>>ears perk up<</if>> and $he + You can't help but be aroused by the sight of your swollen, helpless slave, and you take off your pants, revealing your erection. The slave's <<if canSee($activeSlave)>>backward glance falls on your dick<<elseif canHear($activeSlave)>>ears perk up<<else>>skin is slightly brushed by your discarded clothing<</if>> and $he <<if $activeSlave.devotion > 95>> licks $his lips, <<if $activeSlave.amp == 1>> diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index cc9c489087f8beb5331690f9b1646c181a3d056e..9982a1a4c8538dd666920b3a5cd84c29e90a109c 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -391,9 +391,9 @@ $He clearly held off on climaxing in case you wanted $his libido undiminished fo <<set _headGirlPresent = 1>> <<if $HeadGirl != 0>> -<<if $activeSlave.ID == $HeadGirl.ID>> - <<set _headGirlPresent = 0>> -<</if>> + <<if $activeSlave.ID == $HeadGirl.ID>> + <<set _headGirlPresent = 0>> + <</if>> <</if>> You pass by the slave quarters during a busy time. Girls are hurrying back and forth, rushing to bathe, eat, and get dressed. <<EventNameLink $activeSlave>> is in a particular hurry, $his <<if $activeSlave.belly >= 10000>><<if $activeSlave.bellyPreg >= 8000>>heavy pregnancy<<else>>heavy belly<</if>> and <</if>><<if $activeSlave.boobs > 8000>>gargantuan tits hampering $him badly<<else>>huge boobs getting in the way<</if>> as $he rushes around. Returning from the shower to the sleeping area, $he turns a corner and runs hard into $subSlave.slaveName. Both slaves are nude, and the collision of their massive breasts makes an audibly painful smack. $activeSlave.slaveName has enough momentum that $he overbears the top-heavy $subSlave.slaveName entirely. The poor <<if $subSlave.physicalAge > 30>>_woman2<<else>>_girl2<</if>> crashes backwards, _his2 <<if $subSlave.butt > 8>>monstrous bottom<<elseif $subSlave.butt > 4>>big behind<<else>>hind end<</if>> hitting the floor with a slap. $activeSlave.slaveName lands on top of _him2, the fall and the sudden weight of $activeSlave.slaveName on top of _him2 driving the wind out of $subSlave.slaveName with a whoosh. <br><br> @@ -992,7 +992,7 @@ while _he2 nurses. $activeSlave.slaveName notices you first, of course, and <<if <<else>> "I know milk i<<s>>n't a big part of my daughter'<<s>> diet, but thi<<s>> i<<s>> mo<<s>>tly for fun," <</if>> -$he adds impishly. Hearing this, $subSlave.slaveName lets the breast pop free of _his2 <<if $subSlave.lips > 95>>facepussy<<elseif $subSlave.lipsImplant > 0>>fake lips<<elseif $subSlave.lips > 20>>big lips<<else>>mouth<</if>> so _he2 can turn around and greet you too, but _he2 hurries back to the nipple afterward, and doesn't stop stimulating _his2 _mother for a moment. +$he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your presence<</if>>, $subSlave.slaveName lets the breast pop free of _his2 <<if $subSlave.lips > 95>>facepussy<<elseif $subSlave.lipsImplant > 0>>fake lips<<elseif $subSlave.lips > 20>>big lips<<else>>mouth<</if>> so _he2 can turn around and greet you too, but _he2 hurries back to the nipple afterward, and doesn't stop stimulating _his2 _mother for a moment. <<if $activeSlave.lactation > 0>> <<set $activeSlave.lactationDuration = 2>> <<set $activeSlave.boobs -= $activeSlave.boobsMilk, $activeSlave.boobsMilk = 0>> diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw index 9c65ac2f5fbda92648cd0176b20fdae93c528f82..8828a91f482a2058bd57adb6f9faad1c7d7afdc0 100644 --- a/src/uncategorized/assistantEvents.tw +++ b/src/uncategorized/assistantEvents.tw @@ -1358,36 +1358,36 @@ __Personal assistant appearances:__ <</replace>> <</link>> <<if $seePreg != 0>> -<br> <<link "Goddess">> - <<replace "#result">> - At your order, _heA installs the goddess appearance. _HeA fixes a wreath of flowers into _hisA hair, _hisA golden locks and gravid belly the only things keeping _hisA 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, _heA installs the hyper goddess appearance. _HeA fixes a wreath of flowers into _hisA golden locks as _hisA belly rapidly bloats to its limit before bulging and squirming ominously. _HisA breasts quickly follow suit. "Thank you, <<= properTitle()>>. This is wondrous." _HeA massages _hisA 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 _hisA nether lips. - <<set $assistantAppearance = "hypergoddess">> - <</replace>> -<</link>> -<</if>> + <br> <<link "Goddess">> + <<replace "#result">> + At your order, _heA installs the goddess appearance. _HeA fixes a wreath of flowers into _hisA hair, _hisA golden locks and gravid belly the only things keeping _hisA 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, _heA installs the hyper goddess appearance. _HeA fixes a wreath of flowers into _hisA golden locks as _hisA belly rapidly bloats to its limit before bulging and squirming ominously. _HisA breasts quickly follow suit. "Thank you, <<= properTitle()>>. This is wondrous." _HeA massages _hisA 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 _hisA nether lips. + <<set $assistantAppearance = "hypergoddess">> + <</replace>> + <</link>> + <</if>> <</if>> <<if $minimumSlaveAge < 13 >> -<br> <<link "Loli">> - <<replace "#result">> - At your order, _heA installs the lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. 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>> + <br> <<link "Loli">> + <<replace "#result">> + At your order, _heA installs the lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. 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 "Pregnant Loli">> - <<replace "#result">> - At your order, _heA installs the modified lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. This is neat." _HeA twirls around and giggles before groaning and clutching _hisA stomach. A flood of white liquid flows from _hisA loins as _hisA belly begins rapidly swelling. _HeA falls onto _hisA backside holding _hisA full term belly and says, exhausted, "You can always customize me from the arcology management menu." - <<set $assistantAppearance = "preggololi">> - <</replace>> -<</link>> + <br> <<link "Pregnant Loli">> + <<replace "#result">> + At your order, _heA installs the modified lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. This is neat." _HeA twirls around and giggles before groaning and clutching _hisA stomach. A flood of white liquid flows from _hisA loins as _hisA belly begins rapidly swelling. _HeA falls onto _hisA backside holding _hisA 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">> @@ -1396,18 +1396,18 @@ __Personal assistant appearances:__ <</replace>> <</link>> <<if $seeDicks != 0>> -<br> <<link "Shemale">> - <<replace "#result">> - At your order, _heA installs the shemale appearance. _HeA spins to show off _hisA new body, and starts to play with _hisA 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 _hisA 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, _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>> + <br> <<link "Shemale">> + <<replace "#result">> + At your order, _heA installs the shemale appearance. _HeA spins to show off _hisA new body, and starts to play with _hisA 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 _hisA 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, _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">> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 04aa173a28b88cabbab7ced8278b41baa164e4c0..19ad2715ec7d35fcce7741e118818835313a0582 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -497,16 +497,16 @@ Choose piercing style: <</if>> <<if $piercingLevel == 3>> -<<if ($activeSlave.vagina != -1) || ($activeSlave.dick != 0)>> - <<if $activeSlave.clitPiercing != 3>> - <br> - Give $him a [[smart piercing?|Body Modification][$activeSlave.clitPiercing = 3,$activeSlave.clitSetting = "all",cashX(forceNeg($SPcost), "slaveMod", $activeSlave),$degradation += 1]] //Costs <<print cashFormat($SPcost)>>, unlocks options to mold sexuality// - <<else>> - <br> - $He already has a smart piercing! + <<if ($activeSlave.vagina != -1) || ($activeSlave.dick != 0)>> + <<if $activeSlave.clitPiercing != 3>> + <br> + Give $him a [[smart piercing?|Body Modification][$activeSlave.clitPiercing = 3,$activeSlave.clitSetting = "all",cashX(forceNeg($SPcost), "slaveMod", $activeSlave),$degradation += 1]] //Costs <<print cashFormat($SPcost)>>, unlocks options to mold sexuality// + <<else>> + <br> + $He already has a smart piercing! + <</if>> <</if>> <</if>> -<</if>> <<if $piercingLevel == 0>> <br> diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw index e808b0c15da5e64ea8e5ff9320e9c71bf7314b35..8efe26db319872fe67c36952cc6970bf06b43a92 100644 --- a/src/uncategorized/brothel.tw +++ b/src/uncategorized/brothel.tw @@ -195,7 +195,7 @@ Last week this <<set $lastWeeksCashProfits.brothelAds = $lastWeeksCashIncome.brothelAds + $lastWeeksCashExpenses.brothelAds>> <<if $lastWeeksCashProfits.brothelAds > 0>> made you an extra @@.green;<<print cashFormat($lastWeeksCashProfits.brothelAds)>>@@,<<if $brothelSlaves > 1>> as well as increasing business for your whores.<</if>> -<<elseif $lastWeeksCashProfits.brothelAds < 0>> +<<elseif $lastWeeksCashProfits.brothelAds < 0>> cost you @@.red;<<print cashFormat($lastWeeksCashProfits.brothelAds)>>@@,<<if $brothelSlaves > 1>> but still increased business for your whores.<</if>> <</if>> <<link "Manage brothel advertisements" "Brothel Advertisement">><<set $nextLink = passage(), $nextButton = "Back">><</link>> diff --git a/src/uncategorized/hgApplication.tw b/src/uncategorized/hgApplication.tw index fbb77f19184cfff22d7366a06712d4698a9cf387..60af1abc0d6deb1822492652f0459bdb650acf8f 100644 --- a/src/uncategorized/hgApplication.tw +++ b/src/uncategorized/hgApplication.tw @@ -299,30 +299,30 @@ In spare moments $he teaches $activeSlave.slaveName how to prostitute _himself2. <</if>> <<if ($activeSlave.devotion >= -20)>> -<<if ($activeSlave.attrKnown == 0)>> - <<set $activeSlave.attrKnown = 1>> - $HeadGirl.slaveName also investigates the slave's basic sexual orientation, finding that _he2 is - <<if ($activeSlave.attrXY <= 40)>> - @@.red;disgusted by men@@ - <<elseif ($activeSlave.attrXY <= 60)>> - indifferent to men - <<elseif ($activeSlave.attrXY <= 80)>> - @@.green;attracted to men@@ - <<else>> - @@.green;intensely attracted to men@@ - <</if>> - and - <<if ($activeSlave.attrXX <= 40)>> - @@.red;disgusted by women.@@ - <<elseif ($activeSlave.attrXX <= 60)>> - indifferent to women. - <<elseif ($activeSlave.attrXX <= 80)>> - @@.green;attracted to women.@@ - <<else>> - @@.green;intensely attracted to women.@@ + <<if ($activeSlave.attrKnown == 0)>> + <<set $activeSlave.attrKnown = 1>> + $HeadGirl.slaveName also investigates the slave's basic sexual orientation, finding that _he2 is + <<if ($activeSlave.attrXY <= 40)>> + @@.red;disgusted by men@@ + <<elseif ($activeSlave.attrXY <= 60)>> + indifferent to men + <<elseif ($activeSlave.attrXY <= 80)>> + @@.green;attracted to men@@ + <<else>> + @@.green;intensely attracted to men@@ + <</if>> + and + <<if ($activeSlave.attrXX <= 40)>> + @@.red;disgusted by women.@@ + <<elseif ($activeSlave.attrXX <= 60)>> + indifferent to women. + <<elseif ($activeSlave.attrXX <= 80)>> + @@.green;attracted to women.@@ + <<else>> + @@.green;intensely attracted to women.@@ + <</if>> <</if>> <</if>> -<</if>> <<if $activeSlave.devotion >= -20 && $activeSlave.genes == "XY" && $activeSlave.attrXY <= 35>> <<set _piercingForbidden = 0>> diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw index d5801e91dddb7c29412633b1f2b040a9c4783ccf..cbbaf58018ae29d3694935ec89439147de93e2d2 100644 --- a/src/uncategorized/lawCompliance.tw +++ b/src/uncategorized/lawCompliance.tw @@ -35,10 +35,10 @@ <<set $activeSlave.butt += random(1,2)>> <<set $activeSlave.lips = random(15,55)>> <<if $activeSlave.dick > 0>> - <<set $activeSlave.dick = random(4,7)>> + <<set $activeSlave.dick = random(4,7)>> <</if>> <<if $activeSlave.balls > 0>> - <<set $activeSlave.balls = random(4,7)>> + <<set $activeSlave.balls = random(4,7)>> <</if>> $He has been on powerful growth hormones for a long time, and has experienced growth in several areas as a result. <</if>> @@ -72,52 +72,52 @@ <</if>> <<if $arcologies[0].FSGenderFundamentalistSMR == 1>> <<if $activeSlave.dick > 0>> - <<set $activeSlave.balls = 0>> - <<set $activeSlave.scrotum = 0>> - <<set $activeSlave.boobs += random(0,2)*100>> - <<set $activeSlave.butt += random(0,1)>> - <<if $activeSlave.face < 95>> - <<set $activeSlave.face = Math.trunc($activeSlave.face+random(0,20),-100,100)>> - <</if>> - $His balls were removed as soon as $he was enslaved, and $he's been kept on powerful female hormones for long enough to have a general feminizing effect. + <<set $activeSlave.balls = 0>> + <<set $activeSlave.scrotum = 0>> + <<set $activeSlave.boobs += random(0,2)*100>> + <<set $activeSlave.butt += random(0,1)>> + <<if $activeSlave.face < 95>> + <<set $activeSlave.face = Math.trunc($activeSlave.face+random(0,20),-100,100)>> + <</if>> + $His balls were removed as soon as $he was enslaved, and $he's been kept on powerful female hormones for long enough to have a general feminizing effect. <</if>> <<elseif $arcologies[0].FSSupremacistSMR == 1>> <<if $activeSlave.dick > 0>> - <<if $activeSlave.race != $arcologies[0].FSSupremacistRace>> - <<set $activeSlave.balls = 0>> - <<set $activeSlave.scrotum = 0>> - $His balls were removed as soon as $he was enslaved to prevent $him from polluting fertile slaves with $his inferior semen. - <</if>> + <<if $activeSlave.race != $arcologies[0].FSSupremacistRace>> + <<set $activeSlave.balls = 0>> + <<set $activeSlave.scrotum = 0>> + $His balls were removed as soon as $he was enslaved to prevent $him from polluting fertile slaves with $his inferior semen. + <</if>> <</if>> <<elseif $arcologies[0].FSSubjugationistSMR == 1>> <<if $activeSlave.dick > 0>> - <<if $activeSlave.race == $arcologies[0].FSSubjugationistRace>> - <<set $activeSlave.balls = 0>> - <<set $activeSlave.scrotum = 0>> - $His balls were removed as soon as $he was enslaved to prevent $him from polluting fertile slaves with $his subhuman semen. - <</if>> + <<if $activeSlave.race == $arcologies[0].FSSubjugationistRace>> + <<set $activeSlave.balls = 0>> + <<set $activeSlave.scrotum = 0>> + $His balls were removed as soon as $he was enslaved to prevent $him from polluting fertile slaves with $his subhuman semen. + <</if>> <</if>> <</if>> <<if $arcologies[0].FSRestartSMR == 1>> <<if $activeSlave.balls > 0 || $activeSlave.ovaries > 0>> - <<set $activeSlave.preg = -2>> - <<set $activeSlave.pregType = 0>> - <<set $activeSlave.pregKnown = 0>> - <<set WombFlush($activeSlave)>> - <<run SetBellySize($activeSlave)>> - <<set $activeSlave.balls = 0>> - <<set $activeSlave.ovaries = 0>> - As a member of the lowest class,<<if $activeSlave.preg > 0>> $his pregnancy is immediately terminated, and<</if>> $he is promptly sterilized to prevent $him from passing on $his useless genes. + <<set $activeSlave.preg = -2>> + <<set $activeSlave.pregType = 0>> + <<set $activeSlave.pregKnown = 0>> + <<set WombFlush($activeSlave)>> + <<run SetBellySize($activeSlave)>> + <<set $activeSlave.balls = 0>> + <<set $activeSlave.ovaries = 0>> + As a member of the lowest class,<<if $activeSlave.preg > 0>> $his pregnancy is immediately terminated, and<</if>> $he is promptly sterilized to prevent $him from passing on $his useless genes. <</if>> <</if>> <<if $arcologies[0].FSPaternalistSMR == 1>> -<<if $activeSlave.devotion <= 20>> - While $he came through the slave markets, $he was treated with decency. $He has begun to wonder whether $he can @@.mediumaquamarine;get away with@@ being disobedient. - <<set $activeSlave.trust += 10>> -<<else>> - While $he came through the slave markets, $he was treated with decency. $He has begun to hope that $he can expect @@.mediumaquamarine;basic respect@@ despite being a sex slave. - <<set $activeSlave.trust += 10>> -<</if>> + <<if $activeSlave.devotion <= 20>> + While $he came through the slave markets, $he was treated with decency. $He has begun to wonder whether $he can @@.mediumaquamarine;get away with@@ being disobedient. + <<set $activeSlave.trust += 10>> + <<else>> + While $he came through the slave markets, $he was treated with decency. $He has begun to hope that $he can expect @@.mediumaquamarine;basic respect@@ despite being a sex slave. + <<set $activeSlave.trust += 10>> + <</if>> <</if>> <<if $arcologies[0].FSDegradationistSMR == 1>> $His current owners @@.gold;brutalized $him@@ before putting $him on sale, using clever methods to produce agony without seriously damaging $his health. @@ -149,60 +149,60 @@ <<set $activeSlave.backTat = 0>> <<set $activeSlave.stampTat = 0>> <<if $activeSlave.boobsImplant > 0>> - <<set $activeSlave.boobs -= $activeSlave.boobsImplant>> - <<set $activeSlave.boobsImplant = 0>> + <<set $activeSlave.boobs -= $activeSlave.boobsImplant>> + <<set $activeSlave.boobsImplant = 0>> <</if>> <<if $activeSlave.buttImplant > 0>> - <<set $activeSlave.butt -= $activeSlave.buttImplant>> - <<set $activeSlave.buttImplant = 0>> + <<set $activeSlave.butt -= $activeSlave.buttImplant>> + <<set $activeSlave.buttImplant = 0>> <</if>> <<if $activeSlave.lipsImplant > 0>> - <<set $activeSlave.lips -= $activeSlave.lipsImplant>> - <<set $activeSlave.lipsImplant = 0>> + <<set $activeSlave.lips -= $activeSlave.lipsImplant>> + <<set $activeSlave.lipsImplant = 0>> <</if>> <</if>> <<if $arcologies[0].FSTransformationFetishistSMR == 1>> In order to qualify for sale, $he has been kitted out with a basic set of breast, buttock, and lip implants. <<if $activeSlave.devotion <= 20>> - Being turned into an assembly line bimbo fills $him with @@.gold;fear@@ and @@.mediumorchid;disgust.@@ - <<set $activeSlave.trust -= 5>> - <<set $activeSlave.devotion -= 5>> + Being turned into an assembly line bimbo fills $him with @@.gold;fear@@ and @@.mediumorchid;disgust.@@ + <<set $activeSlave.trust -= 5>> + <<set $activeSlave.devotion -= 5>> <</if>> <<if $activeSlave.boobsImplant == 0>> - <<set $activeSlave.boobsImplant = 400>> - <<set $activeSlave.boobs += $activeSlave.boobsImplant>> + <<set $activeSlave.boobsImplant = 400>> + <<set $activeSlave.boobs += $activeSlave.boobsImplant>> <</if>> <<if $activeSlave.buttImplant == 0>> - <<set $activeSlave.buttImplant = 1>> - <<set $activeSlave.butt += $activeSlave.buttImplant>> + <<set $activeSlave.buttImplant = 1>> + <<set $activeSlave.butt += $activeSlave.buttImplant>> <</if>> <<if $activeSlave.lipsImplant == 0>> - <<set $activeSlave.lipsImplant = 10>> - <<set $activeSlave.lips += $activeSlave.lipsImplant>> + <<set $activeSlave.lipsImplant = 10>> + <<set $activeSlave.lips += $activeSlave.lipsImplant>> <</if>> <</if>> <<if $arcologies[0].FSYouthPreferentialistSMR == 1>> <<if $activeSlave.physicalAge > 35>> - $He was treated as a disposable old bitch in the slave pens, @@.gold;worrying $him.@@ - <<set $activeSlave.trust -= 5>> + $He was treated as a disposable old bitch in the slave pens, @@.gold;worrying $him.@@ + <<set $activeSlave.trust -= 5>> <<elseif $activeSlave.physicalAge <= 25>> - $He was treated reasonably well in the slave pens due to $his youth, @@.mediumaquamarine;reassuring $him.@@ - <<set $activeSlave.trust += 5>> + $He was treated reasonably well in the slave pens due to $his youth, @@.mediumaquamarine;reassuring $him.@@ + <<set $activeSlave.trust += 5>> <</if>> <</if>> <<if $arcologies[0].FSMaturityPreferentialistSMR == 1>> <<if $activeSlave.physicalAge > 35>> - $He was treated reasonably well in the slave pens due to $his maturity, @@.mediumaquamarine;reassuring $him.@@ - <<set $activeSlave.trust += 5>> + $He was treated reasonably well in the slave pens due to $his maturity, @@.mediumaquamarine;reassuring $him.@@ + <<set $activeSlave.trust += 5>> <<elseif $activeSlave.physicalAge <= 25>> - $He was treated as a disposable little slut in the slave pens, @@.gold;worrying $him.@@ - <<set $activeSlave.trust -= 5>> + $He was treated as a disposable little slut in the slave pens, @@.gold;worrying $him.@@ + <<set $activeSlave.trust -= 5>> <</if>> <</if>> <<if $arcologies[0].FSPastoralistSMR == 1>> <<if $activeSlave.lactation == 0>> - $He was implanted with permanent lactation drugs in order to qualify for sale, and was kept in the slave pens until $he could be put up on the block with dripping nipples. - <<set $activeSlave.lactation = 2, $activeSlave.lactationDuration = 2>> + $He was implanted with permanent lactation drugs in order to qualify for sale, and was kept in the slave pens until $he could be put up on the block with dripping nipples. + <<set $activeSlave.lactation = 2, $activeSlave.lactationDuration = 2>> <</if>> <</if>> <<if $arcologies[0].FSChattelReligionistSMR == 1>> @@ -435,83 +435,82 @@ <</if>> <<if $IntelligenceEugenicsSMR + $HeightEugenicsSMR + $FaceEugenicsSMR > 0>> -<<set _eugenicsMarketTest = 1>> -As soon as $he arrived in the slave market, $he was subjected to a battery of testing: -<<if $IntelligenceEugenicsSMR == 1>> - an intelligence test, - <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant <= 50>> - <<set _eugenicsMarketTest = 0>> + <<set _eugenicsMarketTest = 1>> + As soon as $he arrived in the slave market, $he was subjected to a battery of testing: + <<if $IntelligenceEugenicsSMR == 1>> + an intelligence test, + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant <= 50>> + <<set _eugenicsMarketTest = 0>> + <</if>> <</if>> -<</if>> -<<if $HeightEugenicsSMR == 1>> - rigorous height and bone measurements, - <<if $activeSlave.height < (Height.mean($activeSlave) + 15)>> - <<set _eugenicsMarketTest = 0>> + <<if $HeightEugenicsSMR == 1>> + rigorous height and bone measurements, + <<if $activeSlave.height < (Height.mean($activeSlave) + 15)>> + <<set _eugenicsMarketTest = 0>> + <</if>> <</if>> -<</if>> -<<if $FaceEugenicsSMR == 1>> - strict judgments of $his facial attractiveness, - <<if $activeSlave.face < 40>> - <<set _eugenicsMarketTest = 0>> + <<if $FaceEugenicsSMR == 1>> + strict judgments of $his facial attractiveness, + <<if $activeSlave.face < 40>> + <<set _eugenicsMarketTest = 0>> + <</if>> <</if>> -<</if>> -a physical exam, and more. -<<if _eugenicsMarketTest == 0>> - $He failed, and only then learned that by failing $he placed $himself under the merciless dictates of eugenic theory. - <<if $activeSlave.balls > 0 && (isFertile($activeSlave) || $activeSlave.preg > 0)>> - $His balls were promptly - <<if $seeExtreme == 1>> - removed - <<set $activeSlave.balls = 0>> - <<set $activeSlave.scrotum = 0>> + a physical exam, and more. + <<if _eugenicsMarketTest == 0>> + $He failed, and only then learned that by failing $he placed $himself under the merciless dictates of eugenic theory. + <<if $activeSlave.balls > 0 && (isFertile($activeSlave) || $activeSlave.preg > 0)>> + $His balls were promptly + <<if $seeExtreme == 1>> + removed + <<set $activeSlave.balls = 0>> + <<set $activeSlave.scrotum = 0>> + <<else>> + flooded with chemicals + <<set $activeSlave.ballType = "sterile">> + <</if>> + to prevent $him from passing on $his inferior genes, @@.mediumorchid;infuriating@@ and @@.gold;terrifying@@ $him. + Furthermore, $his <<if $activeSlave.preg > 0>>pregnancy was terminated and afterwards $his <</if>>tubes were promptly tied to prevent $him from passing on $his inferior genes, @@.mediumorchid;saddening@@ and @@.gold;frightening@@ $him. + <<set $activeSlave.preg = -2>> + <<set $activeSlave.pregType = 0>> + <<set $activeSlave.pregKnown = 0>> + <<set WombFlush($activeSlave)>> + <<run SetBellySize($activeSlave)>> + <<set $activeSlave.devotion -= 30>> + <<set $activeSlave.trust -= 30>> + <<elseif $activeSlave.balls > 0>> + $His balls were promptly + <<if $seeExtreme == 1>> + removed + <<set $activeSlave.balls = 0>> + <<set $activeSlave.scrotum = 0>> + <<else>> + flooded with chemicals + <<set $activeSlave.ballType = "sterile">> + <</if>> + to prevent $him from passing on $his inferior genes, @@.mediumorchid;infuriating@@ and @@.gold;terrifying@@ $him. + <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> + <<elseif (isFertile($activeSlave) || $activeSlave.preg > 0)>> + $His <<if $activeSlave.preg > 0>>pregnancy was terminated and afterwards $his <</if>>tubes were promptly tied to prevent $him from passing on $his inferior genes, @@.mediumorchid;saddening@@ and @@.gold;frightening@@ $him. + <<set $activeSlave.preg = -2>> + <<set $activeSlave.pregType = 0>> + <<set $activeSlave.pregKnown = 0>> + <<set WombFlush($activeSlave)>> + <<run SetBellySize($activeSlave)>> + <<set $activeSlave.devotion -= 10>> + <<set $activeSlave.trust -= 10>> <<else>> - flooded with chemicals - <<set $activeSlave.ballType = "sterile">> + Fortunately for $him, $he was already incapable of passing on $his inferior genes. <</if>> - to prevent $him from passing on $his inferior genes, @@.mediumorchid;infuriating@@ and @@.gold;terrifying@@ $him. - Furthermore, $his <<if $activeSlave.preg > 0>>pregnancy was terminated and afterwards $his <</if>>tubes were promptly tied to prevent $him from passing on $his inferior genes, @@.mediumorchid;saddening@@ and @@.gold;frightening@@ $him. - <<set $activeSlave.preg = -2>> - <<set $activeSlave.pregType = 0>> - <<set $activeSlave.pregKnown = 0>> - <<set WombFlush($activeSlave)>> - <<run SetBellySize($activeSlave)>> - <<set $activeSlave.devotion -= 30>> - <<set $activeSlave.trust -= 30>> - <<elseif $activeSlave.balls > 0>> - $His balls were promptly - <<if $seeExtreme == 1>> - removed - <<set $activeSlave.balls = 0>> - <<set $activeSlave.scrotum = 0>> + <<else>> + $He passed, and only then learned that passing marked $him as fit to pass on $his genes, should $his owners decide to breed $him. + <<if $activeSlave.balls > 0 && (isFertile($activeSlave) || $activeSlave.preg > 0)>> + $His relief that $he won't have $his balls cut off and $his tubes tied is mixed with fear at being introduced to your society in this way. + <<elseif (isFertile($activeSlave) || $activeSlave.preg > 0)>> + $His relief that $he won't have $his tubes tied is mixed with fear at being introduced to your society in this way. <<else>> - flooded with chemicals - <<set $activeSlave.ballType = "sterile">> + This is merely confusing to $him, since $he isn't able to reproduce as it is. Of course, $he doesn't know that you're quite capable of changing that. <</if>> - to prevent $him from passing on $his inferior genes, @@.mediumorchid;infuriating@@ and @@.gold;terrifying@@ $him. - <<set $activeSlave.devotion -= 20, $activeSlave.trust -= 20>> - <<elseif (isFertile($activeSlave) || $activeSlave.preg > 0)>> - $His <<if $activeSlave.preg > 0>>pregnancy was terminated and afterwards $his <</if>>tubes were promptly tied to prevent $him from passing on $his inferior genes, @@.mediumorchid;saddening@@ and @@.gold;frightening@@ $him. - <<set $activeSlave.preg = -2>> - <<set $activeSlave.pregType = 0>> - <<set $activeSlave.pregKnown = 0>> - <<set WombFlush($activeSlave)>> - <<run SetBellySize($activeSlave)>> - <<set $activeSlave.devotion -= 10>> - <<set $activeSlave.trust -= 10>> - <<else>> - Fortunately for $him, $he was already incapable of passing on $his inferior genes. - <</if>> -<<else>> - $He passed, and only then learned that passing marked $him as fit to pass on $his genes, should $his owners decide to breed $him. - <<if $activeSlave.balls > 0 && (isFertile($activeSlave) || $activeSlave.preg > 0)>> - $His relief that $he won't have $his balls cut off and $his tubes tied is mixed with fear at being introduced to your society in this way. - <<elseif (isFertile($activeSlave) || $activeSlave.preg > 0)>> - $His relief that $he won't have $his tubes tied is mixed with fear at being introduced to your society in this way. - <<else>> - This is merely confusing to $him, since $he isn't able to reproduce as it is. Of course, $he doesn't know that you're quite capable of changing that. <</if>> <</if>> -<</if>> <<= checkForGingering()>> /* may store a backup of $activeSlave and make temporary changes; call removeGingering() to retrieve backup before making changes to $activeSlave */ - diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 2ebbf2a95f89830a8b62a380a6035fd3f454d952..a03ba55433ce1cf5b35e9bb9a1812043dd6196f2 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -1257,7 +1257,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</if>> <</if>> <br><br> - Whenever you feel able, you drain your balls into $his <<if $activeSlave.mpreg == 1>>ass<<else>>cunt<</if>>, only releasing $him for other duties when scans verify a fertilized ovum. + Whenever you feel able, you drain your balls into $his <<if $activeSlave.mpreg == 1>>ass<<else>>cunt<</if>>, only releasing $him for other duties when scans verify a fertilized ovum. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -50>> $He didn't properly understand the scans, so $he just thought it was bound, forced sex; $he won't realize what happened for some weeks at least. <<elseif $activeSlave.fetish == "pregnancy">> @@ -1265,8 +1265,8 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<else>> $He wasn't sure what this was all about, but $he has $his suspicions. <</if>> - - + + <<if $activeSlave.mpreg == 1>> <<= AnalVCheck()>> <<else>> diff --git a/src/uncategorized/pCoupAttempt.tw b/src/uncategorized/pCoupAttempt.tw index 24788e6e0fe12203d88cbfd2b245ab0e1300c30c..50b9d7b7ff6118d57a5a94a953b37bbe7787cf32 100644 --- a/src/uncategorized/pCoupAttempt.tw +++ b/src/uncategorized/pCoupAttempt.tw @@ -68,17 +68,11 @@ You are awakened in the middle of the night by a jolt that shakes the entire arc <<set $oneTimeDisableDisability = 1>> <<for _pca = 0; _pca < 8; _pca++>> <<if random(0,99) < $seeDicks>> - <<set $activeSlaveOneTimeMinAge = 16>> - <<set $activeSlaveOneTimeMaxAge = 32>> - <<set $oneTimeDisableDisability = 1>> <<include "Generate XY Slave">> <<set $activeSlave.weight = random(-20,30)>> <<set $activeSlave.muscles = random(20,80)>> <<set $activeSlave.waist = random(10,80)>> <<else>> - <<set $activeSlaveOneTimeMinAge = 16>> - <<set $activeSlaveOneTimeMaxAge = 32>> - <<set $oneTimeDisableDisability = 1>> <<include "Generate XX Slave">> <<set $activeSlave.weight = random(-50,30)>> <<set $activeSlave.muscles = random(0,80)>> diff --git a/src/uncategorized/personalAssistantOptions.tw b/src/uncategorized/personalAssistantOptions.tw index 94ab779deb786ace0c23e6b1fc3b1cce15d6085b..658cc7394ae91650ea3904c83e896029348b2fb7 100644 --- a/src/uncategorized/personalAssistantOptions.tw +++ b/src/uncategorized/personalAssistantOptions.tw @@ -450,24 +450,24 @@ It has no impact on public opinion. <<if $seePreg != 0>> <<if $assistantAppearance != "preggololi" && $fertilityAge < 13 && $minimumSlaveAge < 13>> [[Preggololi|Personal assistant options][$assistantAppearance = "preggololi"]] <<if $PAPublic == 1>> - <<set _seed = []>> - <<if $arcologies[0].FSGenderFundamentalist != "unset">> <<set _seed.push("gender fundamentalism")>> <</if>> - <<if $arcologies[0].FSPaternalist != "unset">> <<set _seed.push("paternalism")>> <</if>> - <<if $arcologies[0].FSDegradationist != "unset">> <<set _seed.push("degradationism")>> <</if>> - <<if $arcologies[0].FSYouthPreferentialist != "unset">> <<set _seed.push("youth preferentialism")>> <</if>> - <<if $arcologies[0].FSRepopulationFocus != "unset">> <<set _seed.push("repopulationism")>> <</if>> - <<if $arcologies[0].FSHedonisticDecadence != "unset">> <<set _seed.push("hedonistic decadence")>> <</if>> - <<if _seed.length > 0>> - <<set _desc = "">> - <<for _i = 0; _i < _seed.length; _i++>> - <<set _desc = (_desc + _seed[_i])>> - <<if (_i < _seed.length-2)>> <<set _desc = (_desc + ", ")>> - <<elseif (_seed.length > 2) && (_i == _seed.length-2)>> <<set _desc = (_desc + ", and ")>> - <<elseif (_seed.length == 2) && (_i == 0)>> <<set _desc = (_desc + " and ")>> - <</if>> - <</for>> - A good emblem for _desc - <</if>> + <<set _seed = []>> + <<if $arcologies[0].FSGenderFundamentalist != "unset">> <<set _seed.push("gender fundamentalism")>> <</if>> + <<if $arcologies[0].FSPaternalist != "unset">> <<set _seed.push("paternalism")>> <</if>> + <<if $arcologies[0].FSDegradationist != "unset">> <<set _seed.push("degradationism")>> <</if>> + <<if $arcologies[0].FSYouthPreferentialist != "unset">> <<set _seed.push("youth preferentialism")>> <</if>> + <<if $arcologies[0].FSRepopulationFocus != "unset">> <<set _seed.push("repopulationism")>> <</if>> + <<if $arcologies[0].FSHedonisticDecadence != "unset">> <<set _seed.push("hedonistic decadence")>> <</if>> + <<if _seed.length > 0>> + <<set _desc = "">> + <<for _i = 0; _i < _seed.length; _i++>> + <<set _desc = (_desc + _seed[_i])>> + <<if (_i < _seed.length-2)>> <<set _desc = (_desc + ", ")>> + <<elseif (_seed.length > 2) && (_i == _seed.length-2)>> <<set _desc = (_desc + ", and ")>> + <<elseif (_seed.length == 2) && (_i == 0)>> <<set _desc = (_desc + " and ")>> + <</if>> + <</for>> + A good emblem for _desc + <</if>> <</if>> <br> <</if>> diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw index 53450b58a32afb905469e274835054a6d6fd921e..c672020b8f3d00626a2171285d1a5c45c3a6eee7 100644 --- a/src/uncategorized/prestigiousSlave.tw +++ b/src/uncategorized/prestigiousSlave.tw @@ -704,7 +704,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.anus = 3>> <<set $activeSlave.dick = 1>> <<if $activeSlave.foreskin > 0>><<set $activeSlave.foreskin = $activeSlave.dick>><</if>> -<<if $activeSlave.balls > 0>><<set $activeSlave.scrotum = $activeSlave.balls>><</if>> + <<if $activeSlave.balls > 0>><<set $activeSlave.scrotum = $activeSlave.balls>><</if>> <<set $activeSlave.balls = 0>> <<set $activeSlave.weight = 0>> <<set $activeSlave.clitPiercing = 2>> @@ -797,7 +797,6 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<case "d princess">> <<set $activeSlaveOneTimeMaxAge = 18>> <<set $oneTimeDisableDisability = 1>> - <<set $oneTimeDisableDisability = 1>> <<include "Generate XY Slave">> <<set $activeSlave.origin = "You bought her at auction.">> <<set $activeSlave.prestige = 3>> diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw index a4e695dc1be235f66bcc389219a4245edf0a8eb5..70f19e26ae13f4bd3c1a05a42704ee06cf83e186 100644 --- a/src/uncategorized/reBoomerang.tw +++ b/src/uncategorized/reBoomerang.tw @@ -126,7 +126,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against <</if>> <<run SetBellySize($activeSlave)>> <<case "porn studio">> - "They're crazy. At fir<<s>>t it wa<<s>> all the <<s>>ame, ju<<s>>t make more <<s>>mut and reap the atten<<t>>ion, but <<s>>oon they <<s>>tarted wanting me to do more and more e<<x>>treme <<sh>>it." $He gags at the thought. "While they were running a train on me, I overheard them talking... <<S>>aying they wanted to end my career in an unforgettable e<<x>>perien<<c>>e, and given what they've been having me do, I ran." You suspected the porn studio you sold $him to would try to spice up $his content to attract more views, but you never bothered to think of how far they would take it. + "They're crazy. At fir<<s>>t it wa<<s>> all the <<s>>ame, ju<<s>>t make more <<s>>mut and reap the atten<<t>>ion, but <<s>>oon they <<s>>tarted wanting me to do more and more e<<x>>treme <<sh>>it." $He gags at the thought. "While they were running a train on me, I <<if canHear($activeSlave)>>overheard them talking<<elseif canSee($activeSlave)>>caught a glimp<<s>>e of <<s>>ome memo between the bo<<ss>>e<<s>><<else>>felt the word<<s>> one of them wrote on my <<s>>kin<</if>>... <<s>>aying they wanted to end my career in an 'unforgettable e<<x>>perien<<c>>e', and given what they'd been having me do, I ran." You suspected the porn studio you sold $him to would try to spice up $his content to attract more views, but you never bothered to think of how far they would take it. <<set $activeSlave.anus = 4>> <<if $activeSlave.vagina > -1 && $activeSlave.vagina < 4>> <<set $activeSlave.vagina = 4>> diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 99c4b4f90819af1508590d1331845f200a6f7769..f97825fcd4c77da4edc704cf93f0e7711e425b21 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -72,48 +72,13 @@ <<set $contractCost = 2000>> <<set $oneTimeDisableDisability = 1>> -<<include "Generate New Slave">> -<<if $activeSlave.race == $arcologies[0].FSSupremacistRace>> - <<if $arcologies[0].FSSubjugationistRace != 0>> - <<set $activeSlave.race = $arcologies[0].FSSubjugationistRace>> - <<elseif $arcologies[0].FSSupremacistRace != "mixed race">> - <<set $activeSlave.race = "mixed race">> - <<else>> - <<set $activeSlave.race = "black">> - <</if>> -<</if>> -<<if $activeSlave.race == "black">> - <<set $activeSlave.skin = either("black", "brown", "dark brown")>> - <<set $activeSlave.hColor = either("black", "black", "black", "brown")>> - <<set $activeSlave.hStyle = either("shoulder-length", "short", "very short", "shaved bald", "crinkled")>> -<<elseif $activeSlave.race == "white">> - <<set $activeSlave.skin = either("pale", "light", "fair")>> - <<set $activeSlave.eyeColor = either("blue", "brown", "green")>> - <<set $activeSlave.hColor = either("black", "blonde", "red", "brown")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif $activeSlave.race == "latina">> - <<set $activeSlave.skin = either("light olive", "brown", "dark brown", "tanned", "dark olive")>> - <<set $activeSlave.hColor = either("black", "black", "brown", "brown")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif $activeSlave.race == "asian">> - <<set $activeSlave.skin = either("light olive", "dark olive", "light")>> - <<set $activeSlave.hColor = either("black")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif ($activeSlave.race == "indo-aryan") || ($activeSlave.race == "malay") || ($activeSlave.race == "pacific islander") || ($activeSlave.race == "amerindian")>> - <<set $activeSlave.skin = either("pale", "dark", "light")>> - <<set $activeSlave.hColor = either("black")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif ($activeSlave.race == "middle eastern") || ($activeSlave.race == "semitic") || ($activeSlave.race == "southern european")>> - <<set $activeSlave.skin = either("light olive", "dark olive", "tanned")>> - <<set $activeSlave.hColor = either("black")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> +<<if $arcologies[0].FSSubjugationistRace != 0>>> + <<set $fixedRace = $arcologies[0].FSSubjugationistRace>> +<<elseif $arcologies[0].FSSubjugationistLawME == 1>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSupremacistRace)>> + <<set $fixedRace = _races.random()>> <</if>> -<<set $activeSlave.origRace = $activeSlave.race>> -<<set $activeSlave.origSkin = $activeSlave.skin>> -<<set $activeSlave.origEye = $activeSlave.eyeColor>> -<<set $activeSlave.origHColor = $activeSlave.hColor>> -<<set $activeSlave.pubicHColor = $activeSlave.hColor>> -<<set $activeSlave.underArmHColor = $activeSlave.hColor>> +<<include "Generate New Slave">> <<set $activeSlave.origin = "She was captured and enslaved in a conflict zone and fenced to you by a mercenary group.">> <<set $activeSlave.devotion -= 40>> <<set $activeSlave.trust = random(-45,-25)>> @@ -124,48 +89,13 @@ <<set $contractCost = 2000>> <<set $oneTimeDisableDisability = 1>> -<<include "Generate New Slave">> -<<if $activeSlave.race == $arcologies[0].FSSupremacistRace>> - <<if $arcologies[0].FSSubjugationistRace != 0>> - <<set $activeSlave.race = $arcologies[0].FSSubjugationistRace>> - <<elseif $arcologies[0].FSSupremacistRace != "mixed race">> - <<set $activeSlave.race = "mixed race">> - <<else>> - <<set $activeSlave.race = "black">> - <</if>> -<</if>> -<<if $activeSlave.race == "black">> - <<set $activeSlave.skin = either("black", "brown", "dark brown")>> - <<set $activeSlave.hColor = either("black", "black", "black", "brown")>> - <<set $activeSlave.hStyle = either("shoulder-length", "short", "very short", "shaved bald", "crinkled")>> -<<elseif $activeSlave.race == "white">> - <<set $activeSlave.skin = either("pale", "tanned", "fair")>> - <<set $activeSlave.eyeColor = either("blue", "brown", "green")>> - <<set $activeSlave.hColor = either("black", "blonde", "red", "brown")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif $activeSlave.race == "latina">> - <<set $activeSlave.skin = either("light olive", "brown", "dark brown", "tanned", "dark olive")>> - <<set $activeSlave.hColor = either("black", "black", "brown", "brown")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif $activeSlave.race == "asian">> - <<set $activeSlave.skin = either("pale", "dark", "light")>> - <<set $activeSlave.hColor = either("black")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif ($activeSlave.race == "indo-aryan") || ($activeSlave.race == "malay") || ($activeSlave.race == "pacific islander") || ($activeSlave.race == "amerindian")>> - <<set $activeSlave.skin = either("pale", "dark", "light")>> - <<set $activeSlave.hColor = either("black")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> -<<elseif ($activeSlave.race == "middle eastern") || ($activeSlave.race == "semitic") || ($activeSlave.race == "southern european")>> - <<set $activeSlave.skin = either("pale", "dark", "light")>> - <<set $activeSlave.hColor = either("black")>> - <<set $activeSlave.hStyle = either("ass-length", "long", "shoulder-length", "short", "very short", "shaved bald")>> +<<if $arcologies[0].FSSubjugationistRace != 0>>> + <<set $fixedRace = $arcologies[0].FSSubjugationistRace>> +<<elseif $arcologies[0].FSSubjugationistLawME == 1>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSupremacistRace)>> + <<set $fixedRace = _races.random()>> <</if>> -<<set $activeSlave.origRace = $activeSlave.race>> -<<set $activeSlave.origSkin = $activeSlave.skin>> -<<set $activeSlave.origEye = $activeSlave.eyeColor>> -<<set $activeSlave.origHColor = $activeSlave.hColor>> -<<set $activeSlave.pubicHColor = $activeSlave.hColor>> -<<set $activeSlave.underArmHColor = $activeSlave.hColor>> +<<include "Generate New Slave">> <<set $activeSlave.origin = "She made the mistake of marrying into a $arcologies[0].FSSupremacistRace neighborhood and was kidnapped then sold to you.">> <<set $activeSlave.devotion -= 40>> <<set $activeSlave.trust = random(-45,-25)>> @@ -461,8 +391,8 @@ <<set $activeSlave.weight = random(-80,-20)>> <<set $activeSlave.boobs -= 50*random(1,2)>> <<set $activeSlave.butt -= random(0,1)>> -<<set $activeSlave.behavioralFlaw = either("odd", "anorexic", "gluttonous")>> -<<set $activeSlave.sexualFlaw = either("repressed", "apathetic")>> +<<set $activeSlave.behavioralFlaw = either("anorexic", "gluttonous", "odd")>> +<<set $activeSlave.sexualFlaw = either("apathetic", "repressed")>> <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> @@ -551,7 +481,7 @@ <<set $activeSlave.health = random(-80,-70)>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> -<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "anorexic", "odd")>> +<<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>> <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> @@ -579,7 +509,7 @@ <<set $activeSlave.trust = random(-45,-25)>> <<set $activeSlave.health = random(-80,-70)>> <<set $activeSlave.pubicHStyle = "waxed">> -<<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "anorexic", "odd")>> +<<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "odd")>> <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> @@ -1009,7 +939,7 @@ <<set $activeSlave.teeth = "normal">> <</if>> <<set $activeSlave.behavioralFlaw = either("gluttonous", "liberated")>> -<<set $activeSlave.sexualFlaw = either("none", "none", "idealistic", "shamefast", "apathetic")>> +<<set $activeSlave.sexualFlaw = either("apathetic", "idealistic", "none", "none", "shamefast")>> <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> @@ -1066,6 +996,7 @@ <</switch>> <<setLocalPronouns $activeSlave>> +<<run Enunciate($activeSlave)>> <<setAssistantPronouns>> <<switch $FSAcquisitionEvents>> @@ -1073,13 +1004,13 @@ 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 != 0>>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 != 0>>sir<<else>>ma'am<</if>>. It seems like a better life than getting fucked all the time." +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 != 0>><<s>>ir<<else>>ma'am<</if>>. But," and $he brings $his sizable chest into view, "I've got pretty big boob<<s>>, and I <<s>>tarted giving milk ye<<s>>terday. I wa<<s>> <<s>>earching the net, and I <<s>>aw that you milk women, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. It <<s>>eem<<s>> 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. _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 != 0>>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 != 0>>sir<<else>>ma'am<</if>>. I can't do anything else to make a living." +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 hu<<s>>band left me," $he says through tears. "I know I'm older than mo<<s>>t, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. But," $he says as $he brings $his motherly chest into view, "I've <<s>>till got pretty big brea<<s>>t<<s>>, and they <<s>>till give milk. One of my friend<<s>> told me that you milk women, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. I can't do anything el<<s>>e to make a living." <<case "Supremacist">> @@ -1095,7 +1026,7 @@ It seems that in a man in their town made the mistake of marrying a $woman of an <<case "Subjugationist">> -Your security drones break up a minor disturbance on the lowest, poorest levels of the arcology without needing your direction, or indeed without even informing you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> is good enough at filtering incidents down to what you need to know that you typically leave minor things to her discretion. This time $assistantName only informs you once it's apparent that that brawl left someone injured and unconscious. +Your security drones break up a minor disturbance on the lowest, poorest levels of the arcology without needing your direction, or indeed without even informing you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> is good enough at filtering incidents down to what you need to know that you typically leave minor things to _hisA discretion. This time $assistantName only informs you once it's apparent that that brawl left someone injured and unconscious. <br><br> It seems the violence was racially motivated. The $arcologies[0].FSSubjugationistRace victim was publicly sodomized and left bruised and bleeding, $his clothes torn off, beaten into insensibility, with anti-$arcologies[0].FSSubjugationistRace slogans written crudely across $his $activeSlave.skin skin. It seems $he came into the arcology despite the strong penalties for free $arcologies[0].FSSubjugationistRace subhumans found here. You can easily enslave $him in return for $his medical costs, though no one is likely to object to your enslaving one of $his kind, whatever the situation. @@ -1109,13 +1040,13 @@ The caller is $arcologies[0].FSSubjugationistRace, and a particularly self-hatin 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." +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 <<s>>lave ha<<s>> to be better than being a <<s>>ubhuman here," $he says. "Being your <<s>>e<<x>> <<s>>lave i<<s>> more a<<cc>>epted in your <<c>>ity than being me i<<s>> 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. _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." +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 a<<s>> a <<s>>ubhuman here," $he says. "Being your <<s>>e<<x>> slave i<<s>> more a<<cc>>epted in your <<c>>ity than being me i<<s>> here." <<case "Gender Fundamentalist">> @@ -1133,19 +1064,19 @@ Having $him disappear discreetly into $arcologies[0].name would be a convenient 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 treat<<s>> <<s>>lave<<s>>," $he says. "And, well, I don't know how clo<<s>>ely you watch the old world from where you are, but it'<<s>> pretty bad. Being <<s>>mart and driven out here doe<<s>>n't alway<<s>> keep you fed and clothed, or even alive. I'm <<s>>mart and driven, and I under<<s>>tand 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. _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." +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 treat<<s>> <<s>>lave<<s>>," $he says. "And, well, I don't know how clo<<s>>ely you watch the old world from where you are, but it'<<s>> pretty bad. <<S>>aving your whole life doe<<s>>n't alway<<s>> keep you fed and clothed, or even alive. I never had much and now I have even le<<ss>>, and I'd rather live a<<s>> your <<s>>lave in $arcologies[0].name than on the <<s>>treet<<s>> 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. _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 _womanP to break the cunt." +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 _himA 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 _womanP to break the cunt." <<case "Degradationist Two">> @@ -1157,13 +1088,13 @@ In lieu of a face, a plain page of mostly text and a scant few pictures fills th 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, <<= properTitle()>>. 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." +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 la<<s>>t few ¤ here, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. The owner here, he'<<s>> planning to en<<s>>lave me later today. I ju<<s>>t know it. He fill<<s>> hi<<s>> <<s>>lave<<s>> up with <<s>>ilicone until they look like fucking Barbie doll<<s>>." $He shivers fearfully. "You don't do that, right? If I have to be a fucktoy, I don't want to be cut up fir<<s>>t." <<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. _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 != 0>>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 != 0>>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." +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 pa<<s>>t my majority," $he says happily. "I know I'm not that pretty, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. But," and $he pulls the camera back to reveal $his fully nude body, "I've never had any pla<<s>>tic in me, the <<s>>chool couldn't afford it anyway<<s>>. I wa<<s>> <<s>>earching the net, and I <<s>>aw that you like women without <<s>>urgery, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. If I'm to be owned, I'd like it to be by <<s>>omeone like you who won't cut me open." <<case "Transformation Fetishist">> @@ -1181,25 +1112,25 @@ The call comes in from an unusually well-to-do area. It appears that an aristocr 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, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>, I'd be happy to avoid too many implants. I understand $arcologies[0].name is a fine place for someone in my situation." +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 <<= $girl>>s half $his age. $He knows all this $himself, and <<say>>s, "I hear you appre<<c>>iate a <<s>>lender $woman; if I'm going down into <<s>>lavery, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>, I'd be happy to avoid too many implant<<s>>. I under<<s>>tand $arcologies[0].name i<<s>> a fine pla<<c>>e for <<s>>omeone in my <<s>>ituation." <<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. _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 != 0>>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 != 0>>sir<<else>>ma'am<</if>>. I should have never sold myself to that bastard." +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 want<<s>> to turn me into <<s>>ome <<s>>ort of bimbo," $he says through tears. "I found all the <<s>>urgery bro<<ch>>ure<<s>> that he hid, <<if $PC.title != 0>><<s>>ir<<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 pla<<s>>tic. One of my friend<<s>> told me that you care about a $woman with a good figure, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. I <<sh>>ould have never <<s>>old my<<s>>elf to that ba<<s>>tard." <<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. _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. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, 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?" +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. "<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I ju<<s>>t turned 19. Where I'm from, that mean<<s>> I'm very likely to be en<<s>>laved one way or another. <<S>>o, I've been taking off-market hormone<<s>> for a couple of year<<s>> to rai<<s>>e my<<s>>elf out of the gutter a<<s>> far a<<s>> who might take me. I hear life i<<s>> better if you're a valuable <<s>>lave." $He leans into the camera, displaying a solid acre of cleavage. "Can I be your valuable <<s>>lave?" <<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. _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. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, 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?" +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. "<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I'm not a young $woman. Where I'm from, being thi<<s>> old and unmarried mean<<s>> I'm very likely to be en<<s>>laved one way or another. But I've alway<<s>> had big brea<<s>>t<<s>>. Well, big everything really. I hear life i<<s>> better if you're a plu<<sh>> <<s>>lave." $He leans into the camera, displaying a solid acre of cleavage. "Can I be your plu<<sh>> <<s>>lave?" <<case "Youth Preferentialist">> @@ -1223,7 +1154,7 @@ And this one is a rare one indeed. It's a personal file, and you suppress the ur 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, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>, I hope for your sake that you know how to treat a $woman of my caliber." +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 <<= $girl>>s 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 appre<<c>>iate a mature $woman; if I'm going down into <<s>>lavery, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>, I hope for your <<s>>ake that you know how to treat a $woman of my caliber." <<case "Physical Idealist">> @@ -1239,29 +1170,28 @@ And this one is a rare one indeed. It's a personal file, and you suppress the ur <<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. _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." +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 reali<<z>>ed that, I <<s>>tarted getting pier<<c>>ing<<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. _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. +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 e<<x>>pand my hori<<z>>on<<s>> and I heard how much fun people have in your arcology. I'm your<<s>> to e<<x>>periment 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. _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!" +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 wi<<sh>>e<<s>> to pre<<s>>erve humanity'<<s>> pla<<c>>e in the future," $he says. "And, well, I don't know how clo<<s>>ely you watch the old world from where you are, but thing<<s>> are falling apart. Humanity'<<s>> future <<s>>urely re<<s>>t<<s>> in the arcologie<<s>>, and you <<s>>eem to be the only one who'<<s>> focu<<s>>ing on that future... A<<s>> <<s>>uch, I want to become a mother to the future of humanity! Plea<<s>>e, take me in and knock me up! I'll carry a<<s>> many children a<<s>> 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. _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..." +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 alway<<s>> dreamed of being a mother, but I wa<<s>> born <<s>>terile... I heard rumor<<s>> that $arcologies[0].name had cure<<s>> 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 re<<s>>t of my life wa<<s>> devoted to motherhood... I'd like that..." <<case "Eugenics">> @@ -1273,13 +1203,13 @@ This one is most mundane, a student with top grades wanting to be part of the to 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." +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, <<s>>o I don't even want you to con<<s>>ider me more than ju<<s>>t a <<s>>lave. With the way thing<<s>> are going, I figured ju<<s>>t getting it over with i<<s>> 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. _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 != 0>>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." +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 != 0>><<S>>ir<<else>>Ma'am<</if>>," $he says, "plea<<s>>e a<<cc>>ept me a<<s>> your <<s>>lave. I am a wretched whore, filled with <<s>>in, and freedom i<<s>> a burden to me. Plea<<s>>e free me from thi<<s>> torment and take me into your <<s>>ervi<<c>>e." <<case "Chattel Religionist Two">> @@ -1309,13 +1239,13 @@ The caller is a young $woman who struggles to stop $himself from peppering $his 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." +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 <<s>>lavery, for me. I am no longer a $girl, but I can make <<s>>ome claim to beauty. I know many <<s>>torie<<s>> and can tell them cleverly; I can <<s>>ing and dan<<c>>e well. I know you are not looking for a <<Sch>>ehera<<z>>ade, but I could play her part. Nor am I naïve; I know the <<S>>ultan enjoyed her body a<<s>> well a<<s>> her wit, and I am not un<<s>>killed in tho<<s>>e re<<s>>pect<<s>>, either." $He looks you straight in the eye. "May I come into your harem? I will do my be<<s>>t 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. _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. +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 <<s>>lave." There is a flash of bitter amusement at the absurd statement, but $he continues, "Bu<<s>>ine<<ss>> <<c>>ircum<<s>>tan<<c>>e<<s>> make it inevitable. I have con<<s>>iderable <<s>>kill<<s>> and e<<x>>perien<<c>>e, and it i<<s>> my under<<s>>tanding that you value <<s>>uch thing<<s>>." $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. <</switch>> @@ -1365,25 +1295,25 @@ The call comes in from an office, and you suppress the urge to check whether $as <<case "Gender Fundamentalist">> When $he arrives, $he is the very picture of a lost and very pregnant young waif. $He clearly feels some hope at leaving $his traditionalist home for a more modern society, but $he has just as clearly heard enough about the Free Cities to know that $he's likely to buy $his presence here through long years of sexual labor. $He sighs with relief at getting off $his feet when the enslavement process finally allows $him to sit. <<case "Gender Fundamentalist Two">> - When $he arrives, $he is the very picture of a distraught and very pregnant mature woman. $He clearly feels some resentment at $his traditionalist home and family for selling $him into slavery, but $he has just as clearly heard enough about the Free Cities to know that $he's likely traded one form of marginalization for another. + When $he arrives, $he is the very picture of a distraught and very pregnant mature $woman. $He clearly feels some resentment at $his traditionalist home and family for selling $him into slavery, but $he has just as clearly heard enough about the Free Cities to know that $he's likely traded one form of marginalization for another. <<case "Paternalist">> $He speaks to you as a free $woman throughout the enslavement process, but as soon as it is completed, $he stops and waits for instruction before talking. $He does not look directly at your face, but keeps $his gaze lower than that, and stands expectant and ready for commands. You are reminded of $his intelligence by $his precisely correct behavior for a new slave, even before you give any kind of direction. <<case "Paternalist Two">> $He speaks to you as a free $woman throughout the enslavement process, but as soon as it is completed, $he stops and waits for instruction before talking. $He may not have had many prospects in $his life back home, but if $he remains this obedient $he'll fit right in here in the Free Cities. <<case "Degradationist">> - 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 blurts out, "Whatever that fucker told you, it isn't true. I'll be your little bitch bimbo, whatever you want. Just don't - just don't fucking hurt me." $He sticks out $his chest in a clear attempt to entice you with $his fake tits. + 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 blurts out, "Whatever that fucker told you, it i<<s>>n't true. I'll be your little bitch bimbo, whatever you want. Ju<<s>>t don't - ju<<s>>t don't fucking hurt me." $He sticks out $his chest in a clear attempt to entice you with $his fake tits. <<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." + 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, "Tho<<s>>e fucker<<s>> 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, <<= 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. + 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 <<s>>urgery, e<<s>>pe<<c>>ially implant <<s>>urgery, <<Master>>. Ju<<s>>t - the idea of having fake <<sh>>it 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, <<= 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. + 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, "<<S>>ome of the girl<<s>> who graduated before me were given implant<<s>>, <<Master>>. Ju<<s>>t - the idea of having fake <<sh>>it 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">> - $He arrives unapologetically in $his fine clothing. "I'm not sorry," $he says harshly, "but I'm wearing my best one last time whether you like it or not." Eventually $he sighs, squares $his shoulders, and visibly steels $himself. "I'll say as a free woman, since it's my last chance to say anything as a free woman, you're good-looking, for an evil slaveholding oligarch." $He delivers this last with a little smile on $his plush lips and a sense of bitter irony in $his voice. "If we'd met at a nice party last week I might have made a pass at you. You'd be a better choice than my ex-husband at least." + $He arrives unapologetically in $his fine clothing. "I'm not sorry," $he says harshly, "but I'm wearing my best one last time whether you like it or not." Eventually $he sighs, squares $his shoulders, and visibly steels $himself. "I'll <<s>>ay a<<s>> a free $woman, <<s>>in<<c>>e it'<<s>> my la<<s>>t chan<<c>>e to <<s>>ay anything a<<s>> a free $woman, you're good-looking, for an evil <<s>>laveholding oligarch." $He delivers this last with a little smile on $his plush lips and a sense of bitter irony in $his voice. "If we'd met at a ni<<c>>e party la<<s>>t week I might have made a pa<<ss>> at you. You'd be a better choi<<c>>e than my e<<x>>-husband at lea<<s>>t." <<case "Slimness Enthusiast">> - $He arrives apologizing for $his fine clothing. "I'm sorry," $he apologizes sadly, "but I wanted to wear my best one last time." $He sighs, squares $his shoulders, and visibly steels $himself. "I'll say as a free woman, since it's my last chance to say anything as a free woman, you're good-looking, for an evil slaveholding oligarch." $He delivers this last with a little smile on $his lips and rich turn of humor in $his voice. "If we'd met at a nice party last week I might have made a pass at you. I suppose that's beside the point now." + $He arrives apologizing for $his fine clothing. "I'm <<s>>orry," $he apologizes sadly, "but I wanted to wear my be<<s>>t one la<<s>>t time." $He sighs, squares $his shoulders, and visibly steels $himself. "I'll <<s>>ay as a free $woman, <<s>>in<<c>>e it'<<s>> my la<<s>>t chan<<c>>e to <<s>>ay anything a<<s>> a free $woman, you're good-looking, for an evil <<s>>laveholding oligarch." $He delivers this last with a little smile on $his lips and rich turn of humor in $his voice. "If we'd met at a ni<<c>>e party la<<s>>t week I might have made a pa<<ss>> at you. I suppose that'<<s>> be<<s>>ide the point now." <<case "Slimness Enthusiast Two">> When $he arrives, $he is the very picture of a young waif out of $his depth. It's clear $he feels relief and escaping going under the knife, but $he knows enough about the Free Cities to know that $he's likely to buy $his presence here through long years of sexual labor. <<case "Asset Expansionist">> @@ -1393,17 +1323,17 @@ The call comes in from an office, and you suppress the urge to check whether $as <<case "Physical Idealist">> $He gets through the enslavement process without breaking anything, mostly due to your increasingly exasperated supervision. You wondered whether the destruction of $his moronic ideas about life as one of your slaves was going to cause an explosion, but it seems that $he's under fewer illusions than you thought. $He's obviously familiar with getting fucked as a way of earning $his keep, and hangs around, flexing idly and clearly wondering when you'll get on with it. <<case "Physical Idealist Two">> - When $he arrives, you're impressed again. $He's even more muscular in person than in $his pictures. "<<Master>>," $he growls, "I've done my very best to be the biggest, strongest slave before coming here. May I show you?" More than a little curious, you nod. $He reaches down to place a palm on the ground. "Well, <<Master>>, I had a month. So I did my best to get in shape." $He suddenly flips as if starting a cartwheel, but stops suspended in midair, holding $his entire muscular frame off the ground with just one hand planted on the floor. $He turns slowly, revealing the base of an impressively large buttplug nestling between $his cheeks. $He knows $his audience. + When $he arrives, you're impressed again. $He's even more muscular in person than in $his pictures. "<<Master>>," $he growls, "I've done my very be<<s>>t to be the bigge<<s>>t, <<s>>tronge<<s>>t <<s>>lave before coming here. May I <<sh>>ow you?" More than a little curious, you nod. $He reaches down to place a palm on the ground. "Well, <<Master>>, I had a month. <<S>>o I did my be<<s>>t to get in <<sh>>ape." $He suddenly flips as if starting a cartwheel, but stops suspended in midair, holding $his entire muscular frame off the ground with just one hand planted on the floor. $He turns slowly, revealing the base of an impressively large buttplug nestling between $his cheeks. $He knows $his audience. <<case "Youth Preferentialist">> Your slaving network gets $him out of $his difficult situation without trouble, forwarding $him the necessary travel documents. When $he arrives, $he displays the clear signs of someone who has learned to avoid abuse: $he takes no initiative and does nothing without instructions, just standing dumbly until ordered; when told what to do, $he does it quickly and carefully. Though $his mind is not broken, there is something dead lurking in $his eyes. When $he looks at you, it is with the watchful caution of an abused animal. <<case "Youth Preferentialist Two">> Your slaving network extracts $him from $his family's grasp easily, forwarding $him the necessary travel documents. When $he arrives, $he displays the clear signs of someone who's never had to think for themselves: $he takes no initiative and does nothing without instructions, just standing dumbly until ordered; when told what to do, $he does it quickly and carefully. Though $his mind is not broken, there's clearly not a lot in there. Being a slave may actually be $his most fitting vocation. <<case "Maturity Preferentialist">> - When $he arrives, you're impressed again. $He elected to appear in black lace lingerie, and stalks into your office on high heels with a calculated sensuality. "<<Master>>," $he purrs, "I've done my very best to get ready to be a good slave. May I show you?" More than a little curious, you nod. $He starts to strip slowly and skillfully. "Well, <<Master>>, I had a month. So I did my best to get in shape." $He rubs $his hands down $his toned belly, hooking fingers under $his thong. "I practiced stripping. I practiced blowjobs." $He turns slowly, revealing the base of an impressively large buttplug nestling between $his cheeks. "I even practiced buttsex." + When $he arrives, you're impressed again. $He elected to appear in black lace lingerie, and stalks into your office on high heels with a calculated sensuality. "<<Master>>," $he purrs, "I've done my very be<<s>>t to get ready to be a good <<s>>lave. May I <<sh>>ow you?" More than a little curious, you nod. $He starts to strip slowly and skillfully. "Well, <<Master>>, I had a month. <<S>>o I did my be<<s>>t to get in <<sh>>ape." $He rubs $his hands down $his toned belly, hooking fingers under $his thong. "I practi<<c>>ed <<s>>tripping. I practi<<c>>ed blowjob<<s>>." $He turns slowly, revealing the base of an impressively large buttplug nestling between $his cheeks. "I even practi<<c>>ed butt<<s>>e<<x>>." <<case "Maturity Preferentialist Two">> - $He arrives apologizing for $his fine clothing. "I'm sorry," $he apologizes sadly, "but I wanted to wear my best one last time." $He sighs, squares $his shoulders, and visibly steels $himself. "My son's a bastard for selling me to you, and all to save that useless store of his." $He delivers this last with a bitter smile on $his lips. "At least he had the sense to sell me to someone with exquisite taste, like you. After all, you did buy me." + $He arrives apologizing for $his fine clothing. "I'm <<s>>orry," $he apologizes sadly, "but I wanted to wear my be<<s>>t one la<<s>>t time." $He sighs, squares $his shoulders, and visibly steels $himself. "My <<s>>on'<<s>> a ba<<s>>tard for <<s>>elling me to you, and all to <<s>>ave that u<<s>>ele<<ss>> <<s>>tore of hi<<s>>." $He delivers this last with a bitter smile on $his lips. "At lea<<s>>t he had the <<s>>en<<s>>e to <<s>>ell me to <<s>>omeone with e<<x>>qui<<s>>ite ta<<s>>te, like you. After all, you did buy me." <<case "Chattel Religionist">> - $He lets out a convulsive sob when you accept $his servitude, and is painfully obsequious as you complete the formalities of enslavement. Your exam reveals several minor indications of self-harm - chewed nails, bitten lips, and such. But for all that, a remarkable look of peace has settled on the poor woman's face. $He waits patiently for a hint of your will, <<if canAchieveErection($activeSlave)>>$his cock painfully erect<<elseif $activeSlave.dick > 0>>precum dripping from $his soft dick<<else>>$his pussy visibly moist<</if>> at the prospect of the servile sex $he is convinced is $his duty. + $He lets out a convulsive sob when you accept $his servitude, and is painfully obsequious as you complete the formalities of enslavement. Your exam reveals several minor indications of self-harm - chewed nails, bitten lips, and such. But for all that, a remarkable look of peace has settled on the poor $woman's face. $He waits patiently for a hint of your will, <<if canAchieveErection($activeSlave)>>$his cock painfully erect<<elseif $activeSlave.dick > 0>>precum dripping from $his soft dick<<else>>$his pussy visibly moist<</if>> at the prospect of the servile sex $he is convinced is $his duty. <<case "Chattel Religionist Two">> You complete the legalities and a clearly improvised VTOL craft arrives at $arcologies[0].name, broadcasting an erratic array of IFF codes. It seems this group hasn't quite mastered the intricacies of air travel. The aircraft doesn't seem capable of the delicate feat of landing on the pad it had been directed to: it simply hovers <<if $showInches == 2>>six feet<<else>>two meters<</if>> off the pad for the five seconds it takes to shove a canvas bag that obviously contains a struggling human form out of the side door. The condemned prays tirelessly throughout the biometric scanning process, utterly shocked and disgusted by what they've witnessed in just the few minutes they've been in your arcology. Then it's off to the penthouse for basic slave induction. <<case "Roman Revivalist">> @@ -1455,27 +1385,27 @@ The call comes in from an office, and you suppress the urge to check whether $as <<case "Gender Fundamentalist">> When $he arrives, $he is the very picture of a lost and very pregnant young waif. $He clearly feels some hope at leaving $his traditionalist home for a more modern society, but $he has just as clearly heard enough about the Free Cities to know that $he's likely to buy $his presence here through long years of sexual labor. A purchaser's agent appears to take $him away, and $he quietly asks who's bought $him. A breeder, you tell $him, who prefers stock proven to be fertile. $He'll probably manage 20 pregnancies or so, before $he's retired. <<case "Gender Fundamentalist Two">> - When $he arrives, $he is the very picture of a distraught and very pregnant mature woman. $He clearly feels some resentment at $his traditionalist home and family for selling $him into slavery, but $he has just as clearly heard enough about the Free Cities to know that $he's likely traded one form of marginalization for another. A purchaser's agent appears to take $him away, and $he quietly asks who's bought $him. A breeder, you tell $him, who prefers to squeeze a few pregnancies out of mature women. $He'll probably manage a few pregnancies before $he's retired. + When $he arrives, $he is the very picture of a distraught and very pregnant mature $woman. $He clearly feels some resentment at $his traditionalist home and family for selling $him into slavery, but $he has just as clearly heard enough about the Free Cities to know that $he's likely traded one form of marginalization for another. A purchaser's agent appears to take $him away, and $he quietly asks who's bought $him. A breeder, you tell $him, who prefers to squeeze a few pregnancies out of mature women. $He'll probably manage a few pregnancies before $he's retired. <<case "Paternalist">> $He speaks to you as a free $woman throughout the enslavement process, but as soon as it is completed, $he stops and waits for instruction before talking. $He does not look directly at your face, but keeps $his gaze lower than that, and stands expectant and ready for commands. You are reminded of $his intelligence by $his presence of mind when a purchaser's agent arrives to take charge of $him; $he clearly calculates that making a scene will gain $him nothing, and cooperates. You reward this by telling $him the truth: $he's been sold to a citizen of $arcologies[0].name who shares paternalistic beliefs; $he'll be fine. <<case "Paternalist Two">> $He speaks to you as a free $woman throughout the enslavement process, but as soon as it is completed, $he stops and waits for instruction before talking. $He may not have had many prospects in $his life back home, but if $he remains this obedient $he'll fit right in here in the Free Cities. When the purchasing agent arrives $he is momentarily surprised but not alarmed, $he figures $he'll been sold to a citizen of $arcologies[0].name who shares paternalistic beliefs. <<case "Degradationist">> - 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 blurts out, "Whatever that fucker told you, it isn't true. I'll be your little bitch bimbo, whatever you want. Just don't - just don't fucking hurt me." $He sticks out $his chest in a clear attempt to entice you with $his fake tits, and is rewarded with a bag over $his head, courtesy of the purchaser's agent who arrived in the meantime. The agent clearly felt that $he would be a handful worth corralling quickly, and this proves correct. $He goes limp after being tased, though. + 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 blurts out, "Whatever that fucker told you, it i<<s>>n't true. I'll be your little bitch bimbo, whatever you want. Ju<<s>>t don't - jus<<>>t don't fucking hurt me." $He sticks out $his chest in a clear attempt to entice you with $his fake tits, and is rewarded with a bag over $his head, courtesy of the purchaser's agent who arrived in the meantime. The agent clearly felt that $he would be a handful worth corralling quickly, and this proves correct. $He goes limp after being tased, though. <<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." $He is rewarded with a bag over $his head, courtesy of the purchaser's agent who arrived in the meantime. The agent clearly felt that $he would be a handful worth corralling quickly, and this proves correct. $He goes limp after being tased, though. + 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, "Tho<<s>>e fucker<<s>> threw everything they could at me, you can't break me. No one can." $He is rewarded with a bag over $his head, courtesy of the purchaser's agent who arrived in the meantime. The agent clearly felt that $he would be a handful worth corralling quickly, and this proves correct. $He goes limp after being tased, though. <<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, <<= 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. + 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, "<<S>>ome of the girl<<s>> who graduated before me were given implants, <<Master>>. Ju<<s>>t - the idea of having fake <<sh>>it 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">> - $He arrives unapologetically in $his fine clothing. "I'm not sorry," $he says harshly, "but I'm wearing my best one last time whether you like it or not." Eventually $he sighs, squares $his shoulders, and visibly steels $himself. $He's about to declaim something when a purchaser's agent arrives to bundle $him off. $His face darkens and $he mulls something over, probably preparing a really cutting remark, but before $he can deliver it the agent fastens a bag over $his head and $he is heard no more. + $He arrives unapologetically in $his fine clothing. "I'm not <<s>>orry," $he says harshly, "but I'm wearing my be<<s>>t one la<<s>>t time whether you like it or not." Eventually $he sighs, squares $his shoulders, and visibly steels $himself. $He's about to declaim something when a purchaser's agent arrives to bundle $him off. $His face darkens and $he mulls something over, probably preparing a really cutting remark, but before $he can deliver it the agent fastens a bag over $his head and $he is heard no more. <<case "Slimness Enthusiast">> - $He arrives apologizing for $his fine clothing. "I'm sorry," $he apologizes sadly, "but I wanted to wear my best one last time." $He sighs, squares $his shoulders, and visibly steels $himself. $He's about to declaim something when a purchaser's agent arrives to bundle $him off. $His face darkens and $he mulls something over, probably preparing a really cutting remark, but before $he can deliver it the agent fastens a bag over $his head and $he is heard no more. + $He arrives apologizing for $his fine clothing. "I'm <<s>>orry," $he apologizes sadly, "but I wanted to wear my be<<s>>t one la<<s>>t time." $He sighs, squares $his shoulders, and visibly steels $himself. $He's about to declaim something when a purchaser's agent arrives to bundle $him off. $His face darkens and $he mulls something over, probably preparing a really cutting remark, but before $he can deliver it the agent fastens a bag over $his head and $he is heard no more. <<case "Slimness Enthusiast Two">> - When $he arrives, $he is the very picture of a young waif out of $his depth. It's clear $he feels relief and escaping going under the knife, but $he knows enough about the Free Cities to know that $he's likely to buy $his presence here through long years of sexual labor. A purchaser's agent appears to take $him away, and $he quietly asks who's bought $him. A citizen, you tell $him, who prefers his women slender and unimplanted. $He seems relieved by this. + When $he arrives, $he is the very picture of a young waif out of $his depth. It's clear $he feels relief and escaping going under the knife, but $he knows enough about the Free Cities to know that $he's likely to buy $his presence here through long years of sexual labor. A purchaser's agent appears to take $him away, and $he quietly asks who's bought $him. A citizen, you tell $him, who prefers his $women slender and unimplanted. $He seems relieved by this. <<case "Asset Expansionist">> When $he arrives, it's clear $he's nobody's fool. $He comes without personal effects of any kind, and is wearing cheap, sturdy clothes to travel in, since $he knows $he'll be taking them off immediately. $He does, without being told, just as soon as the enslavement formalities are out of the way. $His breasts are capped by titanic, puffy nipples; $he notices you appreciating them and gives you a hesitant little smile, swaying $his shoulders back and forth a little to set $his flesh deliciously into motion. $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. <<case "Asset Expansionist Two">> @@ -1483,7 +1413,7 @@ The call comes in from an office, and you suppress the urge to check whether $as <<case "Physical Idealist">> $He gets through the enslavement process without breaking anything, mostly due to your increasingly exasperated supervision. $His buyer's agent arrives to take $him away, and it takes the poor man ten minutes to get the situation through $his thick skull. He sees the beginnings of rage building in $him as $he realizes how $he's been tricked, but he's a quick draw, and before $he can do anything he's got his taser unholstered and deployed. The bitch gives off an antediluvian roar as $he goes stiff as a board and crashes to the floor. <<case "Physical Idealist Two">> - When $he arrives, you're impressed again. $He's even more muscular in person than in $his pictures. "<<Master>>," $he growls, "I've done my very best to be the biggest, strongest slave before coming here. May I show you?" Though more than a little curious, the arrival of the purchasing agent cuts short any theatrics. Though initially confused, the promise of steroids and other drugs by $his new owner has $him follow the agent out of your penthouse without fuss. + When $he arrives, you're impressed again. $He's even more muscular in person than in $his pictures. "<<Master>>," $he growls, "I've done my very be<<s>>t to be the bigge<<s>>t, <<s>>tronge<<s>>t <<s>>lave before coming here. May I <<sh>>ow you?" Though more than a little curious, the arrival of the purchasing agent cuts short any theatrics. Though initially confused, the promise of steroids and other drugs by $his new owner has $him follow the agent out of your penthouse without fuss. <<case "Youth Preferentialist">> Your slaving network gets $him out of $his difficult situation without trouble, forwarding $him the necessary travel documents. When $he arrives, $he displays the clear signs of someone who has learned to avoid abuse: $he takes no initiative and does nothing without instructions, just standing dumbly until ordered; when told what to do, $he does it quickly and carefully. When a buyer's agent arrives to take $him away, $he follows him without a backward glance. <<case "Youth Preferentialist Two">> @@ -1491,11 +1421,11 @@ The call comes in from an office, and you suppress the urge to check whether $as <<case "Maturity Preferentialist">> $He and the buyer's agent arrive at the same time. $He accepts this defeat with good grace, and cooperates with him as best $he can. $He gives you a single questioning glance, with just a glint of hope; you take pity, and tell $him $he won't be going far. $He's to be employed in one of the arcology's better MILF brothels. $He'll be fucked ten times tomorrow, it's true, but $he'll be well treated when $he doesn't have dicks in $him. <<case "Maturity Preferentialist Two">> - $He arrives apologizing for $his fine clothing. "I'm sorry," $he apologizes sadly, "but I wanted to wear my best one last time." $He sighs, squares $his shoulders, and visibly steels $himself. "My son's a bastard for selling me to you, and all to save that useless store of his." $He delivers this last with a bitter smile on $his lips. "At least he had the sense to sell me to someone with exquisite taste, like you. After all, you did buy me." $He's about to declaim something else when a purchaser's agent arrives to bundle $him off. $His face darkens and $he mulls something over, probably preparing a really cutting remark, but before $he can deliver it the agent fastens a bag over $his head and $he is heard no more. + $He arrives apologizing for $his fine clothing. "I'm <<s>>orry," $he apologizes sadly, "but I wanted to wear my be<<s>>t one la<<s>>t time." $He sighs, squares $his shoulders, and visibly steels $himself. "My <<s>>on'<<s>> a ba<<s>>tard for <<s>>elling me to you, and all to <<s>>ave that u<<s>>ele<<ss>> <<s>>tore of hi<<s>>." $He delivers this last with a bitter smile on $his lips. "At lea<<s>>t he had the <<s>>en<<s>>e to <<s>>ell me to <<s>>omeone with e<<x>>qui<<s>>ite ta<<s>>te, like you. After all, you did buy me." $He's about to declaim something else when a purchaser's agent arrives to bundle $him off. $His face darkens and $he mulls something over, probably preparing a really cutting remark, but before $he can deliver it the agent fastens a bag over $his head and $he is heard no more. <<case "Chattel Religionist">> $He lets out a convulsive sob when you accept $his servitude, and is painfully obsequious as you complete the formalities of enslavement. When $his buyer arrives to take $him away, the realization agonizes $him, but $he snuffs out $his saddened reaction almost as soon as it dawns on $his face. $He visibly draws $himself up, obviously telling $himself that service under one master is as righteous as service under another. <<case "Chattel Religionist Two">> - You complete the legalities and a clearly improvised VTOL craft arrives at $arcologies[0].name, broadcasting an erratic array of IFF codes. It seems this group hasn't quite mastered the intricacies of air travel. The aircraft doesn't seem capable of the delicate feat of landing on the pad it had been directed to: it simply hovers <<if $showInches == 2>>six feet<<else>>two meters<</if>> off the pad for the five seconds it takes to shove a canvas bag that obviously contains a struggling human form out of the side door. The condemned prays tirelessly they're unpacked, utterly shocked and disgusted by what they've witnessed in just the few minutes they've been in your arcology. You tell them to cheer up — they're off to a nice little brothel where they'll learn the joys of their new religion. You make out a single word as they are hauled away, "Blasphemer!" Seems someone wants you to patron them in their new career. + You complete the legalities and a clearly improvised VTOL craft arrives at $arcologies[0].name, broadcasting an erratic array of IFF codes. It seems this group hasn't quite mastered the intricacies of air travel. The aircraft doesn't seem capable of the delicate feat of landing on the pad it had been directed to: it simply hovers <<if $showInches == 2>>six feet<<else>>two meters<</if>> off the pad for the five seconds it takes to shove a canvas bag that obviously contains a struggling human form out of the side door. The condemned prays tirelessly they're unpacked, utterly shocked and disgusted by what they've witnessed in just the few minutes they've been in your arcology. You tell them to cheer up — they're off to a nice little brothel where they'll learn the joys of their new religion. You make out a single word as they are hauled away, "Bla<<s>>phemer!" Seems someone wants you to patron them in their new career. <<case "Roman Revivalist">> $He arrives with doubt already clouding $his eyes. It seems $he got an introduction to the reality of Roman Revivalism on $his way up the arcology to your villa. The violence it did to $his vision of Rome is deeply ironic; $arcologies[0].name is a fair reproduction of the decadence and vigor of imperial Rome. If $he's shocked by the screams of a slave dying in gladiatorial combat or the spectacle of prisoners from the provinces being sold at auction, that's $his ignorance. When you cause a price placard to be affixed to $his chest so $he can be sold at auction, the reality of $his future finally comes home to $him. <<case "Aztec Revivalist">> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index 5a6796133f30c16037a4927fe925053a0e40b107..2d2df2fd6cc732442a3e1c1f1a4a07e2a75bfefb 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -168,13 +168,13 @@ <<case "desperate preg">> <<if $pedo_mode == 1>> -<<set $activeSlaveOneTimeMinAge = $fertilityAge>> + <<set $activeSlaveOneTimeMinAge = $fertilityAge>> <<elseif $minimumSlaveAge < 18>> -<<set $activeSlaveOneTimeMinAge = Math.min(25, $fertilityAge)>> -<<set $activeSlaveOneTimeMaxAge = Math.max(30, $activeSlaveOneTimeMinAge + 1)>> + <<set $activeSlaveOneTimeMinAge = Math.min(25, $fertilityAge)>> + <<set $activeSlaveOneTimeMaxAge = Math.max(30, $activeSlaveOneTimeMinAge + 1)>> <<else>> -<<set $activeSlaveOneTimeMinAge = 25>> -<<set $activeSlaveOneTimeMaxAge = 30>> + <<set $activeSlaveOneTimeMinAge = 25>> + <<set $activeSlaveOneTimeMaxAge = 30>> <</if>> <<set $one_time_age_overrides_pedo_mode = 1>> /% Old enough to be pregnant. %/ <<set $oneTimeDisableDisability = 1>> @@ -483,7 +483,7 @@ <<set $activeSlave.lipsPiercing = random(0,1)>> <<set $activeSlave.clitPiercing = random(0,1)>> <<set $activeSlave.nipplesPiercing = random(0,1)>> -<<set $activeSlave.stampTat = either(0, 0, "tribal patterns", "flowers", "advertisements", "degradation", "rude words")>> +<<set $activeSlave.stampTat = either(0, 0, "advertisements", "degradation", "flowers", "rude words", "tribal patterns")>> <<set $activeSlave.anusTat = either("bleached")>> <<set $activeSlave.pubicHStyle = "waxed">> @@ -1640,7 +1640,6 @@ <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> -<<set $oneTimeDisableDisability = 1>> <<include "Generate XX Slave">> <<set $activeSlave.origin = "You helped her give birth, leaving her deeply indebted to you.">> <<set $activeSlave.devotion = random(0,20)>> @@ -2002,6 +2001,7 @@ <</switch>> <<setLocalPronouns $activeSlave>> +<<run Enunciate($activeSlave)>> <<setAssistantPronouns>> <<switch $recruit>> @@ -2009,9 +2009,9 @@ <<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> -"<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, 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. +"<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, my name i<<s>> $activeSlave.slaveName. I'm, um, bored, I gue<<ss>>. I go to club<<s>> and get drunk and fuck guy<<s>> and it'<<s>> just kinda boring. I thought it would be different when I turned <<print $activeSlave.actualAge>>, but that wa<<s>> a couple month<<s>> ago and, well, nothing'<<s>> different. I <<s>>aw $HeadGirl.slaveName and <<he 2>> wa<<s>> ju<<s>>t <<s>>o gra<<c>>eful and beautiful and <<he 2>> <<s>>eemed so confident in what <<he 2>> wa<<s>> doing and who <<he 2>> wa<<s>> and I talked to _him2 and <<he 2>> <<s>>aid <<he 2>> wa<<s>> your Head Girl and... I want to be like _him2. Can I be your <<s>>lave? I'd be good, I'm good at <<s>>ucking dick<<s>> and <<s>>tuff." $He seems to be a little naïve about sexual slavery, but there's no need to tell $him that. <<case "male recruit">> @@ -2019,7 +2019,7 @@ Your Head Girl sends you a discreet message that _he2 may have found a slave for 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> -"<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, 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. +"<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, my name i<<s>> $activeSlave.slaveName. I'm, um, bored, I gue<<ss>>. I go to club<<s>> and get drunk and fuck guy<<s>> and it'<<s>> ju<<s>>t kinda boring. I thought it would be different when I turned <<print $activeSlave.actualAge>>, but that wa<<s>> a couple month<<s>> ago and, well, nothing'<<s>> different. I <<s>>aw $HeadGirl.slaveName and <<he 2>> wa<<s>> ju<<s>>t <<s>>o beautiful and ha<<s>> a dick like me and <<he 2>> <<s>>eemed so confident in what <<he 2>> wa<<s>> doing and who <<he 2>> was and I talked to _him2 and <<he 2>> <<s>>aid <<he 2>> wa<<s>> your Head Girl and... I want to be like _him2. Can I be your <<s>>lave? I'd be good, I'm good at <<s>>ucking dick<<s>>." $He seems to be a little naïve about sexual slavery, but there's no need to tell $him that. <<case "whore recruit">> @@ -2027,7 +2027,7 @@ Your Head Girl sends you a discreet message that _he2 may have found a slave for 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> -"<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, 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, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>. 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." +"<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, my name is $activeSlave.slaveName. I'm a <<s>>treet whore. Working girl<<s>> get to know each other, <<s>>o I know $HeadGirl.slaveName pretty well. I've been having a bad time on the <<s>>treet<<s>>, and la<<s>>t night a john beat on me pretty good. I'm broke and I'm <<s>>ick of this. Being free i<<s>>n't worth <<sh>>it. $HeadGirl.slaveName like<<s>> you and <<he 2>> <<s>>eem<<s>> to do OK. <<S>>o, can I be your <<s>>lave? I'm a good bet, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. I'd be happy enough working for you a<<s>> a <<s>>lave whore if you keep me healthy and <<s>>afe, and I'm a good fuck." <<case "female debtor">> @@ -2039,11 +2039,11 @@ One of the tenants in your arcology has not paid rent in some time. In the Free <<case "desperate preg">> -A young $woman comes to your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He's dressed in torn old clothes, is obviously unhealthy, and is massively pregnant. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, I'm desperate. I understand slaves' babies must be sent to orphanages at birth. But I'm on the streets and I'm so sick and hungry I'm afraid I'll miscarry. Could you enslave me, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>? I'm still pretty enough, and... I know some men like pregnant $women. My ass is — well, I hear slaves are more valuable if they're tight back there and I've never done it there. I'm also starting to give a little milk. I know I'll have to give up the baby. I guess that's all." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech. +A young $woman comes to your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He's dressed in torn old clothes, is obviously unhealthy, and is massively pregnant. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I'm de<<s>>perate. I under<<s>>tand <<s>>lave<<s>>' babie<<s>> mu<<s>>t be <<s>>ent to orphanage<<s>> at birth. But I'm on the <<s>>treet<<s>> and I'm <<s>>o <<s>>ick and hungry I'm afraid I'll mi<<s>>carry. Could you en<<s>>lave me, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>? I'm <<s>>till pretty enough, and... I know <<s>>ome men like pregnant $women. My a<<ss>> i<<s>> — well, I hear <<s>>lave<<s>> are more valuable if they're tight back there and I've never done it there. I'm al<<s>>o <<s>>tarting to give a little milk. I know I'll have to give up the baby. I gue<<ss>> that'<<s>> all." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech. <<case "blind homeless">> -A young <<if $activeSlave.physicalAge < 13>>$girl<<elseif $activeSlave.physicalAge < 18>>teen<<else>>$woman<</if>> struggles into your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He is gingerly feeling $his way towards your desk, before finding it and straightening up, giving you a good look at $his body. $He is clothed in rags and dangerously thin, save for a notable roundness in $his middle. $He shakily makes $his case. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, I'm desperate. My home was repossessed and I was forced onto the street. And the street is no place for a blind $girl. T-they", $he place a hand on $his stomach, "took advantage of my helplessness. For months, they fucked me whenever they wanted, and in return the gave me next to no food and this child!" $He stamps $his foot angrily, before continuing, "but I thought, you would be far better than that life, a slow death on the streets." $He tears up and awaits your response. +A young <<if $activeSlave.physicalAge < 13>>$girl<<elseif $activeSlave.physicalAge < 18>>teen<<else>>$woman<</if>> struggles into your penthouse for an interview. You accepted $his request to see you because $he took the unusual step of promising to sell $himself to you if you would admit $him. The reason for this odd behavior becomes clear when $he enters. $He is gingerly feeling $his way towards your desk, before finding it and straightening up, giving you a good look at $his body. $He is clothed in rags and dangerously thin, save for a notable roundness in $his middle. $He shakily makes $his case. "<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I'm de<<s>>perate. My home wa<<s>> repo<<ss>>e<<ss>>ed and I was for<<c>>ed onto the <<s>>treet. And the <<s>>treet i<<s>> no pla<<c>>e for a blind $girl. T-they", $he place a hand on $his stomach, "took advantage of my helple<<ss>>ne<<ss>>. For months, they fucked me whenever they wanted, and in return the gave me ne<<x>>t to no food and thi<<s>> child!" $He stamps $his foot angrily, before continuing, "but I thought, you would be far better than that life, a <<s>>low death on the <<s>>treet<<s>>." $He tears up and awaits your response. <<case "paternalist swan song">> @@ -2058,11 +2058,11 @@ Not every day in the arcology is calm and this one is most certainly more energe so happens to be such a force. Recently, a young musical prodigy has taken both the old world and the free cities by storm. Their rising popularity has gained them quite a following and the attention of some very powerful people. You look at the schedule of events for citizens tonight and, sure enough, they are to appear, live in concert, tonight. You tell $assistantName to set up a live feed of the performance for you so as not to interrupt your work. Several hours later, the young artist comes out on stage to a full house. They perform their latest hits and some fan favorites, but it's the crowd suddenly going silent that disturbs you from your paperwork. You look at the feed to see the artist standing there, a sullen expression on their face, tears streaming down their cheeks, and their body jerking, obviously wracked by occasional sobbing. They take a very quick bow and run off stage, before the feed gets cut. You shrug — artists have breakdowns — and return to your tasks. Surprisingly, $assistantName chimes in to tell you that an unexpected guest has arrived. You have them sent in and are surprised to see the young, visibly distressed prodigy. -"I was told by my producer to come here, they say I have earned enough of a debt to be enslaved. I heard that slaves seem to be treated well here and thought that, just maybe, if I convinced them to let my final performance be here, I would have a chance at a better life than at another arcology owned by a crueler master. Please, would you consider taking me in?" +"I wa<<s>> told by my produ<<c>>er to come here; they <<s>>ay I have earned enough of a debt to be en<<s>>laved. I heard that <<s>>lave<<s>> <<s>>eem to be treated well here and thought that, ju<<s>>t maybe, if I convin<<c>>ed them to let my final performan<<c>>e be here, I would have a chan<<c>>e at a better life than at another arcology owned by a crueler ma<<s>>ter. Plea<<s>>e, would you con<<s>>ider taking me in?" <<case "desperate milf">> -A<<if $activeSlave.physicalAge > 50>>n old $woman<<elseif $activeSlave.physicalAge > 30>> middle-aged $woman<<elseif $activeSlave.physicalAge >= 18>> young $woman<<elseif $activeSlave.physicalAge >= 13>> teenage $girl<<elseif $activeSlave.physicalAge >= 7>> $loli<<else>> little $girl<</if>> comes to your penthouse for an interview. $He's clearly unwell. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, I'm desperate. I came to the Free Cities to build a better life, but... it hasn't worked out for me. I can't afford medical care, and I guess I'm too scared to try street-walking yet, though I'll have to soon. I hear you're a known slaveowner, and that you give your slaves good medical care... could you enslave me, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>? I know I'm still pretty enough, so I'd be used as a sex slave." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech. +A<<if $activeSlave.physicalAge > 50>>n old $woman<<elseif $activeSlave.physicalAge > 30>> middle-aged $woman<<elseif $activeSlave.physicalAge >= 18>> young $woman<<elseif $activeSlave.physicalAge >= 13>> teenage $girl<<elseif $activeSlave.physicalAge >= 7>> $loli<<else>> little $girl<</if>> comes to your penthouse for an interview. $He's clearly unwell. Instead of standing in front of your desk, $he kneels and looks at the floor as $he speaks. "<<if $PC.title != 0>><<S>>ir<<else>>Ma'am<</if>>, I'm de<<s>>perate. I came to the Free <<C>>itie<<s>> to build a better life, but... it ha<<s>>n't worked out for me. I can't afford medical care, and I gue<<ss>> I'm too <<s>>cared to try <<s>>treet-walking yet, though I'll have to <<s>>oon. I hear you're a known <<s>>laveowner, and that you give your <<s>>lave<<s>> good medical care... could you en<<s>>lave me, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>? I know I'm <<s>>till pretty enough, <<s>>o I'd be u<<s>>ed a<<s>> a <<s>>e<<x>> <<s>>lave." $He weeps quietly as $he talks, but $he's brave enough to get through $his little speech. <<case "tg addict">> @@ -2076,13 +2076,13 @@ 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 <<= 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>>." +"I wa<<s>> rai<<s>>ed and trained by a <<s>>lave orphanage, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. It i<<s>> not legal to own underage <<= $girl>><<s>>, but it i<<s>> legal to charge an orphan for the co<<s>>t<<s>> of rai<<s>>ing $him when $he reache<<s>> $minimumSlaveAge, and tho<<s>>e debt<<s>> are alway<<s>> high enough to en<<s>>lave $him. My <<= ordinalSuffix($activeSlave.actualAge)>> birthday wa<<s>> ye<<s>>terday, <<if $activeSlave.actualAge == $minimumSlaveAge>><<s>>o I am a <<s>>lave and for <<s>>ale now<<else>><<s>>o I'm too old to <<s>>tay 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 <<= ordinalSuffix(Math.min(16, $activeSlave.actualAge - 2))>> 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. +"I have been trained for obedien<<c>>e <<s>>in<<c>>e I came to the orphanage. At <<print Math.min(14, $activeSlave.actualAge - 4)>> they put me on drug<<s>> to make <<s>>ure I'd grow ni<<c>>e T&A. On my <<= ordinalSuffix(Math.min(16, $activeSlave.actualAge - 2))>> birthday I got my fir<<s>>t <<s>>et of implant<<s>>. Every time my boob<<s>> got u<<s>>ed to the implant<<s>>, I got <<s>>ent in for a bigger <<s>>et. I'm on my <<s>>econd <<s>>et." $He unbuttons $his blouse and displays a pair of big fake tits. "I've al<<s>>o had my lip<<s>> done." $He blows you a wet kiss. <br><br> -$He hikes up $his skirt and spins around slowly. "The drugs also made my butt bigger, and I've had my butt done too. <<if $activeSlave.actualAge == $minimumSlaveAge>>Since it wasn't okay to fuck me before I had turned $minimumSlaveAge and been made a slave<<else>>Since my owner thought it would make me more desirable<</if>>, I'm a virgin and my anus has never had anything up it, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>." $He pulls $his buttocks apart to prove it. +$He hikes up $his skirt and spins around slowly. "The drug<<s>> al<<s>>o made my butt bigger, and I've had my butt done too. <<if $activeSlave.actualAge == $minimumSlaveAge>><<S>>in<<c>>e it wa<<s>>n't okay to fuck me before I had turned $minimumSlaveAge and been made a <<s>>lave<<else>><<S>>in<<c>>e my owner thought it would make me more de<<s>>irable<</if>>, I'm a virgin and my anu<<s>> ha<<s>> never had anything up it, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>." $He pulls $his buttocks apart to prove it. <br><br> -"I cost <<print cashFormat(2500)>>, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>." +"I co<<s>>t <<print cashFormat(2500)>>, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>." <<case "school trap">> @@ -2090,11 +2090,11 @@ $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 <<= 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>>." +"I was rai<<s>>ed and trained by a <<s>>lave orphanage, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. It i<<s>> not legal to own underage <<= $girl>><<s>>, but it i<<s>> legal to charge an orphan for the co<<s>>t<<s>> of rai<<s>>ing $him when $he reache<<s>> $minimumSlaveAge, and tho<<s>>e debt<<s>> are alway<<s>> high enough to en<<s>>lave $him. My <<= ordinalSuffix($activeSlave.actualAge)>> birthday was ye<<s>>terday, <<if $activeSlave.actualAge == $minimumSlaveAge>><<s>>o I am a slave and for <<s>>ale now<<else>><<s>>o I'm too old to <<s>>tay 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, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>. On my <<= ordinalSuffix(Math.min(16, $activeSlave.actualAge - 2))>> 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. +"I have been trained for obedien<<c>>e <<s>>in<<c>>e I came to the orphanage. I came a<<s>> a male, but they rea<<ss>>igned me to female right away. At <<print Math.min(14, $activeSlave.actualAge - 4)>> they put me on drug<<s>> to make <<s>>ure I'd grow ni<<c>>e T&A and look more feminine. Tho<<s>>e drug<<s>> al<<s>>o <<s>>topped my peni<<s>> from growing much, <<s>>o it'<<s>> <<s>>mall, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>. On my <<= ordinalSuffix(Math.min(16, $activeSlave.actualAge - 2))>> birthday I got my fir<<s>>t <<s>>et of implant<<s>>. Every time my che<<s>>t got u<<s>>ed to the implant<<s>>, I got <<s>>ent in for a bigger <<s>>et. I'm on my third <<s>>et." $He unbuttons $his blouse and displays a pair of fake tits. <br><br> -$He hikes up $his skirt and spins around slowly, displaying a petite, half-hard cock. "The drugs also made my butt bigger and my hips wider. <<if $activeSlave.actualAge == $minimumSlaveAge>>Since it wasn't okay to fuck me before I had turned $minimumSlaveAge and been made a slave<<else>>Since my owner thought it would make me more desirable<</if>>, my anus has never had anything up it, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>." $He pulls $his buttocks apart to prove it. "I... I would be happy to serve you like I am now <<if $PC.title != 0>>sir<<else>>ma'am<</if>>, or you could send me for surgery to give me a pussy instead, I would like that too, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>." +$He hikes up $his skirt and spins around slowly, displaying a petite, half-hard cock. "The drug<<s>> al<<s>>o made my butt bigger and my hip<<s>> wider. <<if $activeSlave.actualAge == $minimumSlaveAge>><<S>>in<<c>>e it wa<<s>>n't okay to fuck me before I had turned $minimumSlaveAge and been made a <<s>>lave<<else>><<S>>in<<c>>e my owner thought it would make me more de<<s>>irable<</if>>, my anu<<s>> ha<<s>> never had anything up it, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>." $He pulls $his buttocks apart to prove it. "I... I would be happy to <<s>>erve you like I am now <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>, or you could <<s>>end me for <<s>>urgery to give me a pu<<ss>>y instead, I would like that too, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>." <br><br> "I cost <<print cashFormat(2500)>>, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>." @@ -2102,31 +2102,31 @@ $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 <<= 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. +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 _heA 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>><<= properTitle()>>,<<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?" +After a short while, your assistant whispers in your earpiece, <<if $assistant == 0>><<= properTitle()>>,<<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' <<s>>tupid," $he admits. "But I've come too far now. I ju<<s>>t really want to live here. With you, I gue<<ss>>. If that mean<<s>> being your <<s>>lave, that'<<s>> okay. Can I be your hou<<s>>e <<s>>ervant, maybe?" <<case "womanly PC">> <<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 $woman. <br><br> -"It's my husband," $he says forthrightly. "I'm pretty sure the bastard is going to enslave me." $He pours out the trite story; it's terrifically boring, but it pays to hear people who want to be enslaved out. It's the only forbearance you'll need to show $him, ever, if you manage things correctly. +"It'<<s>> my hu<<s>>band," $he says forthrightly. "I'm pretty <<s>>ure the ba<<s>>tard i<<s>> going to en<<s>>lave me." $He pours out the trite story; it's terrifically boring, but it pays to hear people who want to be enslaved out. It's the only forbearance you'll need to show $him, ever, if you manage things correctly. <br><br> -"So", $he sums up, sighing and dabbing at tears, "I know you're a slaveowner. I don't really have anywhere else to go, so I'll be your slave. I'm not stupid, and I'm not ugly, so I know that means I'd be a sex slave. But it's better than the open market." Left unsaid is $his obvious expectation that you'll be sympathetic to $his plight. +"<<S>>o", $he sums up, sighing and dabbing at tears, "I know you're a <<s>>laveowner. I don't really have anywhere el<<s>>e to go, <<s>>o I'll be your <<s>>lave. I'm not <<s>>tupid, and I'm not ugly, <<s>>o I know that mean<<s>> I'd be a <<s>>e<<x>> <<s>>lave. But it'<<s>> better than the open market." Left unsaid is $his obvious expectation that you'll be sympathetic to $his plight. <<case "shemale PC">> -<<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. +<<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> "Hi", $he says hesitantly. $He's a pretty convincing girl; $his voice is the only giveaway. You tell $him that if $he wishes to be considered for enslavement, you need to inspect $him naked. To $his credit, $he obeys, undressing quickly to reveal a body that's clearly seen a good deal of hormone therapy. $He's not unhealthy and isn't too shabby, so you ask $him why $he's here. <br><br> -"I don't make very much money," $he says, and you manage not to laugh at the absurdity. "I really want to be a prettier girl. I'm - I'm not really comfortable yet. But all the modern surgeries and drugs are so expensive. And I can't afford it, and I won't be able to before I'm old unless I decide to be a whore. So I decided if I was going to do that I might as well do it here, for you. You're," $he blushes, "you're very pretty. I would love to look like you." +"I don't make very much money," $he says, and you manage not to laugh at the ab<<s>>urdity. "I really want to be a prettier girl. I'm - I'm not really comfortable yet. But all the modern <<s>>urgerie<<s>> and drug<<s>> are <<s>>o e<<x>>pen<<s>>ive. And I can't afford it, and I won't be able to before I'm old unle<<ss>> I de<<c>>ide to be a whore. <<S>>o I de<<c>>ided if I wa<<s>> going to do that I might a<<s>> well do it here, for you. You're," $he blushes, "you're very pretty. I would love to look like you." <<case "female SD">> Your desk flags a report of the arcology security service for your immediate attention. As it turns out, a number of pretty liberal students from a<<if $activeSlave.actualAge >= 18>> college<<elseif $activeSlave.actualAge >= 14>> high school<<elseif $activeSlave.actualAge >= 11>> junior high school<<else>>n elementary school<</if>> in your arcology led a protest earlier today in the financial district several levels up from their institution. Seems to have been against slavery, for environmentalism, or some other nonsense that you skip over reading. The really interesting thing is what happened during the protest anyways. Things became a bit unruly between protesters and some counter-protesters - and at some point rocks started to fly... all of which would barely be worth a mention, if the vintage sports car of a prominent resident hadn't been parked on the same street. <br><br> -One dented hood and smashed windshield later, someone was in big trouble. The ever-present camera surveillance in your arcology made it easy to track the rock to the hand of the person who threw it - a quite pretty young woman, who immediately got arrested and is awaiting sentencing in the lock-up right now. The video of $him getting booked - complete with a thorough strip-search (since all the officers agreed $he 'had to be hiding something') is definitively worth saving to a private folder. +One dented hood and smashed windshield later, someone was in big trouble. The ever-present camera surveillance in your arcology made it easy to track the rock to the hand of the person who threw it - a quite pretty young $woman, who immediately got arrested and is awaiting sentencing in the lock-up right now. The video of $him getting booked - complete with a thorough strip-search (since all the officers agreed $he 'had to be hiding something') is definitively worth saving to a private folder. <br><br> Given the damage to an expensive classic car and the meager balance of $his bank accounts, this student is definitively up for enslavement. There's no way $he or even anyone related to $him could come up with the cash. All of which leaves you with an opportunity... the car's owner hasn't seen $him yet, so you could conceivably approach him and buy the debt for this beauty off him. Better be quick, if he realizes what is waiting in a cell for him, you doubt he'd sell $him at all. <br><br> @@ -2163,7 +2163,7 @@ A (quite unrealistic) blockbuster movie took your arcology by storm recently, ca <br><br> The situation does yield a few business opportunities too, as not all of the guys think just with their dicks. One of them is currently offering his free $girl for sale, which your assistant instantly flags for your attention. A video attached to the offer does look quite nice, as the slave-$girl happily poses in the nude for $his 'beloved', not knowing that he's planning to sell $him. <br><br> -//The young woman will be auctioned off, but you think you should be able to get $him for about <<print cashFormat(4000)>> or so... $he's pretty and a virgin, but the nonexistent sex skills will keep the price relatively low in the end.// +//The young $woman will be auctioned off, but you think you should be able to get $him for about <<print cashFormat(4000)>> or so... $he's pretty and a virgin, but the nonexistent sex skills will keep the price relatively low in the end.// <<case "MTF SE">> @@ -2171,7 +2171,7 @@ A (quite unrealistic) blockbuster movie took your arcology by storm recently, ca <br><br> It isn't just all natural females either, as a few men also jumped on the bandwagon, throwing in a little bit of transformative surgery in the mix. Either going all the way to making themselves into female slaves or hoping to be accepted as dick-girls after making the target of their affection fall for a pretty face and breasts. One of former cases gets flagged by your assistant as a business opportunity, as the new slaveowner wasn't impressed by a former male - despite $his good looks and virgin pussy, he can't forget $he originally was a man. A video attached to the 'sale offer' online post does show a relatively pretty young $woman, sniffling quietly as $he gets ordered to show off $his body to prospective buyers. <br><br> -//The girl should go pretty cheap, just <<print cashFormat(2000)>>. Sounds like the owner mostly wants to not be bothered by $him anymore.// +//The $girl should go pretty cheap, just <<print cashFormat(2000)>>. Sounds like the owner mostly wants to not be bothered by $him anymore.// <<case "DG SE">> @@ -2219,7 +2219,7 @@ After the fighting died down, your men found a $woman inside the compound, harsh As a minor point of information on your daily news download, you see that yet another of the new religions (cults really) that tend to spring up like weeds in the Free Cities has met its almost inevitable fate. Even with the most charismatic leader, starry-eyed idealism or boundless greed in milking the followers usually put a sudden end to the various self-declared churches, temples and holy places. In this case, the cult leader successfully made a hasty getaway, leaving his creditors and conned believers behind. Repo men are sent out in force, carting off the contents of the 'house of worship' and the luxurious apartment the man kept. <br><br> -Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young and almost naked <<if ($activeSlave.actualAge >= 18)>>woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>little girl<</if>> walks through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He certainly has a unique look, waking your interest enough to check the slave markets for $him - and indeed, half an hour later $he's being listed as for sale. +Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young and almost naked <<if ($activeSlave.actualAge >= 18)>>$woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>little $girl<</if>> walks through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He certainly has a unique look, waking your interest enough to check the slave markets for $him - and indeed, half an hour later $he's being listed as for sale. <br><br> The <<if ($activeSlave.actualAge >= 18)>>young $woman<<else>>$girl<</if>> is best described as being 'angelic', in a stereotypical Western view of the mythical divine messengers. Blonde-haired, blue-eyed, and with milky-white skin, $he has had a pair of beautifully detailed wings tattooed on $his back. The small icon of two cherries next to one another also designates $him to be a complete virgin. <br><br> @@ -2229,9 +2229,9 @@ The <<if ($activeSlave.actualAge >= 18)>>young $woman<<else>>$girl<</if>> is bes As a minor point of information on your daily news download, you see that yet another of the new religions (cults really) that tend to spring up like weeds in the Free Cities has met its almost inevitable fate. Even with the most charismatic leader, starry-eyed idealism or boundless greed in milking the followers usually put a sudden end to the various self-declared churches, temples and holy places. In this case, the cult leader successfully made a hasty getaway, leaving his creditors and conned believers behind. Repo men are sent out in force, carting off the contents of the 'house of worship' and the luxurious apartment the man kept. <br><br> -Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young and almost naked <<if ($activeSlave.actualAge >= 18)>>$woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>little $girl<</if>> walks through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He certainly has a unique look, waking your interest enough to check the slave markets for $him - and indeed, half an hour later $he's being listed as for sale. +Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young and almost naked <<if ($activeSlave.actualAge >= 18)>>$woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>little $girl<</if>> walks through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He certainly has a unique look, waking your interest enough to check the slave markets for $him - and indeed, half an hour later $he's being listed as for sale. <br><br> -The <<if ($activeSlave.actualAge >= 18)>>young woman<<else>>girl<</if>> is best described as being 'angelic', in a stereotypical Western view of the mythical divine messengers. Having jet-black hair and amber eyes, coupled with milky-white skin, there is a pair of beautifully detailed wings tattooed on $his back. A whole row of icons depicting stylized sex acts mark $him as being well versed in sexual matters. +The <<if ($activeSlave.actualAge >= 18)>>young $woman<<else>>$girl<</if>> is best described as being 'angelic', in a stereotypical Western view of the mythical divine messengers. Having jet-black hair and amber eyes, coupled with milky-white skin, there is a pair of beautifully detailed wings tattooed on $his back. A whole row of icons depicting stylized sex acts mark $him as being well versed in sexual matters. <br><br> // Someone already started bidding for $him and more bids are coming in fast. As such things usually go, you guess that the price will come out to about <<print cashFormat(7500)>> in the end.// @@ -2239,7 +2239,7 @@ The <<if ($activeSlave.actualAge >= 18)>>young woman<<else>>girl<</if>> is best Coming to your desk in the morning, you see that your assistant has flagged an interesting news item for you to check out. Looks like the monthly final in the slave racing league was yesterday. With the push of a button on the keyboard, you check out the rankings and then choose to display a video of the race's end - with a very pretty young woman crossing the finish line, immediately followed by half a dozen further slaves. It is quite a show since of course, all of them are naked - or almost so, as anything but smallish breasts make sports bras a necessity. <br><br> -Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dick-girls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call. +Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dickgirls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call. <br><br> As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his dick-girls to you at a fairly reasonable price. When you ask for a reason, the man replies, "Well, $he's a crowd-pleaser alright with that big dick of $hers, but... a bit headstrong. You see, $he punched one of the other girls when they grabbed a virgin at the same time. $He's been a distraction for the rest of the team, so I think it's best to remove $him and bring in new talent." He then sends you $his file to review, including more than a few videos of $him 'in action' on the racetrack - both running as well as fucking. <br><br> @@ -2249,9 +2249,9 @@ As fate has it, the person calling is the owner of the local race-track, wanting Coming to your desk in the morning, you see that your assistant has flagged an interesting news item for you to check out. Looks like the monthly final in the slave racing league was yesterday. With the push of a button on the keyboard, you check out the rankings and then choose to display a video of the race's end — with a very pretty young woman crossing the finish line, immediately followed by half a dozen further slaves. It is quite a show since of course, all of them are naked - or almost so, as anything but smallish breasts make sports bras a necessity. <br><br> -Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dick-girls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call. +Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dickgirls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call. <br><br> -As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his well-known virgin runners to you. When you ask him why, he is slightly surprised that you don't know already - turns out, the young woman got caught by an especially motivated chaser during the race yesterday, wrestling $him to the ground and taking $his virginity with their thick shaft. While a great athlete like $him usually still would have a place in his stable, the race track's resident doctor just confirmed that $he's pregnant. With abortion being out of the question - as the fans would see that as scandalous cheating defeating the purpose of the virgin race - the owner now wants to sell $him before $his fame fades. +As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his well-known virgin runners to you. When you ask him why, he is slightly surprised that you don't know already - turns out, the young $woman got caught by an especially motivated chaser during the race yesterday, wrestling $him to the ground and taking $his virginity with their thick shaft. While a great athlete like $him usually still would have a place in his stable, the race track's resident doctor just confirmed that $he's pregnant. With abortion being out of the question - as the fans would see that as scandalous cheating defeating the purpose of the virgin race - the owner now wants to sell $him before $his fame fades. <br><br> //The young $woman is really pretty and tall, if a bit plain in the breast department. With the moderate fame $he has earned during $his racing career and its spectacular end, $he'd draw raised interest if used as a whore. Due to the fact that $he's no longer a virgin, pregnant, and not really trained in sex acts, you could likely negotiate a bit and get $him for <<print cashFormat(5000)>>.// @@ -2261,9 +2261,9 @@ Coming to your desk in the morning, you see that your assistant has flagged an i <br><br> Whatever your predecessor's faults, he surely did something very right in endorsing the slave racing league when it started to establish itself way back when. These days, many of your residents regularly watch the races going on - and that number rises to include a clear majority in the arcology for the special events that are also in the organizer's program. An absolute favorite of the population is the 'vestalian hunt', in which a dozen virgins are chased along the track by very well-hung dickgirls. Anyone falling behind soon has their cherry taken in the most public way possible, right on the track. Only the quickest manage to make it to the finish line at all without being wrestled down and pounded hard. Quite a risk, with the slave's precious virginity being sacrificed this way, but of course those who make it win their owners large sums of prize money. You've just switched over to see a re-play of the action, seeing the camera move past the very attractive lineup of the race, when your communicator rings with an incoming call. <br><br> -As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his very prestigious virgin runners to you. $He's been the champion of the race track for three years in a row now, the virgin queen of the slave-girl sprinters... so the man decided he'd maximize his profit by selling $him at the height of $his popularity instead of chancing a loss in the next big race. It's a young woman's sport, and with new talent being trained, he feels it's time to give the <<if $activeSlave.actualAge >= 20>>young adult<<elseif $activeSlave.actualAge >= 13>>teenaged<<else>>pre-teen<</if>> slave-girl a new purpose. There are numerous interested parties in buying $him of course, but out of respect he is coming to you first. +As fate has it, the person calling is the owner of the local race-track, wanting to offer you a deal. It turns out that he wants to sell one of his very prestigious virgin runners to you. $He's been the champion of the race track for three years in a row now, the virgin queen of the slave-girl sprinters... so the man decided he'd maximize his profit by selling $him at the height of $his popularity instead of chancing a loss in the next big race. It's a young woman's sport, and with new talent being trained, he feels it's time to give the <<if $activeSlave.actualAge >= 20>>young adult<<elseif $activeSlave.actualAge >= 13>>teenaged<<else>>pre-teen<</if>> slave<<= $girl>> a new purpose. There are numerous interested parties in buying $him of course, but out of respect he is coming to you first. <br><br> -//The young woman is really pretty and tall, if a bit plain in the breast department. With the fame $he has earned during $his racing career, $he'd draw quite a bit of interest if used as a whore. The price for $him reflects that of course - you doubt you can get a price under <<print cashFormat(10000)>>.// +//The young $woman is really pretty and tall, if a bit plain in the breast department. With the fame $he has earned during $his racing career, $he'd draw quite a bit of interest if used as a whore. The price for $him reflects that of course - you doubt you can get a price under <<print cashFormat(10000)>>.// <<case "repo housekeeper">> @@ -2271,15 +2271,15 @@ Coming to your desk in the morning, you see that your assistant has flagged an i <br><br> The current sale offer by the company was taken from a college frat-house — apparently being enrolled at the small university in your arcology doesn't mean that the guys know their asses from their elbows in money-management. A few too many parties and frivolous purchases sent an asset reclamation officer to their door, soon leaving with one of those recent purchases — a pretty female slave who doubled as both a housekeeper and fuckhole for the whole bunch of horny students. $He's cute and apparently well-trained, if a bit exhausted right now after numerous gangbangs $his former owners put $him through. <br><br> -//The repo-company doesn't hold on to assets long, they just want to get new cash pretty quickly - which makes this a nice opportunity, as the price for the young woman is set pretty low. It'll just take <<print cashFormat(2500)>> to buy $him off their hands.// +//The repo-company doesn't hold on to assets long, they just want to get new cash pretty quickly - which makes this a nice opportunity, as the price for the young $woman is set pretty low. It'll just take <<print cashFormat(2500)>> to buy $him off their hands.// <<case "repo nanny">> Coming to your desk in the morning, you see that your assistant has flagged an interesting offer for you to check out in the newsletter of a professional repossession company. Life in the Free Cities being what it is, there are winners and losers of the ever-changing local and global realities... and when someone falls upon hard times, the repo-men and repo-women start their work. Grim-faced and unmoved by sympathy, they go in to seize the debtor's assets to pay off their debts - which does at times include some quite interesting pieces of merchandise, like a nice slave or two. <br><br> -The current sale offer by the company was taken from a businesswoman's apartment - one of the higher income strata of the arcology, she's recently had fortune turn from her due to some unfortunate occurrences outside your demesne of the free cities. The file doesn't say exactly which — some natural catastrophe, raiders, competing business or whatnot — one thing is for sure though, she's in a financial pinch right now. All of which meant that her slave nanny was fair game to be taken and is now awaiting re-sale. As $his mistress never had any sexual interest in the slave, the young woman is actually a virgin and used to the relatively cushy life of just watching children. The fact that all of that ended from one day to the next has made $him quite afraid for $his future... +The current sale offer by the company was taken from a businesswoman's apartment - one of the higher income strata of the arcology, she's recently had fortune turn from her due to some unfortunate occurrences outside your demesne of the free cities. The file doesn't say exactly which — some natural catastrophe, raiders, competing business or whatnot — one thing is for sure though, she's in a financial pinch right now. All of which meant that her slave nanny was fair game to be taken and is now awaiting re-sale. As $his mistress never had any sexual interest in the slave, the young $woman is actually a virgin and used to the relatively cushy life of just watching children. The fact that all of that ended from one day to the next has made $him quite afraid for $his future... <br><br> -//The repo-company doesn't hold on to assets long, they just want to get new cash pretty quickly - which makes this a nice opportunity, as the price for the young woman is set pretty low. It'll just take <<print cashFormat(2500)>> to buy $him off their hands.// +//The repo-company doesn't hold on to assets long, they just want to get new cash pretty quickly - which makes this a nice opportunity, as the price for the young $woman is set pretty low. It'll just take <<print cashFormat(2500)>> to buy $him off their hands.// <<case "farm cow">> @@ -2303,7 +2303,7 @@ As you're working on some boring administrative matters, a courier comes to your <br><br> From the looks of all the brochures and extra information included, the association's president is well-versed in how the Free Cities are run... leading him to promote his group directly to you. And not only that - in an effort to curry favor, he included a slave's records, including an offer to buy the fresh and yet unused virgin cow from his own stable for an almost ridiculously low price. <br><br> -//Checking $his stats and the videos included, you see the young woman is healthy and well cared for, with a nice pair of tits. $His records indicate that $he is very fertile and has excellent genes, promising a nice line of slaves to be bred in $his womb. With the registration and all, it'll still just take <<print cashFormat(1500)>> to buy $him and add $him to your own slave lineup.// +//Checking $his stats and the videos included, you see the young $woman is healthy and well cared for, with a nice pair of tits. $His records indicate that $he is very fertile and has excellent genes, promising a nice line of slaves to be bred in $his womb. With the registration and all, it'll still just take <<print cashFormat(1500)>> to buy $him and add $him to your own slave lineup.// <<case "orphan rebellious female">> @@ -2336,25 +2336,25 @@ At any rate, $he's a fine capture. And unsurprisingly, they want to get rid of $ A call comes in from an old world household. The caller appears on your screen, a worn down matronly $woman flanked by $his two daughters. The middle-aged mother addresses you in a formal yet halting manner, as if rehearsing an unfamiliar speech. "I don't know how closely you watch the old world from where you are, but finding steady work without an education is becoming increasingly difficult". <br><br> -The mother pauses to glance at $his daughters before continuing. "I want my daughters to have a chance to make a life for themselves. I know that if I can pay their way towards attending University, then I will have succeeded as a parent." +The mother pauses to glance at $his daughters before continuing. "I want my daughter<<s>> to have a chan<<c>>e to make a life for them<<s>>elve<<s>>. I know that if I can pay their way toward<<s>> attending Univer<<s>>ity, then I will have <<s>>u<<cc>>eeded a<<s>> a parent." <br><br> -$He begins to weep quietly, but continues after $his daughters lay their hands supportively on $his shoulder. "Could you enslave me, <<if $PC.title != 0>>sir<<else>>ma'am<</if>>? It's the only way I have to pay for their tuition." +$He begins to weep quietly, but continues after $his daughters lay their hands supportively on $his shoulder. "Could you en<<s>>lave me, <<if $PC.title != 0>><<s>>ir<<else>>ma'am<</if>>? It'<<s>> the only way I have to pay for their tuition." <<case "spoiled daughter">> -Your desk flags a video message as coming from an influential old world businessman. To your surprise, rather than the portly visage you were expecting, a pretty young face appears on your screen. "Oh. My. God. How long does it take to answer a call?" +Your desk flags a video message as coming from an influential old world businessman. To your surprise, rather than the portly visage you were expecting, a pretty young face appears on your screen. "Oh. My. God. How long doe<<s>> it take to an<<s>>wer a call?" <br><br> -The $girl speaks in a ridiculously high, bubblegum voice and bounces indignantly around $his father's luxurious office as $he rants, barely acknowledging your presence on the other end of the call. "Daddy says that I'm spending too much of his money but what the hell is all of his money for if he's not spending it on his little $girl?" +The $girl speaks in a ridiculously high, bubblegum voice and bounces indignantly around $his father's luxurious office as $he rants, barely acknowledging your presence on the other end of the call. "Daddy <<s>>ay<<s>> that I'm <<s>>pending too much of hi<<s>> money but what the hell i<<s>> all of hi<<s>> money for if he'<<s>> not <<s>>pending it on hi<<s>> little $girl?" <br><br> -$He pauses, looking directly at you for the first time, though you get the sense that $he seems more interested in your own luxurious surroundings. "Daddy told me all about you arcology types, so I know what you're all about. Anyways, I don't care about freedom and stuff if you treat me like the perfect princess I am." +$He pauses, looking directly at you for the first time, though you get the sense that $he seems more interested in your own luxurious surroundings. "Daddy told me all about you arcology type<<s>>, <<s>>o I know what you're all about. Anyway<<s>>, I don't care about freedom and <<s>>tuff if you treat me like the perfect prin<<c>>e<<ss>> I am." <br><br> -"So, could you enslave me or whatever?" +"<<S>>o, could you en<<s>>lave me or whatever?" <<case "starving artist">> -<<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; the odd individual standing before you is just such a woman. +<<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; the odd individual standing before you is just such a $woman. <br><br> -"What we're going to do together will be recorded in the annals of history" $he says expansively, sweeping about your office in a series of twirls and pirouettes. Though when you enquire as to what exactly you'll be doing together, all $he can give you is a torrent of vague artistic prattle. In the end, all you can get out of $him is an understanding that $he sees enslavement as the ultimate form of creative self-expression. +"What we're going to do together will be recorded in the annal<<s>> of hi<<s>>tory," $he says expansively, sweeping about your office in a series of twirls and pirouettes. Though when you enquire as to what exactly you'll be doing together, all $he can give you is a torrent of vague artistic prattle. In the end, all you can get out of $him is an understanding that $he sees enslavement as the ultimate form of creative self-expression. <br><br> $He seems more than a little odd, but not unattractive. At the very least, $he's not likely to be a boring slave to have around the penthouse. @@ -2386,7 +2386,7 @@ Every push, every desperate contraction must be agonizing to $him. Fortunately y <<case "overwhelmed farmgirl">> -Your desk flags a video message as having potential. It's a rather homely farmer begging for you to enslave $him, not truly unusual given the ever increasing droughts and dangerous weather patterns. Given the huge stomach rounding out $his worn clothing, $he is likely ready to drop quints and desperately seeking any sort of future for them. You allow $him to speak $his plea. "Please <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>, I just can't go on out here. I'm always hungry and can barely even work with this belly in the way. I swear, it gets heavier every day and a life of physical labor just won't let me get by. I don't know what I'll do if you say no, so please, have mercy on a poor farmer." +Your desk flags a video message as having potential. It's a rather homely farmer begging for you to enslave $him, not truly unusual given the ever increasing droughts and dangerous weather patterns. Given the huge stomach rounding out $his worn clothing, $he is likely ready to drop quints and desperately seeking any sort of future for them. You allow $him to speak $his plea. "Plea<<s>>e <<if $PC.title == 1>><<s>>ir<<else>>ma'am<</if>>, I ju<<s>>t can't go on out here. I'm alway<<s>> hungry and can barely even work with thi<<s>> belly in the way. I <<s>>wear, it get<<s>> heavier every day and a life of phy<<s>>ical labor ju<<s>>t won't let me get by. I don't know what I'll do if you <<s>>ay no, <<s>>o plea<<s>>e, have mer<<c>>y on a poor farmer." <<case "held POW">> @@ -2405,7 +2405,7 @@ While digging through the database of a POW camp for anything of value, you find <<run SetBellySize($activeSlave)>> <</if>> <</if>> -$His odd behaviour suggests that $his will to live has nearly been snuffed out. $He likely wouldn't have lasted much longer, though it's questionable if $he still will if you let $him walk free. +$His odd behavior suggests that $his will to live has nearly been snuffed out. $He likely wouldn't have lasted much longer, though it's questionable if $he still will if you let $him walk free. <<case "embryo appropriation">> @@ -2433,7 +2433,7 @@ While digging through the highest security and clearance level database of a pow As a minor point of information on your daily news download, you see that yet another of the new religions (cults really) that tend to spring up like weeds in the Free Cities has met its almost inevitable fate. Even with the most charismatic leader, starry-eyed idealism or boundless greed in milking the followers usually put a sudden end to the various self-declared churches, temples and holy places. In this case, the cult leader successfully made a hasty getaway, leaving his creditors and conned believers behind. Repo men are sent out in force, carting off the contents of the 'house of worship' and the luxurious apartment the man kept. <br><br> -Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young, naked and extremely pregnant <<if ($activeSlave.actualAge >= 18)>>woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>little girl<</if>> slowly waddles through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He caught your interest just enough to check the slave markets for a potential better look at that cult's tastes - and indeed, half an hour later $he's being listed as for sale. +Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when a pretty, young, naked and extremely pregnant <<if ($activeSlave.actualAge >= 18)>>$woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>little $girl<</if>> slowly waddles through the image, escorted by two repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been the cult leader's personal slave. $He caught your interest just enough to check the slave markets for a potential better look at that cult's tastes - and indeed, half an hour later $he's being listed as for sale. <br><br> The <<if ($activeSlave.actualAge >= 18)>>young $woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>child<</if>> is likely a virgin, given $his obvious discomfort at being poked and prodded for display and is trying $his hardest to cover $his shame. Quickly reading through the details, your suspicions are confirmed; $he is indeed a heavily pregnant virgin. Odds are high that $he was treated as a "Virgin Mary" for the cult and is likely going to catch the eye of any collectors of religious objects. <br><br> @@ -2445,7 +2445,7 @@ As a minor point of information on your daily news download, you see that yet an <br><br> Wondering what sorts of strange paraphernalia or weird sex toys the grifter might have kept himself amused with, you casually select the feed of one of the surveillance cameras that overlooks the area. And indeed, the contents of many boxes being carried out of there do have a certain perverted look to them, prompting you to zoom in - which is when the obscenely child-filled body of a <<if ($activeSlave.actualAge >= 18)>>$woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>little $girl<</if>> is slowly carted through the image, pushed along by several repo men. Immediately directing the camera to follow $him, you see that they scan and log $him like any of the other items in the household liquidation - $he must have been a slave used by the cult leader for religious rituals. $He caught your interest just enough to check the slave markets for a potential better look at that cult's tastes - and indeed, half an hour later $he's being listed as for sale. <br><br> -The <<if ($activeSlave.actualAge >= 18)>>young woman<<elseif ($activeSlave.actualAge >= 13)>>girl<<else>>child<</if>> isn't in the greatest of shape, which is understandable when one is ready to burst at the seams with child, and completely devoid of any semblance of awareness of the current situation. $He was likely nothing more than a sacrifice to act as a conduit for their Lord to enter the world; in other words, an excuse to load a girl up with fertility drugs and fuck $him ridiculously pregnant before your followers while they shout praise to the heavens to every load of cum. Going by how distinctly you can see the life inside $him pushing against the thinning walls of $his abdomen, $he's likely going to either give birth or explode into crying babies at any time, something not lost on those looking to pick up a cheap bundle of future prospects. +The <<if ($activeSlave.actualAge >= 18)>>young $woman<<elseif ($activeSlave.actualAge >= 13)>>$girl<<else>>child<</if>> isn't in the greatest of shape, which is understandable when one is ready to burst at the seams with child, and completely devoid of any semblance of awareness of the current situation. $He was likely nothing more than a sacrifice to act as a conduit for their Lord to enter the world; in other words, an excuse to load a girl up with fertility drugs and fuck $him ridiculously pregnant before your followers while they shout praise to the heavens to every load of cum. Going by how distinctly you can see the life inside $him pushing against the thinning walls of $his abdomen, $he's likely going to either give birth or explode into crying babies at any time, something not lost on those looking to pick up a cheap bundle of future prospects. <br><br> //Someone already started bidding for $him and more bids are coming in fast. As such things usually go, you guess that the price will come out to about <<print cashFormat(5000)>> in the end.// @@ -2487,23 +2487,23 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <</switch>> /* END SLAVE GENERATION AND INTRODUCTION */ <<switch $recruit>> -<<case "female SD" "male SD" "female SD 2">> +<<case "female SD" "female SD 2" "male SD">> <<set $contractCost = 6000>> <<case "female SE">> <<set $contractCost = 4000>> <<case "MTF SE">> <<set $contractCost = 2000>> -<<case "DG SE" "farm virgin cow" "orphan rebellious female" "orphan femboy">> +<<case "DG SE" "farm virgin cow" "orphan femboy" "orphan rebellious female">> <<set $contractCost = 1500>> -<<case "CCS angel" "racer DG chaser" "racer loser" "held POW" "blessed vessel">> +<<case "blessed vessel" "CCS angel" "held POW" "racer DG chaser" "racer loser">> <<set $contractCost = 5000>> <<case "CCS DA">> <<set $contractCost = 7500>> -<<case "racer winner" "captured teen" "paternalist swan song" "embryo appropriation" "blessed virgin">> +<<case "blessed virgin" "captured teen" "embryo appropriation" "paternalist swan song" "racer winner">> <<set $contractCost = 10000>> -<<case "rogue cyborg" "princely betrayal" "forbidden love">> +<<case "forbidden love" "princely betrayal" "rogue cyborg">> <<set $contractCost = 100000>> -<<case "repo housekeeper" "repo nanny" "farm cow" "farm bull" "school sale" "school trap">> +<<case "farm bull" "farm cow" "repo housekeeper" "repo nanny" "school sale" "school trap">> <<set $contractCost = 2500>> <<case "cleaning house">> <<set $contractCost = 50000>> @@ -2534,11 +2534,11 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "embryo appropriation">> $He sobs as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He tries to resist placing $his biometric signature in testament to the truth of $his debt, but when you observe that the alternative is the death of $him and $his unborn, $he complies. The process is completed with a distinct anticlimax: $he is one of your slaves now, and soon so shall $his spawn. <<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. + 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 cyber<<= $loli>>. <<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 <<= 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>>?" + 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 <<= WrittenMaster($activeSlave)>>, 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 <<s>>tuff, <<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 <<= 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>>?" + 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 <<= WrittenMaster($activeSlave)>>, 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 <<s>>tuff, <<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">> @@ -2566,7 +2566,7 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of $He thanks you profusely for purchasing $him, and $he means it. $He's relieved to have been bought by a kind master and promises to give you a private performance when ever you want. <<set $swanSongWeek = $week, $swanSong = 2>> <<case "tg addict">> - When $he awakes from surgery, $he slowly realizes that whatever $he programmed the remote surgery to do wasn't done; instead, $he's a young woman with a flat chest and a new virgin pussy. It takes a while for you to get $him to understand, through $his tears, that $he is now obliged to accept enslavement due to $his extreme debts. Eventually $he figures it out and glares daggers at you as $he signs $his life away. + When $he awakes from surgery, $he slowly realizes that whatever $he programmed the remote surgery to do wasn't done; instead, $he's a young $woman with a flat chest and a new virgin pussy. It takes a while for you to get $him to understand, through $his tears, that $he is now obliged to accept enslavement due to $his extreme debts. Eventually $he figures it out and glares daggers at you as $he signs $his life away. <<case "school sale">> $He thanks you profusely for purchasing $him, and $he means it. $He's happy to have been bought by a real master, and to go by the hardness of $his nipples, looking forward to finally losing $his virginity. <<case "school trap">> @@ -2578,45 +2578,45 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "shemale PC">> You put $him through the enslavement procedures. $He's almost excited. Though $he knows $he's signed $himself over to a life of sexual slavery, the anticipation of becoming more feminine is clearly more important to $him than any kind of fear. <<case "female SD">> - Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with ' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. In shock and with tears in $his eyes, $he dejectedly follows the guard you summon to have $him brought to the slave quarters. + Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with ' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young $woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. In shock and with tears in $his eyes, $he dejectedly follows the guard you summon to have $him brought to the slave quarters. <<case "female SD 2">> Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with ' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young $woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. $He makes a poor decision to rebel against you on the way to the slave quarters, but $his jiggling mass makes it a pathetically short distance before tiring and dejectedly following the guard the rest of the way. <<case "male SD">> Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where he is being kept, you tell the young man he's getting out of jail right away. He cooperates to having his biometric readings taken and logged, only later realizing this isn't for a release but to register him as a slave. In shock and with tears in his eyes, he gets angry and tries to fight, only to be overwhelmed by your guards and be dragged off to the remote surgery. It doesn't take long at all to add a pretty dickgirl to your slave quarters after that. <<case "female SE">> - Bidding for the girl and winning $him in the auction, you await $him and the student selling $him in your penthouse. As the young man guides $him in, $he gives you a properly deferential greeting, then looks wide-eyed at the décor and wealth presented all around. Yet as $his 'lover' informs the woman that $he'll belong to you now, tears start flowing down $his cheeks as $his heart almost audibly breaks. Smiling at the man over the sobbing shape of your newly acquired virgin slave-girl, you casually push a button to approve the money transfer and he strides out of the room after checking his smart-phone for the transfer. On your orders, $he strips and submits to biometric scanning, registering $him as your property. + Bidding for the $girl and winning $him in the auction, you await $him and the student selling $him in your penthouse. As the young man guides $him in, $he gives you a properly deferential greeting, then looks wide-eyed at the décor and wealth presented all around. Yet as $his 'lover' informs the $woman that $he'll belong to you now, tears start flowing down $his cheeks as $his heart almost audibly breaks. Smiling at the man over the sobbing shape of your newly acquired virgin slave<<= $girl>>, you casually push a button to approve the money transfer and he strides out of the room after checking his smart-phone for the transfer. On your orders, $he strips and submits to biometric scanning, registering $him as your property. <<case "MTF SE">> Sending an offer to buy the slave girl, you get a confirmation from the student very shortly afterward. It doesn't take much longer before he appears at the security office leading into your penthouse to drop off his slave, leaving $him behind without even saying goodbye. The sniffling and dejected girl is brought into your office so you can check $him out in person afterward. On your orders, $he strips and submits to biometric scanning, registering $him as your property. <<case "DG SE">> - Sending an offer to buy the dickgirl, you get a confirmation from the student very shortly afterward. It doesn't take much longer before he appears at the security office leading into your penthouse to drop off his slave, leaving $him behind without even saying goodbye. The sniffling and dejected girl is brought into your office so you can check $him out in person afterward. On your orders, $he strips and submits to biometric scanning, registering $him as your property. + Sending an offer to buy the dickgirl, you get a confirmation from the student very shortly afterward. It doesn't take much longer before he appears at the security office leading into your penthouse to drop off his slave, leaving $him behind without even saying goodbye. The sniffling and dejected $girl is brought into your office so you can check $him out in person afterward. On your orders, $he strips and submits to biometric scanning, registering $him as your property. <<case "gang leader">> Opening a voice-link, you call in two security guards to await the elevator and have your new property brought to the remote surgery. After some fun playing with various sliders and buttons in its settings, you have the machine start on modding the man into a new dickgirl with a pleasing set of features. By the time $he comes to after the operation and quick-heal treatment, the legalities of enslavement are completed too, leaving you with another slave registered as your property. Of course, $he is naturally horrified and furious with you; where there was once a tough young man's square jaw, there is now a definitively feminine face which looks rather cute when angry. The rest of $him is still broad-shouldered and muscular, with all the tattoos and a well-sized dick - but you can always mod that later if you want to. - <<case "DG runaway" "herm runaway" "female runaway">> - With a few keystrokes, you wire the payment to the slave-girl's owner, then have your guardsmen bring $him from the station infirmary to your penthouse. $He is led to stand before you, shivering in terror and looking at $his feet. Only after an insistent command does $he look up long enough to be biometrically scanned and registered as your property. + <<case "DG runaway" "female runaway" "herm runaway">> + With a few keystrokes, you wire the payment to the slave<<= $girl>>'s owner, then have your guardsmen bring $him from the station infirmary to your penthouse. $He is led to stand before you, shivering in terror and looking at $his feet. Only after an insistent command does $he look up long enough to be biometrically scanned and registered as your property. <<case "CCS angel" "CCS DA">> - Winning out in the auction, you have the young woman brought to you straight away. $He is led into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. Obediently, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. + Winning out in the auction, you have the young $woman brought to you straight away. $He is led into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. Obediently, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. <<case "blessed virgin">> - Winning out in the auction, you have the girl brought to you straight away. $He is helped into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. With quivering hands, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. + Winning out in the auction, you have the $girl brought to you straight away. $He is helped into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. With quivering hands, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. <<case "blessed vessel">> Winning out in the auction, you have the $girl brought to you straight away. $He is rolled into your penthouse completely nude giving you a full view of $his cavernous pussy and how it is barely holding back a flood of life from being released upon your floor. Pondering whether or not this was worth it, you submit $him to biometric scanning, registering $him, and $his coming brood, as your property. <<case "racer DG chaser">> After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the $girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the dickgirl athlete, dressed in nothing but a long bathrobe and with a slightly sullen look on $his face. Seems like $he was brought here from $his former owner's premises without so much as a warning or chance to put on any clothes. He really must have wanted $him out of his racing stable quickly. On your orders, $he pushes the robe over $his shoulders and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. <<case "racer loser">> - After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the young athlete, dressed in a cute yet revealing white dress, the 'showing off' outfit used for virgin runners - or ex-virgins, in $his case. On your orders, $he obediently takes it off, letting the thin fabric fall to the floor, then submits to biometric scanning, registering $him as your property. + After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the $girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the young athlete, dressed in a cute yet revealing white dress, the 'showing off' outfit used for virgin runners - or ex-virgins, in $his case. On your orders, $he obediently takes it off, letting the thin fabric fall to the floor, then submits to biometric scanning, registering $him as your property. <<case "racer winner">> - After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the virgin athlete, dressed in a cute yet revealing white dress, highlighting $his pureness and virginity. On your orders, $he readily takes it off, letting the thin fabric fall to the floor, then submits to biometric scanning, registering $him as your property. + After some negotiations with the race track owner, you finally agree on a good price. After he tells his subordinates to bring the $girl to you, the two of you chat a bit about business matters and you're invited to the owner's booth for the next big race. A short while later, guards bring in the virgin athlete, dressed in a cute yet revealing white dress, highlighting $his pureness and virginity. On your orders, $he readily takes it off, letting the thin fabric fall to the floor, then submits to biometric scanning, registering $him as your property. <<case "repo housekeeper">> - With a few keystrokes, you wire the payment to the repo company, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, what will my new tasks in your household be? Shall I just clean or will there be... other things for me to do?" The eager tremble in $his voice tells you that $he's more than a little aroused by the thought of being used, so you tell $him it'll all depend on if $he's a good $girl... + With a few keystrokes, you wire the payment to the repo company, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, what will my new ta<<s>>k<<s>> in your hou<<s>>ehold be? <<Sh>>all I ju<<s>>t clean or will there be... other thing<<s>> for me to do?" The eager tremble in $his voice tells you that $he's more than a little aroused by the thought of being used, so you tell $him it'll all depend on if $he's a good $girl... <<case "repo nanny">> - With a few keystrokes, you wire the payment to the repo company, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, I - umm... what will be required of me? I'm really good with children and... and I can sing. Also, I've -" The fearful tremble in $his voice tells you that $he's more than a little afraid of what you might have planned for $him. Waving off the slave's frightened babbling, you tell $him that you'll decide what to do with $him when you feel like it. + With a few keystrokes, you wire the payment to the repo company, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, I - umm... what will be required of me? I'm really good with children and... and I can <<s>>ing. Al<<s>>o, I've -" The fearful tremble in $his voice tells you that $he's more than a little afraid of what you might have planned for $him. Waving off the slave's frightened babbling, you tell $him that you'll decide what to do with $him when you feel like it. <<case "farm cow">> - Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the woman you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection. + Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the $woman you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection. <<case "farm bull">> Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the dickgirl you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection, a sizable cock swinging between $his legs. <<case "farm virgin cow">> - Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the young woman you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection. + Making a video call to tell the association president you accept the asking price for $activeSlave.slaveName, you're drawn into a conversation with the skillful speaker, at the end of which you agree to be the honored guest for their convention. Who knows, new developments in the slave farming industry might actually prove interesting to learn about, and the pleasure of acquiring a new slave will make it worth your while even if it turns out to be boring. In short notice, the young $woman you just bought is brought to your penthouse where $he obediently strips and stands ready for your inspection. <<case "orphan rebellious female">> - Transferring the money with a few clicks on your smart-phone, you have your new acquisition brought to your penthouse. $activeSlave.slaveName reacts sullenly to an order to strip, so the guardmen's assistance is required to peel $his clothes off $him, followed by the young woman sticking out $his tongue as $he is scanned and registered as your property. + Transferring the money with a few clicks on your smart-phone, you have your new acquisition brought to your penthouse. $activeSlave.slaveName reacts sullenly to an order to strip, so the guardmen's assistance is required to peel $his clothes off $him, followed by the young $woman sticking out $his tongue as $he is scanned and registered as your property. <<case "orphan femboy">> Transferring the money with a few clicks on your smart-phone, you have your new acquisition brought to your penthouse. $activeSlave.slaveName does look rather afraid at the whole business of actually being sold, but $he follows your instruction obediently to get naked and let $himself be biometrically scanned and registered as your property. <<case "captured teen">> @@ -2624,7 +2624,7 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "starving artist">> $He twirls and poses artistically as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He seems a little disappointed that $he won't have the opportunity to practice $his penmanship but nonetheless places $his biometric signature in testament to the truth of $his voluntary enslavement. <<case "repo milf housekeeper">> - With a few keystrokes, you wire the payment to the frat house, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, what will my new tasks in your household be? Shall I just clean or will there be... other things for me to do?" The eager tremble in $his voice tells you that $he's more than a little aroused by the thought of being used, so you tell $him it'll all depend on if $he's a good MILF. + With a few keystrokes, you wire the payment to the frat house, then wait for $his delivery. After being brought into your penthouse by security, the legalities and biometric scanning with $him are taken care off fairly quickly and without fuss. Stepping towards you after the chime announcing a successful registration as your property, $activeSlave.slaveName lowers $his head obediently and asks, "<<Master>>, what will my new ta<<s>>k<<s>> in your hou<<s>>ehold be? <<Sh>>all I ju<<s>>t clean or will there be... other thing<<s>> for me to do?" The eager tremble in $his voice tells you that $he's more than a little aroused by the thought of being used, so you tell $him it'll all depend on if $he's a good MILF. <<case "spoiled daughter">> A few days after granting your assent to the $girl's offer, $he appears at your penthouse laden with luggage and handbags. Much to your relief, $he gets through the legalities and biometric scanning with little more than a pout. <<case "desperate university milf">> @@ -2632,7 +2632,7 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "immigrant">> $He comes immediately from the immigration center to your arcology. You patiently explain the realities of the situation to $him. $He isn't too bright and it takes a while for things to sink in. The scanners finally do it, though. $He sobs as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He tries to resist placing $his biometric signature in testament to the truth of $his debt, but when you observe that the alternative is death, $he complies. The process is completed with a distinct anticlimax: $he is one of your slaves now. <<case "overwhelmed farmgirl">> - $He barely manages to waddle into your penthouse before crashing onto your couch with permission. $He willingly places $his biometric signature in testament to the truth of $his voluntary enslavement. $He looks almost relieved. "I traded my virginity for bread and look what it got me. I'm so glad you took me in, I don't know how I would have carried on in a few months, I mean look at me." $He gestures to $his gravid bulge. 'A few months'? You probe further. "Huh? Oh, yes... I'm only four months along... You can see why I needed this now, right? I'm bigger than every other girl I've ever seen and I'm not even halfway there. You saved my life, even if you, um, get rid of them, you still saved me. So thank you." You can't believe what you are hearing, but a quick sonogram confirms it. Both you and $him stare in shock at the sheer number of children growing in $his womb. A rough estimate places their count at a staggering one-hundred-and-fifty. "...no way... There can't be that many in me..." + $He barely manages to waddle into your penthouse before crashing onto your couch with permission. $He willingly places $his biometric signature in testament to the truth of $his voluntary enslavement. $He looks almost relieved. "I traded my virginity for bread and look what it got me. I'm <<s>>o glad you took me in, I don't know how I would have carried on in a few month<<s>>, I mean look at me." $He gestures to $his gravid bulge. 'A few months'? You probe further. "Huh? Oh, ye<<s>>... I'm only four month<<s>> along... You can <<s>>ee why I needed thi<<s>> now, right? I'm bigger than every other girl I've ever <<s>>een and I'm not even halfway there. You <<s>>aved my life, even if you, um, get rid of them, you <<s>>till <<s>>aved me. <<S>>o thank you." You can't believe what you are hearing, but a quick sonogram confirms it. Both you and $him stare in shock at the sheer number of children growing in $his womb. A rough estimate places their count at a staggering one-hundred-and-fifty. "...No way... There can't be that many in me..." <<set $activeSlave.preg = 16>> <<set $activeSlave.pregType = 150>> <<set $activeSlave.pregWeek = $activeSlave.preg>> @@ -2686,11 +2686,11 @@ 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 safe, the legalities and biometric scanning are complete and it is sold off to a very eager robophile. <<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 answer appears in the form of a purchasing agent, here to take $him away. As he restrains the disbelieving girl, you tell $him $he's been purchased by a brothel, so $he's going to be fucked about 70,000 times before $he gets to be too old and is retired, so $he can be sure $he won't be bored. $He releases a wail of utter despair, quickly cut off by a sturdy bag being fastened over $his head. + 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 answer appears in the form of a purchasing agent, here to take $him away. As he restrains the disbelieving $girl, you tell $him $he's been purchased by a brothel, so $he's going to be fucked about 70,000 times before $he gets to be too old and is retired, so $he can be sure $he won't be bored. $He releases a wail of utter despair, quickly cut off by a sturdy bag being fastened over $his head. <<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 answer appears in the form of a purchasing agent, here to take $him away. As he restrains the disbelieving bitch, you tell $him $he's been purchased by a brothel, so $he's going to be fucked about 70,000 times before $he gets to be too old and is retired, so $he can be sure $he won't be bored. $He releases a wail of utter despair, quickly cut off by a sturdy bag being fastened over $his head. <<case "whore recruit">> - When the purchasing agent appears to take $him away, $he looks rueful. "God fucking damn it," $he says, less angrily than you expected. "I should have known. $HeadGirl.slaveName played me good. Treat _him2 right, $he's got skills." + When the purchasing agent appears to take $him away, $he looks rueful. "God fucking damn it," $he says, less angrily than you expected. "I <<sh>>ould have known. $HeadGirl.slaveName played me good. Treat _him2 right, <<he 2>>'<<s>> got <<s>>kill<<s>>." <<case "female debtor">> $He sobs as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He tries to resist placing $his biometric signature in testament to the truth of $his debt, but when you observe that the alternative is death, $he complies. A purchasing agent appears to take $him away. <<case "male debtor">> @@ -2702,9 +2702,9 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "paternalist swan song">> $He thanks you profusely for purchasing $him and before you get the chance to correct $him, a purchaser's agent arrives to take $him away. $He looks at you in terror, beginning to sob at having trusted you. You place a hand on $his shoulder and reassure $him; $he has many fans in $arcologies[0].name that would love to treat $him with the kindness $he deserves and you made sure the nicest of the bunch was the one who bought $his contract. $He brightens up upon hearing your words and leaves the penthouse smiling as the agent talks about all the preparations $his new owner has set up for $him. <<case "desperate milf">> - $He cooperates as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He willingly places $his biometric signature in testament to the truth of $his voluntary enslavement. A purchasing agent appears to take $him away, which $he accepts resignedly, though $he does ask you who purchased $him. You tell $him that $his ample breasts have gotten $him bought by a slave dairy; $he looks thoughtful. "I'm going to be a cow?" $He turns $his torso a little, sloshing $his breasts from side to side. "Well, that doesn't sound //too// bad. Thank you." + $He cooperates as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He willingly places $his biometric signature in testament to the truth of $his voluntary enslavement. A purchasing agent appears to take $him away, which $he accepts resignedly, though $he does ask you who purchased $him. You tell $him that $his ample breasts have gotten $him bought by a slave dairy; $he looks thoughtful. "I'm going to be a cow?" $He turns $his torso a little, sloshing $his breasts from side to side. "Well, that doe<<s>>n't <<s>>ound //too// bad. Thank you." <<case "tg addict">> - When $he awakes from surgery, $he slowly realizes that whatever $he programmed the remote surgery to do wasn't done; instead, $he's a young woman with a flat chest and a new virgin pussy. It takes a while for you to get $him to understand, through $his tears, that $he is now obliged to accept enslavement due to $his extreme debts. Eventually $he figures it out, assisted by a purchasing agent, who restrains $him for transportation despite $his grief. + When $he awakes from surgery, $he slowly realizes that whatever $he programmed the remote surgery to do wasn't done; instead, $he's a young $woman with a flat chest and a new virgin pussy. It takes a while for you to get $him to understand, through $his tears, that $he is now obliged to accept enslavement due to $his extreme debts. Eventually $he figures it out, assisted by a purchasing agent, who restrains $him for transportation despite $his grief. <<case "handsome PC">> You put $him through the enslavement procedures. $He only realizes $his mistake when $his purchaser's agent appears to take $him away. $He looks at you in total unwillingness to believe you'd do such a thing; you observe politely that $he's likely to receive an easy assignment like being a house servant in about twenty years. In the meantime, you continue, $he's been purchased by a brothel, so $he's going to be fucked about 70,000 times before then. $He releases a wail of utter despair, quickly cut off by a sturdy bag being fastened over $his head. <<case "womanly PC">> @@ -2712,32 +2712,32 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "shemale PC">> You put $him through the enslavement procedures. $He only realizes the true situation when $his purchaser's agent appears to take $him away. $He looks at you with a faint hopefulness. "Do you think they'll pay for surgery and drugs for me?" $he asks plaintively. You observe that they probably will; $he's been sold to a boutique trainer that produces high-class gelded escorts. $He quails a little at hearing about the castration, but squares $his shoulders and accompanies the agent willingly. <<case "female SD">> - Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. In shock and with tears in $his eyes, $he dejectedly follows the guard you summon to have $him brought to the slave broker you sold $him to. + Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young $woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. In shock and with tears in $his eyes, $he dejectedly follows the guard you summon to have $him brought to the slave broker you sold $him to. <<case "female SD 2">> - Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with ' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. $He makes a poor decision to rebel against $his guard you summoned to have $him brought to the slave broker you sold $him to, earning $himself a taser shock and a degrading cart ride with $his ass bare for all to see. + Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where $he is being kept, you tell the young $woman $he's getting out of jail right away. $He cooperates to having $his biometric readings taken and logged, only later realizing this isn't for $his release but to register $him as a slave. $He makes a poor decision to rebel against $his guard you summoned to have $him brought to the slave broker you sold $him to, earning $himself a taser shock and a degrading cart ride with $his ass bare for all to see. <<case "male SD">> Contacting the wealthy resident, you apologize for his inconvenience and offer to 'deal with' the matter personally. He is content with not having the hassle and agrees with little thought, leaving you owning the debt of the unfortunate student. Making your way to the guard station where he is being kept, you tell the young man he's getting out of jail right away. He cooperates to having his biometric readings taken and logged, only later realizing this isn't for a release but to register him as a slave. In shock and with tears in his eyes, he gets angry and tries to fight, only to be overwhelmed by your guards and be dragged off to the remote surgery. It doesn't take long at all before the student is transported to the office of the slave broker you sold $him to. <<case "gang leader">> Opening a voice-link, you call in two security guards to await the elevator and have your new property brought to the remote surgery. After some fun playing with various sliders and buttons in its settings, you have the machine start on modding the man into a new dickgirl with a pleasing set of features. By the time $he comes to after the operation and quick-heal treatment, the legalities of enslavement are completed too, leaving you with another slave registered as your property. Of course, $he is naturally horrified and furious with you, but this is nothing to the terror that dawns when a purchasing agent appears to take $him away. - <<case "DG runaway" "herm runaway" "female runaway">> - With a few keystrokes, you wire the payment to the slave-girl's owner, then have your guardsmen bring $him from the station infirmary to your penthouse. $He is led to stand before you, shivering in terror and looking at $his feet. Only after an insistent command does $he look up long enough to be biometrically scanned and registered as your property. Frowning at the emotional state the gang left $him in, you're relieved when your guards take $him away a moment later, to be transported to the office of a slave broker you know well. Oh well, now $he'll be someone else's problem to fix up. + <<case "DG runaway" "female runaway" "herm runaway">> + With a few keystrokes, you wire the payment to the slave<<= $girl>>'s owner, then have your guardsmen bring $him from the station infirmary to your penthouse. $He is led to stand before you, shivering in terror and looking at $his feet. Only after an insistent command does $he look up long enough to be biometrically scanned and registered as your property. Frowning at the emotional state the gang left $him in, you're relieved when your guards take $him away a moment later, to be transported to the office of a slave broker you know well. Oh well, now $he'll be someone else's problem to fix up. <<case "CCS angel">> - Winning out in the auction, you have the young woman brought to you straight away. $He is led into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. Obediently, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. When $he's taken away to the office of the slave broker you sold $him on to, the young woman sighs, sad that $he's not staying as yours in the luxurious penthouse you call your own. + Winning out in the auction, you have the young $woman brought to you straight away. $He is led into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. Obediently, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. When $he's taken away to the office of the slave broker you sold $him on to, the young $woman sighs, sad that $he's not staying as yours in the luxurious penthouse you call your own. <<case "CCS DA">> - Winning out in the auction, you have the young woman brought to you straight away. $He is led into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. Obediently, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. When $he's taken away to the office of the slave broker you sold $him on to, the young woman lets out a little huff, as if telling $himself that your luxurious penthouse can't be that good if you're not keeping $him for it. + Winning out in the auction, you have the young $woman brought to you straight away. $He is led into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. Obediently, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. When $he's taken away to the office of the slave broker you sold $him on to, the young $woman lets out a little huff, as if telling $himself that your luxurious penthouse can't be that good if you're not keeping $him for it. <<case "blessed virgin">> - Winning out in the auction, you have the young woman brought to you straight away. $He is helped into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. With shaking hands, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. When $he's taken away to the office of the slave broker you sold $him on to, the young woman lets out a little sob, as if fearful of $his future. + Winning out in the auction, you have the young $woman brought to you straight away. $He is helped into your penthouse in semitransparent shimmering gown - some sort of cult garb that was thrown into the sale as a bonus. It certainly looks amazing on $him, but you want to see all of your new acquisition so you order $him to strip. With shaking hands, $he slides the fabric off and lets it fall to the floor, then submits to biometric scanning, registering $him as your property. When $he's taken away to the office of the slave broker you sold $him on to, the young $woman lets out a little sob, as if fearful of $his future. <<case "blessed vessel">> - Winning out in the auction, you have the girl brought to you straight away. $He is rolled into your penthouse completely nude giving you a full view of $his cavernous pussy and how it is barely holding back a flood of life from being released upon your floor. Pondering whether or not this was worth it, you submit $him to biometric scanning, registering $him, and $his coming brood, as your property. The purchasing agent groans at that sight of $him, not eager at the amount of effort it will take him to roll $him to the volume breeder that purchased $him. + Winning out in the auction, you have the $girl brought to you straight away. $He is rolled into your penthouse completely nude giving you a full view of $his cavernous pussy and how it is barely holding back a flood of life from being released upon your floor. Pondering whether or not this was worth it, you submit $him to biometric scanning, registering $him, and $his coming brood, as your property. The purchasing agent groans at that sight of $him, not eager at the amount of effort it will take him to roll $him to the volume breeder that purchased $him. <<case "spoiled daughter">> - A few days after granting your assent to the girl's offer, $he appears at your penthouse laden with luggage and handbags. $activeSlave.slaveName bounces happily in $his heels and eagerly explains $his expectations regarding $his new life with you. Your response appears in the form of a purchasing agent, here to take $him away. As he restrains the disbelieving girl, you tell $him $he's been purchased by a brothel, so $he's soon going to have more sugar daddies than $his holes can take. $He releases a wail of utter despair, quickly cut off by a sturdy bag being fastened over $his head. + A few days after granting your assent to the $girl's offer, $he appears at your penthouse laden with luggage and handbags. $activeSlave.slaveName bounces happily in $his heels and eagerly explains $his expectations regarding $his new life with you. Your response appears in the form of a purchasing agent, here to take $him away. As he restrains the disbelieving $girl, you tell $him $he's been purchased by a brothel, so $he's soon going to have more sugar daddies than $his holes can take. $He releases a wail of utter despair, quickly cut off by a sturdy bag being fastened over $his head. <<case "desperate university milf">> - $He cooperates as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He willingly places $his biometric signature in testament to the truth of $his voluntary enslavement. A purchasing agent appears to take $him away, which $he accepts resignedly, though $he does ask you who purchased $him. Amused, you tell $him that $his reverence of education convinced you to sell $him to a brothel catering to inexperienced men. "I'm going to be a little bit like a teacher?" $He contemplates this unexpected turn of events. "Well, that's very thoughtful of you. Thank you." + $He cooperates as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He willingly places $his biometric signature in testament to the truth of $his voluntary enslavement. A purchasing agent appears to take $him away, which $he accepts resignedly, though $he does ask you who purchased $him. Amused, you tell $him that $his reverence of education convinced you to sell $him to a brothel catering to inexperienced men. "I'm going to be a little bit like a teacher?" $He contemplates this unexpected turn of events. "Well, that'<<s>> very thoughtful of you. Thank you." <<case "immigrant">> $He comes immediately from the immigration center to your arcology. You patiently explain the realities of the situation to $him. $He isn't too bright and it takes a while for things to sink in. The scanners finally do it, though. $He sobs as the biometric scanners scrupulously record $his every particular as belonging not to a person but to a piece of human property. $He tries to resist placing $his biometric signature in testament to the truth of $his debt, but when you observe that the alternative is death, $he complies. You add that $he's already been purchased by a brothel, and would be well advised to keep obeying. $He breaks down entirely at this. <<case "overwhelmed farmgirl">> $He barely manages to waddle into your penthouse before asking to have a seat on your couch. You decline, since $he is clearly so skilled at carrying children, $he will spend the rest of $his enslavement as a volume breeder. $His gaze falls to the floor, this at least means $he'll be fed and get to have $his children. $He cooperates to having $his biometric readings taken and logged, before being seated in a wheelchair and taken to $his new home. - Hours later, you receive a brief message from the facility that purchased $him. "150. One hundred and fifty babies. That is how many are crammed into that girl. $He was a mere sixteen weeks along. If $he lives through this, we may have a record breaking breeder on our hands. Felt the need to pass that along, you might have made us quite a profit this year." + Hours later, you receive a brief message from the facility that purchased $him. "150. One hundred and fifty babies. That is how many are crammed into that $girl. $He was a mere sixteen weeks along. If $he lives through this, we may have a record breaking breeder on our hands. Felt the need to pass that along, you might have made us quite a profit this year." <</switch>> <</replace>> <</link>> //This will bring in <<print cashFormat($slaveCost)>>.// diff --git a/src/uncategorized/rename.tw b/src/uncategorized/rename.tw index 59f3c224d664ad099764d8f39ba859457f612107..d1a51aab789a111acdc4f56dfe201cfc8465e442 100644 --- a/src/uncategorized/rename.tw +++ b/src/uncategorized/rename.tw @@ -54,44 +54,44 @@ <</for>> <</if>> <<if !_insultingName>> -<<if $oldSurname != $activeSlave.slaveSurname && typeof $activeSlave.slaveSurname == "string">> - <<set _toSearch = $activeSlave.slaveSurname.toLowerCase()>> - <<for $i = 0; $i < setup.badWords.length; $i++>> - <<if _toSearch.indexOf(setup.badWords[$i]) != -1>> - <<set _insultingName = 1>> - <<break>> + <<if $oldSurname != $activeSlave.slaveSurname && typeof $activeSlave.slaveSurname == "string">> + <<set _toSearch = $activeSlave.slaveSurname.toLowerCase()>> + <<for $i = 0; $i < setup.badWords.length; $i++>> + <<if _toSearch.indexOf(setup.badWords[$i]) != -1>> + <<set _insultingName = 1>> + <<break>> + <</if>> + <</for>> <</if>> - <</for>> -<</if>> <</if>> <<if _insultingName == 1>> -<<if $activeSlave.fetish == "mindbroken">> - $His new name would be insulting to a normal $girl, but $he dully accepts that it is an accurate description and goes about $his duties. -<<elseif $activeSlave.devotion < -50>> - Being given such a degrading name @@.mediumorchid;further increases $his hatred@@ of you. - <<set $activeSlave.devotion -= 5>> -<<elseif $activeSlave.devotion <= 50>> - Being given such a degrading name @@.gold;terrifies $him,@@ since $he thinks it's fair warning for what $he'll suffer in the future. - <<set $activeSlave.trust -= 5>> -<</if>> + <<if $activeSlave.fetish == "mindbroken">> + $His new name would be insulting to a normal $girl, but $he dully accepts that it is an accurate description and goes about $his duties. + <<elseif $activeSlave.devotion < -50>> + Being given such a degrading name @@.mediumorchid;further increases $his hatred@@ of you. + <<set $activeSlave.devotion -= 5>> + <<elseif $activeSlave.devotion <= 50>> + Being given such a degrading name @@.gold;terrifies $him,@@ since $he thinks it's fair warning for what $he'll suffer in the future. + <<set $activeSlave.trust -= 5>> + <</if>> <</if>> /* Wife's surname reaction */ <<if $oldSurname != $activeSlave.slaveSurname>> -<<if $activeSlave.relationship >= 5>> - <<set _i = $slaveIndices[$activeSlave.relationshipTarget]>> - <<if ndef _i>>@@.red;Error, relationshipTarget not found.@@<</if>> - <<if $slaves[_i].slaveSurname>> - <<if $activeSlave.slaveSurname == $slaves[_i].slaveSurname>> - $He's touched that $he now shares a surname with $his wife $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.mediumaquamarine;more confident than ever@@ that you intend to keep them together in marital bliss. - <<set $activeSlave.trust += 5>> - <<elseif $oldSurname == $slaves[_i].slaveSurname>> - $He's concerned that $he no longer shares a surname with $his wife $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.gold;very worried@@ that you might be considering splitting them up. - <<set $activeSlave.trust -= 5>> - <</if>> + <<if $activeSlave.relationship >= 5>> + <<set _i = $slaveIndices[$activeSlave.relationshipTarget]>> + <<if ndef _i>>@@.red;Error, relationshipTarget not found.@@<</if>> + <<if $slaves[_i].slaveSurname>> + <<if $activeSlave.slaveSurname == $slaves[_i].slaveSurname>> + $He's touched that $he now shares a surname with $his wife $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.mediumaquamarine;more confident than ever@@ that you intend to keep them together in marital bliss. + <<set $activeSlave.trust += 5>> + <<elseif $oldSurname == $slaves[_i].slaveSurname>> + $He's concerned that $he no longer shares a surname with $his wife $slaves[_i].slaveName $slaves[_i].slaveSurname, and is @@.gold;very worried@@ that you might be considering splitting them up. + <<set $activeSlave.trust -= 5>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> /* PC's surname reaction */ <<if $oldSurname != $activeSlave.slaveSurname>> diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw index 8f42ef9a5dcbd2e6954d322fe7be8925f73298c8..9ef1f02269282737dcdcaf1223e27ce16646a0ec 100644 --- a/src/uncategorized/reputation.tw +++ b/src/uncategorized/reputation.tw @@ -8,43 +8,43 @@ On formal occasions, you are announced as $PCTitle. <<if $arcologies[0].FSChattelReligionist != "unset">> -<<if $arcologies[0].FSChattelReligionistCreed == 1>> - $arcologies[0].name keeps the creed of the $nicaeaName. The faithful - <<if $nicaeaAchievement == "slaves">> - <<if $slaves.length > 50>> - @@.green;strongly approve@@ of the large - <<= FSChange("ChattelReligionist", 5)>> - <<elseif $slaves.length > 20>> - @@.green;approve@@ of the good - <<= FSChange("ChattelReligionist", 2)>> - <<else>> - are not impressed by the - <</if>> - number of people you're giving the honor of sexual servitude. - <<elseif $nicaeaAchievement == "devotion">> - <<if $averageDevotion > 80>> - @@.green;strongly approve@@ of the worshipfulness - <<= FSChange("ChattelReligionist", 5)>> - <<elseif $averageDevotion > 50>> - @@.green;approve@@ of the devotion - <<= FSChange("ChattelReligionist", 2)>> - <<else>> - are not impressed by the devotion - <</if>> - of your slaves. - <<else>> - <<if $averageTrust > 50>> - @@.green;strongly approve@@ of the great trust your slaves place in you. - <<= FSChange("ChattelReligionist", 5)>> - <<elseif $averageTrust > 20>> - @@.green;approve@@ of the trust your slaves place in you. - <<= FSChange("ChattelReligionist", 2)>> + <<if $arcologies[0].FSChattelReligionistCreed == 1>> + $arcologies[0].name keeps the creed of the $nicaeaName. The faithful + <<if $nicaeaAchievement == "slaves">> + <<if $slaves.length > 50>> + @@.green;strongly approve@@ of the large + <<= FSChange("ChattelReligionist", 5)>> + <<elseif $slaves.length > 20>> + @@.green;approve@@ of the good + <<= FSChange("ChattelReligionist", 2)>> + <<else>> + are not impressed by the + <</if>> + number of people you're giving the honor of sexual servitude. + <<elseif $nicaeaAchievement == "devotion">> + <<if $averageDevotion > 80>> + @@.green;strongly approve@@ of the worshipfulness + <<= FSChange("ChattelReligionist", 5)>> + <<elseif $averageDevotion > 50>> + @@.green;approve@@ of the devotion + <<= FSChange("ChattelReligionist", 2)>> + <<else>> + are not impressed by the devotion + <</if>> + of your slaves. <<else>> - are not impressed by the fear many of your slaves feel towards you. + <<if $averageTrust > 50>> + @@.green;strongly approve@@ of the great trust your slaves place in you. + <<= FSChange("ChattelReligionist", 5)>> + <<elseif $averageTrust > 20>> + @@.green;approve@@ of the trust your slaves place in you. + <<= FSChange("ChattelReligionist", 2)>> + <<else>> + are not impressed by the fear many of your slaves feel towards you. + <</if>> <</if>> <</if>> <</if>> -<</if>> <<set $repDecay = 0.2>> <<if $arcologies[0].FSChattelReligionistLaw == 1>> @@ -55,63 +55,63 @@ On formal occasions, you are announced as $PCTitle. Since you are an established member of the Societal Elite, your public reputation no longer decays. <<elseif $rep > $enduringRep>> <<if $arcologies[0].FSMaturityPreferentialistLaw == 1>> - <<if $PC.actualAge >= 65>> - Since you're getting on in years and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> - <<elseif $PC.actualAge >= 50>> - Since you're well into middle age and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> - <<elseif $PC.actualAge < 35>> - Since you're unusually young for an arcology owner, and $arcologies[0].name's society respects age, your reputation degrades quite quickly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> - <<else>> - Since you're only entering middle age, and $arcologies[0].name's society respects age, your reputation degrades fairly quickly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay))>> - <</if>> + <<if $PC.actualAge >= 65>> + Since you're getting on in years and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> + <<elseif $PC.actualAge >= 50>> + Since you're well into middle age and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> + <<elseif $PC.actualAge < 35>> + Since you're unusually young for an arcology owner, and $arcologies[0].name's society respects age, your reputation degrades quite quickly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> + <<else>> + Since you're only entering middle age, and $arcologies[0].name's society respects age, your reputation degrades fairly quickly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay))>> + <</if>> <<elseif $arcologies[0].FSYouthPreferentialistLaw == 1>> - <<if $PC.actualAge >= 65>> - Since you're getting on in years and have an impressive list of accomplishments, but $arcologies[0].name's society is coming to prefer youth to experience, so your reputation degrades fairly quickly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> - <<elseif $PC.actualAge >= 50>> - You're well into middle age and have an impressive list of accomplishments, but $arcologies[0].name's society is coming to prefer youth to experience, so your reputation degrades fairly quickly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> - <<elseif $PC.actualAge < 35>> - You're unusually young for an arcology owner, but $arcologies[0].name's society doesn't mind. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay))>> - <<else>> - Since you're entering middle age, and $arcologies[0].name's society respects youth, your reputation degrades fairly quickly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> - <</if>> - <<else>> - <<if $PC.actualAge >= 65>> - Since you're getting on in years and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> - <<elseif $PC.actualAge >= 50>> - Since you're well into middle age and have an impressive list of accomplishments, your reputation degrades fairly slowly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> - <<elseif $PC.actualAge < 35>> - Since you're unusually young for an arcology owner, your reputation degrades fairly quickly. - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> + <<if $PC.actualAge >= 65>> + Since you're getting on in years and have an impressive list of accomplishments, but $arcologies[0].name's society is coming to prefer youth to experience, so your reputation degrades fairly quickly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> + <<elseif $PC.actualAge >= 50>> + You're well into middle age and have an impressive list of accomplishments, but $arcologies[0].name's society is coming to prefer youth to experience, so your reputation degrades fairly quickly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> + <<elseif $PC.actualAge < 35>> + You're unusually young for an arcology owner, but $arcologies[0].name's society doesn't mind. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay))>> + <<else>> + Since you're entering middle age, and $arcologies[0].name's society respects youth, your reputation degrades fairly quickly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> + <</if>> <<else>> - <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay))>> - <</if>> + <<if $PC.actualAge >= 65>> + Since you're getting on in years and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> + <<elseif $PC.actualAge >= 50>> + Since you're well into middle age and have an impressive list of accomplishments, your reputation degrades fairly slowly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay-0.025))>> + <<elseif $PC.actualAge < 35>> + Since you're unusually young for an arcology owner, your reputation degrades fairly quickly. + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay+0.025))>> + <<else>> + <<set $repLoss = Math.trunc(($rep-$enduringRep)*($repDecay))>> + <</if>> <</if>> <<if $enduringRep > 8000>> - However, you have been a figure of renown for so long that much of your reputation has become permanent. + However, you have been a figure of renown for so long that much of your reputation has become permanent. <<elseif $enduringRep > 5000>> - However, you have been a figure of repute for enough time that part of your reputation has become permanent. + However, you have been a figure of repute for enough time that part of your reputation has become permanent. <<elseif $enduringRep > 2000>> - However, you have been a figure of regard for long enough that some of your reputation has become permanent. + However, you have been a figure of regard for long enough that some of your reputation has become permanent. <</if>> <<set $enduringRep += Math.trunc($repLoss*0.025)>> <<else>> <<set $repLoss = 0>> <<if $enduringRep > 8000>> - You have been a figure of renown for so long that your reputation does not decay past its present level. + You have been a figure of renown for so long that your reputation does not decay past its present level. <<elseif $enduringRep > 5000>> - You have been a figure of repute for enough time that your reputation does not decay past its present level. + You have been a figure of repute for enough time that your reputation does not decay past its present level. <<elseif $enduringRep > 2000>> - You have been a figure of regard for long enough that your reputation does not decay past its present level. + You have been a figure of regard for long enough that your reputation does not decay past its present level. <</if>> <</if>> @@ -727,19 +727,19 @@ On formal occasions, you are announced as $PCTitle. <</if>> <<if $alwaysSubsidizeRep == 1>> -<<if $rep <= 19900>> - <<set $rep += 100>> - Reputation subsidized as planned. - <<if $PC.degeneracy > 1>> + <<if $rep <= 19900>> + <<set $rep += 100>> + Reputation subsidized as planned. + <<if $PC.degeneracy > 1>> + <<set $PC.degeneracy -= 1>> + <</if>> + <<elseif $PC.degeneracy > 1>> <<set $PC.degeneracy -= 1>> + Rumors quelled as planned. + <<else>> + <<run cashX(1000, "policies")>> + Reputation subsidy reclaimed this week since your reputation is capped. <</if>> -<<elseif $PC.degeneracy > 1>> - <<set $PC.degeneracy -= 1>> - Rumors quelled as planned. -<<else>> - <<run cashX(1000, "policies")>> - Reputation subsidy reclaimed this week since your reputation is capped. -<</if>> <</if>> <<if $failedElite > 1>> @@ -778,7 +778,7 @@ On formal occasions, you are announced as $PCTitle. <<set $eliteFail = $topClass - 20>> <</if>> <<if $arcologies[0].prosperity > 50>> - <<set $arcologies[0].prosperity -= random(20,40)>> + <<set $arcologies[0].prosperity -= random(20,40)>> <</if>> <<elseif $failedElite > 250>> The Societal Elite @@.red;are openly discussing leaving.@@ It would be in your best interests to appease them. diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw index db7012e3640185bc122d65de10f5cab43241e5d1..6fb443ac37e53915ad03cd08d14cca223324b859 100644 --- a/src/uncategorized/saDevotion.tw +++ b/src/uncategorized/saDevotion.tw @@ -605,29 +605,29 @@ /* STAT CROSSOVERS */ <<if $slaves[$i].trust >= -20>> -<<if $slaves[$i].devotion > 95>> - <<if $slaves[$i].trust <= 20>> - $slaves[$i].slaveName loves you, so $he finds $himself @@.mediumaquamarine;fearing you a little less.@@ - <<set $slaves[$i].trust += 1>> - <<elseif $slaves[$i].trust <= 50>> - $slaves[$i].slaveName loves you, so $he finds $himself @@.mediumaquamarine;trusting you a little more.@@ - <<set $slaves[$i].trust += 1>> - <</if>> -<<elseif $slaves[$i].devotion > 60>> - <<if $slaves[$i].trust <= 20>> - $slaves[$i].slaveName is devoted to you, so $he finds $himself @@.mediumaquamarine;fearing you a little less.@@ - <<set $slaves[$i].trust += 1>> - <</if>> -<<elseif $slaves[$i].devotion < -50>> - <<if $slaves[$i].trust > 20>> - $slaves[$i].slaveName hates you, but also doesn't fear you, @@.orangered;bolstering $his disobedience.@@ - <<set $slaves[$i].trust += 5>> - <<else>> - $slaves[$i].slaveName hates you, so $he finds $himself @@.gold;trusting you a little less.@@ - <<set $slaves[$i].trust -= 2>> + <<if $slaves[$i].devotion > 95>> + <<if $slaves[$i].trust <= 20>> + $slaves[$i].slaveName loves you, so $he finds $himself @@.mediumaquamarine;fearing you a little less.@@ + <<set $slaves[$i].trust += 1>> + <<elseif $slaves[$i].trust <= 50>> + $slaves[$i].slaveName loves you, so $he finds $himself @@.mediumaquamarine;trusting you a little more.@@ + <<set $slaves[$i].trust += 1>> + <</if>> + <<elseif $slaves[$i].devotion > 60>> + <<if $slaves[$i].trust <= 20>> + $slaves[$i].slaveName is devoted to you, so $he finds $himself @@.mediumaquamarine;fearing you a little less.@@ + <<set $slaves[$i].trust += 1>> + <</if>> + <<elseif $slaves[$i].devotion < -50>> + <<if $slaves[$i].trust > 20>> + $slaves[$i].slaveName hates you, but also doesn't fear you, @@.orangered;bolstering $his disobedience.@@ + <<set $slaves[$i].trust += 5>> + <<else>> + $slaves[$i].slaveName hates you, so $he finds $himself @@.gold;trusting you a little less.@@ + <<set $slaves[$i].trust -= 2>> + <</if>> <</if>> <</if>> -<</if>> <<if $slaves[$i].trust > 95>> <<if $slaves[$i].devotion < -20>> $slaves[$i].slaveName feels no threat from you, so $he finds it easy to @@.mediumorchid;express $his hatred of you.@@ @@ -656,10 +656,10 @@ <</if>> <<elseif $slaves[$i].trust < -20>> <<if $slaves[$i].devotion > 20>> - <<if $slaves[$i].devotion <= 50>> - $slaves[$i].slaveName is scared of you, but not truly terrified, so $he feels safe in @@.mediumorchid;hating the worst parts of being your sex slave.@@ - <<set $slaves[$i].devotion -= 2>> - <</if>> + <<if $slaves[$i].devotion <= 50>> + $slaves[$i].slaveName is scared of you, but not truly terrified, so $he feels safe in @@.mediumorchid;hating the worst parts of being your sex slave.@@ + <<set $slaves[$i].devotion -= 2>> + <</if>> <</if>> <</if>> @@ -671,10 +671,10 @@ <<if ($slaves[$i].sexualQuirk == "unflinching")>> <<if ($slaves[$i].devotion <= 95)>> - <<if ($slaves[$i].devotion < $slaves[$i].oldDevotion)>> - $His unflinching nature leads $him to forget some of the unpleasant things $he's experienced this week, @@.hotpink;reducing their impact on $his feelings about you.@@ - <<set $slaves[$i].devotion += ($slaves[$i].oldDevotion - $slaves[$i].devotion)/2>> - <</if>> + <<if ($slaves[$i].devotion < $slaves[$i].oldDevotion)>> + $His unflinching nature leads $him to forget some of the unpleasant things $he's experienced this week, @@.hotpink;reducing their impact on $his feelings about you.@@ + <<set $slaves[$i].devotion += ($slaves[$i].oldDevotion - $slaves[$i].devotion)/2>> + <</if>> <</if>> <</if>> @@ -699,21 +699,21 @@ <</if>> <<else>> <<if $slaves[$i].devotion >= ($slaves[$i].oldDevotion+5)>> - <<if $slaves[$i].tankBaby == 1>> - The incubation facility conditioned $his mind for total subservience to $his owner; $he cannot resist $his progress. - <<elseif $slaves[$i].behavioralFlaw == "arrogant">> - Though $he made progress this week, @@.mediumorchid;it is limited by $his arrogance.@@ - <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> - <<elseif ($slaves[$i].behavioralFlaw == "bitchy") && canTalk($slaves[$i])>> - Though $he made progress this week, @@.mediumorchid;it is limited by the independence $he regains by making snide comments.@@ - <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> - <<elseif $slaves[$i].behavioralFlaw == "devout">> - Though $he made progress this week, @@.mediumorchid;it is limited by the independence $he regains through reliance on $his faith.@@ - <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> - <<elseif $slaves[$i].behavioralFlaw == "liberated">> - Though $he made progress this week, @@.mediumorchid;it is limited by the independence $he retains due to $his moral convictions that this is wrong.@@ - <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> - <</if>> + <<if $slaves[$i].tankBaby == 1>> + The incubation facility conditioned $his mind for total subservience to $his owner; $he cannot resist $his progress. + <<elseif $slaves[$i].behavioralFlaw == "arrogant">> + Though $he made progress this week, @@.mediumorchid;it is limited by $his arrogance.@@ + <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> + <<elseif ($slaves[$i].behavioralFlaw == "bitchy") && canTalk($slaves[$i])>> + Though $he made progress this week, @@.mediumorchid;it is limited by the independence $he regains by making snide comments.@@ + <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> + <<elseif $slaves[$i].behavioralFlaw == "devout">> + Though $he made progress this week, @@.mediumorchid;it is limited by the independence $he regains through reliance on $his faith.@@ + <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> + <<elseif $slaves[$i].behavioralFlaw == "liberated">> + Though $he made progress this week, @@.mediumorchid;it is limited by the independence $he retains due to $his moral convictions that this is wrong.@@ + <<set $slaves[$i].devotion = ($slaves[$i].oldDevotion+5)>> + <</if>> <</if>> <</if>> @@ -734,12 +734,12 @@ <</if>> <<else>> <<if $slaves[$i].trust >= ($slaves[$i].oldTrust+5)>> - <<if $slaves[$i].tankBaby == 1>> - Any natural doubts $he has are overcome by $his conditioning in the incubation facility; $he cannot resist trusting $his owner. - <<elseif ($slaves[$i].behavioralFlaw == "odd") && ($slaves[$i].collar != "shock punishment")>> - Though $he made progress this week, @@.gold;it is limited by $his preoccupation with $his own oddities.@@ - <<set $slaves[$i].trust = ($slaves[$i].oldTrust+5)>> - <</if>> + <<if $slaves[$i].tankBaby == 1>> + Any natural doubts $he has are overcome by $his conditioning in the incubation facility; $he cannot resist trusting $his owner. + <<elseif ($slaves[$i].behavioralFlaw == "odd") && ($slaves[$i].collar != "shock punishment")>> + Though $he made progress this week, @@.gold;it is limited by $his preoccupation with $his own oddities.@@ + <<set $slaves[$i].trust = ($slaves[$i].oldTrust+5)>> + <</if>> <</if>> <</if>> diff --git a/src/uncategorized/saDiet.tw b/src/uncategorized/saDiet.tw index 1f7535af6e0e51a472dc1f47f46a967cd5a65c6d..ed5d7ba37646740cce139009789c8f0c336bd52a 100644 --- a/src/uncategorized/saDiet.tw +++ b/src/uncategorized/saDiet.tw @@ -3,9 +3,9 @@ <<if $slaves[$i].fuckdoll == 0>> <<if $feeder == 1>> -<<if $slaves[$i].diet != "healthy">> - The upgraded kitchen closely monitors $his diet. -<</if>> + <<if $slaves[$i].diet != "healthy">> + The upgraded kitchen closely monitors $his diet. + <</if>> <</if>> <<switch $slaves[$i].diet>> diff --git a/src/uncategorized/saHormoneEffects.tw b/src/uncategorized/saHormoneEffects.tw index 51054265300bf2aaf6c8c393fada3acaecf19789..0acd2e4a2573659099b75b336071db6011da2ba4 100644 --- a/src/uncategorized/saHormoneEffects.tw +++ b/src/uncategorized/saHormoneEffects.tw @@ -963,33 +963,33 @@ <</if>> <<if $slaves[$i].fetish != "mindbroken" && $slaves[$i].fuckdoll == 0>> -<<if ($slaves[$i].hormoneBalance <= 20) && $slaves[$i].hormones < 1>> -<<if ($slaves[$i].dick > 0)>> -<<if ($slaves[$i].devotion > 20)>> -<<if ($slaves[$i].boobs < 800 && $slaves[$i].butt < 3) || ($slaves[$i].faceShape == "masculine") || ($slaves[$i].shoulders > $slaves[$i].hips) || ($slaves[$i].balls > 4)>> -<<if ($slaves[$i].career == "a Futanari Sister")>> - $He wishes $he were more feminine, but isn't unhappy to be off hormones, since $he likes being a stiff dicked futa. -<<elseif ($slaves[$i].fetish == "buttslut") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> - $He wishes $he were more feminine, but $he loves getting fucked in the butt so much that it doesn't much bother $him. -<<elseif ($slaves[$i].fetish == "sadist") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> - Life is easier for effeminate slaves, but $he loves abusing other slaves so much that $he likes being able to get hard. -<<elseif ($slaves[$i].fetish == "dom") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> - Life is easier for effeminate slaves, but $he loves dominating other girls so much that $he likes being able to get hard. -<<elseif ($slaves[$i].energy > 95)>> - $He wishes $he were more feminine, but $he loves getting fucked like a good little sex slave so much that $he doesn't think about it much. -<<elseif ($slaves[$i].devotion <= 20)>> - Life is easier for effeminate slaves, so @@.mediumorchid;$he's a little unhappy@@ that $he isn't getting hormones to make $him more feminine. - <<set $slaves[$i].devotion -= 2>> -<<elseif ($slaves[$i].devotion <= 50)>> - $He wants to be a good slave girl, so @@.mediumorchid;$he's a little unhappy@@ that $he isn't getting hormones to make $him look more feminine. - <<set $slaves[$i].devotion -= 2>> -<<else>> - $He wishes $he were more feminine, but $he accepts your judgment in not giving $him hormones to make that happen. -<</if>> -<</if>> -<</if>> -<</if>> -<</if>> + <<if ($slaves[$i].hormoneBalance <= 20) && $slaves[$i].hormones < 1>> + <<if ($slaves[$i].dick > 0)>> + <<if ($slaves[$i].devotion > 20)>> + <<if ($slaves[$i].boobs < 800 && $slaves[$i].butt < 3) || ($slaves[$i].faceShape == "masculine") || ($slaves[$i].shoulders > $slaves[$i].hips) || ($slaves[$i].balls > 4)>> + <<if ($slaves[$i].career == "a Futanari Sister")>> + $He wishes $he were more feminine, but isn't unhappy to be off hormones, since $he likes being a stiff dicked futa. + <<elseif ($slaves[$i].fetish == "buttslut") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> + $He wishes $he were more feminine, but $he loves getting fucked in the butt so much that it doesn't much bother $him. + <<elseif ($slaves[$i].fetish == "sadist") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> + Life is easier for effeminate slaves, but $he loves abusing other slaves so much that $he likes being able to get hard. + <<elseif ($slaves[$i].fetish == "dom") && ($slaves[$i].fetishStrength > 60) && ($slaves[$i].fetishKnown == 1)>> + Life is easier for effeminate slaves, but $he loves dominating other girls so much that $he likes being able to get hard. + <<elseif ($slaves[$i].energy > 95)>> + $He wishes $he were more feminine, but $he loves getting fucked like a good little sex slave so much that $he doesn't think about it much. + <<elseif ($slaves[$i].devotion <= 20)>> + Life is easier for effeminate slaves, so @@.mediumorchid;$he's a little unhappy@@ that $he isn't getting hormones to make $him more feminine. + <<set $slaves[$i].devotion -= 2>> + <<elseif ($slaves[$i].devotion <= 50)>> + $He wants to be a good slave girl, so @@.mediumorchid;$he's a little unhappy@@ that $he isn't getting hormones to make $him look more feminine. + <<set $slaves[$i].devotion -= 2>> + <<else>> + $He wishes $he were more feminine, but $he accepts your judgment in not giving $him hormones to make that happen. + <</if>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <<if Math.abs($slaves[$i].hormones) > 1>> diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw index 7bac453ed0d5abe638007cb75aee71f4866f915b..5775a82210d82691f01d47eab76baedc5fe3f6e5 100644 --- a/src/uncategorized/saWhore.tw +++ b/src/uncategorized/saWhore.tw @@ -1201,10 +1201,10 @@ In total, you were paid @@.yellowgreen;<<print cashFormat(Math.trunc($beauty*$FR <</if>> <<case "pregnancy">> <<if $slaves[$i].mpreg == 0>> - <<if _vaginalUse > 0>> - $He enjoys having $his pussy fucked, and got sexual satisfaction from the _vaginalUse times $he got dick this week. - <<set $slaves[$i].need -= _vaginalUse>> - <</if>> + <<if _vaginalUse > 0>> + $He enjoys having $his pussy fucked, and got sexual satisfaction from the _vaginalUse times $he got dick this week. + <<set $slaves[$i].need -= _vaginalUse>> + <</if>> <<else>> <<if _analUse > 0>> $He enjoys having $his ass fucked, and got sexual satisfaction from the _analUse times $he got dick this week. diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw index 48308dbe89709dea1b89051a2dceb09f8ca04c47..37aec045a8702766800a04fe7042ea2ec01a08a7 100644 --- a/src/uncategorized/sellSlave.tw +++ b/src/uncategorized/sellSlave.tw @@ -99,9 +99,9 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu "Pharaoh, <<else>> <<if $PC.title == 1>> - "My prince, + "My prince, <<else>> - "My princess, + "My princess, <</if>> <</if>> <</if>> @@ -113,9 +113,9 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu <<else>> <<if $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.9>> <<if $PC.title == 1>> - "Honored Emperor, + "Honored Emperor, <<else>> - "Honored Deity, + "Honored Deity, <</if>> <<elseif $arcologies[0].FSEdoRevivalist >= $FSLockinLevel*0.6>> "Honored Shogun, @@ -131,15 +131,15 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu <<else>> <<if $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.9>> <<if $PC.title == 1>> - "Honored Caliph, + "Honored Caliph, <<else>> - "Handmaiden of Allah, your servant's heart is desolate with the honor of looking upon you. + "Handmaiden of Allah, your servant's heart is desolate with the honor of looking upon you. <</if>> <<elseif $arcologies[0].FSArabianRevivalist >= $FSLockinLevel*0.6>> <<if $PC.title == 1>> - "Honored Sultan, + "Honored Sultan, <<else>> - "Sultana, your servant's heart is desolate with the honor of looking upon you. + "Sultana, your servant's heart is desolate with the honor of looking upon you. <</if>> <<else>> "Peace be upon you, honored slaveowner. @@ -195,7 +195,7 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu <<case "businesswoman">> an older<<if $arcologies[0].FSRepopulationFocusLaw == 1>>, slightly pregnant<</if>> businesswoman with a reputation for correctness gives you a prim nod before turning to the nude slave without wasting further time. She deftly makes notes on a haptic wrist interface, flipping through videos of the slave in action as she works. "As I'm sure you know, <<= properTitle()>>," she says as she uses curt instructions to direct $activeSlave.slaveName, "appraisals are based on a slave's potential income as a prostitute, with modifiers for special characteristics." Her fingers fly across the interface. "I'll just mention the significant ones. <<case "slaver">> - a scarred old slaver with calloused hands and a knowing face, greets you in his companionable way before clapping his hands together and turning to the slave. He switches back and forth between the <<print $girl>>s and a battered old tablet with video proving $his skills. "Well, as you know <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>suh<<else>>madame<</if>>," he says as he firmly repositions $activeSlave.slaveName, "appraisals are based on a slave's potential income as a whore, with modifiers for special things." He pauses, prodding the tablet. "I'll just mention the main items. + a scarred old slaver with calloused hands and a knowing face, greets you in his companionable way before clapping his hands together and turning to the slave. He switches back and forth between the $girl and a battered old tablet with video proving $his skills. "Well, as you know <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>suh<<else>>madame<</if>>," he says as he firmly repositions $activeSlave.slaveName, "appraisals are based on a slave's potential income as a whore, with modifiers for special things." He pauses, prodding the tablet. "I'll just mention the main items. <<default>> a fashionably but formally dressed young man with slicked-back hair, greets you correctly before activating an examination visor and reviewing video evidence of the slave's skills. That done, he deactivates the visor and performs a quick physical examination. "As I'm sure you know, <<= properTitle()>>," he says as he gently repositions $activeSlave.slaveName to get a good look at $him, "appraisals are based on a slave's potential income as a whore, with modifiers for special characteristics." He pauses, using subvocalizations to make data entries. "I'll just mention the significant ones. <</switch>> @@ -244,16 +244,16 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu <</if>> <</if>> <<if ($week-$activeSlave.weekAcquired >= 20) && ($activeSlave.entertainSkill >= 100)>> -<<if setup.entertainmentCareers.includes($activeSlave.career)>> -<<else>> - $He's gotten enough experience as a slave entertainer that $he has the added value of a $girl with a history in entertainment from before $he was a slave. -<</if>> + <<if setup.entertainmentCareers.includes($activeSlave.career)>> + <<else>> + $He's gotten enough experience as a slave entertainer that $he has the added value of a $girl with a history in entertainment from before $he was a slave. + <</if>> <</if>> <<if ($activeSlave.oralCount + $activeSlave.analCount + $activeSlave.vaginalCount + $activeSlave.mammaryCount + $activeSlave.penetrativeCount > 1000)>> -<<if setup.whoreCareers.includes($activeSlave.career)>> -<<else>> - I see $he's sexually very experienced; that counts as a stand-in for the usual bonus value from having been a sex worker before enslavement. -<</if>> + <<if setup.whoreCareers.includes($activeSlave.career)>> + <<else>> + I see $he's sexually very experienced; that counts as a stand-in for the usual bonus value from having been a sex worker before enslavement. + <</if>> <</if>> <<set _careers = []>> @@ -321,7 +321,7 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu <<elseif _careers.length > 1>> _careers[1] and <<print _careers[0]>>. <<else>> - <<print _careers[0]>>. Providing $him the same additional value if $he had a revelant career. + <<print _careers[0]>>. Providing $him the same additional value if $he had a relevant career. <</if>> <</if>> @@ -546,7 +546,7 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu <<elseif $activeSlave.trust > 20>> and $his carefulness is bad sign. <<elseif $activeSlave.trust >= -20>> - btu $his fearfulness is useful. + but $his fearfulness is useful. <<elseif $activeSlave.trust >= -50>> but $his fear is useful. <<elseif $activeSlave.devotion >= -90>> @@ -620,25 +620,25 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu <<if $arcologies[0].FSGenderRadicalistLawFuta != 0>> <<if $arcologies[0].FSGenderRadicalistLawFuta == 1>> <<if $activeSlave.dick > 0>> - <<if $activeSlave.vagina > -1>> - Futas appraise better than ever, thanks to your leadership on gender. - <</if>> + <<if $activeSlave.vagina > -1>> + Futas appraise better than ever, thanks to your leadership on gender. + <</if>> <</if>> <<elseif $arcologies[0].FSGenderRadicalistLawFuta == 2>> <<if $activeSlave.dick > 0>> - <<if $activeSlave.balls > 0>> - Slaves with cocks and balls appraise quite well, thanks to your leadership on gender. - <</if>> + <<if $activeSlave.balls > 0>> + Slaves with cocks and balls appraise quite well, thanks to your leadership on gender. + <</if>> <</if>> <<else>> <<if $activeSlave.butt >= 5>> - <<if $activeSlave.anus >= 2>> - <<if $activeSlave.hips >= 1>> - <<if $activeSlave.analSkill > 60>> - Slaves with big butts and skilled anuses appraise quite well, thanks to your leadership on gender. - <</if>> - <</if>> - <</if>> + <<if $activeSlave.anus >= 2>> + <<if $activeSlave.hips >= 1>> + <<if $activeSlave.analSkill > 60>> + Slaves with big butts and skilled anuses appraise quite well, thanks to your leadership on gender. + <</if>> + <</if>> + <</if>> <</if>> <</if>> <</if>> @@ -770,1043 +770,1043 @@ __Bids Received__ <</if>> <<if _NewOwner == 1>> <<link "Accept bid""Slave Sold">> - <<run cashX(_Price, "slaveTransfer")>> + <<run cashX(_Price, "slaveTransfer")>> <</link>> <</if>> <<if $activeSlave.physicalAge > 30>> -<<if $activeSlave.devotion > 20>> - <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a polite older citizen looking for a housekeeper and bedwarmer. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*0.9)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "housekeeper">> - <</link>> + <<if $activeSlave.devotion > 20>> + <<if random(1,100) > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a polite older citizen looking for a housekeeper and bedwarmer. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*0.9)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "housekeeper">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if isFertile($activeSlave) && $seePreg != 0>> -<<if $slaveCost > 10000>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a male citizen who wants to ensure his posterity by using $him to carry his children. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "preg fetishist">> - <</link>> + <<if $slaveCost > 10000>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a male citizen who wants to ensure his posterity by using $him to carry his children. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "preg fetishist">> + <</link>> + <</if>> <</if>> -<</if>> -<<if $activeSlave.mpreg == 1>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an organ modifier interested in $his anal womb. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "organ crafter">> - <</link>> + <<if $activeSlave.mpreg == 1>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an organ modifier interested in $his anal womb. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "organ crafter">> + <</link>> + <</if>> <</if>> -<</if>> -<<if $seeHyperPreg == 1 && $seeExtreme == 1>> -<<if $activeSlave.vagina == 0>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(400*Math.trunc(($slaveCost*1.05)/500))>>'' from a pharmaceuticals corporation looking for fertile virgins for testing extreme fertility drugs. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 400*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "womb filler">> - <</link>> + <<if $seeHyperPreg == 1 && $seeExtreme == 1>> + <<if $activeSlave.vagina == 0>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(400*Math.trunc(($slaveCost*1.05)/500))>>'' from a pharmaceuticals corporation looking for fertile virgins for testing extreme fertility drugs. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 400*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "womb filler">> + <</link>> + <</if>> + <</if>> <</if>> -<</if>> -<</if>> -<<if $activeSlave.intelligence > 50>> -<<if $activeSlave.face >= 55>> -<<if $activeSlave.faceShape != "masculine">> - <<if random(1,100) > 90>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a fellow arcology owner seeking a smart, pretty slave to use as a breeder to produce superior children. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "eugenics arcology">> - <</link>> + <<if $activeSlave.intelligence > 50>> + <<if $activeSlave.face >= 55>> + <<if $activeSlave.faceShape != "masculine">> + <<if random(1,100) > 90>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a fellow arcology owner seeking a smart, pretty slave to use as a breeder to produce superior children. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "eugenics arcology">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<<if $activeSlave.hips > 1>> -<<if $activeSlave.vagina == 0>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a fellow arcology owner focusing on building a future society based on his genes: he seeks fertile virgins with wide hips, feeling they will be the best mothers. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "repopulationist arcology">> - <</link>> + <<if $activeSlave.hips > 1>> + <<if $activeSlave.vagina == 0>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a fellow arcology owner focusing on building a future society based on his genes: he seeks fertile virgins with wide hips, feeling they will be the best mothers. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "repopulationist arcology">> + <</link>> + <</if>> + <</if>> <</if>> -<</if>> -<</if>> -<<if $activeSlave.vagina == 0>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a slave trader with a notorious virgin impregnation fetish: he uses his work to provide himself with an endless supply of virgins to knock up and resell. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.3)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "virgin trader">> - <</link>> + <<if $activeSlave.vagina == 0>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a slave trader with a notorious virgin impregnation fetish: he uses his work to provide himself with an endless supply of virgins to knock up and resell. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.3)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "virgin trader">> + <</link>> + <</if>> <</if>> -<</if>> <</if>> <<if $seePreg != 0>> -<<if $seeHyperPreg == 1 && $seeExtreme == 1>> -<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> -<<if $activeSlave.bellyPreg >= 300000>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a group that takes pleasure in performing abortions on live TV. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 400*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "abortion TV">> - <</link>> + <<if $seeHyperPreg == 1 && $seeExtreme == 1>> + <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/2>> + <<if $activeSlave.bellyPreg >= 300000>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a group that takes pleasure in performing abortions on live TV. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 400*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "abortion TV">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.nipples == "huge">> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a female citizen with a very specific fetish: she loves breasts to the point of enjoying slaves with nipples large enough to meaningfully penetrate her. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "nipple fetishist">> - <</link>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a female citizen with a very specific fetish: she loves breasts to the point of enjoying slaves with nipples large enough to meaningfully penetrate her. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "nipple fetishist">> + <</link>> <</if>> <</if>> <<if $activeSlave.nipples == "fuckable">> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a male citizen with a kink that's hard to satisfy: he loves nipple fucking, but hates how breasts just don't work that way. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "nipple fetishist">> - <</link>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a male citizen with a kink that's hard to satisfy: he loves nipple fucking, but hates how breasts just don't work that way. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "nipple fetishist">> + <</link>> <</if>> <</if>> <<if $activeSlave.balls > 0>> -<<if $activeSlave.analSkill > 10>> -<<if $activeSlave.devotion > 20>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen who enjoys buttfucking slaves with the necessary equipment, willingness, and anal skill to reward his efforts with messy, hands-free orgasms of their own. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "anal fetishist">> - <</link>> + <<if $activeSlave.analSkill > 10>> + <<if $activeSlave.devotion > 20>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen who enjoys buttfucking slaves with the necessary equipment, willingness, and anal skill to reward his efforts with messy, hands-free orgasms of their own. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "anal fetishist">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.oralSkill > 30>> -<<if $activeSlave.devotion > 20>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an unusually well-endowed citizen who strongly prefers oral sex with willing partners who can deepthroat him successfully. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "oral fetishist">> - <</link>> + <<if $activeSlave.devotion > 20>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from an unusually well-endowed citizen who strongly prefers oral sex with willing partners who can deepthroat him successfully. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "oral fetishist">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $activeSlave.fetish != "masochist">> -<<if $activeSlave.devotion > 50>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who likes hurting her slaves, dislikes masochists for their enjoyment of her treatment, yet prefers slaves who will not hate her. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "pain fetishist">> - <</link>> + <<if $activeSlave.devotion > 50>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who likes hurting her slaves, dislikes masochists for their enjoyment of her treatment, yet prefers slaves who will not hate her. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "pain fetishist">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $activeSlave.muscles > 30>> -<<if $activeSlave.height >= 170>> -<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who is looking for an imposing, stupid slave she can train to rape her victims on command. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "sadism fetishist">> - <</link>> + <<if $activeSlave.height >= 170>> + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a sadistic citizen who is looking for an imposing, stupid slave she can train to rape her victims on command. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "sadism fetishist">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.devotion > 20>> -<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> -<<if $activeSlave.intelligenceImplant >= 15>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a newly wealthy citizen who is expanding his household and is interested in smart, educated, and obedient slaves for leadership roles. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "dom fetishist">> - <</link>> + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> + <<if $activeSlave.intelligenceImplant >= 15>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a newly wealthy citizen who is expanding his household and is interested in smart, educated, and obedient slaves for leadership roles. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "dom fetishist">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.devotion > 50>> -<<if $activeSlave.oralSkill >= 100>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen whose job keeps her deskbound; bored, she's looking for a devoted oral slave to occupy the space under the desk and be her constant pussylicking appliance. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "sub fetishist">> - <</link>> + <<if $activeSlave.oralSkill >= 100>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.05)/500))>>'' from a citizen whose job keeps her deskbound; bored, she's looking for a devoted oral slave to occupy the space under the desk and be her constant pussylicking appliance. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.05)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "sub fetishist">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $activeSlave.anus == 0>> <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a wealthy citizen infamous for cruelly raping anal virgins in public; he buys and abuses a new one every few weeks. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.3)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "buttbreaker">> - <</link>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a wealthy citizen infamous for cruelly raping anal virgins in public; he buys and abuses a new one every few weeks. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.3)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "buttbreaker">> + <</link>> <</if>> <</if>> <<if $activeSlave.oralSkill >= 100>> -<<if $activeSlave.analSkill >= 100>> -<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 15>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a small, local slave trainer interested in using $him to help train new slaves in the sexual arts. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "trainer staffing">> - <</link>> + <<if $activeSlave.analSkill >= 100>> + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 15>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a small, local slave trainer interested in using $him to help train new slaves in the sexual arts. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "trainer staffing">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.oralSkill >= 100>> -<<if $activeSlave.analSkill >= 100>> -<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 15>> -<<if $activeSlave.intelligenceImplant >= 15>> -<<if $activeSlave.physicalAge > 35>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.4)/500))>>'' from a skilled slave trainer who feels that MILFs make the best slave trainers. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.4)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D milf staffing">> - <</link>> + <<if $activeSlave.analSkill >= 100>> + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 15>> + <<if $activeSlave.intelligenceImplant >= 15>> + <<if $activeSlave.physicalAge > 35>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.4)/500))>>'' from a skilled slave trainer who feels that MILFs make the best slave trainers. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.4)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D milf staffing">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.boobsImplant == 0>> -<<if $activeSlave.lactation > 0>> -<<if $activeSlave.ovaries > 0>> -<<if $activeSlave.boobs > 1000>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen with a notorious fetish for fertile, natural cows. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D hucow">> - <</link>> + <<if $activeSlave.lactation > 0>> + <<if $activeSlave.ovaries > 0>> + <<if $activeSlave.boobs > 1000>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen with a notorious fetish for fertile, natural cows. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D hucow">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.muscles > 5>> -<<if $activeSlave.weight < -10>> -<<if $activeSlave.teeth == "pointy">> -<<if $activeSlave.combatSkill > 0>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's pursuing some sort of mercenary project that requires worryingly large numbers of thin <<print $girl>>s with sharp teeth. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D startled the witch">> - <</link>> + <<if $activeSlave.weight < -10>> + <<if $activeSlave.teeth == "pointy">> + <<if $activeSlave.combatSkill > 0>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's pursuing some sort of mercenary project that requires worryingly large numbers of thin <<print $girl>>s with sharp teeth. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D startled the witch">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.vagina == 0>> -<<if $activeSlave.anus > 1>> -<<if $activeSlave.analSkill >= 100>> -<<if $activeSlave.physicalAge < 25>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who appreciates <<print $girl>>s who are both vaginal virgins and anal veterans. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D virgin asspussy">> - <</link>> + <<if $activeSlave.anus > 1>> + <<if $activeSlave.analSkill >= 100>> + <<if $activeSlave.physicalAge < 25>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who appreciates <<print $girl>>s who are both vaginal virgins and anal veterans. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D virgin asspussy">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.vagina == 0>> -<<if ($activeSlave.fetish == "submissive") || ($activeSlave.fetish == "pregnancy")>> -<<if $activeSlave.entertainSkill > 30>> -<<if $activeSlave.physicalAge < 30>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with moist palms who insistently refers to $him as "his waifu," whatever that means. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D waifu">> - <</link>> + <<if ($activeSlave.fetish == "submissive") || ($activeSlave.fetish == "pregnancy")>> + <<if $activeSlave.entertainSkill > 30>> + <<if $activeSlave.physicalAge < 30>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with moist palms who insistently refers to $him as "his waifu," whatever that means. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D waifu">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.dick > 0>> -<<if $activeSlave.oralSkill >= 100>> -<<if $activeSlave.height < 160>> -<<if $activeSlave.butt > 3>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who likes to provide his favored, well-endowed slaves with subordinate, orally skilled dickgirls with nice butts. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D oral servants">> - <</link>> + <<if $activeSlave.oralSkill >= 100>> + <<if $activeSlave.height < 160>> + <<if $activeSlave.butt > 3>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who likes to provide his favored, well-endowed slaves with subordinate, orally skilled dickgirls with nice butts. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D oral servants">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.dick > 0>> -<<if $activeSlave.devotion > 20>> -<<if $activeSlave.fetish == "buttslut">> -<<if $activeSlave.visualAge < 25>> -<<if $activeSlave.boobs < 400>> -<<if $activeSlave.weight <= 10>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who prefers slaves that look like demure <<print $girl>>s with their clothes on, and are willing to take cock up their pretty asspussies. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D trap lover">> - <</link>> + <<if $activeSlave.devotion > 20>> + <<if $activeSlave.fetish == "buttslut">> + <<if $activeSlave.visualAge < 25>> + <<if $activeSlave.boobs < 400>> + <<if $activeSlave.weight <= 10>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who prefers slaves that look like demure <<print $girl>>s with their clothes on, and are willing to take cock up their pretty asspussies. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D trap lover">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.height > 185>> -<<if $activeSlave.butt > 8>> -<<if $activeSlave.buttImplant < 2>> -<<if $activeSlave.weight > 10>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from an eccentric citizen notorious for keeping tall slaves with huge soft butts, just so he can bury himself between their cheeks when they're standing. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D butt bury">> - <</link>> + <<if $activeSlave.butt > 8>> + <<if $activeSlave.buttImplant < 2>> + <<if $activeSlave.weight > 10>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from an eccentric citizen notorious for keeping tall slaves with huge soft butts, just so he can bury himself between their cheeks when they're standing. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D butt bury">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.dick > 1>> -<<if $activeSlave.balls == 1>> -<<if $activeSlave.vagina > -1>> -<<if canAchieveErection($activeSlave)>> -<<if $activeSlave.lactation > 0>> -<<if $activeSlave.face > 10>> -<<if $activeSlave.faceShape != "masculine">> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with strong opinions on futas: he likes a feminine $girl with a nice cock, a lovely pussy, no visible balls and yet the ability to get hard, and plentifully milky nipples. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D milky herm">> - <</link>> + <<if $activeSlave.balls == 1>> + <<if $activeSlave.vagina > -1>> + <<if canAchieveErection($activeSlave)>> + <<if $activeSlave.lactation > 0>> + <<if $activeSlave.face > 10>> + <<if $activeSlave.faceShape != "masculine">> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen with strong opinions on futas: he likes a feminine $girl with a nice cock, a lovely pussy, no visible balls and yet the ability to get hard, and plentifully milky nipples. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D milky herm">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.ovaries == 1>> -<<if $activeSlave.preg > -2>> -<<if $activeSlave.muscles > 30>> -<<if $activeSlave.weight <= 10>> -<<if $activeSlave.height < 165>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen whose friends never let him hear the end of his incorrigibly romantic treatment of his apartment full of amazons. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D amazon hunter">> - <</link>> + <<if $activeSlave.preg > -2>> + <<if $activeSlave.muscles > 30>> + <<if $activeSlave.weight <= 10>> + <<if $activeSlave.height < 165>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen whose friends never let him hear the end of his incorrigibly romantic treatment of his apartment full of amazons. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D amazon hunter">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $seePreg != 0>> -<<if $activeSlave.dick == 0>> -<<if $activeSlave.muscles > 30>> -<<if $activeSlave.devotion > 20>> -<<if $activeSlave.height > 180>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who keeps a large harem of lithe, muscular <<print $girl>>s to bear him children. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D shorty breeder">> - <</link>> + <<if $activeSlave.dick == 0>> + <<if $activeSlave.muscles > 30>> + <<if $activeSlave.devotion > 20>> + <<if $activeSlave.height > 180>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who keeps a large harem of lithe, muscular <<print $girl>>s to bear him children. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D shorty breeder">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.devotion > 20>> -<<if $activeSlave.fetish == "cumslut">> -<<if $activeSlave.lips > 30>> -<<if $activeSlave.amp == 0>> -<<if $activeSlave.oralSkill > 50>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's looking for a fresh, skilled pair of lips eager to wrap around a thick cock. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D oral servants">> - <</link>> + <<if $activeSlave.fetish == "cumslut">> + <<if $activeSlave.lips > 30>> + <<if $activeSlave.amp == 0>> + <<if $activeSlave.oralSkill > 50>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.35)/500))>>'' from a prominent citizen who's looking for a fresh, skilled pair of lips eager to wrap around a thick cock. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.35)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D oral servants">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.vaginalSkill <= 10>> -<<if $activeSlave.analSkill <= 10>> -<<if $activeSlave.oralSkill <= 10>> -<<if $activeSlave.whoreSkill <= 10>> -<<if $activeSlave.entertainSkill <= 10>> - <<if random(1,100) > 80>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.15)/500))>>'' from a prominent citizen who's a notoriously inexperienced lover; it's painfully obvious that he prefers inexperienced slaves as they make him feel less insecure. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.15)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D r9k">> - <</link>> + <<if $activeSlave.analSkill <= 10>> + <<if $activeSlave.oralSkill <= 10>> + <<if $activeSlave.whoreSkill <= 10>> + <<if $activeSlave.entertainSkill <= 10>> + <<if random(1,100) > 80>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.15)/500))>>'' from a prominent citizen who's a notoriously inexperienced lover; it's painfully obvious that he prefers inexperienced slaves as they make him feel less insecure. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.15)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D r9k">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.weight > 10>> -<<if $activeSlave.muscles > 5>> -<<if $activeSlave.health > 60>> -<<if $slaveCost < 10000>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen who takes unusually close interest in $his health and muscle tone, and cannot quite hide his salivation as he does so. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "D cannibal">> - <</link>> + <<if $activeSlave.muscles > 5>> + <<if $activeSlave.health > 60>> + <<if $slaveCost < 10000>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a prominent citizen who takes unusually close interest in $his health and muscle tone, and cannot quite hide his salivation as he does so. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "D cannibal">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.pornPrestige == 1>> <<if random(1,100) == 69>> - <br>''<<print cashFormat(200*Math.trunc(($slaveCost*2)/200))>>'' from an obsessive fan who absolutely must have $him for himself. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 200*Math.trunc(($slaveCost*2)/200)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "obsessed fan">> - <</link>> + <br>''<<print cashFormat(200*Math.trunc(($slaveCost*2)/200))>>'' from an obsessive fan who absolutely must have $him for himself. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 200*Math.trunc(($slaveCost*2)/200)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "obsessed fan">> + <</link>> <</if>> <<elseif $activeSlave.pornPrestige == 3>> <<if random(1,100) > 90>> <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.3)/500))>>'' from a studio interested in continued production of $his porn. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.3)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "porn studio">> - <</link>> + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.3)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "porn studio">> + <</link>> <</if>> <</if>> <<if $arcologies[0].FSDegradationist == "unset">> -<<if $activeSlave.intelligenceImplant < 15>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in educating slaves and reselling them at a profit. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "teaching trainer">> - <</link>> + <<if $activeSlave.intelligenceImplant < 15>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in educating slaves and reselling them at a profit. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "teaching trainer">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $arcologies[0].FSBodyPurist == "unset">> -<<if $activeSlave.boobsImplant == 0>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in filling slaves with implants before resale. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "implanting trainer">> - <</link>> + <<if $activeSlave.boobsImplant == 0>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in filling slaves with implants before resale. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "implanting trainer">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $arcologies[0].FSTransformationFetishist == "unset">> -<<if $activeSlave.boobsImplant > 0>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in fixing slaves who have been surgically ruined with overimplantation. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "purifying trainer">> - <</link>> + <<if $activeSlave.boobsImplant > 0>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in fixing slaves who have been surgically ruined with overimplantation. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "purifying trainer">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $arcologies[0].FSAssetExpansionist == "unset">> -<<if $activeSlave.boobs > 600>> -<<if $activeSlave.butt > 3>> -<<if $activeSlave.weight > 10>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in slimming down fat slaves to appeal to buyers who prefer slim <<print $girl>>s. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "slimming trainer">> - <</link>> + <<if $activeSlave.boobs > 600>> + <<if $activeSlave.butt > 3>> + <<if $activeSlave.weight > 10>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in slimming down fat slaves to appeal to buyers who prefer slim <<print $girl>>s. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "slimming trainer">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $arcologies[0].FSSlimnessEnthusiast == "unset">> -<<if $activeSlave.boobs < 600>> -<<if $activeSlave.butt < 3>> -<<if $activeSlave.weight < -10>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in improving slaves with disappointing assets; they prefer pharmaceutical means but are not averse to surgical intervention if necessary. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "broadening trainer">> - <</link>> + <<if $activeSlave.boobs < 600>> + <<if $activeSlave.butt < 3>> + <<if $activeSlave.weight < -10>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in improving slaves with disappointing assets; they prefer pharmaceutical means but are not averse to surgical intervention if necessary. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "broadening trainer">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.boobs > 1000>> -<<if $activeSlave.boobsImplant == 0>> -<<if $activeSlave.lactation == 0>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in getting $women ready to be dairy cows by using aggressive hormonal and pharmaceutical treatment to balloon their tits. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "cow trainer">> - <</link>> + <<if $activeSlave.boobsImplant == 0>> + <<if $activeSlave.lactation == 0>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in getting $women ready to be dairy cows by using aggressive hormonal and pharmaceutical treatment to balloon their tits. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "cow trainer">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $arcologies[0].FSGenderFundamentalist == "unset">> -<<if $activeSlave.balls > 0>> -<<if $activeSlave.boobs < 500>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in feminizing imperfect shemales; an orchiectomy is invariably their first step. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "clipping trainer">> - <</link>> + <<if $activeSlave.balls > 0>> + <<if $activeSlave.boobs < 500>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in feminizing imperfect shemales; an orchiectomy is invariably their first step. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "clipping trainer">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $arcologies[0].FSGenderRadicalist == "unset">> -<<if $activeSlave.dick > 0>> -<<if $slaveCost > 10000>> - <<if random(1,100) > 60>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in creating proper slave $women from raw material that falls short of that ideal but has potential anyway. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "reassignment trainer">> - <</link>> + <<if $activeSlave.dick > 0>> + <<if $slaveCost > 10000>> + <<if random(1,100) > 60>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a slave trainer that specializes in creating proper slave $women from raw material that falls short of that ideal but has potential anyway. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "reassignment trainer">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.boobs - $activeSlave.boobsImplant > 2000>> -<<if $activeSlave.lactation > 1>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working towards autarkic slave pastoralism. He's awed by $his milk productivity. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "pastoralist arcology">> - <</link>> + <<if $activeSlave.lactation > 1>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working towards autarkic slave pastoralism. He's awed by $his milk productivity. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "pastoralist arcology">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $activeSlave.devotion > 50>> -<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> -<<if $activeSlave.intelligenceImplant >= 30>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of ancient Egypt. He's in the market for wise and educated slaves willing to pass on their skills. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "egyptian revivalist arcology">> - <</link>> + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> + <<if $activeSlave.intelligenceImplant >= 30>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of ancient Egypt. He's in the market for wise and educated slaves willing to pass on their skills. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "egyptian revivalist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.combatSkill >= 1>> -<<if $activeSlave.health > 40>> -<<if $activeSlave.muscles > 25>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a recreation of the Great Aztec Empire. He's in the market for willing, strong and combat ready slaves, to bolster his empire - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "aztec revivalist arcology">> - <</link>> + <<if $activeSlave.health > 40>> + <<if $activeSlave.muscles > 25>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a recreation of the Great Aztec Empire. He's in the market for willing, strong and combat ready slaves, to bolster his empire + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "aztec revivalist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.combatSkill > 0>> -<<if $activeSlave.health > 40>> -<<if $activeSlave.muscles > 5>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of classical Rome. He's in the market for slaves with basic combat skills to fight in modern gladiatorial combats. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "roman revivalist arcology">> - <</link>> + <<if $activeSlave.health > 40>> + <<if $activeSlave.muscles > 5>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner building a facsimile of classical Rome. He's in the market for slaves with basic combat skills to fight in modern gladiatorial combats. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "roman revivalist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.face > 10>> -<<if $activeSlave.analCount < 100>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with interesting religious beliefs, which require beautiful slaves to be available to the public. Since $activeSlave.slaveName is pretty and not heavily used, he considers it a duty to buy $him and make $him a holy prostitute. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "chattel religionist arcology">> - <</link>> + <<if $activeSlave.analCount < 100>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with interesting religious beliefs, which require beautiful slaves to be available to the public. Since $activeSlave.slaveName is pretty and not heavily used, he considers it a duty to buy $him and make $him a holy prostitute. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "chattel religionist arcology">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $activeSlave.muscles > 5>> -<<if $activeSlave.muscles <= 95>> -<<if $activeSlave.health > 60>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to muscular ladies. He seems to feel that $activeSlave.slaveName is not at $his true potential, and wants a try at improving $his physique himself. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "physical idealist arcology">> - <</link>> + <<if $activeSlave.muscles <= 95>> + <<if $activeSlave.health > 60>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to muscular ladies. He seems to feel that $activeSlave.slaveName is not at $his true potential, and wants a try at improving $his physique himself. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "physical idealist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.weight > 30>> -<<if $activeSlave.weight <= 95>> -<<if $activeSlave.health > 60>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to chubby ladies. He seems to feel that $activeSlave.slaveName can handle a fair bit more weight, and wants a try at fattening $him up himself. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "hedonistic decadence arcology">> - <</link>> + <<if $activeSlave.weight <= 95>> + <<if $activeSlave.health > 60>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner devoted to chubby ladies. He seems to feel that $activeSlave.slaveName can handle a fair bit more weight, and wants a try at fattening $him up himself. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "hedonistic decadence arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $arcologies[0].FSSlimnessEnthusiast != "unset">> -<<if $activeSlave.weight < 10>> -<<if $activeSlave.muscles < 10>> -<<if $activeSlave.belly == 0 && $activeSlave.preg < 1>> - <<if random(1,100) > 80>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/400))>>'' from a chef that likes stuffing more than just turkeys. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/400)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "stuffer chef">> - <</link>> + <<if $activeSlave.weight < 10>> + <<if $activeSlave.muscles < 10>> + <<if $activeSlave.belly == 0 && $activeSlave.preg < 1>> + <<if random(1,100) > 80>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/400))>>'' from a chef that likes stuffing more than just turkeys. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/400)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "stuffer chef">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.boobs > 1000>> -<<if $activeSlave.boobsImplant == 0>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who loves breast implants. Since large natural breasts can support larger implants, he seems to feel $activeSlave.slaveName has good potential to be implanted up to a truly gigantic size without too much stretching. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "transformation fetishist arcology">> - <</link>> + <<if $activeSlave.boobsImplant == 0>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who loves breast implants. Since large natural breasts can support larger implants, he seems to feel $activeSlave.slaveName has good potential to be implanted up to a truly gigantic size without too much stretching. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "transformation fetishist arcology">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $activeSlave.boobs > 800>> -<<if $activeSlave.boobsImplant == 0>> -<<if $activeSlave.physicalAge < 25>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who never fails to dream big. He's interested in $him mostly for growth potential, since $his assets have grown so big, so young. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "asset expansionist arcology">> - <</link>> + <<if $activeSlave.boobsImplant == 0>> + <<if $activeSlave.physicalAge < 25>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who never fails to dream big. He's interested in $him mostly for growth potential, since $his assets have grown so big, so young. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "asset expansionist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.boobs < 500>> -<<if $activeSlave.butt < 3>> -<<if $activeSlave.physicalAge < 25>> -<<if $activeSlave.anus < 2>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with simple tastes. He likes his slaves young, slim, and reasonably innocent. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "slimness enthusiast arcology">> - <</link>> + <<if $activeSlave.butt < 3>> + <<if $activeSlave.physicalAge < 25>> + <<if $activeSlave.anus < 2>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with simple tastes. He likes his slaves young, slim, and reasonably innocent. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "slimness enthusiast arcology">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.boobsImplant > 0>> -<<if $activeSlave.buttImplant > 0>> -<<if $activeSlave.lipsImplant > 0>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a hatred of implants that reaches missionary zeal. He buys slaves full of silicone, removes their implants, reconditions them, and resells them whenever his finances will permit. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "body purist arcology">> - <</link>> + <<if $activeSlave.buttImplant > 0>> + <<if $activeSlave.lipsImplant > 0>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a hatred of implants that reaches missionary zeal. He buys slaves full of silicone, removes their implants, reconditions them, and resells them whenever his finances will permit. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "body purist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.trust > 20>> <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who runs a terrifyingly degrading society. He prefers slaves who have been well-treated previously; it lends their screams a certain special authenticity. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "degradationist arcology">> - <</link>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who runs a terrifyingly degrading society. He prefers slaves who have been well-treated previously; it lends their screams a certain special authenticity. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "degradationist arcology">> + <</link>> <</if>> <</if>> <<if $activeSlave.intelligenceImplant < 5>> -<<if $activeSlave.devotion > 20>> -<<if $activeSlave.fetish != "mindbroken">> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with an almost messianic calling to educate and improve slaves, though somewhat hypocritically, he prefers to start with reasonably obedient <<print $girl>>s, which usually means slaves broken by someone else. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "paternalist arcology">> - <</link>> + <<if $activeSlave.devotion > 20>> + <<if $activeSlave.fetish != "mindbroken">> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with an almost messianic calling to educate and improve slaves, though somewhat hypocritically, he prefers to start with reasonably obedient <<print $girl>>s, which usually means slaves broken by someone else. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "paternalist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.dick == 0>> -<<if $activeSlave.boobs > 800>> -<<if $activeSlave.butt > 3>> -<<if $activeSlave.devotion > 20>> -<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who likes willing, uncomplicated young ladies with bouncing boobs and big butts. He's an uncomplicated sort. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "gender fundamentalist arcology">> - <</link>> + <<if $activeSlave.boobs > 800>> + <<if $activeSlave.butt > 3>> + <<if $activeSlave.devotion > 20>> + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner who likes willing, uncomplicated young ladies with bouncing boobs and big butts. He's an uncomplicated sort. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "gender fundamentalist arcology">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.dick > 0>> -<<if $activeSlave.face < -10>> -<<if $activeSlave.boobs < 400>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a notorious fetish for the process of feminization. He prefers diamonds in the rough, because the process of polishing is so much fun. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "gender radicalist arcology">> - <</link>> + <<if $activeSlave.face < -10>> + <<if $activeSlave.boobs < 400>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a notorious fetish for the process of feminization. He prefers diamonds in the rough, because the process of polishing is so much fun. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "gender radicalist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.race != "mixed race">> -<<if $activeSlave.devotion <= 20>> -<<if $activeSlave.trust < 20>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a strongly held belief that $activeSlave.race people should not be slaves. He devotes as much of his resources as he can to manumission of such <<print $girl>>s, concentrating on the downtrodden. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "supremacist arcology">> - <</link>> + <<if $activeSlave.devotion <= 20>> + <<if $activeSlave.trust < 20>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner with a strongly held belief that $activeSlave.race people should not be slaves. He devotes as much of his resources as he can to manumission of such <<print $girl>>s, concentrating on the downtrodden. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "supremacist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $activeSlave.race != "mixed race">> -<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -50>> -<<if $activeSlave.ovaries == 1>> - <<if random(1,100) > 70>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working on a project to breed a race of $activeSlave.race people with natural, unquestioning obedience. He clearly considers $him good stock for the project. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "subjugationist arcology">> - <</link>> + <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -50>> + <<if $activeSlave.ovaries == 1>> + <<if random(1,100) > 70>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.25)/500))>>'' from a fellow arcology owner working on a project to breed a race of $activeSlave.race people with natural, unquestioning obedience. He clearly considers $him good stock for the project. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.25)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "subjugationist arcology">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $arcologies[0].FSPaternalist == "unset">> -<<if $slaveCost < 10000>> - <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a cheap brothel chain that operates a franchise on a lower level of the arcology. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "cheap brothel">> - <</link>> + <<if $slaveCost < 10000>> + <<if random(1,100) > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a cheap brothel chain that operates a franchise on a lower level of the arcology. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "cheap brothel">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $arcologies[0].FSPaternalist == "unset">> -<<if $slaveCost < 20000>> -<<if $activeSlave.boobsImplant == 0>> - <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a factory farm notorious for extracting every drop of value from its slaves' bodies. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "factory farm">> - <</link>> + <<if $slaveCost < 20000>> + <<if $activeSlave.boobsImplant == 0>> + <<if random(1,100) > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a factory farm notorious for extracting every drop of value from its slaves' bodies. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "factory farm">> + <</link>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> <<if $arcologies[0].FSPaternalist == "unset">> -<<if $slaveCost < 5000>> - <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a sex arcade that maintains good service quality by rapidly cycling new slaves through their facilities. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "arcade">> - <</link>> + <<if $slaveCost < 5000>> + <<if random(1,100) > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a sex arcade that maintains good service quality by rapidly cycling new slaves through their facilities. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "arcade">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $seePreg != 0>> -<<if $arcologies[0].FSPaternalist == "unset">> -<<if $slaveCost < 10000>> -<<if $activeSlave.health > 40>> -<<if $activeSlave.ovaries == 1>> - <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a high-volume breeding operation interested in $him mostly for $his healthy, functional womb. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "volume breeder">> - <</link>> + <<if $arcologies[0].FSPaternalist == "unset">> + <<if $slaveCost < 10000>> + <<if $activeSlave.health > 40>> + <<if $activeSlave.ovaries == 1>> + <<if random(1,100) > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a high-volume breeding operation interested in $him mostly for $his healthy, functional womb. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "volume breeder">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> -<</if>> <<if $arcologies[0].FSDegradationist == "unset">> -<<if $slaveCost > 20000>> - <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a group of partners that run a handsome brothel off the promenade. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "nice brothel">> - <</link>> + <<if $slaveCost > 20000>> + <<if random(1,100) > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.1)/500))>>'' from a group of partners that run a handsome brothel off the promenade. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "nice brothel">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $arcologies[0].FSDegradationist == "unset">> -<<if $slaveCost < 50000>> -<<if $activeSlave.boobsImplant == 0>> -<<if $activeSlave.health > 40>> - <<if random(1,100) > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.8)/500))>>'' from a free-range farm that pays for the high costs of high quality livestock care by aggressively marketing its cruelty-free products. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*0.8)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "free range">> - <</link>> + <<if $slaveCost < 50000>> + <<if $activeSlave.boobsImplant == 0>> + <<if $activeSlave.health > 40>> + <<if random(1,100) > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.8)/500))>>'' from a free-range farm that pays for the high costs of high quality livestock care by aggressively marketing its cruelty-free products. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*0.8)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "free range">> + <</link>> + <</if>> + <</if>> + <</if>> <</if>> <</if>> -<</if>> -<</if>> -<</if>> <<if $activeSlave.health > 40>> -<<if $slaveCost < 5000>> - <<if random(1,100) > 10>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from an organ harvesting firm that acquires healthy raw materials cheaply. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1.2)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "harvester">> - <</link>> + <<if $slaveCost < 5000>> + <<if random(1,100) > 10>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from an organ harvesting firm that acquires healthy raw materials cheaply. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1.2)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "harvester">> + <</link>> + <</if>> <</if>> <</if>> -<</if>> <<if $slaveCost < 5000>> <<if random(1,100) > 10>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1)/500))>>'' from a manufacturer of large sexual appliances that include a living inmate, drugged into helplessness. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*1)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "fuckdoll">> - <</link>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1)/500))>>'' from a manufacturer of large sexual appliances that include a living inmate, drugged into helplessness. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*1)/500)>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "fuckdoll">> + <</link>> <</if>> <</if>> <<if $seeExtreme == 1>> -<<if $slaveCost < 5000>> -<<if $activeSlave.vagina > -1>> -<<if $activeSlave.bellyImplant > -1>> -<<if random(1,100) > 90>> - <br>''<<print cashFormat(7000)>>'' from a porn director interested in a cheap slave with a belly implant for use in a snuff film. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 7000>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <<set $buyer = "tentacle bred">> - <</link>> -<</if>> -<</if>> -<</if>> -<</if>> + <<if $slaveCost < 5000>> + <<if $activeSlave.vagina > -1>> + <<if $activeSlave.bellyImplant > -1>> + <<if random(1,100) > 90>> + <br>''<<print cashFormat(7000)>>'' from a porn director interested in a cheap slave with a belly implant for use in a snuff film. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 7000>> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <<set $buyer = "tentacle bred">> + <</link>> + <</if>> + <</if>> + <</if>> + <</if>> <</if>> <<if random(1,100) > 30>> @@ -1819,81 +1819,81 @@ __Bids Received__ <<if $activeSlave.fetish == "mindbroken">> <<if random(1,100) > 20>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a slave trader who buys vast numbers of mindbroken <<print $girl>>s. His purpose is unknown, and none of them are ever seen again. - <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*0.9)/500)>> - <<run cashX(_Price, "slaveSold", $activeSlave)>> - <</link>> - <</if>> -<</if>> - -<<if $plot>> -<<if $peacekeepers>> -<<if $peacekeepers.strength >= 50>> -<<if $peacekeepers.attitude < 100>> - <<if $activeSlave.oralSkill + $activeSlave.analSkill + $activeSlave.vaginalSkill > 100>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.5)/500))>>'' from the officer in charge of 'recreational activities' for General $peacekeepers.generalName's forces. This is far less than the slave is worth, but the bid comes with the implicit offer of more influence over the peacekeepers. + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.9)/500))>>'' from a slave trader who buys vast numbers of mindbroken <<print $girl>>s. His purpose is unknown, and none of them are ever seen again. <<link "Accept bid" "Slave Sold">> - <<set _Price += 500*Math.trunc(($slaveCost*0.5)/500), $buyer = "peacekeepers">> + <<set _Price += 500*Math.trunc(($slaveCost*0.9)/500)>> <<run cashX(_Price, "slaveSold", $activeSlave)>> <</link>> <</if>> -<<else>> - <<switch $peacekeepers.tastes>> - <<case "lusty futanari">> - <<if $activeSlave.balls > 0 && $activeSlave.ballType != "sterile" && $activeSlave.scrotum > 0 && $activeSlave.dick > 0 && $activeSlave.vagina > -1 && $activeSlave.energy > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "cum addicts">> - <<if $activeSlave.fetish == "cumslut" && $activeSlave.fetishStrength > 95 && $activeSlave.sexualFlaw == "cum addict">> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold" , $activeSlave)>><</link>> - <</if>> - <<case "horny MILFs">> - <<if $activeSlave.physicalAge > 34 && $activeSlave.visualAge > 34 && $activeSlave.energy > 80>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "big-breasted cows">> - <<if $activeSlave.boobs > 2000 && $activeSlave.lactation > 1>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "beautiful young sex slaves">> - <<if $activeSlave.physicalAge < 25 && $activeSlave.visualAge < 25 && $activeSlave.face > 95>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "fertile virgins">> - <<if $activeSlave.vagina == 0 && isFertile($activeSlave)>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "lusty preggos">> - <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4 && $activeSlave.energy > 50>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "baby obsessed breeders">> - <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4 && $activeSlave.fetish == "pregnancy" && $activeSlave.sexualFlaw == "breeder">> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "bellies with girls attached">> - <<if $activeSlave.belly >= 300000>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <<case "flesh balloons">> - <<if $activeSlave.boobs > 20000 && $activeSlave.butt > 10>> - <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. - <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> - <</if>> - <</switch>> -<</if>> -<</if>> <</if>> + +<<if $plot>> + <<if $peacekeepers>> + <<if $peacekeepers.strength >= 50>> + <<if $peacekeepers.attitude < 100>> + <<if $activeSlave.oralSkill + $activeSlave.analSkill + $activeSlave.vaginalSkill > 100>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*0.5)/500))>>'' from the officer in charge of 'recreational activities' for General $peacekeepers.generalName's forces. This is far less than the slave is worth, but the bid comes with the implicit offer of more influence over the peacekeepers. + <<link "Accept bid" "Slave Sold">> + <<set _Price += 500*Math.trunc(($slaveCost*0.5)/500), $buyer = "peacekeepers">> + <<run cashX(_Price, "slaveSold", $activeSlave)>> + <</link>> + <</if>> + <<else>> + <<switch $peacekeepers.tastes>> + <<case "lusty futanari">> + <<if $activeSlave.balls > 0 && $activeSlave.ballType != "sterile" && $activeSlave.scrotum > 0 && $activeSlave.dick > 0 && $activeSlave.vagina > -1 && $activeSlave.energy > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "cum addicts">> + <<if $activeSlave.fetish == "cumslut" && $activeSlave.fetishStrength > 95 && $activeSlave.sexualFlaw == "cum addict">> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold" , $activeSlave)>><</link>> + <</if>> + <<case "horny MILFs">> + <<if $activeSlave.physicalAge > 34 && $activeSlave.visualAge > 34 && $activeSlave.energy > 80>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "big-breasted cows">> + <<if $activeSlave.boobs > 2000 && $activeSlave.lactation > 1>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "beautiful young sex slaves">> + <<if $activeSlave.physicalAge < 25 && $activeSlave.visualAge < 25 && $activeSlave.face > 95>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "fertile virgins">> + <<if $activeSlave.vagina == 0 && isFertile($activeSlave)>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "lusty preggos">> + <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4 && $activeSlave.energy > 50>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "baby obsessed breeders">> + <<if $activeSlave.preg > $activeSlave.pregData.normalBirth/4 && $activeSlave.fetish == "pregnancy" && $activeSlave.sexualFlaw == "breeder">> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "bellies with girls attached">> + <<if $activeSlave.belly >= 300000>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <<case "flesh balloons">> + <<if $activeSlave.boobs > 20000 && $activeSlave.butt > 10>> + <br>''<<print cashFormat(500*Math.trunc(($slaveCost*1.2)/500))>>'' from the sex slave buyer for General $peacekeepers.generalName's client state, which prefers $peacekeepers.tastes. + <<link "Accept bid" "Slave Sold">><<set _Price += 500*Math.trunc(($slaveCost*1.2)/500), $buyer = "peacekeepers">><<run cashX(_Price, "slaveSold", $activeSlave)>><</link>> + <</if>> + <</switch>> + <</if>> + <</if>> + <</if>> <</if>> <br><br> diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw index 36e761a770a2989b68afde9288480c7774d6707d..496203bed8a62dccfc47bcd2b20e34c1b2b177ec 100644 --- a/src/uncategorized/slaveSold.tw +++ b/src/uncategorized/slaveSold.tw @@ -829,7 +829,7 @@ <</if>> <<case "D startled the witch">> - $activeSlave.slaveName heads off to form part of whatever great design $his new master is pursuing; all you know is that it apparently requires lots of lithe, sharp toothed slave girls. + $activeSlave.slaveName heads off to form part of whatever great design $his new master is pursuing; all you know is that it apparently requires lots of lithe, sharp toothed slave <<= $girl>>s. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 20)>> <<run clearSummaryCache($slaves[_ss])>> diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw index 7fce3008f83758d7e35157da1c400116b3543af3..5f700382724bd3fc8c3467b456ee18f11cd60f5a 100644 --- a/src/uncategorized/spa.tw +++ b/src/uncategorized/spa.tw @@ -100,21 +100,21 @@ $spaNameCaps <</if>> <<if $Attendant != 0>> -<<setLocalPronouns $Attendant>> -<br> -<<if $spaFix == 2>> - $Attendant.slaveName is focusing only on the health and wellness of the slaves under $his care, obeying your orders to avoid attempting to right mental flaws. - [["Order " + $him + " to only fix mindbroken slaves"|Spa][$spaFix = 1]] | - [["Let " + $him + " tend as she " + $he + " fit"|Spa][$spaFix = 0]] -<<elseif $spaFix == 1>> - $Attendant.slaveName is focusing on the health and wellness of the slaves under $his care, as well as trying to bring mindbroken slaves back, while ignoring any mental hang-ups a slave may have. - [["Order " + $him + " to not fix flaws"|Spa][$spaFix = 2]] | - [["Let " + $him + " tend as " + $he + " sees fit"|Spa][$spaFix = 0]] -<<else>> - $Attendant.slaveName is not following any special orders and is tending to your slaves as $he sees fit. - [["Order " + $him + " to not fix any flaws"|Spa][$spaFix = 2]] | - [["Order " + $him + " to only fix mindbroken slaves"|Spa][$spaFix = 1]] -<</if>> + <<setLocalPronouns $Attendant>> + <br> + <<if $spaFix == 2>> + $Attendant.slaveName is focusing only on the health and wellness of the slaves under $his care, obeying your orders to avoid attempting to right mental flaws. + [["Order " + $him + " to only fix mindbroken slaves"|Spa][$spaFix = 1]] | + [["Let " + $him + " tend as she " + $he + " fit"|Spa][$spaFix = 0]] + <<elseif $spaFix == 1>> + $Attendant.slaveName is focusing on the health and wellness of the slaves under $his care, as well as trying to bring mindbroken slaves back, while ignoring any mental hang-ups a slave may have. + [["Order " + $him + " to not fix flaws"|Spa][$spaFix = 2]] | + [["Let " + $him + " tend as " + $he + " sees fit"|Spa][$spaFix = 0]] + <<else>> + $Attendant.slaveName is not following any special orders and is tending to your slaves as $he sees fit. + [["Order " + $him + " to not fix any flaws"|Spa][$spaFix = 2]] | + [["Order " + $him + " to only fix mindbroken slaves"|Spa][$spaFix = 1]] + <</if>> <</if>> <br><br> diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 9bcabf479c7a7fd8afc7a1620795e3ba9aa0f559..3f6ffa10654782b0024a11765119d9f36684aa39 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -63,7 +63,7 @@ $activeSlave.slaveName and _partnerSlave.slaveName are <<set _seed = random(1,3)>> - <<if ["be your agent", "be confined in the arcade"].includes(_partnerSlave.assignment) || (_partnerSlave.assignment == "work in the dairy" && $DairyRestraintsSetting >= 2)>> + <<if ["be confined in the arcade", "be your agent"].includes(_partnerSlave.assignment) || (_partnerSlave.assignment == "work in the dairy" && $DairyRestraintsSetting >= 2)>> <<if _partnerSlave.assignment == "work in the dairy" && $DairyRestraintsSetting >= 2>> trying their best to maintain their relationship with _partnerSlave.slaveName being part of $dairyName. <<elseif _partnerSlave.assignment == "be your agent">> @@ -74,7 +74,8 @@ <<elseif _seed == 1>> /* SEXY TIMES */ <<if (($activeSlave.fetish == "dom") || ($activeSlave.fetish == "sadist")) && ($activeSlave.dick > 0) && canPenetrate($activeSlave) && ((_partnerSlave.fetish == "dom") || (_partnerSlave.fetish == "sadist")) && (_partnerSlave.dick > 0) && canPenetrate(_partnerSlave)>> - performing double anal on another slave. They're face to face over their sub's shoulders, looking into each other's eyes with every appearance of enjoyment and love, since for them rubbing dicks inside another slave's butt is what constitutes healthy sexual activity. _partnerSlave.slaveName is on the bottom, and holds their victim atop _him2 with _partnerSlave.slaveName's cock already hilted in $his ass so $activeSlave.slaveName can force $himself inside as well. They enjoy the overstimulated girl's struggles. + <<setNonlocalPronouns $seeDicks>> + performing double anal on another slave. They're face to face over their sub's shoulders, looking into each other's eyes with every appearance of enjoyment and love, since for them rubbing dicks inside another slave's butt is what constitutes healthy sexual activity. _partnerSlave.slaveName is on the bottom, and holds their victim atop _him2 with _partnerSlave.slaveName's cock already hilted in _hisU ass so $activeSlave.slaveName can force $himself inside as well. They enjoy the overstimulated girl's struggles. <<set $activeSlave.penetrativeCount++, _partnerSlave.penetrativeCount++, $penetrativeTotal += 2>> <<elseif ($activeSlave.energy > 95)>> having loud sex <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is such a sexual addict that $he wants it all the time, and _partnerSlave.slaveName does _his2 best to help $his _activeSlaveRel get off. @@ -421,54 +422,54 @@ <<case "work in the brothel">> is working in the brothel, and is <<if (_seed > 80)>> - riding a customer's dick. + riding a customer's dick. <<elseif (_seed > 60)>> - sucking a customer's cock. + sucking a customer's cock. <<elseif (_seed > 40)>> - pleasuring a customer's cunt. + pleasuring a customer's cunt. <<elseif (_seed > 20)>> - getting pounded by a woman wearing a strap-on. + getting pounded by a woman wearing a strap-on. <<else>> - being held down and buttfucked by a customer. You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. + being held down and buttfucked by a customer. <</if>> You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "serve the public">> is serving the public, and is <<if (_seed > 80)>> - riding a citizen's dick. + riding a citizen's dick. <<elseif (_seed > 60)>> - sucking a citizen's cock. + sucking a citizen's cock. <<elseif (_seed > 40)>> - pleasuring a citizen's cunt. + pleasuring a citizen's cunt. <<elseif (_seed > 20)>> - getting pounded by a citizen wearing a strap-on. + getting pounded by a citizen wearing a strap-on. <<else>> - being held down and buttfucked by a citizen. + being held down and buttfucked by a citizen. <</if>> You have a voyeuristic view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "work in the dairy">> <<if ($dairyRestraintsSetting > 1)>> - is strapped to a milking machine in $dairyName. + is strapped to a milking machine in $dairyName. <<elseif (_partnerSlave.lactation == 0) && (_partnerSlave.balls > 0)>> - is working in $dairyName, and is having _his2 cock milked. As you watch, _his2 balls tighten as the phallus up _his2 butt brings _him2 closer to a copious ejaculation. + is working in $dairyName, and is having _his2 cock milked. As you watch, _his2 balls tighten as the phallus up _his2 butt brings _him2 closer to a copious ejaculation. <<elseif _seed > 50>> - is working in $dairyName, having _his2 tits milked. + is working in $dairyName, having _his2 tits milked. <<else>> - is working in $dairyName, massaging _his2 sore tits. + is working in $dairyName, massaging _his2 sore tits. <</if>> You have a good view of _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body on the feeds. <<case "serve in the club">> is working on the club, <<if _seed > 50>> - displaying _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body, keeping citizens company, and flirting with anyone who shows interest. + displaying _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body, keeping citizens company, and flirting with anyone who shows interest. <<else>> - or rather just off it, having taken a prominent citizen back to a discreet room so he can use _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body. + or rather just off it, having taken a prominent citizen back to a discreet room so he can use _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body. <</if>> <<case "work as a servant">> <<if _seed > 50>> - was scrubbing the penthouse floor, until another slave requested oral service. + was scrubbing the penthouse floor, until another slave requested oral service. <<else>> - is scrubbing the penthouse floor. + is scrubbing the penthouse floor. <</if>> <<case "guard you">> is standing discreetly behind your left shoulder, watching for threats. _He2 has a straight ceramic sword strapped to _his2 back and a machine pistol at _his2 hip. @@ -487,17 +488,19 @@ <<default>> <<if (_partnerSlave.heels == 1) && !["flats", "none"].includes(_partnerSlave.shoes)>> - walks past your desk with the tiny swaying steps $he must take in order to walk on _his2 surgically altered legs. _he2 is on _his2 way to + walks past your desk with the tiny swaying steps $he must take in order to walk on _his2 surgically altered legs. _He2 is on _his2 way to <<elseif ["heels", "pumps"].includes(_partnerSlave.shoes)>> - walks past your desk with the swaying steps _he2 must take in _his2 high heels. _he2 is on _his2 way to + walks past your desk with the swaying steps _he2 must take in _his2 high heels. _He2 is on _his2 way to <<elseif (_partnerSlave.shoes == "boots")>> - walks past your desk with the confident gait encouraged by _his2 high heeled boots. _he2 is on _his2 way to + walks past your desk with the confident gait encouraged by _his2 high heeled boots. _He2 is on _his2 way to <<elseif (_partnerSlave.shoes == "extreme heels")>> - walks past your desk with the tiny swaying steps _he2 must take in _his2 ridiculous heels. _he2 is on _his2 way to + walks past your desk with the tiny swaying steps _he2 must take in _his2 ridiculous heels. _He2 is on _his2 way to <<elseif (_partnerSlave.heels == 1)>> - crawls past your desk on all fours, since _he2 has not been allowed the heels _he2 needs to walk upright. _he2 is on _his2 way to + crawls past your desk on all fours, since _he2 has not been allowed the heels _he2 needs to walk upright. _He2 is on _his2 way to <<elseif (_partnerSlave.amp == 1)>> - is carried past your desk by one of your other slaves. _he2 is on _his2 way to + is carried past your desk by one of your other slaves. _He2 is on _his2 way to + <<elseif (!canWalk(_partnerSlave))>> + is helped past your desk by one of your other slaves. _He2 is on _his2 way to <<else>> walks past your desk on _his2 way to <</if>> @@ -505,34 +508,34 @@ <<switch _partnerSlave.assignment>> <<case "whore">> <<if _seed > 50>> - whore; + whore; <<else>> - sell _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body; + sell _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body; <</if>> <<case "serve the public">> <<if _seed > 50>> - serve the public; + serve the public; <<else>> - be a public slut; + be a public slut; <</if>> <<case "rest">> <<if _seed > 50>> - eat; + eat; <<else>> - bed; + bed; <</if>> <<case "get milked">> <<if _seed > 50>> - milk _his2 overfull <<if $seeRace == 1>>_partnerSlave.race <</if>>tits; + milk _his2 overfull <<if $seeRace == 1>>_partnerSlave.race <</if>>tits; <<else>> - drain _his2 milky <<if $seeRace == 1>>_partnerSlave.race <</if>>udders; + drain _his2 milky <<if $seeRace == 1>>_partnerSlave.race <</if>>udders; <</if>> <<case "please you">> sit next to you and wait for <<if _seed > 50>> - you to fuck _him2; + you to fuck _him2; <<else>> - _his2 Master to use _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body; + _his2 Master to use _his2 <<if $seeRace == 1>>_partnerSlave.race <</if>>body; <</if>> <<case "be a subordinate slave">> service your other slaves; @@ -700,13 +703,13 @@ $His tube top covers $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> totally. <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "sport shorts and a t-shirt" "a t-shirt and panties">> $His shirt covers $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> totally. - <<case "a bra" "a striped bra" "striped underwear" "a sports bra" "sport shorts and a sports bra">> + <<case "a bra" "a sports bra" "a striped bra" "sport shorts and a sports bra" "striped underwear">> $His bra covers $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> totally. <<case "a tank-top" "a tank-top and panties">> $His tank-top covers $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> totally. <<case "a sweater" "a sweater and panties" "a sweater and cutoffs">> $His sweater covers $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> totally. - <<case "a thong" "a skimpy loincloth" "boyshorts" "cutoffs" "panties" "leather pants" "jeans" "sport shorts">> + <<case "a skimpy loincloth" "a thong" "boyshorts" "cutoffs" "jeans" "leather pants" "panties" "sport shorts">> $His clothing leaves $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>> totally bare. <<case "a slutty klan robe">> $His robe partially covers $his <<if $activeSlave.boobs < 300>>flat chest<<else>>breasts<</if>>. @@ -863,17 +866,17 @@ <<case "a slutty outfit">> For today's slutty outfit $he's chosen <<if (random(1,100) > 50) && ($activeSlave.amp !== 1)>> - yoga pants so sheer that everything $he's got is clearly visible. + yoga pants so sheer that everything $he's got is clearly visible. <<elseif ($activeSlave.dick > 0)>> - a miniskirt so brief that $his ass is hanging out the back, and $his dick is occasionally visible from the front. + a miniskirt so brief that $his ass is hanging out the back, and $his dick is occasionally visible from the front. <<else>> - a miniskirt so brief that $his ass is hanging out the back, and $his naked cunt is occasionally visible from the front. + a miniskirt so brief that $his ass is hanging out the back, and $his naked cunt is occasionally visible from the front. <</if>> <<case "a slave gown">> <<if ($activeSlave.amp == 1)>> - $His gorgeous dress is specially designed for $his limbless form, but without legs to support it, it can hardly conceal the outline of everything $he has. + $His gorgeous dress is specially designed for $his limbless form, but without legs to support it, it can hardly conceal the outline of everything $he has. <<else>> - $His gorgeous dress has a thoughtful cut that runs all the way from $his ankle to over $his hip, baring a leg all the way up. + $His gorgeous dress has a thoughtful cut that runs all the way from $his ankle to over $his hip, baring a leg all the way up. <</if>> <<case "a halter top dress">> $His beautiful halter top dress seems to be sculpted around $his bottom. @@ -891,41 +894,41 @@ <</if>> <<case "a kimono">> <<if ($activeSlave.butt > 5)>> - $His kimono demurely covers $his behind, though it cannot conceal its massive shape. + $His kimono demurely covers $his behind, though it cannot conceal its massive shape. <<else>> - $His kimono demurely covers $his behind. + $His kimono demurely covers $his behind. <</if>> <<case "a hijab and abaya" "a niqab and abaya">> <<if ($activeSlave.butt > 5)>> - $His abaya totally conceals $his behind, though it cannot conceal its large size. + $His abaya totally conceals $his behind, though it cannot conceal its large size. <<else>> - $His abaya totally conceals $his behind. + $His abaya totally conceals $his behind. <</if>> <<case "a klan robe">> <<if ($activeSlave.butt > 5)>> - $His robe totally conceals $his behind, though it cannot conceal its large size. + $His robe totally conceals $his behind, though it cannot conceal its large size. <<else>> - $His robe totally conceals $his behind. + $His robe totally conceals $his behind. <</if>> <<case "a burqa">> <<if ($activeSlave.butt > 7)>> - $His burqa totally conceals $his behind, though it cannot conceal its absurd size. + $His burqa totally conceals $his behind, though it cannot conceal its absurd size. <<else>> - $His burqa totally conceals $his behind. + $His burqa totally conceals $his behind. <</if>> <<case "a burkini">> <<if ($activeSlave.butt > 6)>> - $His burkini finds itself accentuating the absurd size of $his behind. + $His burkini finds itself accentuating the absurd size of $his behind. <<else>> - $His burkini modestly covers $his behind. + $His burkini modestly covers $his behind. <</if>> <<case "a hijab and blouse">> <<if ($activeSlave.butt > 5)>> - $His skirt modestly covers $his behind, though it cannot conceal its large size. + $His skirt modestly covers $his behind, though it cannot conceal its large size. <<else>> - $His skirt modestly covers $his behind. + $His skirt modestly covers $his behind. <</if>> - <<case "a tube top and thong" "a bra" "a button-up shirt" "a sweater" "a tank-top" "a thong" "a tube top" "a striped bra" "a slutty klan robe" "a sports bra" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt">> + <<case "a bra" "a button-up shirt" "a slutty klan robe" "a sports bra" "a striped bra" "a sweater" "a t-shirt and thong" "a t-shirt" "a tank-top" "a thong" "a tube top and thong" "a tube top" "an oversized t-shirt">> $His clothing leaves $his butt bare. <<case "a button-up shirt and panties" "a sweater and panties" "a tank-top and panties" "an oversized t-shirt and boyshorts" "boyshorts" "panties" "a t-shirt and panties" "panties and pasties" "striped underwear">> $His panties display the curves of $his butt. @@ -1020,7 +1023,7 @@ <<case "a nice maid outfit">> $His enormous belly is covered only by an apron. <<case "a penitent nuns habit">> - $His enormous belly strains $his habit, it looks absolutely sinful. + $His enormous belly strains $his habit; it looks absolutely sinful. <<case "a ball gown">> Your gaze is drawn to $his enormous squirming pregnant belly by $his striking silken ball gown. <<case "harem gauze">> @@ -1035,9 +1038,9 @@ $His enormous belly pushes out $his robe. <<case "a burqa">> $His enormous belly pushes out $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His enormous belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His enormous belly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His enormous belly pushes out $his tank-top. @@ -1084,9 +1087,9 @@ <<case "a maternity dress">> $His loose dress is completely filled by $his giant belly. <<case "a nice maid outfit">> - $His maid outfit struggles to contain $his giant belly, $his popped navel is visible under $his apron. + $His maid outfit struggles to contain $his giant belly; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His giant belly fills $his habit, it looks absolutely sinful. + $His giant belly fills $his habit; it looks absolutely sinful. <<case "a halter top dress">> $His giant belly fills $his halter top dress, it struggles to contain $his belly. <<case "a ball gown">> @@ -1103,9 +1106,9 @@ $His giant belly fills $his robe. <<case "a burqa">> $His giant belly pushes out $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His giant belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His giant belly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His giant belly pushes out $his tank-top. @@ -1179,9 +1182,9 @@ $His massive gut has no room left to move within $his overstuffed robe. <<case "a burqa">> $His massive gut has no room left to move within $his overstuffed burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His massive belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His massive belly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His massive belly pushes out $his tank-top. @@ -1260,9 +1263,9 @@ <<case "a slutty maid outfit">> $His huge belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> - $His huge belly threatens to tear $his maid outfit open, $his popped navel is visible under $his apron. + $His huge belly threatens to tear $his maid outfit open; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His huge belly bulges $his habit, it looks absolutely sinful. + $His huge belly bulges $his habit; it looks absolutely sinful. <<case "clubslut netting">> $His huge belly threatens to tear apart $his clubslut netting. <<case "a cheerleader outfit">> @@ -1293,9 +1296,9 @@ $His huge belly tents $his robe. <<case "a burqa">> $His huge belly tents $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His huge belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His huge belly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His huge belly pushes out $his tank-top. @@ -1389,9 +1392,9 @@ Tons of jiggling can be seen through $his robe whenever $he moves. <<case "a burqa">> Some jiggling can be seen through $his burqa whenever $he moves. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His jiggling belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> Jiggling flesh can be seen through $his shirt whenever $he moves. <<case "a tank-top" "a tank-top and panties">> Jiggling flesh can be seen through $his tank-top whenever $he moves. @@ -1497,9 +1500,9 @@ Noticeable jiggling can be seen through $his robe whenever $he moves. <<case "a burqa">> A small amount of jiggling can be seen through $his burqa whenever $he moves. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His jiggling belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> A small amount of jiggling can be seen through $his shirt whenever $he moves. <<case "a tank-top" "a tank-top and panties">> A small amount of jiggling can be seen through $his tank-top whenever $he moves. @@ -1580,9 +1583,9 @@ <<case "a slutty maid outfit">> $His big belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> - $His big belly strains $his maid outfit, $his popped navel is visible under $his apron. + $His big belly strains $his maid outfit; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His big belly bulges $his habit, it looks absolutely sinful. + $His big belly bulges $his habit; it looks absolutely sinful. <<case "clubslut netting">> $His big belly strains $his clubslut netting. <<case "a cheerleader outfit">> @@ -1613,9 +1616,9 @@ $His big belly tents $his robe. <<case "a burqa">> $His big belly gently pushes against $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His big belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His big belly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His big belly pushes out $his tank-top. @@ -1723,9 +1726,9 @@ $His robe hides the jiggling motion of $his fat gut. <<case "a burqa">> $His burqa hides the jiggling motion of $his fat gut. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His fat gut jiggles freely. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His shirt somewhat hides the jiggling motion of $his fat gut. <<case "a tank-top" "a tank-top and panties">> $His tank-top barely hides the jiggling motion of $his fat gut. @@ -1833,9 +1836,9 @@ $His growing belly gently tents $his abaya. <<case "a burqa">> $His burqa hides $his growing belly. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His growing belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His shirt hides $his growing belly. <<case "a tank-top" "a tank-top and panties">> $His tank-top hides $his growing belly. @@ -2007,7 +2010,7 @@ <<if $activeSlave.dick > 4>> $His dick sometimes creates a bulge in $his apron as $he moves. <<elseif ($activeSlave.dick > 0) && ($activeSlave.vagina > -1)>> - $His apron exposes $his hemaphroditic genitalia if $he moves too quickly. + $His apron exposes $his hermaphroditic genitalia if $he moves too quickly. <<elseif $activeSlave.dick > 0>> $His apron exposes $his cock if $he moves too quickly. <<elseif $activeSlave.vagina > -1>> @@ -2177,7 +2180,7 @@ $His burqa billows slightly as $he moves. <<case "a bra" "a button-up shirt" "a sweater" "a tank-top" "a tube top" "a striped bra" "a sports bra" "a t-shirt" "an oversized t-shirt">> $His clothing leaves $his genitals bare and visible. - <<case "a tube top and thong" "a button-up shirt and panties" "a thong" "a slutty klan robe" "a sweater and panties" "a tank-top and panties" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "a t-shirt and jeans" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "sport shorts and a t-shirt" "a t-shirt and panties" "panties and pasties" "striped underwear" "sport shorts and a sports bra" "jeans" "a sweater and cutoffs" "leather pants and a tube top" "sport shorts">> + <<case"a button-up shirt and panties" "a slutty klan robe" "a sweater and cutoffs" "a sweater and panties" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a tank-top and panties" "a thong" "a tube top and thong" "an oversized t-shirt and boyshorts" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts and a t-shirt" "sport shorts" "striped underwear">> $His clothing clings to the outline of $his genitals. <<case "a gothic lolita dress">> $His dress ends halfway down $his thighs. @@ -2276,7 +2279,7 @@ <<case "a nice maid outfit">> $His enormous belly is covered only by an apron. <<case "a penitent nuns habit">> - $His enormous belly strains $his habit, it looks absolutely sinful. + $His enormous belly strains $his habit; it looks absolutely sinful. <<case "a ball gown">> Your gaze is drawn to $his enormous belly by $his striking silken ball gown. <<case "harem gauze">> @@ -2297,9 +2300,9 @@ $His enormous belly pushes out $his robe. <<case "a burqa">> $His enormous belly pushes out $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His enormous belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His enormous belly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His enormous belly pushes out $his tank-top. @@ -2346,9 +2349,9 @@ <<case "a maternity dress">> $His loose dress is completely filled by $his giant belly. <<case "a nice maid outfit">> - $His maid outfit struggles to contain $his giant belly, $his popped navel is visible under $his apron. + $His maid outfit struggles to contain $his giant belly; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His giant belly fills $his habit, it looks absolutely sinful. + $His giant belly fills $his habit; it looks absolutely sinful. <<case "a halter top dress">> $His giant belly fills $his halter top dress, it struggles to contain $his belly. <<case "a ball gown">> @@ -2369,9 +2372,9 @@ $His giant belly fills $his abaya. <<case "a burqa">> $His giant belly pushes out $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His giant belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His giant belly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His giant belly pushes out $his tank-top. @@ -2449,9 +2452,9 @@ $His massive gut has no room left to move within $his overstuffed robe. <<case "a burqa">> $His massive gut has no room left to move within $his overstuffed burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His massive belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His massive belly jiggles under $his shirt. <<case "a tank-top" "a tank-top and panties">> $His massive belly jiggles under $his tank-top. @@ -2476,7 +2479,7 @@ <<case "a leotard">> The taut material of $his leotard shows every jiggle in $his massive gut as $he moves. A pair of small ridges adorn $his sides where they have managed to push through the leotard's failing seams. <<case "a bunny outfit">> - $He is a sight in $his bunny outfit. The front of $his massive gut is held still by $his overworked teddy, but everything else of it jiggles obscenely with $his every motion. + $He is a sight in $his bunny outfit. The front of $his massive gut is held still by $his overworked teddy, but every other side of it jiggles obscenely with $his every motion. <<case "attractive lingerie for a pregnant woman">> $His massive gut is gently framed by $his silken vest. <<case "a maternity dress">> @@ -2530,9 +2533,9 @@ <<case "a slutty maid outfit">> $His huge belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> - $His huge belly threatens to tear $his maid outfit open, $his popped navel is visible under $his apron. + $His huge belly threatens to tear $his maid outfit open; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His huge belly bulges $his habit, it looks absolutely sinful. + $His huge belly bulges $his habit; it looks absolutely sinful. <<case "clubslut netting">> $His huge belly threatens to tear apart $his clubslut netting. <<case "a cheerleader outfit">> @@ -2563,9 +2566,9 @@ $His huge belly tents $his robe. <<case "a burqa">> $His huge belly tents $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His huge belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His huge belly lewdly stretches $his shirt. <<case "a tank-top" "a tank-top and panties">> $His huge belly lewdly stretches $his tank-top. @@ -2671,9 +2674,9 @@ Some jiggling can be seen through $his robe whenever $he moves. <<case "a burqa">> Some jiggling can be seen through $his burqa whenever $he moves. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His jiggling belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> Some jiggling can be seen through $his shirt whenever $he moves. <<case "a tank-top" "a tank-top and panties">> Some jiggling can be seen through $his tank-top whenever $he moves. @@ -2785,9 +2788,9 @@ A small amount of jiggling can be seen through $his robe whenever $he moves. <<case "a burqa">> A small amount of jiggling can be seen through $his burqa whenever $he moves. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His jiggling belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> A small amount of jiggling can be seen through $his shirt whenever $he moves. <<case "a tank-top" "a tank-top and panties">> A small amount of jiggling can be seen through $his tank-top whenever $he moves. @@ -2868,9 +2871,9 @@ <<case "a slutty maid outfit">> $His big belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> - $His big belly strains $his maid outfit, $his popped navel is visible under $his apron. + $His big belly strains $his maid outfit; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His big belly bulges $his habit, it looks absolutely sinful. + $His big belly bulges $his habit; it looks absolutely sinful. <<case "clubslut netting">> $His big belly strains $his clubslut netting. <<case "a cheerleader outfit">> @@ -2897,9 +2900,9 @@ $His big belly gently pushes against $his robe. <<case "a burqa">> $His big belly gently pushes against $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His big belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His big belly gentlly pushes out $his shirt. <<case "a tank-top" "a tank-top and panties">> $His big belly gentlly pushes out $his tank-top. @@ -3009,9 +3012,9 @@ $His robe hides the jiggling motion of $his fat gut. <<case "a burqa">> $His burqa hides the jiggling motion of $his fat gut. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His jiggling belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> Jiggling flesh can barely be seen through $his shirt whenever $he moves. <<case "a tank-top" "a tank-top and panties">> Jiggling flesh can barely be seen through $his tank-top whenever $he moves. @@ -3125,9 +3128,9 @@ $His robe totally conceals $his distended belly. <<case "a burqa">> $His burqa totally conceals $his distended belly. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His distended belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His shirt totally conceals $his distended belly. <<case "a tank-top" "a tank-top and panties">> $His tank-top totally conceals $his distended belly. @@ -3212,9 +3215,9 @@ $His massive gut has no room left to move within $his overstuffed robe. <<case "a burqa">> $His massive gut has no room left to move within $his overstuffed burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His massive jiggling gut is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> The taut material of $his shirt shows every jiggle in $his massive gut as $he moves. <<case "a tank-top" "a tank-top and panties">> The taut material of $his tank-top shows every jiggle in $his massive gut as $he moves. @@ -3295,9 +3298,9 @@ <<case "a slutty maid outfit">> $His taut, sloshing belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> - $His taut, sloshing belly threatens to tear $his maid outfit open, $his popped navel is visible under $his apron. + $His taut, sloshing belly threatens to tear $his maid outfit open; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His taut, sloshing belly bulges $his habit, it looks absolutely sinful. + $His taut, sloshing belly bulges $his habit; it looks absolutely sinful. <<case "clubslut netting">> $His taut, sloshing belly threatens to tear apart $his clubslut netting. $His belly bulges obscenely through the mesh. <<case "a cheerleader outfit">> @@ -3330,9 +3333,9 @@ $His taut, sloshing belly pushes against $his robe. <<case "a burqa">> $His taut, sloshing belly pushes against $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His taut sloshing belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His taut, sloshing belly pushes against $his shirt. <<case "a tank-top" "a tank-top and panties">> $His taut, sloshing belly pushes against $his tank-top. @@ -3436,9 +3439,9 @@ Some jiggling can be seen through $his robe whenever $he moves. <<case "a burqa">> Some jiggling can be seen through $his burqa whenever $he moves. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His jiggling belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> Small amounts of jiggling flesh can be seen through $his shirt whenever $he moves. <<case "a tank-top" "a tank-top and panties">> Small amounts of jiggling flesh can be seen through $his tank-top whenever $he moves. @@ -3548,9 +3551,9 @@ A small amount of jiggling can be seen through $his robe whenever $he moves. <<case "a burqa">> A small amount of jiggling can be seen through $his burqa whenever $he moves. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His jiggling belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> Small amounts of jiggling flesh can be seen through $his shirt whenever $he moves. <<case "a tank-top" "a tank-top and panties">> Small amounts of jiggling flesh can be seen through $his tank-top whenever $he moves. @@ -3631,9 +3634,9 @@ <<case "a slutty maid outfit">> $His rounded, sloshing belly is partially covered by a thin white blouse. <<case "a nice maid outfit">> - $His rounded, sloshing belly strains $his maid outfit, $his popped navel is visible under $his apron. + $His rounded, sloshing belly strains $his maid outfit; $his popped navel is visible under $his apron. <<case "a penitent nuns habit">> - $His rounded, sloshing belly bulges $his habit, it looks absolutely sinful. + $His rounded, sloshing belly bulges $his habit; it looks absolutely sinful. <<case "clubslut netting">> $His rounded, sloshing belly strains $his clubslut netting. <<case "a cheerleader outfit">> @@ -3664,9 +3667,9 @@ $His rounded, sloshing belly pushes against $his robe. <<case "a burqa">> $His rounded, sloshing belly pushes against $his burqa. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His rounded sloshing belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His rounded, sloshing belly pushes against $his shirt. <<case "a tank-top" "a tank-top and panties">> $His rounded, sloshing belly pushes against $his tank-top. @@ -3776,9 +3779,9 @@ $His robe hides the jiggling motion of $his fat gut. <<case "a burqa">> $His burqa hides the jiggling motion of $his fat gut. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His fat gut jiggles freely. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His shirt somewhat hides the jiggling motion of $his fat gut. <<case "a tank-top" "a tank-top and panties">> $His tank-top barely hides the jiggling motion of $his fat gut. @@ -3890,9 +3893,9 @@ $His robe totally conceals $his distended belly. <<case "a burqa">> $His burqa totally conceals $his distended belly. - <<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "sport shorts and a sports bra" "jeans" "sport shorts" "leather pants and a tube top">> + <<case "a bra" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "a striped bra" "a thong" "a tube top and thong" "a tube top" "boyshorts" "cutoffs" "jeans" "leather pants and a tube top" "leather pants and pasties" "leather pants" "panties and pasties" "panties" "sport shorts and a sports bra" "sport shorts" "striped underwear">> $His distended belly is totally bare. - <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "a t-shirt and thong" "sport shorts and a t-shirt" "a t-shirt and panties">> + <<case "a button-up shirt and panties" "a button-up shirt" "a police uniform" "a t-shirt and jeans" "a t-shirt and panties" "a t-shirt and thong" "a t-shirt" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt">> $His shirt totally conceals $his distended belly. <<case "a tank-top" "a tank-top and panties">> $His tank-top totally conceals $his distended belly. diff --git a/src/uncategorized/wardrobe.tw b/src/uncategorized/wardrobe.tw index 6832539ae089f688c323e167d1580d8a8488250f..d90f0bc175361d888bb8710363dee78655690c25 100644 --- a/src/uncategorized/wardrobe.tw +++ b/src/uncategorized/wardrobe.tw @@ -312,4 +312,3 @@ The room containing all the clothes and accessories you have available to dress You are also well stocked with drugs to be mixed with the enema water for use in medical enemas. <</if>> <</if>> - diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw index 03811128432841ebdc898c395b7e9c5d94b5bb54..2d7b551b13a2be50627a2a2948924c93d6cad464 100644 --- a/src/utility/extendedFamilyWidgets.tw +++ b/src/utility/extendedFamilyWidgets.tw @@ -193,20 +193,20 @@ <</for>> <<if $children.length > 0>> $He -<<if $children.length > 2>> - has @@.lightgreen;many grandchildren, - <<for $j = 0; $j < $children.length; $j++>> - <<if $j < $children.length-1>> - $children[$j].slaveName, - <<else>> - and $children[$j].slaveName amongst your slaves.@@ - <</if>> - <</for>> -<<elseif $children.length > 1>> - has @@.lightgreen;two grandchildren, $children[0].slaveName, and $children[1].slaveName as your slaves.@@ -<<elseif $children.length > 0>> - has a @@.lightgreen;grandchild, $children[0].slaveName as your slave.@@ -<</if>> + <<if $children.length > 2>> + has @@.lightgreen;many grandchildren, + <<for $j = 0; $j < $children.length; $j++>> + <<if $j < $children.length-1>> + $children[$j].slaveName, + <<else>> + and $children[$j].slaveName amongst your slaves.@@ + <</if>> + <</for>> + <<elseif $children.length > 1>> + has @@.lightgreen;two grandchildren, $children[0].slaveName, and $children[1].slaveName as your slaves.@@ + <<elseif $children.length > 0>> + has a @@.lightgreen;grandchild, $children[0].slaveName as your slave.@@ + <</if>> <</if>> <<set $children = []>> diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw index 35b44478e7ccd1838e5d42356578116979915bff..c787ff1739d05e1eeb3fbaab26be7dd2aaf62507 100644 --- a/src/utility/miscWidgets.tw +++ b/src/utility/miscWidgets.tw @@ -648,6 +648,8 @@ <<widget "Sh">>$ShEnunciate<</widget>> <<widget "sc">>$scEnunciate<</widget>> <<widget "Sc">>$ScEnunciate<</widget>> +<<widget "sch">>$schEnunciate<</widget>> +<<widget "Sch">>$SchEnunciate<</widget>> <<widget "x">>$xEnunciate<</widget>> <<widget "X">>$XEnunciate<</widget>>