From 7eaedb371444bfac29b58dc2608511c560682681 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Fri, 28 Aug 2020 23:39:43 -0400 Subject: [PATCH] more --- src/npc/generate/newSlaveIntro.js | 1165 +++++++++++++++-------------- 1 file changed, 603 insertions(+), 562 deletions(-) diff --git a/src/npc/generate/newSlaveIntro.js b/src/npc/generate/newSlaveIntro.js index 6daec815464..bb816c17fc0 100644 --- a/src/npc/generate/newSlaveIntro.js +++ b/src/npc/generate/newSlaveIntro.js @@ -4,79 +4,85 @@ */ App.UI.newSlaveIntro = function(slave) { const desc = SlaveTitle(slave); - const { title: Master } = getEnunciation(slave); - const { His, Him, He, his, him, he, girl, hers, himself } = getPronouns(slave); - const { he: heP, his: hisP } = getPronouns(V.PC); + const {title: Master} = getEnunciation(slave); + const { + His, He, his, him, he, girl, hers, himself + } = getPronouns(slave); + // const {he: heP, his: hisP} = getPronouns(V.PC); const el = new DocumentFragment(); let r; let p; let span; - let _brandTarget = V.brandTarget.primary; - let _scarTarget = V.scarTarget.primary; + let brandTarget = V.brandTarget.primary; + let scarTarget = V.scarTarget.primary; modSetup(); el.append(inspect()); + el.append(choices()); + + return el; + /** * use the secondary location if the primary mark target won't work for this slave */ function modSetup() { if (slave.dick === 0) { if (V.brandTarget.primary === "penis") { - let _brandTarget = V.brandTarget.secondary; + brandTarget = V.brandTarget.secondary; } if (V.scarTarget.primary === "penis") { - let _scarTarget = V.scarTarget.secondary; + scarTarget = V.scarTarget.secondary; } } if (slave.balls === 0 && slave.scrotum === 0) { if (["left testicle", "right testicle"].includes(V.brandTarget.primary)) { - let _brandTarget = V.brandTarget.secondary; + brandTarget = V.brandTarget.secondary; } if (["left testicle", "right testicle"].includes(V.scarTarget.primary)) { - let _scarTarget = V.scarTarget.secondary; + scarTarget = V.scarTarget.secondary; } } if (slave.earShape === "none") { if (["left ear", "right ear"].includes(V.brandTarget.primary)) { - let _brandTarget = V.brandTarget.secondary; + brandTarget = V.brandTarget.secondary; } if (["left ear", "right ear"].includes(V.scarTarget.primary)) { - let _scarTarget = V.scarTarget.secondary; + scarTarget = V.scarTarget.secondary; } } if (getLeftArmID(slave) !== 1) { if (["left upper arm", "left lower arm", "left wrist", "left hand"].includes(V.brandTarget.primary)) { - let _brandTarget = V.brandTarget.secondary; + brandTarget = V.brandTarget.secondary; } if (["left upper arm", "left lower arm", "left wrist", "left hand"].includes(V.scarTarget.primary)) { - let _scarTarget = V.scarTarget.secondary; + scarTarget = V.scarTarget.secondary; } } if (getRightArmID(slave) !== 1) { if (["right upper arm", "right lower arm", "right wrist", "right hand"].includes(V.brandTarget.primary)) { - let _brandTarget = V.brandTarget.secondary; + brandTarget = V.brandTarget.secondary; } if (["right upper arm", "right lower arm", "right wrist", "right hand"].includes(V.scarTarget.primary)) { - let _scarTarget = V.scarTarget.secondary; + scarTarget = V.scarTarget.secondary; } } if (getLeftLegID(slave) !== 1) { if (["left thigh", "left calve", "left ankle", "left foot"].includes(V.brandTarget.primary)) { - let _brandTarget = V.brandTarget.secondary; + brandTarget = V.brandTarget.secondary; } if (["left thigh", "left calve", "left ankle", "left foot"].includes(V.scarTarget.primary)) { - let _scarTarget = V.scarTarget.secondary; + scarTarget = V.scarTarget.secondary; } } if (getRightLegID(slave) !== 1) { if (["right thigh", "right calve", "right ankle", "right foot"].includes(V.brandTarget.primary)) { - let _brandTarget = V.brandTarget.secondary; + brandTarget = V.brandTarget.secondary; } if (["right thigh", "right calve", "right ankle", "right foot"].includes(V.scarTarget.primary)) { - let _scarTarget = V.scarTarget.secondary; + scarTarget = V.scarTarget.secondary; } } } @@ -156,16 +162,16 @@ App.UI.newSlaveIntro = function(slave) { if (V.gingering !== 0 && V.beforeGingering !== 0 && V.beforeGingering.ID === slave.ID) { r.push(` /* extra checks to ensure gingering state is not left over from a different slave that was inspected but not purchased */`); - let _seed = "sale"; + let seed = "sale"; if (V.gingeringDetected === 1) { if (V.gingeringDetection === "slaver") { - let _seed = "sale, as your slaving experience revealed"; + seed = "sale, as your slaving experience revealed"; } else if (V.gingeringDetection === "mercenary") { - let _seed = "sale, as the seller admitted in the face of your intimidating reputation"; + seed = "sale, as the seller admitted in the face of your intimidating reputation"; } else if (V.gingeringDetection === "force") { - let _seed = "sale, as the seller admitted in the face of your deadly reputation"; + seed = "sale, as the seller admitted in the face of your deadly reputation"; } else { - let _seed = "sale, as you suspected"; + seed = "sale, as you suspected"; } } @@ -174,43 +180,43 @@ App.UI.newSlaveIntro = function(slave) { if (V.gingeringDetected === 1) { r.push(` indeed`); } - r.push(` given antidepressants to make ${him} seem less fearful for _seed. ${He} is much less trusting than ${he} appeared in the market.`); + r.push(` given antidepressants to make ${him} seem less fearful for ${seed}. ${He} is much less trusting than ${he} appeared in the market.`); } else if (V.gingering === "depressant") { r.push(`${His} intake toxicology reveals that ${he} was`); if (V.gingeringDetected === 1) { r.push(` indeed`); } - r.push(` given a depressant to make ${him} seem less hateful for _seed. ${He} is much less obedient than ${he} appeared in the market.`); + r.push(` given a depressant to make ${him} seem less hateful for ${seed}. ${He} is much less obedient than ${he} appeared in the market.`); } else if (V.gingering === "stimulant") { r.push(`${His} intake toxicology reveals that ${he} was`); if (V.gingeringDetected === 1) { r.push(` indeed`); } - r.push(` given a stimulant to make ${him} seem healthier for _seed. ${He} is much less vital than ${he} appeared in the market.`); + r.push(` given a stimulant to make ${him} seem healthier for ${seed}. ${He} is much less vital than ${he} appeared in the market.`); } else if (V.gingering === "vasoconstrictor") { r.push(`${His} intake toxicology reveals that ${he} was`); if (V.gingeringDetected === 1) { r.push(` indeed`); } - r.push(` given a vasoconstrictor to make ${his} cock seem more feminine for _seed. It's larger and more apt to become hard than it appeared in the market.`); + r.push(` given a vasoconstrictor to make ${his} cock seem more feminine for ${seed}. It's larger and more apt to become hard than it appeared in the market.`); } else if (V.gingering === "vasodilator") { r.push(`${His} intake toxicology reveals that ${he} was`); if (V.gingeringDetected === 1) { r.push(` indeed`); } - r.push(` given a vasodilator to give ${him} an excessive erection for _seed. ${His} dick is somewhat smaller than it appeared in the market, and ${he}'s not really hard all the time.`); + r.push(` given a vasodilator to give ${him} an excessive erection for ${seed}. ${His} dick is somewhat smaller than it appeared in the market, and ${he}'s not really hard all the time.`); } else if (V.gingering === "aphrodisiac") { r.push(`${His} intake toxicology reveals that ${he} was`); if (V.gingeringDetected === 1) { r.push(` indeed`); } - r.push(` given aphrodisiacs to make ${him} horny and attracted to everyone for _seed. ${His} true sex drive and sexuality remain to be discovered.`); + r.push(` given aphrodisiacs to make ${him} horny and attracted to everyone for ${seed}. ${His} true sex drive and sexuality remain to be discovered.`); } else { r.push(`A close inspection of ${his} anus reveals that ${he} was`); if (V.gingeringDetected === 1) { r.push(` indeed`); } - r.push(` doctored with an irritant to make ${him} present ${his} butt when shown for _seed. ${He} is not an actual anal sex enthusiast.`); + r.push(` doctored with an irritant to make ${him} present ${his} butt when shown for ${seed}. ${He} is not an actual anal sex enthusiast.`); } } @@ -647,20 +653,20 @@ App.UI.newSlaveIntro = function(slave) { slave.trust -= 4; } else if ((slave.actualAge < 18)) { /* begin is a child block */ - /* Set _understands to 0 or 1 to reflect whether ${he} understands. */ - let _understands = 0; + /* Set understands to 0 or 1 to reflect whether ${he} understands. */ + let understands = 0; if ((slave.origin === "$He was raised in a radical slave school that treated $him from a very young age, up to the point that $he never experienced male puberty.") || (slave.origin === "$He was raised in a radical slave school that treated $him with drugs and surgery from a very young age.") || (slave.origin === "$He was brought up in a radical slave school to match $his twin.")) { - let _understands = 1; + understands = 1; } else if (isSexuallyPure(slave)) { if (slave.intelligence > jsRandom(0, 50)) { - let _understands = 1; + understands = 1; } } else { if (slave.intelligence > jsRandom(-50, 50)) { - let _understands = 1; + understands = 1; } } - if (_understands < 1) { + if (understands < 1) { r.push(`${He} has heard that you like little ${girl}s and is <span class="mediumaquamarine">reassured</span> because ${he} misunderstands what this means.`); slave.trust += 2; } else if ((slave.sexualQuirk === "perverted")) { @@ -815,19 +821,18 @@ App.UI.newSlaveIntro = function(slave) { const el = new DocumentFragment(); let p; let div; - let span; let linkArray = []; /** - * - * @param {Object} param0 + * + * @param {object} param0 * @param {string} [param0.introText] * @param {string} [param0.linkName] - * @param {function(App.Entity.SlaveState):Node|string} [param0.result] + * @param {function(App.Entity.SlaveState):string|DocumentFragment} [param0.result] * @param {boolean} [param0.requirements] * @param {string} [param0.note] */ - function choice({ introText, linkName, result, requirements, note } = {}) { + function choice({introText, linkName, result, requirements, note} = {}) { let span = document.createElement("span"); if (introText) { App.UI.DOM.appendNewElement("span", el, introText, "note"); @@ -837,29 +842,30 @@ App.UI.newSlaveIntro = function(slave) { return; } + const results = result(slave); + span.append( App.UI.DOM.link( linkName, () => { - jQuery("#introResult").empty().append((result(slave))); + jQuery("#introResult").empty().append(results); } ) - ) + ); if (note) { App.UI.DOM.appendNewElement("span", span, ` ${note}`, "note"); } - linkArray.push(span) + linkArray.push(span); // TODO: append linkstrip } if (slave.breedingMark === 1) { r.push(`${He} knows ${his} duty in life and playfully splays ${himself} across your desk with ${his} legs spread wide. Unfortunately, ${he} must first be unwrapped before any breeding can begin, so for the time being, ${he} rights ${himself} and makes ${his} way to your crotch to show you just how much ${he} was worth the ¤.`); - slave.counter.oral++, V.oralTotal++; - + slave.counter.oral++; + V.oralTotal++; } else { - if (V.rulesAssistantAuto === 0) { div = document.createElement("div"); div.id = "rules"; @@ -867,28 +873,28 @@ App.UI.newSlaveIntro = function(slave) { App.UI.DOM.link( "Apply default rules", () => { - jQuery("#rules").empty().replace(DefaultRules(slave)) + jQuery("#rules").empty().append(DefaultRules(slave)); } ) - ) + ); if (slave.devotion <= 20) { - div.append(`Will not apply many cosmetic and surgical options since ${he} is not obedient`) + div.append(`Will not apply many cosmetic and surgical options since ${he} is not obedient`); } el.append(div); } p = document.createElement("p"); - p.id = "introResult" - let result; + p.id = "introResult"; + el.append(p); App.UI.DOM.appendNewElement("span", p, `Now might be a good time to introduce ${him} to life in your stable of sex slaves`, "note"); switch (slave.origin) { case "$He submitted to enslavement to escape the hard life of an old world whore.": choice({ introText: `, and since ${he} wanted to leave the old world...`, - linkName: `Brand ${him} on the _brandTarget to introduce ${him} to life as a slave whore`, + linkName: `Brand ${him} on the brandTarget to introduce ${him} to life as a slave whore`, result: function(slave) { const r = []; - r.push(`You tell ${him} you'll be marking ${him} as one of your working ${girl}s. ${He} looks resigned as ${he} follows you to the body modification studio, and lets you strap ${him} down with ${his} _brandTarget bare. ${He} understands what's coming. You've got ${him} positioned just right`); + r.push(`You tell ${him} you'll be marking ${him} as one of your working ${girl}s. ${He} looks resigned as ${he} follows you to the body modification studio, and lets you strap ${him} down with ${his} brandTarget bare. ${He} understands what's coming. You've got ${him} positioned just right`); if (canDoAnal(slave)) { r.push(`, so your cock slides up ${his} experienced asshole easily`); } @@ -900,13 +906,13 @@ App.UI.newSlaveIntro = function(slave) { if (canDoAnal(slave)) { r.push(VCheck.Anal()); } - slave.brand[_brandTarget] = V.brandDesign.primary; + slave.brand[brandTarget] = V.brandDesign.primary; slave.devotion -= 5; slave.trust -= 10; healthDamage(slave, 10); - return r.join(" ") + return r.join(" "); }, - }) + }); break; case "$He submitted to enslavement to get access to modern prenatal care.": choice({ @@ -927,9 +933,9 @@ App.UI.newSlaveIntro = function(slave) { slave.trust -= 10; slave.counter.oral += 1; V.oralTotal += 1; - return r.join(" ") + return r.join(" "); }, - }) + }); break; case "$He offered $himself as a slave to escape the horrors a blind $girl faces on the streets.": choice({ @@ -951,9 +957,9 @@ App.UI.newSlaveIntro = function(slave) { TerminatePregnancy(slave); slave.counter.abortions++; V.abortionsTotal++; - return r.join(" ") + return r.join(" "); }, - }) + }); break; case "$He submitted to enslavement for a better chance at survival than $he had as a migrant.": choice({ @@ -962,14 +968,14 @@ App.UI.newSlaveIntro = function(slave) { result: function(slave) { const r = []; r.push(`You carefully and patiently explain to the fearful anal virgin how skilled Free Cities slaves take dick up the butt. ${He} is allowed to go at ${his} own pace, hesitantly progressing from enemata to a single well-lubricated finger to a little plug. After a long while ${he}'s beginning to get aroused, and you bring ${him} over to the couch to spoon. ${He} stiffens with fear but you take your time and just cuddle for a while before gently sodomizing ${him}. ${He} <span class="hotpink">thanks</span> you for being a <span class="mediumaquamarine">kind master,</span> and has <span class="green">learned</span> the basics of taking it up the ass.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.devotion += 4; slave.trust += 4; slave.anus += 1; slave.skill.anal += 10; - return r.join(" ") + return r.join(" "); }, - }) + }); choice({ linkName: `Initiate ${him} with anal pain`, @@ -977,14 +983,14 @@ App.UI.newSlaveIntro = function(slave) { const r = []; r.push(`You haul ${him} wordlessly into the bathroom. In a few minutes ${he} finds ${himself} standing obediently behind you, waiting for your next command with a clean colon and an uncomfortably large buttplug stretching ${his} virgin ass. Once it's been in long enough to prevent any damage, you push ${his} fearful form over the desk and pull it free. ${He} squeals with more embarrassment than pain at the feeling of ${his} first sodomy, but before long you're pounding ${him} hard enough that all ${he} can do is moan and desperately wonder when you'll be done with ${his} poor little butt. You keep ${him} around all day; by night, ${his} asshole is well broken in and <span class="mediumorchid">so is ${his} spirit.</span> ${He} <span class="gold">fears</span> you now, knowing this is only the beginning.`); r.push(VCheck.Anal()); - return r.join(" ") + return r.join(" "); }, resultApply: () => { slave.devotion -= 5; slave.trust -= 10; slave.anus += 1; } - }) + }); break; case "$He begged to be enslaved to avoid starvation.": choice({ @@ -993,19 +999,22 @@ App.UI.newSlaveIntro = function(slave) { result: function(slave) { const r = []; r.push(`You point ${him} toward the nearest slave food dispenser and tell ${him} to drink as much as ${he} likes. ${He} <span class="hotpink">eagerly complies,</span> quickly bloating ${his} long-deprived belly; between the psychoactive effects of slave food, the sudden end of ${his} long fast, and the look of <span class="mediumaquamarine">slightly spaced-out contentment</span> on ${his} face as ${he} rubs ${his} sated belly, you have a feeling that you're witnessing the beginning of an <span class="red">overeating habit</span>.`); - resultApply: () => { + () => { slave.devotion += 10; slave.trust += 10; if (slave.behavioralQuirk === "fitness") { slave.behavioralQuirk = "none"; } slave.behavioralFlaw = "gluttonous"; - slave.inflation = 1, slave.inflationType = "food", slave.inflationMethod = 1; - } - return r.join(" ") + slave.inflation = 1; + slave.inflationType = "food"; + slave.inflationMethod = 1; + }; + return r.join(" "); }, - }) + }); + break; case "$He submitted to enslavement as $his only way to obtain surgery to transform $him into a woman.": choice({ introText: `and since ${he} came here for surgery...`, @@ -1025,9 +1034,9 @@ App.UI.newSlaveIntro = function(slave) { slave.vagina = 0; slave.dick = 0; slave.balls = 0; - return r.join(" ") + return r.join(" "); }, - }) + }); choice({ introText: `Use ${him} as ${he} is`, linkName: ``, @@ -1035,13 +1044,14 @@ App.UI.newSlaveIntro = function(slave) { const r = []; r.push(`You announce that ${he}'ll have to earn ${his} surgery — if ${he} ever gets it at all. ${He} only has time for a moment of shock and betrayal before ${he} finds ${his} face jammed into the cushions of your office couch. ${He} struggles, outraged, but only manages to avoid sodomy for a moment. ${His} resistance only makes it harder on ${himself} as you take ${his} anus without mercy. By the third time you buttfuck ${him} ${he}'s learned to <span class="hotpink">relax and let it happen.</span>`); r.push(VCheck.Anal()); - return r.join(" ") + return r.join(" "); }, resultApply: () => { slave.devotion += 4; slave.anus += 1; } - }) + }); + break; case "${He} submitted to enslavement out of a misguided desire to join a sexually libertine society.": choice({ introText: `and since ${he}'s looking for a sexually libertine society...`, @@ -1055,13 +1065,13 @@ App.UI.newSlaveIntro = function(slave) { r.push(`strap-on`); } r.push(` lined up with ${his} sissy ass ${he} starts to struggle and protest, asking you to fuck in a more comfortable position. You tell ${him} to keep ${his} whore mouth shut, and administer an awful slap when ${he} tries to keep talking. ${His} stupid illusions about life as a sex slave <span class="mediumorchid">melt away</span> with the burning sensation of a dick forcing its way up ${his} ass at a harsh angle. ${He} wilts a little as you abuse ${his} butt, and afterward, ${he}'s in tears as ${he} stumbles to the bathroom to wash ${his} fuckhole. ${He}'s regained ${his} composure by the time ${he} gets out but <span class="gold">breaks down</span> when you tell ${him} to present ${his} asshole again.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.devotion -= 5; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - get requirements() { return (canDoAnal(slave)) } - }) + get requirements() { return (canDoAnal(slave)); } + }); choice({ introText: `Cruelly castrate ${him}`, linkName: ``, @@ -1080,40 +1090,41 @@ App.UI.newSlaveIntro = function(slave) { r.push(`wilting`); } r.push(` butthole. ${He} gingerly stumbles back to your office with you and, without even being ordered to, arranges ${himself} on the couch with ${his} fuckhole ready. The gelding does affect ${his} <span class="red">health</span> somewhat.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.devotion -= 10; slave.trust -= -10; surgeryDamage(slave, 10); slave.balls = 0; - return r.join(" ") + return r.join(" "); }, - get requirements() { return ((slave.indentureRestrictions <= 0) && (V.seeExtreme === 1)) } - }) - + get requirements() { return ((slave.indentureRestrictions <= 0) && (V.seeExtreme === 1)); } + }); + break; case "$He asked to be enslaved out of naïve infatuation with you.": choice({ introText: `and since ${he} is already infatuated with you...`, linkName: `Let ${him} show you what ${he} can do`, result: function(slave) { + const r = []; + let temp; if (slave.vagina === 1) { - let _temp = jsRandom(1, 100); + temp = jsRandom(1, 100); } else { - let _temp = 0; + temp = 0; } - if (_temp > 50) { - r.push(VCheck.Vaginal()) + if (temp > 50) { + r.push(VCheck.Vaginal()); } else { - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); } - const r = []; r.push(`You tell ${him} that slaves working in your penthouse are all expected to please you, and ${he}'ll have to impress you. ${He} smiles and even giggles a little, standing to strip off ${his} clothes, taking ${his} time and showing off ${his} fresh body. ${He} gets lewder and lewder, displaying youthful libido basking in the gaze of ${his} crush. ${He} slowly becomes more and more desperate to entice you, so you ${him} keep going out of curiosity, to see how far ${he}'ll go. ${He} goes to the point of reclining on the couch with ${his} legs back, spreading ${himself} and masturbating, and when that fails to get you out of your chair, ${he} begins to wink ${his} `); - if (_temp > 50) { + if (temp > 50) { r.push(`pussy`); } else { r.push(`anus`); } r.push(` meaningfully. ${He}'s clearly got a good idea of what many men like, and you head over and take ${his} tight `); - if (_temp > 50) { + if (temp > 50) { r.push(`pussy`); } else { r.push(`asshole`); @@ -1122,11 +1133,11 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion += 4; slave.trust += 4; - return r.join(" ") + return r.join(" "); }, - get requirements() { return (canDoAnal(slave) || canDoVaginal(slave)) } - }) + get requirements() { return (canDoAnal(slave) || canDoVaginal(slave)); } + }); choice({ introText: `Make sure ${he} knows ${he} made a mistake`, linkName: ``, @@ -1145,13 +1156,14 @@ App.UI.newSlaveIntro = function(slave) { r.push(`even for an`); } r.push(` anal virgin it's well beyond ${him}. ${He} does ${his} best but tears begin to streak ${his} cheeks. After a while you tire of the position and flip ${him} over onto ${his} face to assrape ${him} doggy style. This allows you to whisper into ${his} ear that ${his} holes are your property now, to use, to abuse, or to sell. ${He} <span class="mediumorchid">sobs in despair</span> at the latter, knowing ${he}'s <span class="gold">thrown ${his} life away.</span>`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.devotion -= 5; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - get requirements() { return (canDoAnal(slave)) } - }) + get requirements() { return (canDoAnal(slave)); } + }); + break; case "$He asked to be enslaved in the hope you'd treat a fellow woman well.": choice({ introText: `and since ${he}'s hoping to protect someone...`, @@ -1159,7 +1171,7 @@ App.UI.newSlaveIntro = function(slave) { result: function(slave) { const r = []; r.push(`You ask conversationally what experience ${he} has with women. ${He} takes a while to understand your point, but once ${he} does, ${he} blushes and says, `); - r.push(Spoken(slave, `"Uh, I messed around in school once or twice, but since then, I've never —"`)) + r.push(Spoken(slave, `"Uh, I messed around in school once or twice, but since then, I've never —"`)); r.push(`and is then quiet, because you're making out with ${him}. ${He}'s surprised and stiffens for a moment but perceptibly thinks things through and realizes ${he}'s yours now, and then ${he} relaxes to let you have your way. You push ${his} boundaries pretty far, and before long you've got ${him} down `); if (hasBothLegs(slave)) { r.push(`on ${his} knees`); @@ -1170,9 +1182,9 @@ App.UI.newSlaveIntro = function(slave) { slave.trust += 4; slave.counter.oral += 1; V.oralTotal += 1; - return r.join(" ") + return r.join(" "); }, - }) + }); choice({ linkName: `Put ${him} in ${his} place`, result: function(slave) { @@ -1190,12 +1202,13 @@ App.UI.newSlaveIntro = function(slave) { r.push(` ${He} `); } r.push(` tries to struggle, but you give ${him} a warning slap and then push yourself home. ${He} starts to cry, more from hopelessness than anal pain, knowing that <span class="mediumorchid">you're a slaveowner like any other,</span> more likely to <span class="gold">abuse ${him}</span> than be sympathetic.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.devotion -= 5; slave.trust -= 5; - return r.join(" ") + return r.join(" "); }, - }) + }); + break; case "$He asked to be enslaved since $he felt you were $his only hope of becoming a prettier woman.": choice({ introText: `and since ${he} desperately wants to be a prettier woman`, @@ -1203,27 +1216,27 @@ App.UI.newSlaveIntro = function(slave) { result: function(slave) { const r = []; r.push(`You schedule ${him} for some vocal surgery. You have ${him} brought in to be inspected the next day, and though ${he}'s healing well, ${he}'s not to speak yet. ${He}'s sore enough to obey the stricture, but when ${he} stands naked before your desk ${he} clearly wants to communicate something. You approach ${him} and place a finger on ${his} fake lips, shushing ${him}, and you tell ${him} you understand. You kiss ${him} and push ${him} backward until ${he} falls onto the couch; ${he} smiles <span class="mediumaquamarine">trustingly</span> and pulls ${his} legs apart and back, offering you ${his} asshole. ${He} has a stiff hard-on, a clear indication that ${he}'s honestly <span class="hotpink">attracted to you,</span> and though ${he} still doesn't speak, ${he} makes a sore little whinny of pleasure when you enter ${his} welcoming butt.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.devotion += 4; slave.trust += 4; slave.voice += 1; surgeryDamage(slave, 10); - return r.join(" ") + return r.join(" "); }, - }) + }); choice({ linkName: `Let ${him} know ${he}'ll have to earn ${his} rewards`, result: function(slave) { const r = []; r.push(`You complete the induction and then perform a thorough inspection, noting down each area in which surgery or drugs could improve ${his} body. ${He} understands what you're doing and can barely contain ${his} excitement, but you tell ${him} that ${he}'ll have to earn such improvements. ${His} face falls. You reassure ${him} that it won't take the years ${he} would have had to work to afford such things ${himself}, but that ${he} needs to be a good slave, and soon, for you to spend resources on ${him}. You ${him} start by taking a rough buttfuck, bent over the desk. ${His} ass is tight and you are not merciful. ${He} gasps and moans but takes it all the same, <span class="mediumaquamarine">trusting</span> that ${he}'ll eventually be rewarded with transformation.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.trust += 10; - return r.join(" ") + return r.join(" "); }, - get requierments() { return canDoAnal(slave) } - }) - + get requirements() { return canDoAnal(slave); } + }); + break; case "$He was transformed and enslaved after $he fell into debt to you.": choice({ introText: `and since ${he}'s so deeply in debt to you...`, @@ -1246,14 +1259,15 @@ App.UI.newSlaveIntro = function(slave) { r.push(`get`); } r.push(` on the couch and spread ${his} buttocks. The true nature of ${his} new life crashes down on ${him} in a moment, and ${he} cannot decide whether to run, to rage, or to cry. You solve ${his} dilemma for ${him} by seizing ${him} and flinging ${him} toward the couch, administering practiced cracks of your palm to ${his} ass until ${he} complies. ${He} sobs as ${he} feels the burning sensation of ${his} <span class="lime">anal virginity being taken,</span> knowing that ${he} can now be <span class="gold">used at will</span> and is now subject to the whims of someone who has shown themselves <span class="mediumorchid">willing to rape ${his} anus.</span>`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.devotion -= 5; slave.trust -= 5; slave.anus = 1; - return r.join(" ") + return r.join(" "); }, - get requirements() { return (canDoAnal(slave)) } - }) + get requirements() { return (canDoAnal(slave)); } + }); + break; case "$He offered $himself to you as a slave to escape a life of boredom.": choice({ introText: `and since ${he} was so bored...`, @@ -1267,14 +1281,15 @@ App.UI.newSlaveIntro = function(slave) { r.push(`a strap-on`); } r.push(`. ${He} doesn't climax to ${his} <span class="lime">first buttsex,</span> but ${he} is learning to <span class="mediumaquamarine">trust</span> that you won't hurt ${him}.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.trust += 10; slave.anus = 1; - return r.join(" ") + return r.join(" "); }, - get requirements() { return (canDoAnal(slave)) } - }) - case "$He sold ${himself} into slavery out of fear that life on the streets was endangering $his pregnancy.": + get requirements() { return (canDoAnal(slave)); } + }); + break; + case "$He sold $himself into slavery out of fear that life on the streets was endangering $his pregnancy.": choice({ introText: `and since ${he} is here to protect ${his} pregnancy...`, linkName: `Make sure ${he} enjoys ${his} first anal sex`, @@ -1297,13 +1312,14 @@ App.UI.newSlaveIntro = function(slave) { r.push(`its tip`); } r.push(` up ${his} tight but relaxed ass. ${He}'s unsure of ${himself}, but you keep ${him} nice and relaxed. ${He} doesn't climax to ${his} <span class="lime">first buttsex,</span> but ${he} is learning to <span class="mediumaquamarine">trust</span> that you won't hurt ${him}.`); - r.push(VCheck.Anal()) + r.push(VCheck.Anal()); slave.trust += 10; slave.anus = 1; - return r.join(" ") + return r.join(" "); }, - get requirements() { return (canDoAnal(slave)) } - }) + get requirements() { return (canDoAnal(slave)); } + }); + break; case "$He offered $himself to you as a slave to escape the hard life of a free whore.": choice({ introText: `and since ${he} is trying to escape the hard life of a free whore...`, @@ -1372,10 +1388,10 @@ App.UI.newSlaveIntro = function(slave) { slave.clitPiercing = 0; slave.hStyle = "neat"; slave.custom.tattoo = " "; - return r.join(" ") + return r.join(" "); }, - - }) + }); + break; case "$He sold $himself into slavery to escape life on the streets.": choice({ introText: `and since ${he} is trying to escape life on the streets...`, @@ -1404,351 +1420,355 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion += 4; } - return r.join(" ") + return r.join(" "); }, - }) - + }); + break; // Written by DrPill, coded by Boney M case "$He was recruited into your service by $his older sibling.": choice({ get introText() { - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); - return `and since ${he} was recruited by ${his} older ${sisterU}...` + const {sisterU} = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + return `and since ${he} was recruited by ${his} older ${sisterU}...`; }, get linkName() { - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); - return `Use ${his} big ${sisterU} as an example` + const {sisterU} = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + return `Use ${his} big ${sisterU} as an example`; }, result: function(slave) { const r = []; - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + const {He2, he2, his2, him2} = getNonlocalPronouns(V.seeDicks).appendSuffix('2'); r.push(`Your new slave appears`); if (slave.devotion < -10) { r.push(`reluctant to assume ${his} new duties.`); } else { r.push(`unsure what ${his} new duties are.`); } - r.push(`You gesture towards ${V.eventSlave.slaveName}. ${He2} is `); - if (V.eventSlave.intelligence + V.eventSlave.intelligenceImplant > 15) { + r.push(`You gesture towards ${slave.slaveName}. ${He2} is `); + if (slave.intelligence + slave.intelligenceImplant > 15) { r.push(`bright enough`); - } else if (((V.eventSlave.skill.vaginal + V.eventSlave.skill.anal + V.eventSlave.skill.oral) > 100)) { + } else if (((slave.skill.vaginal + slave.skill.anal + slave.skill.oral) > 100)) { r.push(`skilled enough`); } else { r.push(`obedient enough`); } - r.push(` to understand you mean a demonstration is in order. ${V.eventSlave.slaveName} starts things off with a`); - if (V.eventSlave.skill.entertainment >= 100) { + r.push(` to understand you mean a demonstration is in order. ${slave.slaveName} starts things off with a`); + if (slave.skill.entertainment >= 100) { r.push(`masterful`); - } else if (V.eventSlave.skill.entertainment > 10) { + } else if (slave.skill.entertainment > 10) { r.push(`skillful`); } else { r.push(`passable`); } - r.push(` striptease, culminating in ${_him2} `); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { + r.push(` striptease, culminating in ${him2} `); + if (slave.anus > 0 && slave.fetish !== "cumslut") { r.push(`bending over`); } else { r.push(`kneeling`); } - r.push(` in front of you. ${He2} eagerly moans as you enter ${_him2}, begging for your seed`); - if (V.eventSlave.energy > 95) { - r.push(` like the slut ${_he2} is`); - } else if (V.eventSlave.skill.whoring > 30) { - r.push(` like the whore ${_he2} is`); - } else if ((V.eventSlave.assignment === "serve in the master suite") || (V.eventSlave.assignment === "please you")) { - r.push(` like the fucktoy ${_he2} is`); - } - r.push(`. As you finish, ${_he2} `); - if (V.eventSlave.fetish === "cumslut") { - r.push(`opens ${_his2} mouth and savors your gift, thanking you once ${_he2}'s swallowed enough to be able to talk again.`); - } else if ((V.eventSlave.fetish === "buttslut") || (V.eventSlave.fetish === "submissive")) { - r.push(`collapses on the floor with ${_his2} ass high in the air, thanking you for painting ${_his2} hole white.`); + r.push(` in front of you. ${He2} eagerly moans as you enter ${him2}, begging for your seed`); + if (slave.energy > 95) { + r.push(` like the slut ${he2} is`); + } else if (slave.skill.whoring > 30) { + r.push(` like the whore ${he2} is`); + } else if ((slave.assignment === "serve in the master suite") || (slave.assignment === "please you")) { + r.push(` like the fucktoy ${he2} is`); + } + r.push(`. As you finish, ${he2} `); + if (slave.fetish === "cumslut") { + r.push(`opens ${his2} mouth and savors your gift, thanking you once ${he2}'s swallowed enough to be able to talk again.`); + } else if ((slave.fetish === "buttslut") || (slave.fetish === "submissive")) { + r.push(`collapses on the floor with ${his2} ass high in the air, thanking you for painting ${his2} hole white.`); } else { r.push(`thanks you.`); } r.push(`Witnessing this display of servitude from ${his} big _sister2 <span class="hotpink">eases ${slave.slaveName} into ${his} new life,</span> and <span class="mediumaquamarine">gives ${him} hope</span> ${he} can find a place here.`); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { - V.eventSlave.counter.anal += 1; + if (slave.anus > 0 && slave.fetish !== "cumslut") { + slave.counter.anal += 1; V.analTotal += 1; } else { - V.eventSlave.counter.oral += 1; + slave.counter.oral += 1; V.oralTotal += 1; } slave.devotion += 4; slave.trust += 4; - return r.join(" ") + return r.join(" "); }, - }) - + }); + break; case "$He was recruited into your service by $his younger sibling.": choice({ get introText() { - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); - return `and since ${he} was recruited by ${his} younger ${sisterU}...` + const {sisterU} = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + return `and since ${he} was recruited by ${his} younger ${sisterU}...`; }, get linkName() { - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); - return `"Use ${his} little ${sisterU} as an example` + const {sisterU} = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + return `"Use ${his} little ${sisterU} as an example`; }, result: function(slave) { const r = []; - const { He2 } = getNonlocalPronouns(V.seeDicks).appendSuffix('2'); + const {He2, he2, his2, him2} = getNonlocalPronouns(V.seeDicks).appendSuffix('2'); r.push(`Your new slave appears `); if (slave.devotion < -10) { r.push(`reluctant to assume ${his} new duties.`); } else { r.push(`unsure what ${his} new duties are.`); } - r.push(`You gesture towards ${V.eventSlave.slaveName}. ${He2} is `); - if (V.eventSlave.intelligence + V.eventSlave.intelligenceImplant > 15) { + r.push(`You gesture towards ${slave.slaveName}. ${He2} is `); + if (slave.intelligence + slave.intelligenceImplant > 15) { r.push(`bright enough`); - } else if (((V.eventSlave.skill.vaginal + V.eventSlave.skill.anal + V.eventSlave.skill.oral) > 100)) { + } else if (((slave.skill.vaginal + slave.skill.anal + slave.skill.oral) > 100)) { r.push(`skilled enough`); } else { r.push(`obedient enough`); } - r.push(` to understand you mean a demonstration is in order. ${V.eventSlave.slaveName} starts things off with a `); - if (V.eventSlave.skill.entertainment >= 100) { + r.push(` to understand you mean a demonstration is in order. ${slave.slaveName} starts things off with a `); + if (slave.skill.entertainment >= 100) { r.push(`masterful`); - } else if (V.eventSlave.skill.entertainment > 10) { + } else if (slave.skill.entertainment > 10) { r.push(`skillful`); } else { r.push(`passable`); } - r.push(` striptease, culminating in ${_him2} `); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { + r.push(` striptease, culminating in ${him2} `); + if (slave.anus > 0 && slave.fetish !== "cumslut") { r.push(`bending over`); } else { r.push(`kneeling`); } - r.push(` in front of you. ${He2} eagerly moans as you enter ${_him2}, begging for your seed`); - if (V.eventSlave.energy > 95) { - r.push(` like the slut ${_he2} is`); - } else if (V.eventSlave.skill.whoring > 30) { - r.push(` like the whore ${_he2} is`); - } else if ((V.eventSlave.assignment === "serve in the master suite") || (V.eventSlave.assignment === "please you")) { - r.push(` like the fucktoy ${_he2} is`); - } - r.push(`. As you finish, ${_he2} `); - if (V.eventSlave.fetish === "cumslut") { - r.push(`opens ${_his2} mouth and savors your gift, thanking you once ${_he2}'s swallowed enough to be able to talk again.`); - } else if ((V.eventSlave.fetish === "buttslut") || (V.eventSlave.fetish === "submissive")) { - r.push(`collapses on the floor with ${_his2} ass high in the air, thanking you for painting ${_his2} hole white.`); + r.push(` in front of you. ${He2} eagerly moans as you enter ${him2}, begging for your seed`); + if (slave.energy > 95) { + r.push(` like the slut ${he2} is`); + } else if (slave.skill.whoring > 30) { + r.push(` like the whore ${he2} is`); + } else if ((slave.assignment === "serve in the master suite") || (slave.assignment === "please you")) { + r.push(` like the fucktoy ${he2} is`); + } + r.push(`. As you finish, ${he2} `); + if (slave.fetish === "cumslut") { + r.push(`opens ${his2} mouth and savors your gift, thanking you once ${he2}'s swallowed enough to be able to talk again.`); + } else if ((slave.fetish === "buttslut") || (slave.fetish === "submissive")) { + r.push(`collapses on the floor with ${his2} ass high in the air, thanking you for painting ${his2} hole white.`); } else { r.push(`thanks you.`); } r.push(`Witnessing this display of servitude from ${his} little _sister2 <span class="hotpink">eases ${slave.slaveName} into ${his} new life,</span> and <span class="mediumaquamarine">gives ${him} hope</span> ${he} can find a place here.`); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { - V.eventSlave.counter.anal += 1; + if (slave.anus > 0 && slave.fetish !== "cumslut") { + slave.counter.anal += 1; V.analTotal += 1; } else { - V.eventSlave.counter.oral += 1; + slave.counter.oral += 1; V.oralTotal += 1; } slave.devotion += 4; slave.trust += 4; - return r.join(" ") + return r.join(" "); }, - }) - + }); + break; case "$He was recruited into your service by $his twin.": choice({ introText: `and since ${he} was recruited by ${his} twin...`, get linkName() { - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); - return `"Use ${his} ${sisterU} as an example` + const {sisterU} = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + return `"Use ${his} ${sisterU} as an example`; }, result: function(slave) { const r = []; - const { He2 } = getNonlocalPronouns(V.seeDicks).appendSuffix('2'); + const {He2, he2, his2, him2} = getNonlocalPronouns(V.seeDicks).appendSuffix('2'); r.push(`Your new slave appears `); if (slave.devotion < -10) { r.push(`reluctant to assume ${his} new duties.`); } else { r.push(`unsure what ${his} new duties are.`); } - r.push(`You gesture towards ${V.eventSlave.slaveName}. ${He2} is `); - if (V.eventSlave.intelligence + V.eventSlave.intelligenceImplant > 15) { + r.push(`You gesture towards ${slave.slaveName}. ${He2} is `); + if (slave.intelligence + slave.intelligenceImplant > 15) { r.push(`bright enough`); - } else if ((V.eventSlave.skill.vaginal + V.eventSlave.skill.anal + V.eventSlave.skill.oral) > 100) { + } else if ((slave.skill.vaginal + slave.skill.anal + slave.skill.oral) > 100) { r.push(`skilled enough`); } else { r.push(`obedient enough`); } - r.push(` to understand you mean a demonstration is in order. ${V.eventSlave.slaveName} starts things off with a `); - if (V.eventSlave.skill.entertainment >= 100) { + r.push(` to understand you mean a demonstration is in order. ${slave.slaveName} starts things off with a `); + if (slave.skill.entertainment >= 100) { r.push(`masterful`); - } else if (V.eventSlave.skill.entertainment > 10) { + } else if (slave.skill.entertainment > 10) { r.push(`skillful`); } else { r.push(`passable`); } - r.push(` striptease, culminating in ${_him2} `); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { + r.push(` striptease, culminating in ${him2} `); + if (slave.anus > 0 && slave.fetish !== "cumslut") { r.push(`bending over`); } else { r.push(`kneeling`); } - r.push(` in front of you. ${He2} eagerly moans as you enter ${_him2}, begging for your seed`); - if (V.eventSlave.energy > 95) { - r.push(` like the slut ${_he2} is`); - } else if (V.eventSlave.skill.whoring > 30) { - r.push(` like the whore ${_he2} is`); - } else if ((V.eventSlave.assignment === "serve in the master suite") || (V.eventSlave.assignment === "please you")) { - r.push(` like the fucktoy ${_he2} is`); - } - r.push(`. As you finish, ${_he2} `); - if (V.eventSlave.fetish === "cumslut") { - r.push(`opens ${_his2} mouth and savors your gift, thanking you once ${_he2}'s swallowed enough to be able to talk again`); - } else if ((V.eventSlave.fetish === "buttslut") || (V.eventSlave.fetish === "submissive")) { - r.push(`collapses on the floor with ${_his2} ass high in the air, thanking you for painting ${_his2} hole white`); + r.push(` in front of you. ${He2} eagerly moans as you enter ${him2}, begging for your seed`); + if (slave.energy > 95) { + r.push(` like the slut ${he2} is`); + } else if (slave.skill.whoring > 30) { + r.push(` like the whore ${he2} is`); + } else if ((slave.assignment === "serve in the master suite") || (slave.assignment === "please you")) { + r.push(` like the fucktoy ${he2} is`); + } + r.push(`. As you finish, ${he2} `); + if (slave.fetish === "cumslut") { + r.push(`opens ${his2} mouth and savors your gift, thanking you once ${he2}'s swallowed enough to be able to talk again`); + } else if ((slave.fetish === "buttslut") || (slave.fetish === "submissive")) { + r.push(`collapses on the floor with ${his2} ass high in the air, thanking you for painting ${his2} hole white`); } else { r.push(`thanks you`); } r.push(`. Witnessing this display of servitude from ${his} twin _sister2 <span class="hotpink">eases ${slave.slaveName} into ${his} new life,</span> and <span class="mediumaquamarine">gives ${him} hope</span> ${he} can find a place here.`); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { - V.eventSlave.counter.anal += 1; + if (slave.anus > 0 && slave.fetish !== "cumslut") { + slave.counter.anal += 1; V.analTotal += 1; } else { - V.eventSlave.counter.oral += 1; + slave.counter.oral += 1; V.oralTotal += 1; } slave.devotion += 4; slave.trust += 4; - return r.join(" ") + return r.join(" "); }, - }) + }); + break; case "$He was recruited into your service by $his parent.": choice({ introText: `and since ${he} was recruited by ${his} parent...`, linkName: `Use ${his} parent as an example`, result: function(slave) { const r = []; - r.push(`You gesture towards ${V.eventSlave.slaveName}. ${He2} is `); - if (V.eventSlave.intelligence + V.eventSlave.intelligenceImplant > 15) { + const {He2, he2, his2, him2} = getNonlocalPronouns(V.seeDicks).appendSuffix('2'); + r.push(`You gesture towards ${slave.slaveName}. ${He2} is `); + if (slave.intelligence + slave.intelligenceImplant > 15) { r.push(`bright enough`); - } else if (((V.eventSlave.skill.vaginal + V.eventSlave.skill.anal + V.eventSlave.skill.oral) > 100)) { + } else if (((slave.skill.vaginal + slave.skill.anal + slave.skill.oral) > 100)) { r.push(`skilled enough`); } else { r.push(`obedient enough`); } - r.push(` to understand you mean a demonstration is in order. ${V.eventSlave.slaveName} starts things off with a `); - if (V.eventSlave.skill.entertainment >= 100) { + r.push(` to understand you mean a demonstration is in order. ${slave.slaveName} starts things off with a `); + if (slave.skill.entertainment >= 100) { r.push(`masterful`); - } else if (V.eventSlave.skill.entertainment > 10) { + } else if (slave.skill.entertainment > 10) { r.push(`skillful`); } else { r.push(`passable`); } - r.push(` striptease, culminating in ${_him2} `); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { + r.push(` striptease, culminating in ${him2} `); + if (slave.anus > 0 && slave.fetish !== "cumslut") { r.push(`bending over`); } else { r.push(`kneeling`); } - r.push(` in front of you. ${He2} eagerly moans as you enter ${_him2}, begging for your seed`); - if (V.eventSlave.energy > 95) { - r.push(` like the slut ${_he2} is`); - } else if (V.eventSlave.skill.whoring > 30) { - r.push(` like the whore ${_he2} is`); - } else if ((V.eventSlave.assignment === "serve in the master suite") || (V.eventSlave.assignment === "please you")) { - r.push(` like the fucktoy ${_he2} is`); - } - r.push(`. As you finish, ${_he2} `); - if (V.eventSlave.fetish === "cumslut") { - r.push(`opens ${_his2} mouth and savors your gift, thanking you once ${_he2}'s swallowed enough to be able to talk again`); - } else if ((V.eventSlave.fetish === "buttslut") || (V.eventSlave.fetish === "submissive")) { - r.push(`collapses on the floor with ${_his2} ass high in the air, thanking you for painting ${_his2} hole white`); + r.push(` in front of you. ${He2} eagerly moans as you enter ${him2}, begging for your seed`); + if (slave.energy > 95) { + r.push(` like the slut ${he2} is`); + } else if (slave.skill.whoring > 30) { + r.push(` like the whore ${he2} is`); + } else if ((slave.assignment === "serve in the master suite") || (slave.assignment === "please you")) { + r.push(` like the fucktoy ${he2} is`); + } + r.push(`. As you finish, ${he2} `); + if (slave.fetish === "cumslut") { + r.push(`opens ${his2} mouth and savors your gift, thanking you once ${he2}'s swallowed enough to be able to talk again`); + } else if ((slave.fetish === "buttslut") || (slave.fetish === "submissive")) { + r.push(`collapses on the floor with ${his2} ass high in the air, thanking you for painting ${his2} hole white`); } else { r.push(`thanks you`); } r.push(`. Witnessing this display of servitude from ${his} `); - if (slave.mother === V.eventSlave.ID) { + if (slave.mother === slave.ID) { r.push(`mother`); } else { r.push(`father`); } r.push(` <span class="hotpink">eases ${slave.slaveName} into ${his} new life,</span> and <span class="mediumaquamarine">gives ${him} hope</span> ${he} can find a place here.`); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { - V.eventSlave.counter.anal += 1; + if (slave.anus > 0 && slave.fetish !== "cumslut") { + slave.counter.anal += 1; V.analTotal += 1; } else { - V.eventSlave.counter.oral += 1; + slave.counter.oral += 1; V.oralTotal += 1; } slave.devotion += 4; slave.trust += 4; - return r.join(" ") + return r.join(" "); }, - }) - + }); + break; case "$He was recruited into your service by $his child.": choice({ get introText() { - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); - return `and since ${he} was recruited by ${his} ${daughterU}...` + const {daughterU} = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + return `and since ${he} was recruited by ${his} ${daughterU}...`; }, get linkName() { - const { sisterU } = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); - return `Use ${his} ${daughterU} as an example` + const {daughterU} = getNonlocalPronouns(V.seeDicks).appendSuffix('U'); + return `Use ${his} ${daughterU} as an example`; }, result: function(slave) { const r = []; - r.push(`You gesture towards ${V.eventSlave.slaveName}. ${He2} is `); - if (V.eventSlave.intelligence + V.eventSlave.intelligenceImplant > 15) { + const {He2, he2, his2, him2} = getNonlocalPronouns(V.seeDicks).appendSuffix('2'); + r.push(`You gesture towards ${slave.slaveName}. ${He2} is `); + if (slave.intelligence + slave.intelligenceImplant > 15) { r.push(`bright enough`); - } else if (((V.eventSlave.skill.vaginal + V.eventSlave.skill.anal + V.eventSlave.skill.oral) > 100)) { + } else if (((slave.skill.vaginal + slave.skill.anal + slave.skill.oral) > 100)) { r.push(`skilled enough`); } else { r.push(`obedient enough`); } - r.push(` to understand you mean a demonstration is in order. ${V.eventSlave.slaveName} starts things off with a `); - if (V.eventSlave.skill.entertainment >= 100) { + r.push(` to understand you mean a demonstration is in order. ${slave.slaveName} starts things off with a `); + if (slave.skill.entertainment >= 100) { r.push(`masterful`); - } else if (V.eventSlave.skill.entertainment > 10) { + } else if (slave.skill.entertainment > 10) { r.push(`skillful`); } else { r.push(`passable`); } - r.push(` striptease, culminating in ${_him2} `); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { + r.push(` striptease, culminating in ${him2} `); + if (slave.anus > 0 && slave.fetish !== "cumslut") { r.push(`bending over`); } else { r.push(`kneeling`); } - r.push(` in front of you. ${He2} eagerly moans as you enter ${_him2}, begging for your seed`); - if (V.eventSlave.energy > 95) { - r.push(` like the slut ${_he2} is`); - } else if (V.eventSlave.skill.whoring > 30) { - r.push(` like the whore ${_he2} is`); - } else if ((V.eventSlave.assignment === "serve in the master suite") || (V.eventSlave.assignment === "please you")) { - r.push(` like the fucktoy ${_he2} is`); - } - r.push(`. As you finish, ${_he2} `); - if (V.eventSlave.fetish === "cumslut") { - r.push(`opens ${_his2} mouth and savors your gift, thanking you once ${_he2}'s swallowed enough to be able to talk again`); - } else if ((V.eventSlave.fetish === "buttslut") || (V.eventSlave.fetish === "submissive")) { - r.push(`collapses on the floor with ${_his2} ass high in the air, thanking you for painting ${_his2} hole white`); + r.push(` in front of you. ${He2} eagerly moans as you enter ${him2}, begging for your seed`); + if (slave.energy > 95) { + r.push(` like the slut ${he2} is`); + } else if (slave.skill.whoring > 30) { + r.push(` like the whore ${he2} is`); + } else if ((slave.assignment === "serve in the master suite") || (slave.assignment === "please you")) { + r.push(` like the fucktoy ${he2} is`); + } + r.push(`. As you finish, ${he2} `); + if (slave.fetish === "cumslut") { + r.push(`opens ${his2} mouth and savors your gift, thanking you once ${he2}'s swallowed enough to be able to talk again`); + } else if ((slave.fetish === "buttslut") || (slave.fetish === "submissive")) { + r.push(`collapses on the floor with ${his2} ass high in the air, thanking you for painting ${his2} hole white`); } else { r.push(`thanks you`); } r.push(`. Witnessing this display of servitude from ${his} _daughter2 <span class="hotpink">eases ${slave.slaveName} into ${his} new life,</span> and <span class="mediumaquamarine">gives ${him} hope</span> ${he} can find a place here.`); - if (V.eventSlave.anus > 0 && V.eventSlave.fetish !== "cumslut") { - V.eventSlave.counter.anal += 1; + if (slave.anus > 0 && slave.fetish !== "cumslut") { + slave.counter.anal += 1; V.analTotal += 1; } else { - V.eventSlave.counter.oral += 1; + slave.counter.oral += 1; V.oralTotal += 1; } slave.devotion += 4; slave.trust += 4; - return r.join(" ") + return r.join(" "); }, - }) + }); + break; default: if (slave.origin) { - if (slave.origin.includes("enslavement for the attempted rape of a free")) { + if ([slave.origin].includes("enslavement for the attempted rape of a free")) { choice({ introText: `and since ${he} tried to rape you...`, linkName: `Show ${him} how a professional does it`, @@ -1771,19 +1791,24 @@ App.UI.newSlaveIntro = function(slave) { r.push(` and <span class="lime">pussy</span>`); } r.push(`, ${he} hesitantly replies that ${he} has <span class="hotpink">learned a great deal about true dominance,</span> before fainting on the spot from a mixture of total exhaustion and pure terror. You've taught your student well.`); - slave.counter.oral += 15, V.oralTotal += 15; - slave.anus = 2, slave.counter.anal += 15, V.analTotal += 15; + slave.counter.oral += 15; + V.oralTotal += 15; + slave.anus = 2; + slave.counter.anal += 15; + V.analTotal += 15; if (slave.vagina > -1) { - slave.vagina = 2, slave.counter.vaginal += 15, V.vaginalTotal += 15; + slave.vagina = 2; + slave.counter.vaginal += 15; + V.vaginalTotal += 15; } if (isFertile(slave) && V.PC.dick > 0) { knockMeUp(slave, 100, 0, -1, 1); } slave.devotion += 100; - return r.join(" ") + return r.join(" "); }, - }) + }); choice({ linkName: `Show ${him} that ${he} could have just asked`, result: function(slave) { @@ -1797,9 +1822,10 @@ App.UI.newSlaveIntro = function(slave) { r.push(` ${him} until ${his} arousal overwhelms ${his} wariness of you. Once ${he}'s finally relaxed, you climb on top of ${him}, and gently ease`); if (V.PC.vagina > 0 && canPenetrate(slave)) { r.push(`your pussy onto ${his} cock. ${He} shudders and moan softly as you slide yourself up and down ${his} shaft with steadily increasing speed. You keep your eyes locked on ${hers} all the while, as ${his} expression shifts from bewilderment to acceptance to ecstasy, as ${he} soon shoots ${his} seed up into you. Afterwards, you slip ${his} softening cock out of you, climb off of ${him}, and leave the exhausted and overwhelmed slave${girl} on your desk as you attend to business elsewhere. You think ${he}'s <span class="orangered">going to like it here.</span>`); - slave.counter.penetrative++, V.penetrativeTotal++; + slave.counter.penetrative++; + V.penetrativeTotal++; if (canImpreg(V.PC, slave)) { - knockMeUp(V.PC, 100, 0, slave.ID, 1) + knockMeUp(V.PC, 100, 0, slave.ID, 1); } } else { r.push(`yourself into ${his} `); @@ -1822,26 +1848,28 @@ App.UI.newSlaveIntro = function(slave) { } r.push(` cock out of ${him}, climb off of ${him}, and leave the exhausted and overwhelmed slave${girl} on your desk as you attend to business elsewhere. You think ${he}'s <span class="orangered">going to like it here.</span>`); if (slave.vagina > -1) { - VCheck.Vaginal() - slave.counter.vaginal++, V.vaginalTotal++; + VCheck.Vaginal(); + slave.counter.vaginal++; + V.vaginalTotal++; if (isFertile(slave) && V.PC.dick > 0) { - knockMeUp(slave, 100, 0, -1, 1) + knockMeUp(slave, 100, 0, -1, 1); } } else { - VCheck.Anal() - slave.counter.anal++, V.analTotal++; + VCheck.Anal(); + slave.counter.anal++; + V.analTotal++; } } slave.trust += 100; - return r.join(" ") + return r.join(" "); }, - }) + }); } } } el.append(App.UI.DOM.generateLinksStrip(linkArray)); - App.UI.DOM.appendNewElement("div", el, `Have ${him} changed...`) + App.UI.DOM.appendNewElement("div", el, `Have ${him} changed...`); if (slave.health.condition < -20) { @@ -1853,13 +1881,13 @@ App.UI.newSlaveIntro = function(slave) { r.push(`Since ${he}'s in rough shape, you give ${him} a comprehensive medical exam with the help of the remote surgery. You apply care to <span class="green">address</span> some of the most outstanding concerns. Whatever gratitude ${he} might have felt for prompt medical attention is balanced by fear of the remote surgery and the nagging (and accurate) feeling that ${he}'s being treated like livestock, but ${he} does <span class="mediumaquamarine">begin to hope</span> ${he}'ll be well treated.`); if (V.arcologies[0].FSPaternalist !== "unset") { r.push(`Society <span class="green">approves</span> of your promptly seeing to your stock's health; this advances the idea that all slaveowners should look after their slaves.`); - FutureSocieties.Change("Paternalist", 2) + FutureSocieties.Change("Paternalist", 2); } improveCondition(slave, 10); slave.trust += 4; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.hStyle.indexOf("shaved") === -1) { @@ -1879,9 +1907,9 @@ App.UI.newSlaveIntro = function(slave) { slave.hStyle = "shaved"; slave.hLength = 0; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.stampTat === 0) { @@ -1909,11 +1937,11 @@ App.UI.newSlaveIntro = function(slave) { } else if (canHear(slave)) { r.push(`When ${he} sits back up, you tell ${him} calmly and bluntly what ${his} new tattoo says:`); if (slave.stampTat === "advertisements") { - "Fuck My Ass." + "Fuck My Ass."; } else if (slave.stampTat === "rude words") { - "Rear Entrance." + "Rear Entrance."; } else if (slave.stampTat === "degradation") { - "Anal Whore." + "Anal Whore."; } } else { r.push(`Judging by the expression on ${his} face, ${he}'s either accurately judged the movement of the needle on ${his} skin or simply guessed correctly that ${his} new tattoo consists of`); @@ -1935,35 +1963,35 @@ App.UI.newSlaveIntro = function(slave) { slave.trust -= 5; } - return r.join(" ") + return r.join(" "); }, - }) + }); } choice({ - introText: `Brand ${him} on the ${_brandTarget}`, + introText: `Brand ${him} on the ${brandTarget}`, linkName: ``, result: function(slave) { const r = []; - r.push(`You drag ${him} to the body modification studio and strap ${him} down with ${his} _brandTarget clear and defenseless. ${He} doesn't understand what's coming for a while, even as disinfectant is applied to ${his} _brandTarget. ${He} can't see the approaching brand, `); + r.push(`You drag ${him} to the body modification studio and strap ${him} down with ${his} brandTarget clear and defenseless. ${He} doesn't understand what's coming for a while, even as disinfectant is applied to ${his} brandTarget. ${He} can't see the approaching brand, `); if (!canSee(slave)) { r.push(`of course, `); } r.push(`but eventually ${he} feels the radiated heat on ${his} skin and manages to get one inarticulate, wordless noise of terror out before the dreadful sizzling noise and the sweet smell of burning flesh. If ${he} didn't know ${he} was a slave before, <span class="mediumorchid">${he} does now,</span> and ${he}'s got the <span class="gold">agonizing</span> <span class="red">injury</span> to prove it.`); if (V.arcologies[0].FSSubjugationistRace === slave.race && V.arcologies[0].FSSubjugationist > 0) { r.push(`Society <span class="green">approves</span> of your purchase and branding of an inferior ${slave.race} person; this advances the idea that slave.race people ought to be enslaved.`); - FutureSocieties.Change("Subjugationist", 2) + FutureSocieties.Change("Subjugationist", 2); } else if ((V.arcologies[0].FSSupremacistRace === slave.race) && (V.arcologies[0].FSSupremacist > 0)) { r.push(`Society <span class="red">disapproves</span> of your purchase and branding of ${addA(slave.race)} person; this reduces support for the idea that slave.race people are superior.`); - FutureSocieties.Change("Supremacist", -2) + FutureSocieties.Change("Supremacist", -2); } - slave.brand[_brandTarget] = V.brandDesign.primary; + slave.brand[brandTarget] = V.brandDesign.primary; slave.devotion -= 5; slave.trust -= 10; healthDamage(slave, 10); - return r.join(" ") + return r.join(" "); }, - }) + }); if (slave.dick === 0 && slave.vagina > -1) { choice({ @@ -1973,13 +2001,10 @@ App.UI.newSlaveIntro = function(slave) { const r = []; cashX(forceNeg(V.SPcost), "slaveMod", slave); r.push(`You take ${him} to the body modification studio, strap ${him} down, pierce ${his} clit, and insert what appears to be a large stainless steel barbell piercing. It actually contains a device that can vibrate to give ${him} sexual stimulation or create subtle pain to suppress pleasure. It is connected wirelessly to the arcology, which can be given instructions to encourage or discourage sexual pleasure in specific situations. You run a quick test. On the oral setting, as soon as ${he} kneels in front of your crotch, ${he} gasps as the stimulation starts. On the anal setting, ${he} whimpers when you run a finger across ${his} asshole.`); - return r.join(" ") - }, - resultApply: () => { - + return r.join(" "); }, note: `This option costs ${cashFormat(V.SPcost)}` - }) + }); } else { choice({ introText: ``, @@ -1989,10 +2014,10 @@ App.UI.newSlaveIntro = function(slave) { cashX(forceNeg(V.SPcost), "slaveMod", slave); r.push(`You take ${him} to the body modification studio, strap ${him} down, pierce ${his} frenulum, and insert what appears to be a large stainless steel barbell piercing. It actually contains a device that can vibrate to give ${him} sexual stimulation or create subtle pain to suppress pleasure. It is connected wirelessly to the arcology, which can be given instructions to encourage or discourage sexual pleasure in specific situations. You run a quick test. On the oral setting, as soon as ${he} kneels in front of your crotch, ${he} gasps as the stimulation starts. On the anal setting, ${he} whimpers and gets rock hard when you run a finger across ${his} asshole.`); slave.clitPiercing = 3; - return r.join(" ") + return r.join(" "); }, note: `This option costs ${cashFormat(V.SPcost)}` - }) + }); } @@ -2002,9 +2027,9 @@ App.UI.newSlaveIntro = function(slave) { linkName: ``, result: function(slave) { const r = []; - const hands = hasBothArms(slave) ? "arms" : "arm" - const knees = hasBothLegs(slave) ? "knees" : "knee" - const feet = hasBothLegs(slave) ? "feet" : "foot" + const hands = hasBothArms(slave) ? "arms" : "arm"; + const knees = hasBothLegs(slave) ? "knees" : "knee"; + const feet = hasBothLegs(slave) ? "feet" : "foot"; App.Medicine.Modification.addScourged(slave); cashX(forceNeg(V.modCost), "slaveMod", slave); // Let's just bill once, for the whip and disinfectant. r.push(`You drag ${him} to the`); @@ -2059,37 +2084,37 @@ App.UI.newSlaveIntro = function(slave) { r.push(`If ${he} didn't know ${he} was a slave before, <span class="mediumorchid">${he} does now,</span> and ${he}'s got the <span class="gold">agonizing</span> <span class="red">injury</span> to prove it. What ${he} doesn't yet know is just how permanent this lashing's effects will be. The level of violence and the coating you used will leave ${him} scarred with the marks of slavery forever.`); if (V.arcologies[0].FSSubjugationistRace === slave.race && V.arcologies[0].FSSubjugationist > 0) { r.push(`Society <span class="green">approves</span> of your purchase and whipping of an inferior ${slave.race} person; this advances the idea that slave.race people ought to be enslaved.`); - FutureSocieties.Change("Subjugationist", 2) + FutureSocieties.Change("Subjugationist", 2); } else if ((V.arcologies[0].FSSupremacistRace === slave.race) && (V.arcologies[0].FSSupremacist > 0)) { r.push(`Society <span class="red">disapproves</span> of your purchase and whipping of ${addA(slave.race)} person; this reduces support for the idea that slave.race people are superior.`); - FutureSocieties.Change("Supremacist", -2) + FutureSocieties.Change("Supremacist", -2); } slave.devotion -= 5; slave.trust -= 10; healthDamage(slave, 10); - return r.join(" ") + return r.join(" "); }, - }) + }); choice({ - introText: `Scar ${him} on the ${_scarTarget}`, + introText: `Scar ${him} on the ${scarTarget}`, linkName: ``, result: function(slave) { const r = []; - r.push(`You drag ${him} to the body modification studio and strap ${him} down with ${his} _scarTarget clear and defenseless. ${He} doesn't understand what's coming for a while, even as disinfectant is applied to ${his} _scarTarget. You have a wide selection of tools to create scars, the trick is to keep the wound from healing correctly afterwards. Of course, ${he} has no way of knowing that the pain you are inflicting as you cut into ${his} flesh will leave such a permanent mark, but the basic message is clear: if ${he} didn't know ${he} was a slave before, <span class="mediumorchid">${he} does now,</span> and ${he}'s got the <span class="gold">agonizing</span> <span class="red">injury</span> to prove it.`); + r.push(`You drag ${him} to the body modification studio and strap ${him} down with ${his} scarTarget clear and defenseless. ${He} doesn't understand what's coming for a while, even as disinfectant is applied to ${his} scarTarget. You have a wide selection of tools to create scars, the trick is to keep the wound from healing correctly afterwards. Of course, ${he} has no way of knowing that the pain you are inflicting as you cut into ${his} flesh will leave such a permanent mark, but the basic message is clear: if ${he} didn't know ${he} was a slave before, <span class="mediumorchid">${he} does now,</span> and ${he}'s got the <span class="gold">agonizing</span> <span class="red">injury</span> to prove it.`); if (V.arcologies[0].FSSubjugationistRace === slave.race && V.arcologies[0].FSSubjugationist > 0) { r.push(`Society <span class="green">approves</span> of your purchase and scarring of an inferior ${slave.race} person; this advances the idea that slave.race people ought to be enslaved.`); - FutureSocieties.Change("Subjugationist", 2) + FutureSocieties.Change("Subjugationist", 2); } else if ((V.arcologies[0].FSSupremacistRace === slave.race) && (V.arcologies[0].FSSupremacist > 0)) { r.push(`Society <span class="red">disapproves</span> of your purchase and scarring of ${addA(slave.race)} person; this reduces support for the idea that slave.race people are superior.`); - FutureSocieties.Change("Supremacist", -2) + FutureSocieties.Change("Supremacist", -2); } - App.Medicine.Modification.addScar(slave, _scarTarget, V.scarDesign.primary); + App.Medicine.Modification.addScar(slave, scarTarget, V.scarDesign.primary); slave.devotion -= 5; slave.trust -= 10; healthDamage(slave, 10); - return r.join(" ") + return r.join(" "); }, - }) + }); } if (V.arcologies[0].FSHedonisticDecadence >= 50 && slave.behavioralFlaw === "anorexic" && slave.weight < 10) { @@ -2100,10 +2125,10 @@ App.UI.newSlaveIntro = function(slave) { r.push(`${He} is much too thin and seems to shirk any offered food, but there is an easy solution to that. If ${he} refuses to eat, ${he} can be made to. Pulling the reluctant slave to the feeders, binding ${him} tightly to a chair, and attaching a hose to the slave food nozzle, you give ${him} a choice; suck the hose willingly or have it forced down ${his} throat. ${He} glares defiantly and keeps ${his} mouth firmly shut. You clamp down on ${his} nose, inevitably forcing ${him} to open ${his} mouth to breath. In that moment, you shove the hose in and down ${his} throat, carefully directing it down into ${his} stomach. ${He} gags as you turn on the flow, ${his} eyes filling with tears as ${he} feels the warm food travel down the tube and into ${his} stomach. ${He} sobs as ${his} belly steadily swells with unwelcome sustenance, ${his} eyes pleading with you, desperate to let you know ${he}'ll be good. You ignore ${him}, letting ${him} fill until ${his} belly is noticeably distended compared to ${his} thin frame. Once you feel ${he} has had enough, you pull the hose from ${his} gut, spraying ${his} face with food in the process, and tell ${him} it will go right back in if ${he} doesn't keep it all down. ${He} <span class="gold">nods fearfully,</span> anything to not go through that again. ${He} hobbles away once freed, one hand covering ${his} retching mouth and the other clasping ${his} <span class="mediumorchid">hated, food bloated middle.</span>`); slave.devotion -= 10; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.pregKnown === 1 && V.seeExtreme === 1) { @@ -2140,10 +2165,10 @@ App.UI.newSlaveIntro = function(slave) { r.push(`, anything, as long as <span class="gold">you don't hurt ${his} baby.</span> You observe that ${he}'ll do all of those things, regardless of what you decide to do about ${his} pregnancy, but for now, you'll keep ${him} as a pregnant slut. ${He} thanks you through ${his} tears.`); slave.devotion += 10; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) + }); } if ((V.arcologies[0].FSRestart >= 10) && (slave.preg !== -3) && (slave.ovaries > 0) && (slave.indentureRestrictions <= 0) && (V.seeExtreme === 1)) { @@ -2183,10 +2208,16 @@ App.UI.newSlaveIntro = function(slave) { if (slave.fetish === "pregnancy" && slave.pregKnown === 1) { if ((slave.preg > slave.pregData.normalBirth / 1.6) && (canSee(slave))) { r.push(`${He} watches ${his} exposed womb with absolute terror in ${his} eyes. A small handprint bulges against the organ; ${he} sobs once before ${his} mind <span class="red">shatters at the sight.</span>`); - slave.fetish = "mindbroken", slave.fetishKnown = 1, slave.behavioralQuirk === "none", slave.behavioralFlaw === "none", slave.sexualQuirk === "none", slave.sexualFlaw === "none"; + slave.fetish = "mindbroken"; + slave.fetishKnown = 1; + slave.behavioralQuirk === "none"; + slave.behavioralFlaw === "none"; + slave.sexualQuirk === "none"; + slave.sexualFlaw === "none"; } else { r.push(`${He} will never carry another child, and <span class="mediumorchid">deeply hates you</span> for snuffing out its life. Your absolute power over ${his} body is rightfully <span class="gold">terrifying.</span>`); - slave.trust = -100, slave.devotion = -100; + slave.trust = -100; + slave.devotion = -100; } } else { r.push(`${He} will never`); @@ -2194,13 +2225,14 @@ App.UI.newSlaveIntro = function(slave) { r.push(` again`); } r.push(` bear children, and will <span class="mediumorchid">remember ${his} status</span> with every fucking ${he} receives. Your absolute power over ${his} body is rightfully <span class="gold">terrifying.</span>`); - slave.trust -= 20, slave.devotion -= 50; + slave.trust -= 20; + slave.devotion -= 50; } r.push(`Society <span class="green">approves</span> of your promptly rendering ${him} sterile; this advances the idea that only the elite should breed.`); - FutureSocieties.Change("Eugenics", 1) + FutureSocieties.Change("Eugenics", 1); if (slave.pregKnown === 1) { r.push(`Since you snuffed out an unworthy life in the process, the sterilization has an even <span class="green">bigger impact.</span>`); - FutureSocieties.Change("Eugenics", 2) + FutureSocieties.Change("Eugenics", 2); } TerminatePregnancy(slave); slave.preg = -3; @@ -2208,10 +2240,10 @@ App.UI.newSlaveIntro = function(slave) { slave.counter.abortions++; V.abortionsTotal++; surgeryDamage(slave, 10); - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.balls > 0 && slave.vasectomy === 0 && slave.indentureRestrictions <= 1) { @@ -2265,14 +2297,13 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion -= 5; surgeryDamage(slave, 10); slave.trust -= 5; - return r.join(" ") + return r.join(" "); }, - }) + }); } if ((slave.balls > 0) && (slave.attrXY < 65) && (V.seeExtreme === 1)) { - choice({ linkName: `Threaten ${his} balls`, result(slave) { @@ -2280,11 +2311,10 @@ App.UI.newSlaveIntro = function(slave) { r.push(`You ask ${him} how ${he} feels about taking cock up ${his} ass. A look of revulsion and fear crosses ${his} face, and ${he} backs away from you slightly, unconsciously protecting ${his} bottom. Before ${he} can muster any kind of response, you tell ${him} that you suspected as much, and that ${he} has balls. ${He} looks confused at the apparently unrelated remarks until you explain that in your arcology, balls are a privilege. If ${he} won't be a good little bitch, you'll take them away and turn ${him} into a bitch anyway. Only good ${girl}s get to keep their hard-ons, and if ${he} isn't a good ${girl}, you'll make ${him} a good little ${girl} with a bouncing little bitchclit. ${He} begins to cry, <span class="gold">sobbing and sobbing</span> as ${he} promises to <span class="hotpink">be a good ${girl}.</span>`); slave.devotion += 10; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) - + }); } if (slave.indentureRestrictions <= 0 && V.seeExtreme === 1) { @@ -2296,19 +2326,20 @@ App.UI.newSlaveIntro = function(slave) { r.push(`You drag ${him} to the remote surgery and strap ${him} face-down with ${his} legs spread. ${He} doesn't understand what's happening, since the anesthetics totally deprive ${him} of any sensation. ${He}'s so drugged and drowsy with <span class="red">surgical recovery</span> that it takes a while for ${him} to figure out what's happened. When ${he} does, ${his} poor mind scarcely processes the <span class="gold">horror</span> of what's happened. ${He} numbly carries on, terrified.`); if (V.arcologies[0].FSGenderRadicalist !== "unset") { r.push(`Society <span class="green">approves</span> of your promptly gelding ${him}; this advances the idea that all societal inferiors can be made female.`); - FutureSocieties.Change("GenderRadicalist", 2) + FutureSocieties.Change("GenderRadicalist", 2); } if (V.arcologies[0].FSRestart !== "unset" && slave.pubertyXY === 1) { r.push(`Society <span class="green">approves</span> of your promptly gelding ${him}; this advances the idea that all only the elite should breed.`); - FutureSocieties.Change("Eugenics", 2) + FutureSocieties.Change("Eugenics", 2); } - slave.balls = 0, slave.scrotum = 0; + slave.balls = 0; + slave.scrotum = 0; surgeryDamage(slave, 10); slave.trust -= 50; - return r.join(" ") + return r.join(" "); }, - }) + }); } choice({ linkName: `Remove ${his} genitalia`, @@ -2321,7 +2352,7 @@ App.UI.newSlaveIntro = function(slave) { r.push(`${He} almost passes out from <span class="gold">sheer horror.</span> Instead, ${he} collapses and tries desperately to vomit. Fortunately, ${he} doesn't have anything to bring up. ${He}'s reduced to impotent weeping and retching as ${he} begins to process the stress of having had ${his} parts cut off.`); if (V.arcologies[0].FSRestart !== "unset") { r.push(`Society <span class="green">approves</span> of you stripping away everything from society's inferiors.`); - FutureSocieties.Change("Eugenics", 3) + FutureSocieties.Change("Eugenics", 3); } slave.chastityPenis = 0; slave.chastityVagina = 0; @@ -2336,10 +2367,10 @@ App.UI.newSlaveIntro = function(slave) { slave.skill.vaginal = 0; surgeryDamage(slave, 10); slave.trust = Math.clamp(slave.trust - 100, -100, 100); - return r.join(" ") + return r.join(" "); }, - }) + }); } if (hasAnyNaturalLegs(slave) && (slave.indentureRestrictions <= 0) && (V.seeExtreme === 1)) { @@ -2356,10 +2387,10 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion -= 5; surgeryDamage(slave, 10); slave.trust -= 20; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.lactation !== 2 && slave.indentureRestrictions <= 0) { @@ -2369,9 +2400,9 @@ App.UI.newSlaveIntro = function(slave) { const r = []; r.push(`You `); if (slave.devotion > 20) { - r.push(` guide the compliant ${V.desc} `); + r.push(` guide the compliant ${desc} `); } else { - r.push(`have the ${V.desc} restrained and brought`); + r.push(`have the ${desc} restrained and brought`); } r.push(` to the remote surgery. The procedure is quick and <span class="red">minimally invasive</span>`); surgeryDamage(slave, 10); @@ -2442,7 +2473,7 @@ App.UI.newSlaveIntro = function(slave) { } } r.push(`As you summon `); - if ($HeadGirlID !== 0) { + if (V.HeadGirlID !== 0) { r.push(`your Head Girl`); } else { r.push(`another slave`); @@ -2456,7 +2487,7 @@ App.UI.newSlaveIntro = function(slave) { r.push(`You kneel behind ${him} and begin to gently massage ${his} swollen breasts. A steady stream of milk begins to erupt from each nipple as a look of confusion washes over ${his} features. ${He} then closes ${his} eyes tight and does ${his} best to ignore what's happening in a futile attempt to deny ${his} new reality, but you continue ${his} milking until ${he} is drained.`); } r.push(`As you summon `); - if ($HeadGirlID !== 0) { + if (V.HeadGirlID !== 0) { r.push(`your Head Girl`); } else { r.push(`another slave`); @@ -2466,10 +2497,10 @@ App.UI.newSlaveIntro = function(slave) { } } slave.lactation = 2; - return r.join(" ") + return r.join(" "); }, - }) + }); } @@ -2495,9 +2526,9 @@ App.UI.newSlaveIntro = function(slave) { const r = []; r.push(`You `); if (slave.devotion > 20 || slave.trust < -20) { - r.push(`lay the obedient ${V.desc} across your desk`); + r.push(`lay the obedient ${desc} across your desk`); } else { - r.push(`force the resistant ${V.desc} to lie atop your desk`); + r.push(`force the resistant ${desc} to lie atop your desk`); } r.push(` and gently `); if (V.PC.dick !== 0) { @@ -2577,11 +2608,11 @@ App.UI.newSlaveIntro = function(slave) { slave.trust -= 4; } } - r.push(VCheck.Simple()) - return r.join(" ") + r.push(VCheck.Simple()); + return r.join(" "); }, - }) + }); } if (V.seePreg !== 0) { @@ -2593,9 +2624,9 @@ App.UI.newSlaveIntro = function(slave) { let r = []; r.push(`You perform a careful medical examination to verify fertility, and then `); if (slave.devotion > 20 || slave.trust < -20) { - r.push(`lay the obedient ${V.desc} across your desk`); + r.push(`lay the obedient ${desc} across your desk`); } else { - r.push(`restrain the resistant ${V.desc} in your office with ${his} ass in the air`); + r.push(`restrain the resistant ${desc} in your office with ${his} ass in the air`); } r.push(` and gently slide your hard cock `); if (slave.mpreg === 1) { @@ -2678,10 +2709,10 @@ App.UI.newSlaveIntro = function(slave) { V.failedElite += 5; } else if (V.arcologies[0].FSGenderFundamentalist !== "unset" && slave.mpreg === 0) { r.push(`Society <span class="green">approves</span> of your promptly putting a new slave in ${him}; this advances the idea that all slaves should bear their masters' babies.`); - FutureSocieties.Change("GenderFundamentalist", 2) + FutureSocieties.Change("GenderFundamentalist", 2); } else if (V.arcologies[0].FSGenderFundamentalist !== "unset") { r.push(`Society <span class="red">is disgusted</span> by you promptly knocking up ${his} ass; babies come from women, not men.`); - FutureSocieties.Change("GenderFundamentalist", -2) + FutureSocieties.Change("GenderFundamentalist", -2); } App.UI.DOM.appendNewElement("p", el, r.join(" ")); slave.preg = 1; @@ -2690,10 +2721,10 @@ App.UI.newSlaveIntro = function(slave) { slave.pregKnown = 1; slave.pregSource = -1; WombImpregnate(slave, slave.pregType, -1, 1); - return el + return el; }, - }) + }); } } @@ -2753,10 +2784,10 @@ App.UI.newSlaveIntro = function(slave) { } r.push(VCheck.Vaginal()); - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.devotion < -10 && slave.anus === 0) { @@ -2801,12 +2832,11 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion -= 5; slave.trust -= 10; slave.anus = 1; - r.push(VCheck.Anal()) - return r.join(" ") + r.push(VCheck.Anal()); + return r.join(" "); }, - }) - + }); } else if ((slave.anus === 0)) { choice({ linkName: `Tie ${him} up and break ${his} ass in`, @@ -2844,10 +2874,10 @@ App.UI.newSlaveIntro = function(slave) { slave.trust -= 10; slave.anus = 1; r.push(VCheck.Anal()); - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.fetish !== "mindbroken") { @@ -2861,7 +2891,7 @@ App.UI.newSlaveIntro = function(slave) { } else { r.push(`bring the resistant slave`); } - r.push(` out into the public areas below your penthouse, shove the nude ${V.desc} over a convenient handrail, and stick `); + r.push(` out into the public areas below your penthouse, shove the nude ${desc} over a convenient handrail, and stick `); if (V.PC.dick !== 0) { r.push(`your dick`); } else { @@ -2940,12 +2970,10 @@ App.UI.newSlaveIntro = function(slave) { } r.push(VCheck.Simple()); - return r.join(" ") + return r.join(" "); }, - }) - - + }); } if (slave.devotion > 20) { @@ -3002,14 +3030,13 @@ App.UI.newSlaveIntro = function(slave) { slave.trust += 4; slave.counter.oral += 1; V.oralTotal += 1; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.fetish !== "mindbroken") { - if (slave.bellyPreg >= 5000) { choice({ linkName: `Make sure ${he} knows pregnant ${V.women} can still enjoy sex`, @@ -3039,12 +3066,13 @@ App.UI.newSlaveIntro = function(slave) { slave.trust += 5; r.push(VCheck.Vaginal()); if (slave.fetish === "none" && jsRandom(1, 100) > 60) { - slave.fetish = "pregnancy", slave.fetishStrength = 10; + slave.fetish = "pregnancy"; + slave.fetishStrength = 10; } - return r.join(" ") + return r.join(" "); }, - }) + }); } choice({ @@ -3112,10 +3140,10 @@ App.UI.newSlaveIntro = function(slave) { } } - return r.join(" ") + return r.join(" "); }, - }) + }); if (V.PC.vagina !== -1 && slave.dick > 0 && canAchieveErection(slave)) { choice({ @@ -3157,14 +3185,14 @@ App.UI.newSlaveIntro = function(slave) { r.push(`. You continue stroking your toy's rod as ${he} eagerly begins eating you out. As ${his} cock begins to throb, anticipating ${his} upcoming orgasm, you quickly bind the base of ${his} penis, denying ${his} release. You grind your cunt into ${his} face, telling ${him} that YOU are the one who'll be orgasming here, not ${him}. Only once you have initiated the new slave by soaking ${his} face in your cum do you release ${his} dick and lean back to avoid the coming blast. A few strokes later and your hand is coated in ${his} cum. You turn around and order the exhausted ${girl} to clean ${his} cum off your hand`); if (V.PC.dick !== 0) { r.push(` and to finish off ${his} twitching dick`); - }; + } r.push(`${he} <span class="hotpink">complies meekly,</span> knowing you are the < span class="gold" > dominant force</span > in ${his} life now.`); slave.devotion += 5; slave.trust -= 3; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (V.PC.belly >= 3000 && hasAnyArms(slave)) { @@ -3198,10 +3226,10 @@ App.UI.newSlaveIntro = function(slave) { slave.trust -= 5; } - return r.join(" ") + return r.join(" "); }, - }) + }); if (V.PC.preg >= 28) { if (V.PC.pregMood === 2 && V.PC.vagina > 0 && canPenetrate(slave)) { choice({ @@ -3221,7 +3249,7 @@ App.UI.newSlaveIntro = function(slave) { r.push(`${He} groans with disappointment as your pregnant pussy leaves ${his} reach, though ${his} displeasure is short lived as you greedily take ${his} entire dick into your aching snatch. You ride ${him} mercilessly, frequently smacking ${him} with your heavy belly. ${He} loves every minute of it, especially when ${he} feels your body tense up as ${he} lets loose ${his} load deep into you. Where most slaves would be begging for mercy, ${he} <span class="hotpink">eagerly complies</span> as you adjust yourself and begin round two. You don't know what came over you, but when you wake up, you find ${he}'s resting peacefully under your gravid mass. `); if (slave.fetishKnown === 0) { r.push(`It seems ${he} likes <span class="green">being a pregnant _womanP's plaything.</span>`); - ${ slave.fetishKnown } = 1; + slave.fetishKnown = 1; } else { r.push(`You knew ${he} had a pregnancy fetish and the look on ${his} face confirms it.`); } @@ -3237,15 +3265,18 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion += 15; } else { r.push(`${He} coughs as your pregnant pussy vacates ${his} face, though ${his} relief is short lived as you greedily slam yourself down onto ${his} waiting dick. You ride ${him} mercilessly, frequently smacking ${him} with your heavy belly. ${He} hates every minute of it, choosing to alternate between begging you to stop and just openly weeping. You cum hard as you watch the look on ${his} face as ${he} unwillingly cums deep inside you. ${He} cries out in protest as you continue raping ${him}, but you don't care. All that matters is your satisfaction. This continues until you pass out from orgasmic exhaustion with ${him} still inside you. You are eventually awoken by ${his} desperate struggle to escape from beneath your gravid mass; ${he} quickly regrets ${his} choices as you remount ${him} for one last go. ${He} now <span class="hotpink">better understands ${his} place as a toy</span> and is <span class="gold">terrified</span> of your insatiable lust.`); - slave.devotion += 5, slave.trust -= 15; + slave.devotion += 5; + slave.trust -= 15; } - slave.counter.penetrative += 5, V.penetrativeTotal += 5; - slave.counter.oral++, V.oralTotal++; + slave.counter.penetrative += 5; + V.penetrativeTotal += 5; + slave.counter.oral++; + V.oralTotal++; - return r.join(" ") + return r.join(" "); }, - }) + }); } else if (V.PC.pregMood === 1 && V.PC.lactation > 0) { choice({ linkName: `Take ${him} to your breast`, @@ -3292,7 +3323,7 @@ App.UI.newSlaveIntro = function(slave) { r.push(`. You clutch your pervy ${girl} closer to you as ${he} caresses your pregnancy with one hand and gets you off with the other. Before long you find yourself bucking your hips with lust, a queue for you to release ${him} from your nipple so ${he} may slide down your gravid dome of a belly to finish you off. Happy to serve ${his} pregnant ${WrittenMaster(slave)}, ${he} returns to your chest, happy to relieve you of the pressure building in your neglected breast. `); if (slave.fetishKnown === 0) { r.push(`Judging by that show, <span class="green">${he} savors getting to be with a pregnant _womanP.</span>`); - ${ slave.fetishKnown } = 1; + slave.fetishKnown = 1; } else { r.push(`You knew ${he} had a pregnancy fetish and ${his} eagerness to serve a pregnant _womanP proves that.`); } @@ -3301,12 +3332,13 @@ App.UI.newSlaveIntro = function(slave) { r.push(`ren`); } r.push(`, you find your new slave <span class="mediumaquamarine">already doting on them.</span> ${He}'s already starting to <span class="hotpink">show understanding of ${his} place.</span>`); - slave.devotion += 15, slave.trust += 15; + slave.devotion += 15; + slave.trust += 15; } else if (slave.fetish === "boobs") { r.push(`Eagerly ${he} begins to suckle from your swollen breast. You gently brush ${his} head as you try to hold back your pleasure — a wasted effort, as a hand sneaks its way to your neglected breast. ${He} massages it, careful not to encourage your lactation too much, as ${he} greedily sucks you dry. ${He} wastes no time in swapping to your other nipple, shifting ${his} ministrations to the one the just left. By the time your reserves are tapped out, both you and ${he} are quite content. You permit ${him} to rest against your chest for a little before you send ${him} on ${his} way. `); if (slave.fetishKnown === 0) { r.push(`Judging by ${his} enthusiasm, <span class="green">${he} savors getting ${his} mouth close to a pair of boobs.</span>`); - ${ slave.fetishKnown } = 1; + slave.fetishKnown = 1; } else { r.push(`You knew ${he} had a breast fetishist and ${his} eagerness to lighten a lactating _womanP proves that.`); } @@ -3315,7 +3347,8 @@ App.UI.newSlaveIntro = function(slave) { r.push(`ren`); } r.push(` that you'll make sure to save some milk for them. ${He}'s already starting to <span class="hotpink">show understanding of ${his} place</span> and even <span class="mediumaquamarine">beginning to build trust</span> with you.`); - slave.devotion += 15, slave.trust += 15; + slave.devotion += 15; + slave.trust += 15; } else { r.push(`Reluctantly ${he} begins to suckle from your swollen breast. You gently brush ${his} head as you try to hold back your pleasure, but it is too much. As ${he} drinks deeper, you begin moaning with relief. At first ${he} tenses at `); if (canHear(slave)) { @@ -3336,14 +3369,15 @@ App.UI.newSlaveIntro = function(slave) { r.push(`into an upright position`); } r.push(` and send ${him} on ${his} way. <span class="hotpink">${He} stays and offers a hand to help you to your feet.</span> You are surprised by this display; it might be obedience, but ${he} also may view you in your gravid state as someone weak. As ${he} helps you back to your desk, ${he} shoulders all of your weight. It would appear ${he} is putting you first, for now.`); - slave.devotion += 5, slave.trust += 5; + slave.devotion += 5; + slave.trust += 5; } V.PC.lactationDuration = 2; - return r.join(" ") + return r.join(" "); }, - }) + }); } } } @@ -3355,7 +3389,7 @@ App.UI.newSlaveIntro = function(slave) { linkName: `Let your ample bust dominate ${his} pathetic one`, result(slave) { const r = []; - r.push(`You quickly strip off your shirt and draw close to ${slave.slaveName.} You grab ${him} as ${he} attempts to back away and pull ${his} tits directly into your own. Both sets of `); + r.push(`You quickly strip off your shirt and draw close to ${slave.slaveName}. You grab ${him} as ${he} attempts to back away and pull ${his} tits directly into your own. Both sets of `); if (canSee(slave)) { r.push(`eyes lock onto their pair of breasts`); } else { @@ -3375,10 +3409,10 @@ App.UI.newSlaveIntro = function(slave) { } } slave.devotion += 5; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (canAchieveErection(slave) && canSee(slave) && V.PC.dick >= 4 && V.PC.dick > slave.dick && slave.trust >= -20) { @@ -3386,7 +3420,7 @@ App.UI.newSlaveIntro = function(slave) { choice({ linkName: `Show ${him} what a real erection looks like`, result(slave) { - const el = new DocumentFragment() + const el = new DocumentFragment(); let p; const r = []; @@ -3394,7 +3428,7 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion += 5; p = document.createElement("p"); - p.id = "introResult2" + p.id = "introResult2"; p.append(App.UI.DOM.link( `Push ${his} head down`, () => { @@ -3416,15 +3450,16 @@ App.UI.newSlaveIntro = function(slave) { r.push(`Only once ${he} has swallowed the last of your cum do you allow ${him} to clean ${himself} up and <span class="hotpink">reflect on what ${he} just did.</span>`); } slave.devotion += 5; - slave.counter.oral++, V.oralTotal++; + slave.counter.oral++; + V.oralTotal++; jQuery("#introResult2").empty().append(r.join(" ")); } - )) + )); el.append(p); return el; }, - }) + }); } } } @@ -3442,10 +3477,10 @@ App.UI.newSlaveIntro = function(slave) { } slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.inflation === 0 && hasAnyArms(slave) && canTaste(slave) && V.arcologies[0].FSHedonisticDecadenceResearch === 1) { @@ -3496,17 +3531,21 @@ App.UI.newSlaveIntro = function(slave) { r.push(`${He} collapses onto ${his} rear and belches loudly.`); if (V.arcologies[0].FSDegradationist !== "unset") { r.push(`It doesn't take long for the tainted food to do its thing. ${He} groans loudly and clutches ${his} bulging midriff, ${his} body in severe distress thanks to the modified slave food. ${He} rolls onto ${his} back and does everything ${he} can to soothe the turmoil growing inside ${him}. You know it won't do any good, but ${he} doesn't. ${He}'ll spend however long it takes ${his} body to digest the food in anguish; ${he}'ll regret ever touching the stuff. But you know better, ${his} growing addiction will have ${him} scarfing it down at every chance, but for now, all ${he} can do is <span class="mediumorchid">blame you</span> and <span class="gold">curse your trickery.</span>`); - slave.devotion -= 20, slave.trust -= 20; + slave.devotion -= 20; + slave.trust -= 20; } else { if (slave.behavioralFlaw === "gluttonous") { r.push(`${He} <span class="mediumaquamarine">happily pats ${his} full belly;</span> ${he}'s going to <span class="hotpink">like it here.</span>`); - slave.devotion += 10, slave.trust += 10; + slave.devotion += 10; + slave.trust += 10; } else if (slave.behavioralFlaw === "anorexic") { r.push(`Only then does ${he} regain composure enough to realize what ${he}'s done. ${He} <span class="mediumorchid"> bursts into tears</span> as ${he} rubs ${his} disgustingly full belly. ${He} glares at you, only to catch you toying with even more food. ${He} begins to <span class="gold">tremble</span> when ${he} realizes how easily you did this to ${him}. You're sure ${he}'ll change ${his} tune in time, since you know ${he}'ll be unable to resist sneaking treats.`); - slave.devotion -= 10, slave.trust -= 10; + slave.devotion -= 10; + slave.trust -= 10; } else { r.push(`${He} <span class="hotpink">happily pats ${his} full belly,</span> before coming to ${his} senses and realizing what ${he} did. ${He} begins to <span class="gold">tremble</span> as it dawns on ${him} just how easily you manipulated ${him}.`); - slave.devotion += 5, slave.trust -= 10; + slave.devotion += 5; + slave.trust -= 10; } } r.push(`Given the availability of the slave treats and ${his} burgeoning addiction to them, ${he}'ll likely keep ${himself} stuffed unless you force ${him} to stop.`); @@ -3515,15 +3554,15 @@ App.UI.newSlaveIntro = function(slave) { } else { slave.inflation = 2; } - slave.inflationType = "food", slave.inflationMethod = 1; + slave.inflationType = "food"; + slave.inflationMethod = 1; SetBellySize(slave); - return r.join(" ") + return r.join(" "); }, - }) + }); } - } // CLOSES MINDBROKEN CHECK @@ -3533,9 +3572,9 @@ App.UI.newSlaveIntro = function(slave) { const r = []; r.push(`You `); if (slave.devotion > 20 || slave.trust < -20) { - r.push(`lay the obedient ${V.desc} across your knees`); + r.push(`lay the obedient ${desc} across your knees`); } else { - r.push(`force the resistant ${V.desc} to lie across your knees`); + r.push(`force the resistant ${desc} to lie across your knees`); } r.push(` and run a voluptuary hand across ${his} `); if (slave.butt > 6) { @@ -3584,10 +3623,10 @@ App.UI.newSlaveIntro = function(slave) { } } - return r.join(" ") + return r.join(" "); }, - }) + }); if (hasAnyArms(slave)) { @@ -3607,10 +3646,10 @@ App.UI.newSlaveIntro = function(slave) { slave.devotion -= 5; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (slave.anus !== 0) { @@ -3657,10 +3696,10 @@ App.UI.newSlaveIntro = function(slave) { slave.anus += 1; slave.vagina += 1; - return r.join(" ") + return r.join(" "); }, - }) + }); } else if ((slave.vagina === -1)) { choice({ linkName: `Use a machine on ${his} asshole`, @@ -3701,10 +3740,10 @@ App.UI.newSlaveIntro = function(slave) { V.analTotal += 1; slave.anus += 1; - return r.join(" ") + return r.join(" "); }, - }) + }); } } @@ -3766,10 +3805,10 @@ App.UI.newSlaveIntro = function(slave) { r.push(` voice. ${He} will remember <span class="mediumorchid">what you can do to ${him}.</span>`); slave.devotion -= 5; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) + }); } if (V.cumSlaves > 3) { @@ -3838,10 +3877,10 @@ App.UI.newSlaveIntro = function(slave) { } r.push(`${His} first day promises to be a full one!`); - return r.join(" ") + return r.join(" "); }, - }) + }); } if (hasAnyArms(slave)) { @@ -3872,10 +3911,10 @@ App.UI.newSlaveIntro = function(slave) { } slave.trust -= 10; slave.devotion -= 5; - return r.join(" ") + return r.join(" "); }, - }) + }); } if ((V.dairy > 0) && (V.dairyRestraintsSetting > 1) && (V.seeExtreme === 1)) { @@ -3901,32 +3940,33 @@ App.UI.newSlaveIntro = function(slave) { r.push(`It withdraws its horse-sized phallus from the slave's anus, leaving _hisU gape pulsing gently as it awaits the resumption of the endless assrape. ${slave.slaveName} lets out a huge sob and turns to you, <span class="gold">fear suffusing ${him}</span> as ${he} promises to <span class="hotpink">be a good ${girl}.</span>`); slave.devotion += 10; slave.trust -= 10; - return r.join(" ") + return r.join(" "); }, - }) + }); - if (slave.lactation > 0 || ((V.dairySlimMaintainUpgrade === 0 || V.dairySlimMaintain === 0) && (slave.boobs > 300 || slave.dick === 0 || V.dairyImplantsSetting === 1) && V.dairyImplantsSetting !== 2)) || (slave.balls > 0) { + if ((slave.lactation > 0 || ((V.dairySlimMaintainUpgrade === 0 || V.dairySlimMaintain === 0) && (slave.boobs > 300 || slave.dick === 0 || V.dairyImplantsSetting === 1) && V.dairyImplantsSetting !== 2)) || (slave.balls > 0)) { if (V.dairyPrepUpgrade === 1 && App.Entity.facilities.dairy.hasFreeSpace) { choice({ linkName: `Send ${him} straight to the Industrial Dairy`, - resultText(slave) { + result(slave) { const r = []; slave.choosesOwnAssignment = 0; slave.anus = Math.clamp(slave.anus, 3, 4); if (slave.vagina > -1) { slave.vagina = Math.clamp(slave.vagina, 3, 4); } - slave.counter.anal += 10, V.analTotal += 10; - assignJob(slave, "dairy") + slave.counter.anal += 10; + V.analTotal += 10; + assignJob(slave, "dairy"); r.push(`You order `); - if ($HeadGirlID === 0) { + if (V.HeadGirlID === 0) { r.push(`another slave`); } else { - r.push(S.HeadGirl.slaveName) + r.push(S.HeadGirl.slaveName); } - r.push(` to get ${slave.slaveName} set up in ${V.dairyName.} The new slave does not know what V.dairyName is, not really, and ${he} doesn't know what being set up there means, either. If ${he} knew that you are able to send ${him} there so blithely only because it is equipped with a special preparatory raper that will seize ${him}, `); + r.push(` to get ${slave.slaveName} set up in ${V.dairyName}. The new slave does not know what V.dairyName is, not really, and ${he} doesn't know what being set up there means, either. If ${he} knew that you are able to send ${him} there so blithely only because it is equipped with a special preparatory raper that will seize ${him}, `); if (slave.vagina > -1) { r.push(`mercilessly fuck ${his} pussy and ass until both are gaped`); } else { @@ -3934,16 +3974,15 @@ App.UI.newSlaveIntro = function(slave) { } r.push(`, and then consign ${him} to constant fucking by gargantuan machine phalli, ${he} might resist. But ${he} doesn't, so ${he} does not.`); - return r.join(" ") + return r.join(" "); }, - }) - + }); } if (App.Entity.facilities.dairy.hasFreeSpace) { choice({ linkName: `Break ${him} in for the Industrial Dairy`, - resultText(slave) { + result(slave) { const r = []; slave.choosesOwnAssignment = 0; slave.anus = Math.clamp(slave.anus, 3, 4); @@ -3952,7 +3991,8 @@ App.UI.newSlaveIntro = function(slave) { slave.counter.vaginal += 10; V.vaginalTotal += 10; } - slave.counter.anal += 10, V.analTotal += 10; + slave.counter.anal += 10; + V.analTotal += 10; assignJob(slave, "dairy"); r.push(`Making use of `); @@ -3961,7 +4001,7 @@ App.UI.newSlaveIntro = function(slave) { } else { r.push(`the compliance systems`); } - r.push(`, you restrain ${him} on one of the chairs in your office in an approximation of the position ${he}'ll occupy in ${V.dairyName.} Then you put a mask on ${him}, like the ones the machines there feature, and turn it on, watching the slave squirm against ${his} restraints under the sudden bombardment of garish hardcore porn. Finally, you add a dildo gag, both to mimic the dildo that will feed ${him}, and to keep your office reasonably quiet. Then, for the rest of the day, you use ${his} vulnerable `); + r.push(`, you restrain ${him} on one of the chairs in your office in an approximation of the position ${he}'ll occupy in ${V.dairyName}. Then you put a mask on ${him}, like the ones the machines there feature, and turn it on, watching the slave squirm against ${his} restraints under the sudden bombardment of garish hardcore porn. Finally, you add a dildo gag, both to mimic the dildo that will feed ${him}, and to keep your office reasonably quiet. Then, for the rest of the day, you use ${his} vulnerable `); if (slave.vagina > -1) { r.push(`holes`); } else { @@ -3989,10 +4029,10 @@ App.UI.newSlaveIntro = function(slave) { } r.push(` and asshole.`); - return r.join(" ") + return r.join(" "); }, - }) + }); } } } @@ -4002,7 +4042,7 @@ App.UI.newSlaveIntro = function(slave) { choice({ linkName: `Give ${him} all the cum ${he} can drink`, result(slave) { - const el = new DocumentFragment() + const el = new DocumentFragment(); let r = []; r.push(`You securely restrain your new slave; for both ${his} own safety and so ${he} can't object to ${his} meal. You reassure ${him} `); if (hasAnyEyes(slave)) { @@ -4074,19 +4114,21 @@ App.UI.newSlaveIntro = function(slave) { slave.trust -= 4; } } - slave.inflation = 3, slave.inflationType = "cum", slave.inflationMethod = 1; + slave.inflation = 3; + slave.inflationType = "cum"; + slave.inflationMethod = 1; SetBellySize(slave); - return r.join(" ") + return r.join(" "); }, - }) + }); } - if ((V.milkPipeline > 88 && V.milkPipeline !== 0) || V.arcologies[0].FSPastoralistLaw === 1) && slave.preg < 1 && slave.inflation === 0 && slave.bellyImplant <= 0 { + if (((V.milkPipeline > 88 && V.milkPipeline !== 0) || V.arcologies[0].FSPastoralistLaw === 1) && slave.preg < 1 && slave.inflation === 0 && slave.bellyImplant <= 0) { choice({ linkName: `Give ${him} all the milk ${he} can drink`, result(slave) { - const el = new DocumentFragment() + const el = new DocumentFragment(); let r = []; r.push(`You securely restrain your new slave; for both ${his} own safety and so ${he} can't object to ${his} meal. You reassure ${him} `); if (hasAnyEyes(slave)) { @@ -4131,110 +4173,109 @@ App.UI.newSlaveIntro = function(slave) { r.push(` However, as the fluid reaches ${him}, ${he} seems to despair and resigns ${himself} to ${his} fate. As ${his} belly swells, you find yourself comparing ${him} first to a binge eater, then some of the chubbier citizens you've seen, a large pregnancy, and finally a water balloon ready to burst. You stop the flow, and rest a hand on ${his} heaving stomach. ${His} <span class="gold">terrified</span> breathing and distant expression are clearly due to the pain, not lust, but it's also now quite clear to ${him} who is in charge here. You have little intent on letting ${his} stomach empty and will be setting aside enough milk to keep ${him} bloated into submission.`); slave.trust -= 3; } - slave.inflation = 3, slave.inflationType = "milk", slave.inflationMethod = 1; + slave.inflation = 3; + slave.inflationType = "milk"; + slave.inflationMethod = 1; SetBellySize(slave); - return r.join(" ") + return r.join(" "); }, - }) + }); } } - if (V.arcade > 0) && (V.seeExtreme === 1) { + if (V.arcade > 0 && V.seeExtreme === 1) { App.UI.DOM.appendNewElement("div", el, "...in the Arcade", "note"); - choice({ - linkName: ``, + choice({ + linkName: `Threaten ${him} with the Arcade`, result(slave) { const r = []; - - return r.join(" ") - }, - - }) - <<link "Threaten ${him} with the Arcade">> - <<setNonlocalPronouns V.seeDicks>> - <<replace "#introResult">> r.push(`You tell ${him} that it's in ${his} best interests to be a good ${girl}. ${He} does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you `); - if (canSee(slave)) { - r.push(`point at`); - } else { - r.push(`direct ${him} towards`); - } - r.push(` a wallscreen behind ${him}. ${He} turns, and beholds a live feed from ${V.arcadeName.`); - if} (canSee(slave)) { + if (canSee(slave)) { + r.push(`point at`); + } else { + r.push(`direct ${him} towards`); + } + r.push(` a wallscreen behind ${him}. ${He} turns, and beholds a live feed from ${V.arcadeName}.`); + if (canSee(slave)) { r.push(`${He} gazes at the row of butts sticking out of the wall at dick height, not quite realizing what ${he}'s seeing. Then ${he} notices that there are citizens pumping away in front of two of the butts, and ${he} understands.`); } else if (canHear(slave)) { - r.push(`${He} listens to the wet sounds of flesh on flesh, not quite realizing what ${he}'s hearing. Then ${he} picks out the sound of your citizens grunting and moaning as they pound away, and ${he} understands.`); + r.push(`${He} listens to the wet sounds of flesh on flesh, not quite realizing what ${he}'s hearing. Then ${he} picks out the sound of your citizens grunting and moaning as they pound away, and ${he} understands.`); } else { - r.push(`Such a broadcast would normally be pointless for a senseless slave like ${slave.slaveName}, but you've taken precautions to accommodate such slaves. The wallscreen is connected to the heating, air conditioning, and sprinkler systems in order to accurately replicate the feeling of standing in front of a row of restrained public sex slaves, so the meaning of the scene in front of ${him} is not lost.`); + r.push(`Such a broadcast would normally be pointless for a senseless slave like ${slave.slaveName}, but you've taken precautions to accommodate such slaves. The wallscreen is connected to the heating, air conditioning, and sprinkler systems in order to accurately replicate the feeling of standing in front of a row of restrained public sex slaves, so the meaning of the scene in front of ${him} is not lost.`); } r.push(`As ${he} `); - if (canSee(slave)) { - r.push(`watches`); - } else if (canHear(slave)) { - r.push(`listens`); - } else { - r.push(`stands there`); - } - r.push(`, terrified, first one citizen and then the other finishes and steps away. The first arcade inmate's `); - if (V.seeDicks !== 100) { - r.push(`pussy`); - } else { - r.push(`butt`); - } - r.push(` is left looking sore until ${V.arcadeName}'s systems cover _himU for a quick cleaning, and the second inmate's asshole `); - if (V.seeDicks !== 0) { - r.push(`has obviously seen severe use, since the poor _girlU doesn't have a pussy to spread the load`); - } else { - r.push(`is loose enough that the machines have to clean up the cum it drools onto the floor`); - } - r.push(`. ${slave.slaveName} lets out a huge sob and turns to you, <span class="gold">fear suffusing ${him}</span> as ${he} promises to <span class="hotpink">be a good ${girl}.</span>`); - <</replace>> - slave.devotion += 10; - slave.trust -= 10; - <</link>> + if (canSee(slave)) { + r.push(`watches`); + } else if (canHear(slave)) { + r.push(`listens`); + } else { + r.push(`stands there`); + } + r.push(`, terrified, first one citizen and then the other finishes and steps away. The first arcade inmate's `); + if (V.seeDicks !== 100) { + r.push(`pussy`); + } else { + r.push(`butt`); + } + r.push(` is left looking sore until ${V.arcadeName}'s systems cover _himU for a quick cleaning, and the second inmate's asshole `); + if (V.seeDicks !== 0) { + r.push(`has obviously seen severe use, since the poor _girlU doesn't have a pussy to spread the load`); + } else { + r.push(`is loose enough that the machines have to clean up the cum it drools onto the floor`); + } + r.push(`. ${slave.slaveName} lets out a huge sob and turns to you, <span class="gold">fear suffusing ${him}</span> as ${he} promises to <span class="hotpink">be a good ${girl}.</span>`); + slave.devotion += 10; + slave.trust -= 10; + return r.join(" "); + }, - if (App.Entity.facilities.arcade.hasFreeSpace) || (V.arcadeUpgradeFuckdolls === 2) { - | << link "Send ${him} straight to the Arcade">> - slave.assignment = "be confined in the arcade"; - slave.choosesOwnAssignment = 0; - <<replace "#introResult">> + }); + + if (App.Entity.facilities.arcade.hasFreeSpace || V.arcadeUpgradeFuckdolls === 2) { + choice({ + linkName: `Send ${him} straight to the Arcade`, + result(slave) { + const r = []; + slave.assignment = "be confined in the arcade"; + slave.choosesOwnAssignment = 0; r.push(`You order `); - if (${He}adGirlID === 0) { - r.push(`another slave`); - } else {_S.HeadGirl.slaveName - } - r.push(` to get ${slave.slaveName} set up in ${V.arcadeName.} The new slave does not know what V.arcadeName is, not really, and ${he} doesn't know what being set up there means, either. ${He}'ll be confined inside a small space, not too different from the indignities ${he}'s suffered already. It's only when the restraints lock into place that ${he}'ll understand ${his} doom. ${His} mouth will be forced open and presented at one wall of V.arcadeName, and ${his} ass will protrude from its other side, ${his} holes available for public relief at both ends. ${He}'ll probably refuse to believe the truth, until the first cockhead enters ${his} mouth`); - if (slave.vagina > -1) { - r.push(`, parts ${his} pussylips,`); - } - r.push(` or presses against ${his} poor anus.`); + if (V.HeadGirlID === 0) { + r.push(`another slave`); + } else { + r.push(S.HeadGirl.slaveName); + } + r.push(` to get ${slave.slaveName} set up in ${V.arcadeName}. The new slave does not know what V.arcadeName is, not really, and ${he} doesn't know what being set up there means, either. ${He}'ll be confined inside a small space, not too different from the indignities ${he}'s suffered already. It's only when the restraints lock into place that ${he}'ll understand ${his} doom. ${His} mouth will be forced open and presented at one wall of V.arcadeName, and ${his} ass will protrude from its other side, ${his} holes available for public relief at both ends. ${He}'ll probably refuse to believe the truth, until the first cockhead enters ${his} mouth`); + if (slave.vagina > -1) { + r.push(`, parts ${his} pussylips,`); + } + r.push(` or presses against ${his} poor anus.`); if (V.arcade <= App.Entity.facilities.arcade.employeesIDs().size) { - r.push(`Mere `); - if (V.showInches === 2) { - r.push(`yards`); - } else { - r.push(`meters`); - } - r.push(` away, preparations to convert the least appealing Arcade slave into a Fuckdoll begin. As ${slave.slaveName} is broken in by ${his} first customers, ${he}'s blissfully unaware that ${he}'s ${V.arcade} new slaves away from the same fate.`); - } - <</replace>> - <</link>> - } - } - - </p> + r.push(`Mere `); + if (V.showInches === 2) { + r.push(`yards`); + } else { + r.push(`meters`); + } + r.push(` away, preparations to convert the least appealing Arcade slave into a Fuckdoll begin. As ${slave.slaveName} is broken in by ${his} first customers, ${he}'s blissfully unaware that ${he}'s ${V.arcade} new slaves away from the same fate.`); + } + return r.join(" "); + }, + + }); + } } - </p > - ${ IncreasePCSkills('trading', 0.1) } - if (V.PC.skill.slaving < 100 && jsRandom(V.PC.skill.slaving, 100) > 50) { - r.push(` ${IncreasePCSkills('slaving', 0.5)} `); - } else { - r.push(` ${IncreasePCSkills('slaving', 0.1)} `); - } + } - return el; + IncreasePCSkills('trading', 0.1); + if (V.PC.skill.slaving < 100 && jsRandom(V.PC.skill.slaving, 100) > 50) { + IncreasePCSkills('slaving', 0.5); + } else { + IncreasePCSkills('slaving', 0.1); } - }; + + return el; + } +}; -- GitLab