-
Notifications
You must be signed in to change notification settings - Fork 27
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 #23 from SethBarberee/ereader
Decomp first half of ereader
- Loading branch information
Showing
15 changed files
with
562 additions
and
1,421 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef GUARD_CONSTANTS_BG_MUSIC_H | ||
#define GUARD_CONSTANTS_BG_MUSIC_H | ||
|
||
#define MUS_TITLE 1 | ||
#define MUS_TABLE_SELECT 3 | ||
#define MUS_UNKNOWN_SONG_1 5 | ||
#define MUS_UNKNOWN_SONG_5 6 | ||
#define MUS_OPENING 8 | ||
#define MUS_SHOP 11 | ||
#define MUS_END_OF_BALL 13 | ||
#define MUS_MOVE_MODE_START 16 | ||
#define MUS_EVOLUTION 26 | ||
#define MUS_POKEDEX 46 | ||
|
||
#endif // GUARD_CONSTANTS_BG_MUSIC_H |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef GUARD_CONSTANTS_EREADER_H | ||
#define GUARD_CONSTANTS_EREADER_H | ||
|
||
|
||
enum eReaderBonuses | ||
{ | ||
EREADER_SPECIAL_GUESTS_CARD = 0, // Card ID: 09-A002 | ||
EREADER_ENCOUNTER_RATE_UP_CARD = 1, // Card ID: 09-A005 | ||
EREADER_DX_MODE_CARD = 2, // Card ID: 09-A004 | ||
EREADER_RUIN_AREA_CARD = 3, // Card ID: 09-A003 | ||
EREADER_BONUS_STAGE_CARD = 4, // Card ID: 09-A001 | ||
NUM_EREADER_CARDS | ||
}; | ||
|
||
#endif // GUARD_CONSTANTS_EREADER_H |
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
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.