Pārlūkot izejas kodu

Add a slight constant factor to digestion

mass-vore
Fen Dweller pirms 6 gadiem
vecāks
revīzija
0efcfc3438
1 mainītis faili ar 3 papildinājumiem un 1 dzēšanām
  1. +3
    -1
      stories/mass-vore.js

+ 3
- 1
stories/mass-vore.js Parādīt failu

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


Notiek ielāde…
Atcelt
Saglabāt