From dd4fced96276621ce1921b7c247b590b66bc2310 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 16 Apr 2018 08:54:29 -0400 Subject: [PATCH] Press F to whack off --- objects.js | 7 +++++++ vore.js | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/objects.js b/objects.js index e4d28cf..3ca361d 100644 --- a/objects.js +++ b/objects.js @@ -108,6 +108,13 @@ function Bed() { updateDisplay(); } }); + this.actions.push({ + "name": "Whack off", + "action": function() { + player.arousal = 100; + advanceTime(240); + } + }); } function Journal() { diff --git a/vore.js b/vore.js index 991459c..ca88a0f 100644 --- a/vore.js +++ b/vore.js @@ -172,7 +172,7 @@ function Player(name = "Player") { this.parts = {}; this.arousal = 0; - this.arousalRate = 100 / 86400 * 4; + this.arousalRate = 100 / 86400 * 2; this.arousalLimit = function() { return 100 * Math.sqrt(this.con / 15);