浏览代码

Storage multiplier no longer affects fill rate

tags/v0.7.0
Fen Dweller 7 年前
父节点
当前提交
a9b28c4c26
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. +6
    -6
      game.js

+ 6
- 6
game.js 查看文件

@@ -918,7 +918,7 @@ let macro =
"femaleParts": true, "femaleParts": true,


"fillCum": function(self) { "fillCum": function(self) {
self.cumStorage.amount += self.cumScale * self.cumStorage.limit / 1200;
self.cumStorage.amount += self.cumScale * self.cumStorage.limit / self.cumStorageScale / 1200;
if (self.cumStorage.amount > self.cumStorage.limit) if (self.cumStorage.amount > self.cumStorage.limit)
self.arouse(1 * (self.cumStorage.amount / self.cumStorage.limit - 1)); self.arouse(1 * (self.cumStorage.amount / self.cumStorage.limit - 1));
setTimeout(function () { self.fillCum(self); }, 100); setTimeout(function () { self.fillCum(self); }, 100);
@@ -926,7 +926,7 @@ let macro =
}, },


"fillFemcum": function(self) { "fillFemcum": function(self) {
self.femcumStorage.amount += self.femcumScale * self.femcumStorage.limit / 1200;
self.femcumStorage.amount += self.femcumScale * self.femcumStorage.limit / self.femcumStorageScale / 1200;
if (self.femcumStorage.amount > self.femcumStorage.limit) if (self.femcumStorage.amount > self.femcumStorage.limit)
self.arouse(1 * (self.femcumStorage.amount / self.femcumStorage.limit - 1)); self.arouse(1 * (self.femcumStorage.amount / self.femcumStorage.limit - 1));
setTimeout(function () { self.fillFemcum(self); }, 100); setTimeout(function () { self.fillFemcum(self); }, 100);
@@ -937,7 +937,7 @@ let macro =
if (self.milkStorage.amount > self.milkStorage.limit) { if (self.milkStorage.amount > self.milkStorage.limit) {
breast_milk(self.milkStorage.amount - self.milkStorage.limit); breast_milk(self.milkStorage.amount - self.milkStorage.limit);
} }
self.milkStorage.amount += self.lactationScale * self.milkStorage.limit / 1200;
self.milkStorage.amount += self.lactationScale * self.milkStorage.limit / self.milkStorageScale / 1200;


if (self.milkStorage.amount > self.milkStorage.limit) { if (self.milkStorage.amount > self.milkStorage.limit) {
self.milkStorage.amount = self.milkStorage.limit; self.milkStorage.amount = self.milkStorage.limit;
@@ -947,7 +947,7 @@ let macro =
}, },


"fillGas": function(self) { "fillGas": function(self) {
self.gasStorage.amount += self.gasScale * self.gasStorage.limit / 3600;
self.gasStorage.amount += self.gasScale * self.gasStorage.limit / self.gasStorageScale / 3600;


let ratio = self.gasStorage.amount / self.gasStorage.limit; let ratio = self.gasStorage.amount / self.gasStorage.limit;


@@ -985,7 +985,7 @@ let macro =
}, },


"fillPiss": function(self) { "fillPiss": function(self) {
self.pissStorage.amount += self.pissScale * self.pissStorage.limit / 1200;
self.pissStorage.amount += self.pissScale * self.pissStorage.limit / self.pissStorageScale / 1200;
if (self.pissStorage.amount > self.pissStorage.limit * 2) if (self.pissStorage.amount > self.pissStorage.limit * 2)
piss(self.pissStorage.amount); piss(self.pissStorage.amount);
setTimeout(function () { self.fillPiss(self); }, 100); setTimeout(function () { self.fillPiss(self); }, 100);
@@ -993,7 +993,7 @@ let macro =
}, },


"fillScat": function(self) { "fillScat": function(self) {
self.scatStorage.amount += self.scatScale * self.scatStorage.limit / 100;
self.scatStorage.amount += self.scatScale * self.scatStorage.limit / self.scatStorageScale / 100;
if (self.scatStorage.amount > self.scatStorage.limit * 2) if (self.scatStorage.amount > self.scatStorage.limit * 2)
scat(self.scatStorage.amount); scat(self.scatStorage.amount);
setTimeout(function () { self.fillScat(self); }, 100); setTimeout(function () { self.fillScat(self); }, 100);


正在加载...
取消
保存