Difference between revisions of "Girl-Cum"

From Trials in Tainted Space Wiki
Jump to navigation Jump to search
m
 
(5 intermediate revisions by 2 users not shown)
Line 47: Line 47:
 
* [[Cerespirin]]
 
* [[Cerespirin]]
 
|align="left"|  
 
|align="left"|  
 +
* Available in multiple flavors:
 +
**Apple
 +
**Pear
 +
**Citrus
 
|-
 
|-
 
|align="left"| Sugar glaze
 
|align="left"| Sugar glaze
Line 54: Line 58:
 
|}
 
|}
 
=== Girl-Cum Quantity ===
 
=== Girl-Cum Quantity ===
 
+
----
 +
''Note: Girl cum quantity is always rounded to the nearest multiple of 10
 
{|class="wikitable bordered" border="1" cellpadding="2" style="text-align:left"
 
{|class="wikitable bordered" border="1" cellpadding="2" style="text-align:left"
|+  Raw Quantity (All Vaginas)
+
|+  Raw Quantity
 
! class="unsortable" width="200px"| Variable
 
! class="unsortable" width="200px"| Variable
 
! class="unsortable" width="200px"| Condition
 
! class="unsortable" width="200px"| Condition
Line 69: Line 74:
 
| [[#Girl-Cum Multiplier|Girl-Cum Multiplier]] + Total [[Vagina#wetness|Wetness]] of all vaginas
 
| [[#Girl-Cum Multiplier|Girl-Cum Multiplier]] + Total [[Vagina#wetness|Wetness]] of all vaginas
 
|-
 
|-
 +
| One vagina
 +
| [[#Girl-Cum Multiplier|Girl-Cum Multiplier]] + Total [[Vagina#wetness|Wetness]] of select vagina
 +
|-
 +
|rowspan=2| <b>Base Girl-Cum</b>
 +
| All vaginas
 +
| 5 * [[vagina]] count
 +
|-
 +
| One vagina
 +
| 5
 +
|-
 +
|rowspan=2| <b>Squirter Bonus</b>
 +
| All vaginas
 +
| 10 * Total [[Vagina#wetness|Wetness]] of all vaginas that can squirt*
 +
|-
 +
| One vagina
 +
| If select vagina can squirt* 10 Else 0
 +
|-
 +
|rowspan=2| <b>Raw Quantity</b>
 
|
 
|
|
+
| '''Temp Girl-Cum Multiplier''' * '''Lust Coefficient''' * ('''Base Girl-Cum''' + '''Squirter Bonus''')
 
|-
 
|-
 
|}
 
|}
  
public function girlCumQ(arg: int = -1):Number
+
{|class="wikitable bordered" border="1" cellpadding="2" style="text-align:center"
{
+
|+ Additional modifiers
if (hasPerk("Fixed GirlCumQ")) return perkv1("Fixed GirlCumQ");
+
! class="unsortable" width="200px"| Condition
if (vaginas.length <= 0) return 0;
+
! class="unsortable" width="500px"| Change
var quantity: Number = 0;
+
|-
// lust - 50% = normal output. 0 = 75%. 100 = +125% output.
+
|align=left| In Heat
var lustCoefficient: Number = ((lust() / 2) + 75) / 100;
+
| Raw Quantity * 1.5
var tempGirlCumMultiplier: Number = girlCumMultiplier();
+
|-
var girlCumAmount: Number = 0;
+
|align=left| Wearing the [[Opal Ring]] on any [[vagina]]
var squirterBonus: Number = 0;
+
| (Raw Quantity * 2) + 1000
// For targetting a specific vagina, otherwise it's all inclusive.
+
|-
if (arg < 0)
+
|align="left"| '''"Soak"''' [[Status Effects|Status effect]]
{
+
| Raw Quantity * 2
for (arg = 0; arg < vaginas.length; arg++)
+
|-
{
+
|align=left| '''"[[Perks_by_source_#Treated_Readiness|Treated Readiness]]"''' [[perks|perk]]
tempGirlCumMultiplier += vaginas[arg].wetness();
+
| Raw Quantity * 2
if (isSquirter(arg)) squirterBonus += vaginas[arg].wetness();
+
|-
girlCumAmount++;
+
<!--
}
+
|align=left| '''"[[Perks_by_source_#Treated_Readiness|Treated Readiness]]"'''
}
+
| Raw Quantity * 2
else
+
|-
{
 
tempGirlCumMultiplier += vaginas[0].wetness();
 
if (isSquirter(0)) squirterBonus += vaginas[0].wetness();
 
girlCumAmount++;
 
}
 
// Scale values.
 
girlCumAmount *= 5; // 5 ml produced per vagina
 
squirterBonus *= 10; // extra 10 mL produced per extra squirter bonus
 
// Estimate initial quantity.
 
quantity = tempGirlCumMultiplier * lustCoefficient * (girlCumAmount + squirterBonus);
 
// Heat means wetter orgasms.
 
if(inHeat()) quantity *= 1.5;
 
if(hasPerk("Treated Readiness")) quantity *= 2;
 
if(hasOpalRingVagina())
 
{
 
quantity *= 2;
 
quantity += 1000;
 
}
 
//GOO VENT BONUS!
 
 
if(statusEffectv1("Goo Vent") == 1) quantity += biomassQ(true);
 
if(statusEffectv1("Goo Vent") == 1) quantity += biomassQ(true);
// Round values.
+
-->
quantity = Math.round(quantity / 10) * 10;
+
|}
trace("Girl-cum produced: " + quantity);
+
''* Vaginas that have a [[Vagina#wetness|Wetness]] value of 4 or greater OR are wearing an [[Opal Ring]]
// Default minimum of 1mL
+
 
if (quantity < 1) quantity = 1;
+
=== Temporary Bonus Capacity ===
return quantity;
+
----
 +
 
 +
{|class="wikitable sortable bordered" border="1" cellpadding="2" style="text-align:center"
 +
|+ Decreasing
 +
!width="160px"| Status effect
 +
<!--! class="unsortable" width="270px"| Requirement-->
 +
! class="unsortable" width="220px"| Change
 +
! class="unsortable" width="300px"| Notes
 +
|-
 +
|align="left"| '''"Soak"''' [[Status Effects|Status effect]]
 +
|align="left"|
 +
* Raw Quantity * 2
 +
|align="left"|
 +
* Obtained from [[Dose of Soak]]
 +
|-
 +
|}
  
 
=== Girl-Cum Multiplier ===
 
=== Girl-Cum Multiplier ===
Line 153: Line 172:
 
-->
 
-->
 
==== Boost Girl-Cum ====
 
==== Boost Girl-Cum ====
 
+
----
  
 
{|class="wikitable sortable bordered" border="1" cellpadding="2" style="text-align:center"
 
{|class="wikitable sortable bordered" border="1" cellpadding="2" style="text-align:center"
Line 202: Line 221:
  
 
[[Category:Appearance]]
 
[[Category:Appearance]]
 +
[[Category:Pre-Java Script conversion]]

Latest revision as of 13:24, 7 March 2021

Girl-Cum


Produced and released through the vagina.

Girl-Cum Types
Type Transform Notes
Girl Cum
  • All starter races will start with this type.
Honey
Gabilani Girl Cum
Goo
Nyrea Girl Cum
Hradian Cum
Fruit Girl Cum
  • Available in multiple flavors:
    • Apple
    • Pear
    • Citrus
Sugar glaze

Girl-Cum Quantity


Note: Girl cum quantity is always rounded to the nearest multiple of 10

Raw Quantity
Variable Condition Default Equation
Lust Coefficient (Lust / 2 + 75) / 100
Temp Girl-Cum Multiplier All vaginas Girl-Cum Multiplier + Total Wetness of all vaginas
One vagina Girl-Cum Multiplier + Total Wetness of select vagina
Base Girl-Cum All vaginas 5 * vagina count
One vagina 5
Squirter Bonus All vaginas 10 * Total Wetness of all vaginas that can squirt*
One vagina If select vagina can squirt* 10 Else 0
Raw Quantity Temp Girl-Cum Multiplier * Lust Coefficient * (Base Girl-Cum + Squirter Bonus)
Additional modifiers
Condition Change
In Heat Raw Quantity * 1.5
Wearing the Opal Ring on any vagina (Raw Quantity * 2) + 1000
"Soak" Status effect Raw Quantity * 2
"Treated Readiness" perk Raw Quantity * 2

* Vaginas that have a Wetness value of 4 or greater OR are wearing an Opal Ring

Temporary Bonus Capacity


Decreasing
Status effect Change Notes
"Soak" Status effect
  • Raw Quantity * 2

Girl-Cum Multiplier


Boost Girl-Cum


Increasing
Item/Event Requirement Change Notes
Laquine Ears
Slutshroom
  • Boost Girl-Cum by
    • 15 if Girl-Cum Quantity less than 5000 mls or greater than 100000 mls
    • 30 if Girl-Cum Quantity at 5000 mls or more but less than 10000 mls
    • 40 if Girl-Cum Quantity at 10000 mls or more but less than 50000 mls
    • 65 if Girl-Cum Quantity at 10000 mls or more but less than 50000 mls

Repeat the following Boost Cum/2 times

If Girl-Cum Multiplier less than 100

  • Increase Girl-Cum Multiplier by 4

If Girl-Cum Multiplier less than 500

  • Increase Girl-Cum Multiplier by 3

If Girl-Cum Multiplier less than 1000

  • Increase Girl-Cum Multiplier by 2

If Girl-Cum Multiplier less than 5000

  • Increase Girl-Cum Multiplier by 1

If Girl-Cum Multiplier at 5000 or more

  • Increase Girl-Cum Multiplier by 0.5