From 239d34cc44143817fcf2078abd927ab9aa30bce3 Mon Sep 17 00:00:00 2001 From: Skriv <skrivelese@gmail.com> Date: Sun, 28 Jun 2020 02:13:04 +0200 Subject: [PATCH] touchups 2 --- src/events/RESS/retchingCum.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/events/RESS/retchingCum.js b/src/events/RESS/retchingCum.js index af394bc5f99..c5d0f8b7f57 100644 --- a/src/events/RESS/retchingCum.js +++ b/src/events/RESS/retchingCum.js @@ -28,10 +28,16 @@ App.Events.RESSRetchingCum = class RESSRetchingCum extends App.Events.BaseEvent App.Events.drawEventArt(node, eventSlave, "no clothing"); let t = []; - t.push(`You are inspecting the slave feeding area early in the week, watching your slaves as they come and go to get their required nourishment for the morning. You see`); + t.push(`You are inspecting the slave feeding area early in the week, watching your slaves as they come and go to get their required nourishment for the morning.`); t.push(App.UI.DOM.slaveDescriptionDialog(eventSlave)); - t.push(V.cockFeeder === 1 ? `as ${he} kneels in front of the feeder phallus with a look of disgust on ${his} face` : `as ${he}`); - t.push(canSee(eventSlave) ? `stares into ${his} cup of nutritional fluid with a look of disgust on ${his} face.` : `grimaces at ${his} cup of nutritional fluid.`); + if (V.cockFeeder === 1) { + t.push(`You see as ${he} kneels in front of the feeder`); + t.push(canSee(eventSlave) ? `phallus, staring at it with disgust plainly written on ${his} face.` : `phallus with a look of disgust on ${his} face.`); + } else if (canSee(eventSlave)) { + t.push(`You see ${him} staring into ${his} cup of nutritional fluid with a look of disgust on ${his} face.`); + } else { + t.push(`You see ${him} grimacing at ${his} cup of nutritional fluid.`); + } t.push(`You quickly check your records and ${V.assistant.name} confirms that ${eventSlave.slaveName} is required to ingest`); t.push(eventSlave.dietCum === 2 ? `an extreme diet based almost entirely on human ejaculate.` : `a large amount of human ejaculate as part of ${his} diet.`); App.Events.addParagraph(node, t); -- GitLab