瀏覽代碼

Changed cum/femcum to have a base volume

tags/v1.0.0
Fen Dweller 6 年之前
父節點
當前提交
f846494ae8
共有 2 個檔案被更改,包括 9 行新增5 行删除
  1. +4
    -3
      features.js
  2. +5
    -2
      game.js

+ 4
- 3
features.js 查看文件

@@ -924,9 +924,10 @@ options = [
},
{
"name": "Orgasm size",
"id": "baseCumRatio",
"id": "baseCumVolume",
"type": "float",
"default": "1",
"default": "0.1",
"unit": "volume"
},
{
"name": "Passive cum production",
@@ -1017,7 +1018,7 @@ options = [
},
{
"name": "Orgasm size",
"id": "baseFemcumRatio",
"id": "baseFemcumVolume",
"type": "float",
"default": "1",
},


+ 5
- 2
game.js 查看文件

@@ -365,7 +365,8 @@ let macro =
},

get cumVolume() {
return this.dickGirth * this.baseCumRatio * (1 + this.edge) + Math.max(0,this.cumStorage.amount - this.cumStorage.limit);
let vol = this.scaling(this.baseCumVolume, this.scale, 3);
return this.scaling(vol, this.dickScale, 2);
},

get vaginaLength() { return this.scaling(this.baseVaginaLength * this.vaginaScale, this.scale, 1); },
@@ -373,8 +374,10 @@ let macro =
get vaginaArea() { return this.vaginaLength * this.vaginaWidth; },
get vaginaStretchArea() { return this.vaginaStretchiness * this.vaginaStretchiness * this.vaginaLength * this.vaginaWidth; },
get vaginaVolume() { return this.vaginaArea * this.vaginaWidth; },

get femcumVolume() {
return this.vaginaArea * this.baseFemcumRatio * (1 + this.edge) + Math.max(0,this.femcumStorage.amount - this.femcumStorage.limit);
let vol = this.scaling(this.baseFemcumVolume, this.scale, 3);
return this.scaling(vol, this.vaginaScale, 2);
},

get lactationVolume() {


Loading…
取消
儲存