From 8c002d14d5f3798efa9edbf1595e42d25caaf412 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 21 Dec 2019 10:20:53 -0500 Subject: [PATCH] Add another option for the default av text; tweak tailvore text --- recursive-desc.js | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/recursive-desc.js b/recursive-desc.js index 6ee7663..67dbbca 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -250,7 +250,20 @@ function defaultAnalVore(container, macro, verbose, flat) { if (container.count == 0) return "You're pretty sure you just sat on a rock."; else - return "You sit yourself down on " + container.describe(false) + ". " + (container.count > 1 ? "They slide" : "It slides") + " inside with ease."; + return pickString([ + "You sit yourself down on", + container.describe(false) + ". ", + (container.count > 1 ? "They slide" : "It slides"), + "inside with ease." + ].join(" "), [ + "You grab", + container.describe(false) + ",", + "shoving", + (container.count > 1 ? "your victims" : "your victim"), + "right up your rear with a muffled shlrkh." + ].join(" ") + ); + } function defaultAssCrush(container, macro, verbose, flat) { @@ -286,7 +299,7 @@ function defaultTailSlap(container, macro, verbose, flat) { function defaultTailVore(container, macro, verbose, flat) { if (container.count == 0) - return "Your drooling tail swings to and fro"; + return "Your drooling tail lashes about, but can't seem to chow down on anyone..."; else if (isFatal(macro)) return "Your tail lunges, maw agape, at " + container.describe(verbose) + ". It scarfs down everything in seconds, gulping forcefully to drag your prey into your sloppy confines.";