Skip to content
Snippets Groups Projects
Commit 6fbe32bb authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'pregmod-dev' into 'pregmod-master'

clean reIfYouEnjoyIt.js

See merge request pregmodfan/fc-pregmod!9018
parents 4a62a200 3f16af18
No related branches found
No related tags found
No related merge requests found
...@@ -9,18 +9,17 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -9,18 +9,17 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
return [ return [
[ [
s => s.fetish !== "mindbroken", s => s.fetish !== "mindbroken",
hasAnyArms, hasBothArms,
hasAnyLegs, hasAnyLegs,
canTalk, canTalk,
s => s.devotion > 50, s => s.devotion > 50,
], ],
[ // and subslave [ // and subslave
s => s.fetish !== "mindbroken", s => s.fetish !== "mindbroken",
canWalk,
canTalk, canTalk,
isSlaveAvailable, isSlaveAvailable,
s => s.devotion <= 20, s => s.devotion <= 20,
s => (s.fetish !== "buttslut" || s.fetishKnown === 0), s => s.fetish !== "buttslut",
s => s.anus !== 0 s => s.anus !== 0
] ]
]; ];
...@@ -28,40 +27,37 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -28,40 +27,37 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
execute(node) { execute(node) {
/** @type {Array<App.Entity.SlaveState>} */ /** @type {Array<App.Entity.SlaveState>} */
let [slave, subSlave] = this.actors.map(a => getSlave(a)); let [eventSlave, subSlave] = this.actors.map(a => getSlave(a));
const { const {
He, he, his, him, himself, He, he, his, him, himself,
} = getPronouns(slave); } = getPronouns(eventSlave);
const {say} = getEnunciation(slave); const {say} = getEnunciation(eventSlave);
const { const {
His2, him2, girl2, his2, he2, He2 His2, him2, girl2, his2, he2, He2
} = getPronouns(subSlave).appendSuffix("2"); } = getPronouns(subSlave).appendSuffix("2");
V.nextLink = "Next Week"; V.nextLink = "Next Week";
App.Events.drawEventArt(node, [slave, subSlave], "no clothing"); App.Events.drawEventArt(node, [eventSlave, subSlave], "no clothing");
seX(subSlave, "anal", slave, "penetrative");
let t = []; let t = [];
t.push(`The distinctive sounds of a sexual encounter in which exactly one of the participants is enjoying ${himself} are coming from the dormitory. This is by no means uncommon, but this particular nonconsensual assignation sounds interesting, so you stick your head in on your way by. You're treated to the sight of`); t.push(`The distinctive sounds of a sexual encounter in which exactly one of the participants is enjoying ${himself} are coming from the dormitory. This is by no means uncommon, but this particular nonconsensual assignation sounds interesting, so you stick your head in on your way by. You're treated to the sight of`);
t.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, slave, "DOM"), `'s ${slave.skin} back and`)); t.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), `'s ${eventSlave.skin} back and`));
if (slave.butt > 4) { if (eventSlave.butt > 4) {
t.push(`massive ass`); t.push(`massive ass`);
} else if (slave.butt > 2) { } else if (eventSlave.butt > 2) {
t.push(`plush rear`); t.push(`plush rear`);
} else { } else {
t.push(`cute butt`); t.push(`cute butt`);
} }
t.push(`as ${he}`); t.push(`as ${he}`);
if (hasAnyLegs(slave)) { if (!canStand(eventSlave)) {
t.push(`kneels`); t.push(`kneels`);
} else { } else {
t.push(`leans over`); t.push(`leans over`);
} }
t.push(`on one of the bedrolls. It isn't immediately clear what's going on, but ${he}'s doing something with ${his}`); t.push(`on one of the bedrolls. It isn't immediately clear what's going on, but ${he}'s doing something with ${his}`);
if (canPenetrate(slave)) { if (canPenetrate(eventSlave)) {
t.push(`dick,`); t.push(`dick,`);
} else { } else {
t.push(`hands,`); t.push(`hands,`);
...@@ -75,16 +71,16 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -75,16 +71,16 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
t.push(`the pregnant`); t.push(`the pregnant`);
} }
t.push(App.UI.DOM.combineNodes(App.UI.DOM.slaveDescriptionDialog(subSlave), ".")); t.push(App.UI.DOM.combineNodes(App.UI.DOM.slaveDescriptionDialog(subSlave), "."));
t.push(`${slave.slaveName} has`); t.push(`${eventSlave.slaveName} has`);
if (canPenetrate(slave)) { if (canPenetrate(eventSlave)) {
if (slave.dick > 4) { if (eventSlave.dick > 4) {
t.push(`${his} gigantic dick up ${subSlave.slaveName}'s`); t.push(`${his} gigantic dick up ${subSlave.slaveName}'s`);
if (subSlave.anus > 2) { if (subSlave.anus > 2) {
t.push(`loose anus, but ${subSlave.slaveName}'s butthole is so accommodating that it probably isn't anal pain that's troubling ${him2}.`); t.push(`loose anus, but ${subSlave.slaveName}'s butthole is so accommodating that it probably isn't anal pain that's troubling ${him2}.`);
} else { } else {
t.push(`asshole, which must be so stretched to accommodate it that ${his2} anguish is probably due in part to anal pain.`); t.push(`asshole, which must be so stretched to accommodate it that ${his2} anguish is probably due in part to anal pain.`);
} }
} else if (slave.dick > 2) { } else if (eventSlave.dick > 2) {
t.push(`${his} dick up ${subSlave.slaveName}'s`); t.push(`${his} dick up ${subSlave.slaveName}'s`);
if (subSlave.anus > 1) { if (subSlave.anus > 1) {
t.push(`experienced anus, but ${subSlave.slaveName}'s butthole sufficiently used to buttsex that it probably isn't anal pain that's troubling ${him2}.`); t.push(`experienced anus, but ${subSlave.slaveName}'s butthole sufficiently used to buttsex that it probably isn't anal pain that's troubling ${him2}.`);
...@@ -103,14 +99,14 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -103,14 +99,14 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
t.push(`two fingers up ${subSlave.slaveName}'s tight ass, which must be so stretched to accommodate them that ${his2} anguish is probably due in part to anal pain.`); t.push(`two fingers up ${subSlave.slaveName}'s tight ass, which must be so stretched to accommodate them that ${his2} anguish is probably due in part to anal pain.`);
} }
} }
t.push(`${slave.slaveName} isn't fucking ${subSlave.slaveName} at all: ${he}'s just`); t.push(`${eventSlave.slaveName} isn't fucking ${subSlave.slaveName} at all: ${he}'s just`);
if (canPenetrate(slave)) { if (canPenetrate(eventSlave)) {
t.push(`holding ${his} penis stationary`); t.push(`holding ${his} penis stationary`);
} else { } else {
t.push(`holding ${his} fingers`); t.push(`holding ${his} fingers`);
} }
t.push(`up ${subSlave.slaveName}'s rear hole. ${His2} buttocks has been severely spanked, so some of ${his2} unhappiness probably comes from being forced to eat sheets and let ${slave.slaveName} play with ${his2} ass. But then you notice that ${slave.slaveName} is`); t.push(`up ${subSlave.slaveName}'s rear hole. ${His2} buttocks has been severely spanked, so some of ${his2} unhappiness probably comes from being forced to eat sheets and let ${eventSlave.slaveName} play with ${his2} ass. But then you notice that ${eventSlave.slaveName} is`);
if (canPenetrate(slave)) { if (canPenetrate(eventSlave)) {
t.push(`reaching around`); t.push(`reaching around`);
} else { } else {
t.push(`using ${his} other hand to reach around`); t.push(`using ${his} other hand to reach around`);
...@@ -121,15 +117,17 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -121,15 +117,17 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
} else { } else {
t.push(`manually stimulating ${subSlave.slaveName}`); t.push(`manually stimulating ${subSlave.slaveName}`);
} }
if (slave.skill.oral >= 60) { if (eventSlave.skill.oral >= 60) {
t.push(`with all ${his} considerable expertise.`); t.push(`with all ${his} considerable expertise.`);
} else if (slave.skill.oral > 30) { } else if (eventSlave.skill.oral > 30) {
t.push(`with considerable skill.`); t.push(`with considerable skill.`);
} else { } else {
t.push(`with every appearance of effort.`); t.push(`with every appearance of effort.`);
} }
t.push(`You're not sure what's going on here.`); t.push(`You're not sure what's going on here.`);
seX(subSlave, "anal", eventSlave, "penetrative");
App.Events.addParagraph(node, t); App.Events.addParagraph(node, t);
App.Events.addResponses(node, [ App.Events.addResponses(node, [
new App.Events.Result("Just watch", watch), new App.Events.Result("Just watch", watch),
...@@ -141,16 +139,16 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -141,16 +139,16 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
const frag = document.createDocumentFragment(); const frag = document.createDocumentFragment();
t = []; t = [];
t.push(`You settle down to watch what happens. ${slave.slaveName}, who has a devoted slave's sixth sense about ${his} ${getWrittenTitle(slave)}'s presence, realizes you're there and turns toward you.`); t.push(`You settle down to watch what happens. ${eventSlave.slaveName}, who has a devoted slave's sixth sense about ${his} ${getWrittenTitle(eventSlave)}'s presence, realizes you're there and turns toward you.`);
if (canSee(slave)) { if (canSee(eventSlave)) {
t.push(`You've already got a reassuring, silent hand raised, and you gesture that ${he} should continue.`); t.push(`You've already got a reassuring, silent hand raised, and you gesture that ${he} should continue.`);
} else if (canHear(slave)) { } else if (canHear(eventSlave)) {
t.push(`Not hearing any comments, ${he} takes it as a gesture to continue.`); t.push(`Not hearing any comments, ${he} takes it as a gesture to continue.`);
} else { } else {
t.push(`Not sensing your touch, ${he} eventually decides to continue.`); t.push(`Not sensing your touch, ${he} eventually decides to continue.`);
} }
t.push(`${He} smiles naughtily at you, <span class="mediumaquamarine">pleased with your trust in ${him},</span> before going back to ${subSlave.slaveName}. ${He}`); t.push(`${He} smiles naughtily at you, <span class="trust inc">pleased with your trust in ${him},</span> before going back to ${subSlave.slaveName}. ${He}`);
if (canPenetrate(slave)) { if (canPenetrate(eventSlave)) {
t.push(`hauls ${subSlave.slaveName}'s`); t.push(`hauls ${subSlave.slaveName}'s`);
if (subSlave.belly >= 5000) { if (subSlave.belly >= 5000) {
t.push(`gravid`); t.push(`gravid`);
...@@ -160,17 +158,23 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -160,17 +158,23 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
t.push(`bends over the poor ${girl2}`); t.push(`bends over the poor ${girl2}`);
} }
t.push(`so ${he} can speak directly into ${his2} ear, and ${say}s quietly,`); t.push(`so ${he} can speak directly into ${his2} ear, and ${say}s quietly,`);
t.push(Spoken(slave, `"You're starting to enjoy this, aren't you, bitch?"`)); t.push(Spoken(eventSlave, `"You're starting to enjoy this, aren't you, bitch?"`));
t.push(`${subSlave.slaveName}, still unaware you're there, shakes ${his2} head unhappily, tears starting to leak out the corners of ${his2} eyes.`); t.push(`${subSlave.slaveName}, still unaware you're there, shakes ${his2} head unhappily, tears starting to leak out the corners of ${his2} eyes.`);
App.Events.addParagraph(frag, t); App.Events.addParagraph(frag, t);
t = []; t = [];
t.push(`"N-no," ${he2} gasps.`); t.push(`"N-no," ${he2} gasps.`);
t.push(Spoken(subSlave, `"I'm not! Please t-take ${canPenetrate(slave) ? `it` : `them`} out!"`)); t.push(Spoken(subSlave, `"I'm not! Please t-take ${canPenetrate(eventSlave) ? `it` : `them`} out!"`));
t.push(`${slave.slaveName} makes no verbal reply, but continues ${his} manual stimulation, and sticks ${his} tongue into ${subSlave.slaveName}'s ear. The poor ${girl2} lets out a startled yelp that trails off into a moan as ${slave.slaveName}'s`); t.push(`${eventSlave.slaveName} makes no verbal reply, but continues ${his} manual stimulation, and`);
if (slave.skill.oral >= 60) { if (subSlave.earShape !== "none" && subSlave.earT !== "none") {
t.push(`sticks ${his} tongue into ${subSlave.slaveName}'s ear.`);
} else {
t.push(`runs ${his} tongue along ${subSlave.slaveName}'s ear hole.`);
}
t.push(`The poor ${girl2} lets out a startled yelp that trails off into a moan as ${eventSlave.slaveName}'s`);
if (eventSlave.skill.oral >= 60) {
t.push(`excellent`); t.push(`excellent`);
} else if (slave.skill.oral > 1) { } else if (eventSlave.skill.oral > 1) {
t.push(`skillful`); t.push(`skillful`);
} else { } else {
t.push(`enthusiastic`); t.push(`enthusiastic`);
...@@ -179,10 +183,10 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -179,10 +183,10 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
App.Events.addParagraph(frag, t); App.Events.addParagraph(frag, t);
t = []; t = [];
t.push(`${slave.slaveName} laughs unpleasantly at the desperately uncomfortable slave, and ${say}s,`); t.push(`${eventSlave.slaveName} laughs unpleasantly at the desperately uncomfortable eventSlave, and ${say}s,`);
t.push(Spoken(slave, `"Tell you what, slut. I'll leave you alone if this doesn't get you off."`)); t.push(Spoken(eventSlave, `"Tell you what, slut. I'll leave you alone if this doesn't get you off."`));
t.push(`Already realizing ${his2} predicament, ${subSlave.slaveName} begins to protest, but ${slave.slaveName} cuts ${him2} off.`); t.push(`Already realizing ${his2} predicament, ${subSlave.slaveName} begins to protest, but ${eventSlave.slaveName} cuts ${him2} off.`);
t.push(Spoken(slave, `"Shut your fucking cockholster, bitch, I'm talking. I'll leave you alone if this doesn't get you off, but if you come, you've obviously been lying to me, and you obviously want me to buttfuck you all night long."`)); t.push(Spoken(eventSlave, `"Shut your fucking cockholster, bitch, I'm talking. I'll leave you alone if this doesn't get you off, but if you come, you've obviously been lying to me, and you obviously want me to buttfuck you all night long."`));
t.push(`${subSlave.slaveName} tries very hard, taking a huge breath of air and holding it in, biting ${his2} lip, shutting ${his2} eyes tight, and more, but it's all for naught. Before long, ${he2} stiffens`); t.push(`${subSlave.slaveName} tries very hard, taking a huge breath of air and holding it in, biting ${his2} lip, shutting ${his2} eyes tight, and more, but it's all for naught. Before long, ${he2} stiffens`);
if (subSlave.balls > 0 || subSlave.prostate > 0) { if (subSlave.balls > 0 || subSlave.prostate > 0) {
t.push(`and makes a mess on the bedroll,`); t.push(`and makes a mess on the bedroll,`);
...@@ -190,25 +194,21 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -190,25 +194,21 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
t.push(`with orgasm,`); t.push(`with orgasm,`);
} }
t.push(`moaning as ${his2} anal sphincter tightens against the invading`); t.push(`moaning as ${his2} anal sphincter tightens against the invading`);
if (canPenetrate(slave)) { if (canPenetrate(eventSlave)) {
t.push(`cock.`); t.push(`cock.`);
} else { } else {
t.push(`fingers.`); t.push(`fingers.`);
} }
t.push(`Once the climax leaves ${him2}, ${he2} begins to sob, knowing what this means. ${slave.slaveName} takes ${his2} hand away from the crying ${girl2}'s crotch and begins to massage ${his2} back with surprising tenderness.`); t.push(`Once the climax leaves ${him2}, ${he2} begins to sob, knowing what this means. ${eventSlave.slaveName} takes ${his2} hand away from the crying ${girl2}'s crotch and begins to massage ${his2} back with surprising tenderness.`);
t.push(Spoken(slave, `"Shh, sweetie, it's all right. I promise you'll enjoy this, if you let yourself."`)); t.push(Spoken(eventSlave, `"Shh, sweetie, it's all right. I promise you'll enjoy this, if you let yourself."`));
t.push(`You leave quietly, letting ${slave.slaveName} have ${his} fun. As the week goes on, ${subSlave.slaveName}'s <span class="lightcoral">attitude towards anal sex</span> improves quickly, though ${he2} feels rather conflicted about ${slave.slaveName} for forcing this on ${him2}.`); t.push(`You leave quietly, letting ${eventSlave.slaveName} have ${his} fun. As the week goes on, ${subSlave.slaveName}'s <span class="fetish gain">attitude towards anal sex</span> improves quickly, though ${he2} feels rather conflicted about ${eventSlave.slaveName} for forcing this on ${him2}.`);
slave.trust += 4; eventSlave.trust += 4;
if (canPenetrate(slave)) { seX(subSlave, "anal", eventSlave, "penetrative", 4);
seX(subSlave, "anal", slave, "penetrative", 4);
} else {
actX(subSlave, "anal");
}
subSlave.fetish = "buttslut"; subSlave.fetish = "buttslut";
subSlave.fetishKnown = 1; subSlave.fetishKnown = 1;
subSlave.fetishStrength = 65; subSlave.fetishStrength = 65;
if (canPenetrate(slave) && canImpreg(subSlave, slave)) { if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) {
t.push(knockMeUp(subSlave, 20, 1, slave.ID, true)); t.push(knockMeUp(subSlave, 20, 1, eventSlave.ID, true));
} }
App.Events.addParagraph(frag, t); App.Events.addParagraph(frag, t);
return frag; return frag;
...@@ -217,19 +217,19 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -217,19 +217,19 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
function join() { function join() {
t= []; t= [];
t.push(`You advance on the slaves. ${slave.slaveName}, who has a devoted slave's sixth sense about ${his} ${getWrittenTitle(slave)}'s presence, realizes you're there and turns toward you.`); t.push(`You advance on the slaves. ${eventSlave.slaveName}, who has a devoted eventSlave's sixth sense about ${his} ${getWrittenTitle(eventSlave)}'s presence, realizes you're there and turns toward you.`);
if (canSee(slave)) { if (canSee(eventSlave)) {
t.push(`Silently but forcefully, you use a simple hand gesture to instruct ${him} unequivocally`); t.push(`Silently but forcefully, you use a simple hand gesture to instruct ${him} unequivocally`);
} else { } else {
t.push(`${He} can feel`); t.push(`${He} can feel`);
} }
t.push(`that ${he}'s to stop fucking around and pound the bitch's butt. ${He} looks a little taken aback, but obeys instantly,`); t.push(`that ${he}'s to stop fucking around and pound the bitch's butt. ${He} looks a little taken aback, but obeys instantly,`);
if (canPenetrate(slave)) { if (canPenetrate(eventSlave)) {
t.push(`pumping ${his} dick in and out of ${subSlave.slaveName}`); t.push(`pumping ${his} dick in and out of ${subSlave.slaveName}`);
} else { } else {
t.push(`fingerfucking ${subSlave.slaveName}'s ass`); t.push(`fingerfucking ${subSlave.slaveName}'s ass`);
} }
t.push(`without mercy. The slave screams at the sudden change of pace, thrashing a little. ${His2} struggles bring`); t.push(`without mercy. The eventSlave screams at the sudden change of pace, thrashing a little. ${His2} struggles bring`);
if (canSee(subSlave)) { if (canSee(subSlave)) {
t.push(`${his2} head around, and ${he2}'s surprised to come face to face with your ankles. With dawning comprehension, ${his2} eyes track rapidly up your`); t.push(`${his2} head around, and ${he2}'s surprised to come face to face with your ankles. With dawning comprehension, ${his2} eyes track rapidly up your`);
if (V.arcologies[0].FSPhysicalIdealist !== "unset") { if (V.arcologies[0].FSPhysicalIdealist !== "unset") {
...@@ -302,7 +302,7 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -302,7 +302,7 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
} else { } else {
t.push(`a pleased chuckle out of you. With dawning comprehension, ${his2} face rapidly moves to face yours.`); t.push(`a pleased chuckle out of you. With dawning comprehension, ${his2} face rapidly moves to face yours.`);
} }
t.push(`${He2} wilts. ${slave.slaveName} thinks this is hilarious, and laughs so hard at the slave's reaction to your appearance that ${he} almost loses hold of ${subSlave.slaveName}'s `); t.push(`${He2} wilts. ${eventSlave.slaveName} thinks this is hilarious, and laughs so hard at the eventSlave's reaction to your appearance that ${he} almost loses hold of ${subSlave.slaveName}'s `);
if (subSlave.dick > 0) { if (subSlave.dick > 0) {
t.push(`cock.`); t.push(`cock.`);
} else if (subSlave.clit > 0) { } else if (subSlave.clit > 0) {
...@@ -316,18 +316,14 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven ...@@ -316,18 +316,14 @@ App.Events.RETSIfYouEnjoyIt = class RETSIfYouEnjoyIt extends App.Events.BaseEven
} else { } else {
t.push(`pull ${subSlave.slaveName}'s mouth against your cunt.`); t.push(`pull ${subSlave.slaveName}'s mouth against your cunt.`);
} }
t.push(`${slave.slaveName} is still giggling, but leans over the unhappy slave speared between the two of you to <span class="hotpink">plant a kiss</span> on you. ${He} misses, smearing ${his} kiss along your cheek and past your ear, but you take ${his} face in your hands and kiss ${him} properly as ${subSlave.slaveName} begins to do ${his2} best to relax and get you off, <span class="gold">fearful</span> that worse is in store if ${he2} doesn't <span class="hotpink">submit.</span>`); t.push(`${eventSlave.slaveName} is still giggling, but leans over the unhappy eventSlave speared between the two of you to <span class="devotion inc">plant a kiss</span> on you. ${He} misses, smearing ${his} kiss along your cheek and past your ear, but you take ${his} face in your hands and kiss ${him} properly as ${subSlave.slaveName} begins to do ${his2} best to relax and get you off, <span class="trust dec">fearful</span> that worse is in store if ${he2} doesn't <span class="devotion inc">submit.</span>`);
slave.devotion += 4; eventSlave.devotion += 4;
if (canPenetrate(slave)) { seX(subSlave, "anal", eventSlave, "penetrative");
seX(subSlave, "anal", slave, "penetrative");
} else {
actX(subSlave, "anal");
}
seX(subSlave, "oral", V.PC, "penetrative"); seX(subSlave, "oral", V.PC, "penetrative");
subSlave.trust -= 4; subSlave.trust -= 4;
subSlave.devotion += 4; subSlave.devotion += 4;
if (canPenetrate(slave) && canImpreg(subSlave, slave)) { if (canPenetrate(eventSlave) && canImpreg(subSlave, eventSlave)) {
t.push(knockMeUp(subSlave, 20, 1, slave.ID, true)); t.push(knockMeUp(subSlave, 20, 1, eventSlave.ID, true));
} }
return t; return t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment