Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fc-pregmod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pregmodfan
fc-pregmod
Commits
5dce19f4
Commit
5dce19f4
authored
4 years ago
by
lowercasedonkey
Browse files
Options
Downloads
Patches
Plain Diff
fix temp var
parent
40a82d49
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!7883
Birthstorm
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/npc/interaction/passage/birthStorm.tw
+17
-17
17 additions, 17 deletions
src/npc/interaction/passage/birthStorm.tw
with
17 additions
and
17 deletions
src/npc/interaction/passage/birthStorm.tw
+
17
−
17
View file @
5dce19f4
...
...
@@ -3,41 +3,41 @@
<<set $nextButton = "Back", $nextLink = "Slave Interact">>
<<set $AS = $activeSlave.ID>>
<<set babiesBeingBorn = WombBirth(getSlave($AS), 34)>> /*Here check - how many children survive this event. 34 weeks minimum.*/
<<set _numBeingBorn = babiesBeingBorn.length>>
<<set
_
babiesBeingBorn = WombBirth(getSlave($AS), 34)>> /*Here check - how many children survive this event. 34 weeks minimum.*/
<<set _numBeingBorn =
_
babiesBeingBorn.length>>
<<set _others = 0, _PC = 0, _citizens = 0, _oldMaster = 0, _arcOwner = 0, _clients = 0, _elite = 0, _lab = 0, _futaS = 0, _fathers = [], _babyFatherLink = []>>
<<for _cb = 0; _cb < babiesBeingBorn.length; _cb++>>
<<if babiesBeingBorn[_cb].fatherID == 0>>
<<for _cb = 0; _cb <
_
babiesBeingBorn.length; _cb++>>
<<if
_
babiesBeingBorn[_cb].fatherID == 0>>
<<set _others++>>
<<set _fathers.push("some man's")>>
<<elseif babiesBeingBorn[_cb].fatherID == -1>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -1>>
<<set $PC.counter.slavesFathered++>>
<<set _PC++>>
<<set _fathers.push("your")>>
<<elseif babiesBeingBorn[_cb].fatherID == -2>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -2>>
<<set _citizens++>>
<<set _fathers.push("a citizen's")>>
<<elseif babiesBeingBorn[_cb].fatherID == -3>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -3>>
<<set _oldMaster++>>
<<set _fathers.push("your former Master's")>>
<<elseif babiesBeingBorn[_cb].fatherID == -4>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -4>>
<<set _arcOwner++>>
<<set _fathers.push("another arcology owner's")>>
<<elseif babiesBeingBorn[_cb].fatherID == -5>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -5>>
<<set _clients++>>
<<set _fathers.push("your client's")>>
<<elseif babiesBeingBorn[_cb].fatherID == -6>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -6>>
<<set _elite++>>
<<set _fathers.push("the Societal Elite's")>>
<<elseif babiesBeingBorn[_cb].fatherID == -7>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -7>>
<<set _lab++>>
<<set _fathers.push("the gene lab's")>>
<<elseif babiesBeingBorn[_cb].fatherID == -9>>
<<elseif
_
babiesBeingBorn[_cb].fatherID == -9>>
<<set _futaS++>>
<<set _fathers.push("a Futanari Sister's")>>
<<else>>
<<set _babyDaddy = findFather(babiesBeingBorn[_cb].fatherID)>>
<<set _babyDaddy = findFather(
_
babiesBeingBorn[_cb].fatherID)>>
<<if def _babyDaddy>>
<<if _babyDaddy.ID == getSlave($AS).ID>>
<<set _fathers.push(String($his + " own"))>>
...
...
@@ -108,9 +108,9 @@
<<set _cToIncub = 0, _cToNursery = 0>>
<<for _csec = 0; _csec < _numBeingBorn; _csec++>>
<<if babiesBeingBorn[_csec].reserve === "incubator">>
<<if
_
babiesBeingBorn[_csec].reserve === "incubator">>
<<set _cToIncub++>>
<<elseif babiesBeingBorn[_csec].reserve === "nursery">>
<<elseif
_
babiesBeingBorn[_csec].reserve === "nursery">>
<<set _cToNursery++>>
<</if>>
<</for>>
...
...
@@ -209,14 +209,14 @@ The remote surgery allows the removal of the pregnancy generator through convent
<</if>>
<<if _cToIncub > 0 || _cToNursery > 0>>
<<set babiesBeingBorn = sendNewbornsToFacility(getSlave($AS), babiesBeingBorn)>>
<<set
_
babiesBeingBorn = sendNewbornsToFacility(getSlave($AS),
_
babiesBeingBorn)>>
<</if>>
<<else>>
/* TODO: No live babies. Placeholder */
<</if>>
<<set _numBeingBorn = babiesBeingBorn.length>>
<<set _numBeingBorn =
_
babiesBeingBorn.length>>
<<if _incubated != 2 && _nursed != 2 && _numBeingBorn > 0>>
<span id="_disposition">
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment