From 55afd66615b0aa80bc74694f113472e4da84cc69 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Tue, 8 Jun 2021 19:08:02 -0400 Subject: [PATCH] cleanup ageDifferenceOldPC.js --- src/events/RESS/ageDifferenceOldPC.js | 10 ++++++++-- src/events/RESS/ageDifferenceYoungPC.js | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/events/RESS/ageDifferenceOldPC.js b/src/events/RESS/ageDifferenceOldPC.js index d21e147173b..871c8c63676 100644 --- a/src/events/RESS/ageDifferenceOldPC.js +++ b/src/events/RESS/ageDifferenceOldPC.js @@ -36,7 +36,13 @@ App.Events.RESSAgeDifferenceOldPC = class RESSAgeDifferenceOldPC extends App.Eve let r = []; r.push(`As another long week draws to a close,`); r.push(App.UI.DOM.combineNodes(contextualIntro(V.PC, eventSlave, "DOM"), ",")); - r.push(`happens to walk past your office toward bed. There's nothing inherently abnormal about ${his} actions, but you do notice as ${he} steps past the doorway that an expression of worry and concern adorns ${his} ${eventSlave.skin} face. When you call ${him} into your office, ${his} face visibly brightens up in an attempt to conceal ${his} obvious distress as ${he} comes before you. Notably, although ${he} stands still and patiently awaits further orders, you notice ${he}`); + r.push(`happens to`); + if (eventSlave.belly >= 10000) { + r.push("waddle"); + } else { + r.push("walk"); + } + r.push(`past your office toward bed. There's nothing inherently abnormal about ${his} actions, but you do notice as ${he} steps past the doorway that an expression of worry and concern adorns ${his} ${eventSlave.skin} face. When you call ${him} into your office, ${his} face visibly brightens up in an attempt to conceal ${his} obvious distress as ${he} comes before you. Notably, although ${he} stands still and patiently awaits further orders, you notice ${he}`); if (canSee(eventSlave)) { r.push(`never manages to meet your eyes.`); } else { @@ -154,7 +160,7 @@ App.Events.RESSAgeDifferenceOldPC = class RESSAgeDifferenceOldPC extends App.Eve r.push(`Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into ${his} ear, nip at ${his} neck,`); if (eventSlave.bellyPreg >= 300000) { r.push(`run your hands across ${his} squirming brood,`); - } else if (eventSlave.preg > eventSlave.pregData.normalBirth/2) { + } else if (eventSlave.preg > eventSlave.pregData.normalBirth / 2) { r.push(`stroke ${his} pregnant belly,`); } else if (eventSlave.belly >= 5000) { r.push(`caress the curve of ${his} ${belly} belly,`); diff --git a/src/events/RESS/ageDifferenceYoungPC.js b/src/events/RESS/ageDifferenceYoungPC.js index d5711d08f83..6c8656ab423 100644 --- a/src/events/RESS/ageDifferenceYoungPC.js +++ b/src/events/RESS/ageDifferenceYoungPC.js @@ -122,7 +122,7 @@ App.Events.RESSAgeDifferenceYoungPC = class RESSAgeDifferenceYoungPC extends App r.push(`tremendously swollen`); } r.push(`older ${woman} onto the sheets before gently mounting ${him}.`); - } else { + } else { // check canLift() here! if (eventSlave.belly >= 5000) { r.push(`carefully`); } @@ -131,7 +131,7 @@ App.Events.RESSAgeDifferenceYoungPC = class RESSAgeDifferenceYoungPC extends App r.push(`Together, the two of you make fiercely intimate love, while you whisper romantic reassurances into ${his} ear, nip at ${his} neck,`); if (eventSlave.bellyPreg >= 300000) { r.push(`run your hands across ${his} squirming brood,`); - } else if (eventSlave.preg > eventSlave.pregData.normalBirth/2) { + } else if (eventSlave.preg > eventSlave.pregData.normalBirth / 2) { r.push(`stroke ${his} pregnant belly,`); } else if (eventSlave.belly >= 5000) { r.push(`caress the curve of ${his} ${belly} belly,`); -- GitLab