diff --git a/src/npc/interaction/fAnimal.js b/src/npc/interaction/fAnimal.js index d9a129bfbdb49283dc18279bc2f2f9bc4e50f9c5..3ba0b8d8e1cb82acf7bcefa063cbe6a18f26ce5f 100644 --- a/src/npc/interaction/fAnimal.js +++ b/src/npc/interaction/fAnimal.js @@ -158,7 +158,10 @@ App.Interact.fAnimal = function(slave, type) { mainSpan.append(`${slave.slaveName} visibly blanches at the thought of having to suck down an animal's cum, but ${he} is so devoted to you that ${he} reluctantly agrees. `); } } else { - if ((act === Acts.VAGINAL && slave.vagina > 0) || (act === Acts.ANAL && slave.anus > 0)) { + if ( + (act === Acts.VAGINAL && slave.vagina > 0) || + (act === Acts.ANAL && slave.anus > 0) + ) { if (slaveApproves()) { mainSpan.append(`${slave.slaveName}'s face visibly brightens at the thought of ${fetishDesc}, even if the dick is an animal's. `); } else { @@ -186,7 +189,10 @@ App.Interact.fAnimal = function(slave, type) { mainSpan.append(`${slave.slaveName} tries in vain to conceal ${his} horror at the thought of blowing an animal, but quickly regains ${his} composure. `); } } else { - if ((act === Acts.VAGINAL && slave.vagina > 0) || (act === Acts.ANAL && slave.anus > 0)) { + if ( + (act === Acts.VAGINAL && slave.vagina > 0) || + (act === Acts.ANAL && slave.anus > 0) + ) { if (slaveApproves()) { mainSpan.append(`${slave.slaveName} doesn't seem terribly keen on the idea of fucking an animal, but the thought of ${fetishDesc} seems to be enough to win ${him} over. `); } else { diff --git a/src/npc/interaction/fBoobs.js b/src/npc/interaction/fBoobs.js index a1b200b1079f4bc071e952e94b5debe8d78a678b..825740bf56a2c4f92539676453e0e34817f3ae59 100644 --- a/src/npc/interaction/fBoobs.js +++ b/src/npc/interaction/fBoobs.js @@ -315,7 +315,10 @@ App.Interact.fBoobs = function(slave) { } } } else if (random(1, 100) > (110-slave.devotion)) { - if (slave.fetish === "none" && slave.behavioralFlaw !== "hates men" || V.PC.dick === 0 && slave.behavioralFlaw !== "hates women" || V.PC.dick > 0) { + if (slave.fetish === "none" && + (slave.behavioralFlaw !== "hates men" || V.PC.dick === 0) && + (slave.behavioralFlaw !== "hates women" || V.PC.dick > 0) + ) { r.push(`Having attention and love lavished on ${his} boobs by ${his} ${getWrittenTitle(slave)} has ${him} thinking of ${his} <span class="fetish gain">breasts as sexual organs.</span>`); slave.fetish = "boobs"; slave.fetishKnown = 1; diff --git a/src/npc/interaction/fFeelings.js b/src/npc/interaction/fFeelings.js index 1fcde417448194491b8c02e7dc6b4d9c0a08a3da..75bf2dfd82d28c6f774805479af441bc645d700d 100644 --- a/src/npc/interaction/fFeelings.js +++ b/src/npc/interaction/fFeelings.js @@ -807,9 +807,16 @@ App.Interact.feelings = function(slave) { r.push(`I'm so horny, ${Master}.`); if (plugWidth(slave) === 1 && slave.anus > 2) { r.push(`I wear the buttplug you gave me, but it is so small... It reminds me of being fucked in the ass, but I can barely feel it. It drives me crazy.`); - } else if (((plugWidth(slave) === 1 && slave.anus < 3) || (plugWidth(slave) === 2 && slave.anus === 3) || plugWidth(slave) === 3 && slave.anus >= 4) ) { + } else if ( + (plugWidth(slave) === 1 && slave.anus < 3) || + (plugWidth(slave) === 2 && slave.anus === 3) || + (plugWidth(slave) === 3 && slave.anus >= 4) + ) { r.push(`Thank you for the buttplug. It is really fun to have my ass filled all day long.`); - } else if ((plugWidth(slave) === 2 && slave.anus < 3) || (plugWidth(slave) > 2 && slave.anus < 4) ) { + } else if ( + (plugWidth(slave) === 2 && slave.anus < 3) || + (plugWidth(slave) > 2 && slave.anus < 4) + ) { r.push(`I like it up the ass, but the plug you make me wear is too big. It really hurts. Not in the good way.`); } else { r.push(`My anus is killing me, all I want to do is touch it and massage it and fill it.`); @@ -1330,7 +1337,11 @@ App.Interact.feelings = function(slave) { break; case "intensive testicle enhancement": r.push(Spoken(slave, `My balls feel incredibly full, ${Master}. They're really uncomfortable.`)); - if (slave.fetishKnown === 1 && (slave.fetish === "dom") || (slave.fetish === "sadist") && slave.fetishStrength > 60) { + if ( + slave.fetishKnown === 1 && + (slave.fetish === "dom" || slave.fetish === "sadist") && + slave.fetishStrength > 60 + ) { r.push(Spoken(slave, `But I can't wait to force a bitch to take the whole load.`)); } else if (slave.fetishKnown === 1 && slave.fetish === "pregnancy" && slave.fetishStrength > 60) { r.push(Spoken(slave, `I feel like I could fill a girl's womb with cum with one orgasm.`)); @@ -1340,7 +1351,11 @@ App.Interact.feelings = function(slave) { break; case "hyper testicle enhancement": r.push(Spoken(slave, `My balls feel so incredibly full, ${Master}. They're really painful.`)); - if (slave.fetishKnown === 1 && (slave.fetish === "dom") || (slave.fetish === "sadist") && slave.fetishStrength > 60) { + if ( + slave.fetishKnown === 1 && + (slave.fetish === "dom" || slave.fetish === "sadist") && + slave.fetishStrength > 60 + ) { r.push(Spoken(slave, `But I can't wait to fill a bitch with my load. Bet they'll look pregnant when I'm done.`)); } else if (slave.fetishKnown === 1 && slave.fetish === "pregnancy" && slave.fetishStrength > 60) { r.push(Spoken(slave, `I feel like I could fertilize all of a girl's eggs with my cum.`)); @@ -1349,7 +1364,7 @@ App.Interact.feelings = function(slave) { } break; case "intensive breast injections": - if (slave.fetishKnown === 1 && (slave.fetish === "boobs") || (slave.energy > 95)) { + if (slave.fetishKnown === 1 && (slave.fetish === "boobs" || slave.energy > 95)) { r.push(Spoken(slave, `I can almost feel my boobs swelling, ${Master}. Thank you for injecting them with hormones, and please, never stop.`)); } else { r.push(Spoken(slave, `I can almost feel my boobs swelling, ${Master}. It's kind of uncomfortable.`)); @@ -1367,7 +1382,7 @@ App.Interact.feelings = function(slave) { } break; case "intensive butt injections": - if (slave.fetishKnown === 1 && (slave.fetish === "buttslut") || (slave.energy > 95)) { + if (slave.fetishKnown === 1 && (slave.fetish === "buttslut" || slave.energy > 95)) { r.push(Spoken(slave, `I can almost feel my butt growing, ${Master}. I can't wait to feel a dick sliding up in between my buttocks.`)); } else { r.push(Spoken(slave, `I can almost feel my butt growing, ${Master}. It's kind of uncomfortable.`)); @@ -1385,7 +1400,7 @@ App.Interact.feelings = function(slave) { } break; case "lip injections": - if (slave.fetishKnown === 1 && (slave.fetish === "cumslut") || (slave.energy > 95)) { + if (slave.fetishKnown === 1 && (slave.fetish === "cumslut" || slave.energy > 95)) { r.push(Spoken(slave, `I can almost feel my lips swelling, ${Master}. I can't wait to wrap them around a cock.`)); } else { r.push(Spoken(slave, `I can almost feel my lips swelling, ${Master}. It's kind of uncomfortable.`)); diff --git a/src/npc/interaction/fRelation.js b/src/npc/interaction/fRelation.js index bd4918c94548e10e2366f22622c9b063a8865bda..3f2b35d66c9eb562fe42ba5ca7803a5ae3dd3110 100644 --- a/src/npc/interaction/fRelation.js +++ b/src/npc/interaction/fRelation.js @@ -226,7 +226,11 @@ App.Interact.fRelation = function(slave, partner) { r.push(`at will. Whenever a hole begins to pall you just switch to another. ${slave.slaveName} tries hard to ignore the fact that ${he}'s getting fucked next to ${his} ${partnerRel}, and ${partner.slaveName} pretends the cock getting shoved into ${him2} isn't slick from ${his2} ${activeSlaveRel}'s fuckhole.`); r.push(VCheck.Both(slave, 1)); r.push(VCheck.Partner(partner, 1)); - } else if ((activeSlaveRel === "friend") || (activeSlaveRel === "best friend") && slave.devotion > 20 && partner.devotion > 20) { + } else if ( + (activeSlaveRel === "friend" || activeSlaveRel === "best friend") && + slave.devotion > 20 && + partner.devotion > 20 + ) { r.push(`${slave.slaveName}`); r.push(`and ${partner.slaveName} line up next to one another on the couch next to your desk`); if (V.PC.dick === 0) { diff --git a/src/npc/interaction/fSlaveSelfImpreg.js b/src/npc/interaction/fSlaveSelfImpreg.js index 79fbf9591a9662d0ba7b8ad3814b374a1e80d0d2..12033dbe456fe89bf62d5633ed05899e001ea6ef 100644 --- a/src/npc/interaction/fSlaveSelfImpreg.js +++ b/src/npc/interaction/fSlaveSelfImpreg.js @@ -143,7 +143,10 @@ App.Interact.fSlaveSelfImpreg = function(slave) { if (_enjoy) { if (slave.dick > 6 && slave.balls <= 4) { r.push(`Although ${he} is aroused by the idea of impregnating ${himself}, ${slave.slaveName}'s cock is simply too large to easily become erect. A quick injection of vasodilators later, and ${he}'s ready to go. Because ${he}'s so eager, you simply stand back and let the magic happen.`); - if ((slave.vagina === 0 && slave.mpreg !== 1) || (slave.anus === 0 && slave.mpreg === 1)) { + if ( + (slave.vagina === 0 && slave.mpreg !== 1) || + (slave.anus === 0 && slave.mpreg === 1) + ) { r.push(`As ways to lose one's virginity go, this is one hell of a way to do it. Without needing any instruction, ${slave.slaveName} grasps ${his} massive shaft`); if (hasBothArms(slave)) { r.push(`in both hands`);