浏览代码

Fixed instant digestion, invisible feet, flexible hooves

tags/v0.7.0
Fen Dweller 7 年前
父节点
当前提交
28d9a192c7
共有 2 个文件被更改,包括 12 次插入6 次删除
  1. +10
    -4
      game.js
  2. +2
    -2
      stroll.html

+ 10
- 4
game.js 查看文件

@@ -100,7 +100,7 @@ let macro =
case "hoof":
result = plural ? "hooves" : "hoof";
break;
case "feet":
case "foot":
case "avian":
result = plural ? "feet" : "foot";
break;
@@ -167,7 +167,7 @@ let macro =
case "hoof":
result = plural ? "toes" : "toe";
break;
case "feet":
case "foot":
result = plural ? "toes" : "toe";
break;
case "avian":
@@ -411,7 +411,7 @@ let macro =
},

"digest": function(owner,organ) {
setTimeout(function() { owner.digest(owner,organ); }, 100);
setTimeout(function() { owner.digest(owner,organ); }, 5000);

let count = Math.min(organ.contents.length, organ.maxDigest);

@@ -1674,6 +1674,9 @@ function stomp()
}

function stomp_wedge() {
if (macro.footType == "hoof")
return;
let area = 0;

if (!macro.footWear || (!macro.footSockWorn && !macro.footShoeWorn))
@@ -3531,7 +3534,10 @@ function startGame(e) {
enable_panel("body");
enable_button("feed");
enable_button("stomp");
enable_button("flex_toes");

if (macro.footType != "hoof")
enable_button("flex_toes");

enable_button("sit");
enable_button("grind");



+ 2
- 2
stroll.html 查看文件

@@ -89,7 +89,7 @@
</div>
<div id="log-area">
<div id="log">
<div>Welcome to Stroll 0.5.23</div>
<div>Welcome to Stroll 0.5.24</div>
<div><b>This game features 18+ content</b></div>
<div>It's a nice day for a walk</div>
<div>&nbsp;</div>
@@ -182,7 +182,7 @@
</div>
</div>
<div class="character-build">
<p>Welcome to Stroll 0.5.22</p>
<p>Welcome to Stroll 0.5.24</p>
<p><b>This game features 18+ content</b></p>
<p><a href="https://chemicalcrux.org/stroll">Changelog</a></p>
<p><a href="https://t.me/joinchat/BSXHzUZmSqc-CXB1khkuYw">Telegram discussion group</a></p>


正在加载...
取消
保存