Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Transmod - Degrees of Lewdity
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
astrox1
Transmod - Degrees of Lewdity
Commits
b3af3eed
Commit
b3af3eed
authored
2 years ago
by
Trinidad
Committed by
Vrelnir
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Cheats: player impregnation
parent
56ab01f0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/base-system/overlays/cheats.twee
+45
-4
45 additions, 4 deletions
game/base-system/overlays/cheats.twee
with
45 additions
and
4 deletions
game/base-system/overlays/cheats.twee
+
45
−
4
View file @
b3af3eed
...
...
@@ -2165,11 +2165,12 @@
<<else>>
You need to enable anal pregnancy in the settings to access these settings.
<</if>>
<br><br>
/* ToDo: remove $pregnancyTesting to correctly enable */
<<if $pregnancyTesting and ($playerPregnancyBeastDisable == "f" or $playerPregnancyHumanDisable == "f")>>
<<if !$player.vaginaExist>>
You don't have a vagina. You can't do
no
thing here at the moment. /* This will change when PC can inpregnate NPCs or when Mpreg */
You don't have a vagina. You can't do
any
thing here at the moment. /* This will change when PC can inpregnate NPCs or when Mpreg */
<<else>>
<div id="cheatsPregnancyOptions"><<cheatsPregnancyOptions "vagina">></div>
<</if>>
...
...
@@ -2265,8 +2266,8 @@
<<link "<<">><<set _pregnancy.timer to Math.clamp(_pregnancy.timer - _pregnancy.timerEnd * 0.05, 0, _pregnancy.timerEnd)>><<replace "#cheatPregnancyProgress">><<print Math.round(Math.clamp(_pregnancy.timer / _pregnancy.timerEnd * 100, 0, 100))>>%<</replace>><</link>> |
<<link "<">><<set _pregnancy.timer to Math.clamp(_pregnancy.timer - _pregnancy.timerEnd * 0.01, 0, _pregnancy.timerEnd)>><<replace "#cheatPregnancyProgress">><<print Math.round(Math.clamp(_pregnancy.timer / _pregnancy.timerEnd * 100, 0, 100))>>%<</replace>><</link>> |
Pregnancy progress: <span id="cheatPregnancyProgress"><<print Math.round(Math.clamp(_pregnancy.timer / _pregnancy.timerEnd * 100, 0, 100))>>%</span>
| <<link ">">><<set _pregnancy.timer to Math.clamp(_pregnancy.timer + _pregnancy.timerEnd * 0.01, 0, _pregnancy.timerEnd)>><<replace "#cheatPregnancyProgress">><<print Math.round(Math.clamp(_pregnancy.timer / _pregnancy.timerEnd * 100, 0, 100))>>%<</replace>><</link>>
| <<link ">>">><<set _pregnancy.timer to Math.clamp(_pregnancy.timer + _pregnancy.timerEnd * 0.05, 0, _pregnancy.timerEnd)>><<replace "#cheatPregnancyProgress">><<print Math.round(Math.clamp(_pregnancy.timer / _pregnancy.timerEnd * 100, 0, 100))>>%<</replace>><</link>>
| <<link ">">><<set _pregnancy.timer to Math.clamp(_pregnancy.timer + _pregnancy.timerEnd * 0.01, 0, _pregnancy.timerEnd
* .99
)>><<replace "#cheatPregnancyProgress">><<print Math.round(Math.clamp(_pregnancy.timer / _pregnancy.timerEnd * 100, 0, 100))>>%<</replace>><</link>>
| <<link ">>">><<set _pregnancy.timer to Math.clamp(_pregnancy.timer + _pregnancy.timerEnd * 0.05, 0, _pregnancy.timerEnd
* .99
)>><<replace "#cheatPregnancyProgress">><<print Math.round(Math.clamp(_pregnancy.timer / _pregnancy.timerEnd * 100, 0, 100))>>%<</replace>><</link>>
<br>
<<link [[Clear current pregnancy|$passage]]>>
<<set _pregnancy.type to null>>
...
...
@@ -2284,7 +2285,47 @@
<</link>>
<span class="description">This is a cheat, not an abortion.</span>
<<else>>
/* Impregnation options */
Get pregnant with:
<br>
<<if $playerPregnancyHumanDisable == "f">>
<<link [[A random person|$passage]]>> /* checks if males or females have penises, if there's is no people with penises a foreigner impregnates PC */
<<set _impregnator to "cheater ">>
<<if $dgchance gt 0 and $cbchance lt 100>>
<<set _impregnator += either("man", "boy", "woman", "girl")>>
<<elseif $dgchance gt 0 and $cbchance gt 99>>
<<set _impregnator += either("woman", "girl")>>
<<elseif $dgchance lt 1 and $cbchance lt 100>>
<<set _impregnator += either("man", "boy")>>
<<else>>
<<set _impregnator += "foreigner">>
<</if>>
<<playerPregnancy _impregnator "human" true "vagina" undefined true>>
<</link>>
<br>
<</if>>
<<if $playerPregnancyBeastDisable == "f">>
<<link [[A wolf|$passage]]>>
<<if $beastmalechance gt 0>> /* checks if there are male wolves, if not a foreigner wolf impregnates PC */
<<set _impregnator to "cheater wolf">>
<<else>>
<<set _impregnator to "cheater foreign wolf">>
<</if>>
<<playerPregnancy _impregnator "wolf" true "vagina" undefined true>>
<</link>>
<br>
<</if>>
<<if $playerPregnancyBeastDisable == "f" and $NPCName[$NPCNameList.indexOf("Black Wolf")].gender == "m">> /* playerPregnancyPossibleWith("Black Wolf") is not returning true */
<<link [[Black Wolf|$passage]]>>
<<playerPregnancy "Black Wolf" "wolf" true "vagina" undefined true>>
<</link>>
<br>
<</if>>
<<if $player.penisExist>>
<<link [[Yourself|$passage]]>>
<<playerPregnancy "pc" "human" true "vagina" undefined true>>
<</link>>
<br>
<</if>>
<</if>>
<br>
<br>
...
...
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