소스 검색

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;


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