45 lines
1.8 KiB
C
45 lines
1.8 KiB
C
#ifndef _SEQ_IDS_H
|
|
#define _SEQ_IDS_H
|
|
|
|
#define SEQ_VARIATION 0x80
|
|
|
|
#define SEQ_SOUND_PLAYER 0x0000
|
|
#define SEQ_EVENT_CUTSCENE_COLLECT_STAR 0x0001
|
|
#define SEQ_MENU_TITLE_SCREEN 0x0002
|
|
#define SEQ_LEVEL_GRASS 0x0003
|
|
#define SEQ_LEVEL_INSIDE_CASTLE 0x0004
|
|
#define SEQ_LEVEL_WATER 0x0005
|
|
#define SEQ_LEVEL_HOT 0x0006
|
|
#define SEQ_LEVEL_BOSS_KOOPA 0x0007
|
|
#define SEQ_LEVEL_SNOW 0x0008
|
|
#define SEQ_LEVEL_SLIDE 0x0009
|
|
#define SEQ_LEVEL_SPOOKY 0x000A
|
|
#define SEQ_EVENT_PIRANHA_PLANT 0x000B
|
|
#define SEQ_LEVEL_UNDERGROUND 0x000C
|
|
#define SEQ_MENU_STAR_SELECT 0x000D
|
|
#define SEQ_EVENT_POWERUP 0x000E
|
|
#define SEQ_EVENT_METAL_CAP 0x000F
|
|
#define SEQ_EVENT_KOOPA_MESSAGE 0x0010
|
|
#define SEQ_LEVEL_KOOPA_ROAD 0x0011
|
|
#define SEQ_EVENT_HIGH_SCORE 0x0012
|
|
#define SEQ_EVENT_MERRY_GO_ROUND 0x0013
|
|
#define SEQ_EVENT_RACE 0x0014
|
|
#define SEQ_EVENT_CUTSCENE_STAR_SPAWN 0x0015
|
|
#define SEQ_EVENT_BOSS 0x0016
|
|
#define SEQ_EVENT_CUTSCENE_COLLECT_KEY 0x0017
|
|
#define SEQ_EVENT_ENDLESS_STAIRS 0x0018
|
|
#define SEQ_LEVEL_BOSS_KOOPA_FINAL 0x0019
|
|
#define SEQ_EVENT_CUTSCENE_CREDITS 0x001A
|
|
#define SEQ_EVENT_SOLVE_PUZZLE 0x001B
|
|
#define SEQ_EVENT_TOAD_MESSAGE 0x001C
|
|
#define SEQ_EVENT_PEACH_MESSAGE 0x001D
|
|
#define SEQ_EVENT_CUTSCENE_INTRO 0x001E
|
|
#define SEQ_EVENT_CUTSCENE_VICTORY 0x001F
|
|
#define SEQ_EVENT_CUTSCENE_ENDING 0x0020
|
|
#define SEQ_MENU_FILE_SELECT 0x0021
|
|
#ifndef VERSION_JP
|
|
#define SEQ_EVENT_CUTSCENE_LAKITU 0x0022
|
|
#endif
|
|
|
|
#endif
|