- Add array containing general chapters labels

- Add dictionary for endings
- Add chapter transition functions
This commit is contained in:
2024-08-08 19:19:48 -03:00
parent 670a3624c5
commit 297ca81c7c
2 changed files with 78 additions and 0 deletions

View File

@ -20,3 +20,15 @@ label get_ending:
return(2) # Doomer
else:
return(1) # Shooter
init python:
def get_ending():
if anonscore >= 4 and fangscore >= 4 and wingStory:
return 4 # Golden
elif anonscore >= 3 and fangscore <=4:
return 3 # Tradwife
elif anonscore <= 3 and fangscore >=3:
return 2 # Doomer
else:
return 1 # Shooter