mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-01-22 09:16:56 +01:00
Merge pull request 'chore: Removes tradwife flag' (#220) from san7890/SnootGame:flag-cleanup into NewPatch
Reviewed-on: https://git.cavemanon.xyz/Cavemanon/SnootGame/pulls/220
This commit is contained in:
commit
1046f65408
3 changed files with 1 additions and 5 deletions
|
@ -316,7 +316,6 @@ transform scloserleft:
|
||||||
label start:
|
label start:
|
||||||
$ fangscore = 0
|
$ fangscore = 0
|
||||||
$ anonscore = 0
|
$ anonscore = 0
|
||||||
$ tradwife = False
|
|
||||||
$ wingStory = False
|
$ wingStory = False
|
||||||
pause 1.0
|
pause 1.0
|
||||||
call storyline from _call_storyline
|
call storyline from _call_storyline
|
||||||
|
|
|
@ -30,7 +30,6 @@ label storyline:
|
||||||
call chapter_13D from _call_chapter_13D
|
call chapter_13D from _call_chapter_13D
|
||||||
call chapter_14D from _call_chapter_14D
|
call chapter_14D from _call_chapter_14D
|
||||||
elif _return == Endings.Tradwife:
|
elif _return == Endings.Tradwife:
|
||||||
$ tradwife = True
|
|
||||||
call chapter_11C from _call_chapter_11C
|
call chapter_11C from _call_chapter_11C
|
||||||
call chapter_12C from _call_chapter_12C
|
call chapter_12C from _call_chapter_12C
|
||||||
call chapter_12_5C from _call_chapter_12_5C
|
call chapter_12_5C from _call_chapter_12_5C
|
||||||
|
|
|
@ -10,14 +10,12 @@ init python:
|
||||||
Tradwife = 2
|
Tradwife = 2
|
||||||
Golden = 3
|
Golden = 3
|
||||||
|
|
||||||
label initstats(anon=0, fang=0, trad=False):
|
label initstats(anon=0, fang=0):
|
||||||
# Sets various game-related global variables
|
# Sets various game-related global variables
|
||||||
# :param int anon: Anon's score
|
# :param int anon: Anon's score
|
||||||
# :param int fang: Fang's score
|
# :param int fang: Fang's score
|
||||||
# :param bool trad: Tradwife ending flag
|
|
||||||
$ anonscore = anon
|
$ anonscore = anon
|
||||||
$ fangscore = fang
|
$ fangscore = fang
|
||||||
$ tradwife = trad
|
|
||||||
return
|
return
|
||||||
|
|
||||||
label get_ending:
|
label get_ending:
|
||||||
|
|
Loading…
Reference in a new issue