Quellcode durchsuchen

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

tags/v1.1.1
Fen Dweller vor 5 Jahren
Ursprung
Commit
8c002d14d5
1 geänderte Dateien mit 15 neuen und 2 gelöschten Zeilen
  1. +15
    -2
      recursive-desc.js

+ 15
- 2
recursive-desc.js Datei anzeigen

@@ -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 <i>shlrkh</i>."
].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.";


Laden…
Abbrechen
Speichern