소스 검색

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.";


불러오는 중...
취소
저장