Przeglądaj źródła

Add a slight constant factor to digestion

mass-vore
Fen Dweller 6 lat temu
rodzic
commit
0efcfc3438
1 zmienionych plików z 3 dodań i 1 usunięć
  1. +3
    -1
      stories/mass-vore.js

+ 3
- 1
stories/mass-vore.js Wyświetl plik

@@ -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;


Ładowanie…
Anuluj
Zapisz