Explorar el Código

Add a slight constant factor to digestion

mass-vore
Fen Dweller hace 6 años
padre
commit
0efcfc3438
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      stories/mass-vore.js

+ 3
- 1
stories/mass-vore.js Ver fichero

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


Cargando…
Cancelar
Guardar