document chapter_variables

This commit is contained in:
Map 2024-10-02 06:34:14 -05:00
parent 99997a4204
commit 1373bed36b

View file

@ -11,6 +11,8 @@ define ending_routes = {
1: ["chapter_11A", "chapter_12A", "chapter_12_5D", "chapter_13A", "chapter_14A"]
}
# Default vars reset when a new game starts, so no biggie.
# Anon/Fang
default anonscore = 0
default fangscore = 0
@ -22,5 +24,5 @@ default chapter_list_index = 0 # Index number for the current position of the ch
default current_chapter = chapter_list[chapter_list_index] # Store the name of the label as a string
# Ending variables
default ending_route_number = None
default ending_route_number = None # A value of None signals to get_ending() to determine the value based off anon/fang scores when it is called
default is_end_reached = False