瀏覽代碼

Add more elaborate breast vore

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

+ 27
- 1
recursive-desc.js 查看文件

@@ -418,10 +418,36 @@ function defaultBreastCrush(container, macro, verbose, flat) {
}

function defaultBreastVore(container, macro, verbose, flat) {
let prey = new Container();
macro.breasts.contents.forEach(function(x) {
prey = prey.merge(x);
});

if (container.count == 0)
return "It'd be pretty hot to stick someone in your breasts. Shame you can't right now.";
else
return "Your nipples envelop " + container.describe(verbose) + ", pulling them into your breasts. ";
return pickString([
"Your breasts squish against",
container.describe(verbose),
"as",
(container.count > 1 ? "they're" : "it's"),
"forced right into your nipples! They stretch and",
pickString("envelop", "consume", "suck in"),
"your prey,",
pickStringChance(0.5, "swiftly", "easily"),
"burying them in those warm,",
(macro.lactationEnabled ? "milky" : "heavy"),
"mounds."
], [
capitalize(container.describe(verbose)),
(container.count > 1 ? "are" : "is"),
pickStringChance(0.35, "abruptly", "swiftly"),
pickString("stuffed", "slipped"),
"into your breasts",
(container.count > 1 ? "their" : "its"),
"form lost within your bosom.",
(prey.count > 0 ? (prey.count > 1 ? "The " + prey.describe(false) : capitalize(prey.describe(true))) + " within " + (prey.count > 1 ? "slosh" : "sloshes") + " about as " + (prey.count > 1 ? "they're" : "it's") + " joined by fresh prey." : "")
]).filter(Boolean).join(" ")
}




Loading…
取消
儲存