- Add array containing general chapters labels
- Add dictionary for endings - Add chapter transition functions
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user