瀏覽代碼

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

tags/v1.1.1
Fen Dweller 5 年之前
父節點
當前提交
8c002d14d5
共有 1 個檔案被更改,包括 15 行新增2 行删除
  1. +15
    -2
      recursive-desc.js

+ 15
- 2
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 <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.";


Loading…
取消
儲存