From ca02e0544dbca45a6a785f0885a4aec81d0df5a9 Mon Sep 17 00:00:00 2001 From: Anu <anulithic@gmail.com> Date: Fri, 7 Oct 2022 22:46:21 -0700 Subject: [PATCH] Consistently order canTalk/!canTalk --- src/events/RESS/review/firstPeriod.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/events/RESS/review/firstPeriod.js b/src/events/RESS/review/firstPeriod.js index f91c1d12e00..4b72a34ec15 100644 --- a/src/events/RESS/review/firstPeriod.js +++ b/src/events/RESS/review/firstPeriod.js @@ -102,12 +102,12 @@ App.Events.RESSFirstPeriod = class RESSFirstPeriod extends App.Events.BaseEvent restoreChastity = true; } r.push(`You tell ${him} that ${he} is just becoming a woman, and to celebrate, you are going to put a child in ${him}.`); - if (!canTalk(slave)) { - r.push(`${He} gasps and rubs a hand across ${his} stomach.`); - r.push(`You tell ${him} that ${he} has become fertile, and it's now time that ${he} learned what ${his} body was made for.`); - } else { + if (canTalk(slave)) { r.push(Spoken(slave, `"But I'm still a child myself, ${Master}, I can't get pregnant yet!"`)); r.push(`You tell ${him} that prior to this week, that would have been true. However, now that ${he} has become fertile, it's time that ${he} learned what ${his} body was made for.`); + } else { + r.push(`${He} gasps and rubs a hand across ${his} stomach.`); + r.push(`You tell ${him} that ${he} has become fertile, and it's now time that ${he} learned what ${his} body was made for.`); } r.push(`You guide ${him} to the couch and tell ${him} to lie on ${his} back so that you may take ${him}. ${He} breaks down when ${he} feels your cock enter ${his}`); if (slave.vagina === 0) { @@ -159,19 +159,19 @@ App.Events.RESSFirstPeriod = class RESSFirstPeriod extends App.Events.BaseEvent r.push(`In one swift motion, you pull out a chastity belt and lock it onto ${him}. ${He} gasps as ${he} feels it hug close to ${his} pussy.`); } r.push(`You explain that ${he} has just become a woman, and thus, will be taking it up the ass until you decide it's time for ${him} to become pregnant.`); - if (!canTalk(slave)) { - r.push(`${He} rubs a hand across ${his} stomach.`); - } else { + if (canTalk(slave)) { r.push(Spoken(slave, `"You don't want me to get pregnant, ${Master}?"`)); + } else { + r.push(`${He} rubs a hand across ${his} stomach.`); } r.push(`You bring ${him} over to the couch, set ${him} on your lap, and teasingly call ${him} a buttslut. Every so often you graze a finger around ${his} chastity belt, noting how much ${his} body wants you in ${him}, but you only make it the center of attention once the poor over-aroused slave`); - if (!canTalk(slave)) { - r.push(`begins to use piteous gestures to beg you abjectly to penetrate ${him}.`); - } else { + if (canTalk(slave)) { r.push( `${say}s,`, Spoken(slave, `"I can't take it any more, ${Master}! Please fuck me pregnant!"`) ); + } else { + r.push(`begins to use piteous gestures to beg you abjectly to penetrate ${him}.`); } r.push(`You snicker, but remind ${him} that no matter how much ${he} wants to be knocked up, ${his} belt will direct all the dicks ${he} takes into ${his} rear. You line up and insert your`); if (V.PC.dick === 0) { -- GitLab