瀏覽代碼

Tails have proper descriptions now.

tags/v0.7.0
Fen Dweller 7 年之前
父節點
當前提交
7957e4d3a2
共有 2 個檔案被更改,包括 10 行新增2 行删除
  1. +9
    -1
      game.js
  2. +1
    -1
      stroll.html

+ 9
- 1
game.js 查看文件

@@ -36,6 +36,7 @@ var macro =

"assScale": 1,

"hasTail": true,
"tailType": "slinky",
"tailCount": 1,
"baseTailLength": 1,
@@ -429,6 +430,13 @@ var macro =
line = "You are " + (macro.name == "" ? "" : macro.name + ", ") + "a " + length(macro.height, unit, true) + " tall " + macro.species + ". You weigh " + mass(macro.mass, unit) + ".";
result.push(line);

if (this.hasTail) {
line = "Your " + macro.describeTail + (macro.tailCount > 1 ? " tails sway as you walk," : "sways as you walk.");
if (this.tailMaw) {
line += (macro.tailCount > 1 ? "Their maws are drooling" : "Its maw is drooling");
}
result.push(line);
}
if (this.arousalEnabled) {
if (this.afterglow) {
result.push("You're basking in the afterglow of a powerful orgasm.");
@@ -1300,7 +1308,7 @@ function tail_vore()
var area = macro.tailGirth * macro.tailCount;
var prey = getPrey(biome, area);
var line = describe("tail-vore", prey, macro, verbose)
var linesummary = summarize(prey.sum(), true);
var linesummary = summarize(prey.sum(), false);

var people = get_living_prey(prey.sum());



+ 1
- 1
stroll.html 查看文件

@@ -60,7 +60,7 @@
</div>
<div id=log-area>
<div id=log>
<div>Welcome to Stroll 0.4.1</div>
<div>Welcome to Stroll 0.4.2</div>
<div><b>This game features 18+ content</b></div>
<div><a href="https://chemicalcrux.org/stroll">Changelog</a></div>
<div>It's a nice day for a walk</div>


Loading…
取消
儲存