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

Nulls are no longer stuck at max arousal forever

tags/v0.7.0
Fen Dweller 7 роки тому
джерело
коміт
960c39ad89
2 змінених файлів з 15 додано та 2 видалено
  1. +13
    -0
      game.js
  2. +2
    -2
      stroll.html

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

@@ -376,6 +376,9 @@ var macro =
if (this.femaleParts) {
this.femaleOrgasm(this);
}
if (!this.maleParts && !this.femaleParts) {
this.nullOrgasm(this);
}
}
}
},
@@ -456,6 +459,16 @@ var macro =
}
},

"nullOrgasm": function(self) {
if (!this.arousalEnabled)
return;

if (this.orgasm) {
this.quench(10);
setTimeout(function() { self.nullOrgasm(self) }, 2000);
}
},


get description() {
result = [];


+ 2
- 2
stroll.html Переглянути файл

@@ -62,7 +62,7 @@
</div>
<div id=log-area>
<div id=log>
<div>Welcome to Stroll 0.4.3</div>
<div>Welcome to Stroll 0.4.4</div>
<div><b>This game features 18+ content</b></div>
<div><a href="https://chemicalcrux.org/stroll">Changelog</a></div>
<div>It's a nice day for a walk</div>
@@ -94,7 +94,7 @@


<div class=option-container id=option-panel>
<p>Welcome to Stroll 0.4.3</p>
<p>Welcome to Stroll 0.4.4</p>
<p><b>This game features 18+ content</b></p>
<a href="https://chemicalcrux.org/stroll">Changelog</a>
<br>


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