diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js index c8771565e2a008165130e82d9177ec9155b35ccb..9c980c4f04abb1bae7d184e48709e36aa2163f1d 100644 --- a/js/003-data/policiesData.js +++ b/js/003-data/policiesData.js @@ -832,7 +832,7 @@ App.Data.Policies.Selection = { get text() { return `slaves will be rewarded with their freedom once they have been fucked ${num(V.policies.retirement.sex)} times.`; }, get activatedText() { const el = new DocumentFragment; - let div = document.createElement('div'); + let div = document.createElement("div"); el.append(`slaves are rewarded with their freedom once they have been fucked ${num(V.policies.retirement.sex)} times.`); div.append(`Set a new retirement requirement:`); div.append( @@ -862,7 +862,7 @@ App.Data.Policies.Selection = { get text() { return `slaves will be rewarded with their freedom once they have given ${num(V.policies.retirement.milk)} liters of milk.`; }, get activatedText() { const el = new DocumentFragment; - let div = document.createElement('div'); + let div = document.createElement("div"); el.append(`slaves are rewarded with their freedom once they have given ${num(V.policies.retirement.milk)} liters of milk.`); div.append(`Set a new retirement requirement:`); div.append( @@ -892,7 +892,7 @@ App.Data.Policies.Selection = { get text() { return `slaves will be rewarded with their freedom once they have given ${num(V.policies.retirement.cum)} deciliters of cum.`; }, get activatedText() { const el = new DocumentFragment; - let div = document.createElement('div'); + let div = document.createElement("div"); el.append(`slaves are rewarded with their freedom once they have given ${num(V.policies.retirement.cum)} deciliters of cum.`); div.append(`Set a new retirement requirement:`); div.append( @@ -922,7 +922,7 @@ App.Data.Policies.Selection = { get text() { return `slaves will be rewarded with their freedom once they add ${num(V.policies.retirement.births)} new slaves to the population of ${V.arcologies[0].name}.`; }, get activatedText() { const el = new DocumentFragment; - let div = document.createElement('div'); + let div = document.createElement("div"); el.append(`slaves are rewarded with their freedom once they add ${num(V.policies.retirement.births)} new slaves to the population of ${V.arcologies[0].name}. `); div.append(`Set a new retirement requirement:`); div.append( @@ -952,7 +952,7 @@ App.Data.Policies.Selection = { get text() { return `slaves will be rewarded with their freedom once they have killed ${num(V.policies.retirement.kills)} of their fellow slaves in the pit.`; }, get activatedText() { const el = new DocumentFragment; - let div = document.createElement('div'); + let div = document.createElement("div"); el.append(`slaves are rewarded with their freedom once they have killed ${num(V.policies.retirement.kills)} of their fellow slaves in the pit.`); div.append(`Set a new retirement requirement:`); div.append( diff --git a/src/interaction/main/walkPast.js b/src/interaction/main/walkPast.js index e68fb2e893b04fd025774487355b940a8db95209..1850cfa4448d0cca97f27e3caddbb91f143147c5 100644 --- a/src/interaction/main/walkPast.js +++ b/src/interaction/main/walkPast.js @@ -201,7 +201,7 @@ globalThis.walkPast = (function() { } else { r += `${partnerSlave.slaveName}, whom ${he} dislikes, `; } - r += walkPasts(partnerSlave, 100-seed); + r += walkPasts(partnerSlave, 100 - seed); target = "FRival"; } @@ -229,9 +229,9 @@ globalThis.walkPast = (function() { if (partnerSlave !== undefined) { /* eslint-disable no-unused-vars */ const { - he2, him2, his2, hers2, himself2, boy2, wife2, He2, His2 + he2, him2, his2, himself2 } = getPronouns(partnerSlave).appendSuffix("2"); - /* /* eslint-enable no-unused-vars */ + /* /* eslint-enable no-unused-vars */ const partnerName = partnerSlave.slaveName; const race2 = (V.seeRace ? partnerSlave.race : ""); const activeSlaveRel = relationshipTerm(activeSlave); @@ -1061,7 +1061,7 @@ globalThis.walkPast = (function() { } t += `${fuckSpot}, having gentle anal sex while spooning. ${name} is enjoying ${partnerName}'s ass, and is doing ${his} best to ensure ${his} ${partnerSlaveRel} enjoys being buttfucked. ${He}'s nibbling ${his} ${partnerSlaveRel}'s `; if (partnerSlave.earShape !== "none") { - t +=`ears and `; + t += `ears and `; } t += `neck, cupping a breast with one hand, and lightly stimulating ${him2} with the other.`; } else if (activeSlave.clit > 2 && canDoAnal(partnerSlave) && partnerSlave.anus > 0 && hasAnyArms(partnerSlave) && hasAnyLegs(activeSlave)) { @@ -1083,7 +1083,7 @@ globalThis.walkPast = (function() { } t += `${fuckSpot}, spooning while ${name} gently rubs ${his} cock between ${partnerName}'s thighs, pressed tightly together. Since ${partnerName} is a virgin, this is the closest they can come to penetrative intercourse, but ${name} is enjoying ${partnerName}'s body anyway, and is doing ${his} best to ensure ${his} ${partnerSlaveRel} enjoys ${himself2}. ${He}'s nibbling ${his} ${partnerSlaveRel}'s `; if (partnerSlave.earShape !== "none") { - t +=`ears and `; + t += `ears and `; } t += `neck, cupping a breast with one hand, and lightly stimulating ${him2} with the other.`; } else if (activeSlave.clit > 2 && canDoVaginal(activeSlave) && hasBothLegs(partnerSlave)) { @@ -1120,7 +1120,7 @@ globalThis.walkPast = (function() { } t += `${fuckSpot}, having gentle anal sex while spooning. ${name} is enjoying penetrating ${partnerName}'s ass with a strap-on, and is doing ${his} best to ensure ${his} ${partnerSlaveRel} enjoys being buttfucked. ${He}'s nibbling ${his} ${partnerSlaveRel}'s `; if (partnerSlave.earShape !== "none") { - t +=`ears and `; + t += `ears and `; } t += `neck, cupping a breast with one hand, and lightly stimulating ${him} with the other.`; } else if (hasAnyArms(partnerSlave) && hasAnyArms(activeSlave)) { @@ -1416,10 +1416,7 @@ globalThis.walkPast = (function() { let r = ""; const fuckSeed = jsRandom(1, 100); - const { - he, him, his, hers, himself, boy, - He, His - } = getPronouns(activeSlave); + const {His} = getPronouns(activeSlave); if (partner === "relation") { partnerSlave = randomRelatedSlave(activeSlave); @@ -1452,8 +1449,8 @@ globalThis.walkPast = (function() { */ function walkPasts(slave, seed) { const { - he, him, his, hers, himself, boy, - He, His + he, him, his, himself, + He, } = getPronouns(slave); t = ""; const race = (V.seeRace ? slave.race : ""); @@ -1821,11 +1818,11 @@ globalThis.walkPast = (function() { } } break; - /* - case Job.BODYGUARD: - t += `is standing discreetly behind your left shoulder, watching for threats.`; - break - */ + /* + case Job.BODYGUARD: + t += `is standing discreetly behind your left shoulder, watching for threats.`; + break + */ case Job.CONFINEMENT: t += `is confined, but you have a fine view of ${his} ${race} body on the feed from ${his} cell.`; break; @@ -2064,8 +2061,8 @@ globalThis.walkPast = (function() { function boobWatch(slave) { const pronouns = getPronouns(slave); const { - he, him, his, hers, himself, boy, - He, His + he, him, his, + His } = pronouns; target = "FBoobs"; @@ -2476,7 +2473,7 @@ globalThis.walkPast = (function() { case "a biyelgee costume": t += `${His} costume could be removed with barely any effort.`; break; - // ends needs work block + // ends needs work block case "no clothing": if (slave.chastityAnus === 1 || slave.chastityVagina === 1 || slave.chastityPenis === 1) { @@ -2510,7 +2507,7 @@ globalThis.walkPast = (function() { */ function buttWatch(slave) { const { - he, him, his, hers, himself, boy, + he, him, his, boy, He, His } = getPronouns(slave); @@ -2863,7 +2860,7 @@ globalThis.walkPast = (function() { */ function bellyWatch(slave) { const { - he, him, his, hers, himself, boy, + he, him, his, He, His } = getPronouns(slave); @@ -3484,7 +3481,7 @@ globalThis.walkPast = (function() { break; case "a leotard": t += `${His} huge belly lewdly stretches ${his} leotard.`; - if ((slave.bellyAccessory !== "a huge empathy belly") && (slave.bellyAccessory !== "a large empathy belly") ) { + if ((slave.bellyAccessory !== "a huge empathy belly") && (slave.bellyAccessory !== "a large empathy belly")) { t += ` You swear you can see ${his} babies kicking underneath the form fitting material.`; } break; @@ -3687,7 +3684,7 @@ globalThis.walkPast = (function() { t += `${His} loose dress bulges with ${his} giant gut.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} hugely fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s hugely fat belly bulges over the sides of ${his} overalls.`; @@ -3892,7 +3889,7 @@ globalThis.walkPast = (function() { t += `${His} loose dress bulges with ${his} big gut.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} big fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s big fat belly spills out from behind ${his} overalls.`; @@ -4565,7 +4562,7 @@ globalThis.walkPast = (function() { t += `${His} monokini only covers the lower quarter of ${his} enormous belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left halfway uncovered.`; } else { t += `The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge implant-filled pregnant belly.`; @@ -4719,7 +4716,7 @@ globalThis.walkPast = (function() { t += `${His} monokini only covers the lower half of ${his} giant belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left mostly uncovered.`; } else { t += `${slave.slaveName}'s overalls are pulled taut by ${his} huge implant-filled belly.`; @@ -4852,7 +4849,7 @@ globalThis.walkPast = (function() { t += `${His} massive gut spills out over the front of ${his} monokini.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} massively fat belly is left mostly uncovered.`; } else { t += `${slave.slaveName}'s massively fat belly spills out over the sides of ${his} overalls.`; @@ -5096,7 +5093,7 @@ globalThis.walkPast = (function() { t += `${His} monokini only covers the lower three quarters of ${his} huge belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} hugely swollen belly is left almost entirely uncovered.`; } else { t += `${slave.slaveName}'s hugely swollen belly stretches out the fabric of ${his} overalls.`; @@ -5274,7 +5271,7 @@ globalThis.walkPast = (function() { t += `${His} monokini struggles to reign in ${his} giant gut.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} hugely fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s hugely fat belly bulges over the sides of ${his} overalls.`; @@ -5488,7 +5485,7 @@ globalThis.walkPast = (function() { t += `${His} big gut stretches out the fabric of ${his} monokini.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} big fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s big fat belly spills out from behind ${his} overalls.`; @@ -5696,7 +5693,7 @@ globalThis.walkPast = (function() { t += `${His} monokini is rounded out by ${his} large belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} implant-filled belly is left uncovered.`; } else { t += `${slave.slaveName}'s overalls are significantly curved by ${his} implant-filled belly.`; @@ -5910,7 +5907,7 @@ globalThis.walkPast = (function() { t += `${His} monokini clings to the size and shape of ${his} fat gut.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s fat belly bulges out from over the sides of ${his} overalls.`; @@ -6124,7 +6121,7 @@ globalThis.walkPast = (function() { t += `${His} monokini bulges from ${his} distended belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} implant-rounded belly is left uncovered.`; } else { t += `${slave.slaveName}'s implant-rounded belly rounds out the front of ${his} overalls.`; @@ -6314,7 +6311,7 @@ globalThis.walkPast = (function() { t += `${His} massive gut spills out from the top of ${his} monokini as ${he} moves.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} massively fat belly is left mostly uncovered.`; } else { t += `${slave.slaveName}'s massively fat belly spills out over the sides of ${his} overalls.`; @@ -6564,7 +6561,7 @@ globalThis.walkPast = (function() { t += `${His} monokini fails to fully cover ${his} taut, sloshing belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} hugely swollen belly is left almost entirely uncovered.`; } else { t += `${slave.slaveName}'s hugely swollen belly stretches out the fabric of ${his} overalls.`; @@ -6739,7 +6736,7 @@ globalThis.walkPast = (function() { t += `${His} giant gut causes ${his} monokini to jiggle alongside it as ${he} moves.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} hugely fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s hugely fat belly bulges over the sides of ${his} overalls.`; @@ -7082,7 +7079,7 @@ globalThis.walkPast = (function() { t += `${His} loose dress bulges with ${his} big gut.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s giant breasts push out ${his} overalls so far that ${his} big fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s big fat belly spills out from behind ${his} overalls.`; @@ -7206,7 +7203,7 @@ globalThis.walkPast = (function() { t += `${His} monokini struggles to cover ${his} rounded, sloshing belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} jiggling ${slave.inflationType}-filled belly is left uncovered.`; } else { t += `${slave.slaveName}'s overalls are significantly curved by ${his} jiggling ${slave.inflationType}-filled belly.`; @@ -7378,7 +7375,7 @@ globalThis.walkPast = (function() { t += `${His} fat gut bulges out ${his} monokini, which stops ${him} from jiggling as ${he} moves.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} fat belly is left uncovered.`; } else { t += `${slave.slaveName}'s fat belly bulges out from over the sides of ${his} overalls.`; @@ -7637,7 +7634,7 @@ globalThis.walkPast = (function() { t += `${His} monokini manages to cover ${his} distended belly.`; break; case "overalls": - if (slave.boobs > (slave.belly+250)) { + if (slave.boobs > (slave.belly + 250)) { t += `${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} ${slave.inflationType}-swollen belly is left uncovered.`; } else { t += `${slave.slaveName}'s ${slave.inflationType}-swollen belly rounds out the front of ${his} overalls.`; @@ -7754,7 +7751,7 @@ globalThis.walkPast = (function() { */ function vaginaWatch(slave) { const { - he, him, his, hers, himself, boy, + he, him, his, He, His } = getPronouns(slave); @@ -8344,7 +8341,7 @@ globalThis.walkPast = (function() { */ function dickWatch(slave) { const { - he, him, his, hers, himself, boy, + he, him, his, He, His } = getPronouns(slave); @@ -8934,7 +8931,7 @@ globalThis.walkPast = (function() { */ function anusWatch(slave) { const { - he, him, his, hers, himself, boy, + he, him, his, boy, He, His } = getPronouns(slave); @@ -9261,8 +9258,8 @@ globalThis.walkPast = (function() { */ function lipWatch(slave) { const { - he, him, his, hers, himself, boy, - He, His + he, him, his, + His } = getPronouns(slave); t += App.Desc.face(slave); @@ -9329,7 +9326,7 @@ globalThis.walkPast = (function() { } } } - switch (slave.mouthAccessory ) { + switch (slave.mouthAccessory) { case "dildo gag": t += `${His} ring gag would make ${him} ready for oral service, as soon as the formidable dildo it secures down ${his} throat is removed.`; break; @@ -9347,7 +9344,7 @@ globalThis.walkPast = (function() { break; } - switch (slave.faceAccessory ) { + switch (slave.faceAccessory) { case "porcelain mask": t += `${His} beautiful porcelain mask hides ${his} face and any unsightly facial features.`; break; diff --git a/src/npc/children/longChildDescription.js b/src/npc/children/longChildDescription.js index 315fedd24756255d2ae8cc0259ba393c63554058..877c211d852280f26a63b77dc692ac8cc8bf0f5a 100644 --- a/src/npc/children/longChildDescription.js +++ b/src/npc/children/longChildDescription.js @@ -845,7 +845,7 @@ App.Facilities.Nursery.LongChildDescription = function(child, {market = 0, event if (child.pregWeek < 0) { r += `"${num(child.pregWeek * -1)} week${child.pregWeek !== -1 ? `s` : ``} until I can get preggers again!" `; } else if (child.pregKnown) { - r += `"${40-Math.ceil(child.preg)} weeks till I pop!" `; + r += `"${40 - Math.ceil(child.preg)} weeks till I pop!" `; } else { r += `"My womb needs filling!" `; } @@ -929,9 +929,9 @@ App.Facilities.Nursery.LongChildDescription = function(child, {market = 0, event } else if (V.policies.retirement.kills > 0) { r += `${V.policies.retirement.kills - child.counter.pitKills}, for the number of lives still between ${him} and freedom. `; } else if (V.policies.retirement.physicalAgePolicy === 0) { - r += `${(365*(V.retirementAge-child.actualAge))+(7*(52-child.birthWeek))}, the number of days of sexual slavery ahead of ${him}. `; + r += `${(365 * (V.retirementAge - child.actualAge)) + (7 * (52 - child.birthWeek))}, the number of days of sexual slavery ahead of ${him}. `; } else { - r += `${(365*(V.retirementAge-child.physicalAge))+(7*(52-child.birthWeek))}, the number of days of sexual slavery ahead of ${him}. `; + r += `${(365 * (V.retirementAge - child.physicalAge)) + (7 * (52 - child.birthWeek))}, the number of days of sexual slavery ahead of ${him}. `; } break; } @@ -6120,7 +6120,7 @@ App.Facilities.Nursery.LongChildDescription = function(child, {market = 0, event if (V.clinic && V.clinicUpgradeScanner) { r += `${capFirstChar(V.clinicName)}'s scanners `; if (child.chem > 15) { - r += `score long term carcinogenic buildup in ${his} body at <span class="cyan">${Math.ceil(child.chem/10)}.</span> `; + r += `score long term carcinogenic buildup in ${his} body at <span class="cyan">${Math.ceil(child.chem / 10)}.</span> `; } else { r += `confirm that ${he} has good prospects for long term health. `; }