Переглянути джерело

Press F to whack off

tags/v0.2.8
Fen Dweller 7 роки тому
джерело
коміт
dd4fced962
2 змінених файлів з 8 додано та 1 видалено
  1. +7
    -0
      objects.js
  2. +1
    -1
      vore.js

+ 7
- 0
objects.js Переглянути файл

@@ -108,6 +108,13 @@ function Bed() {
updateDisplay(); updateDisplay();
} }
}); });
this.actions.push({
"name": "Whack off",
"action": function() {
player.arousal = 100;
advanceTime(240);
}
});
} }


function Journal() { function Journal() {


+ 1
- 1
vore.js Переглянути файл

@@ -172,7 +172,7 @@ function Player(name = "Player") {
this.parts = {}; this.parts = {};


this.arousal = 0; this.arousal = 0;
this.arousalRate = 100 / 86400 * 4;
this.arousalRate = 100 / 86400 * 2;


this.arousalLimit = function() { this.arousalLimit = function() {
return 100 * Math.sqrt(this.con / 15); return 100 * Math.sqrt(this.con / 15);


Завантаження…
Відмінити
Зберегти