Browse Source

Add another option for the default av text; tweak tailvore text

tags/v1.1.1
Fen Dweller 5 years ago
parent
commit
8c002d14d5
1 changed files with 15 additions and 2 deletions
  1. +15
    -2
      recursive-desc.js

+ 15
- 2
recursive-desc.js View File

@@ -250,7 +250,20 @@ function defaultAnalVore(container, macro, verbose, flat) {
if (container.count == 0) if (container.count == 0)
return "You're pretty sure you just sat on a rock."; return "You're pretty sure you just sat on a rock.";
else 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 <i>shlrkh</i>."
].join(" ")
);

} }


function defaultAssCrush(container, macro, verbose, flat) { function defaultAssCrush(container, macro, verbose, flat) {
@@ -286,7 +299,7 @@ function defaultTailSlap(container, macro, verbose, flat) {


function defaultTailVore(container, macro, verbose, flat) { function defaultTailVore(container, macro, verbose, flat) {
if (container.count == 0) 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)) else if (isFatal(macro))
return "Your tail lunges, maw agape, at " + container.describe(verbose) + 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."; ". It scarfs down everything in seconds, gulping forcefully to drag your prey into your sloppy confines.";


Loading…
Cancel
Save