浏览代码

Add a slight constant factor to digestion

mass-vore
Fen Dweller 6 年前
父节点
当前提交
0efcfc3438
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      stories/mass-vore.js

+ 3
- 1
stories/mass-vore.js 查看文件

@@ -6,9 +6,11 @@

function digest(state, count) {
if (count === undefined) {
count = state.player.stats.stomach.value / 200;
count = state.player.stats.stomach.value / 200 + 2;
}

count = Math.min(state.player.stats.stomach.value, count);

count = Math.floor(count);

state.player.stats.stomach.value -= count;


正在加载...
取消
保存