소스 검색

Add more elaborate breast crush

tags/v1.1.2
Fen Dweller 6 년 전
부모
커밋
15d3f9fe1d
1개의 변경된 파일11개의 추가작업 그리고 3개의 파일을 삭제
  1. +11
    -3
      recursive-desc.js

+ 11
- 3
recursive-desc.js 파일 보기

@@ -410,11 +410,19 @@ function defaultCleavageAbsorb(container, macro, verbose, flat) {

function defaultBreastCrush(container, macro, verbose, flat) {
if (container.count == 0)
return "Your thump your breasts against the ground.";
return "Your let your breasts thump against the ground.";
else if (isFatal(macro))
return "Your heavy breasts obliterate " + container.describe(verbose) + ". ";
return [
"You let your breasts drop,",
pickString("crushing", "smashing", "burying", "smothering"),
container.describe(verbose),
"beneath those",
length(macro.breastDiameter, unit, true) + "-wide",
pickString("knockers", "tits", "boobs") + ".",
pickStringChance(0.5, (macro.lactationEnabled ? "A spray of milk spurts from your nipples." : ""))
].filter(Boolean).join(" ");
else
return "You smoosh " + container.describe(verbose) + " with your breasts.";
return "You smoosh " + container.describe(verbose) + " beneath your breasts.";
}

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


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