-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #682 from Eebit/ending-details-cleanup
Cleanup `ending_details`
- Loading branch information
Showing
11 changed files
with
1,093 additions
and
810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,93 @@ | ||
#pragma once | ||
|
||
enum chapter_idx { | ||
// todo | ||
CHAPTER_IDX_PROLOGUE = 0, | ||
enum chapter_idx | ||
{ | ||
CHAPTER_L_PROLOGUE = 0x00, // The Fall of Renais | ||
CHAPTER_L_1 = 0x01, // Ch1: Escape! | ||
CHAPTER_L_2 = 0x02, // Ch2: The Protected | ||
CHAPTER_L_3 = 0x03, // Ch3: The Bandits of Borgo | ||
CHAPTER_L_4 = 0x04, // Ch4: Ancient Horrors | ||
CHAPTER_L_5X = 0x05, // Ch5x: Unbroken Heart | ||
CHAPTER_L_5 = 0x06, // Ch5: The Empire's Reach | ||
CHAPTER_L_6 = 0x07, // Ch6: Victims of War | ||
CHAPTER_L_7 = 0x08, // Ch7: Waterside Renvall | ||
CHAPTER_L_8 = 0x09, // Ch8: It's a Trap! | ||
|
||
CHAPTER_E_9 = 0x0A, // Ch9: Distant Blade | ||
CHAPTER_E_10 = 0x0B, // Ch10: Revolt at Carcino | ||
CHAPTER_E_12 = 0x0C, // Ch12: Village of Silence | ||
CHAPTER_E_13 = 0x0D, // Ch13: Hamill Canyon | ||
CHAPTER_E_14 = 0x0E, // Ch14: Queen of White Dunes | ||
CHAPTER_E_15 = 0x0F, // Ch15: Scorched Sand | ||
CHAPTER_E_16 = 0x10, // Ch16: Ruled by Madness | ||
CHAPTER_E_17 = 0x11, // Ch17: River of Regrets | ||
CHAPTER_E_18 = 0x12, // Ch18: Two Faces of Evil | ||
CHAPTER_E_19 = 0x13, // Ch19: Last Hope | ||
CHAPTER_E_20 = 0x14, // Ch20: Darkling Woods | ||
CHAPTER_E_21 = 0x15, // Ch21: Sacred Stone | ||
CHAPTER_E_21X = 0x16, // Ch21x: Sacred Stone | ||
|
||
CHAPTER_I_9 = 0x17, // Ch9: Fort Rigwald | ||
CHAPTER_I_10 = 0x18, // Ch10: Turning Traitor | ||
CHAPTER_I_12 = 0x19, // Ch12: Landing at Taizel | ||
CHAPTER_I_13 = 0x1A, // Ch13: Fluorspar's Oath | ||
CHAPTER_I_14 = 0x1B, // Ch14: Father and Son | ||
CHAPTER_I_15 = 0x1C, // Ch15: Scorched Sand | ||
CHAPTER_I_16 = 0x1D, // Ch16: Ruled by Madness | ||
CHAPTER_I_17 = 0x1E, // Ch17: River of Regrets | ||
CHAPTER_I_18 = 0x1F, // Ch18: Two Faces of Evil | ||
CHAPTER_I_19 = 0x20, // Ch19: Last Hope | ||
CHAPTER_I_20 = 0x21, // Ch20: Darkling Woods | ||
CHAPTER_I_21 = 0x22, // Ch21: Sacred Stone | ||
CHAPTER_I_21X = 0x23, // Ch21x: Sacred Stone | ||
|
||
CHAPTER_T_01 = 0x24, // Tower of Valni 1 | ||
CHAPTER_T_02 = 0x25, // Tower of Valni 2 | ||
CHAPTER_T_03 = 0x26, // Tower of Valni 3 | ||
CHAPTER_T_04 = 0x27, // Tower of Valni 4 | ||
CHAPTER_T_05 = 0x28, // Tower of Valni 5 | ||
CHAPTER_T_06 = 0x29, // Tower of Valni 6 | ||
CHAPTER_T_07 = 0x2A, // Tower of Valni 7 | ||
CHAPTER_T_08 = 0x2B, // Tower of Valni 8 | ||
|
||
CHAPTER_2C = 0x2C, | ||
CHAPTER_2D = 0x2D, | ||
|
||
CHAPTER_R_01 = 0x2E, // Lagdou Ruins 1 | ||
CHAPTER_R_02 = 0x2F, // Lagdou Ruins 2 | ||
CHAPTER_R_03 = 0x30, // Lagdou Ruins 3 | ||
CHAPTER_R_04 = 0x31, // Lagdou Ruins 4 | ||
CHAPTER_R_05 = 0x32, // Lagdou Ruins 5 | ||
CHAPTER_R_06 = 0x33, // Lagdou Ruins 6 | ||
CHAPTER_R_07 = 0x34, // Lagdou Ruins 7 | ||
CHAPTER_R_08 = 0x35, // Lagdou Ruins 8 | ||
CHAPTER_R_09 = 0x36, // Lagdou Ruins 9 | ||
CHAPTER_R_10 = 0x37, // Lagdou Ruins 10 | ||
|
||
CHAPTER_CASTLE_FRELIA = 0x38, | ||
CHAPTER_MALKAEN_COAST = 0x39, | ||
|
||
CHAPTER_3A = 0x3A, | ||
CHAPTER_3B = 0x3B, | ||
CHAPTER_3C = 0x3C, | ||
|
||
CHAPTER_E_11 = 0x3D, // Ch11: Creeping Darkness | ||
CHAPTER_I_11 = 0x3E, // Ch11: Phantom Ship | ||
|
||
CHAPTER_3F = 0x3F, | ||
CHAPTER_40 = 0x40, | ||
CHAPTER_41 = 0x41, | ||
CHAPTER_42 = 0x42, | ||
CHAPTER_43 = 0x43, | ||
CHAPTER_44 = 0x44, | ||
CHAPTER_45 = 0x45, | ||
CHAPTER_46 = 0x46, | ||
CHAPTER_47 = 0x47, | ||
CHAPTER_48 = 0x48, | ||
CHAPTER_49 = 0x49, | ||
CHAPTER_4A = 0x4A, | ||
CHAPTER_4B = 0x4B, | ||
CHAPTER_4C = 0x4C, | ||
CHAPTER_4D = 0x4D, | ||
CHAPTER_4E = 0x4E, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.