From 59c229db73fda4a04d7323c8367b16b248b9da4e Mon Sep 17 00:00:00 2001 From: Iggy Date: Wed, 21 Aug 2024 21:05:14 -0300 Subject: [PATCH] Add chapters description to selection --- game/chapter_select.rpy | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/game/chapter_select.rpy b/game/chapter_select.rpy index b0a97dc..dea62ec 100644 --- a/game/chapter_select.rpy +++ b/game/chapter_select.rpy @@ -1,23 +1,23 @@ define chapter_tuple_1 = [ - ("1", "chapter_1"), - ("2", "chapter_2"), - ("3", "chapter_3"), - ("4", "chapter_4"), - ("5", "chapter_5"), - ("6", "chapter_6") + ("1. Anon meets Fang.", "chapter_1"), + ("2. Fourth day of school.", "chapter_2"), + ("3. Showing up at band practice.", "chapter_3"), + ("4. Anon needs help during music period.", "chapter_4"), + ("5. Fang and Anon cut class to talk on the roof.", "chapter_5"), + ("6. Anon helps Fang find a venue for the band.", "chapter_6") ] define chapter_tuple_2 = [ - ("7", "chapter_7"), - ("8", "chapter_8"), - ("9", "chapter_9"), - ("10", "chapter_10"), - ("11", "chapter_11") + ("7. Concert day.", "chapter_7"), + ("8. Anon and Fang study together.", "chapter_8"), + ("9. Trish ridicules Anon in front of the school.", "chapter_9"), + ("10. Fang goes to Anon's apartment.", "chapter_10"), + ("11. School assignment and route lock.", "chapter_11") ] define tuples_index = [ - ("1-6", chapter_tuple_1), - ("7-11", chapter_tuple_2) + ("Chapters 1 to 6", chapter_tuple_1), + ("Chapters 7 to 11", chapter_tuple_2) ] default selected_tuple = None