Skip to content
Snippets Groups Projects
Commit 2891a2af authored by Pregmodder's avatar Pregmodder
Browse files

tweak to BC

parent 62af069e
No related branches found
No related tags found
2 merge requests!3002Pregmod v1032 initial merge,!2913Pregmod v0.10.7.1-1.0.0
...@@ -10461,7 +10461,7 @@ window.WombInit = function(actor) { ...@@ -10461,7 +10461,7 @@ window.WombInit = function(actor) {
if (actor.womb.length > 0 && actor.broodmother == 0 && actor.womb[0].genetics == undefined) { if (actor.womb.length > 0 && actor.broodmother == 0 && actor.womb[0].genetics == undefined) {
var i; var i;
for (i=0; i<actor.womb.length; i++) { for (i=0; i<actor.womb.length; i++) {
ft.genetics = generateGenetics(actor.ID, ft.fatherID, i+1); ft.genetics = generateGenetics(actor.ID, actor.pregSource, i+1);
} }
} else if (actor.womb.length == 0 && actor.pregType != 0 && actor.broodmother == 0) { } else if (actor.womb.length == 0 && actor.pregType != 0 && actor.broodmother == 0) {
WombImpregnate(actor, actor.pregType, actor.pregSource, actor.preg); WombImpregnate(actor, actor.pregType, actor.pregSource, actor.preg);
...@@ -48,7 +48,7 @@ window.WombInit = function(actor) { ...@@ -48,7 +48,7 @@ window.WombInit = function(actor) {
if (actor.womb.length > 0 && actor.broodmother == 0 && actor.womb[0].genetics == undefined) { if (actor.womb.length > 0 && actor.broodmother == 0 && actor.womb[0].genetics == undefined) {
var i; var i;
for (i=0; i<actor.womb.length; i++) { for (i=0; i<actor.womb.length; i++) {
ft.genetics = generateGenetics(actor.ID, ft.fatherID, i+1); ft.genetics = generateGenetics(actor.ID, actor.pregSource, i+1);
} }
} else if (actor.womb.length == 0 && actor.pregType != 0 && actor.broodmother == 0) { } else if (actor.womb.length == 0 && actor.pregType != 0 && actor.broodmother == 0) {
WombImpregnate(actor, actor.pregType, actor.pregSource, actor.preg); WombImpregnate(actor, actor.pregType, actor.pregSource, actor.preg);
......
...@@ -6,6 +6,9 @@ ...@@ -6,6 +6,9 @@
<<if $saveImported == 1>><<set _valueOwed = 5000>><<else>><<set _valueOwed = 50000>><</if>> <<if $saveImported == 1>><<set _valueOwed = 5000>><<else>><<set _valueOwed = 50000>><</if>>
<<if $freshPC == 1 || $saveImported == 0>> <<if $freshPC == 1 || $saveImported == 0>>
<<if $PC.career == "servant">>
<<set $PC.geneticQuirks.fertility = 1>>
<</if>>
<<if $PC.vagina == 1>> <<if $PC.vagina == 1>>
<<set $PC.births = 0>> <<set $PC.births = 0>>
<<if $PC.career == "servant">> <<if $PC.career == "servant">>
...@@ -19,6 +22,7 @@ ...@@ -19,6 +22,7 @@
<<set $PC.births = 3>> <<set $PC.births = 3>>
<<set $PC.birthMaster = 3>> <<set $PC.birthMaster = 3>>
<</if>> <</if>>
<<set $PC.geneticQuirks.fertility = 2>>
<<for $i = 0; $i < $slaves.length; $i++>> <<for $i = 0; $i < $slaves.length; $i++>>
<<if $slaves[$i].origin == "She was another of your late master's servants. She spent nine months in your womb, courtesy of your master." || $slaves[$i].origin == "Your late master took pleasure in using his servants in creative ways. He inseminated you with your own sperm, and nine months later, your daughter was born.">> <<if $slaves[$i].origin == "She was another of your late master's servants. She spent nine months in your womb, courtesy of your master." || $slaves[$i].origin == "Your late master took pleasure in using his servants in creative ways. He inseminated you with your own sperm, and nine months later, your daughter was born.">>
<<set $PC.births += 1>> <<set $PC.births += 1>>
...@@ -54,9 +58,6 @@ ...@@ -54,9 +58,6 @@
<<set WombImpregnate($PC, $PC.pregType, $PC.pregSource, $PC.preg)>> <<set WombImpregnate($PC, $PC.pregType, $PC.pregSource, $PC.preg)>>
<</if>> <</if>>
<</if>> <</if>>
<<if $PC.career == "servant">>
<<set $PC.geneticQuirks.fertility = 2>>
<</if>>
<<if $PC.dick == 1>> <<if $PC.dick == 1>>
<<set $PC.geneticQuirks.wellHung = 2>> <<set $PC.geneticQuirks.wellHung = 2>>
<</if>> <</if>>
......
:: Analyze Pregnancy [nobr]
<<set $nextButton = "Continue", $nextLink = "Slave Interact">>
//$activeSlave.slaveName is <<if $activeSlave.devotion < 20>>restrained<<else>>comfortably reclined<</if>> with $his stomach prepped for examination. $He shudders slightly at the cold touch of the sensor against $his skin.//
<br><br>
<<set $saleDescription = 1>><<PregnancyDescription>><<set $saleDescription = 0>>
<br><br>
Overall statistics:
<br>&nbsp;&nbsp;&nbsp;&nbsp;Fetal count: $activeSlave.womb.length
<br>&nbsp;&nbsp;&nbsp;&nbsp;Estimated womb volume: $activeSlave.bellyPreg cc
<br><br>
Furthest developed pregnancy:
<br>&nbsp;&nbsp;&nbsp;&nbsp;Fetal development week: $activeSlave.preg
<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