Skip to content
Snippets Groups Projects
Commit 8220c4e2 authored by Pregmodder's avatar Pregmodder
Browse files

whiny merger

parent 97ef3709
No related branches found
No related tags found
1 merge request!3272Pregmod dev
......@@ -452,6 +452,9 @@ window.getSlaveCost = function(s) {
cost -= foodCost;
break;
}
if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2) {
cost += foodCost * .5;
}
if(s.weight > 130) {
cost += foodCost * 2;
} else if(s.weight > 50) {
......
......@@ -122,7 +122,22 @@ window.setPregType = function(actor) {
}
ovum = Math.clamp(ovum, 0, 8);
} else if(actor.pregType == 0) {
ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
ovum += jsEither([1, 2, 2, 3]);
fertilityStack++;
fertilityStack++;
fertilityStack++;
fertilityStack++;
} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
ovum += jsEither([0, 1, 1, 2]);
fertilityStack++;
fertilityStack++;
} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
ovum += jsEither([0, 0, 0, 0, 1]);
fertilityStack++;
} else {
ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
}
if(actor.ovaImplant == "fertility") {
ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
fertilityStack++;
......
......@@ -8,7 +8,15 @@
<<setLocalPronouns $Concubine 2>>
<<setAssistantPronouns>>
You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName waiting next to your bed. It's immediately obvious that they both have a minor item of business for you, since nothing was urgent enough to wake you early, and they evidently both came in to catch you at your normal hour of rising. They're kneeling side by side next to the bed<<if $HeadGirl.boobs + $Concubine.boobs > 10000>> (a position that smashes their massive breasts together on one side)<<elseif $HeadGirl.butt + $Concubine.butt > 10>> (a position that smashes their massive asses together on one side)<</if>>, and it's also obvious that they've been filling the few minutes they've been waiting for you to wake up by making out. Their lips are moist, $Concubine.slaveName's $Concubine.skin cheeks are a little flushed, and there's even a little unnoticed strand of saliva running from _his2 mouth to $HeadGirl.slaveName's. They both look at you expectantly, wondering whether to speak up or save their questions for after you take a moment to get ready for your day.
You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName waiting next to your bed. It's immediately obvious that they both have a minor item of business for you, since nothing was urgent enough to wake you early, and they evidently both came in to catch you at your normal hour of rising. They're kneeling side by side next to the
<<if $HeadGirl.boobs + $Concubine.boobs > 10000>>
bed (a position that smashes their massive breasts together on one side),
<<elseif $HeadGirl.butt + $Concubine.butt > 10>>
bed (a position that smashes their massive asses together on one side),
<<else>>
bed,
<</if>>
and it's also obvious that they've been filling the few minutes they've been waiting for you to wake up by making out. Their lips are moist, $Concubine.slaveName's $Concubine.skin cheeks are a little flushed, and there's even a little unnoticed strand of saliva running from _his2 mouth to $HeadGirl.slaveName's. They both look at you expectantly, wondering whether to speak up or save their questions for after you take a moment to get ready for your day.
<br><br>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment