소스 검색

Add some variety to the default eat description

tags/v1.1.1
Fen Dweller 5 년 전
부모
커밋
564e9df76a
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. +9
    -1
      recursive-desc.js

+ 9
- 1
recursive-desc.js 파일 보기

@@ -154,7 +154,15 @@ function defaultEat(container, macro, verbose, flat) {
if (container.count == 0)
return "You reach down for a delicious treat and grab - oh, nothing.";
else
return "You scoop up " + container.describe(verbose) + " and swallow " + (container.count > 1 ? "them" : "it") + " whole.";
return [
"You",
pickString("snatch up", "grab", "pluck up", "seize", "catch"),
container.describe(verbose) + ",",
"then",
pickString("swallow", "devour", "consume"),
(container.count > 1 ? "them" : "it"),
"whole."
].join(" ");
}

function defaultChew(container, macro, verbose, flat) {


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