Skip to content
Snippets Groups Projects
Commit e9393fea authored by pregmodfan's avatar pregmodfan
Browse files

logic fix

parent bbb0c646
No related branches found
No related tags found
1 merge request!4579Inspect Pregnancy tweak, and superfetation fix
...@@ -16,14 +16,14 @@ ...@@ -16,14 +16,14 @@
<br><br> <br><br>
Overall statistics: Overall statistics:
<<set _cc = num(Math.round($activeSlave.bellyPreg))>> <<set _cc = Math.round($activeSlave.bellyPreg)>>
<<set _safecc = num(Math.round($activeSlave.pregAdaptation*2000))>> <<set _safecc = Math.round($activeSlave.pregAdaptation*2000)>>
<<if $geneticMappingUpgrade > 0>> <<if $geneticMappingUpgrade > 0>>
<br>&nbsp;&nbsp;&nbsp;&nbsp;Estimated pregnancy adaptation raiting: <<print num(Math.round($activeSlave.pregAdaptation))>> <br>&nbsp;&nbsp;&nbsp;&nbsp;Estimated pregnancy adaptation raiting: <<print num(Math.round($activeSlave.pregAdaptation))>>
<br>&nbsp;&nbsp;&nbsp;&nbsp;Estimated safe womb volume: _safecc cc <br>&nbsp;&nbsp;&nbsp;&nbsp;Estimated safe womb volume: <<= num(_safecc)>> cc
<</if>> <</if>>
<br>&nbsp;&nbsp;&nbsp;&nbsp;Currnet fetal count: $activeSlave.womb.length <br>&nbsp;&nbsp;&nbsp;&nbsp;Currnet fetal count: $activeSlave.womb.length
<br>&nbsp;&nbsp;&nbsp;&nbsp;Estimated womb volume: <<if _safecc > _cc && $geneticMappingUpgrade > 0>>@@.red;_cc@@<<else>>_cc<</if>> cc <br>&nbsp;&nbsp;&nbsp;&nbsp;Estimated womb volume: <<if _safecc < _cc && $geneticMappingUpgrade > 0>>@@.red;<<= num(_cc)>>@@<<else>><<= num(_cc)>><</if>> cc
<br><br> <br><br>
Furthest developed pregnancy: Furthest developed pregnancy:
<br>&nbsp;&nbsp;&nbsp;&nbsp;Fetal development week: $activeSlave.preg <br>&nbsp;&nbsp;&nbsp;&nbsp;Fetal development week: $activeSlave.preg
......
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